diff --git a/.gitattributes b/.gitattributes index bed0738c7eeb449bca98b5d2f33c89a1ee56349a..0f677f612c0f0955c5650db2e80f432c9a557168 100644 --- a/.gitattributes +++ b/.gitattributes @@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text # Video files - compressed *.mp4 filter=lfs diff=lfs merge=lfs -text *.webm filter=lfs diff=lfs merge=lfs -text +text/questions.json filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md index 1b475d4a99f9ff076d9050f4648981b90f7374ea..86b56fd7d4bbf7fc63419b594402fc9de19b83b2 100644 --- a/README.md +++ b/README.md @@ -15,33 +15,21 @@ tags: - benchmark - video-llm configs: - - config_name: easyhuman_text - data_files: easyhuman_text.parquet - - config_name: easyhuman_video - data_files: easyhuman_video.parquet - - config_name: substream_text - data_files: substream_text.parquet - - config_name: substream_video - data_files: substream_video.parquet + - config_name: text + data_files: text/questions.parquet + - config_name: synthetic_video + data_files: synthetic_video/questions.parquet - config_name: natural_video - data_files: natural_video.parquet + data_files: natural_video/questions.parquet dataset_info: - - config_name: easyhuman_text + - config_name: text splits: - name: train - num_examples: 448 - - config_name: easyhuman_video + num_examples: 8128 + - config_name: synthetic_video splits: - name: train - num_examples: 224 - - config_name: substream_text - splits: - - name: train - num_examples: 7680 - - config_name: substream_video - splits: - - name: train - num_examples: 6080 + num_examples: 6304 - config_name: natural_video splits: - name: train @@ -50,97 +38,139 @@ dataset_info: # Substream Recollection -A controlled benchmark for substream membership recall in long-context VLMs and +A controlled benchmark for substream-membership recall in long-context VLMs and LLMs. Each row is a `(stream, probe, label)` tuple: the model sees a long input stream and a short probe, and must answer "yes" or "no" — did the probe occur inside the stream? -The bundle has five splits: - -- **easyhuman_text** — text-mode EasyHuman: comma-separated symbol streams at - L=256 and L=1024, with binary "did this short pattern appear?" probes. -- **easyhuman_video** — video-mode EasyHuman at L=256: rendered 3-belt - conveyor videos with the same probe families as `easyhuman_text` (X/Y - block presence, variation absence, mistakes, invalid cycles). -- **substream_text** — synthetic text-mode Substream Recollection. All entropy - bands (low / medium / uniform) at every L in {8, 16, 32, 64, 128, 256, 512, - 1024, 2048, 4096}. Probes are sequential (subsequence-of) or spatial - (lane-conditioned). The text stream is the comma-joined `S_tokens` from the - source video. -- **substream_video** — same `(video, question)` pairs as `substream_text`, - but the input is the rendered video. Restricted to L ≤ 1024 because longer - videos are impractical for current VLMs. -- **natural_video** — natural-video benchmark drawn from EPIC-Kitchens-100 and - SoccerNet, at L ∈ {8, 16, 64, 128, 512, 1024}. Each row asks whether a named - event occurred in the clip. SoccerNet rows do **not** ship the underlying - video files; provenance metadata is provided in the `source_provenance` - column so the original videos can be obtained from - https://www.soccer-net.org/data after signing the SoccerNet NDA. +This release reorganizes the original five-split bundle into three top-level +splits keyed by modality + source: + +| split | rows | content | +| --- | --- | --- | +| `text` | 8,128 | text-modality questions for the synthetic substream benchmark *and* EasyHuman; the `subset` column distinguishes them. | +| `synthetic_video` | 6,304 | rendered synthetic substream videos *and* EasyHuman 3-belt videos; `subset` distinguishes them. | +| `natural_video` | 1,028 | EPIC-Kitchens-100 derived clips and SoccerNet provenance metadata. | + +## Directory layout + +``` +anonstreammem/substream-recollection/ +├── README.md +├── metadata.json # Croissant 1.0 covering all 3 RecordSets +├── LICENSES/ +│ ├── EPIC-Kitchens-100-CC-BY-NC-4.0.txt +│ ├── synthetic-and-easyhuman.txt +│ └── SoccerNet-NOTE.txt +├── text/ +│ ├── questions.parquet # subset in {substream, easyhuman} +│ └── questions.json # NDJSON copy of the parquet +├── synthetic_video/ +│ ├── questions.parquet # subset in {substream, easyhuman} +│ ├── questions.json +│ └── videos/ +│ ├── L_8_frames/ +│ ├── L_16_frames/ +│ ├── L_32_frames/ +│ ├── L_64_frames/ +│ ├── L_128_frames/ +│ ├── L_256_frames/ +│ ├── L_512_frames/ +│ ├── L_1024_frames/ +│ └── easyhuman_L_256_frames/ +└── natural_video/ + ├── questions.parquet + ├── questions.json + └── videos/ + ├── nat_8_frames/ # was exact1fps_short + ├── nat_16_frames/ # was exact1fps_B1 + ├── nat_64_frames/ # was exact1fps_B2 + ├── nat_128_frames/ # was exact1fps_B3 + ├── nat_512_frames/ # was exact1fps_B4 + └── nat_1024_frames/ # was exact1fps_B5 +``` + +Inside each `synthetic_video/videos/L__frames//` you'll find the +parent videos (e.g. `video_1_v0.mp4`) plus a `clips/` subfolder with the probe +clips. EasyHuman uses a flatter layout with no inner bucket directory. + +## Loading + +```python +from datasets import load_dataset + +text = load_dataset("anonstreammem/substream-recollection", "text")["train"] +synthv = load_dataset("anonstreammem/substream-recollection", "synthetic_video")["train"] +natv = load_dataset("anonstreammem/substream-recollection", "natural_video")["train"] +``` + +Video files are referenced by relative `video_path` / `clip_path` in each +parquet. To resolve them locally, snapshot the repo: + +```python +from huggingface_hub import snapshot_download +root = snapshot_download( + "anonstreammem/substream-recollection", + repo_type="dataset", + allow_patterns=["synthetic_video/**", "natural_video/**", "text/**"], +) +``` + +Then `Path(root) / row["video_path"]` resolves to the actual mp4. ## Schema -Every parquet has the same columns: +All three parquets share most columns. The text and synthetic_video parquets +also carry `bucket` (original bucket id, e.g. `UNIFORM_EVAL_L0128_ELOW`, +`len_256`) and `source_split` (the pre-merge split label). `natural_video` adds +a `source_provenance` JSON column for SoccerNet rows. | column | type | notes | | --- | --- | --- | -| `split` | str | one of the five split names | -| `subset` | str | bucket id (e.g. `UNIFORM_EVAL_L0128_ELOW`, `len_1024`, `L=128`) | +| `subset` | str | `substream` / `easyhuman` (text + synthetic_video) or bucket id like `L=128` (natural_video) | +| `bucket` | str | (text + synthetic_video only) original bucket id | +| `source_split` | str | pre-merge split label | | `length_L` | int64 | normalized stream length | | `entropy_band` | str | `low` / `medium` / `uniform` / `natural` / `easyhuman` | | `modality` | str | `text` or `video` | | `question_variant` | str | `sequential` / `spatial` / `binary_natural` / `easyhuman_binary` | -| `video_index` | int64 | per-bucket video id; null for text-only natural rows | +| `video_index` | int64 | per-bucket video id | | `question_index` | int64 | per-video question position | -| `question_text` | str | prompt the model sees (no scaffolding) | -| `candidate` | str (JSON) | probe metadata; null where N/A | +| `question_text` | str | prompt the model sees | +| `candidate` | str (JSON) | probe metadata; null when N/A | | `answer` | str | ground-truth label (`yes` / `no`) | -| `clip_path` | str | relative path to the probe clip (where applicable) | -| `video_path` | str | relative path to the parent video (where applicable) | +| `clip_path` | str | relative path to the probe clip | +| `video_path` | str | relative path to the parent video | | `dataset_source` | str | `synthetic` / `easyhuman` / `epic-kitchens-100` / `soccernet` | -| `input_sequence` | str | comma-joined input symbols (text mode payload) | -| `source_class` | str | natural-only event-class label | +| `input_sequence` | str | comma-joined input symbols (text-mode payload) | +| `source_class` | str | natural-only event class label | | `source_dataset` | str | natural-only origin tag | -| `video_id` | str | canonical video id (joins to eval state files) | +| `video_id` | str | canonical video id | | `question_id` | str | canonical question id | -| `source_provenance` | str (JSON) | natural_video only; for SoccerNet rows, JSON describing the source match, half, time range, and license. Null elsewhere. | - -## Files - -- `easyhuman_text.parquet` (448 rows) -- `easyhuman_video.parquet` (224 rows) -- `substream_text.parquet` (7,680 rows) -- `substream_video.parquet` (6,080 rows) -- `natural_video.parquet` (1,028 rows) -- `metadata.json` — Croissant 1.0 dataset description -- `_split_sizes.json` — machine-readable split-size sidecar -- `videos/` and `clips/` — rendered synthetic substream media (substream_video) -- `len_256/{videos,clips}/` — rendered EasyHuman media (easyhuman_video) -- `exact1fps_short/`, `exact1fps_B{1..5}/` — EPIC-Kitchens-100 derived clips - (natural_video). Each row's `video_path` column is a relative path under - this layout. SoccerNet rows are excluded; see `source_provenance` column. -- `LICENSES/` — full license text for each underlying source - -The 78 SoccerNet-derived rows are present in `natural_video.parquet` but the -underlying video files are **not** redistributed here (NDA-gated source); -see `LICENSES/SoccerNet-NOTE.txt` and the `source_provenance` column. +| `source_provenance` | str (JSON) | natural_video only; SoccerNet provenance | -## Licenses +## SoccerNet rows -This bundle aggregates several sources, each under its own license: +The 78 SoccerNet-derived rows (event class `red_card`) appear in +`natural_video/questions.parquet` but the underlying mp4s are **not** +redistributed here — the SoccerNet source is NDA-gated. Use the +`source_provenance` JSON column to pull the originals from +[https://www.soccer-net.org/data](https://www.soccer-net.org/data) after +signing the SoccerNet NDA. See `LICENSES/SoccerNet-NOTE.txt`. + +## Licenses | split / source | license | file | | --- | --- | --- | -| Synthetic streams (substream_text, substream_video) | CC BY 4.0, Anonymous Authors 2026 | `LICENSES/synthetic-and-easyhuman.txt` | -| EasyHuman (easyhuman_text, easyhuman_video) | CC BY 4.0, Anonymous Authors 2026 | `LICENSES/synthetic-and-easyhuman.txt` | -| 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` | -| SoccerNet derived clips (natural_video, provenance only) | NDA-gated source; not redistributed | `LICENSES/SoccerNet-NOTE.txt` | +| Synthetic streams (`text/subset=substream`, `synthetic_video/subset=substream`) | CC BY 4.0, Anonymous Authors 2026 | `LICENSES/synthetic-and-easyhuman.txt` | +| EasyHuman (`text/subset=easyhuman`, `synthetic_video/subset=easyhuman`) | CC BY 4.0, Anonymous Authors 2026 | `LICENSES/synthetic-and-easyhuman.txt` | +| 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` | +| SoccerNet derived rows (`natural_video`, provenance only) | NDA-gated source; not redistributed | `LICENSES/SoccerNet-NOTE.txt` | -The top-level `license: cc-by-4.0` tag in this card refers to the +The top-level `license: cc-by-4.0` tag on this card refers to the Anonymous-Authors-owned splits (synthetic + EasyHuman) and to this card, -metadata, and code only. EPIC-Kitchens-100 derivatives remain CC BY-NC 4.0; -SoccerNet provenance metadata is shared under fair-use research-citation -conventions and the underlying clips are not included. +metadata, and code only. EPIC-Kitchens-100 derivatives remain CC BY-NC 4.0. ## Citation -Cite as: Anonymous, "Substream Recollection," 2026 (anonymized for review). +Anonymous, "Substream Recollection," 2026 (anonymized for review). diff --git a/_split_sizes.json b/_split_sizes.json deleted file mode 100644 index 6165dcd04d2c0eff08f615089b2f1feb2ef0a893..0000000000000000000000000000000000000000 --- a/_split_sizes.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "splits": { - "easyhuman_text": { - "num_rows": 448, - "files": [ - "easyhuman_text.parquet" - ] - }, - "easyhuman_video": { - "num_rows": 224, - "files": [ - "easyhuman_video.parquet" - ] - }, - "substream_text": { - "num_rows": 7680, - "files": [ - "substream_text.parquet" - ] - }, - "substream_video": { - "num_rows": 6080, - "files": [ - "substream_video.parquet" - ] - }, - "natural_video": { - "num_rows": 1028, - "files": [ - "natural_video.parquet" - ] - } - } -} \ No newline at end of file diff --git a/easyhuman_text.parquet b/easyhuman_text.parquet deleted file mode 100644 index be1c4cdc0f932b171db7a1a2e6323c44479bca95..0000000000000000000000000000000000000000 --- a/easyhuman_text.parquet +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c999b026d494a507ded2d452c8924979961fe2c487ab742e4ccae45461495cfc -size 35488 diff --git a/easyhuman_video.parquet b/easyhuman_video.parquet deleted file mode 100644 index c83e3d0f5cafa22ef487cf3753d8bf770a0a43d9..0000000000000000000000000000000000000000 --- a/easyhuman_video.parquet +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3a734556d53f8144cb3081c221b77a72cb25c7f2411009d3c0f934a337757085 -size 20536 diff --git a/metadata.json b/metadata.json index 632700b1a287d0b6d7b3000e903a503cc8c56d90..4c597b5d1f600a4ec1526842d0a93de92ec32d6d 100644 --- a/metadata.json +++ b/metadata.json @@ -47,8 +47,8 @@ "transform": "cr:transform" }, "@type": "sc:Dataset", - "name": "substream-recollection", - "description": "Substream Recollection is a controlled benchmark for testing whether long-context VLMs / LLMs can recall whether a short probe substream occurred inside a longer parent stream. It pairs synthetic streams (low / medium / uniform entropy, lengths L=8..4096) with EasyHuman rendered 3-belt videos and a natural-video sub-benchmark drawn from EPIC-Kitchens-100 and SoccerNet.", + "name": "Substream Recollection", + "description": "Substream Recollection is a controlled benchmark for testing whether long-context VLMs / LLMs can recall whether a short probe substream occurred inside a longer parent stream. It pairs synthetic streams (low / medium / uniform entropy, lengths L=8..4096) with EasyHuman rendered 3-belt videos and a natural-video sub-benchmark drawn from EPIC-Kitchens-100 and SoccerNet. The dataset is organized into three top-level splits: text (text-modality questions), synthetic_video (rendered synthetic and EasyHuman videos), and natural_video (real-world videos).", "conformsTo": "http://mlcommons.org/croissant/1.0", "citeAs": "Anonymous, \"Substream Recollection,\" 2026 (anonymized for review).", "keywords": [ @@ -59,1539 +59,133 @@ "vision-language-models" ], "license": "https://creativecommons.org/licenses/by/4.0/", - "url": "https://huggingface.co/datasets/substream-recollection", - "version": "1.0.0", + "url": "https://huggingface.co/datasets/anonstreammem/substream-recollection", + "version": "2.0.0", + "creator": { + "@type": "sc:Organization", + "name": "Anonymous Authors" + }, + "author": { + "@type": "sc:Person", + "name": "Anonymous Authors" + }, + "datePublished": "2026-05-03", "distribution": [ { "@type": "cr:FileObject", - "@id": "easyhuman_text", - "name": "easyhuman_text", - "description": "Parquet shard for split easyhuman_text.", - "contentSize": "35488", - "contentUrl": "easyhuman_text.parquet", + "@id": "text-parquet", + "name": "text-parquet", + "description": "Parquet file for the text split (substream_text + easyhuman_text merged; subset column distinguishes them).", + "contentUrl": "text/questions.parquet", "encodingFormat": "application/x-parquet", - "sha256": "c999b026d494a507ded2d452c8924979961fe2c487ab742e4ccae45461495cfc", - "license": "https://creativecommons.org/licenses/by/4.0/" + "contentSize": "495194", + "sha256": "b563967fedef8399c0725213d12a4796f6f4d47962c3391867723724bc966bcb" }, { "@type": "cr:FileObject", - "@id": "easyhuman_video", - "name": "easyhuman_video", - "description": "Parquet shard for split easyhuman_video.", - "contentSize": "20536", - "contentUrl": "easyhuman_video.parquet", + "@id": "synthetic_video-parquet", + "name": "synthetic_video-parquet", + "description": "Parquet file for the synthetic_video split (substream_video + easyhuman_video merged; subset column distinguishes them).", + "contentUrl": "synthetic_video/questions.parquet", "encodingFormat": "application/x-parquet", - "sha256": "3a734556d53f8144cb3081c221b77a72cb25c7f2411009d3c0f934a337757085", - "license": "https://creativecommons.org/licenses/by/4.0/" + "contentSize": "297414", + "sha256": "8410ae2c1e8f3883ebb77571698c992d02bc1756a7369f993817503810e3b2b7" }, { "@type": "cr:FileObject", - "@id": "substream_text", - "name": "substream_text", - "description": "Parquet shard for split substream_text.", - "contentSize": "462931", - "contentUrl": "substream_text.parquet", + "@id": "natural_video-parquet", + "name": "natural_video-parquet", + "description": "Parquet file for the natural_video split (EPIC-Kitchens-100 derived clips and SoccerNet provenance metadata).", + "contentUrl": "natural_video/questions.parquet", "encodingFormat": "application/x-parquet", - "sha256": "25bec3762b4788ea884db85dcbebdbdf1c6c6b309dea649aa05cd0306f1bfbed", - "license": "https://creativecommons.org/licenses/by/4.0/" - }, - { - "@type": "cr:FileObject", - "@id": "substream_video", - "name": "substream_video", - "description": "Parquet shard for split substream_video.", - "contentSize": "270127", - "contentUrl": "substream_video.parquet", - "encodingFormat": "application/x-parquet", - "sha256": "3175ad85bc3b465750161844529e55111c985fd00750b8fbb260950ed1cc5d55", - "license": "https://creativecommons.org/licenses/by/4.0/" - }, - { - "@type": "cr:FileObject", - "@id": "natural_video", - "name": "natural_video", - "description": "Parquet shard for split natural_video.", - "contentSize": "26698", - "contentUrl": "natural_video.parquet", - "encodingFormat": "application/x-parquet", - "sha256": "1e1084463aff037aee62080daf4b6a995d447ffe673e81eb6b13cdee7b69b149", - "license": "https://creativecommons.org/licenses/by-nc/4.0/" + "contentSize": "32728", + "sha256": "f3c4b0309a0977571c9c51d976a201430a1a5ff4c947007cdccdeb4f96ffd140" } ], "recordSet": [ { "@type": "cr:RecordSet", - "@id": "records/easyhuman_text", - "name": "easyhuman_text", - "description": "Substream Recollection split: easyhuman_text.", - "field": [ - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/split", - "name": "split", - "description": "Top-level split label.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "split" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/subset", - "name": "subset", - "description": "Bucket-level subset id (e.g. UNIFORM_EVAL_L0128_ELOW, len_1024, L=128).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "subset" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/length_L", - "name": "length_L", - "description": "Substream length L (frames or characters), normalized.", - "dataType": "sc:Integer", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "length_L" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/entropy_band", - "name": "entropy_band", - "description": "low / medium / uniform / natural / easyhuman.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "entropy_band" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/modality", - "name": "modality", - "description": "text or video.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "modality" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/question_variant", - "name": "question_variant", - "description": "sequential, spatial, binary_natural, easyhuman_binary.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "question_variant" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/video_index", - "name": "video_index", - "description": "Per-bucket video index (1-based).", - "dataType": "sc:Integer", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "video_index" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/question_index", - "name": "question_index", - "description": "Per-video question index (0-based).", - "dataType": "sc:Integer", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "question_index" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/question_text", - "name": "question_text", - "description": "Prompt the model sees (no schema scaffolding).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "question_text" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/candidate", - "name": "candidate", - "description": "JSON-encoded probe metadata (sequence, clip_start, ...). Null when N/A.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "candidate" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/answer", - "name": "answer", - "description": "Ground-truth label (yes/no for binary questions).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "answer" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/clip_path", - "name": "clip_path", - "description": "Relative path to the probe clip file (where applicable).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "clip_path" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/video_path", - "name": "video_path", - "description": "Relative path to the main video (where applicable).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "video_path" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/dataset_source", - "name": "dataset_source", - "description": "synthetic, easyhuman, epic-kitchens-100, soccernet.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "dataset_source" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/input_sequence", - "name": "input_sequence", - "description": "Comma-joined input symbols (text-mode payload).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "input_sequence" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/source_class", - "name": "source_class", - "description": "Original event class label (natural-only).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "source_class" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/source_dataset", - "name": "source_dataset", - "description": "Original source dataset (natural-only).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "source_dataset" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/video_id", - "name": "video_id", - "description": "Canonical video identifier (joins to state files).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "video_id" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_text/question_id", - "name": "question_id", - "description": "Canonical question identifier.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_text" - }, - "extract": { - "column": "question_id" - } - } - } - ] - }, - { - "@type": "cr:RecordSet", - "@id": "records/easyhuman_video", - "name": "easyhuman_video", - "description": "Substream Recollection split: easyhuman_video.", - "field": [ - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/split", - "name": "split", - "description": "Top-level split label.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "split" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/subset", - "name": "subset", - "description": "Bucket-level subset id (e.g. UNIFORM_EVAL_L0128_ELOW, len_1024, L=128).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "subset" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/length_L", - "name": "length_L", - "description": "Substream length L (frames or characters), normalized.", - "dataType": "sc:Integer", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "length_L" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/entropy_band", - "name": "entropy_band", - "description": "low / medium / uniform / natural / easyhuman.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "entropy_band" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/modality", - "name": "modality", - "description": "text or video.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "modality" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/question_variant", - "name": "question_variant", - "description": "sequential, spatial, binary_natural, easyhuman_binary.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "question_variant" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/video_index", - "name": "video_index", - "description": "Per-bucket video index (1-based).", - "dataType": "sc:Integer", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "video_index" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/question_index", - "name": "question_index", - "description": "Per-video question index (0-based).", - "dataType": "sc:Integer", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "question_index" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/question_text", - "name": "question_text", - "description": "Prompt the model sees (no schema scaffolding).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "question_text" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/candidate", - "name": "candidate", - "description": "JSON-encoded probe metadata (sequence, clip_start, ...). Null when N/A.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "candidate" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/answer", - "name": "answer", - "description": "Ground-truth label (yes/no for binary questions).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "answer" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/clip_path", - "name": "clip_path", - "description": "Relative path to the probe clip file (where applicable).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "clip_path" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/video_path", - "name": "video_path", - "description": "Relative path to the main video (where applicable).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "video_path" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/dataset_source", - "name": "dataset_source", - "description": "synthetic, easyhuman, epic-kitchens-100, soccernet.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "dataset_source" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/input_sequence", - "name": "input_sequence", - "description": "Comma-joined input symbols (text-mode payload).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "input_sequence" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/source_class", - "name": "source_class", - "description": "Original event class label (natural-only).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "source_class" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/source_dataset", - "name": "source_dataset", - "description": "Original source dataset (natural-only).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "source_dataset" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/video_id", - "name": "video_id", - "description": "Canonical video identifier (joins to state files).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "video_id" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/easyhuman_video/question_id", - "name": "question_id", - "description": "Canonical question identifier.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "easyhuman_video" - }, - "extract": { - "column": "question_id" - } - } - } - ] - }, - { - "@type": "cr:RecordSet", - "@id": "records/substream_text", - "name": "substream_text", - "description": "Substream Recollection split: substream_text.", + "@id": "text", + "name": "text", + "description": "Text-modality questions for both the synthetic substream benchmark and EasyHuman. The subset column is 'substream' or 'easyhuman'; the bucket column preserves the original bucket id (e.g. UNIFORM_EVAL_L0128_ELOW, len_256). License: CC BY 4.0.", "field": [ - { - "@type": "cr:Field", - "@id": "records/substream_text/split", - "name": "split", - "description": "Top-level split label.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "split" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/subset", - "name": "subset", - "description": "Bucket-level subset id (e.g. UNIFORM_EVAL_L0128_ELOW, len_1024, L=128).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "subset" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/length_L", - "name": "length_L", - "description": "Substream length L (frames or characters), normalized.", - "dataType": "sc:Integer", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "length_L" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/entropy_band", - "name": "entropy_band", - "description": "low / medium / uniform / natural / easyhuman.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "entropy_band" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/modality", - "name": "modality", - "description": "text or video.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "modality" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/question_variant", - "name": "question_variant", - "description": "sequential, spatial, binary_natural, easyhuman_binary.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "question_variant" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/video_index", - "name": "video_index", - "description": "Per-bucket video index (1-based).", - "dataType": "sc:Integer", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "video_index" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/question_index", - "name": "question_index", - "description": "Per-video question index (0-based).", - "dataType": "sc:Integer", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "question_index" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/question_text", - "name": "question_text", - "description": "Prompt the model sees (no schema scaffolding).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "question_text" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/candidate", - "name": "candidate", - "description": "JSON-encoded probe metadata (sequence, clip_start, ...). Null when N/A.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "candidate" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/answer", - "name": "answer", - "description": "Ground-truth label (yes/no for binary questions).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "answer" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/clip_path", - "name": "clip_path", - "description": "Relative path to the probe clip file (where applicable).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "clip_path" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/video_path", - "name": "video_path", - "description": "Relative path to the main video (where applicable).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "video_path" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/dataset_source", - "name": "dataset_source", - "description": "synthetic, easyhuman, epic-kitchens-100, soccernet.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "dataset_source" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/input_sequence", - "name": "input_sequence", - "description": "Comma-joined input symbols (text-mode payload).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "input_sequence" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/source_class", - "name": "source_class", - "description": "Original event class label (natural-only).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "source_class" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/source_dataset", - "name": "source_dataset", - "description": "Original source dataset (natural-only).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "source_dataset" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/video_id", - "name": "video_id", - "description": "Canonical video identifier (joins to state files).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "video_id" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_text/question_id", - "name": "question_id", - "description": "Canonical question identifier.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_text" - }, - "extract": { - "column": "question_id" - } - } - } + {"@type": "cr:Field", "@id": "text/subset", "name": "subset", "description": "'substream' or 'easyhuman' (which sub-benchmark the row belongs to).", "dataType": "sc:Text", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "subset"}}}, + {"@type": "cr:Field", "@id": "text/bucket", "name": "bucket", "description": "Original bucket id (e.g. UNIFORM_EVAL_L0128_ELOW, len_256).", "dataType": "sc:Text", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "bucket"}}}, + {"@type": "cr:Field", "@id": "text/source_split", "name": "source_split", "description": "Original split label before the merge ('substream_text' or 'easyhuman_text').", "dataType": "sc:Text", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "source_split"}}}, + {"@type": "cr:Field", "@id": "text/length_L", "name": "length_L", "description": "Substream length L (number of symbols).", "dataType": "sc:Integer", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "length_L"}}}, + {"@type": "cr:Field", "@id": "text/entropy_band", "name": "entropy_band", "description": "low / medium / uniform / easyhuman.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "entropy_band"}}}, + {"@type": "cr:Field", "@id": "text/modality", "name": "modality", "description": "'text'.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "modality"}}}, + {"@type": "cr:Field", "@id": "text/question_variant", "name": "question_variant", "description": "sequential / spatial / easyhuman_binary.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "question_variant"}}}, + {"@type": "cr:Field", "@id": "text/video_index", "name": "video_index", "description": "Per-bucket video index (1-based).", "dataType": "sc:Integer", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "video_index"}}}, + {"@type": "cr:Field", "@id": "text/question_index", "name": "question_index", "description": "Per-video question index (0-based).", "dataType": "sc:Integer", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "question_index"}}}, + {"@type": "cr:Field", "@id": "text/question_text", "name": "question_text", "description": "Prompt the model sees (no schema scaffolding).", "dataType": "sc:Text", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "question_text"}}}, + {"@type": "cr:Field", "@id": "text/candidate", "name": "candidate", "description": "JSON-encoded probe metadata (sequence, clip_start, ...). Null when N/A.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "candidate"}}}, + {"@type": "cr:Field", "@id": "text/answer", "name": "answer", "description": "Ground-truth label (yes/no).", "dataType": "sc:Text", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "answer"}}}, + {"@type": "cr:Field", "@id": "text/clip_path", "name": "clip_path", "description": "Always null for text rows (kept for cross-split schema parity).", "dataType": "sc:Text", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "clip_path"}}}, + {"@type": "cr:Field", "@id": "text/video_path", "name": "video_path", "description": "Always null for text rows (kept for cross-split schema parity).", "dataType": "sc:Text", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "video_path"}}}, + {"@type": "cr:Field", "@id": "text/dataset_source", "name": "dataset_source", "description": "synthetic / easyhuman.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "dataset_source"}}}, + {"@type": "cr:Field", "@id": "text/input_sequence", "name": "input_sequence", "description": "Comma-joined input symbols (text-mode payload).", "dataType": "sc:Text", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "input_sequence"}}}, + {"@type": "cr:Field", "@id": "text/source_class", "name": "source_class", "description": "Always null for text split.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "source_class"}}}, + {"@type": "cr:Field", "@id": "text/source_dataset", "name": "source_dataset", "description": "Always null for text split.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "source_dataset"}}}, + {"@type": "cr:Field", "@id": "text/video_id", "name": "video_id", "description": "Canonical video identifier.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "video_id"}}}, + {"@type": "cr:Field", "@id": "text/question_id", "name": "question_id", "description": "Canonical question identifier.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "text-parquet"}, "extract": {"column": "question_id"}}} ] }, { "@type": "cr:RecordSet", - "@id": "records/substream_video", - "name": "substream_video", - "description": "Substream Recollection split: substream_video.", + "@id": "synthetic_video", + "name": "synthetic_video", + "description": "Video-modality questions over rendered synthetic streams (substream_video) and EasyHuman 3-belt videos (easyhuman_video). The subset column is 'substream' or 'easyhuman'; bucket preserves the original bucket id; video_path / clip_path are relative to this directory. License: CC BY 4.0.", "field": [ - { - "@type": "cr:Field", - "@id": "records/substream_video/split", - "name": "split", - "description": "Top-level split label.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "split" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/subset", - "name": "subset", - "description": "Bucket-level subset id (e.g. UNIFORM_EVAL_L0128_ELOW, len_1024, L=128).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "subset" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/length_L", - "name": "length_L", - "description": "Substream length L (frames or characters), normalized.", - "dataType": "sc:Integer", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "length_L" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/entropy_band", - "name": "entropy_band", - "description": "low / medium / uniform / natural / easyhuman.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "entropy_band" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/modality", - "name": "modality", - "description": "text or video.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "modality" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/question_variant", - "name": "question_variant", - "description": "sequential, spatial, binary_natural, easyhuman_binary.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "question_variant" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/video_index", - "name": "video_index", - "description": "Per-bucket video index (1-based).", - "dataType": "sc:Integer", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "video_index" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/question_index", - "name": "question_index", - "description": "Per-video question index (0-based).", - "dataType": "sc:Integer", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "question_index" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/question_text", - "name": "question_text", - "description": "Prompt the model sees (no schema scaffolding).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "question_text" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/candidate", - "name": "candidate", - "description": "JSON-encoded probe metadata (sequence, clip_start, ...). Null when N/A.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "candidate" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/answer", - "name": "answer", - "description": "Ground-truth label (yes/no for binary questions).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "answer" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/clip_path", - "name": "clip_path", - "description": "Relative path to the probe clip file (where applicable).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "clip_path" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/video_path", - "name": "video_path", - "description": "Relative path to the main video (where applicable).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "video_path" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/dataset_source", - "name": "dataset_source", - "description": "synthetic, easyhuman, epic-kitchens-100, soccernet.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "dataset_source" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/input_sequence", - "name": "input_sequence", - "description": "Comma-joined input symbols (text-mode payload).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "input_sequence" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/source_class", - "name": "source_class", - "description": "Original event class label (natural-only).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "source_class" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/source_dataset", - "name": "source_dataset", - "description": "Original source dataset (natural-only).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "source_dataset" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/video_id", - "name": "video_id", - "description": "Canonical video identifier (joins to state files).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "video_id" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/substream_video/question_id", - "name": "question_id", - "description": "Canonical question identifier.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "substream_video" - }, - "extract": { - "column": "question_id" - } - } - } + {"@type": "cr:Field", "@id": "synthetic_video/subset", "name": "subset", "description": "'substream' or 'easyhuman'.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "subset"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/bucket", "name": "bucket", "description": "Original bucket id (e.g. UNIFORM_EVAL_L0128_ELOW, len_256).", "dataType": "sc:Text", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "bucket"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/source_split", "name": "source_split", "description": "Original split label before the merge.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "source_split"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/length_L", "name": "length_L", "description": "Substream length L (frames).", "dataType": "sc:Integer", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "length_L"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/entropy_band", "name": "entropy_band", "description": "low / medium / uniform / easyhuman.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "entropy_band"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/modality", "name": "modality", "description": "'video'.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "modality"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/question_variant", "name": "question_variant", "description": "sequential / spatial / easyhuman_binary.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "question_variant"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/video_index", "name": "video_index", "description": "Per-bucket video index (1-based).", "dataType": "sc:Integer", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "video_index"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/question_index", "name": "question_index", "description": "Per-video question index (0-based).", "dataType": "sc:Integer", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "question_index"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/question_text", "name": "question_text", "description": "Prompt the model sees.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "question_text"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/candidate", "name": "candidate", "description": "JSON-encoded probe metadata.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "candidate"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/answer", "name": "answer", "description": "Ground-truth label (yes/no).", "dataType": "sc:Text", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "answer"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/clip_path", "name": "clip_path", "description": "Relative path to the probe clip mp4 (under synthetic_video/).", "dataType": "sc:Text", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "clip_path"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/video_path", "name": "video_path", "description": "Relative path to the parent video mp4 (under synthetic_video/).", "dataType": "sc:Text", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "video_path"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/dataset_source", "name": "dataset_source", "description": "synthetic / easyhuman.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "dataset_source"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/input_sequence", "name": "input_sequence", "description": "Comma-joined input symbols.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "input_sequence"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/source_class", "name": "source_class", "description": "Always null for synthetic_video split.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "source_class"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/source_dataset", "name": "source_dataset", "description": "Always null for synthetic_video split.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "source_dataset"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/video_id", "name": "video_id", "description": "Canonical video identifier.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "video_id"}}}, + {"@type": "cr:Field", "@id": "synthetic_video/question_id", "name": "question_id", "description": "Canonical question identifier.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "synthetic_video-parquet"}, "extract": {"column": "question_id"}}} ] }, { "@type": "cr:RecordSet", - "@id": "records/natural_video", + "@id": "natural_video", "name": "natural_video", - "description": "Substream Recollection split: natural_video.", + "description": "Natural-video benchmark drawn from EPIC-Kitchens-100 and SoccerNet at L in {8,16,64,128,512,1024}. EPIC-Kitchens-100 derived clips ship in this repo (license: CC BY-NC 4.0). SoccerNet rows do NOT ship the underlying mp4s (NDA-gated source); the source_provenance column carries provenance metadata so the originals can be obtained from soccer-net.org after signing the SoccerNet NDA. Mixed license: CC BY-NC 4.0 (EPIC-Kitchens-100 derivatives) and SoccerNet NDA terms (provenance metadata only).", "field": [ - { - "@type": "cr:Field", - "@id": "records/natural_video/split", - "name": "split", - "description": "Top-level split label.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "split" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/subset", - "name": "subset", - "description": "Bucket-level subset id (e.g. UNIFORM_EVAL_L0128_ELOW, len_1024, L=128).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "subset" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/length_L", - "name": "length_L", - "description": "Substream length L (frames or characters), normalized.", - "dataType": "sc:Integer", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "length_L" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/entropy_band", - "name": "entropy_band", - "description": "low / medium / uniform / natural / easyhuman.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "entropy_band" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/modality", - "name": "modality", - "description": "text or video.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "modality" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/question_variant", - "name": "question_variant", - "description": "sequential, spatial, binary_natural, easyhuman_binary.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "question_variant" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/video_index", - "name": "video_index", - "description": "Per-bucket video index (1-based).", - "dataType": "sc:Integer", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "video_index" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/question_index", - "name": "question_index", - "description": "Per-video question index (0-based).", - "dataType": "sc:Integer", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "question_index" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/question_text", - "name": "question_text", - "description": "Prompt the model sees (no schema scaffolding).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "question_text" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/candidate", - "name": "candidate", - "description": "JSON-encoded probe metadata (sequence, clip_start, ...). Null when N/A.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "candidate" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/answer", - "name": "answer", - "description": "Ground-truth label (yes/no for binary questions).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "answer" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/clip_path", - "name": "clip_path", - "description": "Relative path to the probe clip file (where applicable).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "clip_path" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/video_path", - "name": "video_path", - "description": "Relative path to the main video (where applicable).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "video_path" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/dataset_source", - "name": "dataset_source", - "description": "synthetic, easyhuman, epic-kitchens-100, soccernet.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "dataset_source" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/input_sequence", - "name": "input_sequence", - "description": "Comma-joined input symbols (text-mode payload).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "input_sequence" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/source_class", - "name": "source_class", - "description": "Original event class label (natural-only).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "source_class" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/source_dataset", - "name": "source_dataset", - "description": "Original source dataset (natural-only).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "source_dataset" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/video_id", - "name": "video_id", - "description": "Canonical video identifier (joins to state files).", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "video_id" - } - } - }, - { - "@type": "cr:Field", - "@id": "records/natural_video/question_id", - "name": "question_id", - "description": "Canonical question identifier.", - "dataType": "sc:Text", - "source": { - "fileObject": { - "@id": "natural_video" - }, - "extract": { - "column": "question_id" - } - } - } + {"@type": "cr:Field", "@id": "natural_video/subset", "name": "subset", "description": "Bucket id (e.g. L=8, L=128).", "dataType": "sc:Text", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "subset"}}}, + {"@type": "cr:Field", "@id": "natural_video/source_split", "name": "source_split", "description": "Always 'natural_video'.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "source_split"}}}, + {"@type": "cr:Field", "@id": "natural_video/length_L", "name": "length_L", "description": "Stream length L.", "dataType": "sc:Integer", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "length_L"}}}, + {"@type": "cr:Field", "@id": "natural_video/entropy_band", "name": "entropy_band", "description": "'natural'.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "entropy_band"}}}, + {"@type": "cr:Field", "@id": "natural_video/modality", "name": "modality", "description": "'video'.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "modality"}}}, + {"@type": "cr:Field", "@id": "natural_video/question_variant", "name": "question_variant", "description": "'binary_natural'.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "question_variant"}}}, + {"@type": "cr:Field", "@id": "natural_video/video_index", "name": "video_index", "description": "Per-bucket video index.", "dataType": "sc:Integer", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "video_index"}}}, + {"@type": "cr:Field", "@id": "natural_video/question_index", "name": "question_index", "description": "Per-video question index.", "dataType": "sc:Integer", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "question_index"}}}, + {"@type": "cr:Field", "@id": "natural_video/question_text", "name": "question_text", "description": "Prompt the model sees.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "question_text"}}}, + {"@type": "cr:Field", "@id": "natural_video/candidate", "name": "candidate", "description": "JSON-encoded probe metadata. Null for natural rows.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "candidate"}}}, + {"@type": "cr:Field", "@id": "natural_video/answer", "name": "answer", "description": "Ground-truth label (yes/no).", "dataType": "sc:Text", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "answer"}}}, + {"@type": "cr:Field", "@id": "natural_video/clip_path", "name": "clip_path", "description": "Always null for natural rows.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "clip_path"}}}, + {"@type": "cr:Field", "@id": "natural_video/video_path", "name": "video_path", "description": "Relative path to the video mp4 under natural_video/. Null/missing for SoccerNet rows.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "video_path"}}}, + {"@type": "cr:Field", "@id": "natural_video/dataset_source", "name": "dataset_source", "description": "epic-kitchens-100 / soccernet.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "dataset_source"}}}, + {"@type": "cr:Field", "@id": "natural_video/input_sequence", "name": "input_sequence", "description": "Always null for natural rows.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "input_sequence"}}}, + {"@type": "cr:Field", "@id": "natural_video/source_class", "name": "source_class", "description": "Original event class label (e.g. clean_counter, red_card).", "dataType": "sc:Text", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "source_class"}}}, + {"@type": "cr:Field", "@id": "natural_video/source_dataset", "name": "source_dataset", "description": "epic-kitchens-100 / soccernet.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "source_dataset"}}}, + {"@type": "cr:Field", "@id": "natural_video/video_id", "name": "video_id", "description": "Canonical video identifier.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "video_id"}}}, + {"@type": "cr:Field", "@id": "natural_video/question_id", "name": "question_id", "description": "Canonical question identifier.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "question_id"}}}, + {"@type": "cr:Field", "@id": "natural_video/source_provenance", "name": "source_provenance", "description": "JSON describing the source match, half, time range, and license. Populated for SoccerNet rows; null elsewhere.", "dataType": "sc:Text", "source": {"fileObject": {"@id": "natural_video-parquet"}, "extract": {"column": "source_provenance"}}} ] } - ], - "creator": { - "@type": "sc:Organization", - "name": "Anonymous Authors" - }, - "author": { - "@type": "sc:Person", - "name": "Anonymous Authors" - }, - "datePublished": "2026-05-03" -} \ No newline at end of file + ] +} diff --git a/natural_video.parquet b/natural_video.parquet deleted file mode 100644 index e49a64fb3502f3d36ebb13cb67b4f0aaa5e179cd..0000000000000000000000000000000000000000 --- a/natural_video.parquet +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1e1084463aff037aee62080daf4b6a995d447ffe673e81eb6b13cdee7b69b149 -size 26698 diff --git a/natural_video/questions.json b/natural_video/questions.json new file mode 100644 index 0000000000000000000000000000000000000000..17217a601c0aba0cb0714b1c2d30c2e0264fa56b --- /dev/null +++ b/natural_video/questions.json @@ -0,0 +1,1028 @@ +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 1, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_01", "question_id": "ex1fps_short_v1_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 2, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_02", "question_id": "ex1fps_short_v2_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 3, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_03", "question_id": "ex1fps_short_v3_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 4, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_04", "question_id": "ex1fps_short_v4_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 5, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_05", "question_id": "ex1fps_short_v5_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 6, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_06", "question_id": "ex1fps_short_v6_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 7, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_07", "question_id": "ex1fps_short_v7_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 8, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_08", "question_id": "ex1fps_short_v8_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 9, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_09", "question_id": "ex1fps_short_v9_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 10, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_10", "question_id": "ex1fps_short_v10_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 11, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_01", "question_id": "ex1fps_short_v11_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 12, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_02", "question_id": "ex1fps_short_v12_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 13, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_03", "question_id": "ex1fps_short_v13_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 14, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_04", "question_id": "ex1fps_short_v14_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 15, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_05", "question_id": "ex1fps_short_v15_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 16, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_06", "question_id": "ex1fps_short_v16_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 17, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_07", "question_id": "ex1fps_short_v17_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 18, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_08", "question_id": "ex1fps_short_v18_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 19, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_09", "question_id": "ex1fps_short_v19_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 20, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/clean_counter_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_10", "question_id": "ex1fps_short_v20_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 21, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_01", "question_id": "ex1fps_short_v21_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 22, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_02", "question_id": "ex1fps_short_v22_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 23, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_03", "question_id": "ex1fps_short_v23_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 24, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_04", "question_id": "ex1fps_short_v24_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 25, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_05", "question_id": "ex1fps_short_v25_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 26, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_06", "question_id": "ex1fps_short_v26_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 27, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_07", "question_id": "ex1fps_short_v27_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 28, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_08", "question_id": "ex1fps_short_v28_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 29, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_09", "question_id": "ex1fps_short_v29_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 30, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_10", "question_id": "ex1fps_short_v30_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 31, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_01", "question_id": "ex1fps_short_v31_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 32, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_02", "question_id": "ex1fps_short_v32_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 33, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_03", "question_id": "ex1fps_short_v33_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 34, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_04", "question_id": "ex1fps_short_v34_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 35, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_05", "question_id": "ex1fps_short_v35_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 36, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_06", "question_id": "ex1fps_short_v36_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 37, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_07", "question_id": "ex1fps_short_v37_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 38, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_08", "question_id": "ex1fps_short_v38_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 39, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_09", "question_id": "ex1fps_short_v39_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 40, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/cut_nontomato_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_10", "question_id": "ex1fps_short_v40_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 41, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_01", "question_id": "ex1fps_short_v41_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 42, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_02", "question_id": "ex1fps_short_v42_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 43, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_03", "question_id": "ex1fps_short_v43_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 44, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_04", "question_id": "ex1fps_short_v44_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 45, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_05", "question_id": "ex1fps_short_v45_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 46, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_06", "question_id": "ex1fps_short_v46_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 47, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_07", "question_id": "ex1fps_short_v47_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 48, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_08", "question_id": "ex1fps_short_v48_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 49, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_09", "question_id": "ex1fps_short_v49_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 50, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_10", "question_id": "ex1fps_short_v50_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 51, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_11.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_11", "question_id": "ex1fps_short_v51_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 52, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_12.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_12", "question_id": "ex1fps_short_v52_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 53, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_13.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_13", "question_id": "ex1fps_short_v53_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 54, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_14.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_14", "question_id": "ex1fps_short_v54_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 55, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_15.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_15", "question_id": "ex1fps_short_v55_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 56, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_16.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_16", "question_id": "ex1fps_short_v56_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 57, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_17.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_17", "question_id": "ex1fps_short_v57_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 58, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_neg_18.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_18", "question_id": "ex1fps_short_v58_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 59, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_01", "question_id": "ex1fps_short_v59_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 60, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_02", "question_id": "ex1fps_short_v60_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 61, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_03", "question_id": "ex1fps_short_v61_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 62, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_04", "question_id": "ex1fps_short_v62_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 63, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_05", "question_id": "ex1fps_short_v63_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 64, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_06", "question_id": "ex1fps_short_v64_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 65, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_07", "question_id": "ex1fps_short_v65_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 66, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_08", "question_id": "ex1fps_short_v66_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 67, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_09", "question_id": "ex1fps_short_v67_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 68, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_10", "question_id": "ex1fps_short_v68_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 69, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_11.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_11", "question_id": "ex1fps_short_v69_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 70, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_12.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_12", "question_id": "ex1fps_short_v70_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 71, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_13.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_13", "question_id": "ex1fps_short_v71_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 72, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_14.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_14", "question_id": "ex1fps_short_v72_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 73, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_15.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_15", "question_id": "ex1fps_short_v73_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 74, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_16.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_16", "question_id": "ex1fps_short_v74_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 75, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_17.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_17", "question_id": "ex1fps_short_v75_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 76, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_cupboard_pos_18.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_18", "question_id": "ex1fps_short_v76_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 77, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_01", "question_id": "ex1fps_short_v77_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 78, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_02", "question_id": "ex1fps_short_v78_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 79, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_03", "question_id": "ex1fps_short_v79_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 80, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_04", "question_id": "ex1fps_short_v80_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 81, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_05", "question_id": "ex1fps_short_v81_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 82, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_06", "question_id": "ex1fps_short_v82_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 83, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_07", "question_id": "ex1fps_short_v83_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 84, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_08", "question_id": "ex1fps_short_v84_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 85, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_09", "question_id": "ex1fps_short_v85_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 86, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_10", "question_id": "ex1fps_short_v86_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 87, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_11.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_11", "question_id": "ex1fps_short_v87_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 88, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_12.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_12", "question_id": "ex1fps_short_v88_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 89, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_13.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_13", "question_id": "ex1fps_short_v89_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 90, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_14.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_14", "question_id": "ex1fps_short_v90_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 91, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_15.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_15", "question_id": "ex1fps_short_v91_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 92, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_16.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_16", "question_id": "ex1fps_short_v92_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 93, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_17.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_17", "question_id": "ex1fps_short_v93_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 94, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_18.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_18", "question_id": "ex1fps_short_v94_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 95, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_19.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_19", "question_id": "ex1fps_short_v95_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 96, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_neg_20.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_20", "question_id": "ex1fps_short_v96_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 97, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_01", "question_id": "ex1fps_short_v97_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 98, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_02", "question_id": "ex1fps_short_v98_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 99, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_03", "question_id": "ex1fps_short_v99_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 100, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_04", "question_id": "ex1fps_short_v100_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 101, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_05", "question_id": "ex1fps_short_v101_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 102, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_06", "question_id": "ex1fps_short_v102_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 103, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_07", "question_id": "ex1fps_short_v103_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 104, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_08", "question_id": "ex1fps_short_v104_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 105, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_09", "question_id": "ex1fps_short_v105_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 106, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_10", "question_id": "ex1fps_short_v106_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 107, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_11.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_11", "question_id": "ex1fps_short_v107_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 108, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_12.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_12", "question_id": "ex1fps_short_v108_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 109, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_13.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_13", "question_id": "ex1fps_short_v109_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 110, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_14.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_14", "question_id": "ex1fps_short_v110_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 111, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_15.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_15", "question_id": "ex1fps_short_v111_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 112, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_16.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_16", "question_id": "ex1fps_short_v112_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 113, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_17.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_17", "question_id": "ex1fps_short_v113_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 114, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_18.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_18", "question_id": "ex1fps_short_v114_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 115, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_19.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_19", "question_id": "ex1fps_short_v115_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 116, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_drawer_pos_20.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_20", "question_id": "ex1fps_short_v116_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 117, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_01", "question_id": "ex1fps_short_v117_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 118, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_02", "question_id": "ex1fps_short_v118_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 119, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_03", "question_id": "ex1fps_short_v119_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 120, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_04", "question_id": "ex1fps_short_v120_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 121, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_05", "question_id": "ex1fps_short_v121_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 122, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_06", "question_id": "ex1fps_short_v122_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 123, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_07", "question_id": "ex1fps_short_v123_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 124, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_08", "question_id": "ex1fps_short_v124_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 125, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_09", "question_id": "ex1fps_short_v125_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 126, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_10", "question_id": "ex1fps_short_v126_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 127, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_01", "question_id": "ex1fps_short_v127_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 128, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_02", "question_id": "ex1fps_short_v128_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 129, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_03", "question_id": "ex1fps_short_v129_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 130, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_04", "question_id": "ex1fps_short_v130_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 131, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_05", "question_id": "ex1fps_short_v131_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 132, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_06", "question_id": "ex1fps_short_v132_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 133, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_07", "question_id": "ex1fps_short_v133_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 134, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_08", "question_id": "ex1fps_short_v134_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 135, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_09", "question_id": "ex1fps_short_v135_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 136, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/open_fridge_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_10", "question_id": "ex1fps_short_v136_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 137, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_01", "question_id": "ex1fps_short_v137_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 138, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_02", "question_id": "ex1fps_short_v138_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 139, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_03", "question_id": "ex1fps_short_v139_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 140, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_04", "question_id": "ex1fps_short_v140_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 141, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_05", "question_id": "ex1fps_short_v141_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 142, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_06", "question_id": "ex1fps_short_v142_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 143, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_07", "question_id": "ex1fps_short_v143_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 144, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_08", "question_id": "ex1fps_short_v144_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 145, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_09", "question_id": "ex1fps_short_v145_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 146, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_10", "question_id": "ex1fps_short_v146_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 147, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_01", "question_id": "ex1fps_short_v147_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 148, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_02", "question_id": "ex1fps_short_v148_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 149, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_03", "question_id": "ex1fps_short_v149_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 150, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_04", "question_id": "ex1fps_short_v150_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 151, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_05", "question_id": "ex1fps_short_v151_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 152, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_06", "question_id": "ex1fps_short_v152_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 153, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_07", "question_id": "ex1fps_short_v153_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 154, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_08", "question_id": "ex1fps_short_v154_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 155, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_09", "question_id": "ex1fps_short_v155_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 156, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/pour_water_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_10", "question_id": "ex1fps_short_v156_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 157, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/red_card_neg_01.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_01", "question_id": "ex1fps_short_v157_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-23 - 15-30 West Brom 2 - 3 Chelsea\", \"source_half\": 1, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-23 - 15-30 West Brom 2 - 3 Chelsea/1_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_01\"}"} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 158, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/red_card_neg_02.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_02", "question_id": "ex1fps_short_v158_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-29 - 17-00 Liverpool 0 - 3 West Ham\", \"source_half\": 1, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-29 - 17-00 Liverpool 0 - 3 West Ham/1_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_02\"}"} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 159, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/red_card_neg_03.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_03", "question_id": "ex1fps_short_v159_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg\", \"source_half\": 2, \"source_video_path\": \"soccernet/germany_bundesliga/2014-2015/2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg/2_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_03\"}"} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 160, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/red_card_neg_04.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_04", "question_id": "ex1fps_short_v160_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund\", \"source_half\": 2, \"source_video_path\": \"soccernet/germany_bundesliga/2016-2017/2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund/2_720p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_04\"}"} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 161, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/red_card_neg_05.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_05", "question_id": "ex1fps_short_v161_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-09-27 - 21-45 Inter 1 - 4 Fiorentina\", \"source_half\": 2, \"source_video_path\": \"soccernet/italy_serie-a/2015-2016/2015-09-27 - 21-45 Inter 1 - 4 Fiorentina/2_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_05\"}"} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 162, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/red_card_neg_06.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_06", "question_id": "ex1fps_short_v162_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2016-12-04 - 17-00 Lazio 0 - 2 AS Roma\", \"source_half\": 1, \"source_video_path\": \"soccernet/italy_serie-a/2016-2017/2016-12-04 - 17-00 Lazio 0 - 2 AS Roma/1_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_06\"}"} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 163, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/red_card_neg_07.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_07", "question_id": "ex1fps_short_v163_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-04-25 - 17-00 Espanyol 0 - 2 Barcelona\", \"source_half\": 1, \"source_video_path\": \"soccernet/spain_laliga/2014-2015/2015-04-25 - 17-00 Espanyol 0 - 2 Barcelona/1_720p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_07\"}"} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 164, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/red_card_neg_08.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_08", "question_id": "ex1fps_short_v164_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2016-05-08 - 18-00 Real Madrid 3 - 2 Valencia\", \"source_half\": 1, \"source_video_path\": \"soccernet/spain_laliga/2015-2016/2016-05-08 - 18-00 Real Madrid 3 - 2 Valencia/1_720p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_08\"}"} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 165, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/red_card_pos_01.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_01", "question_id": "ex1fps_short_v165_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-23 - 15-30 West Brom 2 - 3 Chelsea\", \"source_half\": 2, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-23 - 15-30 West Brom 2 - 3 Chelsea/2_224p.mkv\", \"clip_start_in_source_seconds\": 456.1, \"clip_end_in_source_seconds\": 546.1, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_01\"}"} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 166, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/red_card_pos_02.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_02", "question_id": "ex1fps_short_v166_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-29 - 17-00 Liverpool 0 - 3 West Ham\", \"source_half\": 2, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-29 - 17-00 Liverpool 0 - 3 West Ham/2_224p.mkv\", \"clip_start_in_source_seconds\": 1926.77, \"clip_end_in_source_seconds\": 2016.77, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_02\"}"} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 167, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/red_card_pos_03.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_03", "question_id": "ex1fps_short_v167_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg\", \"source_half\": 1, \"source_video_path\": \"soccernet/germany_bundesliga/2014-2015/2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg/1_224p.mkv\", \"clip_start_in_source_seconds\": 686.48, \"clip_end_in_source_seconds\": 776.48, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_03\"}"} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 168, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/red_card_pos_04.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_04", "question_id": "ex1fps_short_v168_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund\", \"source_half\": 1, \"source_video_path\": \"soccernet/germany_bundesliga/2016-2017/2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund/1_720p.mkv\", \"clip_start_in_source_seconds\": 2259.19, \"clip_end_in_source_seconds\": 2349.19, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_04\"}"} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 169, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/red_card_pos_05.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_05", "question_id": "ex1fps_short_v169_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-09-27 - 21-45 Inter 1 - 4 Fiorentina\", \"source_half\": 1, \"source_video_path\": \"soccernet/italy_serie-a/2015-2016/2015-09-27 - 21-45 Inter 1 - 4 Fiorentina/1_224p.mkv\", \"clip_start_in_source_seconds\": 1802.89, \"clip_end_in_source_seconds\": 1892.89, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_05\"}"} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 170, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/red_card_pos_06.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_06", "question_id": "ex1fps_short_v170_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2016-12-04 - 17-00 Lazio 0 - 2 AS Roma\", \"source_half\": 2, \"source_video_path\": \"soccernet/italy_serie-a/2016-2017/2016-12-04 - 17-00 Lazio 0 - 2 AS Roma/2_224p.mkv\", \"clip_start_in_source_seconds\": 1209.29, \"clip_end_in_source_seconds\": 1299.29, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_06\"}"} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 171, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/red_card_pos_07.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_07", "question_id": "ex1fps_short_v171_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-04-25 - 17-00 Espanyol 0 - 2 Barcelona\", \"source_half\": 2, \"source_video_path\": \"soccernet/spain_laliga/2014-2015/2015-04-25 - 17-00 Espanyol 0 - 2 Barcelona/2_720p.mkv\", \"clip_start_in_source_seconds\": 505.61, \"clip_end_in_source_seconds\": 595.61, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_07\"}"} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 172, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/red_card_pos_08.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_08", "question_id": "ex1fps_short_v172_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2016-05-08 - 18-00 Real Madrid 3 - 2 Valencia\", \"source_half\": 2, \"source_video_path\": \"soccernet/spain_laliga/2015-2016/2016-05-08 - 18-00 Real Madrid 3 - 2 Valencia/2_720p.mkv\", \"clip_start_in_source_seconds\": 2231.49, \"clip_end_in_source_seconds\": 2321.49, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_08\"}"} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 173, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_01", "question_id": "ex1fps_short_v173_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 174, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_02", "question_id": "ex1fps_short_v174_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 175, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_03", "question_id": "ex1fps_short_v175_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 176, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_04", "question_id": "ex1fps_short_v176_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 177, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_05", "question_id": "ex1fps_short_v177_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 178, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_06", "question_id": "ex1fps_short_v178_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 179, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_07", "question_id": "ex1fps_short_v179_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 180, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_08", "question_id": "ex1fps_short_v180_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 181, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_09", "question_id": "ex1fps_short_v181_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 182, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_10", "question_id": "ex1fps_short_v182_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 183, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_01", "question_id": "ex1fps_short_v183_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 184, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_02", "question_id": "ex1fps_short_v184_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 185, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_03", "question_id": "ex1fps_short_v185_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 186, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_04", "question_id": "ex1fps_short_v186_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 187, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_05", "question_id": "ex1fps_short_v187_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 188, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_06", "question_id": "ex1fps_short_v188_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 189, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_07", "question_id": "ex1fps_short_v189_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 190, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_08", "question_id": "ex1fps_short_v190_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 191, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_09", "question_id": "ex1fps_short_v191_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 192, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/rinse_X_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_10", "question_id": "ex1fps_short_v192_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 193, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_01", "question_id": "ex1fps_short_v193_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 194, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_02", "question_id": "ex1fps_short_v194_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 195, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_03", "question_id": "ex1fps_short_v195_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 196, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_04", "question_id": "ex1fps_short_v196_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 197, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_05", "question_id": "ex1fps_short_v197_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 198, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_06", "question_id": "ex1fps_short_v198_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 199, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_07", "question_id": "ex1fps_short_v199_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 200, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_08", "question_id": "ex1fps_short_v200_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 201, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_09", "question_id": "ex1fps_short_v201_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 202, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_10", "question_id": "ex1fps_short_v202_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 203, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_01", "question_id": "ex1fps_short_v203_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 204, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_02", "question_id": "ex1fps_short_v204_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 205, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_03", "question_id": "ex1fps_short_v205_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 206, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_04", "question_id": "ex1fps_short_v206_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 207, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_05", "question_id": "ex1fps_short_v207_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 208, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_06", "question_id": "ex1fps_short_v208_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 209, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_07", "question_id": "ex1fps_short_v209_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 210, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_08", "question_id": "ex1fps_short_v210_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 211, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_09", "question_id": "ex1fps_short_v211_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 212, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/turn_on_tap_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_10", "question_id": "ex1fps_short_v212_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 213, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_01", "question_id": "ex1fps_short_v213_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 214, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_02", "question_id": "ex1fps_short_v214_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 215, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_03", "question_id": "ex1fps_short_v215_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 216, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_04", "question_id": "ex1fps_short_v216_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 217, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_05", "question_id": "ex1fps_short_v217_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 218, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_06", "question_id": "ex1fps_short_v218_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 219, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_07", "question_id": "ex1fps_short_v219_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 220, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_08", "question_id": "ex1fps_short_v220_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 221, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_09", "question_id": "ex1fps_short_v221_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 222, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_10", "question_id": "ex1fps_short_v222_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 223, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_01", "question_id": "ex1fps_short_v223_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 224, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_02", "question_id": "ex1fps_short_v224_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 225, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_03", "question_id": "ex1fps_short_v225_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 226, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_04", "question_id": "ex1fps_short_v226_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 227, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_05", "question_id": "ex1fps_short_v227_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 228, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_06", "question_id": "ex1fps_short_v228_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 229, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_07", "question_id": "ex1fps_short_v229_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 230, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_08", "question_id": "ex1fps_short_v230_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 231, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_09", "question_id": "ex1fps_short_v231_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 232, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wash_plate_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_10", "question_id": "ex1fps_short_v232_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 233, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_01", "question_id": "ex1fps_short_v233_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 234, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_02", "question_id": "ex1fps_short_v234_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 235, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_03", "question_id": "ex1fps_short_v235_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 236, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_04", "question_id": "ex1fps_short_v236_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 237, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_05", "question_id": "ex1fps_short_v237_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 238, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_06", "question_id": "ex1fps_short_v238_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 239, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_07", "question_id": "ex1fps_short_v239_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 240, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_08", "question_id": "ex1fps_short_v240_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 241, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_09", "question_id": "ex1fps_short_v241_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 242, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_10", "question_id": "ex1fps_short_v242_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 243, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_01", "question_id": "ex1fps_short_v243_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 244, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_02", "question_id": "ex1fps_short_v244_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 245, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_03", "question_id": "ex1fps_short_v245_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 246, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_04", "question_id": "ex1fps_short_v246_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 247, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_05", "question_id": "ex1fps_short_v247_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 248, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_06", "question_id": "ex1fps_short_v248_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 249, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_07", "question_id": "ex1fps_short_v249_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 250, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_08", "question_id": "ex1fps_short_v250_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 251, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_09", "question_id": "ex1fps_short_v251_q0", "source_provenance": null} +{"subset": "L=8", "source_split": "natural_video", "length_L": 8, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 252, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_8_frames/wipe_surface_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_10", "question_id": "ex1fps_short_v252_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 1, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_01", "question_id": "ex1fps_B1_v1_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 2, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_02", "question_id": "ex1fps_B1_v2_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 3, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_03", "question_id": "ex1fps_B1_v3_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 4, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_04", "question_id": "ex1fps_B1_v4_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 5, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_05", "question_id": "ex1fps_B1_v5_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 6, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_06", "question_id": "ex1fps_B1_v6_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 7, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_07", "question_id": "ex1fps_B1_v7_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 8, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_08", "question_id": "ex1fps_B1_v8_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 9, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_09", "question_id": "ex1fps_B1_v9_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 10, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_10", "question_id": "ex1fps_B1_v10_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 11, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_01", "question_id": "ex1fps_B1_v11_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 12, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_02", "question_id": "ex1fps_B1_v12_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 13, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_03", "question_id": "ex1fps_B1_v13_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 14, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_04", "question_id": "ex1fps_B1_v14_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 15, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_05", "question_id": "ex1fps_B1_v15_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 16, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_06", "question_id": "ex1fps_B1_v16_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 17, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_07", "question_id": "ex1fps_B1_v17_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 18, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_08", "question_id": "ex1fps_B1_v18_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 19, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_09", "question_id": "ex1fps_B1_v19_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 20, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/clean_counter_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_10", "question_id": "ex1fps_B1_v20_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 21, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_01", "question_id": "ex1fps_B1_v21_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 22, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_02", "question_id": "ex1fps_B1_v22_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 23, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_03", "question_id": "ex1fps_B1_v23_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 24, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_04", "question_id": "ex1fps_B1_v24_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 25, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_05", "question_id": "ex1fps_B1_v25_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 26, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_06", "question_id": "ex1fps_B1_v26_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 27, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_07", "question_id": "ex1fps_B1_v27_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 28, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_08", "question_id": "ex1fps_B1_v28_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 29, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_09", "question_id": "ex1fps_B1_v29_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 30, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_10", "question_id": "ex1fps_B1_v30_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 31, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_01", "question_id": "ex1fps_B1_v31_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 32, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_02", "question_id": "ex1fps_B1_v32_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 33, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_03", "question_id": "ex1fps_B1_v33_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 34, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_04", "question_id": "ex1fps_B1_v34_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 35, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_05", "question_id": "ex1fps_B1_v35_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 36, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_06", "question_id": "ex1fps_B1_v36_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 37, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_07", "question_id": "ex1fps_B1_v37_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 38, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_08", "question_id": "ex1fps_B1_v38_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 39, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_09", "question_id": "ex1fps_B1_v39_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 40, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/cut_nontomato_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_10", "question_id": "ex1fps_B1_v40_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 41, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_01", "question_id": "ex1fps_B1_v41_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 42, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_02", "question_id": "ex1fps_B1_v42_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 43, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_03", "question_id": "ex1fps_B1_v43_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 44, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_04", "question_id": "ex1fps_B1_v44_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 45, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_05", "question_id": "ex1fps_B1_v45_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 46, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_06", "question_id": "ex1fps_B1_v46_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 47, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_07", "question_id": "ex1fps_B1_v47_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 48, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_08", "question_id": "ex1fps_B1_v48_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 49, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_09", "question_id": "ex1fps_B1_v49_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 50, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_10", "question_id": "ex1fps_B1_v50_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 51, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_11.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_11", "question_id": "ex1fps_B1_v51_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 52, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_12.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_12", "question_id": "ex1fps_B1_v52_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 53, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_13.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_13", "question_id": "ex1fps_B1_v53_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 54, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_14.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_14", "question_id": "ex1fps_B1_v54_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 55, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_15.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_15", "question_id": "ex1fps_B1_v55_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 56, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_16.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_16", "question_id": "ex1fps_B1_v56_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 57, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_17.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_17", "question_id": "ex1fps_B1_v57_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 58, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_neg_18.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_18", "question_id": "ex1fps_B1_v58_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 59, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_01", "question_id": "ex1fps_B1_v59_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 60, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_02", "question_id": "ex1fps_B1_v60_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 61, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_03", "question_id": "ex1fps_B1_v61_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 62, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_04", "question_id": "ex1fps_B1_v62_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 63, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_05", "question_id": "ex1fps_B1_v63_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 64, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_06", "question_id": "ex1fps_B1_v64_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 65, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_07", "question_id": "ex1fps_B1_v65_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 66, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_08", "question_id": "ex1fps_B1_v66_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 67, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_09", "question_id": "ex1fps_B1_v67_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 68, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_10", "question_id": "ex1fps_B1_v68_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 69, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_11.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_11", "question_id": "ex1fps_B1_v69_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 70, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_12.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_12", "question_id": "ex1fps_B1_v70_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 71, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_13.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_13", "question_id": "ex1fps_B1_v71_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 72, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_14.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_14", "question_id": "ex1fps_B1_v72_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 73, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_15.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_15", "question_id": "ex1fps_B1_v73_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 74, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_16.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_16", "question_id": "ex1fps_B1_v74_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 75, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_17.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_17", "question_id": "ex1fps_B1_v75_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 76, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_cupboard_pos_18.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_18", "question_id": "ex1fps_B1_v76_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 77, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_01", "question_id": "ex1fps_B1_v77_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 78, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_02", "question_id": "ex1fps_B1_v78_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 79, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_03", "question_id": "ex1fps_B1_v79_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 80, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_04", "question_id": "ex1fps_B1_v80_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 81, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_05", "question_id": "ex1fps_B1_v81_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 82, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_06", "question_id": "ex1fps_B1_v82_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 83, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_07", "question_id": "ex1fps_B1_v83_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 84, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_08", "question_id": "ex1fps_B1_v84_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 85, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_09", "question_id": "ex1fps_B1_v85_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 86, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_10", "question_id": "ex1fps_B1_v86_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 87, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_11.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_11", "question_id": "ex1fps_B1_v87_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 88, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_12.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_12", "question_id": "ex1fps_B1_v88_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 89, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_13.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_13", "question_id": "ex1fps_B1_v89_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 90, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_14.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_14", "question_id": "ex1fps_B1_v90_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 91, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_15.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_15", "question_id": "ex1fps_B1_v91_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 92, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_16.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_16", "question_id": "ex1fps_B1_v92_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 93, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_17.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_17", "question_id": "ex1fps_B1_v93_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 94, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_18.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_18", "question_id": "ex1fps_B1_v94_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 95, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_19.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_19", "question_id": "ex1fps_B1_v95_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 96, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_neg_20.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_20", "question_id": "ex1fps_B1_v96_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 97, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_01", "question_id": "ex1fps_B1_v97_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 98, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_02", "question_id": "ex1fps_B1_v98_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 99, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_03", "question_id": "ex1fps_B1_v99_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 100, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_04", "question_id": "ex1fps_B1_v100_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 101, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_05", "question_id": "ex1fps_B1_v101_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 102, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_06", "question_id": "ex1fps_B1_v102_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 103, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_07", "question_id": "ex1fps_B1_v103_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 104, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_08", "question_id": "ex1fps_B1_v104_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 105, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_09", "question_id": "ex1fps_B1_v105_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 106, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_10", "question_id": "ex1fps_B1_v106_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 107, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_11.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_11", "question_id": "ex1fps_B1_v107_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 108, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_12.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_12", "question_id": "ex1fps_B1_v108_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 109, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_13.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_13", "question_id": "ex1fps_B1_v109_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 110, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_14.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_14", "question_id": "ex1fps_B1_v110_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 111, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_15.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_15", "question_id": "ex1fps_B1_v111_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 112, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_16.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_16", "question_id": "ex1fps_B1_v112_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 113, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_17.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_17", "question_id": "ex1fps_B1_v113_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 114, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_18.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_18", "question_id": "ex1fps_B1_v114_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 115, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_19.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_19", "question_id": "ex1fps_B1_v115_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 116, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_drawer_pos_20.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_20", "question_id": "ex1fps_B1_v116_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 117, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_01", "question_id": "ex1fps_B1_v117_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 118, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_02", "question_id": "ex1fps_B1_v118_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 119, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_03", "question_id": "ex1fps_B1_v119_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 120, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_04", "question_id": "ex1fps_B1_v120_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 121, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_05", "question_id": "ex1fps_B1_v121_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 122, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_06", "question_id": "ex1fps_B1_v122_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 123, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_07", "question_id": "ex1fps_B1_v123_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 124, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_08", "question_id": "ex1fps_B1_v124_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 125, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_09", "question_id": "ex1fps_B1_v125_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 126, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_10", "question_id": "ex1fps_B1_v126_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 127, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_01", "question_id": "ex1fps_B1_v127_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 128, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_02", "question_id": "ex1fps_B1_v128_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 129, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_03", "question_id": "ex1fps_B1_v129_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 130, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_04", "question_id": "ex1fps_B1_v130_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 131, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_05", "question_id": "ex1fps_B1_v131_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 132, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_06", "question_id": "ex1fps_B1_v132_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 133, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_07", "question_id": "ex1fps_B1_v133_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 134, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_08", "question_id": "ex1fps_B1_v134_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 135, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_09", "question_id": "ex1fps_B1_v135_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 136, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/open_fridge_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_10", "question_id": "ex1fps_B1_v136_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 137, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_01", "question_id": "ex1fps_B1_v137_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 138, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_02", "question_id": "ex1fps_B1_v138_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 139, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_03", "question_id": "ex1fps_B1_v139_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 140, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_04", "question_id": "ex1fps_B1_v140_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 141, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_05", "question_id": "ex1fps_B1_v141_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 142, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_06", "question_id": "ex1fps_B1_v142_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 143, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_07", "question_id": "ex1fps_B1_v143_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 144, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_08", "question_id": "ex1fps_B1_v144_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 145, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_09", "question_id": "ex1fps_B1_v145_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 146, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_10", "question_id": "ex1fps_B1_v146_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 147, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_01", "question_id": "ex1fps_B1_v147_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 148, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_02", "question_id": "ex1fps_B1_v148_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 149, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_03", "question_id": "ex1fps_B1_v149_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 150, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_04", "question_id": "ex1fps_B1_v150_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 151, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_05", "question_id": "ex1fps_B1_v151_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 152, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_06", "question_id": "ex1fps_B1_v152_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 153, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_07", "question_id": "ex1fps_B1_v153_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 154, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_08", "question_id": "ex1fps_B1_v154_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 155, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_09", "question_id": "ex1fps_B1_v155_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 156, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/pour_water_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_10", "question_id": "ex1fps_B1_v156_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 157, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/red_card_neg_01.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_01", "question_id": "ex1fps_B1_v157_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-23 - 15-30 West Brom 2 - 3 Chelsea\", \"source_half\": 1, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-23 - 15-30 West Brom 2 - 3 Chelsea/1_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_01\"}"} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 158, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/red_card_neg_02.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_02", "question_id": "ex1fps_B1_v158_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-29 - 17-00 Liverpool 0 - 3 West Ham\", \"source_half\": 1, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-29 - 17-00 Liverpool 0 - 3 West Ham/1_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_02\"}"} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 159, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/red_card_neg_03.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_03", "question_id": "ex1fps_B1_v159_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg\", \"source_half\": 2, \"source_video_path\": \"soccernet/germany_bundesliga/2014-2015/2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg/2_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_03\"}"} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 160, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/red_card_neg_04.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_04", "question_id": "ex1fps_B1_v160_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund\", \"source_half\": 2, \"source_video_path\": \"soccernet/germany_bundesliga/2016-2017/2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund/2_720p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_04\"}"} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 161, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/red_card_neg_05.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_05", "question_id": "ex1fps_B1_v161_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-09-27 - 21-45 Inter 1 - 4 Fiorentina\", \"source_half\": 2, \"source_video_path\": \"soccernet/italy_serie-a/2015-2016/2015-09-27 - 21-45 Inter 1 - 4 Fiorentina/2_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_05\"}"} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 162, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/red_card_neg_06.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_06", "question_id": "ex1fps_B1_v162_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2016-12-04 - 17-00 Lazio 0 - 2 AS Roma\", \"source_half\": 1, \"source_video_path\": \"soccernet/italy_serie-a/2016-2017/2016-12-04 - 17-00 Lazio 0 - 2 AS Roma/1_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_06\"}"} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 163, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/red_card_neg_07.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_07", "question_id": "ex1fps_B1_v163_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-04-25 - 17-00 Espanyol 0 - 2 Barcelona\", \"source_half\": 1, \"source_video_path\": \"soccernet/spain_laliga/2014-2015/2015-04-25 - 17-00 Espanyol 0 - 2 Barcelona/1_720p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_07\"}"} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 164, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/red_card_neg_08.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_08", "question_id": "ex1fps_B1_v164_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2016-05-08 - 18-00 Real Madrid 3 - 2 Valencia\", \"source_half\": 1, \"source_video_path\": \"soccernet/spain_laliga/2015-2016/2016-05-08 - 18-00 Real Madrid 3 - 2 Valencia/1_720p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_08\"}"} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 165, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/red_card_pos_01.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_01", "question_id": "ex1fps_B1_v165_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-23 - 15-30 West Brom 2 - 3 Chelsea\", \"source_half\": 2, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-23 - 15-30 West Brom 2 - 3 Chelsea/2_224p.mkv\", \"clip_start_in_source_seconds\": 456.1, \"clip_end_in_source_seconds\": 546.1, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_01\"}"} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 166, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/red_card_pos_02.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_02", "question_id": "ex1fps_B1_v166_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-29 - 17-00 Liverpool 0 - 3 West Ham\", \"source_half\": 2, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-29 - 17-00 Liverpool 0 - 3 West Ham/2_224p.mkv\", \"clip_start_in_source_seconds\": 1926.77, \"clip_end_in_source_seconds\": 2016.77, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_02\"}"} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 167, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/red_card_pos_03.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_03", "question_id": "ex1fps_B1_v167_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg\", \"source_half\": 1, \"source_video_path\": \"soccernet/germany_bundesliga/2014-2015/2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg/1_224p.mkv\", \"clip_start_in_source_seconds\": 686.48, \"clip_end_in_source_seconds\": 776.48, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_03\"}"} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 168, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/red_card_pos_04.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_04", "question_id": "ex1fps_B1_v168_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund\", \"source_half\": 1, \"source_video_path\": \"soccernet/germany_bundesliga/2016-2017/2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund/1_720p.mkv\", \"clip_start_in_source_seconds\": 2259.19, \"clip_end_in_source_seconds\": 2349.19, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_04\"}"} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 169, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/red_card_pos_05.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_05", "question_id": "ex1fps_B1_v169_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-09-27 - 21-45 Inter 1 - 4 Fiorentina\", \"source_half\": 1, \"source_video_path\": \"soccernet/italy_serie-a/2015-2016/2015-09-27 - 21-45 Inter 1 - 4 Fiorentina/1_224p.mkv\", \"clip_start_in_source_seconds\": 1802.89, \"clip_end_in_source_seconds\": 1892.89, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_05\"}"} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 170, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/red_card_pos_06.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_06", "question_id": "ex1fps_B1_v170_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2016-12-04 - 17-00 Lazio 0 - 2 AS Roma\", \"source_half\": 2, \"source_video_path\": \"soccernet/italy_serie-a/2016-2017/2016-12-04 - 17-00 Lazio 0 - 2 AS Roma/2_224p.mkv\", \"clip_start_in_source_seconds\": 1209.29, \"clip_end_in_source_seconds\": 1299.29, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_06\"}"} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 171, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/red_card_pos_07.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_07", "question_id": "ex1fps_B1_v171_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-04-25 - 17-00 Espanyol 0 - 2 Barcelona\", \"source_half\": 2, \"source_video_path\": \"soccernet/spain_laliga/2014-2015/2015-04-25 - 17-00 Espanyol 0 - 2 Barcelona/2_720p.mkv\", \"clip_start_in_source_seconds\": 505.61, \"clip_end_in_source_seconds\": 595.61, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_07\"}"} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 172, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/red_card_pos_08.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_08", "question_id": "ex1fps_B1_v172_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2016-05-08 - 18-00 Real Madrid 3 - 2 Valencia\", \"source_half\": 2, \"source_video_path\": \"soccernet/spain_laliga/2015-2016/2016-05-08 - 18-00 Real Madrid 3 - 2 Valencia/2_720p.mkv\", \"clip_start_in_source_seconds\": 2231.49, \"clip_end_in_source_seconds\": 2321.49, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_08\"}"} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 173, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_01", "question_id": "ex1fps_B1_v173_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 174, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_02", "question_id": "ex1fps_B1_v174_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 175, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_03", "question_id": "ex1fps_B1_v175_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 176, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_04", "question_id": "ex1fps_B1_v176_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 177, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_05", "question_id": "ex1fps_B1_v177_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 178, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_06", "question_id": "ex1fps_B1_v178_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 179, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_07", "question_id": "ex1fps_B1_v179_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 180, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_08", "question_id": "ex1fps_B1_v180_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 181, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_09", "question_id": "ex1fps_B1_v181_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 182, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_10", "question_id": "ex1fps_B1_v182_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 183, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_01", "question_id": "ex1fps_B1_v183_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 184, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_02", "question_id": "ex1fps_B1_v184_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 185, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_03", "question_id": "ex1fps_B1_v185_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 186, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_04", "question_id": "ex1fps_B1_v186_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 187, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_05", "question_id": "ex1fps_B1_v187_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 188, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_06", "question_id": "ex1fps_B1_v188_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 189, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_07", "question_id": "ex1fps_B1_v189_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 190, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_08", "question_id": "ex1fps_B1_v190_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 191, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_09", "question_id": "ex1fps_B1_v191_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 192, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/rinse_X_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_10", "question_id": "ex1fps_B1_v192_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 193, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_01", "question_id": "ex1fps_B1_v193_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 194, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_02", "question_id": "ex1fps_B1_v194_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 195, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_03", "question_id": "ex1fps_B1_v195_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 196, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_04", "question_id": "ex1fps_B1_v196_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 197, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_05", "question_id": "ex1fps_B1_v197_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 198, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_06", "question_id": "ex1fps_B1_v198_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 199, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_07", "question_id": "ex1fps_B1_v199_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 200, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_08", "question_id": "ex1fps_B1_v200_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 201, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_09", "question_id": "ex1fps_B1_v201_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 202, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_10", "question_id": "ex1fps_B1_v202_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 203, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_01", "question_id": "ex1fps_B1_v203_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 204, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_02", "question_id": "ex1fps_B1_v204_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 205, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_03", "question_id": "ex1fps_B1_v205_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 206, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_04", "question_id": "ex1fps_B1_v206_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 207, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_05", "question_id": "ex1fps_B1_v207_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 208, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_06", "question_id": "ex1fps_B1_v208_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 209, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_07", "question_id": "ex1fps_B1_v209_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 210, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_08", "question_id": "ex1fps_B1_v210_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 211, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_09", "question_id": "ex1fps_B1_v211_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 212, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/turn_on_tap_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_10", "question_id": "ex1fps_B1_v212_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 213, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_01", "question_id": "ex1fps_B1_v213_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 214, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_02", "question_id": "ex1fps_B1_v214_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 215, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_03", "question_id": "ex1fps_B1_v215_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 216, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_04", "question_id": "ex1fps_B1_v216_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 217, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_05", "question_id": "ex1fps_B1_v217_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 218, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_06", "question_id": "ex1fps_B1_v218_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 219, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_07", "question_id": "ex1fps_B1_v219_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 220, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_08", "question_id": "ex1fps_B1_v220_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 221, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_09", "question_id": "ex1fps_B1_v221_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 222, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_10", "question_id": "ex1fps_B1_v222_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 223, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_01", "question_id": "ex1fps_B1_v223_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 224, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_02", "question_id": "ex1fps_B1_v224_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 225, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_03", "question_id": "ex1fps_B1_v225_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 226, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_04", "question_id": "ex1fps_B1_v226_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 227, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_05", "question_id": "ex1fps_B1_v227_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 228, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_06", "question_id": "ex1fps_B1_v228_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 229, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_07", "question_id": "ex1fps_B1_v229_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 230, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_08", "question_id": "ex1fps_B1_v230_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 231, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_09", "question_id": "ex1fps_B1_v231_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 232, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wash_plate_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_10", "question_id": "ex1fps_B1_v232_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 233, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_01", "question_id": "ex1fps_B1_v233_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 234, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_02", "question_id": "ex1fps_B1_v234_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 235, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_03", "question_id": "ex1fps_B1_v235_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 236, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_04", "question_id": "ex1fps_B1_v236_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 237, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_05", "question_id": "ex1fps_B1_v237_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 238, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_06", "question_id": "ex1fps_B1_v238_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 239, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_07", "question_id": "ex1fps_B1_v239_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 240, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_08", "question_id": "ex1fps_B1_v240_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 241, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_09", "question_id": "ex1fps_B1_v241_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 242, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_10", "question_id": "ex1fps_B1_v242_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 243, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_01", "question_id": "ex1fps_B1_v243_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 244, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_02", "question_id": "ex1fps_B1_v244_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 245, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_03", "question_id": "ex1fps_B1_v245_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 246, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_04", "question_id": "ex1fps_B1_v246_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 247, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_05", "question_id": "ex1fps_B1_v247_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 248, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_06", "question_id": "ex1fps_B1_v248_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 249, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_07", "question_id": "ex1fps_B1_v249_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 250, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_08", "question_id": "ex1fps_B1_v250_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 251, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_09", "question_id": "ex1fps_B1_v251_q0", "source_provenance": null} +{"subset": "L=16", "source_split": "natural_video", "length_L": 16, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 252, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_16_frames/wipe_surface_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_10", "question_id": "ex1fps_B1_v252_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 1, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_01", "question_id": "ex1fps_B2_v1_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 2, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_02", "question_id": "ex1fps_B2_v2_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 3, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_03", "question_id": "ex1fps_B2_v3_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 4, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_04", "question_id": "ex1fps_B2_v4_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 5, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_05", "question_id": "ex1fps_B2_v5_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 6, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_06", "question_id": "ex1fps_B2_v6_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 7, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_07", "question_id": "ex1fps_B2_v7_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 8, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_08", "question_id": "ex1fps_B2_v8_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 9, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_09", "question_id": "ex1fps_B2_v9_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 10, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_10", "question_id": "ex1fps_B2_v10_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 11, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_01", "question_id": "ex1fps_B2_v11_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 12, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_02", "question_id": "ex1fps_B2_v12_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 13, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_03", "question_id": "ex1fps_B2_v13_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 14, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_04", "question_id": "ex1fps_B2_v14_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 15, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_05", "question_id": "ex1fps_B2_v15_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 16, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_06", "question_id": "ex1fps_B2_v16_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 17, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_07", "question_id": "ex1fps_B2_v17_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 18, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_08", "question_id": "ex1fps_B2_v18_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 19, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_09", "question_id": "ex1fps_B2_v19_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 20, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/clean_counter_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_10", "question_id": "ex1fps_B2_v20_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 21, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_01", "question_id": "ex1fps_B2_v21_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 22, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_02", "question_id": "ex1fps_B2_v22_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 23, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_03", "question_id": "ex1fps_B2_v23_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 24, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_04", "question_id": "ex1fps_B2_v24_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 25, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_05", "question_id": "ex1fps_B2_v25_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 26, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_06", "question_id": "ex1fps_B2_v26_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 27, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_07", "question_id": "ex1fps_B2_v27_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 28, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_08", "question_id": "ex1fps_B2_v28_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 29, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_09", "question_id": "ex1fps_B2_v29_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 30, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_10", "question_id": "ex1fps_B2_v30_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 31, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_01", "question_id": "ex1fps_B2_v31_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 32, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_02", "question_id": "ex1fps_B2_v32_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 33, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_03", "question_id": "ex1fps_B2_v33_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 34, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_04", "question_id": "ex1fps_B2_v34_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 35, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_05", "question_id": "ex1fps_B2_v35_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 36, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_06", "question_id": "ex1fps_B2_v36_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 37, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_07", "question_id": "ex1fps_B2_v37_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 38, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_08", "question_id": "ex1fps_B2_v38_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 39, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_09", "question_id": "ex1fps_B2_v39_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 40, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/cut_nontomato_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_10", "question_id": "ex1fps_B2_v40_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 41, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_01", "question_id": "ex1fps_B2_v41_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 42, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_02", "question_id": "ex1fps_B2_v42_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 43, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_03", "question_id": "ex1fps_B2_v43_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 44, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_04", "question_id": "ex1fps_B2_v44_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 45, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_05", "question_id": "ex1fps_B2_v45_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 46, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_06", "question_id": "ex1fps_B2_v46_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 47, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_07", "question_id": "ex1fps_B2_v47_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 48, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_08", "question_id": "ex1fps_B2_v48_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 49, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_09", "question_id": "ex1fps_B2_v49_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 50, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_10", "question_id": "ex1fps_B2_v50_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 51, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_11.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_11", "question_id": "ex1fps_B2_v51_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 52, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_12.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_12", "question_id": "ex1fps_B2_v52_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 53, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_13.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_13", "question_id": "ex1fps_B2_v53_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 54, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_14.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_14", "question_id": "ex1fps_B2_v54_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 55, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_15.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_15", "question_id": "ex1fps_B2_v55_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 56, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_16.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_16", "question_id": "ex1fps_B2_v56_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 57, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_17.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_17", "question_id": "ex1fps_B2_v57_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 58, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_neg_18.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_18", "question_id": "ex1fps_B2_v58_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 59, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_01", "question_id": "ex1fps_B2_v59_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 60, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_02", "question_id": "ex1fps_B2_v60_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 61, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_03", "question_id": "ex1fps_B2_v61_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 62, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_04", "question_id": "ex1fps_B2_v62_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 63, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_05", "question_id": "ex1fps_B2_v63_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 64, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_06", "question_id": "ex1fps_B2_v64_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 65, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_07", "question_id": "ex1fps_B2_v65_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 66, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_08", "question_id": "ex1fps_B2_v66_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 67, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_09", "question_id": "ex1fps_B2_v67_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 68, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_10", "question_id": "ex1fps_B2_v68_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 69, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_11.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_11", "question_id": "ex1fps_B2_v69_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 70, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_12.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_12", "question_id": "ex1fps_B2_v70_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 71, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_13.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_13", "question_id": "ex1fps_B2_v71_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 72, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_14.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_14", "question_id": "ex1fps_B2_v72_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 73, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_15.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_15", "question_id": "ex1fps_B2_v73_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 74, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_16.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_16", "question_id": "ex1fps_B2_v74_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 75, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_17.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_17", "question_id": "ex1fps_B2_v75_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 76, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_cupboard_pos_18.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_18", "question_id": "ex1fps_B2_v76_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 77, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_01", "question_id": "ex1fps_B2_v77_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 78, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_02", "question_id": "ex1fps_B2_v78_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 79, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_03", "question_id": "ex1fps_B2_v79_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 80, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_04", "question_id": "ex1fps_B2_v80_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 81, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_05", "question_id": "ex1fps_B2_v81_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 82, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_06", "question_id": "ex1fps_B2_v82_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 83, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_07", "question_id": "ex1fps_B2_v83_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 84, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_08", "question_id": "ex1fps_B2_v84_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 85, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_09", "question_id": "ex1fps_B2_v85_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 86, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_10", "question_id": "ex1fps_B2_v86_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 87, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_11.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_11", "question_id": "ex1fps_B2_v87_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 88, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_12.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_12", "question_id": "ex1fps_B2_v88_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 89, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_13.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_13", "question_id": "ex1fps_B2_v89_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 90, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_14.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_14", "question_id": "ex1fps_B2_v90_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 91, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_15.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_15", "question_id": "ex1fps_B2_v91_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 92, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_16.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_16", "question_id": "ex1fps_B2_v92_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 93, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_17.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_17", "question_id": "ex1fps_B2_v93_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 94, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_18.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_18", "question_id": "ex1fps_B2_v94_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 95, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_19.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_19", "question_id": "ex1fps_B2_v95_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 96, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_neg_20.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_20", "question_id": "ex1fps_B2_v96_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 97, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_01", "question_id": "ex1fps_B2_v97_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 98, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_02", "question_id": "ex1fps_B2_v98_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 99, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_03", "question_id": "ex1fps_B2_v99_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 100, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_04", "question_id": "ex1fps_B2_v100_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 101, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_05", "question_id": "ex1fps_B2_v101_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 102, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_06", "question_id": "ex1fps_B2_v102_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 103, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_07", "question_id": "ex1fps_B2_v103_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 104, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_08", "question_id": "ex1fps_B2_v104_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 105, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_09", "question_id": "ex1fps_B2_v105_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 106, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_10", "question_id": "ex1fps_B2_v106_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 107, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_11.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_11", "question_id": "ex1fps_B2_v107_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 108, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_12.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_12", "question_id": "ex1fps_B2_v108_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 109, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_13.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_13", "question_id": "ex1fps_B2_v109_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 110, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_14.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_14", "question_id": "ex1fps_B2_v110_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 111, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_15.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_15", "question_id": "ex1fps_B2_v111_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 112, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_16.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_16", "question_id": "ex1fps_B2_v112_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 113, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_17.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_17", "question_id": "ex1fps_B2_v113_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 114, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_18.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_18", "question_id": "ex1fps_B2_v114_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 115, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_19.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_19", "question_id": "ex1fps_B2_v115_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 116, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_drawer_pos_20.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_20", "question_id": "ex1fps_B2_v116_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 117, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_01", "question_id": "ex1fps_B2_v117_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 118, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_02", "question_id": "ex1fps_B2_v118_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 119, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_03", "question_id": "ex1fps_B2_v119_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 120, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_04", "question_id": "ex1fps_B2_v120_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 121, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_05", "question_id": "ex1fps_B2_v121_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 122, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_06", "question_id": "ex1fps_B2_v122_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 123, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_07", "question_id": "ex1fps_B2_v123_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 124, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_08", "question_id": "ex1fps_B2_v124_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 125, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_09", "question_id": "ex1fps_B2_v125_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 126, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_10", "question_id": "ex1fps_B2_v126_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 127, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_01", "question_id": "ex1fps_B2_v127_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 128, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_02", "question_id": "ex1fps_B2_v128_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 129, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_03", "question_id": "ex1fps_B2_v129_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 130, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_04", "question_id": "ex1fps_B2_v130_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 131, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_05", "question_id": "ex1fps_B2_v131_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 132, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_06", "question_id": "ex1fps_B2_v132_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 133, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_07", "question_id": "ex1fps_B2_v133_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 134, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_08", "question_id": "ex1fps_B2_v134_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 135, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_09", "question_id": "ex1fps_B2_v135_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 136, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/open_fridge_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_10", "question_id": "ex1fps_B2_v136_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 137, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_01", "question_id": "ex1fps_B2_v137_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 138, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_02", "question_id": "ex1fps_B2_v138_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 139, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_03", "question_id": "ex1fps_B2_v139_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 140, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_04", "question_id": "ex1fps_B2_v140_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 141, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_05", "question_id": "ex1fps_B2_v141_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 142, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_06", "question_id": "ex1fps_B2_v142_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 143, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_07", "question_id": "ex1fps_B2_v143_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 144, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_08", "question_id": "ex1fps_B2_v144_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 145, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_09", "question_id": "ex1fps_B2_v145_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 146, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_10", "question_id": "ex1fps_B2_v146_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 147, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_01", "question_id": "ex1fps_B2_v147_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 148, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_02", "question_id": "ex1fps_B2_v148_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 149, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_03", "question_id": "ex1fps_B2_v149_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 150, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_04", "question_id": "ex1fps_B2_v150_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 151, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_05", "question_id": "ex1fps_B2_v151_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 152, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_06", "question_id": "ex1fps_B2_v152_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 153, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_07", "question_id": "ex1fps_B2_v153_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 154, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_08", "question_id": "ex1fps_B2_v154_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 155, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_09", "question_id": "ex1fps_B2_v155_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 156, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/pour_water_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_10", "question_id": "ex1fps_B2_v156_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 157, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/red_card_neg_01.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_01", "question_id": "ex1fps_B2_v157_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-23 - 15-30 West Brom 2 - 3 Chelsea\", \"source_half\": 1, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-23 - 15-30 West Brom 2 - 3 Chelsea/1_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_01\"}"} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 158, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/red_card_neg_02.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_02", "question_id": "ex1fps_B2_v158_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-29 - 17-00 Liverpool 0 - 3 West Ham\", \"source_half\": 1, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-29 - 17-00 Liverpool 0 - 3 West Ham/1_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_02\"}"} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 159, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/red_card_neg_03.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_03", "question_id": "ex1fps_B2_v159_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg\", \"source_half\": 2, \"source_video_path\": \"soccernet/germany_bundesliga/2014-2015/2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg/2_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_03\"}"} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 160, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/red_card_neg_04.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_04", "question_id": "ex1fps_B2_v160_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund\", \"source_half\": 2, \"source_video_path\": \"soccernet/germany_bundesliga/2016-2017/2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund/2_720p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_04\"}"} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 161, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/red_card_neg_05.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_05", "question_id": "ex1fps_B2_v161_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-09-27 - 21-45 Inter 1 - 4 Fiorentina\", \"source_half\": 2, \"source_video_path\": \"soccernet/italy_serie-a/2015-2016/2015-09-27 - 21-45 Inter 1 - 4 Fiorentina/2_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_05\"}"} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 162, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/red_card_neg_06.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_06", "question_id": "ex1fps_B2_v162_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2016-12-04 - 17-00 Lazio 0 - 2 AS Roma\", \"source_half\": 1, \"source_video_path\": \"soccernet/italy_serie-a/2016-2017/2016-12-04 - 17-00 Lazio 0 - 2 AS Roma/1_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_06\"}"} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 163, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/red_card_neg_07.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_07", "question_id": "ex1fps_B2_v163_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-04-25 - 17-00 Espanyol 0 - 2 Barcelona\", \"source_half\": 1, \"source_video_path\": \"soccernet/spain_laliga/2014-2015/2015-04-25 - 17-00 Espanyol 0 - 2 Barcelona/1_720p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_07\"}"} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 164, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/red_card_neg_08.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_08", "question_id": "ex1fps_B2_v164_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2016-05-08 - 18-00 Real Madrid 3 - 2 Valencia\", \"source_half\": 1, \"source_video_path\": \"soccernet/spain_laliga/2015-2016/2016-05-08 - 18-00 Real Madrid 3 - 2 Valencia/1_720p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_08\"}"} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 165, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/red_card_pos_01.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_01", "question_id": "ex1fps_B2_v165_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-23 - 15-30 West Brom 2 - 3 Chelsea\", \"source_half\": 2, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-23 - 15-30 West Brom 2 - 3 Chelsea/2_224p.mkv\", \"clip_start_in_source_seconds\": 456.1, \"clip_end_in_source_seconds\": 546.1, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_01\"}"} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 166, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/red_card_pos_02.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_02", "question_id": "ex1fps_B2_v166_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-29 - 17-00 Liverpool 0 - 3 West Ham\", \"source_half\": 2, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-29 - 17-00 Liverpool 0 - 3 West Ham/2_224p.mkv\", \"clip_start_in_source_seconds\": 1926.77, \"clip_end_in_source_seconds\": 2016.77, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_02\"}"} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 167, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/red_card_pos_03.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_03", "question_id": "ex1fps_B2_v167_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg\", \"source_half\": 1, \"source_video_path\": \"soccernet/germany_bundesliga/2014-2015/2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg/1_224p.mkv\", \"clip_start_in_source_seconds\": 686.48, \"clip_end_in_source_seconds\": 776.48, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_03\"}"} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 168, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/red_card_pos_04.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_04", "question_id": "ex1fps_B2_v168_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund\", \"source_half\": 1, \"source_video_path\": \"soccernet/germany_bundesliga/2016-2017/2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund/1_720p.mkv\", \"clip_start_in_source_seconds\": 2259.19, \"clip_end_in_source_seconds\": 2349.19, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_04\"}"} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 169, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/red_card_pos_05.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_05", "question_id": "ex1fps_B2_v169_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-09-27 - 21-45 Inter 1 - 4 Fiorentina\", \"source_half\": 1, \"source_video_path\": \"soccernet/italy_serie-a/2015-2016/2015-09-27 - 21-45 Inter 1 - 4 Fiorentina/1_224p.mkv\", \"clip_start_in_source_seconds\": 1802.89, \"clip_end_in_source_seconds\": 1892.89, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_05\"}"} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 170, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/red_card_pos_06.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_06", "question_id": "ex1fps_B2_v170_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2016-12-04 - 17-00 Lazio 0 - 2 AS Roma\", \"source_half\": 2, \"source_video_path\": \"soccernet/italy_serie-a/2016-2017/2016-12-04 - 17-00 Lazio 0 - 2 AS Roma/2_224p.mkv\", \"clip_start_in_source_seconds\": 1209.29, \"clip_end_in_source_seconds\": 1299.29, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_06\"}"} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 171, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/red_card_pos_07.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_07", "question_id": "ex1fps_B2_v171_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-04-25 - 17-00 Espanyol 0 - 2 Barcelona\", \"source_half\": 2, \"source_video_path\": \"soccernet/spain_laliga/2014-2015/2015-04-25 - 17-00 Espanyol 0 - 2 Barcelona/2_720p.mkv\", \"clip_start_in_source_seconds\": 505.61, \"clip_end_in_source_seconds\": 595.61, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_07\"}"} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 172, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/red_card_pos_08.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_08", "question_id": "ex1fps_B2_v172_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2016-05-08 - 18-00 Real Madrid 3 - 2 Valencia\", \"source_half\": 2, \"source_video_path\": \"soccernet/spain_laliga/2015-2016/2016-05-08 - 18-00 Real Madrid 3 - 2 Valencia/2_720p.mkv\", \"clip_start_in_source_seconds\": 2231.49, \"clip_end_in_source_seconds\": 2321.49, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_08\"}"} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 173, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_01", "question_id": "ex1fps_B2_v173_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 174, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_02", "question_id": "ex1fps_B2_v174_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 175, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_03", "question_id": "ex1fps_B2_v175_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 176, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_04", "question_id": "ex1fps_B2_v176_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 177, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_05", "question_id": "ex1fps_B2_v177_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 178, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_06", "question_id": "ex1fps_B2_v178_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 179, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_07", "question_id": "ex1fps_B2_v179_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 180, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_08", "question_id": "ex1fps_B2_v180_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 181, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_09", "question_id": "ex1fps_B2_v181_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 182, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_10", "question_id": "ex1fps_B2_v182_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 183, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_01", "question_id": "ex1fps_B2_v183_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 184, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_02", "question_id": "ex1fps_B2_v184_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 185, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_03", "question_id": "ex1fps_B2_v185_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 186, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_04", "question_id": "ex1fps_B2_v186_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 187, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_05", "question_id": "ex1fps_B2_v187_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 188, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_06", "question_id": "ex1fps_B2_v188_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 189, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_07", "question_id": "ex1fps_B2_v189_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 190, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_08", "question_id": "ex1fps_B2_v190_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 191, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_09", "question_id": "ex1fps_B2_v191_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 192, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/rinse_X_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_10", "question_id": "ex1fps_B2_v192_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 193, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_01", "question_id": "ex1fps_B2_v193_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 194, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_02", "question_id": "ex1fps_B2_v194_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 195, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_03", "question_id": "ex1fps_B2_v195_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 196, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_04", "question_id": "ex1fps_B2_v196_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 197, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_05", "question_id": "ex1fps_B2_v197_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 198, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_06", "question_id": "ex1fps_B2_v198_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 199, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_07", "question_id": "ex1fps_B2_v199_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 200, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_08", "question_id": "ex1fps_B2_v200_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 201, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_09", "question_id": "ex1fps_B2_v201_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 202, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_10", "question_id": "ex1fps_B2_v202_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 203, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_01", "question_id": "ex1fps_B2_v203_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 204, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_02", "question_id": "ex1fps_B2_v204_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 205, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_03", "question_id": "ex1fps_B2_v205_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 206, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_04", "question_id": "ex1fps_B2_v206_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 207, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_05", "question_id": "ex1fps_B2_v207_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 208, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_06", "question_id": "ex1fps_B2_v208_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 209, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_07", "question_id": "ex1fps_B2_v209_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 210, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_08", "question_id": "ex1fps_B2_v210_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 211, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_09", "question_id": "ex1fps_B2_v211_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 212, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/turn_on_tap_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_10", "question_id": "ex1fps_B2_v212_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 213, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_01", "question_id": "ex1fps_B2_v213_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 214, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_02", "question_id": "ex1fps_B2_v214_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 215, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_03", "question_id": "ex1fps_B2_v215_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 216, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_04", "question_id": "ex1fps_B2_v216_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 217, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_05", "question_id": "ex1fps_B2_v217_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 218, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_06", "question_id": "ex1fps_B2_v218_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 219, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_07", "question_id": "ex1fps_B2_v219_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 220, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_08", "question_id": "ex1fps_B2_v220_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 221, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_09", "question_id": "ex1fps_B2_v221_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 222, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_10", "question_id": "ex1fps_B2_v222_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 223, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_01", "question_id": "ex1fps_B2_v223_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 224, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_02", "question_id": "ex1fps_B2_v224_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 225, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_03", "question_id": "ex1fps_B2_v225_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 226, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_04", "question_id": "ex1fps_B2_v226_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 227, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_05", "question_id": "ex1fps_B2_v227_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 228, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_06", "question_id": "ex1fps_B2_v228_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 229, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_07", "question_id": "ex1fps_B2_v229_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 230, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_08", "question_id": "ex1fps_B2_v230_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 231, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_09", "question_id": "ex1fps_B2_v231_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 232, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wash_plate_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_10", "question_id": "ex1fps_B2_v232_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 233, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_01", "question_id": "ex1fps_B2_v233_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 234, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_02", "question_id": "ex1fps_B2_v234_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 235, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_03", "question_id": "ex1fps_B2_v235_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 236, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_04", "question_id": "ex1fps_B2_v236_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 237, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_05", "question_id": "ex1fps_B2_v237_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 238, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_neg_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_06", "question_id": "ex1fps_B2_v238_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 239, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_neg_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_07", "question_id": "ex1fps_B2_v239_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 240, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_neg_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_08", "question_id": "ex1fps_B2_v240_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 241, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_neg_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_09", "question_id": "ex1fps_B2_v241_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 242, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_neg_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_10", "question_id": "ex1fps_B2_v242_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 243, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_01", "question_id": "ex1fps_B2_v243_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 244, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_02", "question_id": "ex1fps_B2_v244_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 245, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_03", "question_id": "ex1fps_B2_v245_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 246, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_04", "question_id": "ex1fps_B2_v246_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 247, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_05", "question_id": "ex1fps_B2_v247_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 248, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_pos_06.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_06", "question_id": "ex1fps_B2_v248_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 249, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_pos_07.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_07", "question_id": "ex1fps_B2_v249_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 250, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_pos_08.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_08", "question_id": "ex1fps_B2_v250_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 251, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_pos_09.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_09", "question_id": "ex1fps_B2_v251_q0", "source_provenance": null} +{"subset": "L=64", "source_split": "natural_video", "length_L": 64, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 252, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_64_frames/wipe_surface_pos_10.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_10", "question_id": "ex1fps_B2_v252_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 1, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/clean_counter_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_01", "question_id": "ex1fps_B3_v1_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 2, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/clean_counter_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_02", "question_id": "ex1fps_B3_v2_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 3, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/clean_counter_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_03", "question_id": "ex1fps_B3_v3_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 4, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/clean_counter_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_04", "question_id": "ex1fps_B3_v4_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 5, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/clean_counter_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_05", "question_id": "ex1fps_B3_v5_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 6, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/clean_counter_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_01", "question_id": "ex1fps_B3_v6_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 7, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/clean_counter_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_02", "question_id": "ex1fps_B3_v7_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 8, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/clean_counter_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_03", "question_id": "ex1fps_B3_v8_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 9, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/clean_counter_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_04", "question_id": "ex1fps_B3_v9_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 10, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/clean_counter_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_05", "question_id": "ex1fps_B3_v10_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 11, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/cut_nontomato_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_01", "question_id": "ex1fps_B3_v11_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 12, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/cut_nontomato_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_02", "question_id": "ex1fps_B3_v12_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 13, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/cut_nontomato_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_03", "question_id": "ex1fps_B3_v13_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 14, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/cut_nontomato_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_04", "question_id": "ex1fps_B3_v14_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 15, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/cut_nontomato_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_05", "question_id": "ex1fps_B3_v15_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 16, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/cut_nontomato_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_01", "question_id": "ex1fps_B3_v16_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 17, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/cut_nontomato_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_02", "question_id": "ex1fps_B3_v17_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 18, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/cut_nontomato_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_03", "question_id": "ex1fps_B3_v18_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 19, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/cut_nontomato_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_04", "question_id": "ex1fps_B3_v19_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 20, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/cut_nontomato_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_05", "question_id": "ex1fps_B3_v20_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 21, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/open_cupboard_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_01", "question_id": "ex1fps_B3_v21_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 22, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/open_cupboard_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_02", "question_id": "ex1fps_B3_v22_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 23, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/open_cupboard_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_03", "question_id": "ex1fps_B3_v23_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 24, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/open_cupboard_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_04", "question_id": "ex1fps_B3_v24_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 25, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/open_cupboard_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_05", "question_id": "ex1fps_B3_v25_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 26, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/open_cupboard_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_01", "question_id": "ex1fps_B3_v26_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 27, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/open_cupboard_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_02", "question_id": "ex1fps_B3_v27_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 28, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/open_cupboard_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_03", "question_id": "ex1fps_B3_v28_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 29, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/open_cupboard_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_04", "question_id": "ex1fps_B3_v29_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 30, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/open_cupboard_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_05", "question_id": "ex1fps_B3_v30_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 31, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/open_drawer_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_01", "question_id": "ex1fps_B3_v31_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 32, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/open_drawer_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_02", "question_id": "ex1fps_B3_v32_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 33, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/open_drawer_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_03", "question_id": "ex1fps_B3_v33_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 34, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/open_drawer_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_04", "question_id": "ex1fps_B3_v34_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 35, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/open_drawer_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_05", "question_id": "ex1fps_B3_v35_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 36, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/open_drawer_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_01", "question_id": "ex1fps_B3_v36_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 37, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/open_drawer_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_02", "question_id": "ex1fps_B3_v37_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 38, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/open_drawer_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_03", "question_id": "ex1fps_B3_v38_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 39, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/open_drawer_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_04", "question_id": "ex1fps_B3_v39_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 40, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/open_drawer_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_05", "question_id": "ex1fps_B3_v40_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 41, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/open_fridge_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_01", "question_id": "ex1fps_B3_v41_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 42, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/open_fridge_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_02", "question_id": "ex1fps_B3_v42_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 43, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/open_fridge_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_03", "question_id": "ex1fps_B3_v43_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 44, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/open_fridge_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_04", "question_id": "ex1fps_B3_v44_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 45, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/open_fridge_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_05", "question_id": "ex1fps_B3_v45_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 46, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/open_fridge_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_01", "question_id": "ex1fps_B3_v46_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 47, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/open_fridge_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_02", "question_id": "ex1fps_B3_v47_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 48, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/open_fridge_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_03", "question_id": "ex1fps_B3_v48_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 49, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/open_fridge_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_04", "question_id": "ex1fps_B3_v49_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 50, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/open_fridge_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_05", "question_id": "ex1fps_B3_v50_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 51, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/pour_water_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_01", "question_id": "ex1fps_B3_v51_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 52, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/pour_water_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_02", "question_id": "ex1fps_B3_v52_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 53, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/pour_water_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_03", "question_id": "ex1fps_B3_v53_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 54, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/pour_water_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_04", "question_id": "ex1fps_B3_v54_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 55, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/pour_water_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_05", "question_id": "ex1fps_B3_v55_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 56, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/pour_water_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_01", "question_id": "ex1fps_B3_v56_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 57, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/pour_water_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_02", "question_id": "ex1fps_B3_v57_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 58, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/pour_water_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_03", "question_id": "ex1fps_B3_v58_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 59, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/pour_water_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_04", "question_id": "ex1fps_B3_v59_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 60, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/pour_water_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_05", "question_id": "ex1fps_B3_v60_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 61, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/red_card_neg_01.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_01", "question_id": "ex1fps_B3_v61_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-23 - 15-30 West Brom 2 - 3 Chelsea\", \"source_half\": 1, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-23 - 15-30 West Brom 2 - 3 Chelsea/1_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_01\"}"} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 62, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/red_card_neg_02.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_02", "question_id": "ex1fps_B3_v62_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-29 - 17-00 Liverpool 0 - 3 West Ham\", \"source_half\": 1, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-29 - 17-00 Liverpool 0 - 3 West Ham/1_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_02\"}"} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 63, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/red_card_neg_03.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_03", "question_id": "ex1fps_B3_v63_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg\", \"source_half\": 2, \"source_video_path\": \"soccernet/germany_bundesliga/2014-2015/2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg/2_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_03\"}"} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 64, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/red_card_neg_04.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_04", "question_id": "ex1fps_B3_v64_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund\", \"source_half\": 2, \"source_video_path\": \"soccernet/germany_bundesliga/2016-2017/2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund/2_720p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_04\"}"} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 65, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/red_card_neg_05.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_05", "question_id": "ex1fps_B3_v65_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-09-27 - 21-45 Inter 1 - 4 Fiorentina\", \"source_half\": 2, \"source_video_path\": \"soccernet/italy_serie-a/2015-2016/2015-09-27 - 21-45 Inter 1 - 4 Fiorentina/2_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_05\"}"} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 66, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/red_card_pos_01.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_01", "question_id": "ex1fps_B3_v66_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-23 - 15-30 West Brom 2 - 3 Chelsea\", \"source_half\": 2, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-23 - 15-30 West Brom 2 - 3 Chelsea/2_224p.mkv\", \"clip_start_in_source_seconds\": 456.1, \"clip_end_in_source_seconds\": 546.1, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_01\"}"} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 67, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/red_card_pos_02.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_02", "question_id": "ex1fps_B3_v67_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-29 - 17-00 Liverpool 0 - 3 West Ham\", \"source_half\": 2, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-29 - 17-00 Liverpool 0 - 3 West Ham/2_224p.mkv\", \"clip_start_in_source_seconds\": 1926.77, \"clip_end_in_source_seconds\": 2016.77, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_02\"}"} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 68, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/red_card_pos_03.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_03", "question_id": "ex1fps_B3_v68_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg\", \"source_half\": 1, \"source_video_path\": \"soccernet/germany_bundesliga/2014-2015/2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg/1_224p.mkv\", \"clip_start_in_source_seconds\": 686.48, \"clip_end_in_source_seconds\": 776.48, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_03\"}"} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 69, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/red_card_pos_04.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_04", "question_id": "ex1fps_B3_v69_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund\", \"source_half\": 1, \"source_video_path\": \"soccernet/germany_bundesliga/2016-2017/2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund/1_720p.mkv\", \"clip_start_in_source_seconds\": 2259.19, \"clip_end_in_source_seconds\": 2349.19, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_04\"}"} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 70, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/red_card_pos_05.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_05", "question_id": "ex1fps_B3_v70_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-09-27 - 21-45 Inter 1 - 4 Fiorentina\", \"source_half\": 1, \"source_video_path\": \"soccernet/italy_serie-a/2015-2016/2015-09-27 - 21-45 Inter 1 - 4 Fiorentina/1_224p.mkv\", \"clip_start_in_source_seconds\": 1802.89, \"clip_end_in_source_seconds\": 1892.89, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_05\"}"} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 71, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/rinse_X_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_01", "question_id": "ex1fps_B3_v71_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 72, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/rinse_X_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_02", "question_id": "ex1fps_B3_v72_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 73, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/rinse_X_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_03", "question_id": "ex1fps_B3_v73_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 74, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/rinse_X_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_04", "question_id": "ex1fps_B3_v74_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 75, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/rinse_X_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_05", "question_id": "ex1fps_B3_v75_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 76, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/rinse_X_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_01", "question_id": "ex1fps_B3_v76_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 77, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/rinse_X_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_02", "question_id": "ex1fps_B3_v77_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 78, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/rinse_X_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_03", "question_id": "ex1fps_B3_v78_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 79, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/rinse_X_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_04", "question_id": "ex1fps_B3_v79_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 80, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/rinse_X_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_05", "question_id": "ex1fps_B3_v80_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 81, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/turn_on_tap_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_01", "question_id": "ex1fps_B3_v81_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 82, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/turn_on_tap_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_02", "question_id": "ex1fps_B3_v82_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 83, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/turn_on_tap_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_03", "question_id": "ex1fps_B3_v83_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 84, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/turn_on_tap_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_04", "question_id": "ex1fps_B3_v84_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 85, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/turn_on_tap_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_05", "question_id": "ex1fps_B3_v85_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 86, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/turn_on_tap_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_01", "question_id": "ex1fps_B3_v86_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 87, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/turn_on_tap_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_02", "question_id": "ex1fps_B3_v87_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 88, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/turn_on_tap_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_03", "question_id": "ex1fps_B3_v88_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 89, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/turn_on_tap_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_04", "question_id": "ex1fps_B3_v89_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 90, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/turn_on_tap_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_05", "question_id": "ex1fps_B3_v90_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 91, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/wash_plate_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_01", "question_id": "ex1fps_B3_v91_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 92, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/wash_plate_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_02", "question_id": "ex1fps_B3_v92_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 93, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/wash_plate_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_03", "question_id": "ex1fps_B3_v93_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 94, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/wash_plate_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_04", "question_id": "ex1fps_B3_v94_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 95, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/wash_plate_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_05", "question_id": "ex1fps_B3_v95_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 96, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/wash_plate_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_01", "question_id": "ex1fps_B3_v96_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 97, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/wash_plate_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_02", "question_id": "ex1fps_B3_v97_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 98, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/wash_plate_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_03", "question_id": "ex1fps_B3_v98_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 99, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/wash_plate_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_04", "question_id": "ex1fps_B3_v99_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 100, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/wash_plate_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_05", "question_id": "ex1fps_B3_v100_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 101, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/wipe_surface_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_01", "question_id": "ex1fps_B3_v101_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 102, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/wipe_surface_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_02", "question_id": "ex1fps_B3_v102_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 103, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/wipe_surface_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_03", "question_id": "ex1fps_B3_v103_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 104, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/wipe_surface_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_04", "question_id": "ex1fps_B3_v104_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 105, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_128_frames/wipe_surface_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_05", "question_id": "ex1fps_B3_v105_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 106, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/wipe_surface_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_01", "question_id": "ex1fps_B3_v106_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 107, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/wipe_surface_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_02", "question_id": "ex1fps_B3_v107_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 108, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/wipe_surface_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_03", "question_id": "ex1fps_B3_v108_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 109, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/wipe_surface_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_04", "question_id": "ex1fps_B3_v109_q0", "source_provenance": null} +{"subset": "L=128", "source_split": "natural_video", "length_L": 128, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 110, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_128_frames/wipe_surface_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_05", "question_id": "ex1fps_B3_v110_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 1, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/clean_counter_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_01", "question_id": "ex1fps_B4_v1_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 2, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/clean_counter_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_02", "question_id": "ex1fps_B4_v2_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 3, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/clean_counter_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_03", "question_id": "ex1fps_B4_v3_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 4, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/clean_counter_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_04", "question_id": "ex1fps_B4_v4_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 5, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/clean_counter_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_05", "question_id": "ex1fps_B4_v5_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 6, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/clean_counter_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_01", "question_id": "ex1fps_B4_v6_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 7, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/clean_counter_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_02", "question_id": "ex1fps_B4_v7_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 8, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/clean_counter_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_03", "question_id": "ex1fps_B4_v8_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 9, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/clean_counter_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_04", "question_id": "ex1fps_B4_v9_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 10, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/clean_counter_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_05", "question_id": "ex1fps_B4_v10_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 11, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/cut_nontomato_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_01", "question_id": "ex1fps_B4_v11_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 12, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/cut_nontomato_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_02", "question_id": "ex1fps_B4_v12_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 13, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/cut_nontomato_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_03", "question_id": "ex1fps_B4_v13_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 14, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/cut_nontomato_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_04", "question_id": "ex1fps_B4_v14_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 15, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/cut_nontomato_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_05", "question_id": "ex1fps_B4_v15_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 16, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/cut_nontomato_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_01", "question_id": "ex1fps_B4_v16_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 17, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/cut_nontomato_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_02", "question_id": "ex1fps_B4_v17_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 18, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/cut_nontomato_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_03", "question_id": "ex1fps_B4_v18_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 19, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/cut_nontomato_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_04", "question_id": "ex1fps_B4_v19_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 20, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/cut_nontomato_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_pos_05", "question_id": "ex1fps_B4_v20_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 21, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/open_cupboard_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_01", "question_id": "ex1fps_B4_v21_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 22, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/open_cupboard_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_02", "question_id": "ex1fps_B4_v22_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 23, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/open_cupboard_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_03", "question_id": "ex1fps_B4_v23_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 24, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/open_cupboard_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_04", "question_id": "ex1fps_B4_v24_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 25, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/open_cupboard_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_05", "question_id": "ex1fps_B4_v25_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 26, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/open_cupboard_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_01", "question_id": "ex1fps_B4_v26_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 27, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/open_cupboard_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_02", "question_id": "ex1fps_B4_v27_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 28, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/open_cupboard_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_03", "question_id": "ex1fps_B4_v28_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 29, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/open_cupboard_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_04", "question_id": "ex1fps_B4_v29_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 30, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/open_cupboard_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_pos_05", "question_id": "ex1fps_B4_v30_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 31, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/open_drawer_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_01", "question_id": "ex1fps_B4_v31_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 32, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/open_drawer_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_02", "question_id": "ex1fps_B4_v32_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 33, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/open_drawer_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_03", "question_id": "ex1fps_B4_v33_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 34, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/open_drawer_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_04", "question_id": "ex1fps_B4_v34_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 35, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/open_drawer_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_05", "question_id": "ex1fps_B4_v35_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 36, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/open_drawer_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_01", "question_id": "ex1fps_B4_v36_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 37, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/open_drawer_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_02", "question_id": "ex1fps_B4_v37_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 38, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/open_drawer_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_03", "question_id": "ex1fps_B4_v38_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 39, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/open_drawer_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_04", "question_id": "ex1fps_B4_v39_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 40, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/open_drawer_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_pos_05", "question_id": "ex1fps_B4_v40_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 41, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/open_fridge_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_01", "question_id": "ex1fps_B4_v41_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 42, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/open_fridge_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_02", "question_id": "ex1fps_B4_v42_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 43, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/open_fridge_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_03", "question_id": "ex1fps_B4_v43_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 44, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/open_fridge_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_04", "question_id": "ex1fps_B4_v44_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 45, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/open_fridge_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_05", "question_id": "ex1fps_B4_v45_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 46, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/open_fridge_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_01", "question_id": "ex1fps_B4_v46_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 47, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/open_fridge_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_02", "question_id": "ex1fps_B4_v47_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 48, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/open_fridge_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_03", "question_id": "ex1fps_B4_v48_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 49, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/open_fridge_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_04", "question_id": "ex1fps_B4_v49_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 50, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/open_fridge_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_05", "question_id": "ex1fps_B4_v50_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 51, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/pour_water_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_01", "question_id": "ex1fps_B4_v51_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 52, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/pour_water_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_02", "question_id": "ex1fps_B4_v52_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 53, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/pour_water_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_03", "question_id": "ex1fps_B4_v53_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 54, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/pour_water_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_04", "question_id": "ex1fps_B4_v54_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 55, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/pour_water_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_05", "question_id": "ex1fps_B4_v55_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 56, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/pour_water_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_01", "question_id": "ex1fps_B4_v56_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 57, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/pour_water_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_02", "question_id": "ex1fps_B4_v57_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 58, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/pour_water_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_03", "question_id": "ex1fps_B4_v58_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 59, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/pour_water_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_04", "question_id": "ex1fps_B4_v59_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 60, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/pour_water_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_05", "question_id": "ex1fps_B4_v60_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 61, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/red_card_neg_01.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_01", "question_id": "ex1fps_B4_v61_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-23 - 15-30 West Brom 2 - 3 Chelsea\", \"source_half\": 1, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-23 - 15-30 West Brom 2 - 3 Chelsea/1_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_01\"}"} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 62, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/red_card_neg_02.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_02", "question_id": "ex1fps_B4_v62_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-29 - 17-00 Liverpool 0 - 3 West Ham\", \"source_half\": 1, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-29 - 17-00 Liverpool 0 - 3 West Ham/1_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_02\"}"} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 63, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/red_card_neg_03.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_03", "question_id": "ex1fps_B4_v63_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg\", \"source_half\": 2, \"source_video_path\": \"soccernet/germany_bundesliga/2014-2015/2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg/2_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_03\"}"} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 64, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/red_card_neg_04.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_04", "question_id": "ex1fps_B4_v64_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund\", \"source_half\": 2, \"source_video_path\": \"soccernet/germany_bundesliga/2016-2017/2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund/2_720p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_04\"}"} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 65, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/red_card_neg_05.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_05", "question_id": "ex1fps_B4_v65_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-09-27 - 21-45 Inter 1 - 4 Fiorentina\", \"source_half\": 2, \"source_video_path\": \"soccernet/italy_serie-a/2015-2016/2015-09-27 - 21-45 Inter 1 - 4 Fiorentina/2_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_05\"}"} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 66, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/red_card_pos_01.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_01", "question_id": "ex1fps_B4_v66_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-23 - 15-30 West Brom 2 - 3 Chelsea\", \"source_half\": 2, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-23 - 15-30 West Brom 2 - 3 Chelsea/2_224p.mkv\", \"clip_start_in_source_seconds\": 456.1, \"clip_end_in_source_seconds\": 546.1, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_01\"}"} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 67, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/red_card_pos_02.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_02", "question_id": "ex1fps_B4_v67_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-29 - 17-00 Liverpool 0 - 3 West Ham\", \"source_half\": 2, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-29 - 17-00 Liverpool 0 - 3 West Ham/2_224p.mkv\", \"clip_start_in_source_seconds\": 1926.77, \"clip_end_in_source_seconds\": 2016.77, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_02\"}"} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 68, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/red_card_pos_03.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_03", "question_id": "ex1fps_B4_v68_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg\", \"source_half\": 1, \"source_video_path\": \"soccernet/germany_bundesliga/2014-2015/2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg/1_224p.mkv\", \"clip_start_in_source_seconds\": 686.48, \"clip_end_in_source_seconds\": 776.48, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_03\"}"} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 69, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/red_card_pos_04.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_04", "question_id": "ex1fps_B4_v69_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund\", \"source_half\": 1, \"source_video_path\": \"soccernet/germany_bundesliga/2016-2017/2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund/1_720p.mkv\", \"clip_start_in_source_seconds\": 2259.19, \"clip_end_in_source_seconds\": 2349.19, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_04\"}"} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 70, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/red_card_pos_05.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_05", "question_id": "ex1fps_B4_v70_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-09-27 - 21-45 Inter 1 - 4 Fiorentina\", \"source_half\": 1, \"source_video_path\": \"soccernet/italy_serie-a/2015-2016/2015-09-27 - 21-45 Inter 1 - 4 Fiorentina/1_224p.mkv\", \"clip_start_in_source_seconds\": 1802.89, \"clip_end_in_source_seconds\": 1892.89, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_05\"}"} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 71, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/rinse_X_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_01", "question_id": "ex1fps_B4_v71_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 72, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/rinse_X_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_02", "question_id": "ex1fps_B4_v72_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 73, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/rinse_X_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_03", "question_id": "ex1fps_B4_v73_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 74, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/rinse_X_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_04", "question_id": "ex1fps_B4_v74_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 75, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/rinse_X_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_05", "question_id": "ex1fps_B4_v75_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 76, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/rinse_X_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_01", "question_id": "ex1fps_B4_v76_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 77, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/rinse_X_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_02", "question_id": "ex1fps_B4_v77_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 78, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/rinse_X_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_03", "question_id": "ex1fps_B4_v78_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 79, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/rinse_X_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_04", "question_id": "ex1fps_B4_v79_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 80, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/rinse_X_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_05", "question_id": "ex1fps_B4_v80_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 81, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/turn_on_tap_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_01", "question_id": "ex1fps_B4_v81_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 82, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/turn_on_tap_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_02", "question_id": "ex1fps_B4_v82_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 83, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/turn_on_tap_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_03", "question_id": "ex1fps_B4_v83_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 84, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/turn_on_tap_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_04", "question_id": "ex1fps_B4_v84_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 85, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/turn_on_tap_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_05", "question_id": "ex1fps_B4_v85_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 86, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/turn_on_tap_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_01", "question_id": "ex1fps_B4_v86_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 87, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/turn_on_tap_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_02", "question_id": "ex1fps_B4_v87_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 88, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/turn_on_tap_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_03", "question_id": "ex1fps_B4_v88_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 89, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/turn_on_tap_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_04", "question_id": "ex1fps_B4_v89_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 90, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/turn_on_tap_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_05", "question_id": "ex1fps_B4_v90_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 91, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/wash_plate_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_01", "question_id": "ex1fps_B4_v91_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 92, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/wash_plate_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_02", "question_id": "ex1fps_B4_v92_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 93, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/wash_plate_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_03", "question_id": "ex1fps_B4_v93_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 94, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/wash_plate_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_04", "question_id": "ex1fps_B4_v94_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 95, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/wash_plate_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_05", "question_id": "ex1fps_B4_v95_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 96, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/wash_plate_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_01", "question_id": "ex1fps_B4_v96_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 97, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/wash_plate_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_02", "question_id": "ex1fps_B4_v97_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 98, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/wash_plate_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_03", "question_id": "ex1fps_B4_v98_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 99, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/wash_plate_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_04", "question_id": "ex1fps_B4_v99_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 100, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/wash_plate_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_05", "question_id": "ex1fps_B4_v100_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 101, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/wipe_surface_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_01", "question_id": "ex1fps_B4_v101_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 102, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/wipe_surface_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_02", "question_id": "ex1fps_B4_v102_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 103, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/wipe_surface_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_03", "question_id": "ex1fps_B4_v103_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 104, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/wipe_surface_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_04", "question_id": "ex1fps_B4_v104_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 105, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_512_frames/wipe_surface_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_05", "question_id": "ex1fps_B4_v105_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 106, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/wipe_surface_pos_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_01", "question_id": "ex1fps_B4_v106_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 107, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/wipe_surface_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_02", "question_id": "ex1fps_B4_v107_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 108, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/wipe_surface_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_03", "question_id": "ex1fps_B4_v108_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 109, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/wipe_surface_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_04", "question_id": "ex1fps_B4_v109_q0", "source_provenance": null} +{"subset": "L=512", "source_split": "natural_video", "length_L": 512, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 110, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_512_frames/wipe_surface_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_05", "question_id": "ex1fps_B4_v110_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 1, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/clean_counter_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_01", "question_id": "ex1fps_B5_v1_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 2, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/clean_counter_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_04", "question_id": "ex1fps_B5_v2_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 3, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/clean_counter_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_neg_05", "question_id": "ex1fps_B5_v3_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 4, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/clean_counter_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_04", "question_id": "ex1fps_B5_v4_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 5, "question_index": 0, "question_text": "Did the person clean a counter or surface in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/clean_counter_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "clean_counter", "source_dataset": "epic-kitchens-100", "video_id": "clean_counter_pos_05", "question_id": "ex1fps_B5_v5_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 6, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/cut_nontomato_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_04", "question_id": "ex1fps_B5_v6_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 7, "question_index": 0, "question_text": "Did the person cut a vegetable or fruit (not a tomato) in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/cut_nontomato_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "cut_nontomato", "source_dataset": "epic-kitchens-100", "video_id": "cut_nontomato_neg_05", "question_id": "ex1fps_B5_v7_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 8, "question_index": 0, "question_text": "Did the person open a cupboard in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/open_cupboard_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_cupboard", "source_dataset": "epic-kitchens-100", "video_id": "open_cupboard_neg_03", "question_id": "ex1fps_B5_v8_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 9, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/open_drawer_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_02", "question_id": "ex1fps_B5_v9_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 10, "question_index": 0, "question_text": "Did the person open a drawer in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/open_drawer_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_drawer", "source_dataset": "epic-kitchens-100", "video_id": "open_drawer_neg_04", "question_id": "ex1fps_B5_v10_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 11, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/open_fridge_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_02", "question_id": "ex1fps_B5_v11_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 12, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/open_fridge_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_03", "question_id": "ex1fps_B5_v12_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 13, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/open_fridge_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_neg_04", "question_id": "ex1fps_B5_v13_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 14, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/open_fridge_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_03", "question_id": "ex1fps_B5_v14_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 15, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/open_fridge_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_04", "question_id": "ex1fps_B5_v15_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 16, "question_index": 0, "question_text": "Did the person open a fridge in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/open_fridge_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "open_fridge", "source_dataset": "epic-kitchens-100", "video_id": "open_fridge_pos_05", "question_id": "ex1fps_B5_v16_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 17, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/pour_water_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_02", "question_id": "ex1fps_B5_v17_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 18, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/pour_water_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_03", "question_id": "ex1fps_B5_v18_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 19, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/pour_water_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_neg_04", "question_id": "ex1fps_B5_v19_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 20, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/pour_water_pos_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_02", "question_id": "ex1fps_B5_v20_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 21, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/pour_water_pos_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_03", "question_id": "ex1fps_B5_v21_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 22, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/pour_water_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_04", "question_id": "ex1fps_B5_v22_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 23, "question_index": 0, "question_text": "Did the person pour water in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/pour_water_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "pour_water", "source_dataset": "epic-kitchens-100", "video_id": "pour_water_pos_05", "question_id": "ex1fps_B5_v23_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 24, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/red_card_neg_01.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_01", "question_id": "ex1fps_B5_v24_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-23 - 15-30 West Brom 2 - 3 Chelsea\", \"source_half\": 1, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-23 - 15-30 West Brom 2 - 3 Chelsea/1_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_01\"}"} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 25, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/red_card_neg_02.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_02", "question_id": "ex1fps_B5_v25_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-29 - 17-00 Liverpool 0 - 3 West Ham\", \"source_half\": 1, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-29 - 17-00 Liverpool 0 - 3 West Ham/1_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_02\"}"} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 26, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/red_card_neg_03.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_03", "question_id": "ex1fps_B5_v26_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg\", \"source_half\": 2, \"source_video_path\": \"soccernet/germany_bundesliga/2014-2015/2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg/2_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_03\"}"} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 27, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/red_card_neg_04.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_04", "question_id": "ex1fps_B5_v27_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund\", \"source_half\": 2, \"source_video_path\": \"soccernet/germany_bundesliga/2016-2017/2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund/2_720p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_04\"}"} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 28, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/red_card_neg_05.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_neg_05", "question_id": "ex1fps_B5_v28_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-09-27 - 21-45 Inter 1 - 4 Fiorentina\", \"source_half\": 2, \"source_video_path\": \"soccernet/italy_serie-a/2015-2016/2015-09-27 - 21-45 Inter 1 - 4 Fiorentina/2_224p.mkv\", \"clip_start_in_source_seconds\": 0.0, \"clip_end_in_source_seconds\": 90.0, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": null, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"negative\", \"source_entry_id\": \"long_neg_rc_05\"}"} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 29, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/red_card_pos_01.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_01", "question_id": "ex1fps_B5_v29_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-23 - 15-30 West Brom 2 - 3 Chelsea\", \"source_half\": 2, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-23 - 15-30 West Brom 2 - 3 Chelsea/2_224p.mkv\", \"clip_start_in_source_seconds\": 456.1, \"clip_end_in_source_seconds\": 546.1, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_01\"}"} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 30, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/red_card_pos_02.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_02", "question_id": "ex1fps_B5_v30_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-08-29 - 17-00 Liverpool 0 - 3 West Ham\", \"source_half\": 2, \"source_video_path\": \"soccernet/england_epl/2015-2016/2015-08-29 - 17-00 Liverpool 0 - 3 West Ham/2_224p.mkv\", \"clip_start_in_source_seconds\": 1926.77, \"clip_end_in_source_seconds\": 2016.77, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_02\"}"} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 31, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/red_card_pos_03.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_03", "question_id": "ex1fps_B5_v31_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg\", \"source_half\": 1, \"source_video_path\": \"soccernet/germany_bundesliga/2014-2015/2015-05-09 - 16-30 Bayern Munich 0 - 1 FC Augsburg/1_224p.mkv\", \"clip_start_in_source_seconds\": 686.48, \"clip_end_in_source_seconds\": 776.48, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_03\"}"} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 32, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/red_card_pos_04.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_04", "question_id": "ex1fps_B5_v32_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund\", \"source_half\": 1, \"source_video_path\": \"soccernet/germany_bundesliga/2016-2017/2017-01-21 - 17-30 SV Werder Bremen 1 - 2 Dortmund/1_720p.mkv\", \"clip_start_in_source_seconds\": 2259.19, \"clip_end_in_source_seconds\": 2349.19, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_04\"}"} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 33, "question_index": 0, "question_text": "Was a red card shown in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/red_card_pos_05.mp4", "dataset_source": "soccernet", "input_sequence": null, "source_class": "red_card", "source_dataset": "soccernet", "video_id": "red_card_pos_05", "question_id": "ex1fps_B5_v33_q0", "source_provenance": "{\"source_dataset\": \"SoccerNet\", \"source_match\": \"2015-09-27 - 21-45 Inter 1 - 4 Fiorentina\", \"source_half\": 1, \"source_video_path\": \"soccernet/italy_serie-a/2015-2016/2015-09-27 - 21-45 Inter 1 - 4 Fiorentina/1_224p.mkv\", \"clip_start_in_source_seconds\": 1802.89, \"clip_end_in_source_seconds\": 1892.89, \"event_type\": \"red_card\", \"event_position_in_source_seconds\": 43.5, \"license\": \"SoccerNet (NDA-gated source; obtain from soccer-net.org)\", \"anomaly_label\": \"positive\", \"source_entry_id\": \"long_pos_rc_05\"}"} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 34, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/rinse_X_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_03", "question_id": "ex1fps_B5_v34_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 35, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/rinse_X_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_neg_04", "question_id": "ex1fps_B5_v35_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 36, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/rinse_X_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_04", "question_id": "ex1fps_B5_v36_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 37, "question_index": 0, "question_text": "Did the person rinse something in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/rinse_X_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "rinse_X", "source_dataset": "epic-kitchens-100", "video_id": "rinse_X_pos_05", "question_id": "ex1fps_B5_v37_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 38, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/turn_on_tap_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_02", "question_id": "ex1fps_B5_v38_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 39, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/turn_on_tap_neg_03.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_03", "question_id": "ex1fps_B5_v39_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 40, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/turn_on_tap_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_neg_04", "question_id": "ex1fps_B5_v40_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 41, "question_index": 0, "question_text": "Did the person turn on a tap in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/turn_on_tap_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "turn_on_tap", "source_dataset": "epic-kitchens-100", "video_id": "turn_on_tap_pos_05", "question_id": "ex1fps_B5_v41_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 42, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/wash_plate_neg_01.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_01", "question_id": "ex1fps_B5_v42_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 43, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/wash_plate_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_02", "question_id": "ex1fps_B5_v43_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 44, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/wash_plate_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_04", "question_id": "ex1fps_B5_v44_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 45, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/wash_plate_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_neg_05", "question_id": "ex1fps_B5_v45_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 46, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/wash_plate_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_04", "question_id": "ex1fps_B5_v46_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 47, "question_index": 0, "question_text": "Did the person wash a plate in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/wash_plate_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wash_plate", "source_dataset": "epic-kitchens-100", "video_id": "wash_plate_pos_05", "question_id": "ex1fps_B5_v47_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 48, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/wipe_surface_neg_02.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_02", "question_id": "ex1fps_B5_v48_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 49, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/wipe_surface_neg_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_04", "question_id": "ex1fps_B5_v49_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 50, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "no", "clip_path": null, "video_path": "videos/nat_1024_frames/wipe_surface_neg_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_neg_05", "question_id": "ex1fps_B5_v50_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 51, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/wipe_surface_pos_04.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_04", "question_id": "ex1fps_B5_v51_q0", "source_provenance": null} +{"subset": "L=1024", "source_split": "natural_video", "length_L": 1024, "entropy_band": "natural", "modality": "video", "question_variant": "binary_natural", "video_index": 52, "question_index": 0, "question_text": "Did the person wipe a surface or counter in this video?", "candidate": null, "answer": "yes", "clip_path": null, "video_path": "videos/nat_1024_frames/wipe_surface_pos_05.mp4", "dataset_source": "epic-kitchens-100", "input_sequence": null, "source_class": "wipe_surface", "source_dataset": "epic-kitchens-100", "video_id": "wipe_surface_pos_05", "question_id": "ex1fps_B5_v52_q0", "source_provenance": null} diff --git a/natural_video/questions.parquet b/natural_video/questions.parquet new file mode 100644 index 0000000000000000000000000000000000000000..5dec83e76839f39e5fe10a915fed6fc3e939a4cb --- /dev/null +++ b/natural_video/questions.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3c4b0309a0977571c9c51d976a201430a1a5ff4c947007cdccdeb4f96ffd140 +size 32728 diff --git a/exact1fps_B5/videos/clean_counter_neg_01.mp4 b/natural_video/videos/nat_1024_frames/clean_counter_neg_01.mp4 similarity index 100% rename from exact1fps_B5/videos/clean_counter_neg_01.mp4 rename to natural_video/videos/nat_1024_frames/clean_counter_neg_01.mp4 diff --git a/exact1fps_B5/videos/clean_counter_neg_04.mp4 b/natural_video/videos/nat_1024_frames/clean_counter_neg_04.mp4 similarity index 100% rename from exact1fps_B5/videos/clean_counter_neg_04.mp4 rename to natural_video/videos/nat_1024_frames/clean_counter_neg_04.mp4 diff --git a/exact1fps_B5/videos/clean_counter_neg_05.mp4 b/natural_video/videos/nat_1024_frames/clean_counter_neg_05.mp4 similarity index 100% rename from exact1fps_B5/videos/clean_counter_neg_05.mp4 rename to natural_video/videos/nat_1024_frames/clean_counter_neg_05.mp4 diff --git a/exact1fps_B5/videos/clean_counter_pos_04.mp4 b/natural_video/videos/nat_1024_frames/clean_counter_pos_04.mp4 similarity index 100% rename from exact1fps_B5/videos/clean_counter_pos_04.mp4 rename to natural_video/videos/nat_1024_frames/clean_counter_pos_04.mp4 diff --git a/exact1fps_B5/videos/clean_counter_pos_05.mp4 b/natural_video/videos/nat_1024_frames/clean_counter_pos_05.mp4 similarity index 100% rename from exact1fps_B5/videos/clean_counter_pos_05.mp4 rename to natural_video/videos/nat_1024_frames/clean_counter_pos_05.mp4 diff --git a/exact1fps_B5/videos/cut_nontomato_neg_04.mp4 b/natural_video/videos/nat_1024_frames/cut_nontomato_neg_04.mp4 similarity index 100% rename from exact1fps_B5/videos/cut_nontomato_neg_04.mp4 rename to natural_video/videos/nat_1024_frames/cut_nontomato_neg_04.mp4 diff --git a/exact1fps_B5/videos/cut_nontomato_neg_05.mp4 b/natural_video/videos/nat_1024_frames/cut_nontomato_neg_05.mp4 similarity index 100% rename from exact1fps_B5/videos/cut_nontomato_neg_05.mp4 rename to natural_video/videos/nat_1024_frames/cut_nontomato_neg_05.mp4 diff --git a/exact1fps_B5/videos/open_cupboard_neg_03.mp4 b/natural_video/videos/nat_1024_frames/open_cupboard_neg_03.mp4 similarity index 100% rename from exact1fps_B5/videos/open_cupboard_neg_03.mp4 rename to natural_video/videos/nat_1024_frames/open_cupboard_neg_03.mp4 diff --git a/exact1fps_B5/videos/open_drawer_neg_02.mp4 b/natural_video/videos/nat_1024_frames/open_drawer_neg_02.mp4 similarity index 100% rename from exact1fps_B5/videos/open_drawer_neg_02.mp4 rename to natural_video/videos/nat_1024_frames/open_drawer_neg_02.mp4 diff --git a/exact1fps_B5/videos/open_drawer_neg_04.mp4 b/natural_video/videos/nat_1024_frames/open_drawer_neg_04.mp4 similarity index 100% rename from exact1fps_B5/videos/open_drawer_neg_04.mp4 rename to natural_video/videos/nat_1024_frames/open_drawer_neg_04.mp4 diff --git a/exact1fps_B5/videos/open_fridge_neg_02.mp4 b/natural_video/videos/nat_1024_frames/open_fridge_neg_02.mp4 similarity index 100% rename from exact1fps_B5/videos/open_fridge_neg_02.mp4 rename to natural_video/videos/nat_1024_frames/open_fridge_neg_02.mp4 diff --git a/exact1fps_B5/videos/open_fridge_neg_03.mp4 b/natural_video/videos/nat_1024_frames/open_fridge_neg_03.mp4 similarity index 100% rename from exact1fps_B5/videos/open_fridge_neg_03.mp4 rename to natural_video/videos/nat_1024_frames/open_fridge_neg_03.mp4 diff --git a/exact1fps_B5/videos/open_fridge_neg_04.mp4 b/natural_video/videos/nat_1024_frames/open_fridge_neg_04.mp4 similarity index 100% rename from exact1fps_B5/videos/open_fridge_neg_04.mp4 rename to natural_video/videos/nat_1024_frames/open_fridge_neg_04.mp4 diff --git a/exact1fps_B5/videos/open_fridge_pos_03.mp4 b/natural_video/videos/nat_1024_frames/open_fridge_pos_03.mp4 similarity index 100% rename from exact1fps_B5/videos/open_fridge_pos_03.mp4 rename to natural_video/videos/nat_1024_frames/open_fridge_pos_03.mp4 diff --git a/exact1fps_B5/videos/open_fridge_pos_04.mp4 b/natural_video/videos/nat_1024_frames/open_fridge_pos_04.mp4 similarity index 100% rename from exact1fps_B5/videos/open_fridge_pos_04.mp4 rename to natural_video/videos/nat_1024_frames/open_fridge_pos_04.mp4 diff --git a/exact1fps_B5/videos/open_fridge_pos_05.mp4 b/natural_video/videos/nat_1024_frames/open_fridge_pos_05.mp4 similarity index 100% rename from exact1fps_B5/videos/open_fridge_pos_05.mp4 rename to natural_video/videos/nat_1024_frames/open_fridge_pos_05.mp4 diff --git a/exact1fps_B5/videos/pour_water_neg_02.mp4 b/natural_video/videos/nat_1024_frames/pour_water_neg_02.mp4 similarity index 100% rename from exact1fps_B5/videos/pour_water_neg_02.mp4 rename to natural_video/videos/nat_1024_frames/pour_water_neg_02.mp4 diff --git a/exact1fps_B5/videos/pour_water_neg_03.mp4 b/natural_video/videos/nat_1024_frames/pour_water_neg_03.mp4 similarity index 100% rename from exact1fps_B5/videos/pour_water_neg_03.mp4 rename to natural_video/videos/nat_1024_frames/pour_water_neg_03.mp4 diff --git a/exact1fps_B5/videos/pour_water_neg_04.mp4 b/natural_video/videos/nat_1024_frames/pour_water_neg_04.mp4 similarity index 100% rename from exact1fps_B5/videos/pour_water_neg_04.mp4 rename to natural_video/videos/nat_1024_frames/pour_water_neg_04.mp4 diff --git a/exact1fps_B5/videos/pour_water_pos_02.mp4 b/natural_video/videos/nat_1024_frames/pour_water_pos_02.mp4 similarity index 100% rename from exact1fps_B5/videos/pour_water_pos_02.mp4 rename to natural_video/videos/nat_1024_frames/pour_water_pos_02.mp4 diff --git a/exact1fps_B5/videos/pour_water_pos_03.mp4 b/natural_video/videos/nat_1024_frames/pour_water_pos_03.mp4 similarity index 100% rename from exact1fps_B5/videos/pour_water_pos_03.mp4 rename to natural_video/videos/nat_1024_frames/pour_water_pos_03.mp4 diff --git a/exact1fps_B5/videos/pour_water_pos_04.mp4 b/natural_video/videos/nat_1024_frames/pour_water_pos_04.mp4 similarity index 100% rename from exact1fps_B5/videos/pour_water_pos_04.mp4 rename to natural_video/videos/nat_1024_frames/pour_water_pos_04.mp4 diff --git a/exact1fps_B5/videos/pour_water_pos_05.mp4 b/natural_video/videos/nat_1024_frames/pour_water_pos_05.mp4 similarity index 100% rename from exact1fps_B5/videos/pour_water_pos_05.mp4 rename to natural_video/videos/nat_1024_frames/pour_water_pos_05.mp4 diff --git a/exact1fps_B5/videos/rinse_X_neg_03.mp4 b/natural_video/videos/nat_1024_frames/rinse_X_neg_03.mp4 similarity index 100% rename from exact1fps_B5/videos/rinse_X_neg_03.mp4 rename to natural_video/videos/nat_1024_frames/rinse_X_neg_03.mp4 diff --git a/exact1fps_B5/videos/rinse_X_neg_04.mp4 b/natural_video/videos/nat_1024_frames/rinse_X_neg_04.mp4 similarity index 100% rename from exact1fps_B5/videos/rinse_X_neg_04.mp4 rename to natural_video/videos/nat_1024_frames/rinse_X_neg_04.mp4 diff --git a/exact1fps_B5/videos/rinse_X_pos_04.mp4 b/natural_video/videos/nat_1024_frames/rinse_X_pos_04.mp4 similarity index 100% rename from exact1fps_B5/videos/rinse_X_pos_04.mp4 rename to natural_video/videos/nat_1024_frames/rinse_X_pos_04.mp4 diff --git a/exact1fps_B5/videos/rinse_X_pos_05.mp4 b/natural_video/videos/nat_1024_frames/rinse_X_pos_05.mp4 similarity index 100% rename from exact1fps_B5/videos/rinse_X_pos_05.mp4 rename to natural_video/videos/nat_1024_frames/rinse_X_pos_05.mp4 diff --git a/exact1fps_B5/videos/turn_on_tap_neg_02.mp4 b/natural_video/videos/nat_1024_frames/turn_on_tap_neg_02.mp4 similarity index 100% rename from exact1fps_B5/videos/turn_on_tap_neg_02.mp4 rename to natural_video/videos/nat_1024_frames/turn_on_tap_neg_02.mp4 diff --git a/exact1fps_B5/videos/turn_on_tap_neg_03.mp4 b/natural_video/videos/nat_1024_frames/turn_on_tap_neg_03.mp4 similarity index 100% rename from exact1fps_B5/videos/turn_on_tap_neg_03.mp4 rename to natural_video/videos/nat_1024_frames/turn_on_tap_neg_03.mp4 diff --git a/exact1fps_B5/videos/turn_on_tap_neg_04.mp4 b/natural_video/videos/nat_1024_frames/turn_on_tap_neg_04.mp4 similarity index 100% rename from exact1fps_B5/videos/turn_on_tap_neg_04.mp4 rename to natural_video/videos/nat_1024_frames/turn_on_tap_neg_04.mp4 diff --git a/exact1fps_B5/videos/turn_on_tap_pos_05.mp4 b/natural_video/videos/nat_1024_frames/turn_on_tap_pos_05.mp4 similarity index 100% rename from exact1fps_B5/videos/turn_on_tap_pos_05.mp4 rename to natural_video/videos/nat_1024_frames/turn_on_tap_pos_05.mp4 diff --git a/exact1fps_B5/videos/wash_plate_neg_01.mp4 b/natural_video/videos/nat_1024_frames/wash_plate_neg_01.mp4 similarity index 100% rename from exact1fps_B5/videos/wash_plate_neg_01.mp4 rename to natural_video/videos/nat_1024_frames/wash_plate_neg_01.mp4 diff --git a/exact1fps_B5/videos/wash_plate_neg_02.mp4 b/natural_video/videos/nat_1024_frames/wash_plate_neg_02.mp4 similarity index 100% rename from exact1fps_B5/videos/wash_plate_neg_02.mp4 rename to natural_video/videos/nat_1024_frames/wash_plate_neg_02.mp4 diff --git a/exact1fps_B5/videos/wash_plate_neg_04.mp4 b/natural_video/videos/nat_1024_frames/wash_plate_neg_04.mp4 similarity index 100% rename from exact1fps_B5/videos/wash_plate_neg_04.mp4 rename to natural_video/videos/nat_1024_frames/wash_plate_neg_04.mp4 diff --git a/exact1fps_B5/videos/wash_plate_neg_05.mp4 b/natural_video/videos/nat_1024_frames/wash_plate_neg_05.mp4 similarity index 100% rename from exact1fps_B5/videos/wash_plate_neg_05.mp4 rename to natural_video/videos/nat_1024_frames/wash_plate_neg_05.mp4 diff --git a/exact1fps_B5/videos/wash_plate_pos_04.mp4 b/natural_video/videos/nat_1024_frames/wash_plate_pos_04.mp4 similarity index 100% rename from exact1fps_B5/videos/wash_plate_pos_04.mp4 rename to natural_video/videos/nat_1024_frames/wash_plate_pos_04.mp4 diff --git a/exact1fps_B5/videos/wash_plate_pos_05.mp4 b/natural_video/videos/nat_1024_frames/wash_plate_pos_05.mp4 similarity index 100% rename from exact1fps_B5/videos/wash_plate_pos_05.mp4 rename to natural_video/videos/nat_1024_frames/wash_plate_pos_05.mp4 diff --git a/exact1fps_B5/videos/wipe_surface_neg_02.mp4 b/natural_video/videos/nat_1024_frames/wipe_surface_neg_02.mp4 similarity index 100% rename from exact1fps_B5/videos/wipe_surface_neg_02.mp4 rename to natural_video/videos/nat_1024_frames/wipe_surface_neg_02.mp4 diff --git a/exact1fps_B5/videos/wipe_surface_neg_04.mp4 b/natural_video/videos/nat_1024_frames/wipe_surface_neg_04.mp4 similarity index 100% rename from exact1fps_B5/videos/wipe_surface_neg_04.mp4 rename to natural_video/videos/nat_1024_frames/wipe_surface_neg_04.mp4 diff --git a/exact1fps_B5/videos/wipe_surface_neg_05.mp4 b/natural_video/videos/nat_1024_frames/wipe_surface_neg_05.mp4 similarity index 100% rename from exact1fps_B5/videos/wipe_surface_neg_05.mp4 rename to natural_video/videos/nat_1024_frames/wipe_surface_neg_05.mp4 diff --git a/exact1fps_B5/videos/wipe_surface_pos_04.mp4 b/natural_video/videos/nat_1024_frames/wipe_surface_pos_04.mp4 similarity index 100% rename from exact1fps_B5/videos/wipe_surface_pos_04.mp4 rename to natural_video/videos/nat_1024_frames/wipe_surface_pos_04.mp4 diff --git a/exact1fps_B5/videos/wipe_surface_pos_05.mp4 b/natural_video/videos/nat_1024_frames/wipe_surface_pos_05.mp4 similarity index 100% rename from exact1fps_B5/videos/wipe_surface_pos_05.mp4 rename to natural_video/videos/nat_1024_frames/wipe_surface_pos_05.mp4 diff --git a/exact1fps_B3/videos/clean_counter_neg_01.mp4 b/natural_video/videos/nat_128_frames/clean_counter_neg_01.mp4 similarity index 100% rename from exact1fps_B3/videos/clean_counter_neg_01.mp4 rename to natural_video/videos/nat_128_frames/clean_counter_neg_01.mp4 diff --git a/exact1fps_B3/videos/clean_counter_neg_02.mp4 b/natural_video/videos/nat_128_frames/clean_counter_neg_02.mp4 similarity index 100% rename from exact1fps_B3/videos/clean_counter_neg_02.mp4 rename to natural_video/videos/nat_128_frames/clean_counter_neg_02.mp4 diff --git a/exact1fps_B3/videos/clean_counter_neg_03.mp4 b/natural_video/videos/nat_128_frames/clean_counter_neg_03.mp4 similarity index 100% rename from exact1fps_B3/videos/clean_counter_neg_03.mp4 rename to natural_video/videos/nat_128_frames/clean_counter_neg_03.mp4 diff --git a/exact1fps_B3/videos/clean_counter_neg_04.mp4 b/natural_video/videos/nat_128_frames/clean_counter_neg_04.mp4 similarity index 100% rename from exact1fps_B3/videos/clean_counter_neg_04.mp4 rename to natural_video/videos/nat_128_frames/clean_counter_neg_04.mp4 diff --git a/exact1fps_B3/videos/clean_counter_neg_05.mp4 b/natural_video/videos/nat_128_frames/clean_counter_neg_05.mp4 similarity index 100% rename from exact1fps_B3/videos/clean_counter_neg_05.mp4 rename to natural_video/videos/nat_128_frames/clean_counter_neg_05.mp4 diff --git a/exact1fps_B3/videos/clean_counter_pos_01.mp4 b/natural_video/videos/nat_128_frames/clean_counter_pos_01.mp4 similarity index 100% rename from exact1fps_B3/videos/clean_counter_pos_01.mp4 rename to natural_video/videos/nat_128_frames/clean_counter_pos_01.mp4 diff --git a/exact1fps_B3/videos/clean_counter_pos_02.mp4 b/natural_video/videos/nat_128_frames/clean_counter_pos_02.mp4 similarity index 100% rename from exact1fps_B3/videos/clean_counter_pos_02.mp4 rename to natural_video/videos/nat_128_frames/clean_counter_pos_02.mp4 diff --git a/exact1fps_B3/videos/clean_counter_pos_03.mp4 b/natural_video/videos/nat_128_frames/clean_counter_pos_03.mp4 similarity index 100% rename from exact1fps_B3/videos/clean_counter_pos_03.mp4 rename to natural_video/videos/nat_128_frames/clean_counter_pos_03.mp4 diff --git a/exact1fps_B3/videos/clean_counter_pos_04.mp4 b/natural_video/videos/nat_128_frames/clean_counter_pos_04.mp4 similarity index 100% rename from exact1fps_B3/videos/clean_counter_pos_04.mp4 rename to natural_video/videos/nat_128_frames/clean_counter_pos_04.mp4 diff --git a/exact1fps_B3/videos/clean_counter_pos_05.mp4 b/natural_video/videos/nat_128_frames/clean_counter_pos_05.mp4 similarity index 100% rename from exact1fps_B3/videos/clean_counter_pos_05.mp4 rename to natural_video/videos/nat_128_frames/clean_counter_pos_05.mp4 diff --git a/exact1fps_B3/videos/cut_nontomato_neg_01.mp4 b/natural_video/videos/nat_128_frames/cut_nontomato_neg_01.mp4 similarity index 100% rename from exact1fps_B3/videos/cut_nontomato_neg_01.mp4 rename to natural_video/videos/nat_128_frames/cut_nontomato_neg_01.mp4 diff --git a/exact1fps_B3/videos/cut_nontomato_neg_02.mp4 b/natural_video/videos/nat_128_frames/cut_nontomato_neg_02.mp4 similarity index 100% rename from exact1fps_B3/videos/cut_nontomato_neg_02.mp4 rename to natural_video/videos/nat_128_frames/cut_nontomato_neg_02.mp4 diff --git a/exact1fps_B3/videos/cut_nontomato_neg_03.mp4 b/natural_video/videos/nat_128_frames/cut_nontomato_neg_03.mp4 similarity index 100% rename from exact1fps_B3/videos/cut_nontomato_neg_03.mp4 rename to natural_video/videos/nat_128_frames/cut_nontomato_neg_03.mp4 diff --git a/exact1fps_B3/videos/cut_nontomato_neg_04.mp4 b/natural_video/videos/nat_128_frames/cut_nontomato_neg_04.mp4 similarity index 100% rename from exact1fps_B3/videos/cut_nontomato_neg_04.mp4 rename to natural_video/videos/nat_128_frames/cut_nontomato_neg_04.mp4 diff --git a/exact1fps_B3/videos/cut_nontomato_neg_05.mp4 b/natural_video/videos/nat_128_frames/cut_nontomato_neg_05.mp4 similarity index 100% rename from exact1fps_B3/videos/cut_nontomato_neg_05.mp4 rename to natural_video/videos/nat_128_frames/cut_nontomato_neg_05.mp4 diff --git a/exact1fps_B3/videos/cut_nontomato_pos_01.mp4 b/natural_video/videos/nat_128_frames/cut_nontomato_pos_01.mp4 similarity index 100% rename from exact1fps_B3/videos/cut_nontomato_pos_01.mp4 rename to natural_video/videos/nat_128_frames/cut_nontomato_pos_01.mp4 diff --git a/exact1fps_B3/videos/cut_nontomato_pos_02.mp4 b/natural_video/videos/nat_128_frames/cut_nontomato_pos_02.mp4 similarity index 100% rename from exact1fps_B3/videos/cut_nontomato_pos_02.mp4 rename to natural_video/videos/nat_128_frames/cut_nontomato_pos_02.mp4 diff --git a/exact1fps_B3/videos/cut_nontomato_pos_03.mp4 b/natural_video/videos/nat_128_frames/cut_nontomato_pos_03.mp4 similarity index 100% rename from exact1fps_B3/videos/cut_nontomato_pos_03.mp4 rename to natural_video/videos/nat_128_frames/cut_nontomato_pos_03.mp4 diff --git a/exact1fps_B3/videos/cut_nontomato_pos_04.mp4 b/natural_video/videos/nat_128_frames/cut_nontomato_pos_04.mp4 similarity index 100% rename from exact1fps_B3/videos/cut_nontomato_pos_04.mp4 rename to natural_video/videos/nat_128_frames/cut_nontomato_pos_04.mp4 diff --git a/exact1fps_B3/videos/cut_nontomato_pos_05.mp4 b/natural_video/videos/nat_128_frames/cut_nontomato_pos_05.mp4 similarity index 100% rename from exact1fps_B3/videos/cut_nontomato_pos_05.mp4 rename to natural_video/videos/nat_128_frames/cut_nontomato_pos_05.mp4 diff --git a/exact1fps_B3/videos/open_cupboard_neg_01.mp4 b/natural_video/videos/nat_128_frames/open_cupboard_neg_01.mp4 similarity index 100% rename from exact1fps_B3/videos/open_cupboard_neg_01.mp4 rename to natural_video/videos/nat_128_frames/open_cupboard_neg_01.mp4 diff --git a/exact1fps_B3/videos/open_cupboard_neg_02.mp4 b/natural_video/videos/nat_128_frames/open_cupboard_neg_02.mp4 similarity index 100% rename from exact1fps_B3/videos/open_cupboard_neg_02.mp4 rename to natural_video/videos/nat_128_frames/open_cupboard_neg_02.mp4 diff --git a/exact1fps_B3/videos/open_cupboard_neg_03.mp4 b/natural_video/videos/nat_128_frames/open_cupboard_neg_03.mp4 similarity index 100% rename from exact1fps_B3/videos/open_cupboard_neg_03.mp4 rename to natural_video/videos/nat_128_frames/open_cupboard_neg_03.mp4 diff --git a/exact1fps_B3/videos/open_cupboard_neg_04.mp4 b/natural_video/videos/nat_128_frames/open_cupboard_neg_04.mp4 similarity index 100% rename from exact1fps_B3/videos/open_cupboard_neg_04.mp4 rename to natural_video/videos/nat_128_frames/open_cupboard_neg_04.mp4 diff --git a/exact1fps_B3/videos/open_cupboard_neg_05.mp4 b/natural_video/videos/nat_128_frames/open_cupboard_neg_05.mp4 similarity index 100% rename from exact1fps_B3/videos/open_cupboard_neg_05.mp4 rename to natural_video/videos/nat_128_frames/open_cupboard_neg_05.mp4 diff --git a/exact1fps_B3/videos/open_cupboard_pos_01.mp4 b/natural_video/videos/nat_128_frames/open_cupboard_pos_01.mp4 similarity index 100% rename from exact1fps_B3/videos/open_cupboard_pos_01.mp4 rename to natural_video/videos/nat_128_frames/open_cupboard_pos_01.mp4 diff --git a/exact1fps_B3/videos/open_cupboard_pos_02.mp4 b/natural_video/videos/nat_128_frames/open_cupboard_pos_02.mp4 similarity index 100% rename from exact1fps_B3/videos/open_cupboard_pos_02.mp4 rename to natural_video/videos/nat_128_frames/open_cupboard_pos_02.mp4 diff --git a/exact1fps_B3/videos/open_cupboard_pos_03.mp4 b/natural_video/videos/nat_128_frames/open_cupboard_pos_03.mp4 similarity index 100% rename from exact1fps_B3/videos/open_cupboard_pos_03.mp4 rename to natural_video/videos/nat_128_frames/open_cupboard_pos_03.mp4 diff --git a/exact1fps_B3/videos/open_cupboard_pos_04.mp4 b/natural_video/videos/nat_128_frames/open_cupboard_pos_04.mp4 similarity index 100% rename from exact1fps_B3/videos/open_cupboard_pos_04.mp4 rename to natural_video/videos/nat_128_frames/open_cupboard_pos_04.mp4 diff --git a/exact1fps_B3/videos/open_cupboard_pos_05.mp4 b/natural_video/videos/nat_128_frames/open_cupboard_pos_05.mp4 similarity index 100% rename from exact1fps_B3/videos/open_cupboard_pos_05.mp4 rename to natural_video/videos/nat_128_frames/open_cupboard_pos_05.mp4 diff --git a/exact1fps_B3/videos/open_drawer_neg_01.mp4 b/natural_video/videos/nat_128_frames/open_drawer_neg_01.mp4 similarity index 100% rename from exact1fps_B3/videos/open_drawer_neg_01.mp4 rename to natural_video/videos/nat_128_frames/open_drawer_neg_01.mp4 diff --git a/exact1fps_B3/videos/open_drawer_neg_02.mp4 b/natural_video/videos/nat_128_frames/open_drawer_neg_02.mp4 similarity index 100% rename from exact1fps_B3/videos/open_drawer_neg_02.mp4 rename to natural_video/videos/nat_128_frames/open_drawer_neg_02.mp4 diff --git a/exact1fps_B3/videos/open_drawer_neg_03.mp4 b/natural_video/videos/nat_128_frames/open_drawer_neg_03.mp4 similarity index 100% rename from exact1fps_B3/videos/open_drawer_neg_03.mp4 rename to natural_video/videos/nat_128_frames/open_drawer_neg_03.mp4 diff --git a/exact1fps_B3/videos/open_drawer_neg_04.mp4 b/natural_video/videos/nat_128_frames/open_drawer_neg_04.mp4 similarity index 100% rename from exact1fps_B3/videos/open_drawer_neg_04.mp4 rename to natural_video/videos/nat_128_frames/open_drawer_neg_04.mp4 diff --git a/exact1fps_B3/videos/open_drawer_neg_05.mp4 b/natural_video/videos/nat_128_frames/open_drawer_neg_05.mp4 similarity index 100% rename from exact1fps_B3/videos/open_drawer_neg_05.mp4 rename to natural_video/videos/nat_128_frames/open_drawer_neg_05.mp4 diff --git a/exact1fps_B3/videos/open_drawer_pos_01.mp4 b/natural_video/videos/nat_128_frames/open_drawer_pos_01.mp4 similarity index 100% rename from exact1fps_B3/videos/open_drawer_pos_01.mp4 rename to natural_video/videos/nat_128_frames/open_drawer_pos_01.mp4 diff --git a/exact1fps_B3/videos/open_drawer_pos_02.mp4 b/natural_video/videos/nat_128_frames/open_drawer_pos_02.mp4 similarity index 100% rename from exact1fps_B3/videos/open_drawer_pos_02.mp4 rename to natural_video/videos/nat_128_frames/open_drawer_pos_02.mp4 diff --git a/exact1fps_B3/videos/open_drawer_pos_03.mp4 b/natural_video/videos/nat_128_frames/open_drawer_pos_03.mp4 similarity index 100% rename from exact1fps_B3/videos/open_drawer_pos_03.mp4 rename to natural_video/videos/nat_128_frames/open_drawer_pos_03.mp4 diff --git a/exact1fps_B3/videos/open_drawer_pos_04.mp4 b/natural_video/videos/nat_128_frames/open_drawer_pos_04.mp4 similarity index 100% rename from exact1fps_B3/videos/open_drawer_pos_04.mp4 rename to natural_video/videos/nat_128_frames/open_drawer_pos_04.mp4 diff --git a/exact1fps_B3/videos/open_drawer_pos_05.mp4 b/natural_video/videos/nat_128_frames/open_drawer_pos_05.mp4 similarity index 100% rename from exact1fps_B3/videos/open_drawer_pos_05.mp4 rename to natural_video/videos/nat_128_frames/open_drawer_pos_05.mp4 diff --git a/exact1fps_B3/videos/open_fridge_neg_01.mp4 b/natural_video/videos/nat_128_frames/open_fridge_neg_01.mp4 similarity index 100% rename from exact1fps_B3/videos/open_fridge_neg_01.mp4 rename to natural_video/videos/nat_128_frames/open_fridge_neg_01.mp4 diff --git a/exact1fps_B3/videos/open_fridge_neg_02.mp4 b/natural_video/videos/nat_128_frames/open_fridge_neg_02.mp4 similarity index 100% rename from exact1fps_B3/videos/open_fridge_neg_02.mp4 rename to natural_video/videos/nat_128_frames/open_fridge_neg_02.mp4 diff --git a/exact1fps_B3/videos/open_fridge_neg_03.mp4 b/natural_video/videos/nat_128_frames/open_fridge_neg_03.mp4 similarity index 100% rename from exact1fps_B3/videos/open_fridge_neg_03.mp4 rename to natural_video/videos/nat_128_frames/open_fridge_neg_03.mp4 diff --git a/exact1fps_B3/videos/open_fridge_neg_04.mp4 b/natural_video/videos/nat_128_frames/open_fridge_neg_04.mp4 similarity index 100% rename from exact1fps_B3/videos/open_fridge_neg_04.mp4 rename to natural_video/videos/nat_128_frames/open_fridge_neg_04.mp4 diff --git a/exact1fps_B3/videos/open_fridge_neg_05.mp4 b/natural_video/videos/nat_128_frames/open_fridge_neg_05.mp4 similarity index 100% rename from exact1fps_B3/videos/open_fridge_neg_05.mp4 rename to natural_video/videos/nat_128_frames/open_fridge_neg_05.mp4 diff --git a/exact1fps_B3/videos/open_fridge_pos_01.mp4 b/natural_video/videos/nat_128_frames/open_fridge_pos_01.mp4 similarity index 100% rename from exact1fps_B3/videos/open_fridge_pos_01.mp4 rename to natural_video/videos/nat_128_frames/open_fridge_pos_01.mp4 diff --git a/exact1fps_B3/videos/open_fridge_pos_02.mp4 b/natural_video/videos/nat_128_frames/open_fridge_pos_02.mp4 similarity index 100% rename from exact1fps_B3/videos/open_fridge_pos_02.mp4 rename to natural_video/videos/nat_128_frames/open_fridge_pos_02.mp4 diff --git a/exact1fps_B3/videos/open_fridge_pos_03.mp4 b/natural_video/videos/nat_128_frames/open_fridge_pos_03.mp4 similarity index 100% rename from exact1fps_B3/videos/open_fridge_pos_03.mp4 rename to natural_video/videos/nat_128_frames/open_fridge_pos_03.mp4 diff --git a/exact1fps_B3/videos/open_fridge_pos_04.mp4 b/natural_video/videos/nat_128_frames/open_fridge_pos_04.mp4 similarity index 100% rename from exact1fps_B3/videos/open_fridge_pos_04.mp4 rename to natural_video/videos/nat_128_frames/open_fridge_pos_04.mp4 diff --git a/exact1fps_B3/videos/open_fridge_pos_05.mp4 b/natural_video/videos/nat_128_frames/open_fridge_pos_05.mp4 similarity index 100% rename from exact1fps_B3/videos/open_fridge_pos_05.mp4 rename to natural_video/videos/nat_128_frames/open_fridge_pos_05.mp4 diff --git a/exact1fps_B3/videos/pour_water_neg_01.mp4 b/natural_video/videos/nat_128_frames/pour_water_neg_01.mp4 similarity index 100% rename from exact1fps_B3/videos/pour_water_neg_01.mp4 rename to natural_video/videos/nat_128_frames/pour_water_neg_01.mp4 diff --git a/exact1fps_B3/videos/pour_water_neg_02.mp4 b/natural_video/videos/nat_128_frames/pour_water_neg_02.mp4 similarity index 100% rename from exact1fps_B3/videos/pour_water_neg_02.mp4 rename to natural_video/videos/nat_128_frames/pour_water_neg_02.mp4 diff --git a/exact1fps_B3/videos/pour_water_neg_03.mp4 b/natural_video/videos/nat_128_frames/pour_water_neg_03.mp4 similarity index 100% rename from exact1fps_B3/videos/pour_water_neg_03.mp4 rename to natural_video/videos/nat_128_frames/pour_water_neg_03.mp4 diff --git a/exact1fps_B3/videos/pour_water_neg_04.mp4 b/natural_video/videos/nat_128_frames/pour_water_neg_04.mp4 similarity index 100% rename from exact1fps_B3/videos/pour_water_neg_04.mp4 rename to natural_video/videos/nat_128_frames/pour_water_neg_04.mp4 diff --git a/exact1fps_B3/videos/pour_water_neg_05.mp4 b/natural_video/videos/nat_128_frames/pour_water_neg_05.mp4 similarity index 100% rename from exact1fps_B3/videos/pour_water_neg_05.mp4 rename to natural_video/videos/nat_128_frames/pour_water_neg_05.mp4 diff --git a/exact1fps_B3/videos/pour_water_pos_01.mp4 b/natural_video/videos/nat_128_frames/pour_water_pos_01.mp4 similarity index 100% rename from exact1fps_B3/videos/pour_water_pos_01.mp4 rename to natural_video/videos/nat_128_frames/pour_water_pos_01.mp4 diff --git a/exact1fps_B3/videos/pour_water_pos_02.mp4 b/natural_video/videos/nat_128_frames/pour_water_pos_02.mp4 similarity index 100% rename from exact1fps_B3/videos/pour_water_pos_02.mp4 rename to natural_video/videos/nat_128_frames/pour_water_pos_02.mp4 diff --git a/exact1fps_B3/videos/pour_water_pos_03.mp4 b/natural_video/videos/nat_128_frames/pour_water_pos_03.mp4 similarity index 100% rename from exact1fps_B3/videos/pour_water_pos_03.mp4 rename to natural_video/videos/nat_128_frames/pour_water_pos_03.mp4 diff --git a/exact1fps_B3/videos/pour_water_pos_04.mp4 b/natural_video/videos/nat_128_frames/pour_water_pos_04.mp4 similarity index 100% rename from exact1fps_B3/videos/pour_water_pos_04.mp4 rename to natural_video/videos/nat_128_frames/pour_water_pos_04.mp4 diff --git a/exact1fps_B3/videos/pour_water_pos_05.mp4 b/natural_video/videos/nat_128_frames/pour_water_pos_05.mp4 similarity index 100% rename from exact1fps_B3/videos/pour_water_pos_05.mp4 rename to natural_video/videos/nat_128_frames/pour_water_pos_05.mp4 diff --git a/exact1fps_B3/videos/rinse_X_neg_01.mp4 b/natural_video/videos/nat_128_frames/rinse_X_neg_01.mp4 similarity index 100% rename from exact1fps_B3/videos/rinse_X_neg_01.mp4 rename to natural_video/videos/nat_128_frames/rinse_X_neg_01.mp4 diff --git a/exact1fps_B3/videos/rinse_X_neg_02.mp4 b/natural_video/videos/nat_128_frames/rinse_X_neg_02.mp4 similarity index 100% rename from exact1fps_B3/videos/rinse_X_neg_02.mp4 rename to natural_video/videos/nat_128_frames/rinse_X_neg_02.mp4 diff --git a/exact1fps_B3/videos/rinse_X_neg_03.mp4 b/natural_video/videos/nat_128_frames/rinse_X_neg_03.mp4 similarity index 100% rename from exact1fps_B3/videos/rinse_X_neg_03.mp4 rename to natural_video/videos/nat_128_frames/rinse_X_neg_03.mp4 diff --git a/exact1fps_B3/videos/rinse_X_neg_04.mp4 b/natural_video/videos/nat_128_frames/rinse_X_neg_04.mp4 similarity index 100% rename from exact1fps_B3/videos/rinse_X_neg_04.mp4 rename to natural_video/videos/nat_128_frames/rinse_X_neg_04.mp4 diff --git a/exact1fps_B3/videos/rinse_X_neg_05.mp4 b/natural_video/videos/nat_128_frames/rinse_X_neg_05.mp4 similarity index 100% rename from exact1fps_B3/videos/rinse_X_neg_05.mp4 rename to natural_video/videos/nat_128_frames/rinse_X_neg_05.mp4 diff --git a/exact1fps_B3/videos/rinse_X_pos_01.mp4 b/natural_video/videos/nat_128_frames/rinse_X_pos_01.mp4 similarity index 100% rename from exact1fps_B3/videos/rinse_X_pos_01.mp4 rename to natural_video/videos/nat_128_frames/rinse_X_pos_01.mp4 diff --git a/exact1fps_B3/videos/rinse_X_pos_02.mp4 b/natural_video/videos/nat_128_frames/rinse_X_pos_02.mp4 similarity index 100% rename from exact1fps_B3/videos/rinse_X_pos_02.mp4 rename to natural_video/videos/nat_128_frames/rinse_X_pos_02.mp4 diff --git a/exact1fps_B3/videos/rinse_X_pos_03.mp4 b/natural_video/videos/nat_128_frames/rinse_X_pos_03.mp4 similarity index 100% rename from exact1fps_B3/videos/rinse_X_pos_03.mp4 rename to natural_video/videos/nat_128_frames/rinse_X_pos_03.mp4 diff --git a/exact1fps_B3/videos/rinse_X_pos_04.mp4 b/natural_video/videos/nat_128_frames/rinse_X_pos_04.mp4 similarity index 100% rename from exact1fps_B3/videos/rinse_X_pos_04.mp4 rename to natural_video/videos/nat_128_frames/rinse_X_pos_04.mp4 diff --git a/exact1fps_B3/videos/rinse_X_pos_05.mp4 b/natural_video/videos/nat_128_frames/rinse_X_pos_05.mp4 similarity index 100% rename from exact1fps_B3/videos/rinse_X_pos_05.mp4 rename to natural_video/videos/nat_128_frames/rinse_X_pos_05.mp4 diff --git a/exact1fps_B3/videos/turn_on_tap_neg_01.mp4 b/natural_video/videos/nat_128_frames/turn_on_tap_neg_01.mp4 similarity index 100% rename from exact1fps_B3/videos/turn_on_tap_neg_01.mp4 rename to natural_video/videos/nat_128_frames/turn_on_tap_neg_01.mp4 diff --git a/exact1fps_B3/videos/turn_on_tap_neg_02.mp4 b/natural_video/videos/nat_128_frames/turn_on_tap_neg_02.mp4 similarity index 100% rename from exact1fps_B3/videos/turn_on_tap_neg_02.mp4 rename to natural_video/videos/nat_128_frames/turn_on_tap_neg_02.mp4 diff --git a/exact1fps_B3/videos/turn_on_tap_neg_03.mp4 b/natural_video/videos/nat_128_frames/turn_on_tap_neg_03.mp4 similarity index 100% rename from exact1fps_B3/videos/turn_on_tap_neg_03.mp4 rename to natural_video/videos/nat_128_frames/turn_on_tap_neg_03.mp4 diff --git a/exact1fps_B3/videos/turn_on_tap_neg_04.mp4 b/natural_video/videos/nat_128_frames/turn_on_tap_neg_04.mp4 similarity index 100% rename from exact1fps_B3/videos/turn_on_tap_neg_04.mp4 rename to natural_video/videos/nat_128_frames/turn_on_tap_neg_04.mp4 diff --git a/exact1fps_B3/videos/turn_on_tap_neg_05.mp4 b/natural_video/videos/nat_128_frames/turn_on_tap_neg_05.mp4 similarity index 100% rename from exact1fps_B3/videos/turn_on_tap_neg_05.mp4 rename to natural_video/videos/nat_128_frames/turn_on_tap_neg_05.mp4 diff --git a/exact1fps_B3/videos/turn_on_tap_pos_01.mp4 b/natural_video/videos/nat_128_frames/turn_on_tap_pos_01.mp4 similarity index 100% rename from exact1fps_B3/videos/turn_on_tap_pos_01.mp4 rename to natural_video/videos/nat_128_frames/turn_on_tap_pos_01.mp4 diff --git a/exact1fps_B3/videos/turn_on_tap_pos_02.mp4 b/natural_video/videos/nat_128_frames/turn_on_tap_pos_02.mp4 similarity index 100% rename from exact1fps_B3/videos/turn_on_tap_pos_02.mp4 rename to natural_video/videos/nat_128_frames/turn_on_tap_pos_02.mp4 diff --git a/exact1fps_B3/videos/turn_on_tap_pos_03.mp4 b/natural_video/videos/nat_128_frames/turn_on_tap_pos_03.mp4 similarity index 100% rename from exact1fps_B3/videos/turn_on_tap_pos_03.mp4 rename to natural_video/videos/nat_128_frames/turn_on_tap_pos_03.mp4 diff --git a/exact1fps_B3/videos/turn_on_tap_pos_04.mp4 b/natural_video/videos/nat_128_frames/turn_on_tap_pos_04.mp4 similarity index 100% rename from exact1fps_B3/videos/turn_on_tap_pos_04.mp4 rename to natural_video/videos/nat_128_frames/turn_on_tap_pos_04.mp4 diff --git a/exact1fps_B3/videos/turn_on_tap_pos_05.mp4 b/natural_video/videos/nat_128_frames/turn_on_tap_pos_05.mp4 similarity index 100% rename from exact1fps_B3/videos/turn_on_tap_pos_05.mp4 rename to natural_video/videos/nat_128_frames/turn_on_tap_pos_05.mp4 diff --git a/exact1fps_B3/videos/wash_plate_neg_01.mp4 b/natural_video/videos/nat_128_frames/wash_plate_neg_01.mp4 similarity index 100% rename from exact1fps_B3/videos/wash_plate_neg_01.mp4 rename to natural_video/videos/nat_128_frames/wash_plate_neg_01.mp4 diff --git a/exact1fps_B3/videos/wash_plate_neg_02.mp4 b/natural_video/videos/nat_128_frames/wash_plate_neg_02.mp4 similarity index 100% rename from exact1fps_B3/videos/wash_plate_neg_02.mp4 rename to natural_video/videos/nat_128_frames/wash_plate_neg_02.mp4 diff --git a/exact1fps_B3/videos/wash_plate_neg_03.mp4 b/natural_video/videos/nat_128_frames/wash_plate_neg_03.mp4 similarity index 100% rename from exact1fps_B3/videos/wash_plate_neg_03.mp4 rename to natural_video/videos/nat_128_frames/wash_plate_neg_03.mp4 diff --git a/exact1fps_B3/videos/wash_plate_neg_04.mp4 b/natural_video/videos/nat_128_frames/wash_plate_neg_04.mp4 similarity index 100% rename from exact1fps_B3/videos/wash_plate_neg_04.mp4 rename to natural_video/videos/nat_128_frames/wash_plate_neg_04.mp4 diff --git a/exact1fps_B3/videos/wash_plate_neg_05.mp4 b/natural_video/videos/nat_128_frames/wash_plate_neg_05.mp4 similarity index 100% rename from exact1fps_B3/videos/wash_plate_neg_05.mp4 rename to natural_video/videos/nat_128_frames/wash_plate_neg_05.mp4 diff --git a/exact1fps_B3/videos/wash_plate_pos_01.mp4 b/natural_video/videos/nat_128_frames/wash_plate_pos_01.mp4 similarity index 100% rename from exact1fps_B3/videos/wash_plate_pos_01.mp4 rename to natural_video/videos/nat_128_frames/wash_plate_pos_01.mp4 diff --git a/exact1fps_B3/videos/wash_plate_pos_02.mp4 b/natural_video/videos/nat_128_frames/wash_plate_pos_02.mp4 similarity index 100% rename from exact1fps_B3/videos/wash_plate_pos_02.mp4 rename to natural_video/videos/nat_128_frames/wash_plate_pos_02.mp4 diff --git a/exact1fps_B3/videos/wash_plate_pos_03.mp4 b/natural_video/videos/nat_128_frames/wash_plate_pos_03.mp4 similarity index 100% rename from exact1fps_B3/videos/wash_plate_pos_03.mp4 rename to natural_video/videos/nat_128_frames/wash_plate_pos_03.mp4 diff --git a/exact1fps_B3/videos/wash_plate_pos_04.mp4 b/natural_video/videos/nat_128_frames/wash_plate_pos_04.mp4 similarity index 100% rename from exact1fps_B3/videos/wash_plate_pos_04.mp4 rename to natural_video/videos/nat_128_frames/wash_plate_pos_04.mp4 diff --git a/exact1fps_B3/videos/wash_plate_pos_05.mp4 b/natural_video/videos/nat_128_frames/wash_plate_pos_05.mp4 similarity index 100% rename from exact1fps_B3/videos/wash_plate_pos_05.mp4 rename to natural_video/videos/nat_128_frames/wash_plate_pos_05.mp4 diff --git a/exact1fps_B3/videos/wipe_surface_neg_01.mp4 b/natural_video/videos/nat_128_frames/wipe_surface_neg_01.mp4 similarity index 100% rename from exact1fps_B3/videos/wipe_surface_neg_01.mp4 rename to natural_video/videos/nat_128_frames/wipe_surface_neg_01.mp4 diff --git a/exact1fps_B3/videos/wipe_surface_neg_02.mp4 b/natural_video/videos/nat_128_frames/wipe_surface_neg_02.mp4 similarity index 100% rename from exact1fps_B3/videos/wipe_surface_neg_02.mp4 rename to natural_video/videos/nat_128_frames/wipe_surface_neg_02.mp4 diff --git a/exact1fps_B3/videos/wipe_surface_neg_03.mp4 b/natural_video/videos/nat_128_frames/wipe_surface_neg_03.mp4 similarity index 100% rename from exact1fps_B3/videos/wipe_surface_neg_03.mp4 rename to natural_video/videos/nat_128_frames/wipe_surface_neg_03.mp4 diff --git a/exact1fps_B3/videos/wipe_surface_neg_04.mp4 b/natural_video/videos/nat_128_frames/wipe_surface_neg_04.mp4 similarity index 100% rename from exact1fps_B3/videos/wipe_surface_neg_04.mp4 rename to natural_video/videos/nat_128_frames/wipe_surface_neg_04.mp4 diff --git a/exact1fps_B3/videos/wipe_surface_neg_05.mp4 b/natural_video/videos/nat_128_frames/wipe_surface_neg_05.mp4 similarity index 100% rename from exact1fps_B3/videos/wipe_surface_neg_05.mp4 rename to natural_video/videos/nat_128_frames/wipe_surface_neg_05.mp4 diff --git a/exact1fps_B3/videos/wipe_surface_pos_01.mp4 b/natural_video/videos/nat_128_frames/wipe_surface_pos_01.mp4 similarity index 100% rename from exact1fps_B3/videos/wipe_surface_pos_01.mp4 rename to natural_video/videos/nat_128_frames/wipe_surface_pos_01.mp4 diff --git a/exact1fps_B3/videos/wipe_surface_pos_02.mp4 b/natural_video/videos/nat_128_frames/wipe_surface_pos_02.mp4 similarity index 100% rename from exact1fps_B3/videos/wipe_surface_pos_02.mp4 rename to natural_video/videos/nat_128_frames/wipe_surface_pos_02.mp4 diff --git a/exact1fps_B3/videos/wipe_surface_pos_03.mp4 b/natural_video/videos/nat_128_frames/wipe_surface_pos_03.mp4 similarity index 100% rename from exact1fps_B3/videos/wipe_surface_pos_03.mp4 rename to natural_video/videos/nat_128_frames/wipe_surface_pos_03.mp4 diff --git a/exact1fps_B3/videos/wipe_surface_pos_04.mp4 b/natural_video/videos/nat_128_frames/wipe_surface_pos_04.mp4 similarity index 100% rename from exact1fps_B3/videos/wipe_surface_pos_04.mp4 rename to natural_video/videos/nat_128_frames/wipe_surface_pos_04.mp4 diff --git a/exact1fps_B3/videos/wipe_surface_pos_05.mp4 b/natural_video/videos/nat_128_frames/wipe_surface_pos_05.mp4 similarity index 100% rename from exact1fps_B3/videos/wipe_surface_pos_05.mp4 rename to natural_video/videos/nat_128_frames/wipe_surface_pos_05.mp4 diff --git a/exact1fps_B1/videos/clean_counter_neg_01.mp4 b/natural_video/videos/nat_16_frames/clean_counter_neg_01.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_neg_01.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_neg_01.mp4 diff --git a/exact1fps_B1/videos/clean_counter_neg_02.mp4 b/natural_video/videos/nat_16_frames/clean_counter_neg_02.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_neg_02.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_neg_02.mp4 diff --git a/exact1fps_B1/videos/clean_counter_neg_03.mp4 b/natural_video/videos/nat_16_frames/clean_counter_neg_03.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_neg_03.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_neg_03.mp4 diff --git a/exact1fps_B1/videos/clean_counter_neg_04.mp4 b/natural_video/videos/nat_16_frames/clean_counter_neg_04.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_neg_04.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_neg_04.mp4 diff --git a/exact1fps_B1/videos/clean_counter_neg_05.mp4 b/natural_video/videos/nat_16_frames/clean_counter_neg_05.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_neg_05.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_neg_05.mp4 diff --git a/exact1fps_B1/videos/clean_counter_neg_06.mp4 b/natural_video/videos/nat_16_frames/clean_counter_neg_06.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_neg_06.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_neg_06.mp4 diff --git a/exact1fps_B1/videos/clean_counter_neg_07.mp4 b/natural_video/videos/nat_16_frames/clean_counter_neg_07.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_neg_07.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_neg_07.mp4 diff --git a/exact1fps_B1/videos/clean_counter_neg_08.mp4 b/natural_video/videos/nat_16_frames/clean_counter_neg_08.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_neg_08.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_neg_08.mp4 diff --git a/exact1fps_B1/videos/clean_counter_neg_09.mp4 b/natural_video/videos/nat_16_frames/clean_counter_neg_09.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_neg_09.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_neg_09.mp4 diff --git a/exact1fps_B1/videos/clean_counter_neg_10.mp4 b/natural_video/videos/nat_16_frames/clean_counter_neg_10.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_neg_10.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_neg_10.mp4 diff --git a/exact1fps_B1/videos/clean_counter_pos_01.mp4 b/natural_video/videos/nat_16_frames/clean_counter_pos_01.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_pos_01.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_pos_01.mp4 diff --git a/exact1fps_B1/videos/clean_counter_pos_02.mp4 b/natural_video/videos/nat_16_frames/clean_counter_pos_02.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_pos_02.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_pos_02.mp4 diff --git a/exact1fps_B1/videos/clean_counter_pos_03.mp4 b/natural_video/videos/nat_16_frames/clean_counter_pos_03.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_pos_03.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_pos_03.mp4 diff --git a/exact1fps_B1/videos/clean_counter_pos_04.mp4 b/natural_video/videos/nat_16_frames/clean_counter_pos_04.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_pos_04.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_pos_04.mp4 diff --git a/exact1fps_B1/videos/clean_counter_pos_05.mp4 b/natural_video/videos/nat_16_frames/clean_counter_pos_05.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_pos_05.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_pos_05.mp4 diff --git a/exact1fps_B1/videos/clean_counter_pos_06.mp4 b/natural_video/videos/nat_16_frames/clean_counter_pos_06.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_pos_06.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_pos_06.mp4 diff --git a/exact1fps_B1/videos/clean_counter_pos_07.mp4 b/natural_video/videos/nat_16_frames/clean_counter_pos_07.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_pos_07.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_pos_07.mp4 diff --git a/exact1fps_B1/videos/clean_counter_pos_08.mp4 b/natural_video/videos/nat_16_frames/clean_counter_pos_08.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_pos_08.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_pos_08.mp4 diff --git a/exact1fps_B1/videos/clean_counter_pos_09.mp4 b/natural_video/videos/nat_16_frames/clean_counter_pos_09.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_pos_09.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_pos_09.mp4 diff --git a/exact1fps_B1/videos/clean_counter_pos_10.mp4 b/natural_video/videos/nat_16_frames/clean_counter_pos_10.mp4 similarity index 100% rename from exact1fps_B1/videos/clean_counter_pos_10.mp4 rename to natural_video/videos/nat_16_frames/clean_counter_pos_10.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_neg_01.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_neg_01.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_neg_01.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_neg_01.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_neg_02.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_neg_02.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_neg_02.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_neg_02.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_neg_03.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_neg_03.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_neg_03.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_neg_03.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_neg_04.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_neg_04.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_neg_04.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_neg_04.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_neg_05.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_neg_05.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_neg_05.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_neg_05.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_neg_06.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_neg_06.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_neg_06.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_neg_06.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_neg_07.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_neg_07.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_neg_07.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_neg_07.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_neg_08.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_neg_08.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_neg_08.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_neg_08.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_neg_09.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_neg_09.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_neg_09.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_neg_09.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_neg_10.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_neg_10.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_neg_10.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_neg_10.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_pos_01.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_pos_01.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_pos_01.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_pos_01.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_pos_02.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_pos_02.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_pos_02.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_pos_02.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_pos_03.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_pos_03.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_pos_03.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_pos_03.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_pos_04.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_pos_04.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_pos_04.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_pos_04.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_pos_05.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_pos_05.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_pos_05.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_pos_05.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_pos_06.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_pos_06.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_pos_06.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_pos_06.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_pos_07.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_pos_07.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_pos_07.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_pos_07.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_pos_08.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_pos_08.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_pos_08.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_pos_08.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_pos_09.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_pos_09.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_pos_09.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_pos_09.mp4 diff --git a/exact1fps_B1/videos/cut_nontomato_pos_10.mp4 b/natural_video/videos/nat_16_frames/cut_nontomato_pos_10.mp4 similarity index 100% rename from exact1fps_B1/videos/cut_nontomato_pos_10.mp4 rename to natural_video/videos/nat_16_frames/cut_nontomato_pos_10.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_01.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_01.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_01.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_01.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_02.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_02.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_02.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_02.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_03.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_03.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_03.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_03.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_04.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_04.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_04.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_04.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_05.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_05.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_05.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_05.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_06.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_06.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_06.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_06.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_07.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_07.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_07.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_07.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_08.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_08.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_08.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_08.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_09.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_09.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_09.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_09.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_10.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_10.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_10.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_10.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_11.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_11.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_11.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_11.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_12.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_12.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_12.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_12.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_13.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_13.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_13.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_13.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_14.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_14.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_14.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_14.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_15.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_15.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_15.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_15.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_16.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_16.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_16.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_16.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_17.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_17.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_17.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_17.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_neg_18.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_neg_18.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_neg_18.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_neg_18.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_01.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_01.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_01.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_01.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_02.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_02.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_02.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_02.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_03.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_03.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_03.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_03.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_04.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_04.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_04.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_04.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_05.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_05.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_05.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_05.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_06.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_06.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_06.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_06.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_07.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_07.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_07.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_07.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_08.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_08.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_08.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_08.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_09.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_09.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_09.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_09.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_10.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_10.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_10.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_10.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_11.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_11.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_11.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_11.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_12.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_12.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_12.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_12.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_13.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_13.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_13.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_13.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_14.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_14.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_14.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_14.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_15.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_15.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_15.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_15.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_16.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_16.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_16.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_16.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_17.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_17.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_17.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_17.mp4 diff --git a/exact1fps_B1/videos/open_cupboard_pos_18.mp4 b/natural_video/videos/nat_16_frames/open_cupboard_pos_18.mp4 similarity index 100% rename from exact1fps_B1/videos/open_cupboard_pos_18.mp4 rename to natural_video/videos/nat_16_frames/open_cupboard_pos_18.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_01.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_01.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_01.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_01.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_02.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_02.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_02.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_02.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_03.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_03.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_03.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_03.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_04.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_04.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_04.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_04.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_05.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_05.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_05.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_05.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_06.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_06.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_06.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_06.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_07.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_07.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_07.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_07.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_08.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_08.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_08.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_08.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_09.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_09.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_09.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_09.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_10.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_10.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_10.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_10.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_11.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_11.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_11.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_11.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_12.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_12.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_12.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_12.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_13.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_13.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_13.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_13.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_14.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_14.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_14.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_14.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_15.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_15.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_15.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_15.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_16.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_16.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_16.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_16.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_17.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_17.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_17.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_17.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_18.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_18.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_18.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_18.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_19.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_19.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_19.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_19.mp4 diff --git a/exact1fps_B1/videos/open_drawer_neg_20.mp4 b/natural_video/videos/nat_16_frames/open_drawer_neg_20.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_neg_20.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_neg_20.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_01.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_01.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_01.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_01.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_02.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_02.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_02.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_02.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_03.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_03.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_03.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_03.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_04.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_04.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_04.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_04.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_05.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_05.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_05.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_05.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_06.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_06.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_06.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_06.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_07.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_07.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_07.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_07.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_08.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_08.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_08.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_08.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_09.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_09.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_09.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_09.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_10.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_10.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_10.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_10.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_11.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_11.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_11.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_11.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_12.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_12.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_12.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_12.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_13.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_13.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_13.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_13.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_14.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_14.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_14.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_14.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_15.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_15.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_15.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_15.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_16.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_16.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_16.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_16.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_17.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_17.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_17.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_17.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_18.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_18.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_18.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_18.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_19.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_19.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_19.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_19.mp4 diff --git a/exact1fps_B1/videos/open_drawer_pos_20.mp4 b/natural_video/videos/nat_16_frames/open_drawer_pos_20.mp4 similarity index 100% rename from exact1fps_B1/videos/open_drawer_pos_20.mp4 rename to natural_video/videos/nat_16_frames/open_drawer_pos_20.mp4 diff --git a/exact1fps_B1/videos/open_fridge_neg_01.mp4 b/natural_video/videos/nat_16_frames/open_fridge_neg_01.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_neg_01.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_neg_01.mp4 diff --git a/exact1fps_B1/videos/open_fridge_neg_02.mp4 b/natural_video/videos/nat_16_frames/open_fridge_neg_02.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_neg_02.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_neg_02.mp4 diff --git a/exact1fps_B1/videos/open_fridge_neg_03.mp4 b/natural_video/videos/nat_16_frames/open_fridge_neg_03.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_neg_03.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_neg_03.mp4 diff --git a/exact1fps_B1/videos/open_fridge_neg_04.mp4 b/natural_video/videos/nat_16_frames/open_fridge_neg_04.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_neg_04.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_neg_04.mp4 diff --git a/exact1fps_B1/videos/open_fridge_neg_05.mp4 b/natural_video/videos/nat_16_frames/open_fridge_neg_05.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_neg_05.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_neg_05.mp4 diff --git a/exact1fps_B1/videos/open_fridge_neg_06.mp4 b/natural_video/videos/nat_16_frames/open_fridge_neg_06.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_neg_06.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_neg_06.mp4 diff --git a/exact1fps_B1/videos/open_fridge_neg_07.mp4 b/natural_video/videos/nat_16_frames/open_fridge_neg_07.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_neg_07.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_neg_07.mp4 diff --git a/exact1fps_B1/videos/open_fridge_neg_08.mp4 b/natural_video/videos/nat_16_frames/open_fridge_neg_08.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_neg_08.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_neg_08.mp4 diff --git a/exact1fps_B1/videos/open_fridge_neg_09.mp4 b/natural_video/videos/nat_16_frames/open_fridge_neg_09.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_neg_09.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_neg_09.mp4 diff --git a/exact1fps_B1/videos/open_fridge_neg_10.mp4 b/natural_video/videos/nat_16_frames/open_fridge_neg_10.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_neg_10.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_neg_10.mp4 diff --git a/exact1fps_B1/videos/open_fridge_pos_01.mp4 b/natural_video/videos/nat_16_frames/open_fridge_pos_01.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_pos_01.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_pos_01.mp4 diff --git a/exact1fps_B1/videos/open_fridge_pos_02.mp4 b/natural_video/videos/nat_16_frames/open_fridge_pos_02.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_pos_02.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_pos_02.mp4 diff --git a/exact1fps_B1/videos/open_fridge_pos_03.mp4 b/natural_video/videos/nat_16_frames/open_fridge_pos_03.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_pos_03.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_pos_03.mp4 diff --git a/exact1fps_B1/videos/open_fridge_pos_04.mp4 b/natural_video/videos/nat_16_frames/open_fridge_pos_04.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_pos_04.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_pos_04.mp4 diff --git a/exact1fps_B1/videos/open_fridge_pos_05.mp4 b/natural_video/videos/nat_16_frames/open_fridge_pos_05.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_pos_05.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_pos_05.mp4 diff --git a/exact1fps_B1/videos/open_fridge_pos_06.mp4 b/natural_video/videos/nat_16_frames/open_fridge_pos_06.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_pos_06.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_pos_06.mp4 diff --git a/exact1fps_B1/videos/open_fridge_pos_07.mp4 b/natural_video/videos/nat_16_frames/open_fridge_pos_07.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_pos_07.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_pos_07.mp4 diff --git a/exact1fps_B1/videos/open_fridge_pos_08.mp4 b/natural_video/videos/nat_16_frames/open_fridge_pos_08.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_pos_08.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_pos_08.mp4 diff --git a/exact1fps_B1/videos/open_fridge_pos_09.mp4 b/natural_video/videos/nat_16_frames/open_fridge_pos_09.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_pos_09.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_pos_09.mp4 diff --git a/exact1fps_B1/videos/open_fridge_pos_10.mp4 b/natural_video/videos/nat_16_frames/open_fridge_pos_10.mp4 similarity index 100% rename from exact1fps_B1/videos/open_fridge_pos_10.mp4 rename to natural_video/videos/nat_16_frames/open_fridge_pos_10.mp4 diff --git a/exact1fps_B1/videos/pour_water_neg_01.mp4 b/natural_video/videos/nat_16_frames/pour_water_neg_01.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_neg_01.mp4 rename to natural_video/videos/nat_16_frames/pour_water_neg_01.mp4 diff --git a/exact1fps_B1/videos/pour_water_neg_02.mp4 b/natural_video/videos/nat_16_frames/pour_water_neg_02.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_neg_02.mp4 rename to natural_video/videos/nat_16_frames/pour_water_neg_02.mp4 diff --git a/exact1fps_B1/videos/pour_water_neg_03.mp4 b/natural_video/videos/nat_16_frames/pour_water_neg_03.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_neg_03.mp4 rename to natural_video/videos/nat_16_frames/pour_water_neg_03.mp4 diff --git a/exact1fps_B1/videos/pour_water_neg_04.mp4 b/natural_video/videos/nat_16_frames/pour_water_neg_04.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_neg_04.mp4 rename to natural_video/videos/nat_16_frames/pour_water_neg_04.mp4 diff --git a/exact1fps_B1/videos/pour_water_neg_05.mp4 b/natural_video/videos/nat_16_frames/pour_water_neg_05.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_neg_05.mp4 rename to natural_video/videos/nat_16_frames/pour_water_neg_05.mp4 diff --git a/exact1fps_B1/videos/pour_water_neg_06.mp4 b/natural_video/videos/nat_16_frames/pour_water_neg_06.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_neg_06.mp4 rename to natural_video/videos/nat_16_frames/pour_water_neg_06.mp4 diff --git a/exact1fps_B1/videos/pour_water_neg_07.mp4 b/natural_video/videos/nat_16_frames/pour_water_neg_07.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_neg_07.mp4 rename to natural_video/videos/nat_16_frames/pour_water_neg_07.mp4 diff --git a/exact1fps_B1/videos/pour_water_neg_08.mp4 b/natural_video/videos/nat_16_frames/pour_water_neg_08.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_neg_08.mp4 rename to natural_video/videos/nat_16_frames/pour_water_neg_08.mp4 diff --git a/exact1fps_B1/videos/pour_water_neg_09.mp4 b/natural_video/videos/nat_16_frames/pour_water_neg_09.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_neg_09.mp4 rename to natural_video/videos/nat_16_frames/pour_water_neg_09.mp4 diff --git a/exact1fps_B1/videos/pour_water_neg_10.mp4 b/natural_video/videos/nat_16_frames/pour_water_neg_10.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_neg_10.mp4 rename to natural_video/videos/nat_16_frames/pour_water_neg_10.mp4 diff --git a/exact1fps_B1/videos/pour_water_pos_01.mp4 b/natural_video/videos/nat_16_frames/pour_water_pos_01.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_pos_01.mp4 rename to natural_video/videos/nat_16_frames/pour_water_pos_01.mp4 diff --git a/exact1fps_B1/videos/pour_water_pos_02.mp4 b/natural_video/videos/nat_16_frames/pour_water_pos_02.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_pos_02.mp4 rename to natural_video/videos/nat_16_frames/pour_water_pos_02.mp4 diff --git a/exact1fps_B1/videos/pour_water_pos_03.mp4 b/natural_video/videos/nat_16_frames/pour_water_pos_03.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_pos_03.mp4 rename to natural_video/videos/nat_16_frames/pour_water_pos_03.mp4 diff --git a/exact1fps_B1/videos/pour_water_pos_04.mp4 b/natural_video/videos/nat_16_frames/pour_water_pos_04.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_pos_04.mp4 rename to natural_video/videos/nat_16_frames/pour_water_pos_04.mp4 diff --git a/exact1fps_B1/videos/pour_water_pos_05.mp4 b/natural_video/videos/nat_16_frames/pour_water_pos_05.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_pos_05.mp4 rename to natural_video/videos/nat_16_frames/pour_water_pos_05.mp4 diff --git a/exact1fps_B1/videos/pour_water_pos_06.mp4 b/natural_video/videos/nat_16_frames/pour_water_pos_06.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_pos_06.mp4 rename to natural_video/videos/nat_16_frames/pour_water_pos_06.mp4 diff --git a/exact1fps_B1/videos/pour_water_pos_07.mp4 b/natural_video/videos/nat_16_frames/pour_water_pos_07.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_pos_07.mp4 rename to natural_video/videos/nat_16_frames/pour_water_pos_07.mp4 diff --git a/exact1fps_B1/videos/pour_water_pos_08.mp4 b/natural_video/videos/nat_16_frames/pour_water_pos_08.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_pos_08.mp4 rename to natural_video/videos/nat_16_frames/pour_water_pos_08.mp4 diff --git a/exact1fps_B1/videos/pour_water_pos_09.mp4 b/natural_video/videos/nat_16_frames/pour_water_pos_09.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_pos_09.mp4 rename to natural_video/videos/nat_16_frames/pour_water_pos_09.mp4 diff --git a/exact1fps_B1/videos/pour_water_pos_10.mp4 b/natural_video/videos/nat_16_frames/pour_water_pos_10.mp4 similarity index 100% rename from exact1fps_B1/videos/pour_water_pos_10.mp4 rename to natural_video/videos/nat_16_frames/pour_water_pos_10.mp4 diff --git a/exact1fps_B1/videos/rinse_X_neg_01.mp4 b/natural_video/videos/nat_16_frames/rinse_X_neg_01.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_neg_01.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_neg_01.mp4 diff --git a/exact1fps_B1/videos/rinse_X_neg_02.mp4 b/natural_video/videos/nat_16_frames/rinse_X_neg_02.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_neg_02.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_neg_02.mp4 diff --git a/exact1fps_B1/videos/rinse_X_neg_03.mp4 b/natural_video/videos/nat_16_frames/rinse_X_neg_03.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_neg_03.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_neg_03.mp4 diff --git a/exact1fps_B1/videos/rinse_X_neg_04.mp4 b/natural_video/videos/nat_16_frames/rinse_X_neg_04.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_neg_04.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_neg_04.mp4 diff --git a/exact1fps_B1/videos/rinse_X_neg_05.mp4 b/natural_video/videos/nat_16_frames/rinse_X_neg_05.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_neg_05.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_neg_05.mp4 diff --git a/exact1fps_B1/videos/rinse_X_neg_06.mp4 b/natural_video/videos/nat_16_frames/rinse_X_neg_06.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_neg_06.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_neg_06.mp4 diff --git a/exact1fps_B1/videos/rinse_X_neg_07.mp4 b/natural_video/videos/nat_16_frames/rinse_X_neg_07.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_neg_07.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_neg_07.mp4 diff --git a/exact1fps_B1/videos/rinse_X_neg_08.mp4 b/natural_video/videos/nat_16_frames/rinse_X_neg_08.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_neg_08.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_neg_08.mp4 diff --git a/exact1fps_B1/videos/rinse_X_neg_09.mp4 b/natural_video/videos/nat_16_frames/rinse_X_neg_09.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_neg_09.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_neg_09.mp4 diff --git a/exact1fps_B1/videos/rinse_X_neg_10.mp4 b/natural_video/videos/nat_16_frames/rinse_X_neg_10.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_neg_10.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_neg_10.mp4 diff --git a/exact1fps_B1/videos/rinse_X_pos_01.mp4 b/natural_video/videos/nat_16_frames/rinse_X_pos_01.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_pos_01.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_pos_01.mp4 diff --git a/exact1fps_B1/videos/rinse_X_pos_02.mp4 b/natural_video/videos/nat_16_frames/rinse_X_pos_02.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_pos_02.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_pos_02.mp4 diff --git a/exact1fps_B1/videos/rinse_X_pos_03.mp4 b/natural_video/videos/nat_16_frames/rinse_X_pos_03.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_pos_03.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_pos_03.mp4 diff --git a/exact1fps_B1/videos/rinse_X_pos_04.mp4 b/natural_video/videos/nat_16_frames/rinse_X_pos_04.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_pos_04.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_pos_04.mp4 diff --git a/exact1fps_B1/videos/rinse_X_pos_05.mp4 b/natural_video/videos/nat_16_frames/rinse_X_pos_05.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_pos_05.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_pos_05.mp4 diff --git a/exact1fps_B1/videos/rinse_X_pos_06.mp4 b/natural_video/videos/nat_16_frames/rinse_X_pos_06.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_pos_06.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_pos_06.mp4 diff --git a/exact1fps_B1/videos/rinse_X_pos_07.mp4 b/natural_video/videos/nat_16_frames/rinse_X_pos_07.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_pos_07.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_pos_07.mp4 diff --git a/exact1fps_B1/videos/rinse_X_pos_08.mp4 b/natural_video/videos/nat_16_frames/rinse_X_pos_08.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_pos_08.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_pos_08.mp4 diff --git a/exact1fps_B1/videos/rinse_X_pos_09.mp4 b/natural_video/videos/nat_16_frames/rinse_X_pos_09.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_pos_09.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_pos_09.mp4 diff --git a/exact1fps_B1/videos/rinse_X_pos_10.mp4 b/natural_video/videos/nat_16_frames/rinse_X_pos_10.mp4 similarity index 100% rename from exact1fps_B1/videos/rinse_X_pos_10.mp4 rename to natural_video/videos/nat_16_frames/rinse_X_pos_10.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_neg_01.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_neg_01.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_neg_01.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_neg_01.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_neg_02.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_neg_02.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_neg_02.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_neg_02.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_neg_03.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_neg_03.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_neg_03.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_neg_03.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_neg_04.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_neg_04.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_neg_04.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_neg_04.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_neg_05.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_neg_05.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_neg_05.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_neg_05.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_neg_06.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_neg_06.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_neg_06.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_neg_06.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_neg_07.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_neg_07.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_neg_07.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_neg_07.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_neg_08.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_neg_08.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_neg_08.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_neg_08.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_neg_09.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_neg_09.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_neg_09.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_neg_09.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_neg_10.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_neg_10.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_neg_10.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_neg_10.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_pos_01.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_pos_01.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_pos_01.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_pos_01.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_pos_02.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_pos_02.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_pos_02.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_pos_02.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_pos_03.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_pos_03.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_pos_03.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_pos_03.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_pos_04.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_pos_04.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_pos_04.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_pos_04.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_pos_05.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_pos_05.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_pos_05.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_pos_05.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_pos_06.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_pos_06.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_pos_06.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_pos_06.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_pos_07.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_pos_07.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_pos_07.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_pos_07.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_pos_08.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_pos_08.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_pos_08.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_pos_08.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_pos_09.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_pos_09.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_pos_09.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_pos_09.mp4 diff --git a/exact1fps_B1/videos/turn_on_tap_pos_10.mp4 b/natural_video/videos/nat_16_frames/turn_on_tap_pos_10.mp4 similarity index 100% rename from exact1fps_B1/videos/turn_on_tap_pos_10.mp4 rename to natural_video/videos/nat_16_frames/turn_on_tap_pos_10.mp4 diff --git a/exact1fps_B1/videos/wash_plate_neg_01.mp4 b/natural_video/videos/nat_16_frames/wash_plate_neg_01.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_neg_01.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_neg_01.mp4 diff --git a/exact1fps_B1/videos/wash_plate_neg_02.mp4 b/natural_video/videos/nat_16_frames/wash_plate_neg_02.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_neg_02.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_neg_02.mp4 diff --git a/exact1fps_B1/videos/wash_plate_neg_03.mp4 b/natural_video/videos/nat_16_frames/wash_plate_neg_03.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_neg_03.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_neg_03.mp4 diff --git a/exact1fps_B1/videos/wash_plate_neg_04.mp4 b/natural_video/videos/nat_16_frames/wash_plate_neg_04.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_neg_04.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_neg_04.mp4 diff --git a/exact1fps_B1/videos/wash_plate_neg_05.mp4 b/natural_video/videos/nat_16_frames/wash_plate_neg_05.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_neg_05.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_neg_05.mp4 diff --git a/exact1fps_B1/videos/wash_plate_neg_06.mp4 b/natural_video/videos/nat_16_frames/wash_plate_neg_06.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_neg_06.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_neg_06.mp4 diff --git a/exact1fps_B1/videos/wash_plate_neg_07.mp4 b/natural_video/videos/nat_16_frames/wash_plate_neg_07.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_neg_07.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_neg_07.mp4 diff --git a/exact1fps_B1/videos/wash_plate_neg_08.mp4 b/natural_video/videos/nat_16_frames/wash_plate_neg_08.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_neg_08.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_neg_08.mp4 diff --git a/exact1fps_B1/videos/wash_plate_neg_09.mp4 b/natural_video/videos/nat_16_frames/wash_plate_neg_09.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_neg_09.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_neg_09.mp4 diff --git a/exact1fps_B1/videos/wash_plate_neg_10.mp4 b/natural_video/videos/nat_16_frames/wash_plate_neg_10.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_neg_10.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_neg_10.mp4 diff --git a/exact1fps_B1/videos/wash_plate_pos_01.mp4 b/natural_video/videos/nat_16_frames/wash_plate_pos_01.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_pos_01.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_pos_01.mp4 diff --git a/exact1fps_B1/videos/wash_plate_pos_02.mp4 b/natural_video/videos/nat_16_frames/wash_plate_pos_02.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_pos_02.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_pos_02.mp4 diff --git a/exact1fps_B1/videos/wash_plate_pos_03.mp4 b/natural_video/videos/nat_16_frames/wash_plate_pos_03.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_pos_03.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_pos_03.mp4 diff --git a/exact1fps_B1/videos/wash_plate_pos_04.mp4 b/natural_video/videos/nat_16_frames/wash_plate_pos_04.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_pos_04.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_pos_04.mp4 diff --git a/exact1fps_B1/videos/wash_plate_pos_05.mp4 b/natural_video/videos/nat_16_frames/wash_plate_pos_05.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_pos_05.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_pos_05.mp4 diff --git a/exact1fps_B1/videos/wash_plate_pos_06.mp4 b/natural_video/videos/nat_16_frames/wash_plate_pos_06.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_pos_06.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_pos_06.mp4 diff --git a/exact1fps_B1/videos/wash_plate_pos_07.mp4 b/natural_video/videos/nat_16_frames/wash_plate_pos_07.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_pos_07.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_pos_07.mp4 diff --git a/exact1fps_B1/videos/wash_plate_pos_08.mp4 b/natural_video/videos/nat_16_frames/wash_plate_pos_08.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_pos_08.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_pos_08.mp4 diff --git a/exact1fps_B1/videos/wash_plate_pos_09.mp4 b/natural_video/videos/nat_16_frames/wash_plate_pos_09.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_pos_09.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_pos_09.mp4 diff --git a/exact1fps_B1/videos/wash_plate_pos_10.mp4 b/natural_video/videos/nat_16_frames/wash_plate_pos_10.mp4 similarity index 100% rename from exact1fps_B1/videos/wash_plate_pos_10.mp4 rename to natural_video/videos/nat_16_frames/wash_plate_pos_10.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_neg_01.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_neg_01.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_neg_01.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_neg_01.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_neg_02.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_neg_02.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_neg_02.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_neg_02.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_neg_03.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_neg_03.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_neg_03.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_neg_03.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_neg_04.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_neg_04.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_neg_04.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_neg_04.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_neg_05.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_neg_05.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_neg_05.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_neg_05.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_neg_06.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_neg_06.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_neg_06.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_neg_06.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_neg_07.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_neg_07.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_neg_07.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_neg_07.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_neg_08.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_neg_08.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_neg_08.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_neg_08.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_neg_09.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_neg_09.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_neg_09.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_neg_09.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_neg_10.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_neg_10.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_neg_10.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_neg_10.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_pos_01.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_pos_01.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_pos_01.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_pos_01.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_pos_02.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_pos_02.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_pos_02.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_pos_02.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_pos_03.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_pos_03.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_pos_03.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_pos_03.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_pos_04.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_pos_04.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_pos_04.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_pos_04.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_pos_05.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_pos_05.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_pos_05.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_pos_05.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_pos_06.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_pos_06.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_pos_06.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_pos_06.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_pos_07.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_pos_07.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_pos_07.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_pos_07.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_pos_08.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_pos_08.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_pos_08.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_pos_08.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_pos_09.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_pos_09.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_pos_09.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_pos_09.mp4 diff --git a/exact1fps_B1/videos/wipe_surface_pos_10.mp4 b/natural_video/videos/nat_16_frames/wipe_surface_pos_10.mp4 similarity index 100% rename from exact1fps_B1/videos/wipe_surface_pos_10.mp4 rename to natural_video/videos/nat_16_frames/wipe_surface_pos_10.mp4 diff --git a/exact1fps_B4/videos/clean_counter_neg_01.mp4 b/natural_video/videos/nat_512_frames/clean_counter_neg_01.mp4 similarity index 100% rename from exact1fps_B4/videos/clean_counter_neg_01.mp4 rename to natural_video/videos/nat_512_frames/clean_counter_neg_01.mp4 diff --git a/exact1fps_B4/videos/clean_counter_neg_02.mp4 b/natural_video/videos/nat_512_frames/clean_counter_neg_02.mp4 similarity index 100% rename from exact1fps_B4/videos/clean_counter_neg_02.mp4 rename to natural_video/videos/nat_512_frames/clean_counter_neg_02.mp4 diff --git a/exact1fps_B4/videos/clean_counter_neg_03.mp4 b/natural_video/videos/nat_512_frames/clean_counter_neg_03.mp4 similarity index 100% rename from exact1fps_B4/videos/clean_counter_neg_03.mp4 rename to natural_video/videos/nat_512_frames/clean_counter_neg_03.mp4 diff --git a/exact1fps_B4/videos/clean_counter_neg_04.mp4 b/natural_video/videos/nat_512_frames/clean_counter_neg_04.mp4 similarity index 100% rename from exact1fps_B4/videos/clean_counter_neg_04.mp4 rename to natural_video/videos/nat_512_frames/clean_counter_neg_04.mp4 diff --git a/exact1fps_B4/videos/clean_counter_neg_05.mp4 b/natural_video/videos/nat_512_frames/clean_counter_neg_05.mp4 similarity index 100% rename from exact1fps_B4/videos/clean_counter_neg_05.mp4 rename to natural_video/videos/nat_512_frames/clean_counter_neg_05.mp4 diff --git a/exact1fps_B4/videos/clean_counter_pos_01.mp4 b/natural_video/videos/nat_512_frames/clean_counter_pos_01.mp4 similarity index 100% rename from exact1fps_B4/videos/clean_counter_pos_01.mp4 rename to natural_video/videos/nat_512_frames/clean_counter_pos_01.mp4 diff --git a/exact1fps_B4/videos/clean_counter_pos_02.mp4 b/natural_video/videos/nat_512_frames/clean_counter_pos_02.mp4 similarity index 100% rename from exact1fps_B4/videos/clean_counter_pos_02.mp4 rename to natural_video/videos/nat_512_frames/clean_counter_pos_02.mp4 diff --git a/exact1fps_B4/videos/clean_counter_pos_03.mp4 b/natural_video/videos/nat_512_frames/clean_counter_pos_03.mp4 similarity index 100% rename from exact1fps_B4/videos/clean_counter_pos_03.mp4 rename to natural_video/videos/nat_512_frames/clean_counter_pos_03.mp4 diff --git a/exact1fps_B4/videos/clean_counter_pos_04.mp4 b/natural_video/videos/nat_512_frames/clean_counter_pos_04.mp4 similarity index 100% rename from exact1fps_B4/videos/clean_counter_pos_04.mp4 rename to natural_video/videos/nat_512_frames/clean_counter_pos_04.mp4 diff --git a/exact1fps_B4/videos/clean_counter_pos_05.mp4 b/natural_video/videos/nat_512_frames/clean_counter_pos_05.mp4 similarity index 100% rename from exact1fps_B4/videos/clean_counter_pos_05.mp4 rename to natural_video/videos/nat_512_frames/clean_counter_pos_05.mp4 diff --git a/exact1fps_B4/videos/cut_nontomato_neg_01.mp4 b/natural_video/videos/nat_512_frames/cut_nontomato_neg_01.mp4 similarity index 100% rename from exact1fps_B4/videos/cut_nontomato_neg_01.mp4 rename to natural_video/videos/nat_512_frames/cut_nontomato_neg_01.mp4 diff --git a/exact1fps_B4/videos/cut_nontomato_neg_02.mp4 b/natural_video/videos/nat_512_frames/cut_nontomato_neg_02.mp4 similarity index 100% rename from exact1fps_B4/videos/cut_nontomato_neg_02.mp4 rename to natural_video/videos/nat_512_frames/cut_nontomato_neg_02.mp4 diff --git a/exact1fps_B4/videos/cut_nontomato_neg_03.mp4 b/natural_video/videos/nat_512_frames/cut_nontomato_neg_03.mp4 similarity index 100% rename from exact1fps_B4/videos/cut_nontomato_neg_03.mp4 rename to natural_video/videos/nat_512_frames/cut_nontomato_neg_03.mp4 diff --git a/exact1fps_B4/videos/cut_nontomato_neg_04.mp4 b/natural_video/videos/nat_512_frames/cut_nontomato_neg_04.mp4 similarity index 100% rename from exact1fps_B4/videos/cut_nontomato_neg_04.mp4 rename to natural_video/videos/nat_512_frames/cut_nontomato_neg_04.mp4 diff --git a/exact1fps_B4/videos/cut_nontomato_neg_05.mp4 b/natural_video/videos/nat_512_frames/cut_nontomato_neg_05.mp4 similarity index 100% rename from exact1fps_B4/videos/cut_nontomato_neg_05.mp4 rename to natural_video/videos/nat_512_frames/cut_nontomato_neg_05.mp4 diff --git a/exact1fps_B4/videos/cut_nontomato_pos_01.mp4 b/natural_video/videos/nat_512_frames/cut_nontomato_pos_01.mp4 similarity index 100% rename from exact1fps_B4/videos/cut_nontomato_pos_01.mp4 rename to natural_video/videos/nat_512_frames/cut_nontomato_pos_01.mp4 diff --git a/exact1fps_B4/videos/cut_nontomato_pos_02.mp4 b/natural_video/videos/nat_512_frames/cut_nontomato_pos_02.mp4 similarity index 100% rename from exact1fps_B4/videos/cut_nontomato_pos_02.mp4 rename to natural_video/videos/nat_512_frames/cut_nontomato_pos_02.mp4 diff --git a/exact1fps_B4/videos/cut_nontomato_pos_03.mp4 b/natural_video/videos/nat_512_frames/cut_nontomato_pos_03.mp4 similarity index 100% rename from exact1fps_B4/videos/cut_nontomato_pos_03.mp4 rename to natural_video/videos/nat_512_frames/cut_nontomato_pos_03.mp4 diff --git a/exact1fps_B4/videos/cut_nontomato_pos_04.mp4 b/natural_video/videos/nat_512_frames/cut_nontomato_pos_04.mp4 similarity index 100% rename from exact1fps_B4/videos/cut_nontomato_pos_04.mp4 rename to natural_video/videos/nat_512_frames/cut_nontomato_pos_04.mp4 diff --git a/exact1fps_B4/videos/cut_nontomato_pos_05.mp4 b/natural_video/videos/nat_512_frames/cut_nontomato_pos_05.mp4 similarity index 100% rename from exact1fps_B4/videos/cut_nontomato_pos_05.mp4 rename to natural_video/videos/nat_512_frames/cut_nontomato_pos_05.mp4 diff --git a/exact1fps_B4/videos/open_cupboard_neg_01.mp4 b/natural_video/videos/nat_512_frames/open_cupboard_neg_01.mp4 similarity index 100% rename from exact1fps_B4/videos/open_cupboard_neg_01.mp4 rename to natural_video/videos/nat_512_frames/open_cupboard_neg_01.mp4 diff --git a/exact1fps_B4/videos/open_cupboard_neg_02.mp4 b/natural_video/videos/nat_512_frames/open_cupboard_neg_02.mp4 similarity index 100% rename from exact1fps_B4/videos/open_cupboard_neg_02.mp4 rename to natural_video/videos/nat_512_frames/open_cupboard_neg_02.mp4 diff --git a/exact1fps_B4/videos/open_cupboard_neg_03.mp4 b/natural_video/videos/nat_512_frames/open_cupboard_neg_03.mp4 similarity index 100% rename from exact1fps_B4/videos/open_cupboard_neg_03.mp4 rename to natural_video/videos/nat_512_frames/open_cupboard_neg_03.mp4 diff --git a/exact1fps_B4/videos/open_cupboard_neg_04.mp4 b/natural_video/videos/nat_512_frames/open_cupboard_neg_04.mp4 similarity index 100% rename from exact1fps_B4/videos/open_cupboard_neg_04.mp4 rename to natural_video/videos/nat_512_frames/open_cupboard_neg_04.mp4 diff --git a/exact1fps_B4/videos/open_cupboard_neg_05.mp4 b/natural_video/videos/nat_512_frames/open_cupboard_neg_05.mp4 similarity index 100% rename from exact1fps_B4/videos/open_cupboard_neg_05.mp4 rename to natural_video/videos/nat_512_frames/open_cupboard_neg_05.mp4 diff --git a/exact1fps_B4/videos/open_cupboard_pos_01.mp4 b/natural_video/videos/nat_512_frames/open_cupboard_pos_01.mp4 similarity index 100% rename from exact1fps_B4/videos/open_cupboard_pos_01.mp4 rename to natural_video/videos/nat_512_frames/open_cupboard_pos_01.mp4 diff --git a/exact1fps_B4/videos/open_cupboard_pos_02.mp4 b/natural_video/videos/nat_512_frames/open_cupboard_pos_02.mp4 similarity index 100% rename from exact1fps_B4/videos/open_cupboard_pos_02.mp4 rename to natural_video/videos/nat_512_frames/open_cupboard_pos_02.mp4 diff --git a/exact1fps_B4/videos/open_cupboard_pos_03.mp4 b/natural_video/videos/nat_512_frames/open_cupboard_pos_03.mp4 similarity index 100% rename from exact1fps_B4/videos/open_cupboard_pos_03.mp4 rename to natural_video/videos/nat_512_frames/open_cupboard_pos_03.mp4 diff --git a/exact1fps_B4/videos/open_cupboard_pos_04.mp4 b/natural_video/videos/nat_512_frames/open_cupboard_pos_04.mp4 similarity index 100% rename from exact1fps_B4/videos/open_cupboard_pos_04.mp4 rename to natural_video/videos/nat_512_frames/open_cupboard_pos_04.mp4 diff --git a/exact1fps_B4/videos/open_cupboard_pos_05.mp4 b/natural_video/videos/nat_512_frames/open_cupboard_pos_05.mp4 similarity index 100% rename from exact1fps_B4/videos/open_cupboard_pos_05.mp4 rename to natural_video/videos/nat_512_frames/open_cupboard_pos_05.mp4 diff --git a/exact1fps_B4/videos/open_drawer_neg_01.mp4 b/natural_video/videos/nat_512_frames/open_drawer_neg_01.mp4 similarity index 100% rename from exact1fps_B4/videos/open_drawer_neg_01.mp4 rename to natural_video/videos/nat_512_frames/open_drawer_neg_01.mp4 diff --git a/exact1fps_B4/videos/open_drawer_neg_02.mp4 b/natural_video/videos/nat_512_frames/open_drawer_neg_02.mp4 similarity index 100% rename from exact1fps_B4/videos/open_drawer_neg_02.mp4 rename to natural_video/videos/nat_512_frames/open_drawer_neg_02.mp4 diff --git a/exact1fps_B4/videos/open_drawer_neg_03.mp4 b/natural_video/videos/nat_512_frames/open_drawer_neg_03.mp4 similarity index 100% rename from exact1fps_B4/videos/open_drawer_neg_03.mp4 rename to natural_video/videos/nat_512_frames/open_drawer_neg_03.mp4 diff --git a/exact1fps_B4/videos/open_drawer_neg_04.mp4 b/natural_video/videos/nat_512_frames/open_drawer_neg_04.mp4 similarity index 100% rename from exact1fps_B4/videos/open_drawer_neg_04.mp4 rename to natural_video/videos/nat_512_frames/open_drawer_neg_04.mp4 diff --git a/exact1fps_B4/videos/open_drawer_neg_05.mp4 b/natural_video/videos/nat_512_frames/open_drawer_neg_05.mp4 similarity index 100% rename from exact1fps_B4/videos/open_drawer_neg_05.mp4 rename to natural_video/videos/nat_512_frames/open_drawer_neg_05.mp4 diff --git a/exact1fps_B4/videos/open_drawer_pos_01.mp4 b/natural_video/videos/nat_512_frames/open_drawer_pos_01.mp4 similarity index 100% rename from exact1fps_B4/videos/open_drawer_pos_01.mp4 rename to natural_video/videos/nat_512_frames/open_drawer_pos_01.mp4 diff --git a/exact1fps_B4/videos/open_drawer_pos_02.mp4 b/natural_video/videos/nat_512_frames/open_drawer_pos_02.mp4 similarity index 100% rename from exact1fps_B4/videos/open_drawer_pos_02.mp4 rename to natural_video/videos/nat_512_frames/open_drawer_pos_02.mp4 diff --git a/exact1fps_B4/videos/open_drawer_pos_03.mp4 b/natural_video/videos/nat_512_frames/open_drawer_pos_03.mp4 similarity index 100% rename from exact1fps_B4/videos/open_drawer_pos_03.mp4 rename to natural_video/videos/nat_512_frames/open_drawer_pos_03.mp4 diff --git a/exact1fps_B4/videos/open_drawer_pos_04.mp4 b/natural_video/videos/nat_512_frames/open_drawer_pos_04.mp4 similarity index 100% rename from exact1fps_B4/videos/open_drawer_pos_04.mp4 rename to natural_video/videos/nat_512_frames/open_drawer_pos_04.mp4 diff --git a/exact1fps_B4/videos/open_drawer_pos_05.mp4 b/natural_video/videos/nat_512_frames/open_drawer_pos_05.mp4 similarity index 100% rename from exact1fps_B4/videos/open_drawer_pos_05.mp4 rename to natural_video/videos/nat_512_frames/open_drawer_pos_05.mp4 diff --git a/exact1fps_B4/videos/open_fridge_neg_01.mp4 b/natural_video/videos/nat_512_frames/open_fridge_neg_01.mp4 similarity index 100% rename from exact1fps_B4/videos/open_fridge_neg_01.mp4 rename to natural_video/videos/nat_512_frames/open_fridge_neg_01.mp4 diff --git a/exact1fps_B4/videos/open_fridge_neg_02.mp4 b/natural_video/videos/nat_512_frames/open_fridge_neg_02.mp4 similarity index 100% rename from exact1fps_B4/videos/open_fridge_neg_02.mp4 rename to natural_video/videos/nat_512_frames/open_fridge_neg_02.mp4 diff --git a/exact1fps_B4/videos/open_fridge_neg_03.mp4 b/natural_video/videos/nat_512_frames/open_fridge_neg_03.mp4 similarity index 100% rename from exact1fps_B4/videos/open_fridge_neg_03.mp4 rename to natural_video/videos/nat_512_frames/open_fridge_neg_03.mp4 diff --git a/exact1fps_B4/videos/open_fridge_neg_04.mp4 b/natural_video/videos/nat_512_frames/open_fridge_neg_04.mp4 similarity index 100% rename from exact1fps_B4/videos/open_fridge_neg_04.mp4 rename to natural_video/videos/nat_512_frames/open_fridge_neg_04.mp4 diff --git a/exact1fps_B4/videos/open_fridge_neg_05.mp4 b/natural_video/videos/nat_512_frames/open_fridge_neg_05.mp4 similarity index 100% rename from exact1fps_B4/videos/open_fridge_neg_05.mp4 rename to natural_video/videos/nat_512_frames/open_fridge_neg_05.mp4 diff --git a/exact1fps_B4/videos/open_fridge_pos_01.mp4 b/natural_video/videos/nat_512_frames/open_fridge_pos_01.mp4 similarity index 100% rename from exact1fps_B4/videos/open_fridge_pos_01.mp4 rename to natural_video/videos/nat_512_frames/open_fridge_pos_01.mp4 diff --git a/exact1fps_B4/videos/open_fridge_pos_02.mp4 b/natural_video/videos/nat_512_frames/open_fridge_pos_02.mp4 similarity index 100% rename from exact1fps_B4/videos/open_fridge_pos_02.mp4 rename to natural_video/videos/nat_512_frames/open_fridge_pos_02.mp4 diff --git a/exact1fps_B4/videos/open_fridge_pos_03.mp4 b/natural_video/videos/nat_512_frames/open_fridge_pos_03.mp4 similarity index 100% rename from exact1fps_B4/videos/open_fridge_pos_03.mp4 rename to natural_video/videos/nat_512_frames/open_fridge_pos_03.mp4 diff --git a/exact1fps_B4/videos/open_fridge_pos_04.mp4 b/natural_video/videos/nat_512_frames/open_fridge_pos_04.mp4 similarity index 100% rename from exact1fps_B4/videos/open_fridge_pos_04.mp4 rename to natural_video/videos/nat_512_frames/open_fridge_pos_04.mp4 diff --git a/exact1fps_B4/videos/open_fridge_pos_05.mp4 b/natural_video/videos/nat_512_frames/open_fridge_pos_05.mp4 similarity index 100% rename from exact1fps_B4/videos/open_fridge_pos_05.mp4 rename to natural_video/videos/nat_512_frames/open_fridge_pos_05.mp4 diff --git a/exact1fps_B4/videos/pour_water_neg_01.mp4 b/natural_video/videos/nat_512_frames/pour_water_neg_01.mp4 similarity index 100% rename from exact1fps_B4/videos/pour_water_neg_01.mp4 rename to natural_video/videos/nat_512_frames/pour_water_neg_01.mp4 diff --git a/exact1fps_B4/videos/pour_water_neg_02.mp4 b/natural_video/videos/nat_512_frames/pour_water_neg_02.mp4 similarity index 100% rename from exact1fps_B4/videos/pour_water_neg_02.mp4 rename to natural_video/videos/nat_512_frames/pour_water_neg_02.mp4 diff --git a/exact1fps_B4/videos/pour_water_neg_03.mp4 b/natural_video/videos/nat_512_frames/pour_water_neg_03.mp4 similarity index 100% rename from exact1fps_B4/videos/pour_water_neg_03.mp4 rename to natural_video/videos/nat_512_frames/pour_water_neg_03.mp4 diff --git a/exact1fps_B4/videos/pour_water_neg_04.mp4 b/natural_video/videos/nat_512_frames/pour_water_neg_04.mp4 similarity index 100% rename from exact1fps_B4/videos/pour_water_neg_04.mp4 rename to natural_video/videos/nat_512_frames/pour_water_neg_04.mp4 diff --git a/exact1fps_B4/videos/pour_water_neg_05.mp4 b/natural_video/videos/nat_512_frames/pour_water_neg_05.mp4 similarity index 100% rename from exact1fps_B4/videos/pour_water_neg_05.mp4 rename to natural_video/videos/nat_512_frames/pour_water_neg_05.mp4 diff --git a/exact1fps_B4/videos/pour_water_pos_01.mp4 b/natural_video/videos/nat_512_frames/pour_water_pos_01.mp4 similarity index 100% rename from exact1fps_B4/videos/pour_water_pos_01.mp4 rename to natural_video/videos/nat_512_frames/pour_water_pos_01.mp4 diff --git a/exact1fps_B4/videos/pour_water_pos_02.mp4 b/natural_video/videos/nat_512_frames/pour_water_pos_02.mp4 similarity index 100% rename from exact1fps_B4/videos/pour_water_pos_02.mp4 rename to natural_video/videos/nat_512_frames/pour_water_pos_02.mp4 diff --git a/exact1fps_B4/videos/pour_water_pos_03.mp4 b/natural_video/videos/nat_512_frames/pour_water_pos_03.mp4 similarity index 100% rename from exact1fps_B4/videos/pour_water_pos_03.mp4 rename to natural_video/videos/nat_512_frames/pour_water_pos_03.mp4 diff --git a/exact1fps_B4/videos/pour_water_pos_04.mp4 b/natural_video/videos/nat_512_frames/pour_water_pos_04.mp4 similarity index 100% rename from exact1fps_B4/videos/pour_water_pos_04.mp4 rename to natural_video/videos/nat_512_frames/pour_water_pos_04.mp4 diff --git a/exact1fps_B4/videos/pour_water_pos_05.mp4 b/natural_video/videos/nat_512_frames/pour_water_pos_05.mp4 similarity index 100% rename from exact1fps_B4/videos/pour_water_pos_05.mp4 rename to natural_video/videos/nat_512_frames/pour_water_pos_05.mp4 diff --git a/exact1fps_B4/videos/rinse_X_neg_01.mp4 b/natural_video/videos/nat_512_frames/rinse_X_neg_01.mp4 similarity index 100% rename from exact1fps_B4/videos/rinse_X_neg_01.mp4 rename to natural_video/videos/nat_512_frames/rinse_X_neg_01.mp4 diff --git a/exact1fps_B4/videos/rinse_X_neg_02.mp4 b/natural_video/videos/nat_512_frames/rinse_X_neg_02.mp4 similarity index 100% rename from exact1fps_B4/videos/rinse_X_neg_02.mp4 rename to natural_video/videos/nat_512_frames/rinse_X_neg_02.mp4 diff --git a/exact1fps_B4/videos/rinse_X_neg_03.mp4 b/natural_video/videos/nat_512_frames/rinse_X_neg_03.mp4 similarity index 100% rename from exact1fps_B4/videos/rinse_X_neg_03.mp4 rename to natural_video/videos/nat_512_frames/rinse_X_neg_03.mp4 diff --git a/exact1fps_B4/videos/rinse_X_neg_04.mp4 b/natural_video/videos/nat_512_frames/rinse_X_neg_04.mp4 similarity index 100% rename from exact1fps_B4/videos/rinse_X_neg_04.mp4 rename to natural_video/videos/nat_512_frames/rinse_X_neg_04.mp4 diff --git a/exact1fps_B4/videos/rinse_X_neg_05.mp4 b/natural_video/videos/nat_512_frames/rinse_X_neg_05.mp4 similarity index 100% rename from exact1fps_B4/videos/rinse_X_neg_05.mp4 rename to natural_video/videos/nat_512_frames/rinse_X_neg_05.mp4 diff --git a/exact1fps_B4/videos/rinse_X_pos_01.mp4 b/natural_video/videos/nat_512_frames/rinse_X_pos_01.mp4 similarity index 100% rename from exact1fps_B4/videos/rinse_X_pos_01.mp4 rename to natural_video/videos/nat_512_frames/rinse_X_pos_01.mp4 diff --git a/exact1fps_B4/videos/rinse_X_pos_02.mp4 b/natural_video/videos/nat_512_frames/rinse_X_pos_02.mp4 similarity index 100% rename from exact1fps_B4/videos/rinse_X_pos_02.mp4 rename to natural_video/videos/nat_512_frames/rinse_X_pos_02.mp4 diff --git a/exact1fps_B4/videos/rinse_X_pos_03.mp4 b/natural_video/videos/nat_512_frames/rinse_X_pos_03.mp4 similarity index 100% rename from exact1fps_B4/videos/rinse_X_pos_03.mp4 rename to natural_video/videos/nat_512_frames/rinse_X_pos_03.mp4 diff --git a/exact1fps_B4/videos/rinse_X_pos_04.mp4 b/natural_video/videos/nat_512_frames/rinse_X_pos_04.mp4 similarity index 100% rename from exact1fps_B4/videos/rinse_X_pos_04.mp4 rename to natural_video/videos/nat_512_frames/rinse_X_pos_04.mp4 diff --git a/exact1fps_B4/videos/rinse_X_pos_05.mp4 b/natural_video/videos/nat_512_frames/rinse_X_pos_05.mp4 similarity index 100% rename from exact1fps_B4/videos/rinse_X_pos_05.mp4 rename to natural_video/videos/nat_512_frames/rinse_X_pos_05.mp4 diff --git a/exact1fps_B4/videos/turn_on_tap_neg_01.mp4 b/natural_video/videos/nat_512_frames/turn_on_tap_neg_01.mp4 similarity index 100% rename from exact1fps_B4/videos/turn_on_tap_neg_01.mp4 rename to natural_video/videos/nat_512_frames/turn_on_tap_neg_01.mp4 diff --git a/exact1fps_B4/videos/turn_on_tap_neg_02.mp4 b/natural_video/videos/nat_512_frames/turn_on_tap_neg_02.mp4 similarity index 100% rename from exact1fps_B4/videos/turn_on_tap_neg_02.mp4 rename to natural_video/videos/nat_512_frames/turn_on_tap_neg_02.mp4 diff --git a/exact1fps_B4/videos/turn_on_tap_neg_03.mp4 b/natural_video/videos/nat_512_frames/turn_on_tap_neg_03.mp4 similarity index 100% rename from exact1fps_B4/videos/turn_on_tap_neg_03.mp4 rename to natural_video/videos/nat_512_frames/turn_on_tap_neg_03.mp4 diff --git a/exact1fps_B4/videos/turn_on_tap_neg_04.mp4 b/natural_video/videos/nat_512_frames/turn_on_tap_neg_04.mp4 similarity index 100% rename from exact1fps_B4/videos/turn_on_tap_neg_04.mp4 rename to natural_video/videos/nat_512_frames/turn_on_tap_neg_04.mp4 diff --git a/exact1fps_B4/videos/turn_on_tap_neg_05.mp4 b/natural_video/videos/nat_512_frames/turn_on_tap_neg_05.mp4 similarity index 100% rename from exact1fps_B4/videos/turn_on_tap_neg_05.mp4 rename to natural_video/videos/nat_512_frames/turn_on_tap_neg_05.mp4 diff --git a/exact1fps_B4/videos/turn_on_tap_pos_01.mp4 b/natural_video/videos/nat_512_frames/turn_on_tap_pos_01.mp4 similarity index 100% rename from exact1fps_B4/videos/turn_on_tap_pos_01.mp4 rename to natural_video/videos/nat_512_frames/turn_on_tap_pos_01.mp4 diff --git a/exact1fps_B4/videos/turn_on_tap_pos_02.mp4 b/natural_video/videos/nat_512_frames/turn_on_tap_pos_02.mp4 similarity index 100% rename from exact1fps_B4/videos/turn_on_tap_pos_02.mp4 rename to natural_video/videos/nat_512_frames/turn_on_tap_pos_02.mp4 diff --git a/exact1fps_B4/videos/turn_on_tap_pos_03.mp4 b/natural_video/videos/nat_512_frames/turn_on_tap_pos_03.mp4 similarity index 100% rename from exact1fps_B4/videos/turn_on_tap_pos_03.mp4 rename to natural_video/videos/nat_512_frames/turn_on_tap_pos_03.mp4 diff --git a/exact1fps_B4/videos/turn_on_tap_pos_04.mp4 b/natural_video/videos/nat_512_frames/turn_on_tap_pos_04.mp4 similarity index 100% rename from exact1fps_B4/videos/turn_on_tap_pos_04.mp4 rename to natural_video/videos/nat_512_frames/turn_on_tap_pos_04.mp4 diff --git a/exact1fps_B4/videos/turn_on_tap_pos_05.mp4 b/natural_video/videos/nat_512_frames/turn_on_tap_pos_05.mp4 similarity index 100% rename from exact1fps_B4/videos/turn_on_tap_pos_05.mp4 rename to natural_video/videos/nat_512_frames/turn_on_tap_pos_05.mp4 diff --git a/exact1fps_B4/videos/wash_plate_neg_01.mp4 b/natural_video/videos/nat_512_frames/wash_plate_neg_01.mp4 similarity index 100% rename from exact1fps_B4/videos/wash_plate_neg_01.mp4 rename to natural_video/videos/nat_512_frames/wash_plate_neg_01.mp4 diff --git a/exact1fps_B4/videos/wash_plate_neg_02.mp4 b/natural_video/videos/nat_512_frames/wash_plate_neg_02.mp4 similarity index 100% rename from exact1fps_B4/videos/wash_plate_neg_02.mp4 rename to natural_video/videos/nat_512_frames/wash_plate_neg_02.mp4 diff --git a/exact1fps_B4/videos/wash_plate_neg_03.mp4 b/natural_video/videos/nat_512_frames/wash_plate_neg_03.mp4 similarity index 100% rename from exact1fps_B4/videos/wash_plate_neg_03.mp4 rename to natural_video/videos/nat_512_frames/wash_plate_neg_03.mp4 diff --git a/exact1fps_B4/videos/wash_plate_neg_04.mp4 b/natural_video/videos/nat_512_frames/wash_plate_neg_04.mp4 similarity index 100% rename from exact1fps_B4/videos/wash_plate_neg_04.mp4 rename to natural_video/videos/nat_512_frames/wash_plate_neg_04.mp4 diff --git a/exact1fps_B4/videos/wash_plate_neg_05.mp4 b/natural_video/videos/nat_512_frames/wash_plate_neg_05.mp4 similarity index 100% rename from exact1fps_B4/videos/wash_plate_neg_05.mp4 rename to natural_video/videos/nat_512_frames/wash_plate_neg_05.mp4 diff --git a/exact1fps_B4/videos/wash_plate_pos_01.mp4 b/natural_video/videos/nat_512_frames/wash_plate_pos_01.mp4 similarity index 100% rename from exact1fps_B4/videos/wash_plate_pos_01.mp4 rename to natural_video/videos/nat_512_frames/wash_plate_pos_01.mp4 diff --git a/exact1fps_B4/videos/wash_plate_pos_02.mp4 b/natural_video/videos/nat_512_frames/wash_plate_pos_02.mp4 similarity index 100% rename from exact1fps_B4/videos/wash_plate_pos_02.mp4 rename to natural_video/videos/nat_512_frames/wash_plate_pos_02.mp4 diff --git a/exact1fps_B4/videos/wash_plate_pos_03.mp4 b/natural_video/videos/nat_512_frames/wash_plate_pos_03.mp4 similarity index 100% rename from exact1fps_B4/videos/wash_plate_pos_03.mp4 rename to natural_video/videos/nat_512_frames/wash_plate_pos_03.mp4 diff --git a/exact1fps_B4/videos/wash_plate_pos_04.mp4 b/natural_video/videos/nat_512_frames/wash_plate_pos_04.mp4 similarity index 100% rename from exact1fps_B4/videos/wash_plate_pos_04.mp4 rename to natural_video/videos/nat_512_frames/wash_plate_pos_04.mp4 diff --git a/exact1fps_B4/videos/wash_plate_pos_05.mp4 b/natural_video/videos/nat_512_frames/wash_plate_pos_05.mp4 similarity index 100% rename from exact1fps_B4/videos/wash_plate_pos_05.mp4 rename to natural_video/videos/nat_512_frames/wash_plate_pos_05.mp4 diff --git a/exact1fps_B4/videos/wipe_surface_neg_01.mp4 b/natural_video/videos/nat_512_frames/wipe_surface_neg_01.mp4 similarity index 100% rename from exact1fps_B4/videos/wipe_surface_neg_01.mp4 rename to natural_video/videos/nat_512_frames/wipe_surface_neg_01.mp4 diff --git a/exact1fps_B4/videos/wipe_surface_neg_02.mp4 b/natural_video/videos/nat_512_frames/wipe_surface_neg_02.mp4 similarity index 100% rename from exact1fps_B4/videos/wipe_surface_neg_02.mp4 rename to natural_video/videos/nat_512_frames/wipe_surface_neg_02.mp4 diff --git a/exact1fps_B4/videos/wipe_surface_neg_03.mp4 b/natural_video/videos/nat_512_frames/wipe_surface_neg_03.mp4 similarity index 100% rename from exact1fps_B4/videos/wipe_surface_neg_03.mp4 rename to natural_video/videos/nat_512_frames/wipe_surface_neg_03.mp4 diff --git a/exact1fps_B4/videos/wipe_surface_neg_04.mp4 b/natural_video/videos/nat_512_frames/wipe_surface_neg_04.mp4 similarity index 100% rename from exact1fps_B4/videos/wipe_surface_neg_04.mp4 rename to natural_video/videos/nat_512_frames/wipe_surface_neg_04.mp4 diff --git a/exact1fps_B4/videos/wipe_surface_neg_05.mp4 b/natural_video/videos/nat_512_frames/wipe_surface_neg_05.mp4 similarity index 100% rename from exact1fps_B4/videos/wipe_surface_neg_05.mp4 rename to natural_video/videos/nat_512_frames/wipe_surface_neg_05.mp4 diff --git a/exact1fps_B4/videos/wipe_surface_pos_01.mp4 b/natural_video/videos/nat_512_frames/wipe_surface_pos_01.mp4 similarity index 100% rename from exact1fps_B4/videos/wipe_surface_pos_01.mp4 rename to natural_video/videos/nat_512_frames/wipe_surface_pos_01.mp4 diff --git a/exact1fps_B4/videos/wipe_surface_pos_02.mp4 b/natural_video/videos/nat_512_frames/wipe_surface_pos_02.mp4 similarity index 100% rename from exact1fps_B4/videos/wipe_surface_pos_02.mp4 rename to natural_video/videos/nat_512_frames/wipe_surface_pos_02.mp4 diff --git a/exact1fps_B4/videos/wipe_surface_pos_03.mp4 b/natural_video/videos/nat_512_frames/wipe_surface_pos_03.mp4 similarity index 100% rename from exact1fps_B4/videos/wipe_surface_pos_03.mp4 rename to natural_video/videos/nat_512_frames/wipe_surface_pos_03.mp4 diff --git a/exact1fps_B4/videos/wipe_surface_pos_04.mp4 b/natural_video/videos/nat_512_frames/wipe_surface_pos_04.mp4 similarity index 100% rename from exact1fps_B4/videos/wipe_surface_pos_04.mp4 rename to natural_video/videos/nat_512_frames/wipe_surface_pos_04.mp4 diff --git a/exact1fps_B4/videos/wipe_surface_pos_05.mp4 b/natural_video/videos/nat_512_frames/wipe_surface_pos_05.mp4 similarity index 100% rename from exact1fps_B4/videos/wipe_surface_pos_05.mp4 rename to natural_video/videos/nat_512_frames/wipe_surface_pos_05.mp4 diff --git a/exact1fps_B2/videos/clean_counter_neg_01.mp4 b/natural_video/videos/nat_64_frames/clean_counter_neg_01.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_neg_01.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_neg_01.mp4 diff --git a/exact1fps_B2/videos/clean_counter_neg_02.mp4 b/natural_video/videos/nat_64_frames/clean_counter_neg_02.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_neg_02.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_neg_02.mp4 diff --git a/exact1fps_B2/videos/clean_counter_neg_03.mp4 b/natural_video/videos/nat_64_frames/clean_counter_neg_03.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_neg_03.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_neg_03.mp4 diff --git a/exact1fps_B2/videos/clean_counter_neg_04.mp4 b/natural_video/videos/nat_64_frames/clean_counter_neg_04.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_neg_04.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_neg_04.mp4 diff --git a/exact1fps_B2/videos/clean_counter_neg_05.mp4 b/natural_video/videos/nat_64_frames/clean_counter_neg_05.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_neg_05.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_neg_05.mp4 diff --git a/exact1fps_B2/videos/clean_counter_neg_06.mp4 b/natural_video/videos/nat_64_frames/clean_counter_neg_06.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_neg_06.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_neg_06.mp4 diff --git a/exact1fps_B2/videos/clean_counter_neg_07.mp4 b/natural_video/videos/nat_64_frames/clean_counter_neg_07.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_neg_07.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_neg_07.mp4 diff --git a/exact1fps_B2/videos/clean_counter_neg_08.mp4 b/natural_video/videos/nat_64_frames/clean_counter_neg_08.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_neg_08.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_neg_08.mp4 diff --git a/exact1fps_B2/videos/clean_counter_neg_09.mp4 b/natural_video/videos/nat_64_frames/clean_counter_neg_09.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_neg_09.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_neg_09.mp4 diff --git a/exact1fps_B2/videos/clean_counter_neg_10.mp4 b/natural_video/videos/nat_64_frames/clean_counter_neg_10.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_neg_10.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_neg_10.mp4 diff --git a/exact1fps_B2/videos/clean_counter_pos_01.mp4 b/natural_video/videos/nat_64_frames/clean_counter_pos_01.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_pos_01.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_pos_01.mp4 diff --git a/exact1fps_B2/videos/clean_counter_pos_02.mp4 b/natural_video/videos/nat_64_frames/clean_counter_pos_02.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_pos_02.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_pos_02.mp4 diff --git a/exact1fps_B2/videos/clean_counter_pos_03.mp4 b/natural_video/videos/nat_64_frames/clean_counter_pos_03.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_pos_03.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_pos_03.mp4 diff --git a/exact1fps_B2/videos/clean_counter_pos_04.mp4 b/natural_video/videos/nat_64_frames/clean_counter_pos_04.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_pos_04.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_pos_04.mp4 diff --git a/exact1fps_B2/videos/clean_counter_pos_05.mp4 b/natural_video/videos/nat_64_frames/clean_counter_pos_05.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_pos_05.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_pos_05.mp4 diff --git a/exact1fps_B2/videos/clean_counter_pos_06.mp4 b/natural_video/videos/nat_64_frames/clean_counter_pos_06.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_pos_06.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_pos_06.mp4 diff --git a/exact1fps_B2/videos/clean_counter_pos_07.mp4 b/natural_video/videos/nat_64_frames/clean_counter_pos_07.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_pos_07.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_pos_07.mp4 diff --git a/exact1fps_B2/videos/clean_counter_pos_08.mp4 b/natural_video/videos/nat_64_frames/clean_counter_pos_08.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_pos_08.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_pos_08.mp4 diff --git a/exact1fps_B2/videos/clean_counter_pos_09.mp4 b/natural_video/videos/nat_64_frames/clean_counter_pos_09.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_pos_09.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_pos_09.mp4 diff --git a/exact1fps_B2/videos/clean_counter_pos_10.mp4 b/natural_video/videos/nat_64_frames/clean_counter_pos_10.mp4 similarity index 100% rename from exact1fps_B2/videos/clean_counter_pos_10.mp4 rename to natural_video/videos/nat_64_frames/clean_counter_pos_10.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_neg_01.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_neg_01.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_neg_01.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_neg_01.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_neg_02.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_neg_02.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_neg_02.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_neg_02.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_neg_03.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_neg_03.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_neg_03.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_neg_03.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_neg_04.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_neg_04.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_neg_04.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_neg_04.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_neg_05.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_neg_05.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_neg_05.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_neg_05.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_neg_06.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_neg_06.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_neg_06.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_neg_06.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_neg_07.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_neg_07.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_neg_07.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_neg_07.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_neg_08.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_neg_08.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_neg_08.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_neg_08.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_neg_09.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_neg_09.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_neg_09.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_neg_09.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_neg_10.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_neg_10.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_neg_10.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_neg_10.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_pos_01.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_pos_01.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_pos_01.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_pos_01.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_pos_02.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_pos_02.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_pos_02.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_pos_02.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_pos_03.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_pos_03.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_pos_03.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_pos_03.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_pos_04.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_pos_04.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_pos_04.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_pos_04.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_pos_05.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_pos_05.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_pos_05.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_pos_05.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_pos_06.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_pos_06.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_pos_06.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_pos_06.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_pos_07.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_pos_07.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_pos_07.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_pos_07.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_pos_08.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_pos_08.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_pos_08.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_pos_08.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_pos_09.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_pos_09.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_pos_09.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_pos_09.mp4 diff --git a/exact1fps_B2/videos/cut_nontomato_pos_10.mp4 b/natural_video/videos/nat_64_frames/cut_nontomato_pos_10.mp4 similarity index 100% rename from exact1fps_B2/videos/cut_nontomato_pos_10.mp4 rename to natural_video/videos/nat_64_frames/cut_nontomato_pos_10.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_01.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_01.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_01.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_01.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_02.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_02.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_02.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_02.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_03.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_03.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_03.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_03.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_04.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_04.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_04.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_04.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_05.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_05.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_05.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_05.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_06.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_06.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_06.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_06.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_07.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_07.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_07.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_07.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_08.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_08.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_08.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_08.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_09.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_09.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_09.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_09.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_10.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_10.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_10.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_10.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_11.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_11.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_11.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_11.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_12.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_12.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_12.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_12.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_13.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_13.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_13.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_13.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_14.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_14.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_14.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_14.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_15.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_15.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_15.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_15.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_16.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_16.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_16.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_16.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_17.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_17.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_17.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_17.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_neg_18.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_neg_18.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_neg_18.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_neg_18.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_01.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_01.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_01.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_01.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_02.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_02.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_02.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_02.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_03.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_03.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_03.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_03.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_04.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_04.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_04.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_04.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_05.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_05.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_05.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_05.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_06.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_06.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_06.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_06.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_07.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_07.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_07.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_07.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_08.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_08.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_08.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_08.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_09.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_09.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_09.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_09.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_10.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_10.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_10.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_10.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_11.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_11.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_11.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_11.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_12.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_12.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_12.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_12.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_13.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_13.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_13.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_13.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_14.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_14.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_14.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_14.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_15.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_15.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_15.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_15.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_16.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_16.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_16.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_16.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_17.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_17.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_17.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_17.mp4 diff --git a/exact1fps_B2/videos/open_cupboard_pos_18.mp4 b/natural_video/videos/nat_64_frames/open_cupboard_pos_18.mp4 similarity index 100% rename from exact1fps_B2/videos/open_cupboard_pos_18.mp4 rename to natural_video/videos/nat_64_frames/open_cupboard_pos_18.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_01.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_01.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_01.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_01.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_02.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_02.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_02.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_02.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_03.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_03.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_03.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_03.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_04.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_04.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_04.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_04.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_05.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_05.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_05.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_05.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_06.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_06.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_06.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_06.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_07.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_07.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_07.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_07.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_08.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_08.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_08.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_08.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_09.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_09.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_09.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_09.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_10.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_10.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_10.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_10.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_11.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_11.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_11.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_11.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_12.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_12.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_12.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_12.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_13.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_13.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_13.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_13.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_14.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_14.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_14.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_14.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_15.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_15.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_15.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_15.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_16.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_16.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_16.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_16.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_17.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_17.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_17.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_17.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_18.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_18.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_18.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_18.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_19.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_19.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_19.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_19.mp4 diff --git a/exact1fps_B2/videos/open_drawer_neg_20.mp4 b/natural_video/videos/nat_64_frames/open_drawer_neg_20.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_neg_20.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_neg_20.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_01.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_01.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_01.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_01.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_02.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_02.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_02.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_02.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_03.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_03.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_03.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_03.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_04.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_04.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_04.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_04.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_05.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_05.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_05.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_05.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_06.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_06.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_06.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_06.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_07.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_07.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_07.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_07.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_08.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_08.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_08.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_08.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_09.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_09.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_09.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_09.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_10.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_10.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_10.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_10.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_11.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_11.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_11.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_11.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_12.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_12.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_12.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_12.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_13.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_13.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_13.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_13.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_14.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_14.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_14.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_14.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_15.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_15.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_15.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_15.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_16.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_16.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_16.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_16.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_17.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_17.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_17.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_17.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_18.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_18.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_18.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_18.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_19.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_19.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_19.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_19.mp4 diff --git a/exact1fps_B2/videos/open_drawer_pos_20.mp4 b/natural_video/videos/nat_64_frames/open_drawer_pos_20.mp4 similarity index 100% rename from exact1fps_B2/videos/open_drawer_pos_20.mp4 rename to natural_video/videos/nat_64_frames/open_drawer_pos_20.mp4 diff --git a/exact1fps_B2/videos/open_fridge_neg_01.mp4 b/natural_video/videos/nat_64_frames/open_fridge_neg_01.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_neg_01.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_neg_01.mp4 diff --git a/exact1fps_B2/videos/open_fridge_neg_02.mp4 b/natural_video/videos/nat_64_frames/open_fridge_neg_02.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_neg_02.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_neg_02.mp4 diff --git a/exact1fps_B2/videos/open_fridge_neg_03.mp4 b/natural_video/videos/nat_64_frames/open_fridge_neg_03.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_neg_03.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_neg_03.mp4 diff --git a/exact1fps_B2/videos/open_fridge_neg_04.mp4 b/natural_video/videos/nat_64_frames/open_fridge_neg_04.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_neg_04.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_neg_04.mp4 diff --git a/exact1fps_B2/videos/open_fridge_neg_05.mp4 b/natural_video/videos/nat_64_frames/open_fridge_neg_05.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_neg_05.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_neg_05.mp4 diff --git a/exact1fps_B2/videos/open_fridge_neg_06.mp4 b/natural_video/videos/nat_64_frames/open_fridge_neg_06.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_neg_06.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_neg_06.mp4 diff --git a/exact1fps_B2/videos/open_fridge_neg_07.mp4 b/natural_video/videos/nat_64_frames/open_fridge_neg_07.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_neg_07.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_neg_07.mp4 diff --git a/exact1fps_B2/videos/open_fridge_neg_08.mp4 b/natural_video/videos/nat_64_frames/open_fridge_neg_08.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_neg_08.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_neg_08.mp4 diff --git a/exact1fps_B2/videos/open_fridge_neg_09.mp4 b/natural_video/videos/nat_64_frames/open_fridge_neg_09.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_neg_09.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_neg_09.mp4 diff --git a/exact1fps_B2/videos/open_fridge_neg_10.mp4 b/natural_video/videos/nat_64_frames/open_fridge_neg_10.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_neg_10.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_neg_10.mp4 diff --git a/exact1fps_B2/videos/open_fridge_pos_01.mp4 b/natural_video/videos/nat_64_frames/open_fridge_pos_01.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_pos_01.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_pos_01.mp4 diff --git a/exact1fps_B2/videos/open_fridge_pos_02.mp4 b/natural_video/videos/nat_64_frames/open_fridge_pos_02.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_pos_02.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_pos_02.mp4 diff --git a/exact1fps_B2/videos/open_fridge_pos_03.mp4 b/natural_video/videos/nat_64_frames/open_fridge_pos_03.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_pos_03.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_pos_03.mp4 diff --git a/exact1fps_B2/videos/open_fridge_pos_04.mp4 b/natural_video/videos/nat_64_frames/open_fridge_pos_04.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_pos_04.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_pos_04.mp4 diff --git a/exact1fps_B2/videos/open_fridge_pos_05.mp4 b/natural_video/videos/nat_64_frames/open_fridge_pos_05.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_pos_05.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_pos_05.mp4 diff --git a/exact1fps_B2/videos/open_fridge_pos_06.mp4 b/natural_video/videos/nat_64_frames/open_fridge_pos_06.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_pos_06.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_pos_06.mp4 diff --git a/exact1fps_B2/videos/open_fridge_pos_07.mp4 b/natural_video/videos/nat_64_frames/open_fridge_pos_07.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_pos_07.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_pos_07.mp4 diff --git a/exact1fps_B2/videos/open_fridge_pos_08.mp4 b/natural_video/videos/nat_64_frames/open_fridge_pos_08.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_pos_08.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_pos_08.mp4 diff --git a/exact1fps_B2/videos/open_fridge_pos_09.mp4 b/natural_video/videos/nat_64_frames/open_fridge_pos_09.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_pos_09.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_pos_09.mp4 diff --git a/exact1fps_B2/videos/open_fridge_pos_10.mp4 b/natural_video/videos/nat_64_frames/open_fridge_pos_10.mp4 similarity index 100% rename from exact1fps_B2/videos/open_fridge_pos_10.mp4 rename to natural_video/videos/nat_64_frames/open_fridge_pos_10.mp4 diff --git a/exact1fps_B2/videos/pour_water_neg_01.mp4 b/natural_video/videos/nat_64_frames/pour_water_neg_01.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_neg_01.mp4 rename to natural_video/videos/nat_64_frames/pour_water_neg_01.mp4 diff --git a/exact1fps_B2/videos/pour_water_neg_02.mp4 b/natural_video/videos/nat_64_frames/pour_water_neg_02.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_neg_02.mp4 rename to natural_video/videos/nat_64_frames/pour_water_neg_02.mp4 diff --git a/exact1fps_B2/videos/pour_water_neg_03.mp4 b/natural_video/videos/nat_64_frames/pour_water_neg_03.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_neg_03.mp4 rename to natural_video/videos/nat_64_frames/pour_water_neg_03.mp4 diff --git a/exact1fps_B2/videos/pour_water_neg_04.mp4 b/natural_video/videos/nat_64_frames/pour_water_neg_04.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_neg_04.mp4 rename to natural_video/videos/nat_64_frames/pour_water_neg_04.mp4 diff --git a/exact1fps_B2/videos/pour_water_neg_05.mp4 b/natural_video/videos/nat_64_frames/pour_water_neg_05.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_neg_05.mp4 rename to natural_video/videos/nat_64_frames/pour_water_neg_05.mp4 diff --git a/exact1fps_B2/videos/pour_water_neg_06.mp4 b/natural_video/videos/nat_64_frames/pour_water_neg_06.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_neg_06.mp4 rename to natural_video/videos/nat_64_frames/pour_water_neg_06.mp4 diff --git a/exact1fps_B2/videos/pour_water_neg_07.mp4 b/natural_video/videos/nat_64_frames/pour_water_neg_07.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_neg_07.mp4 rename to natural_video/videos/nat_64_frames/pour_water_neg_07.mp4 diff --git a/exact1fps_B2/videos/pour_water_neg_08.mp4 b/natural_video/videos/nat_64_frames/pour_water_neg_08.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_neg_08.mp4 rename to natural_video/videos/nat_64_frames/pour_water_neg_08.mp4 diff --git a/exact1fps_B2/videos/pour_water_neg_09.mp4 b/natural_video/videos/nat_64_frames/pour_water_neg_09.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_neg_09.mp4 rename to natural_video/videos/nat_64_frames/pour_water_neg_09.mp4 diff --git a/exact1fps_B2/videos/pour_water_neg_10.mp4 b/natural_video/videos/nat_64_frames/pour_water_neg_10.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_neg_10.mp4 rename to natural_video/videos/nat_64_frames/pour_water_neg_10.mp4 diff --git a/exact1fps_B2/videos/pour_water_pos_01.mp4 b/natural_video/videos/nat_64_frames/pour_water_pos_01.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_pos_01.mp4 rename to natural_video/videos/nat_64_frames/pour_water_pos_01.mp4 diff --git a/exact1fps_B2/videos/pour_water_pos_02.mp4 b/natural_video/videos/nat_64_frames/pour_water_pos_02.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_pos_02.mp4 rename to natural_video/videos/nat_64_frames/pour_water_pos_02.mp4 diff --git a/exact1fps_B2/videos/pour_water_pos_03.mp4 b/natural_video/videos/nat_64_frames/pour_water_pos_03.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_pos_03.mp4 rename to natural_video/videos/nat_64_frames/pour_water_pos_03.mp4 diff --git a/exact1fps_B2/videos/pour_water_pos_04.mp4 b/natural_video/videos/nat_64_frames/pour_water_pos_04.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_pos_04.mp4 rename to natural_video/videos/nat_64_frames/pour_water_pos_04.mp4 diff --git a/exact1fps_B2/videos/pour_water_pos_05.mp4 b/natural_video/videos/nat_64_frames/pour_water_pos_05.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_pos_05.mp4 rename to natural_video/videos/nat_64_frames/pour_water_pos_05.mp4 diff --git a/exact1fps_B2/videos/pour_water_pos_06.mp4 b/natural_video/videos/nat_64_frames/pour_water_pos_06.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_pos_06.mp4 rename to natural_video/videos/nat_64_frames/pour_water_pos_06.mp4 diff --git a/exact1fps_B2/videos/pour_water_pos_07.mp4 b/natural_video/videos/nat_64_frames/pour_water_pos_07.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_pos_07.mp4 rename to natural_video/videos/nat_64_frames/pour_water_pos_07.mp4 diff --git a/exact1fps_B2/videos/pour_water_pos_08.mp4 b/natural_video/videos/nat_64_frames/pour_water_pos_08.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_pos_08.mp4 rename to natural_video/videos/nat_64_frames/pour_water_pos_08.mp4 diff --git a/exact1fps_B2/videos/pour_water_pos_09.mp4 b/natural_video/videos/nat_64_frames/pour_water_pos_09.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_pos_09.mp4 rename to natural_video/videos/nat_64_frames/pour_water_pos_09.mp4 diff --git a/exact1fps_B2/videos/pour_water_pos_10.mp4 b/natural_video/videos/nat_64_frames/pour_water_pos_10.mp4 similarity index 100% rename from exact1fps_B2/videos/pour_water_pos_10.mp4 rename to natural_video/videos/nat_64_frames/pour_water_pos_10.mp4 diff --git a/exact1fps_B2/videos/rinse_X_neg_01.mp4 b/natural_video/videos/nat_64_frames/rinse_X_neg_01.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_neg_01.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_neg_01.mp4 diff --git a/exact1fps_B2/videos/rinse_X_neg_02.mp4 b/natural_video/videos/nat_64_frames/rinse_X_neg_02.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_neg_02.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_neg_02.mp4 diff --git a/exact1fps_B2/videos/rinse_X_neg_03.mp4 b/natural_video/videos/nat_64_frames/rinse_X_neg_03.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_neg_03.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_neg_03.mp4 diff --git a/exact1fps_B2/videos/rinse_X_neg_04.mp4 b/natural_video/videos/nat_64_frames/rinse_X_neg_04.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_neg_04.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_neg_04.mp4 diff --git a/exact1fps_B2/videos/rinse_X_neg_05.mp4 b/natural_video/videos/nat_64_frames/rinse_X_neg_05.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_neg_05.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_neg_05.mp4 diff --git a/exact1fps_B2/videos/rinse_X_neg_06.mp4 b/natural_video/videos/nat_64_frames/rinse_X_neg_06.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_neg_06.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_neg_06.mp4 diff --git a/exact1fps_B2/videos/rinse_X_neg_07.mp4 b/natural_video/videos/nat_64_frames/rinse_X_neg_07.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_neg_07.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_neg_07.mp4 diff --git a/exact1fps_B2/videos/rinse_X_neg_08.mp4 b/natural_video/videos/nat_64_frames/rinse_X_neg_08.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_neg_08.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_neg_08.mp4 diff --git a/exact1fps_B2/videos/rinse_X_neg_09.mp4 b/natural_video/videos/nat_64_frames/rinse_X_neg_09.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_neg_09.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_neg_09.mp4 diff --git a/exact1fps_B2/videos/rinse_X_neg_10.mp4 b/natural_video/videos/nat_64_frames/rinse_X_neg_10.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_neg_10.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_neg_10.mp4 diff --git a/exact1fps_B2/videos/rinse_X_pos_01.mp4 b/natural_video/videos/nat_64_frames/rinse_X_pos_01.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_pos_01.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_pos_01.mp4 diff --git a/exact1fps_B2/videos/rinse_X_pos_02.mp4 b/natural_video/videos/nat_64_frames/rinse_X_pos_02.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_pos_02.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_pos_02.mp4 diff --git a/exact1fps_B2/videos/rinse_X_pos_03.mp4 b/natural_video/videos/nat_64_frames/rinse_X_pos_03.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_pos_03.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_pos_03.mp4 diff --git a/exact1fps_B2/videos/rinse_X_pos_04.mp4 b/natural_video/videos/nat_64_frames/rinse_X_pos_04.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_pos_04.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_pos_04.mp4 diff --git a/exact1fps_B2/videos/rinse_X_pos_05.mp4 b/natural_video/videos/nat_64_frames/rinse_X_pos_05.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_pos_05.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_pos_05.mp4 diff --git a/exact1fps_B2/videos/rinse_X_pos_06.mp4 b/natural_video/videos/nat_64_frames/rinse_X_pos_06.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_pos_06.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_pos_06.mp4 diff --git a/exact1fps_B2/videos/rinse_X_pos_07.mp4 b/natural_video/videos/nat_64_frames/rinse_X_pos_07.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_pos_07.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_pos_07.mp4 diff --git a/exact1fps_B2/videos/rinse_X_pos_08.mp4 b/natural_video/videos/nat_64_frames/rinse_X_pos_08.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_pos_08.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_pos_08.mp4 diff --git a/exact1fps_B2/videos/rinse_X_pos_09.mp4 b/natural_video/videos/nat_64_frames/rinse_X_pos_09.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_pos_09.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_pos_09.mp4 diff --git a/exact1fps_B2/videos/rinse_X_pos_10.mp4 b/natural_video/videos/nat_64_frames/rinse_X_pos_10.mp4 similarity index 100% rename from exact1fps_B2/videos/rinse_X_pos_10.mp4 rename to natural_video/videos/nat_64_frames/rinse_X_pos_10.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_neg_01.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_neg_01.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_neg_01.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_neg_01.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_neg_02.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_neg_02.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_neg_02.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_neg_02.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_neg_03.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_neg_03.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_neg_03.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_neg_03.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_neg_04.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_neg_04.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_neg_04.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_neg_04.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_neg_05.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_neg_05.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_neg_05.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_neg_05.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_neg_06.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_neg_06.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_neg_06.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_neg_06.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_neg_07.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_neg_07.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_neg_07.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_neg_07.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_neg_08.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_neg_08.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_neg_08.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_neg_08.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_neg_09.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_neg_09.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_neg_09.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_neg_09.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_neg_10.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_neg_10.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_neg_10.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_neg_10.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_pos_01.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_pos_01.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_pos_01.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_pos_01.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_pos_02.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_pos_02.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_pos_02.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_pos_02.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_pos_03.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_pos_03.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_pos_03.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_pos_03.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_pos_04.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_pos_04.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_pos_04.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_pos_04.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_pos_05.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_pos_05.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_pos_05.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_pos_05.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_pos_06.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_pos_06.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_pos_06.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_pos_06.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_pos_07.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_pos_07.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_pos_07.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_pos_07.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_pos_08.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_pos_08.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_pos_08.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_pos_08.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_pos_09.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_pos_09.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_pos_09.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_pos_09.mp4 diff --git a/exact1fps_B2/videos/turn_on_tap_pos_10.mp4 b/natural_video/videos/nat_64_frames/turn_on_tap_pos_10.mp4 similarity index 100% rename from exact1fps_B2/videos/turn_on_tap_pos_10.mp4 rename to natural_video/videos/nat_64_frames/turn_on_tap_pos_10.mp4 diff --git a/exact1fps_B2/videos/wash_plate_neg_01.mp4 b/natural_video/videos/nat_64_frames/wash_plate_neg_01.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_neg_01.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_neg_01.mp4 diff --git a/exact1fps_B2/videos/wash_plate_neg_02.mp4 b/natural_video/videos/nat_64_frames/wash_plate_neg_02.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_neg_02.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_neg_02.mp4 diff --git a/exact1fps_B2/videos/wash_plate_neg_03.mp4 b/natural_video/videos/nat_64_frames/wash_plate_neg_03.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_neg_03.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_neg_03.mp4 diff --git a/exact1fps_B2/videos/wash_plate_neg_04.mp4 b/natural_video/videos/nat_64_frames/wash_plate_neg_04.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_neg_04.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_neg_04.mp4 diff --git a/exact1fps_B2/videos/wash_plate_neg_05.mp4 b/natural_video/videos/nat_64_frames/wash_plate_neg_05.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_neg_05.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_neg_05.mp4 diff --git a/exact1fps_B2/videos/wash_plate_neg_06.mp4 b/natural_video/videos/nat_64_frames/wash_plate_neg_06.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_neg_06.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_neg_06.mp4 diff --git a/exact1fps_B2/videos/wash_plate_neg_07.mp4 b/natural_video/videos/nat_64_frames/wash_plate_neg_07.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_neg_07.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_neg_07.mp4 diff --git a/exact1fps_B2/videos/wash_plate_neg_08.mp4 b/natural_video/videos/nat_64_frames/wash_plate_neg_08.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_neg_08.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_neg_08.mp4 diff --git a/exact1fps_B2/videos/wash_plate_neg_09.mp4 b/natural_video/videos/nat_64_frames/wash_plate_neg_09.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_neg_09.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_neg_09.mp4 diff --git a/exact1fps_B2/videos/wash_plate_neg_10.mp4 b/natural_video/videos/nat_64_frames/wash_plate_neg_10.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_neg_10.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_neg_10.mp4 diff --git a/exact1fps_B2/videos/wash_plate_pos_01.mp4 b/natural_video/videos/nat_64_frames/wash_plate_pos_01.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_pos_01.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_pos_01.mp4 diff --git a/exact1fps_B2/videos/wash_plate_pos_02.mp4 b/natural_video/videos/nat_64_frames/wash_plate_pos_02.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_pos_02.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_pos_02.mp4 diff --git a/exact1fps_B2/videos/wash_plate_pos_03.mp4 b/natural_video/videos/nat_64_frames/wash_plate_pos_03.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_pos_03.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_pos_03.mp4 diff --git a/exact1fps_B2/videos/wash_plate_pos_04.mp4 b/natural_video/videos/nat_64_frames/wash_plate_pos_04.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_pos_04.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_pos_04.mp4 diff --git a/exact1fps_B2/videos/wash_plate_pos_05.mp4 b/natural_video/videos/nat_64_frames/wash_plate_pos_05.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_pos_05.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_pos_05.mp4 diff --git a/exact1fps_B2/videos/wash_plate_pos_06.mp4 b/natural_video/videos/nat_64_frames/wash_plate_pos_06.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_pos_06.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_pos_06.mp4 diff --git a/exact1fps_B2/videos/wash_plate_pos_07.mp4 b/natural_video/videos/nat_64_frames/wash_plate_pos_07.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_pos_07.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_pos_07.mp4 diff --git a/exact1fps_B2/videos/wash_plate_pos_08.mp4 b/natural_video/videos/nat_64_frames/wash_plate_pos_08.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_pos_08.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_pos_08.mp4 diff --git a/exact1fps_B2/videos/wash_plate_pos_09.mp4 b/natural_video/videos/nat_64_frames/wash_plate_pos_09.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_pos_09.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_pos_09.mp4 diff --git a/exact1fps_B2/videos/wash_plate_pos_10.mp4 b/natural_video/videos/nat_64_frames/wash_plate_pos_10.mp4 similarity index 100% rename from exact1fps_B2/videos/wash_plate_pos_10.mp4 rename to natural_video/videos/nat_64_frames/wash_plate_pos_10.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_neg_01.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_neg_01.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_neg_01.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_neg_01.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_neg_02.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_neg_02.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_neg_02.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_neg_02.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_neg_03.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_neg_03.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_neg_03.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_neg_03.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_neg_04.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_neg_04.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_neg_04.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_neg_04.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_neg_05.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_neg_05.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_neg_05.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_neg_05.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_neg_06.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_neg_06.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_neg_06.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_neg_06.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_neg_07.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_neg_07.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_neg_07.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_neg_07.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_neg_08.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_neg_08.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_neg_08.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_neg_08.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_neg_09.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_neg_09.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_neg_09.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_neg_09.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_neg_10.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_neg_10.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_neg_10.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_neg_10.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_pos_01.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_pos_01.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_pos_01.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_pos_01.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_pos_02.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_pos_02.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_pos_02.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_pos_02.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_pos_03.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_pos_03.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_pos_03.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_pos_03.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_pos_04.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_pos_04.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_pos_04.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_pos_04.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_pos_05.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_pos_05.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_pos_05.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_pos_05.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_pos_06.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_pos_06.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_pos_06.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_pos_06.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_pos_07.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_pos_07.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_pos_07.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_pos_07.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_pos_08.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_pos_08.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_pos_08.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_pos_08.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_pos_09.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_pos_09.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_pos_09.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_pos_09.mp4 diff --git a/exact1fps_B2/videos/wipe_surface_pos_10.mp4 b/natural_video/videos/nat_64_frames/wipe_surface_pos_10.mp4 similarity index 100% rename from exact1fps_B2/videos/wipe_surface_pos_10.mp4 rename to natural_video/videos/nat_64_frames/wipe_surface_pos_10.mp4 diff --git a/exact1fps_short/videos/clean_counter_neg_01.mp4 b/natural_video/videos/nat_8_frames/clean_counter_neg_01.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_neg_01.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_neg_01.mp4 diff --git a/exact1fps_short/videos/clean_counter_neg_02.mp4 b/natural_video/videos/nat_8_frames/clean_counter_neg_02.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_neg_02.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_neg_02.mp4 diff --git a/exact1fps_short/videos/clean_counter_neg_03.mp4 b/natural_video/videos/nat_8_frames/clean_counter_neg_03.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_neg_03.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_neg_03.mp4 diff --git a/exact1fps_short/videos/clean_counter_neg_04.mp4 b/natural_video/videos/nat_8_frames/clean_counter_neg_04.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_neg_04.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_neg_04.mp4 diff --git a/exact1fps_short/videos/clean_counter_neg_05.mp4 b/natural_video/videos/nat_8_frames/clean_counter_neg_05.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_neg_05.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_neg_05.mp4 diff --git a/exact1fps_short/videos/clean_counter_neg_06.mp4 b/natural_video/videos/nat_8_frames/clean_counter_neg_06.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_neg_06.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_neg_06.mp4 diff --git a/exact1fps_short/videos/clean_counter_neg_07.mp4 b/natural_video/videos/nat_8_frames/clean_counter_neg_07.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_neg_07.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_neg_07.mp4 diff --git a/exact1fps_short/videos/clean_counter_neg_08.mp4 b/natural_video/videos/nat_8_frames/clean_counter_neg_08.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_neg_08.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_neg_08.mp4 diff --git a/exact1fps_short/videos/clean_counter_neg_09.mp4 b/natural_video/videos/nat_8_frames/clean_counter_neg_09.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_neg_09.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_neg_09.mp4 diff --git a/exact1fps_short/videos/clean_counter_neg_10.mp4 b/natural_video/videos/nat_8_frames/clean_counter_neg_10.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_neg_10.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_neg_10.mp4 diff --git a/exact1fps_short/videos/clean_counter_pos_01.mp4 b/natural_video/videos/nat_8_frames/clean_counter_pos_01.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_pos_01.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_pos_01.mp4 diff --git a/exact1fps_short/videos/clean_counter_pos_02.mp4 b/natural_video/videos/nat_8_frames/clean_counter_pos_02.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_pos_02.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_pos_02.mp4 diff --git a/exact1fps_short/videos/clean_counter_pos_03.mp4 b/natural_video/videos/nat_8_frames/clean_counter_pos_03.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_pos_03.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_pos_03.mp4 diff --git a/exact1fps_short/videos/clean_counter_pos_04.mp4 b/natural_video/videos/nat_8_frames/clean_counter_pos_04.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_pos_04.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_pos_04.mp4 diff --git a/exact1fps_short/videos/clean_counter_pos_05.mp4 b/natural_video/videos/nat_8_frames/clean_counter_pos_05.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_pos_05.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_pos_05.mp4 diff --git a/exact1fps_short/videos/clean_counter_pos_06.mp4 b/natural_video/videos/nat_8_frames/clean_counter_pos_06.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_pos_06.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_pos_06.mp4 diff --git a/exact1fps_short/videos/clean_counter_pos_07.mp4 b/natural_video/videos/nat_8_frames/clean_counter_pos_07.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_pos_07.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_pos_07.mp4 diff --git a/exact1fps_short/videos/clean_counter_pos_08.mp4 b/natural_video/videos/nat_8_frames/clean_counter_pos_08.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_pos_08.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_pos_08.mp4 diff --git a/exact1fps_short/videos/clean_counter_pos_09.mp4 b/natural_video/videos/nat_8_frames/clean_counter_pos_09.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_pos_09.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_pos_09.mp4 diff --git a/exact1fps_short/videos/clean_counter_pos_10.mp4 b/natural_video/videos/nat_8_frames/clean_counter_pos_10.mp4 similarity index 100% rename from exact1fps_short/videos/clean_counter_pos_10.mp4 rename to natural_video/videos/nat_8_frames/clean_counter_pos_10.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_neg_01.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_neg_01.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_neg_01.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_neg_01.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_neg_02.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_neg_02.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_neg_02.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_neg_02.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_neg_03.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_neg_03.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_neg_03.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_neg_03.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_neg_04.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_neg_04.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_neg_04.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_neg_04.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_neg_05.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_neg_05.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_neg_05.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_neg_05.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_neg_06.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_neg_06.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_neg_06.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_neg_06.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_neg_07.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_neg_07.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_neg_07.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_neg_07.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_neg_08.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_neg_08.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_neg_08.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_neg_08.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_neg_09.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_neg_09.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_neg_09.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_neg_09.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_neg_10.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_neg_10.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_neg_10.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_neg_10.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_pos_01.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_pos_01.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_pos_01.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_pos_01.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_pos_02.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_pos_02.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_pos_02.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_pos_02.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_pos_03.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_pos_03.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_pos_03.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_pos_03.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_pos_04.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_pos_04.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_pos_04.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_pos_04.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_pos_05.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_pos_05.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_pos_05.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_pos_05.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_pos_06.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_pos_06.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_pos_06.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_pos_06.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_pos_07.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_pos_07.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_pos_07.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_pos_07.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_pos_08.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_pos_08.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_pos_08.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_pos_08.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_pos_09.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_pos_09.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_pos_09.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_pos_09.mp4 diff --git a/exact1fps_short/videos/cut_nontomato_pos_10.mp4 b/natural_video/videos/nat_8_frames/cut_nontomato_pos_10.mp4 similarity index 100% rename from exact1fps_short/videos/cut_nontomato_pos_10.mp4 rename to natural_video/videos/nat_8_frames/cut_nontomato_pos_10.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_01.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_01.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_01.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_01.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_02.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_02.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_02.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_02.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_03.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_03.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_03.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_03.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_04.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_04.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_04.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_04.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_05.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_05.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_05.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_05.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_06.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_06.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_06.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_06.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_07.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_07.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_07.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_07.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_08.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_08.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_08.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_08.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_09.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_09.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_09.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_09.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_10.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_10.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_10.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_10.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_11.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_11.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_11.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_11.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_12.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_12.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_12.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_12.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_13.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_13.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_13.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_13.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_14.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_14.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_14.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_14.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_15.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_15.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_15.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_15.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_16.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_16.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_16.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_16.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_17.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_17.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_17.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_17.mp4 diff --git a/exact1fps_short/videos/open_cupboard_neg_18.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_neg_18.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_neg_18.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_neg_18.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_01.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_01.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_01.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_01.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_02.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_02.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_02.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_02.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_03.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_03.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_03.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_03.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_04.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_04.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_04.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_04.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_05.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_05.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_05.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_05.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_06.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_06.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_06.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_06.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_07.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_07.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_07.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_07.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_08.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_08.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_08.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_08.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_09.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_09.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_09.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_09.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_10.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_10.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_10.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_10.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_11.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_11.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_11.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_11.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_12.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_12.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_12.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_12.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_13.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_13.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_13.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_13.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_14.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_14.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_14.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_14.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_15.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_15.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_15.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_15.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_16.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_16.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_16.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_16.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_17.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_17.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_17.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_17.mp4 diff --git a/exact1fps_short/videos/open_cupboard_pos_18.mp4 b/natural_video/videos/nat_8_frames/open_cupboard_pos_18.mp4 similarity index 100% rename from exact1fps_short/videos/open_cupboard_pos_18.mp4 rename to natural_video/videos/nat_8_frames/open_cupboard_pos_18.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_01.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_01.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_01.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_01.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_02.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_02.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_02.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_02.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_03.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_03.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_03.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_03.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_04.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_04.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_04.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_04.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_05.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_05.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_05.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_05.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_06.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_06.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_06.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_06.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_07.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_07.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_07.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_07.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_08.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_08.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_08.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_08.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_09.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_09.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_09.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_09.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_10.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_10.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_10.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_10.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_11.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_11.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_11.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_11.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_12.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_12.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_12.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_12.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_13.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_13.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_13.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_13.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_14.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_14.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_14.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_14.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_15.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_15.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_15.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_15.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_16.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_16.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_16.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_16.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_17.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_17.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_17.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_17.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_18.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_18.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_18.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_18.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_19.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_19.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_19.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_19.mp4 diff --git a/exact1fps_short/videos/open_drawer_neg_20.mp4 b/natural_video/videos/nat_8_frames/open_drawer_neg_20.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_neg_20.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_neg_20.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_01.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_01.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_01.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_01.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_02.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_02.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_02.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_02.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_03.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_03.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_03.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_03.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_04.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_04.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_04.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_04.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_05.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_05.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_05.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_05.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_06.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_06.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_06.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_06.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_07.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_07.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_07.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_07.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_08.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_08.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_08.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_08.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_09.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_09.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_09.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_09.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_10.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_10.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_10.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_10.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_11.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_11.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_11.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_11.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_12.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_12.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_12.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_12.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_13.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_13.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_13.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_13.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_14.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_14.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_14.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_14.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_15.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_15.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_15.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_15.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_16.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_16.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_16.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_16.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_17.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_17.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_17.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_17.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_18.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_18.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_18.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_18.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_19.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_19.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_19.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_19.mp4 diff --git a/exact1fps_short/videos/open_drawer_pos_20.mp4 b/natural_video/videos/nat_8_frames/open_drawer_pos_20.mp4 similarity index 100% rename from exact1fps_short/videos/open_drawer_pos_20.mp4 rename to natural_video/videos/nat_8_frames/open_drawer_pos_20.mp4 diff --git a/exact1fps_short/videos/open_fridge_neg_01.mp4 b/natural_video/videos/nat_8_frames/open_fridge_neg_01.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_neg_01.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_neg_01.mp4 diff --git a/exact1fps_short/videos/open_fridge_neg_02.mp4 b/natural_video/videos/nat_8_frames/open_fridge_neg_02.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_neg_02.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_neg_02.mp4 diff --git a/exact1fps_short/videos/open_fridge_neg_03.mp4 b/natural_video/videos/nat_8_frames/open_fridge_neg_03.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_neg_03.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_neg_03.mp4 diff --git a/exact1fps_short/videos/open_fridge_neg_04.mp4 b/natural_video/videos/nat_8_frames/open_fridge_neg_04.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_neg_04.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_neg_04.mp4 diff --git a/exact1fps_short/videos/open_fridge_neg_05.mp4 b/natural_video/videos/nat_8_frames/open_fridge_neg_05.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_neg_05.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_neg_05.mp4 diff --git a/exact1fps_short/videos/open_fridge_neg_06.mp4 b/natural_video/videos/nat_8_frames/open_fridge_neg_06.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_neg_06.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_neg_06.mp4 diff --git a/exact1fps_short/videos/open_fridge_neg_07.mp4 b/natural_video/videos/nat_8_frames/open_fridge_neg_07.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_neg_07.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_neg_07.mp4 diff --git a/exact1fps_short/videos/open_fridge_neg_08.mp4 b/natural_video/videos/nat_8_frames/open_fridge_neg_08.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_neg_08.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_neg_08.mp4 diff --git a/exact1fps_short/videos/open_fridge_neg_09.mp4 b/natural_video/videos/nat_8_frames/open_fridge_neg_09.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_neg_09.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_neg_09.mp4 diff --git a/exact1fps_short/videos/open_fridge_neg_10.mp4 b/natural_video/videos/nat_8_frames/open_fridge_neg_10.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_neg_10.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_neg_10.mp4 diff --git a/exact1fps_short/videos/open_fridge_pos_01.mp4 b/natural_video/videos/nat_8_frames/open_fridge_pos_01.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_pos_01.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_pos_01.mp4 diff --git a/exact1fps_short/videos/open_fridge_pos_02.mp4 b/natural_video/videos/nat_8_frames/open_fridge_pos_02.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_pos_02.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_pos_02.mp4 diff --git a/exact1fps_short/videos/open_fridge_pos_03.mp4 b/natural_video/videos/nat_8_frames/open_fridge_pos_03.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_pos_03.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_pos_03.mp4 diff --git a/exact1fps_short/videos/open_fridge_pos_04.mp4 b/natural_video/videos/nat_8_frames/open_fridge_pos_04.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_pos_04.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_pos_04.mp4 diff --git a/exact1fps_short/videos/open_fridge_pos_05.mp4 b/natural_video/videos/nat_8_frames/open_fridge_pos_05.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_pos_05.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_pos_05.mp4 diff --git a/exact1fps_short/videos/open_fridge_pos_06.mp4 b/natural_video/videos/nat_8_frames/open_fridge_pos_06.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_pos_06.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_pos_06.mp4 diff --git a/exact1fps_short/videos/open_fridge_pos_07.mp4 b/natural_video/videos/nat_8_frames/open_fridge_pos_07.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_pos_07.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_pos_07.mp4 diff --git a/exact1fps_short/videos/open_fridge_pos_08.mp4 b/natural_video/videos/nat_8_frames/open_fridge_pos_08.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_pos_08.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_pos_08.mp4 diff --git a/exact1fps_short/videos/open_fridge_pos_09.mp4 b/natural_video/videos/nat_8_frames/open_fridge_pos_09.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_pos_09.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_pos_09.mp4 diff --git a/exact1fps_short/videos/open_fridge_pos_10.mp4 b/natural_video/videos/nat_8_frames/open_fridge_pos_10.mp4 similarity index 100% rename from exact1fps_short/videos/open_fridge_pos_10.mp4 rename to natural_video/videos/nat_8_frames/open_fridge_pos_10.mp4 diff --git a/exact1fps_short/videos/pour_water_neg_01.mp4 b/natural_video/videos/nat_8_frames/pour_water_neg_01.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_neg_01.mp4 rename to natural_video/videos/nat_8_frames/pour_water_neg_01.mp4 diff --git a/exact1fps_short/videos/pour_water_neg_02.mp4 b/natural_video/videos/nat_8_frames/pour_water_neg_02.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_neg_02.mp4 rename to natural_video/videos/nat_8_frames/pour_water_neg_02.mp4 diff --git a/exact1fps_short/videos/pour_water_neg_03.mp4 b/natural_video/videos/nat_8_frames/pour_water_neg_03.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_neg_03.mp4 rename to natural_video/videos/nat_8_frames/pour_water_neg_03.mp4 diff --git a/exact1fps_short/videos/pour_water_neg_04.mp4 b/natural_video/videos/nat_8_frames/pour_water_neg_04.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_neg_04.mp4 rename to natural_video/videos/nat_8_frames/pour_water_neg_04.mp4 diff --git a/exact1fps_short/videos/pour_water_neg_05.mp4 b/natural_video/videos/nat_8_frames/pour_water_neg_05.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_neg_05.mp4 rename to natural_video/videos/nat_8_frames/pour_water_neg_05.mp4 diff --git a/exact1fps_short/videos/pour_water_neg_06.mp4 b/natural_video/videos/nat_8_frames/pour_water_neg_06.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_neg_06.mp4 rename to natural_video/videos/nat_8_frames/pour_water_neg_06.mp4 diff --git a/exact1fps_short/videos/pour_water_neg_07.mp4 b/natural_video/videos/nat_8_frames/pour_water_neg_07.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_neg_07.mp4 rename to natural_video/videos/nat_8_frames/pour_water_neg_07.mp4 diff --git a/exact1fps_short/videos/pour_water_neg_08.mp4 b/natural_video/videos/nat_8_frames/pour_water_neg_08.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_neg_08.mp4 rename to natural_video/videos/nat_8_frames/pour_water_neg_08.mp4 diff --git a/exact1fps_short/videos/pour_water_neg_09.mp4 b/natural_video/videos/nat_8_frames/pour_water_neg_09.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_neg_09.mp4 rename to natural_video/videos/nat_8_frames/pour_water_neg_09.mp4 diff --git a/exact1fps_short/videos/pour_water_neg_10.mp4 b/natural_video/videos/nat_8_frames/pour_water_neg_10.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_neg_10.mp4 rename to natural_video/videos/nat_8_frames/pour_water_neg_10.mp4 diff --git a/exact1fps_short/videos/pour_water_pos_01.mp4 b/natural_video/videos/nat_8_frames/pour_water_pos_01.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_pos_01.mp4 rename to natural_video/videos/nat_8_frames/pour_water_pos_01.mp4 diff --git a/exact1fps_short/videos/pour_water_pos_02.mp4 b/natural_video/videos/nat_8_frames/pour_water_pos_02.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_pos_02.mp4 rename to natural_video/videos/nat_8_frames/pour_water_pos_02.mp4 diff --git a/exact1fps_short/videos/pour_water_pos_03.mp4 b/natural_video/videos/nat_8_frames/pour_water_pos_03.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_pos_03.mp4 rename to natural_video/videos/nat_8_frames/pour_water_pos_03.mp4 diff --git a/exact1fps_short/videos/pour_water_pos_04.mp4 b/natural_video/videos/nat_8_frames/pour_water_pos_04.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_pos_04.mp4 rename to natural_video/videos/nat_8_frames/pour_water_pos_04.mp4 diff --git a/exact1fps_short/videos/pour_water_pos_05.mp4 b/natural_video/videos/nat_8_frames/pour_water_pos_05.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_pos_05.mp4 rename to natural_video/videos/nat_8_frames/pour_water_pos_05.mp4 diff --git a/exact1fps_short/videos/pour_water_pos_06.mp4 b/natural_video/videos/nat_8_frames/pour_water_pos_06.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_pos_06.mp4 rename to natural_video/videos/nat_8_frames/pour_water_pos_06.mp4 diff --git a/exact1fps_short/videos/pour_water_pos_07.mp4 b/natural_video/videos/nat_8_frames/pour_water_pos_07.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_pos_07.mp4 rename to natural_video/videos/nat_8_frames/pour_water_pos_07.mp4 diff --git a/exact1fps_short/videos/pour_water_pos_08.mp4 b/natural_video/videos/nat_8_frames/pour_water_pos_08.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_pos_08.mp4 rename to natural_video/videos/nat_8_frames/pour_water_pos_08.mp4 diff --git a/exact1fps_short/videos/pour_water_pos_09.mp4 b/natural_video/videos/nat_8_frames/pour_water_pos_09.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_pos_09.mp4 rename to natural_video/videos/nat_8_frames/pour_water_pos_09.mp4 diff --git a/exact1fps_short/videos/pour_water_pos_10.mp4 b/natural_video/videos/nat_8_frames/pour_water_pos_10.mp4 similarity index 100% rename from exact1fps_short/videos/pour_water_pos_10.mp4 rename to natural_video/videos/nat_8_frames/pour_water_pos_10.mp4 diff --git a/exact1fps_short/videos/rinse_X_neg_01.mp4 b/natural_video/videos/nat_8_frames/rinse_X_neg_01.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_neg_01.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_neg_01.mp4 diff --git a/exact1fps_short/videos/rinse_X_neg_02.mp4 b/natural_video/videos/nat_8_frames/rinse_X_neg_02.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_neg_02.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_neg_02.mp4 diff --git a/exact1fps_short/videos/rinse_X_neg_03.mp4 b/natural_video/videos/nat_8_frames/rinse_X_neg_03.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_neg_03.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_neg_03.mp4 diff --git a/exact1fps_short/videos/rinse_X_neg_04.mp4 b/natural_video/videos/nat_8_frames/rinse_X_neg_04.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_neg_04.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_neg_04.mp4 diff --git a/exact1fps_short/videos/rinse_X_neg_05.mp4 b/natural_video/videos/nat_8_frames/rinse_X_neg_05.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_neg_05.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_neg_05.mp4 diff --git a/exact1fps_short/videos/rinse_X_neg_06.mp4 b/natural_video/videos/nat_8_frames/rinse_X_neg_06.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_neg_06.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_neg_06.mp4 diff --git a/exact1fps_short/videos/rinse_X_neg_07.mp4 b/natural_video/videos/nat_8_frames/rinse_X_neg_07.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_neg_07.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_neg_07.mp4 diff --git a/exact1fps_short/videos/rinse_X_neg_08.mp4 b/natural_video/videos/nat_8_frames/rinse_X_neg_08.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_neg_08.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_neg_08.mp4 diff --git a/exact1fps_short/videos/rinse_X_neg_09.mp4 b/natural_video/videos/nat_8_frames/rinse_X_neg_09.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_neg_09.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_neg_09.mp4 diff --git a/exact1fps_short/videos/rinse_X_neg_10.mp4 b/natural_video/videos/nat_8_frames/rinse_X_neg_10.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_neg_10.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_neg_10.mp4 diff --git a/exact1fps_short/videos/rinse_X_pos_01.mp4 b/natural_video/videos/nat_8_frames/rinse_X_pos_01.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_pos_01.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_pos_01.mp4 diff --git a/exact1fps_short/videos/rinse_X_pos_02.mp4 b/natural_video/videos/nat_8_frames/rinse_X_pos_02.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_pos_02.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_pos_02.mp4 diff --git a/exact1fps_short/videos/rinse_X_pos_03.mp4 b/natural_video/videos/nat_8_frames/rinse_X_pos_03.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_pos_03.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_pos_03.mp4 diff --git a/exact1fps_short/videos/rinse_X_pos_04.mp4 b/natural_video/videos/nat_8_frames/rinse_X_pos_04.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_pos_04.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_pos_04.mp4 diff --git a/exact1fps_short/videos/rinse_X_pos_05.mp4 b/natural_video/videos/nat_8_frames/rinse_X_pos_05.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_pos_05.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_pos_05.mp4 diff --git a/exact1fps_short/videos/rinse_X_pos_06.mp4 b/natural_video/videos/nat_8_frames/rinse_X_pos_06.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_pos_06.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_pos_06.mp4 diff --git a/exact1fps_short/videos/rinse_X_pos_07.mp4 b/natural_video/videos/nat_8_frames/rinse_X_pos_07.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_pos_07.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_pos_07.mp4 diff --git a/exact1fps_short/videos/rinse_X_pos_08.mp4 b/natural_video/videos/nat_8_frames/rinse_X_pos_08.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_pos_08.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_pos_08.mp4 diff --git a/exact1fps_short/videos/rinse_X_pos_09.mp4 b/natural_video/videos/nat_8_frames/rinse_X_pos_09.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_pos_09.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_pos_09.mp4 diff --git a/exact1fps_short/videos/rinse_X_pos_10.mp4 b/natural_video/videos/nat_8_frames/rinse_X_pos_10.mp4 similarity index 100% rename from exact1fps_short/videos/rinse_X_pos_10.mp4 rename to natural_video/videos/nat_8_frames/rinse_X_pos_10.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_neg_01.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_neg_01.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_neg_01.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_neg_01.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_neg_02.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_neg_02.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_neg_02.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_neg_02.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_neg_03.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_neg_03.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_neg_03.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_neg_03.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_neg_04.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_neg_04.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_neg_04.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_neg_04.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_neg_05.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_neg_05.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_neg_05.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_neg_05.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_neg_06.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_neg_06.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_neg_06.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_neg_06.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_neg_07.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_neg_07.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_neg_07.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_neg_07.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_neg_08.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_neg_08.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_neg_08.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_neg_08.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_neg_09.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_neg_09.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_neg_09.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_neg_09.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_neg_10.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_neg_10.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_neg_10.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_neg_10.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_pos_01.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_pos_01.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_pos_01.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_pos_01.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_pos_02.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_pos_02.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_pos_02.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_pos_02.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_pos_03.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_pos_03.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_pos_03.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_pos_03.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_pos_04.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_pos_04.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_pos_04.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_pos_04.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_pos_05.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_pos_05.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_pos_05.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_pos_05.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_pos_06.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_pos_06.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_pos_06.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_pos_06.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_pos_07.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_pos_07.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_pos_07.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_pos_07.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_pos_08.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_pos_08.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_pos_08.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_pos_08.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_pos_09.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_pos_09.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_pos_09.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_pos_09.mp4 diff --git a/exact1fps_short/videos/turn_on_tap_pos_10.mp4 b/natural_video/videos/nat_8_frames/turn_on_tap_pos_10.mp4 similarity index 100% rename from exact1fps_short/videos/turn_on_tap_pos_10.mp4 rename to natural_video/videos/nat_8_frames/turn_on_tap_pos_10.mp4 diff --git a/exact1fps_short/videos/wash_plate_neg_01.mp4 b/natural_video/videos/nat_8_frames/wash_plate_neg_01.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_neg_01.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_neg_01.mp4 diff --git a/exact1fps_short/videos/wash_plate_neg_02.mp4 b/natural_video/videos/nat_8_frames/wash_plate_neg_02.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_neg_02.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_neg_02.mp4 diff --git a/exact1fps_short/videos/wash_plate_neg_03.mp4 b/natural_video/videos/nat_8_frames/wash_plate_neg_03.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_neg_03.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_neg_03.mp4 diff --git a/exact1fps_short/videos/wash_plate_neg_04.mp4 b/natural_video/videos/nat_8_frames/wash_plate_neg_04.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_neg_04.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_neg_04.mp4 diff --git a/exact1fps_short/videos/wash_plate_neg_05.mp4 b/natural_video/videos/nat_8_frames/wash_plate_neg_05.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_neg_05.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_neg_05.mp4 diff --git a/exact1fps_short/videos/wash_plate_neg_06.mp4 b/natural_video/videos/nat_8_frames/wash_plate_neg_06.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_neg_06.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_neg_06.mp4 diff --git a/exact1fps_short/videos/wash_plate_neg_07.mp4 b/natural_video/videos/nat_8_frames/wash_plate_neg_07.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_neg_07.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_neg_07.mp4 diff --git a/exact1fps_short/videos/wash_plate_neg_08.mp4 b/natural_video/videos/nat_8_frames/wash_plate_neg_08.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_neg_08.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_neg_08.mp4 diff --git a/exact1fps_short/videos/wash_plate_neg_09.mp4 b/natural_video/videos/nat_8_frames/wash_plate_neg_09.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_neg_09.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_neg_09.mp4 diff --git a/exact1fps_short/videos/wash_plate_neg_10.mp4 b/natural_video/videos/nat_8_frames/wash_plate_neg_10.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_neg_10.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_neg_10.mp4 diff --git a/exact1fps_short/videos/wash_plate_pos_01.mp4 b/natural_video/videos/nat_8_frames/wash_plate_pos_01.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_pos_01.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_pos_01.mp4 diff --git a/exact1fps_short/videos/wash_plate_pos_02.mp4 b/natural_video/videos/nat_8_frames/wash_plate_pos_02.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_pos_02.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_pos_02.mp4 diff --git a/exact1fps_short/videos/wash_plate_pos_03.mp4 b/natural_video/videos/nat_8_frames/wash_plate_pos_03.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_pos_03.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_pos_03.mp4 diff --git a/exact1fps_short/videos/wash_plate_pos_04.mp4 b/natural_video/videos/nat_8_frames/wash_plate_pos_04.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_pos_04.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_pos_04.mp4 diff --git a/exact1fps_short/videos/wash_plate_pos_05.mp4 b/natural_video/videos/nat_8_frames/wash_plate_pos_05.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_pos_05.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_pos_05.mp4 diff --git a/exact1fps_short/videos/wash_plate_pos_06.mp4 b/natural_video/videos/nat_8_frames/wash_plate_pos_06.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_pos_06.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_pos_06.mp4 diff --git a/exact1fps_short/videos/wash_plate_pos_07.mp4 b/natural_video/videos/nat_8_frames/wash_plate_pos_07.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_pos_07.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_pos_07.mp4 diff --git a/exact1fps_short/videos/wash_plate_pos_08.mp4 b/natural_video/videos/nat_8_frames/wash_plate_pos_08.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_pos_08.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_pos_08.mp4 diff --git a/exact1fps_short/videos/wash_plate_pos_09.mp4 b/natural_video/videos/nat_8_frames/wash_plate_pos_09.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_pos_09.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_pos_09.mp4 diff --git a/exact1fps_short/videos/wash_plate_pos_10.mp4 b/natural_video/videos/nat_8_frames/wash_plate_pos_10.mp4 similarity index 100% rename from exact1fps_short/videos/wash_plate_pos_10.mp4 rename to natural_video/videos/nat_8_frames/wash_plate_pos_10.mp4 diff --git a/exact1fps_short/videos/wipe_surface_neg_01.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_neg_01.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_neg_01.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_neg_01.mp4 diff --git a/exact1fps_short/videos/wipe_surface_neg_02.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_neg_02.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_neg_02.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_neg_02.mp4 diff --git a/exact1fps_short/videos/wipe_surface_neg_03.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_neg_03.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_neg_03.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_neg_03.mp4 diff --git a/exact1fps_short/videos/wipe_surface_neg_04.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_neg_04.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_neg_04.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_neg_04.mp4 diff --git a/exact1fps_short/videos/wipe_surface_neg_05.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_neg_05.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_neg_05.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_neg_05.mp4 diff --git a/exact1fps_short/videos/wipe_surface_neg_06.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_neg_06.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_neg_06.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_neg_06.mp4 diff --git a/exact1fps_short/videos/wipe_surface_neg_07.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_neg_07.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_neg_07.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_neg_07.mp4 diff --git a/exact1fps_short/videos/wipe_surface_neg_08.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_neg_08.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_neg_08.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_neg_08.mp4 diff --git a/exact1fps_short/videos/wipe_surface_neg_09.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_neg_09.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_neg_09.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_neg_09.mp4 diff --git a/exact1fps_short/videos/wipe_surface_neg_10.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_neg_10.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_neg_10.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_neg_10.mp4 diff --git a/exact1fps_short/videos/wipe_surface_pos_01.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_pos_01.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_pos_01.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_pos_01.mp4 diff --git a/exact1fps_short/videos/wipe_surface_pos_02.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_pos_02.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_pos_02.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_pos_02.mp4 diff --git a/exact1fps_short/videos/wipe_surface_pos_03.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_pos_03.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_pos_03.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_pos_03.mp4 diff --git a/exact1fps_short/videos/wipe_surface_pos_04.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_pos_04.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_pos_04.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_pos_04.mp4 diff --git a/exact1fps_short/videos/wipe_surface_pos_05.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_pos_05.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_pos_05.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_pos_05.mp4 diff --git a/exact1fps_short/videos/wipe_surface_pos_06.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_pos_06.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_pos_06.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_pos_06.mp4 diff --git a/exact1fps_short/videos/wipe_surface_pos_07.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_pos_07.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_pos_07.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_pos_07.mp4 diff --git a/exact1fps_short/videos/wipe_surface_pos_08.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_pos_08.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_pos_08.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_pos_08.mp4 diff --git a/exact1fps_short/videos/wipe_surface_pos_09.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_pos_09.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_pos_09.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_pos_09.mp4 diff --git a/exact1fps_short/videos/wipe_surface_pos_10.mp4 b/natural_video/videos/nat_8_frames/wipe_surface_pos_10.mp4 similarity index 100% rename from exact1fps_short/videos/wipe_surface_pos_10.mp4 rename to natural_video/videos/nat_8_frames/wipe_surface_pos_10.mp4 diff --git a/substream_text.parquet b/substream_text.parquet deleted file mode 100644 index 352b12a34ef8c046e636e5e93ca6bac8c92307bc..0000000000000000000000000000000000000000 --- a/substream_text.parquet +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:25bec3762b4788ea884db85dcbebdbdf1c6c6b309dea649aa05cd0306f1bfbed -size 462931 diff --git a/substream_video.parquet b/substream_video.parquet deleted file mode 100644 index a5012f35d9e86476eee868c1f0e025b5ef7842be..0000000000000000000000000000000000000000 --- a/substream_video.parquet +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3175ad85bc3b465750161844529e55111c985fd00750b8fbb260950ed1cc5d55 -size 270127 diff --git a/synthetic_video/questions.json b/synthetic_video/questions.json new file mode 100644 index 0000000000000000000000000000000000000000..fb1954e51de00757f304195f099a97392345fe25 --- /dev/null +++ b/synthetic_video/questions.json @@ -0,0 +1,6304 @@ +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,2,11,15,10,10,4", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"10\", \"10\", \"4\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,2,11,15,10,10,4", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"2\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,2,11,15,10,10,4", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"15\", \"10\", \"10\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q3_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,2,11,15,10,10,4", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"2\", \"11\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q4_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,2,11,15,10,10,4", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"2\", \"11\", \"15\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,2,11,15,10,10,4", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"15\", \"10\", \"10\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,2,11,15,10,10,4", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"5\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q7_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,2,11,15,10,10,4", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,2,11,15,10,10,4", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"7\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,2,11,15,10,10,4", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"2\", \"11\", \"15\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q10_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,2,11,15,10,10,4", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"2\", \"11\", \"15\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q11_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,2,11,15,10,10,4", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"2\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q12_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,2,11,15,10,10,4", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"2\", \"11\", \"15\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q13_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,2,11,15,10,10,4", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"15\", \"3\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q14_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,2,11,15,10,10,4", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"15\", \"10\", \"10\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q15_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,2,11,15,10,10,4", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"4\", \"5\", \"0\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,6,4,5,0,5,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"2\", \"6\", \"4\", \"5\", \"0\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,6,4,5,0,5,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,6,4,5,0,5,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"5\", \"0\", \"5\", \"0\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,6,4,5,0,5,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"2\", \"6\", \"4\", \"5\", \"0\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,6,4,5,0,5,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"5\", \"0\", \"5\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,6,4,5,0,5,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"5\", \"0\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,6,4,5,0,5,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,6,4,5,0,5,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,6,4,5,0,5,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"4\", \"5\", \"0\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,6,4,5,0,5,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"2\", \"6\", \"4\", \"5\", \"0\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,6,4,5,0,5,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q11_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,6,4,5,0,5,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"5\", \"0\", \"5\", \"0\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,6,4,5,0,5,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"5\", \"0\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q13_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,6,4,5,0,5,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"12\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,6,4,5,0,5,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"4\", \"5\", \"0\", \"5\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q15_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,6,4,5,0,5,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"8\", \"3\", \"14\", \"9\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,8,3,14,9,2,7", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"14\", \"9\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,8,3,14,9,2,7", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"8\", \"3\", \"14\", \"9\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,8,3,14,9,2,7", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"2\", \"7\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,8,3,14,9,2,7", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"2\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,8,3,14,9,2,7", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"8\", \"3\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q5_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,8,3,14,9,2,7", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"3\", \"14\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,8,3,14,9,2,7", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"8\", \"3\", \"14\", \"9\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,8,3,14,9,2,7", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"14\", \"9\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q8_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,8,3,14,9,2,7", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"8\", \"3\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q9_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,8,3,14,9,2,7", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"14\", \"9\", \"2\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q10_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,8,3,14,9,2,7", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"3\", \"14\", \"9\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q11_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,8,3,14,9,2,7", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"3\", \"14\", \"9\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q12_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,8,3,14,9,2,7", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"9\", \"1\", \"6\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q13_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,8,3,14,9,2,7", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"3\", \"14\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q14_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,8,3,14,9,2,7", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"0\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q15_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,8,3,14,9,2,7", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"10\", \"6\", \"9\", \"9\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,13,3,10,6,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"10\", \"6\", \"9\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,13,3,10,6,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"6\", \"9\", \"9\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,13,3,10,6,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"13\", \"3\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,13,3,10,6,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,13,3,10,6,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"10\", \"6\", \"9\", \"9\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,13,3,10,6,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,13,3,10,6,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"13\", \"3\", \"10\", \"6\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,13,3,10,6,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"6\", \"9\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,13,3,10,6,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"3\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,13,3,10,6,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"9\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,13,3,10,6,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,13,3,10,6,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"13\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,13,3,10,6,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,13,3,10,6,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"9\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,13,3,10,6,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,13,3,10,6,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"5\", \"3\", \"12\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,2,1,5,3,12,10,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"1\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,2,1,5,3,12,10,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"5\", \"3\", \"12\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,2,1,5,3,12,10,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,2,1,5,3,12,10,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,2,1,5,3,12,10,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"3\", \"12\", \"10\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,2,1,5,3,12,10,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"3\", \"12\", \"10\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,2,1,5,3,12,10,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"3\", \"12\", \"10\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,2,1,5,3,12,10,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"3\", \"12\", \"10\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,2,1,5,3,12,10,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,2,1,5,3,12,10,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,2,1,5,3,12,10,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"5\", \"3\", \"12\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,2,1,5,3,12,10,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"1\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,2,1,5,3,12,10,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"5\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,2,1,5,3,12,10,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"1\", \"5\", \"3\", \"12\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,2,1,5,3,12,10,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"5\", \"3\", \"12\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,2,1,5,3,12,10,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"0\", \"13\", \"12\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,11,15,0,13,12,11", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"0\", \"13\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,11,15,0,13,12,11", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"11\", \"15\", \"0\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,11,15,0,13,12,11", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,11,15,0,13,12,11", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"0\", \"13\", \"12\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,11,15,0,13,12,11", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"0\", \"13\", \"12\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,11,15,0,13,12,11", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"11\", \"15\", \"0\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q6_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,11,15,0,13,12,11", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"11\", \"15\", \"0\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q7_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,11,15,0,13,12,11", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"0\", \"13\", \"12\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,11,15,0,13,12,11", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"0\", \"13\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q9_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,11,15,0,13,12,11", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"0\", \"13\", \"12\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q10_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,11,15,0,13,12,11", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"0\", \"13\", \"12\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,11,15,0,13,12,11", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"11\", \"15\", \"0\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,11,15,0,13,12,11", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"0\", \"13\", \"12\", \"11\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q13_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,11,15,0,13,12,11", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"3\", \"4\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q14_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,11,15,0,13,12,11", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"11\", \"15\", \"0\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q15_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,11,15,0,13,12,11", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"5\", \"7\", \"6\", \"8\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,14,5,7,6,8,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"7\", \"6\", \"8\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,14,5,7,6,8,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"8\", \"11\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,14,5,7,6,8,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"14\", \"5\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,14,5,7,6,8,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,14,5,7,6,8,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"5\", \"7\", \"6\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,14,5,7,6,8,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"8\", \"11\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,14,5,7,6,8,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,14,5,7,6,8,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"5\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,14,5,7,6,8,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"8\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,14,5,7,6,8,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"14\", \"5\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q10_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,14,5,7,6,8,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"7\", \"6\", \"8\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q11_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,14,5,7,6,8,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q12_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,14,5,7,6,8,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"7\", \"6\", \"8\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q13_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,14,5,7,6,8,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"7\", \"6\", \"8\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q14_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,14,5,7,6,8,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"14\", \"5\", \"7\", \"6\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q15_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,14,5,7,6,8,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"13\", \"0\", \"1\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,13,0,1,13,0,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"0\", \"1\", \"13\", \"0\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,13,0,1,13,0,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"15\", \"13\", \"0\", \"1\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,13,0,1,13,0,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"1\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,13,0,1,13,0,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"1\", \"13\", \"0\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,13,0,1,13,0,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"0\", \"1\", \"13\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,13,0,1,13,0,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"1\", \"13\", \"0\", \"1\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,13,0,1,13,0,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"1\", \"13\", \"0\", \"1\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,13,0,1,13,0,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,13,0,1,13,0,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"13\", \"3\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q9_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,13,0,1,13,0,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"15\", \"13\", \"0\", \"1\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q10_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,13,0,1,13,0,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"0\", \"1\", \"13\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,13,0,1,13,0,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"15\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q12_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,13,0,1,13,0,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"0\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q13_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,13,0,1,13,0,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"0\", \"1\", \"13\", \"0\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q14_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,13,0,1,13,0,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"1\", \"13\", \"0\", \"1\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q15_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,13,0,1,13,0,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"1\", \"5\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,12,6,1,5,15,6,5", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"1\", \"5\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,12,6,1,5,15,6,5", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"6\", \"5\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,12,6,1,5,15,6,5", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,12,6,1,5,15,6,5", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"1\", \"5\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,12,6,1,5,15,6,5", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"1\", \"5\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,12,6,1,5,15,6,5", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,12,6,1,5,15,6,5", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"1\", \"5\", \"15\", \"6\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,12,6,1,5,15,6,5", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"12\", \"6\", \"1\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,12,6,1,5,15,6,5", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"15\", \"6\", \"5\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,12,6,1,5,15,6,5", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,12,6,1,5,15,6,5", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"1\", \"5\", \"15\", \"6\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,12,6,1,5,15,6,5", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,12,6,1,5,15,6,5", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"1\", \"5\", \"15\", \"6\", \"5\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,12,6,1,5,15,6,5", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"12\", \"6\", \"1\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,12,6,1,5,15,6,5", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 3.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,12,6,1,5,15,6,5", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,2,0,9,1,5,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"9\", \"1\", \"5\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,2,0,9,1,5,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"2\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,2,0,9,1,5,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"2\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,2,0,9,1,5,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"1\"], \"clip_start\": 3.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,2,0,9,1,5,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"2\", \"0\", \"9\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,2,0,9,1,5,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"0\", \"9\", \"1\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,2,0,9,1,5,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,2,0,9,1,5,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"2\", \"0\", \"9\", \"1\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,2,0,9,1,5,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"0\", \"9\", \"1\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,2,0,9,1,5,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,2,0,9,1,5,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"2\", \"0\", \"9\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,2,0,9,1,5,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"9\", \"1\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,2,0,9,1,5,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"0\", \"9\", \"1\", \"5\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,2,0,9,1,5,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"2\", \"0\", \"9\", \"1\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,2,0,9,1,5,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"9\", \"1\", \"5\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,2,0,9,1,5,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"13\", \"7\", \"10\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,13,7,10,13,9,4", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,13,7,10,13,9,4", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"13\", \"7\", \"10\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,13,7,10,13,9,4", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"7\", \"10\", \"13\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,13,7,10,13,9,4", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"7\", \"10\", \"13\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,13,7,10,13,9,4", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"7\", \"10\", \"13\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,13,7,10,13,9,4", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"13\", \"9\", \"4\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,13,7,10,13,9,4", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"10\", \"13\", \"9\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,13,7,10,13,9,4", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"7\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,13,7,10,13,9,4", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,13,7,10,13,9,4", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"10\", \"13\", \"9\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,13,7,10,13,9,4", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"13\", \"9\", \"4\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,13,7,10,13,9,4", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"10\", \"13\", \"9\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,13,7,10,13,9,4", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,13,7,10,13,9,4", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"13\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,13,7,10,13,9,4", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"10\", \"13\", \"9\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,13,7,10,13,9,4", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"5\", \"13\", \"4\", \"8\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,15,2,5,13,4,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"15\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,15,2,5,13,4,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"5\", \"13\", \"4\", \"8\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,15,2,5,13,4,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"5\", \"13\", \"4\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,15,2,5,13,4,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,15,2,5,13,4,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"0\", \"15\", \"2\", \"5\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,15,2,5,13,4,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"5\", \"13\", \"4\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,15,2,5,13,4,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"4\", \"8\", \"6\", \"0\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,15,2,5,13,4,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q8_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,15,2,5,13,4,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q9_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,15,2,5,13,4,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"1\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q10_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,15,2,5,13,4,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"15\", \"2\", \"5\", \"13\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q11_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,15,2,5,13,4,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"8\", \"2\", \"5\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q12_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,15,2,5,13,4,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"5\", \"13\", \"4\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q13_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,15,2,5,13,4,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"0\", \"15\", \"2\", \"5\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q14_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,15,2,5,13,4,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"11\", \"12\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q15_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,15,2,5,13,4,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"14\", \"8\", \"5\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,11,4,9,14,8,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"14\", \"8\", \"5\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,11,4,9,14,8,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"14\", \"11\", \"4\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,11,4,9,14,8,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,11,4,9,14,8,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"14\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q4_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,11,4,9,14,8,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"11\", \"6\", \"1\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q5_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,11,4,9,14,8,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"8\", \"5\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q6_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,11,4,9,14,8,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"14\", \"8\", \"5\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q7_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,11,4,9,14,8,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"4\", \"9\", \"14\", \"8\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,11,4,9,14,8,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"4\", \"9\", \"14\", \"8\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,11,4,9,14,8,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"4\", \"9\", \"14\", \"8\", \"5\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q10_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,11,4,9,14,8,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"14\", \"11\", \"4\", \"9\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,11,4,9,14,8,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"3\", \"5\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q12_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,11,4,9,14,8,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"10\", \"11\", \"0\", \"0\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q13_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,11,4,9,14,8,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"14\", \"8\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q14_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,11,4,9,14,8,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"14\", \"11\", \"4\", \"9\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q15_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,11,4,9,14,8,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"15\", \"14\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,1,4,2,1,10,15,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"1\", \"10\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,1,4,2,1,10,15,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"1\", \"10\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,1,4,2,1,10,15,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"4\", \"2\", \"1\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,1,4,2,1,10,15,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"15\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,1,4,2,1,10,15,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\", \"1\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q5_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,1,4,2,1,10,15,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"5\", \"7\", \"3\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q6_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,1,4,2,1,10,15,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"10\", \"15\", \"14\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,1,4,2,1,10,15,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"2\", \"1\", \"10\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q8_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,1,4,2,1,10,15,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"15\", \"14\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,1,4,2,1,10,15,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"2\", \"1\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q10_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,1,4,2,1,10,15,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"1\", \"10\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q11_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,1,4,2,1,10,15,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"10\", \"5\", \"10\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q12_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,1,4,2,1,10,15,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"15\", \"0\", \"0\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q13_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,1,4,2,1,10,15,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"2\", \"1\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,1,4,2,1,10,15,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"8\", \"5\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q15_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,1,4,2,1,10,15,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"5\", \"6\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,7,4,15,1,0,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,7,4,15,1,0,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"0\", \"5\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,7,4,15,1,0,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"0\", \"5\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,7,4,15,1,0,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"4\", \"15\", \"1\", \"0\", \"5\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,7,4,15,1,0,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"0\", \"5\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,7,4,15,1,0,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"0\", \"5\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,7,4,15,1,0,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"4\", \"15\", \"1\", \"0\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,7,4,15,1,0,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"0\", \"5\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,7,4,15,1,0,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,7,4,15,1,0,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,7,4,15,1,0,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"11\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,7,4,15,1,0,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"5\", \"6\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,7,4,15,1,0,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"1\", \"0\", \"5\", \"6\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q13_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,7,4,15,1,0,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"5\", \"6\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q14_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,7,4,15,1,0,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"1\", \"0\", \"5\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q15_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,7,4,15,1,0,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"12\", \"4\", \"5\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,11,12,4,5,15,3", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"12\", \"4\", \"5\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,11,12,4,5,15,3", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"12\", \"4\", \"5\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,11,12,4,5,15,3", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"12\", \"4\", \"5\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,11,12,4,5,15,3", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"12\", \"4\", \"5\", \"15\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,11,12,4,5,15,3", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,11,12,4,5,15,3", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"12\", \"4\", \"5\", \"15\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,11,12,4,5,15,3", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,11,12,4,5,15,3", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"11\", \"12\", \"4\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,11,12,4,5,15,3", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"12\", \"4\", \"5\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,11,12,4,5,15,3", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,11,12,4,5,15,3", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"11\", \"12\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,11,12,4,5,15,3", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"12\", \"4\", \"5\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,11,12,4,5,15,3", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"12\", \"4\", \"5\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,11,12,4,5,15,3", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,11,12,4,5,15,3", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"5\"], \"clip_start\": 3.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q15_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,11,12,4,5,15,3", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"2\", \"6\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,1,0,15,3,8,2,6", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,1,0,15,3,8,2,6", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,1,0,15,3,8,2,6", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"15\", \"3\", \"8\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,1,0,15,3,8,2,6", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,1,0,15,3,8,2,6", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,1,0,15,3,8,2,6", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"2\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,1,0,15,3,8,2,6", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"15\", \"3\", \"8\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,1,0,15,3,8,2,6", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"2\", \"6\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,1,0,15,3,8,2,6", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"1\", \"0\", \"15\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q9_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,1,0,15,3,8,2,6", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"1\", \"0\", \"15\", \"3\", \"8\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q10_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,1,0,15,3,8,2,6", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"15\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q11_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,1,0,15,3,8,2,6", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"15\", \"3\", \"8\", \"2\", \"6\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q12_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,1,0,15,3,8,2,6", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"15\", \"3\", \"8\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q13_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,1,0,15,3,8,2,6", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"11\", \"2\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q14_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,1,0,15,3,8,2,6", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"13\", \"9\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q15_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,1,0,15,3,8,2,6", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"11\", \"15\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,4,2,11,15,7,8,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"11\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,4,2,11,15,7,8,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"15\", \"7\", \"8\", \"6\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,4,2,11,15,7,8,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"2\", \"11\", \"15\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,4,2,11,15,7,8,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"15\", \"7\", \"8\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,4,2,11,15,7,8,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"2\", \"11\", \"15\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,4,2,11,15,7,8,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"11\", \"15\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,4,2,11,15,7,8,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"7\", \"8\", \"6\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,4,2,11,15,7,8,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"8\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,4,2,11,15,7,8,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"11\", \"15\", \"7\", \"8\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,4,2,11,15,7,8,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,4,2,11,15,7,8,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"11\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,4,2,11,15,7,8,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"11\", \"15\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,4,2,11,15,7,8,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"11\", \"15\", \"7\", \"8\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,4,2,11,15,7,8,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"11\", \"15\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,4,2,11,15,7,8,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"2\", \"11\", \"15\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,4,2,11,15,7,8,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"3\", \"13\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,3,13,3,4,11,14", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"3\", \"4\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,3,13,3,4,11,14", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"4\", \"11\", \"14\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,3,13,3,4,11,14", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"3\", \"13\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,3,13,3,4,11,14", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"13\", \"3\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,3,13,3,4,11,14", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"3\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,3,13,3,4,11,14", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,3,13,3,4,11,14", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"13\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,3,13,3,4,11,14", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"13\", \"3\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,3,13,3,4,11,14", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"3\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,3,13,3,4,11,14", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"13\", \"3\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,3,13,3,4,11,14", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"4\", \"11\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,3,13,3,4,11,14", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,3,13,3,4,11,14", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"3\", \"13\", \"3\", \"4\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q13_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,3,13,3,4,11,14", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"3\", \"4\", \"11\", \"14\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,3,13,3,4,11,14", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"3\", \"13\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,3,13,3,4,11,14", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,10,1,15,14,4,0,0", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"15\", \"14\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,10,1,15,14,4,0,0", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,10,1,15,14,4,0,0", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"15\", \"14\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,10,1,15,14,4,0,0", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"4\", \"0\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,10,1,15,14,4,0,0", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"15\", \"14\", \"4\", \"0\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,10,1,15,14,4,0,0", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"10\", \"1\", \"15\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,10,1,15,14,4,0,0", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"10\", \"1\", \"15\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,10,1,15,14,4,0,0", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"15\", \"14\", \"4\", \"0\", \"0\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,10,1,15,14,4,0,0", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"4\", \"0\", \"0\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,10,1,15,14,4,0,0", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"0\", \"0\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,10,1,15,14,4,0,0", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,10,1,15,14,4,0,0", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"0\", \"0\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,10,1,15,14,4,0,0", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"12\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,10,1,15,14,4,0,0", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"14\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q14_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,10,1,15,14,4,0,0", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_ELOW", "source_split": "substream_video", "length_L": 8, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"10\", \"1\", \"15\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q15_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,10,1,15,14,4,0,0", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,0,9,11,7,11,13", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"13\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,0,9,11,7,11,13", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"0\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,0,9,11,7,11,13", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"11\", \"7\", \"11\", \"13\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q3_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,0,9,11,7,11,13", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"0\", \"9\", \"11\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q4_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,0,9,11,7,11,13", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"0\", \"9\", \"11\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,0,9,11,7,11,13", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"11\", \"7\", \"11\", \"13\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,0,9,11,7,11,13", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"5\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q7_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,0,9,11,7,11,13", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,0,9,11,7,11,13", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"7\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,0,9,11,7,11,13", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"0\", \"9\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q10_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,0,9,11,7,11,13", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"0\", \"9\", \"11\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q11_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,0,9,11,7,11,13", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"0\", \"9\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q12_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,0,9,11,7,11,13", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"0\", \"9\", \"11\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q13_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,0,9,11,7,11,13", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"15\", \"3\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q14_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,0,9,11,7,11,13", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"11\", \"7\", \"11\", \"13\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q15_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,0,9,11,7,11,13", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"8\", \"7\", \"5\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,13,8,7,5,14,14", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"13\", \"8\", \"7\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,13,8,7,5,14,14", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,13,8,7,5,14,14", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"7\", \"5\", \"14\", \"14\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,13,8,7,5,14,14", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"13\", \"8\", \"7\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,13,8,7,5,14,14", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"5\", \"14\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,13,8,7,5,14,14", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"14\", \"14\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,13,8,7,5,14,14", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,13,8,7,5,14,14", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,13,8,7,5,14,14", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"8\", \"7\", \"5\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,13,8,7,5,14,14", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"13\", \"8\", \"7\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,13,8,7,5,14,14", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q11_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,13,8,7,5,14,14", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"5\", \"14\", \"14\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,13,8,7,5,14,14", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"14\", \"14\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q13_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,13,8,7,5,14,14", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"12\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,13,8,7,5,14,14", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"8\", \"7\", \"5\", \"14\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q15_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,13,8,7,5,14,14", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"5\", \"4\", \"5\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,5,4,5,11,10,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"5\", \"11\", \"10\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,5,4,5,11,10,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"5\", \"4\", \"5\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,5,4,5,11,10,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"5\", \"11\", \"10\", \"0\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,5,4,5,11,10,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"5\", \"11\", \"10\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,5,4,5,11,10,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"5\", \"4\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q5_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,5,4,5,11,10,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"4\", \"5\", \"11\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,5,4,5,11,10,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"5\", \"4\", \"5\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,5,4,5,11,10,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"5\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q8_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,5,4,5,11,10,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"5\", \"4\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q9_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,5,4,5,11,10,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"5\", \"11\", \"10\", \"0\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q10_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,5,4,5,11,10,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"4\", \"5\", \"11\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q11_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,5,4,5,11,10,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"4\", \"5\", \"11\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q12_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,5,4,5,11,10,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"9\", \"1\", \"6\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q13_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,5,4,5,11,10,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"4\", \"5\", \"11\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q14_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,5,4,5,11,10,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"0\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q15_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,5,4,5,11,10,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\", \"11\", \"15\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,3,11,5,1,11,15,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\", \"11\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,3,11,5,1,11,15,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"11\", \"15\", \"11\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,3,11,5,1,11,15,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"11\", \"5\", \"1\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,3,11,5,1,11,15,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,3,11,5,1,11,15,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\", \"11\", \"15\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,3,11,5,1,11,15,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,3,11,5,1,11,15,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"11\", \"5\", \"1\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,3,11,5,1,11,15,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"11\", \"15\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,3,11,5,1,11,15,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"5\", \"1\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,3,11,5,1,11,15,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"11\", \"15\", \"11\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,3,11,5,1,11,15,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,3,11,5,1,11,15,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"11\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,3,11,5,1,11,15,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q13_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,3,11,5,1,11,15,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"9\", \"3\", \"13\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q14_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,3,11,5,1,11,15,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"11\", \"15\", \"11\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q15_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,3,11,5,1,11,15,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"8\", \"13\", \"10\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,13,8,13,10,10,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"13\", \"8\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,13,8,13,10,10,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"8\", \"13\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,13,8,13,10,10,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,13,8,13,10,10,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,13,8,13,10,10,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"13\", \"10\", \"10\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,13,8,13,10,10,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"10\", \"10\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,13,8,13,10,10,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"13\", \"10\", \"10\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,13,8,13,10,10,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"13\", \"10\", \"10\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,13,8,13,10,10,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,13,8,13,10,10,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,13,8,13,10,10,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"8\", \"13\", \"10\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,13,8,13,10,10,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"13\", \"8\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,13,8,13,10,10,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"8\", \"13\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,13,8,13,10,10,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"13\", \"8\", \"13\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,13,8,13,10,10,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"8\", \"13\", \"10\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,13,8,13,10,10,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"8\", \"12\", \"5\", \"13\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,12,5,8,12,5,13", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"8\", \"12\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,12,5,8,12,5,13", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"12\", \"5\", \"8\", \"12\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,12,5,8,12,5,13", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,12,5,8,12,5,13", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"8\", \"12\", \"5\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,12,5,8,12,5,13", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"8\", \"12\", \"5\", \"13\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,12,5,8,12,5,13", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"12\", \"5\", \"8\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q6_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,12,5,8,12,5,13", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"12\", \"5\", \"8\", \"12\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q7_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,12,5,8,12,5,13", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"8\", \"12\", \"5\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,12,5,8,12,5,13", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"8\", \"12\", \"5\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q9_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,12,5,8,12,5,13", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"8\", \"12\", \"5\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q10_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,12,5,8,12,5,13", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"8\", \"12\", \"5\", \"13\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,12,5,8,12,5,13", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"12\", \"5\", \"8\", \"12\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,12,5,8,12,5,13", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"8\", \"12\", \"5\", \"13\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q13_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,12,5,8,12,5,13", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\", \"2\", \"15\", \"0\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q14_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,12,5,8,12,5,13", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"12\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q15_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,12,5,8,12,5,13", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"11\", \"10\", \"12\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,15,2,11,10,12,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"10\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,15,2,11,10,12,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"12\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,15,2,11,10,12,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"15\", \"2\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,15,2,11,10,12,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,15,2,11,10,12,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"11\", \"10\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,15,2,11,10,12,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"12\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,15,2,11,10,12,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,15,2,11,10,12,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"2\", \"11\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,15,2,11,10,12,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"8\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,15,2,11,10,12,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"15\", \"2\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q10_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,15,2,11,10,12,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"10\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q11_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,15,2,11,10,12,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q12_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,15,2,11,10,12,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"10\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q13_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,15,2,11,10,12,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"10\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q14_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,15,2,11,10,12,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"15\", \"2\", \"11\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q15_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,15,2,11,10,12,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"4\", \"7\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,9,5,15,4,7,12", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"5\", \"15\", \"4\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,9,5,15,4,7,12", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"5\", \"15\", \"4\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,9,5,15,4,7,12", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,9,5,15,4,7,12", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"15\", \"4\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,9,5,15,4,7,12", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"5\", \"15\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,9,5,15,4,7,12", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"15\", \"4\", \"7\", \"12\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,9,5,15,4,7,12", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"15\", \"4\", \"7\", \"12\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,9,5,15,4,7,12", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,9,5,15,4,7,12", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"13\", \"3\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q9_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,9,5,15,4,7,12", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"5\", \"15\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q10_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,9,5,15,4,7,12", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"5\", \"15\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,9,5,15,4,7,12", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"15\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q12_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,9,5,15,4,7,12", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"4\", \"7\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q13_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,9,5,15,4,7,12", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"5\", \"15\", \"4\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q14_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,9,5,15,4,7,12", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"15\", \"4\", \"7\", \"12\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q15_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,9,5,15,4,7,12", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"14\", \"9\", \"6\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,14,14,9,6,12,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"14\", \"9\", \"6\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,14,14,9,6,12,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"0\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,14,14,9,6,12,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,14,14,9,6,12,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"14\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,14,14,9,6,12,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"14\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,14,14,9,6,12,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,14,14,9,6,12,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"9\", \"6\", \"12\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,14,14,9,6,12,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"14\", \"14\", \"9\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,14,14,9,6,12,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"6\", \"12\", \"0\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,14,14,9,6,12,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,14,14,9,6,12,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"9\", \"6\", \"12\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,14,14,9,6,12,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,14,14,9,6,12,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"9\", \"6\", \"12\", \"0\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,14,14,9,6,12,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"14\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,14,14,9,6,12,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 3.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,14,14,9,6,12,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,13,11,15,2,5,15", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"11\", \"15\", \"2\", \"5\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,13,11,15,2,5,15", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"5\", \"15\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,13,11,15,2,5,15", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,13,11,15,2,5,15", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"2\"], \"clip_start\": 3.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,13,11,15,2,5,15", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"13\", \"11\", \"15\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,13,11,15,2,5,15", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"11\", \"15\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,13,11,15,2,5,15", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,13,11,15,2,5,15", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"13\", \"11\", \"15\", \"2\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,13,11,15,2,5,15", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"11\", \"15\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,13,11,15,2,5,15", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,13,11,15,2,5,15", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"13\", \"11\", \"15\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,13,11,15,2,5,15", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"11\", \"15\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,13,11,15,2,5,15", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"11\", \"15\", \"2\", \"5\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,13,11,15,2,5,15", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"13\", \"11\", \"15\", \"2\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,13,11,15,2,5,15", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"11\", \"15\", \"2\", \"5\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,13,11,15,2,5,15", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"14\", \"14\", \"13\", \"10\", \"12\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,14,13,10,12,2,9", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,14,13,10,12,2,9", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"14\", \"14\", \"13\", \"10\", \"12\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,14,13,10,12,2,9", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"13\", \"10\", \"12\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,14,13,10,12,2,9", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"13\", \"10\", \"12\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,14,13,10,12,2,9", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"13\", \"10\", \"12\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,14,13,10,12,2,9", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"2\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,14,13,10,12,2,9", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"10\", \"12\", \"2\", \"9\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,14,13,10,12,2,9", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"13\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,14,13,10,12,2,9", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,14,13,10,12,2,9", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"10\", \"12\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,14,13,10,12,2,9", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"2\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,14,13,10,12,2,9", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"10\", \"12\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,14,13,10,12,2,9", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,14,13,10,12,2,9", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"14\", \"14\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,14,13,10,12,2,9", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"10\", \"12\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,14,13,10,12,2,9", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"1\", \"13\", \"8\", \"9\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,11,13,1,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"11\", \"13\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,11,13,1,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"13\", \"8\", \"9\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,11,13,1,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"13\", \"8\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,11,13,1,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,11,13,1,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"11\", \"13\", \"1\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,11,13,1,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"13\", \"8\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,11,13,1,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"4\", \"8\", \"6\", \"0\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,11,13,1,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q8_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,11,13,1,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q9_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,11,13,1,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"1\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q10_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,11,13,1,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"11\", \"13\", \"1\", \"13\", \"8\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q11_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,11,13,1,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"8\", \"2\", \"5\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q12_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,11,13,1,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"13\", \"8\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q13_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,11,13,1,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"11\", \"13\", \"1\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q14_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,11,13,1,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"11\", \"12\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q15_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,11,13,1,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"9\", \"9\", \"11\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,7,5,1,9,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"9\", \"9\", \"11\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,7,5,1,9,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"7\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,7,5,1,9,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,7,5,1,9,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q4_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,7,5,1,9,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"11\", \"6\", \"1\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q5_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,7,5,1,9,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"9\", \"11\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q6_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,7,5,1,9,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"9\", \"9\", \"11\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q7_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,7,5,1,9,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"1\", \"9\", \"9\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,7,5,1,9,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"5\", \"1\", \"9\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,7,5,1,9,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"1\", \"9\", \"9\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q10_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,7,5,1,9,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"7\", \"5\", \"1\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,7,5,1,9,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"3\", \"5\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q12_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,7,5,1,9,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"10\", \"11\", \"0\", \"0\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q13_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,7,5,1,9,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"9\", \"9\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q14_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,7,5,1,9,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"7\", \"5\", \"1\", \"9\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q15_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,7,5,1,9,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"1\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,9,15,1,3,14,1,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"3\", \"14\", \"1\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,9,15,1,3,14,1,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"3\", \"14\", \"1\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,9,15,1,3,14,1,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"15\", \"1\", \"3\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,9,15,1,3,14,1,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"1\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,9,15,1,3,14,1,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\", \"1\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q5_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,9,15,1,3,14,1,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"5\", \"7\", \"3\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q6_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,9,15,1,3,14,1,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"14\", \"1\", \"9\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,9,15,1,3,14,1,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"15\", \"1\", \"3\", \"14\", \"1\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q8_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,9,15,1,3,14,1,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"1\", \"9\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,9,15,1,3,14,1,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"15\", \"1\", \"3\", \"14\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q10_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,9,15,1,3,14,1,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"3\", \"14\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q11_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,9,15,1,3,14,1,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"10\", \"5\", \"10\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q12_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,9,15,1,3,14,1,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"15\", \"0\", \"0\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q13_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,9,15,1,3,14,1,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"15\", \"1\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,9,15,1,3,14,1,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"8\", \"5\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q15_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,9,15,1,3,14,1,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"6\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,5,9,11,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,5,9,11,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"2\", \"7\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,5,9,11,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"2\", \"7\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,5,9,11,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"9\", \"11\", \"2\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,5,9,11,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"2\", \"7\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,5,9,11,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"2\", \"7\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,5,9,11,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"13\", \"5\", \"9\", \"11\", \"2\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,5,9,11,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"2\", \"7\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,5,9,11,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,5,9,11,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,5,9,11,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"11\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,5,9,11,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"7\", \"6\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,5,9,11,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"9\", \"11\", \"2\", \"7\", \"6\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q13_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,5,9,11,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"7\", \"6\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q14_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,5,9,11,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"9\", \"11\", \"2\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q15_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,5,9,11,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"5\", \"0\", \"15\", \"12\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,15,5,0,15,12,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"5\", \"0\", \"15\", \"12\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,15,5,0,15,12,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"0\", \"15\", \"12\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,15,5,0,15,12,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"5\", \"0\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,15,5,0,15,12,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"0\", \"15\", \"12\", \"6\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,15,5,0,15,12,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,15,5,0,15,12,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"0\", \"15\", \"12\", \"6\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,15,5,0,15,12,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,15,5,0,15,12,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"5\", \"0\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,15,5,0,15,12,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"0\", \"15\", \"12\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,15,5,0,15,12,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,15,5,0,15,12,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,15,5,0,15,12,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"5\", \"0\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,15,5,0,15,12,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"0\", \"15\", \"12\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,15,5,0,15,12,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,15,5,0,15,12,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"15\"], \"clip_start\": 3.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q15_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,15,5,0,15,12,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"7\", \"3\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,11,1,14,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,11,1,14,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,11,1,14,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"1\", \"14\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,11,1,14,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,11,1,14,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,11,1,14,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"7\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,11,1,14,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"1\", \"14\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,11,1,14,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"3\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,11,1,14,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"7\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q9_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,11,1,14,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"7\", \"11\", \"1\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q10_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,11,1,14,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"11\", \"1\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q11_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,11,1,14,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"1\", \"14\", \"7\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q12_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,11,1,14,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"1\", \"14\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q13_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,11,1,14,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"11\", \"2\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q14_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,11,1,14,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"13\", \"9\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q15_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,11,1,14,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"8\", \"8\", \"6\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,8,6,4,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"8\", \"8\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,8,6,4,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"8\", \"6\", \"4\", \"5\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,8,6,4,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"10\", \"8\", \"8\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,8,6,4,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"8\", \"6\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,8,6,4,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"10\", \"8\", \"8\", \"6\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,8,6,4,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"8\", \"8\", \"6\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,8,6,4,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"8\", \"6\", \"4\", \"5\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,8,6,4,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"4\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,8,6,4,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"8\", \"8\", \"6\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,8,6,4,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"8\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,8,6,4,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"8\", \"8\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,8,6,4,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"8\", \"8\", \"6\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,8,6,4,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"8\", \"8\", \"6\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,8,6,4,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"8\", \"8\", \"6\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,8,6,4,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"10\", \"8\", \"8\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,8,6,4,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"5\", \"3\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,5,3,14,2,15,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"3\", \"14\", \"2\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,5,3,14,2,15,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"2\", \"15\", \"2\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,5,3,14,2,15,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"5\", \"3\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,5,3,14,2,15,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"3\", \"14\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,5,3,14,2,15,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"5\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,5,3,14,2,15,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,5,3,14,2,15,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"3\", \"14\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,5,3,14,2,15,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"3\", \"14\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,5,3,14,2,15,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"3\", \"14\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,5,3,14,2,15,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"3\", \"14\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,5,3,14,2,15,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"2\", \"15\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,5,3,14,2,15,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,5,3,14,2,15,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"5\", \"3\", \"14\", \"2\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q13_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,5,3,14,2,15,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"3\", \"14\", \"2\", \"15\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,5,3,14,2,15,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"5\", \"3\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,5,3,14,2,15,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,11,13,14,11,2,9,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"11\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,11,13,14,11,2,9,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,11,13,14,11,2,9,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"11\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,11,13,14,11,2,9,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"2\", \"9\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,11,13,14,11,2,9,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"11\", \"2\", \"9\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,11,13,14,11,2,9,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"13\", \"14\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,11,13,14,11,2,9,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"13\", \"14\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,11,13,14,11,2,9,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"11\", \"2\", \"9\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,11,13,14,11,2,9,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"2\", \"9\", \"11\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,11,13,14,11,2,9,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"9\", \"11\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,11,13,14,11,2,9,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,11,13,14,11,2,9,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"9\", \"11\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,11,13,14,11,2,9,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"12\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,11,13,14,11,2,9,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"14\", \"11\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q14_true_sequential.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,11,13,14,11,2,9,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L008_NO_RULES", "source_split": "substream_video", "length_L": 8, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"13\", \"14\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q15_true_spatial.mp4", "video_path": "videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,11,13,14,11,2,9,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,11,7,1,5,3,4,8,1,7,12,13,14,4,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"14\", \"4\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,11,7,1,5,3,4,8,1,7,12,13,14,4,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,11,7,1,5,3,4,8,1,7,12,13,14,4,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"1\", \"7\", \"12\", \"13\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q3_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,11,7,1,5,3,4,8,1,7,12,13,14,4,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"1\", \"5\", \"3\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q4_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,11,7,1,5,3,4,8,1,7,12,13,14,4,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"1\", \"5\", \"3\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,11,7,1,5,3,4,8,1,7,12,13,14,4,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"12\", \"13\", \"14\", \"4\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,11,7,1,5,3,4,8,1,7,12,13,14,4,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"5\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q7_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,11,7,1,5,3,4,8,1,7,12,13,14,4,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"4\", \"8\"], \"clip_start\": 6.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,11,7,1,5,3,4,8,1,7,12,13,14,4,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"7\"], \"clip_start\": 10.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,11,7,1,5,3,4,8,1,7,12,13,14,4,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"7\", \"1\", \"5\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q10_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,11,7,1,5,3,4,8,1,7,12,13,14,4,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"11\", \"7\", \"1\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q11_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,11,7,1,5,3,4,8,1,7,12,13,14,4,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"7\", \"1\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q12_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,11,7,1,5,3,4,8,1,7,12,13,14,4,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"7\", \"1\", \"5\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q13_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,11,7,1,5,3,4,8,1,7,12,13,14,4,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"15\", \"3\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q14_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,11,7,1,5,3,4,8,1,7,12,13,14,4,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"13\", \"14\", \"4\", \"12\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q15_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,11,7,1,5,3,4,8,1,7,12,13,14,4,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"8\", \"6\", \"10\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,6,10,8,6,10,8,6,10,8,6,10,8,6,10", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"6\", \"10\", \"8\", \"6\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,6,10,8,6,10,8,6,10,8,6,10,8,6,10", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,6,10,8,6,10,8,6,10,8,6,10,8,6,10", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"8\", \"6\", \"10\", \"8\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,6,10,8,6,10,8,6,10,8,6,10,8,6,10", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"6\", \"10\", \"8\", \"6\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,6,10,8,6,10,8,6,10,8,6,10,8,6,10", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"8\", \"6\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,6,10,8,6,10,8,6,10,8,6,10,8,6,10", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"6\", \"10\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,6,10,8,6,10,8,6,10,8,6,10,8,6,10", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,6,10,8,6,10,8,6,10,8,6,10,8,6,10", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,6,10,8,6,10,8,6,10,8,6,10,8,6,10", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"10\", \"8\", \"6\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,6,10,8,6,10,8,6,10,8,6,10,8,6,10", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"8\", \"6\", \"10\", \"8\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,6,10,8,6,10,8,6,10,8,6,10,8,6,10", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q11_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,6,10,8,6,10,8,6,10,8,6,10,8,6,10", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"6\", \"10\", \"8\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,6,10,8,6,10,8,6,10,8,6,10,8,6,10", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"8\", \"6\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q13_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,6,10,8,6,10,8,6,10,8,6,10,8,6,10", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,6,10,8,6,10,8,6,10,8,6,10,8,6,10", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"8\", \"6\", \"10\", \"8\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q15_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,6,10,8,6,10,8,6,10,8,6,10,8,6,10", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"4\", \"6\", \"5\", \"9\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,6,4,6,4,6,5,9,3,10,8,12,8,12,7,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"10\", \"8\", \"12\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,6,4,6,4,6,5,9,3,10,8,12,8,12,7,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"4\", \"6\", \"4\", \"6\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,6,4,6,4,6,5,9,3,10,8,12,8,12,7,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"8\", \"12\", \"7\", \"15\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,6,4,6,4,6,5,9,3,10,8,12,8,12,7,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"8\", \"12\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,6,4,6,4,6,5,9,3,10,8,12,8,12,7,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"4\", \"6\", \"4\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q5_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,6,4,6,4,6,5,9,3,10,8,12,8,12,7,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"9\", \"3\", \"10\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,6,4,6,4,6,5,9,3,10,8,12,8,12,7,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"4\", \"6\", \"4\", \"6\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,6,4,6,4,6,5,9,3,10,8,12,8,12,7,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"9\", \"3\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q8_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,6,4,6,4,6,5,9,3,10,8,12,8,12,7,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"4\", \"6\", \"5\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q9_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,6,4,6,4,6,5,9,3,10,8,12,8,12,7,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"10\", \"8\", \"12\", \"8\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q10_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,6,4,6,4,6,5,9,3,10,8,12,8,12,7,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"9\", \"3\", \"10\", \"8\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q11_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,6,4,6,4,6,5,9,3,10,8,12,8,12,7,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"5\", \"9\", \"3\", \"10\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q12_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,6,4,6,4,6,5,9,3,10,8,12,8,12,7,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"9\", \"1\", \"6\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q13_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,6,4,6,4,6,5,9,3,10,8,12,8,12,7,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"5\", \"9\", \"3\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q14_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,6,4,6,4,6,5,9,3,10,8,12,8,12,7,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"0\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q15_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,6,4,6,4,6,5,9,3,10,8,12,8,12,7,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"3\", \"4\", \"2\", \"9\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,2,9,4,13,8,6,15,3,4,2,9,4,13,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"3\", \"4\", \"2\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,2,9,4,13,8,6,15,3,4,2,9,4,13,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"4\", \"13\", \"8\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,2,9,4,13,8,6,15,3,4,2,9,4,13,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"9\", \"4\", \"13\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,2,9,4,13,8,6,15,3,4,2,9,4,13,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,2,9,4,13,8,6,15,3,4,2,9,4,13,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"3\", \"4\", \"2\", \"9\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,2,9,4,13,8,6,15,3,4,2,9,4,13,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 7.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,2,9,4,13,8,6,15,3,4,2,9,4,13,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"4\", \"13\", \"8\", \"6\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,2,9,4,13,8,6,15,3,4,2,9,4,13,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"9\", \"4\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,2,9,4,13,8,6,15,3,4,2,9,4,13,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"4\", \"13\", \"8\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,2,9,4,13,8,6,15,3,4,2,9,4,13,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"4\", \"13\", \"8\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,2,9,4,13,8,6,15,3,4,2,9,4,13,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,2,9,4,13,8,6,15,3,4,2,9,4,13,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"4\", \"2\", \"9\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,2,9,4,13,8,6,15,3,4,2,9,4,13,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 13.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,2,9,4,13,8,6,15,3,4,2,9,4,13,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"4\", \"13\", \"8\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,2,9,4,13,8,6,15,3,4,2,9,4,13,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,2,9,4,13,8,6,15,3,4,2,9,4,13,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"7\", \"3\", \"7\", \"2\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,2,1,3,7,7,3,7,2,9,0,4,12,3,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"1\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,2,1,3,7,7,3,7,2,9,0,4,12,3,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"7\", \"3\", \"7\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,2,1,3,7,7,3,7,2,9,0,4,12,3,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,2,1,3,7,7,3,7,2,9,0,4,12,3,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 11.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,2,1,3,7,7,3,7,2,9,0,4,12,3,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"2\", \"9\", \"0\", \"4\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,2,1,3,7,7,3,7,2,9,0,4,12,3,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"9\", \"0\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,2,1,3,7,7,3,7,2,9,0,4,12,3,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"9\", \"0\", \"4\", \"12\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,2,1,3,7,7,3,7,2,9,0,4,12,3,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"2\", \"9\", \"0\", \"4\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,2,1,3,7,7,3,7,2,9,0,4,12,3,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,2,1,3,7,7,3,7,2,9,0,4,12,3,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,2,1,3,7,7,3,7,2,9,0,4,12,3,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"3\", \"7\", \"2\", \"9\", \"0\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,2,1,3,7,7,3,7,2,9,0,4,12,3,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"1\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,2,1,3,7,7,3,7,2,9,0,4,12,3,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"7\", \"3\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,2,1,3,7,7,3,7,2,9,0,4,12,3,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"3\", \"7\", \"7\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,2,1,3,7,7,3,7,2,9,0,4,12,3,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"7\", \"3\", \"7\", \"2\", \"9\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,2,1,3,7,7,3,7,2,9,0,4,12,3,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"15\", \"8\", \"15\", \"1\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,5,8,2,9,15,3,7,6,15,8,15,1,6,9", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"3\", \"7\", \"6\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,5,8,2,9,15,3,7,6,15,8,15,1,6,9", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"8\", \"2\", \"9\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,5,8,2,9,15,3,7,6,15,8,15,1,6,9", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,5,8,2,9,15,3,7,6,15,8,15,1,6,9", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"6\", \"15\", \"8\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,5,8,2,9,15,3,7,6,15,8,15,1,6,9", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"8\", \"15\", \"1\", \"6\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,5,8,2,9,15,3,7,6,15,8,15,1,6,9", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"5\", \"8\", \"2\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q6_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,5,8,2,9,15,3,7,6,15,8,15,1,6,9", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"8\", \"2\", \"9\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q7_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,5,8,2,9,15,3,7,6,15,8,15,1,6,9", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"6\", \"15\", \"8\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,5,8,2,9,15,3,7,6,15,8,15,1,6,9", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"8\", \"15\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q9_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,5,8,2,9,15,3,7,6,15,8,15,1,6,9", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"15\", \"8\", \"15\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q10_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,5,8,2,9,15,3,7,6,15,8,15,1,6,9", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"8\", \"15\", \"1\", \"6\", \"9\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,5,8,2,9,15,3,7,6,15,8,15,1,6,9", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"8\", \"2\", \"9\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,5,8,2,9,15,3,7,6,15,8,15,1,6,9", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"8\", \"15\", \"1\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q13_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,5,8,2,9,15,3,7,6,15,8,15,1,6,9", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\", \"2\", \"15\", \"0\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q14_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,5,8,2,9,15,3,7,6,15,8,15,1,6,9", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"8\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q15_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,5,8,2,9,15,3,7,6,15,8,15,1,6,9", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"2\", \"9\", \"11\", \"13\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,13,8,12,0,1,9,0,0,2,9,11,13,8,12,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"13\", \"8\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,13,8,12,0,1,9,0,0,2,9,11,13,8,12,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"8\", \"12\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,13,8,12,0,1,9,0,0,2,9,11,13,8,12,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"0\", \"1\", \"9\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,13,8,12,0,1,9,0,0,2,9,11,13,8,12,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,13,8,12,0,1,9,0,0,2,9,11,13,8,12,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"0\", \"0\", \"2\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,13,8,12,0,1,9,0,0,2,9,11,13,8,12,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"8\", \"12\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,13,8,12,0,1,9,0,0,2,9,11,13,8,12,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,13,8,12,0,1,9,0,0,2,9,11,13,8,12,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"1\", \"9\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,13,8,12,0,1,9,0,0,2,9,11,13,8,12,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"8\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,13,8,12,0,1,9,0,0,2,9,11,13,8,12,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"0\", \"1\", \"9\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q10_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,13,8,12,0,1,9,0,0,2,9,11,13,8,12,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"2\", \"9\", \"11\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q11_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,13,8,12,0,1,9,0,0,2,9,11,13,8,12,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q12_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,13,8,12,0,1,9,0,0,2,9,11,13,8,12,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"11\", \"13\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q13_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,13,8,12,0,1,9,0,0,2,9,11,13,8,12,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"2\", \"9\", \"11\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q14_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,13,8,12,0,1,9,0,0,2,9,11,13,8,12,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"12\", \"0\", \"1\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q15_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,13,8,12,0,1,9,0,0,2,9,11,13,8,12,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"2\", \"3\", \"8\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,11,1,14,4,14,8,2,3,8,2,3,8,2", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"14\", \"8\", \"2\", \"3\", \"8\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,11,1,14,4,14,8,2,3,8,2,3,8,2", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"11\", \"1\", \"14\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,11,1,14,4,14,8,2,3,8,2,3,8,2", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"4\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,11,1,14,4,14,8,2,3,8,2,3,8,2", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"2\", \"3\", \"8\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,11,1,14,4,14,8,2,3,8,2,3,8,2", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"4\", \"14\", \"8\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,11,1,14,4,14,8,2,3,8,2,3,8,2", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"8\", \"2\", \"3\", \"8\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,11,1,14,4,14,8,2,3,8,2,3,8,2", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"2\", \"3\", \"8\", \"2\", \"3\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,11,1,14,4,14,8,2,3,8,2,3,8,2", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\"], \"clip_start\": 13.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,11,1,14,4,14,8,2,3,8,2,3,8,2", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"13\", \"3\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q9_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,11,1,14,4,14,8,2,3,8,2,3,8,2", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"11\", \"1\", \"14\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q10_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,11,1,14,4,14,8,2,3,8,2,3,8,2", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"4\", \"14\", \"8\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,11,1,14,4,14,8,2,3,8,2,3,8,2", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"15\", \"9\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q12_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,11,1,14,4,14,8,2,3,8,2,3,8,2", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"2\", \"3\"], \"clip_start\": 11.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q13_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,11,1,14,4,14,8,2,3,8,2,3,8,2", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"14\", \"8\", \"2\", \"3\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q14_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,11,1,14,4,14,8,2,3,8,2,3,8,2", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"2\", \"3\", \"8\", \"2\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q15_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,11,1,14,4,14,8,2,3,8,2,3,8,2", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"13\", \"10\", \"12\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,2,1,7,0,13,10,12,3,13,9,10,12,3,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"13\", \"10\", \"12\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,2,1,7,0,13,10,12,3,13,9,10,12,3,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"3\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,2,1,7,0,13,10,12,3,13,9,10,12,3,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,2,1,7,0,13,10,12,3,13,9,10,12,3,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"13\", \"10\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,2,1,7,0,13,10,12,3,13,9,10,12,3,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"13\", \"10\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,2,1,7,0,13,10,12,3,13,9,10,12,3,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,2,1,7,0,13,10,12,3,13,9,10,12,3,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"3\", \"13\", \"9\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,2,1,7,0,13,10,12,3,13,9,10,12,3,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"1\", \"7\", \"0\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,2,1,7,0,13,10,12,3,13,9,10,12,3,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"10\", \"12\", \"3\", \"13\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,2,1,7,0,13,10,12,3,13,9,10,12,3,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,2,1,7,0,13,10,12,3,13,9,10,12,3,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"12\", \"3\", \"13\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,2,1,7,0,13,10,12,3,13,9,10,12,3,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,2,1,7,0,13,10,12,3,13,9,10,12,3,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"9\", \"10\", \"12\", \"3\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,2,1,7,0,13,10,12,3,13,9,10,12,3,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"2\", \"1\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,2,1,7,0,13,10,12,3,13,9,10,12,3,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 7.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,2,1,7,0,13,10,12,3,13,9,10,12,3,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,0,13,3,3,2,11,15,1,7,3,10,3,1,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"3\", \"10\", \"3\", \"1\", \"11\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,0,13,3,3,2,11,15,1,7,3,10,3,1,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"1\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,0,13,3,3,2,11,15,1,7,3,10,3,1,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"0\", \"13\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,0,13,3,3,2,11,15,1,7,3,10,3,1,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"7\"], \"clip_start\": 8.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,0,13,3,3,2,11,15,1,7,3,10,3,1,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"0\", \"13\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,0,13,3,3,2,11,15,1,7,3,10,3,1,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"11\", \"15\", \"1\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,0,13,3,3,2,11,15,1,7,3,10,3,1,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,0,13,3,3,2,11,15,1,7,3,10,3,1,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"0\", \"13\", \"3\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,0,13,3,3,2,11,15,1,7,3,10,3,1,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"11\", \"15\", \"1\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,0,13,3,3,2,11,15,1,7,3,10,3,1,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,0,13,3,3,2,11,15,1,7,3,10,3,1,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"0\", \"13\", \"3\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,0,13,3,3,2,11,15,1,7,3,10,3,1,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"1\", \"7\"], \"clip_start\": 7.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,0,13,3,3,2,11,15,1,7,3,10,3,1,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"11\", \"15\", \"1\", \"7\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,0,13,3,3,2,11,15,1,7,3,10,3,1,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"0\", \"13\", \"3\", \"3\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,0,13,3,3,2,11,15,1,7,3,10,3,1,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"3\", \"10\", \"3\", \"1\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,0,13,3,3,2,11,15,1,7,3,10,3,1,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"15\", \"7\", \"8\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,15,7,8,14,12,10,11,4,13,0,15,12,10,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,15,7,8,14,12,10,11,4,13,0,15,12,10,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"15\", \"7\", \"8\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,15,7,8,14,12,10,11,4,13,0,15,12,10,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"10\", \"11\", \"4\", \"13\", \"0\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,15,7,8,14,12,10,11,4,13,0,15,12,10,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"4\", \"13\", \"0\", \"15\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,15,7,8,14,12,10,11,4,13,0,15,12,10,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"10\", \"11\", \"4\", \"13\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,15,7,8,14,12,10,11,4,13,0,15,12,10,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"15\", \"12\", \"10\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,15,7,8,14,12,10,11,4,13,0,15,12,10,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"15\", \"12\", \"10\", \"15\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,15,7,8,14,12,10,11,4,13,0,15,12,10,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"10\", \"11\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,15,7,8,14,12,10,11,4,13,0,15,12,10,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 13.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,15,7,8,14,12,10,11,4,13,0,15,12,10,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"4\", \"13\", \"0\", \"15\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,15,7,8,14,12,10,11,4,13,0,15,12,10,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"10\", \"15\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,15,7,8,14,12,10,11,4,13,0,15,12,10,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"4\", \"13\", \"0\", \"15\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,15,7,8,14,12,10,11,4,13,0,15,12,10,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,15,7,8,14,12,10,11,4,13,0,15,12,10,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"15\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,15,7,8,14,12,10,11,4,13,0,15,12,10,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"4\", \"13\", \"0\", \"15\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,15,7,8,14,12,10,11,4,13,0,15,12,10,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"13\", \"7\", \"14\", \"15\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,10,9,7,15,7,14,13,7,14,13,7,14,15,10", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"9\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,10,9,7,15,7,14,13,7,14,13,7,14,15,10", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"7\", \"14\", \"15\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,10,9,7,15,7,14,13,7,14,13,7,14,15,10", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"13\", \"7\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,10,9,7,15,7,14,13,7,14,13,7,14,15,10", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,10,9,7,15,7,14,13,7,14,13,7,14,15,10", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"15\", \"7\", \"14\", \"13\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,10,9,7,15,7,14,13,7,14,13,7,14,15,10", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"14\", \"13\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,10,9,7,15,7,14,13,7,14,13,7,14,15,10", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"4\", \"8\", \"6\", \"0\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,10,9,7,15,7,14,13,7,14,13,7,14,15,10", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q8_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,10,9,7,15,7,14,13,7,14,13,7,14,15,10", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\", \"15\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q9_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,10,9,7,15,7,14,13,7,14,13,7,14,15,10", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"1\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q10_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,10,9,7,15,7,14,13,7,14,13,7,14,15,10", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"13\", \"7\", \"14\", \"13\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q11_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,10,9,7,15,7,14,13,7,14,13,7,14,15,10", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"8\", \"2\", \"5\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q12_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,10,9,7,15,7,14,13,7,14,13,7,14,15,10", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"14\", \"13\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q13_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,10,9,7,15,7,14,13,7,14,13,7,14,15,10", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"10\", \"9\", \"7\", \"15\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q14_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,10,9,7,15,7,14,13,7,14,13,7,14,15,10", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"11\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q15_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,10,9,7,15,7,14,13,7,14,13,7,14,15,10", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"4\", \"13\", \"9\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,4,0,14,15,3,6,6,15,2,6,4,13,9,6", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"6\", \"4\", \"13\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,4,0,14,15,3,6,6,15,2,6,4,13,9,6", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"14\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,4,0,14,15,3,6,6,15,2,6,4,13,9,6", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 3.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,4,0,14,15,3,6,6,15,2,6,4,13,9,6", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"2\", \"4\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q4_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,4,0,14,15,3,6,6,15,2,6,4,13,9,6", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"11\", \"6\", \"1\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q5_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,4,0,14,15,3,6,6,15,2,6,4,13,9,6", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"9\", \"6\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q6_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,4,0,14,15,3,6,6,15,2,6,4,13,9,6", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"4\", \"13\", \"9\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q7_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,4,0,14,15,3,6,6,15,2,6,4,13,9,6", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"2\", \"6\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,4,0,14,15,3,6,6,15,2,6,4,13,9,6", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"6\", \"6\", \"15\", \"2\", \"6\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,4,0,14,15,3,6,6,15,2,6,4,13,9,6", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"2\", \"6\", \"4\", \"13\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q10_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,4,0,14,15,3,6,6,15,2,6,4,13,9,6", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"4\", \"0\", \"14\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,4,0,14,15,3,6,6,15,2,6,4,13,9,6", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"3\", \"5\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q12_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,4,0,14,15,3,6,6,15,2,6,4,13,9,6", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"10\", \"11\", \"0\", \"0\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q13_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,4,0,14,15,3,6,6,15,2,6,4,13,9,6", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"6\", \"4\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q14_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,4,0,14,15,3,6,6,15,2,6,4,13,9,6", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"14\", \"15\", \"3\", \"6\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q15_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,4,0,14,15,3,6,6,15,2,6,4,13,9,6", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"7\", \"9\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,4,6,7,5,14,3,9,13,6,4,6,7,9,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"6\", \"4\", \"6\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,4,6,7,5,14,3,9,13,6,4,6,7,9,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"13\", \"6\", \"4\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,4,6,7,5,14,3,9,13,6,4,6,7,9,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"4\", \"6\", \"7\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,4,6,7,5,14,3,9,13,6,4,6,7,9,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"7\"], \"clip_start\": 11.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,4,6,7,5,14,3,9,13,6,4,6,7,9,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\", \"1\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q5_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,4,6,7,5,14,3,9,13,6,4,6,7,9,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"5\", \"7\", \"3\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q6_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,4,6,7,5,14,3,9,13,6,4,6,7,9,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"7\", \"9\", \"7\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,4,6,7,5,14,3,9,13,6,4,6,7,9,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"14\", \"3\", \"9\", \"13\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q8_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,4,6,7,5,14,3,9,13,6,4,6,7,9,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"9\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,4,6,7,5,14,3,9,13,6,4,6,7,9,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"5\", \"14\", \"3\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q10_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,4,6,7,5,14,3,9,13,6,4,6,7,9,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"3\", \"9\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q11_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,4,6,7,5,14,3,9,13,6,4,6,7,9,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"10\", \"5\", \"10\", \"7\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q12_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,4,6,7,5,14,3,9,13,6,4,6,7,9,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"15\", \"0\", \"0\", \"10\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q13_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,4,6,7,5,14,3,9,13,6,4,6,7,9,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"14\", \"3\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,4,6,7,5,14,3,9,13,6,4,6,7,9,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"8\", \"5\", \"10\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q15_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,4,6,7,5,14,3,9,13,6,4,6,7,9,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"9\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,3,9,14,9,8,12,2,14,14,9,8,12,9,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,3,9,14,9,8,12,2,14,14,9,8,12,9,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"9\", \"8\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,3,9,14,9,8,12,2,14,14,9,8,12,9,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"9\", \"8\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,3,9,14,9,8,12,2,14,14,9,8,12,9,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"2\", \"14\", \"14\", \"9\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,3,9,14,9,8,12,2,14,14,9,8,12,9,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"9\", \"8\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,3,9,14,9,8,12,2,14,14,9,8,12,9,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"9\", \"8\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,3,9,14,9,8,12,2,14,14,9,8,12,9,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"14\", \"9\", \"8\", \"12\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,3,9,14,9,8,12,2,14,14,9,8,12,9,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"2\", \"14\", \"14\"], \"clip_start\": 7.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,3,9,14,9,8,12,2,14,14,9,8,12,9,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"3\"], \"clip_start\": 6.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,3,9,14,9,8,12,2,14,14,9,8,12,9,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\"], \"clip_start\": 6.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,3,9,14,9,8,12,2,14,14,9,8,12,9,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"11\"], \"clip_start\": 13.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,3,9,14,9,8,12,2,14,14,9,8,12,9,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"8\", \"12\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,3,9,14,9,8,12,2,14,14,9,8,12,9,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"9\", \"8\", \"12\", \"9\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q13_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,3,9,14,9,8,12,2,14,14,9,8,12,9,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"9\", \"6\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q14_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,3,9,14,9,8,12,2,14,14,9,8,12,9,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"14\", \"9\", \"8\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q15_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,3,9,14,9,8,12,2,14,14,9,8,12,9,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"14\", \"6\", \"12\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,9,14,4,3,14,6,12,9,14,15,2,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"14\", \"6\", \"12\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,9,14,4,3,14,6,12,9,14,15,2,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"9\", \"14\", \"15\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,9,14,4,3,14,6,12,9,14,15,2,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"14\", \"6\", \"12\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,9,14,4,3,14,6,12,9,14,15,2,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"14\", \"15\", \"2\", \"3\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,9,14,4,3,14,6,12,9,14,15,2,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,9,14,4,3,14,6,12,9,14,15,2,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"15\", \"2\", \"3\", \"8\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,9,14,4,3,14,6,12,9,14,15,2,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,9,14,4,3,14,6,12,9,14,15,2,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"14\", \"4\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,9,14,4,3,14,6,12,9,14,15,2,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"9\", \"14\", \"15\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,9,14,4,3,14,6,12,9,14,15,2,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,9,14,4,3,14,6,12,9,14,15,2,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"4\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,9,14,4,3,14,6,12,9,14,15,2,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"3\", \"14\", \"6\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,9,14,4,3,14,6,12,9,14,15,2,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"14\", \"15\", \"2\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,9,14,4,3,14,6,12,9,14,15,2,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,9,14,4,3,14,6,12,9,14,15,2,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"14\"], \"clip_start\": 8.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q15_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,9,14,4,3,14,6,12,9,14,15,2,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"11\", \"10\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,7,0,8,7,5,9,1,14,10,11,10,11,10,11,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,7,0,8,7,5,9,1,14,10,11,10,11,10,11,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,7,0,8,7,5,9,1,14,10,11,10,11,10,11,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"10\", \"11\", \"10\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,7,0,8,7,5,9,1,14,10,11,10,11,10,11,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,7,0,8,7,5,9,1,14,10,11,10,11,10,11,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,7,0,8,7,5,9,1,14,10,11,10,11,10,11,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"10\"], \"clip_start\": 9.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,7,0,8,7,5,9,1,14,10,11,10,11,10,11,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"10\", \"11\", \"10\", \"11\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,7,0,8,7,5,9,1,14,10,11,10,11,10,11,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"11\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,7,0,8,7,5,9,1,14,10,11,10,11,10,11,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"7\", \"0\", \"8\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q9_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,7,0,8,7,5,9,1,14,10,11,10,11,10,11,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"7\", \"0\", \"8\", \"7\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q10_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,7,0,8,7,5,9,1,14,10,11,10,11,10,11,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"5\", \"9\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q11_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,7,0,8,7,5,9,1,14,10,11,10,11,10,11,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"10\", \"11\", \"10\", \"11\", \"10\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q12_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,7,0,8,7,5,9,1,14,10,11,10,11,10,11,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"10\", \"11\"], \"clip_start\": 7.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q13_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,7,0,8,7,5,9,1,14,10,11,10,11,10,11,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"11\", \"2\", \"3\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q14_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,7,0,8,7,5,9,1,14,10,11,10,11,10,11,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"13\", \"9\", \"14\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q15_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,7,0,8,7,5,9,1,14,10,11,10,11,10,11,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"6\", \"12\", \"11\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,12,12,11,5,1,6,12,11,5,1,6,12,11,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"5\", \"1\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,12,12,11,5,1,6,12,11,5,1,6,12,11,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"5\", \"1\", \"6\", \"12\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,12,12,11,5,1,6,12,11,5,1,6,12,11,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"11\", \"5\", \"1\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,12,12,11,5,1,6,12,11,5,1,6,12,11,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"5\", \"1\", \"6\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,12,12,11,5,1,6,12,11,5,1,6,12,11,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"12\", \"12\", \"11\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,12,12,11,5,1,6,12,11,5,1,6,12,11,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\", \"6\", \"12\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,12,12,11,5,1,6,12,11,5,1,6,12,11,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"6\", \"12\", \"11\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,12,12,11,5,1,6,12,11,5,1,6,12,11,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"12\"], \"clip_start\": 11.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,12,12,11,5,1,6,12,11,5,1,6,12,11,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"12\", \"11\", \"5\", \"1\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,12,12,11,5,1,6,12,11,5,1,6,12,11,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"6\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,12,12,11,5,1,6,12,11,5,1,6,12,11,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\", \"6\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,12,12,11,5,1,6,12,11,5,1,6,12,11,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\", \"6\", \"12\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,12,12,11,5,1,6,12,11,5,1,6,12,11,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\", \"6\", \"12\", \"11\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,12,12,11,5,1,6,12,11,5,1,6,12,11,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"5\", \"1\", \"6\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,12,12,11,5,1,6,12,11,5,1,6,12,11,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"12\", \"11\", \"5\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,12,12,11,5,1,6,12,11,5,1,6,12,11,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"8\", \"7\", \"10\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,10,8,7,10,3,9,5,4,13,2,7,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"9\", \"5\", \"4\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,10,8,7,10,3,9,5,4,13,2,7,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"2\", \"7\", \"6\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,10,8,7,10,3,9,5,4,13,2,7,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"8\", \"7\", \"10\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,10,8,7,10,3,9,5,4,13,2,7,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"3\", \"9\", \"5\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,10,8,7,10,3,9,5,4,13,2,7,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"8\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,10,8,7,10,3,9,5,4,13,2,7,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 11.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,10,8,7,10,3,9,5,4,13,2,7,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"7\", \"10\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,10,8,7,10,3,9,5,4,13,2,7,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"7\", \"10\", \"3\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,10,8,7,10,3,9,5,4,13,2,7,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"3\", \"9\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,10,8,7,10,3,9,5,4,13,2,7,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"3\", \"9\", \"5\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,10,8,7,10,3,9,5,4,13,2,7,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"4\", \"13\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,10,8,7,10,3,9,5,4,13,2,7,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,10,8,7,10,3,9,5,4,13,2,7,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"7\", \"10\", \"3\", \"9\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q13_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,10,8,7,10,3,9,5,4,13,2,7,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"2\", \"7\", \"6\", \"12\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,10,8,7,10,3,9,5,4,13,2,7,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"10\", \"8\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,10,8,7,10,3,9,5,4,13,2,7,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,2,15,4,11,5,4,8,6,11,6,1,13,15,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"11\", \"6\"], \"clip_start\": 7.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,2,15,4,11,5,4,8,6,11,6,1,13,15,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,2,15,4,11,5,4,8,6,11,6,1,13,15,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"11\", \"6\"], \"clip_start\": 7.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,2,15,4,11,5,4,8,6,11,6,1,13,15,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"1\", \"13\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,2,15,4,11,5,4,8,6,11,6,1,13,15,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"6\", \"11\", \"6\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,2,15,4,11,5,4,8,6,11,6,1,13,15,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"15\", \"4\", \"11\", \"5\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,2,15,4,11,5,4,8,6,11,6,1,13,15,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"15\", \"4\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,2,15,4,11,5,4,8,6,11,6,1,13,15,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"1\", \"13\", \"15\", \"15\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,2,15,4,11,5,4,8,6,11,6,1,13,15,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"1\", \"13\", \"15\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,2,15,4,11,5,4,8,6,11,6,1,13,15,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"15\", \"15\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,2,15,4,11,5,4,8,6,11,6,1,13,15,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,2,15,4,11,5,4,8,6,11,6,1,13,15,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"15\", \"15\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,2,15,4,11,5,4,8,6,11,6,1,13,15,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"12\"], \"clip_start\": 13.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,2,15,4,11,5,4,8,6,11,6,1,13,15,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"4\", \"8\", \"6\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q14_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,2,15,4,11,5,4,8,6,11,6,1,13,15,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_ELOW", "source_split": "substream_video", "length_L": 16, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"4\", \"11\", \"5\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q15_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,2,15,4,11,5,4,8,6,11,6,1,13,15,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,0,12,13,7,7,3,5,1,7,2,13,8,6,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"8\", \"6\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,0,12,13,7,7,3,5,1,7,2,13,8,6,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"0\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,0,12,13,7,7,3,5,1,7,2,13,8,6,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"5\", \"1\", \"7\", \"2\", \"13\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q3_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,0,12,13,7,7,3,5,1,7,2,13,8,6,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"7\", \"7\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q4_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,0,12,13,7,7,3,5,1,7,2,13,8,6,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"13\", \"7\", \"7\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,0,12,13,7,7,3,5,1,7,2,13,8,6,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"2\", \"13\", \"8\", \"6\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,0,12,13,7,7,3,5,1,7,2,13,8,6,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"5\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q7_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,0,12,13,7,7,3,5,1,7,2,13,8,6,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"3\", \"5\"], \"clip_start\": 6.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,0,12,13,7,7,3,5,1,7,2,13,8,6,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"7\"], \"clip_start\": 10.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,0,12,13,7,7,3,5,1,7,2,13,8,6,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"12\", \"13\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q10_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,0,12,13,7,7,3,5,1,7,2,13,8,6,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"0\", \"12\", \"13\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q11_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,0,12,13,7,7,3,5,1,7,2,13,8,6,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"12\", \"13\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q12_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,0,12,13,7,7,3,5,1,7,2,13,8,6,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"12\", \"13\", \"7\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q13_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,0,12,13,7,7,3,5,1,7,2,13,8,6,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"15\", \"3\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q14_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,0,12,13,7,7,3,5,1,7,2,13,8,6,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"13\", \"8\", \"6\", \"5\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q15_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,0,12,13,7,7,3,5,1,7,2,13,8,6,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"12\", \"10\", \"12\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,8,2,2,10,3,12,10,12,0,1,9,8,5,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"2\", \"10\", \"3\", \"12\", \"10\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,8,2,2,10,3,12,10,12,0,1,9,8,5,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,8,2,2,10,3,12,10,12,0,1,9,8,5,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"0\", \"1\", \"9\", \"8\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,8,2,2,10,3,12,10,12,0,1,9,8,5,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"2\", \"8\", \"2\", \"2\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,8,2,2,10,3,12,10,12,0,1,9,8,5,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"0\", \"1\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,8,2,2,10,3,12,10,12,0,1,9,8,5,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"5\", \"12\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,8,2,2,10,3,12,10,12,0,1,9,8,5,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,8,2,2,10,3,12,10,12,0,1,9,8,5,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,8,2,2,10,3,12,10,12,0,1,9,8,5,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"10\", \"3\", \"12\", \"10\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,8,2,2,10,3,12,10,12,0,1,9,8,5,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"2\", \"2\", \"10\", \"3\", \"12\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,8,2,2,10,3,12,10,12,0,1,9,8,5,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q11_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,8,2,2,10,3,12,10,12,0,1,9,8,5,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"1\", \"9\", \"8\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,8,2,2,10,3,12,10,12,0,1,9,8,5,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"8\", \"5\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q13_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,8,2,2,10,3,12,10,12,0,1,9,8,5,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,8,2,2,10,3,12,10,12,0,1,9,8,5,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"12\", \"10\", \"12\", \"0\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q15_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,8,2,2,10,3,12,10,12,0,1,9,8,5,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"1\", \"9\", \"9\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,13,2,14,1,9,9,3,10,14,8,4,1,3,7,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"14\", \"8\", \"4\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,13,2,14,1,9,9,3,10,14,8,4,1,3,7,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"2\", \"14\", \"1\", \"9\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,13,2,14,1,9,9,3,10,14,8,4,1,3,7,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"1\", \"3\", \"7\", \"1\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,13,2,14,1,9,9,3,10,14,8,4,1,3,7,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"14\", \"8\", \"4\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,13,2,14,1,9,9,3,10,14,8,4,1,3,7,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"2\", \"14\", \"1\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q5_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,13,2,14,1,9,9,3,10,14,8,4,1,3,7,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"9\", \"3\", \"10\", \"14\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,13,2,14,1,9,9,3,10,14,8,4,1,3,7,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"2\", \"14\", \"1\", \"9\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,13,2,14,1,9,9,3,10,14,8,4,1,3,7,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"9\", \"3\", \"10\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q8_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,13,2,14,1,9,9,3,10,14,8,4,1,3,7,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"1\", \"9\", \"9\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q9_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,13,2,14,1,9,9,3,10,14,8,4,1,3,7,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"14\", \"8\", \"4\", \"1\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q10_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,13,2,14,1,9,9,3,10,14,8,4,1,3,7,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"9\", \"3\", \"10\", \"14\", \"8\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q11_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,13,2,14,1,9,9,3,10,14,8,4,1,3,7,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"9\", \"3\", \"10\", \"14\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q12_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,13,2,14,1,9,9,3,10,14,8,4,1,3,7,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"9\", \"1\", \"6\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q13_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,13,2,14,1,9,9,3,10,14,8,4,1,3,7,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"9\", \"3\", \"10\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q14_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,13,2,14,1,9,9,3,10,14,8,4,1,3,7,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"0\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q15_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,13,2,14,1,9,9,3,10,14,8,4,1,3,7,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"4\", \"2\", \"15\", \"2\", \"13\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,13,15,6,13,6,0,4,2,15,2,13,4,12,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"4\", \"2\", \"15\", \"2\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,13,15,6,13,6,0,4,2,15,2,13,4,12,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"4\", \"12\", \"5\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,13,15,6,13,6,0,4,2,15,2,13,4,12,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"15\", \"6\", \"13\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,13,15,6,13,6,0,4,2,15,2,13,4,12,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,13,15,6,13,6,0,4,2,15,2,13,4,12,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"4\", \"2\", \"15\", \"2\", \"13\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,13,15,6,13,6,0,4,2,15,2,13,4,12,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 7.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,13,15,6,13,6,0,4,2,15,2,13,4,12,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"15\", \"6\", \"13\", \"6\", \"0\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,13,15,6,13,6,0,4,2,15,2,13,4,12,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"13\", \"4\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,13,15,6,13,6,0,4,2,15,2,13,4,12,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"6\", \"13\", \"6\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,13,15,6,13,6,0,4,2,15,2,13,4,12,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"12\", \"5\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,13,15,6,13,6,0,4,2,15,2,13,4,12,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,13,15,6,13,6,0,4,2,15,2,13,4,12,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"13\", \"15\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,13,15,6,13,6,0,4,2,15,2,13,4,12,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 13.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,13,15,6,13,6,0,4,2,15,2,13,4,12,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"12\", \"5\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,13,15,6,13,6,0,4,2,15,2,13,4,12,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,4,13,15,6,13,6,0,4,2,15,2,13,4,12,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"9\", \"5\", \"3\", \"0\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,4,4,10,9,5,3,0,9,14,8,10,12,15,5", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"4\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,4,4,10,9,5,3,0,9,14,8,10,12,15,5", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"9\", \"5\", \"3\", \"0\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,4,4,10,9,5,3,0,9,14,8,10,12,15,5", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,4,4,10,9,5,3,0,9,14,8,10,12,15,5", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 11.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,4,4,10,9,5,3,0,9,14,8,10,12,15,5", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"0\", \"9\", \"14\", \"8\", \"10\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,4,4,10,9,5,3,0,9,14,8,10,12,15,5", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"14\", \"8\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,4,4,10,9,5,3,0,9,14,8,10,12,15,5", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"14\", \"8\", \"10\", \"12\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,4,4,10,9,5,3,0,9,14,8,10,12,15,5", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"0\", \"9\", \"14\", \"8\", \"10\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,4,4,10,9,5,3,0,9,14,8,10,12,15,5", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,4,4,10,9,5,3,0,9,14,8,10,12,15,5", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,4,4,10,9,5,3,0,9,14,8,10,12,15,5", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"3\", \"0\", \"9\", \"14\", \"8\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,4,4,10,9,5,3,0,9,14,8,10,12,15,5", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"4\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,4,4,10,9,5,3,0,9,14,8,10,12,15,5", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"9\", \"5\", \"3\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,4,4,10,9,5,3,0,9,14,8,10,12,15,5", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"10\", \"9\", \"5\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,4,4,10,9,5,3,0,9,14,8,10,12,15,5", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"3\", \"0\", \"9\", \"14\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,4,4,10,9,5,3,0,9,14,8,10,12,15,5", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"6\", \"5\", \"9\", \"14\", \"0\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,7,0,10,9,1,3,15,6,5,9,14,0,9,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"15\", \"6\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,7,0,10,9,1,3,15,6,5,9,14,0,9,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"7\", \"0\", \"10\", \"9\", \"1\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,7,0,10,9,1,3,15,6,5,9,14,0,9,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,7,0,10,9,1,3,15,6,5,9,14,0,9,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"6\", \"5\", \"9\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,7,0,10,9,1,3,15,6,5,9,14,0,9,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"9\", \"14\", \"0\", \"9\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,7,0,10,9,1,3,15,6,5,9,14,0,9,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"7\", \"0\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q6_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,7,0,10,9,1,3,15,6,5,9,14,0,9,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"7\", \"0\", \"10\", \"9\", \"1\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q7_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,7,0,10,9,1,3,15,6,5,9,14,0,9,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"6\", \"5\", \"9\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,7,0,10,9,1,3,15,6,5,9,14,0,9,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"9\", \"14\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q9_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,7,0,10,9,1,3,15,6,5,9,14,0,9,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"6\", \"5\", \"9\", \"14\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q10_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,7,0,10,9,1,3,15,6,5,9,14,0,9,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"9\", \"14\", \"0\", \"9\", \"15\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,7,0,10,9,1,3,15,6,5,9,14,0,9,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"7\", \"0\", \"10\", \"9\", \"1\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,7,0,10,9,1,3,15,6,5,9,14,0,9,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"9\", \"14\", \"0\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q13_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,7,0,10,9,1,3,15,6,5,9,14,0,9,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\", \"2\", \"15\", \"0\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q14_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,7,0,10,9,1,3,15,6,5,9,14,0,9,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"7\", \"0\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q15_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,7,0,10,9,1,3,15,6,5,9,14,0,9,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"3\", \"15\", \"8\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,2,0,8,12,3,15,5,15,3,15,8,12,14,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"8\", \"12\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,2,0,8,12,3,15,5,15,3,15,8,12,14,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"8\", \"12\", \"14\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,2,0,8,12,3,15,5,15,3,15,8,12,14,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"8\", \"12\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,2,0,8,12,3,15,5,15,3,15,8,12,14,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,2,0,8,12,3,15,5,15,3,15,8,12,14,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"5\", \"15\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,2,0,8,12,3,15,5,15,3,15,8,12,14,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"8\", \"12\", \"14\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,2,0,8,12,3,15,5,15,3,15,8,12,14,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,2,0,8,12,3,15,5,15,3,15,8,12,14,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"12\", \"3\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,2,0,8,12,3,15,5,15,3,15,8,12,14,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"8\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,2,0,8,12,3,15,5,15,3,15,8,12,14,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"8\", \"12\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q10_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,2,0,8,12,3,15,5,15,3,15,8,12,14,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"3\", \"15\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q11_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,2,0,8,12,3,15,5,15,3,15,8,12,14,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q12_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,2,0,8,12,3,15,5,15,3,15,8,12,14,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"3\", \"15\", \"8\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q13_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,2,0,8,12,3,15,5,15,3,15,8,12,14,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"3\", \"15\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q14_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,2,0,8,12,3,15,5,15,3,15,8,12,14,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"2\", \"0\", \"8\", \"12\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q15_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,2,0,8,12,3,15,5,15,3,15,8,12,14,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"8\", \"8\", \"9\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,14,11,9,6,1,15,10,9,5,14,8,8,9,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"15\", \"10\", \"9\", \"5\", \"14\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,14,11,9,6,1,15,10,9,5,14,8,8,9,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"11\", \"9\", \"6\", \"1\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,14,11,9,6,1,15,10,9,5,14,8,8,9,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"6\", \"1\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,14,11,9,6,1,15,10,9,5,14,8,8,9,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"10\", \"9\", \"5\", \"14\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,14,11,9,6,1,15,10,9,5,14,8,8,9,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"6\", \"1\", \"15\", \"10\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,14,11,9,6,1,15,10,9,5,14,8,8,9,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"14\", \"8\", \"8\", \"9\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,14,11,9,6,1,15,10,9,5,14,8,8,9,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"9\", \"5\", \"14\", \"8\", \"8\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,14,11,9,6,1,15,10,9,5,14,8,8,9,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\"], \"clip_start\": 13.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,14,11,9,6,1,15,10,9,5,14,8,8,9,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"13\", \"3\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q9_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,14,11,9,6,1,15,10,9,5,14,8,8,9,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"11\", \"9\", \"6\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q10_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,14,11,9,6,1,15,10,9,5,14,8,8,9,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"6\", \"1\", \"15\", \"10\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,14,11,9,6,1,15,10,9,5,14,8,8,9,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"15\", \"9\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q12_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,14,11,9,6,1,15,10,9,5,14,8,8,9,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"8\"], \"clip_start\": 11.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q13_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,14,11,9,6,1,15,10,9,5,14,8,8,9,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"1\", \"15\", \"10\", \"9\", \"5\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q14_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,14,11,9,6,1,15,10,9,5,14,8,8,9,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"8\", \"8\", \"9\", \"1\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q15_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,14,11,9,6,1,15,10,9,5,14,8,8,9,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"5\", \"0\", \"13\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,14,9,7,2,5,0,13,7,1,14,0,11,6,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"5\", \"0\", \"13\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,14,9,7,2,5,0,13,7,1,14,0,11,6,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"11\", \"6\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,14,9,7,2,5,0,13,7,1,14,0,11,6,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,14,9,7,2,5,0,13,7,1,14,0,11,6,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"5\", \"0\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,14,9,7,2,5,0,13,7,1,14,0,11,6,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"5\", \"0\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,14,9,7,2,5,0,13,7,1,14,0,11,6,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,14,9,7,2,5,0,13,7,1,14,0,11,6,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"7\", \"1\", \"14\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,14,9,7,2,5,0,13,7,1,14,0,11,6,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"9\", \"7\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,14,9,7,2,5,0,13,7,1,14,0,11,6,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"0\", \"11\", \"6\", \"9\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,14,9,7,2,5,0,13,7,1,14,0,11,6,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,14,9,7,2,5,0,13,7,1,14,0,11,6,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"13\", \"7\", \"1\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,14,9,7,2,5,0,13,7,1,14,0,11,6,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,14,9,7,2,5,0,13,7,1,14,0,11,6,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"1\", \"14\", \"0\", \"11\", \"6\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,14,9,7,2,5,0,13,7,1,14,0,11,6,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"14\", \"9\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,14,9,7,2,5,0,13,7,1,14,0,11,6,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 7.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,14,9,7,2,5,0,13,7,1,14,0,11,6,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,1,0,9,13,10,8,2,6,6,2,14,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"14\", \"13\", \"8\", \"9\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,1,0,9,13,10,8,2,6,6,2,14,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"8\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,1,0,9,13,10,8,2,6,6,2,14,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"1\", \"0\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,1,0,9,13,10,8,2,6,6,2,14,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"6\"], \"clip_start\": 8.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,1,0,9,13,10,8,2,6,6,2,14,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"1\", \"0\", \"9\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,1,0,9,13,10,8,2,6,6,2,14,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"8\", \"2\", \"6\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,1,0,9,13,10,8,2,6,6,2,14,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,1,0,9,13,10,8,2,6,6,2,14,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"1\", \"0\", \"9\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,1,0,9,13,10,8,2,6,6,2,14,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"8\", \"2\", \"6\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,1,0,9,13,10,8,2,6,6,2,14,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,1,0,9,13,10,8,2,6,6,2,14,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"1\", \"0\", \"9\", \"13\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,1,0,9,13,10,8,2,6,6,2,14,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"2\", \"6\", \"6\"], \"clip_start\": 7.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,1,0,9,13,10,8,2,6,6,2,14,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"8\", \"2\", \"6\", \"6\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,1,0,9,13,10,8,2,6,6,2,14,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"1\", \"0\", \"9\", \"13\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,1,0,9,13,10,8,2,6,6,2,14,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"2\", \"14\", \"13\", \"8\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,1,0,9,13,10,8,2,6,6,2,14,13,8,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"14\", \"11\", \"0\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,14,11,0,10,6,9,10,14,12,0,10,6,2,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,14,11,0,10,6,9,10,14,12,0,10,6,2,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"14\", \"11\", \"0\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,14,11,0,10,6,9,10,14,12,0,10,6,2,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"10\", \"14\", \"12\", \"0\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,14,11,0,10,6,9,10,14,12,0,10,6,2,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"10\", \"14\", \"12\", \"0\", \"10\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,14,11,0,10,6,9,10,14,12,0,10,6,2,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"9\", \"10\", \"14\", \"12\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,14,11,0,10,6,9,10,14,12,0,10,6,2,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"6\", \"2\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,14,11,0,10,6,9,10,14,12,0,10,6,2,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"10\", \"6\", \"2\", \"15\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,14,11,0,10,6,9,10,14,12,0,10,6,2,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"9\", \"10\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,14,11,0,10,6,9,10,14,12,0,10,6,2,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 13.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,14,11,0,10,6,9,10,14,12,0,10,6,2,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"14\", \"12\", \"0\", \"10\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,14,11,0,10,6,9,10,14,12,0,10,6,2,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"2\", \"15\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,14,11,0,10,6,9,10,14,12,0,10,6,2,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"14\", \"12\", \"0\", \"10\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,14,11,0,10,6,9,10,14,12,0,10,6,2,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,14,11,0,10,6,9,10,14,12,0,10,6,2,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"14\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,14,11,0,10,6,9,10,14,12,0,10,6,2,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"14\", \"12\", \"0\", \"10\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,14,11,0,10,6,9,10,14,12,0,10,6,2,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"7\", \"14\", \"12\", \"15\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,5,5,4,6,14,1,1,14,12,7,14,12,15,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,5,5,4,6,14,1,1,14,12,7,14,12,15,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"7\", \"14\", \"12\", \"15\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,5,5,4,6,14,1,1,14,12,7,14,12,15,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"7\", \"14\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,5,5,4,6,14,1,1,14,12,7,14,12,15,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,5,5,4,6,14,1,1,14,12,7,14,12,15,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"6\", \"14\", \"1\", \"1\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,5,5,4,6,14,1,1,14,12,7,14,12,15,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"12\", \"7\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,5,5,4,6,14,1,1,14,12,7,14,12,15,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"4\", \"8\", \"6\", \"0\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,5,5,4,6,14,1,1,14,12,7,14,12,15,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q8_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,5,5,4,6,14,1,1,14,12,7,14,12,15,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\", \"15\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q9_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,5,5,4,6,14,1,1,14,12,7,14,12,15,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"1\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q10_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,5,5,4,6,14,1,1,14,12,7,14,12,15,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"1\", \"1\", \"14\", \"12\", \"7\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q11_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,5,5,4,6,14,1,1,14,12,7,14,12,15,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"8\", \"2\", \"5\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q12_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,5,5,4,6,14,1,1,14,12,7,14,12,15,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"12\", \"7\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q13_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,5,5,4,6,14,1,1,14,12,7,14,12,15,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"5\", \"5\", \"4\", \"6\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q14_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,5,5,4,6,14,1,1,14,12,7,14,12,15,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"11\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q15_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,5,5,4,6,14,1,1,14,12,7,14,12,15,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"2\", \"13\", \"9\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,2,2,8,8,8,8,12,0,6,12,2,13,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"12\", \"2\", \"13\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,2,2,8,8,8,8,12,0,6,12,2,13,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"2\", \"8\", \"8\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,2,2,8,8,8,8,12,0,6,12,2,13,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 3.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,2,2,8,8,8,8,12,0,6,12,2,13,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"2\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q4_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,2,2,8,8,8,8,12,0,6,12,2,13,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"11\", \"6\", \"1\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q5_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,2,2,8,8,8,8,12,0,6,12,2,13,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"9\", \"11\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q6_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,2,2,8,8,8,8,12,0,6,12,2,13,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"2\", \"13\", \"9\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q7_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,2,2,8,8,8,8,12,0,6,12,2,13,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"0\", \"6\", \"12\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,2,2,8,8,8,8,12,0,6,12,2,13,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"8\", \"12\", \"0\", \"6\", \"12\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,2,2,8,8,8,8,12,0,6,12,2,13,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"6\", \"12\", \"2\", \"13\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q10_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,2,2,8,8,8,8,12,0,6,12,2,13,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"2\", \"8\", \"8\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,2,2,8,8,8,8,12,0,6,12,2,13,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"3\", \"5\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q12_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,2,2,8,8,8,8,12,0,6,12,2,13,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"10\", \"11\", \"0\", \"0\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q13_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,2,2,8,8,8,8,12,0,6,12,2,13,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"12\", \"2\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q14_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,2,2,8,8,8,8,12,0,6,12,2,13,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"2\", \"8\", \"8\", \"8\", \"8\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q15_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,2,2,8,8,8,8,12,0,6,12,2,13,9,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"12\", \"13\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,0,14,15,9,14,9,3,15,11,5,12,12,13,1", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"11\", \"5\", \"12\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,0,14,15,9,14,9,3,15,11,5,12,12,13,1", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"15\", \"11\", \"5\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,0,14,15,9,14,9,3,15,11,5,12,12,13,1", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"6\", \"0\", \"14\", \"15\", \"9\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,0,14,15,9,14,9,3,15,11,5,12,12,13,1", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"12\"], \"clip_start\": 11.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,0,14,15,9,14,9,3,15,11,5,12,12,13,1", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\", \"1\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q5_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,0,14,15,9,14,9,3,15,11,5,12,12,13,1", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"5\", \"7\", \"3\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q6_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,0,14,15,9,14,9,3,15,11,5,12,12,13,1", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"12\", \"13\", \"1\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,0,14,15,9,14,9,3,15,11,5,12,12,13,1", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"14\", \"9\", \"3\", \"15\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q8_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,0,14,15,9,14,9,3,15,11,5,12,12,13,1", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"13\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,0,14,15,9,14,9,3,15,11,5,12,12,13,1", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"9\", \"14\", \"9\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q10_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,0,14,15,9,14,9,3,15,11,5,12,12,13,1", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"14\", \"15\", \"9\", \"14\", \"9\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q11_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,0,14,15,9,14,9,3,15,11,5,12,12,13,1", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"0\", \"14\", \"15\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q12_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,0,14,15,9,14,9,3,15,11,5,12,12,13,1", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"13\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q13_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,0,14,15,9,14,9,3,15,11,5,12,12,13,1", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"5\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q14_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,0,14,15,9,14,9,3,15,11,5,12,12,13,1", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"14\", \"9\", \"3\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q15_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,0,14,15,9,14,9,3,15,11,5,12,12,13,1", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"12\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,8,8,10,10,9,8,10,5,12,14,4,6,12,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,8,8,10,10,9,8,10,5,12,14,4,6,12,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"14\", \"4\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,8,8,10,10,9,8,10,5,12,14,4,6,12,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"14\", \"4\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,8,8,10,10,9,8,10,5,12,14,4,6,12,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"10\", \"5\", \"12\", \"14\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,8,8,10,10,9,8,10,5,12,14,4,6,12,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"14\", \"4\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,8,8,10,10,9,8,10,5,12,14,4,6,12,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"14\", \"4\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,8,8,10,10,9,8,10,5,12,14,4,6,12,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"8\", \"10\", \"10\", \"9\", \"8\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,8,8,10,10,9,8,10,5,12,14,4,6,12,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"10\", \"5\", \"12\"], \"clip_start\": 7.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,8,8,10,10,9,8,10,5,12,14,4,6,12,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"3\"], \"clip_start\": 6.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,8,8,10,10,9,8,10,5,12,14,4,6,12,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\"], \"clip_start\": 6.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,8,8,10,10,9,8,10,5,12,14,4,6,12,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"11\"], \"clip_start\": 13.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,8,8,10,10,9,8,10,5,12,14,4,6,12,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"4\", \"6\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,8,8,10,10,9,8,10,5,12,14,4,6,12,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"14\", \"4\", \"6\", \"12\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q13_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,8,8,10,10,9,8,10,5,12,14,4,6,12,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"12\", \"12\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q14_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,8,8,10,10,9,8,10,5,12,14,4,6,12,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"12\", \"14\", \"4\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q15_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,8,8,10,10,9,8,10,5,12,14,4,6,12,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"10\", \"10\", \"7\", \"13\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,0,6,0,7,11,10,10,7,13,7,9,8,11,9,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"10\", \"10\", \"7\", \"13\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,0,6,0,7,11,10,10,7,13,7,9,8,11,9,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"13\", \"7\", \"9\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,0,6,0,7,11,10,10,7,13,7,9,8,11,9,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"10\", \"10\", \"7\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,0,6,0,7,11,10,10,7,13,7,9,8,11,9,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"7\", \"9\", \"8\", \"11\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,0,6,0,7,11,10,10,7,13,7,9,8,11,9,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,0,6,0,7,11,10,10,7,13,7,9,8,11,9,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"9\", \"8\", \"11\", \"9\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,0,6,0,7,11,10,10,7,13,7,9,8,11,9,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,0,6,0,7,11,10,10,7,13,7,9,8,11,9,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"0\", \"7\", \"11\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,0,6,0,7,11,10,10,7,13,7,9,8,11,9,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"13\", \"7\", \"9\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,0,6,0,7,11,10,10,7,13,7,9,8,11,9,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,0,6,0,7,11,10,10,7,13,7,9,8,11,9,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"0\", \"7\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,0,6,0,7,11,10,10,7,13,7,9,8,11,9,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"7\", \"11\", \"10\", \"10\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,0,6,0,7,11,10,10,7,13,7,9,8,11,9,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"7\", \"9\", \"8\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,0,6,0,7,11,10,10,7,13,7,9,8,11,9,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,0,6,0,7,11,10,10,7,13,7,9,8,11,9,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"7\"], \"clip_start\": 8.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q15_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,0,6,0,7,11,10,10,7,13,7,9,8,11,9,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"2\", \"11\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,4,11,6,11,14,11,7,2,11,9,13,2,11,0,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,4,11,6,11,14,11,7,2,11,9,13,2,11,0,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,4,11,6,11,14,11,7,2,11,9,13,2,11,0,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"11\", \"9\", \"13\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,4,11,6,11,14,11,7,2,11,9,13,2,11,0,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,4,11,6,11,14,11,7,2,11,9,13,2,11,0,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,4,11,6,11,14,11,7,2,11,9,13,2,11,0,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"13\"], \"clip_start\": 9.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,4,11,6,11,14,11,7,2,11,9,13,2,11,0,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"9\", \"13\", \"2\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,4,11,6,11,14,11,7,2,11,9,13,2,11,0,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,4,11,6,11,14,11,7,2,11,9,13,2,11,0,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"4\", \"11\", \"6\"], \"clip_start\": 0.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q9_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,4,11,6,11,14,11,7,2,11,9,13,2,11,0,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"4\", \"11\", \"6\", \"11\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q10_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,4,11,6,11,14,11,7,2,11,9,13,2,11,0,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"14\", \"11\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q11_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,4,11,6,11,14,11,7,2,11,9,13,2,11,0,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"9\", \"13\", \"2\", \"11\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q12_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,4,11,6,11,14,11,7,2,11,9,13,2,11,0,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"11\", \"9\"], \"clip_start\": 7.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q13_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,4,11,6,11,14,11,7,2,11,9,13,2,11,0,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"11\", \"2\", \"3\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q14_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,4,11,6,11,14,11,7,2,11,9,13,2,11,0,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"13\", \"9\", \"14\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q15_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,4,11,6,11,14,11,7,2,11,9,13,2,11,0,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"14\", \"14\", \"13\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,9,1,1,6,4,11,14,14,13,7,11,5,4,13,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"4\", \"11\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,9,1,1,6,4,11,14,14,13,7,11,5,4,13,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"7\", \"11\", \"5\", \"4\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,9,1,1,6,4,11,14,14,13,7,11,5,4,13,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"1\", \"6\", \"4\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,9,1,1,6,4,11,14,14,13,7,11,5,4,13,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"7\", \"11\", \"5\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,9,1,1,6,4,11,14,14,13,7,11,5,4,13,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"9\", \"1\", \"1\", \"6\", \"4\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,9,1,1,6,4,11,14,14,13,7,11,5,4,13,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"11\", \"14\", \"14\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,9,1,1,6,4,11,14,14,13,7,11,5,4,13,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"5\", \"4\", \"13\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,9,1,1,6,4,11,14,14,13,7,11,5,4,13,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"4\"], \"clip_start\": 11.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,9,1,1,6,4,11,14,14,13,7,11,5,4,13,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"14\", \"13\", \"7\", \"11\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,9,1,1,6,4,11,14,14,13,7,11,5,4,13,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"14\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,9,1,1,6,4,11,14,14,13,7,11,5,4,13,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"11\", \"14\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,9,1,1,6,4,11,14,14,13,7,11,5,4,13,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"11\", \"14\", \"14\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,9,1,1,6,4,11,14,14,13,7,11,5,4,13,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"11\", \"14\", \"14\", \"13\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,9,1,1,6,4,11,14,14,13,7,11,5,4,13,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"4\", \"11\", \"14\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,9,1,1,6,4,11,14,14,13,7,11,5,4,13,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"1\", \"1\", \"6\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,9,1,1,6,4,11,14,14,13,7,11,5,4,13,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"2\", \"9\", \"14\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,10,7,2,9,14,11,13,4,14,2,6,2,12,15", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"13\", \"4\", \"14\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,10,7,2,9,14,11,13,4,14,2,6,2,12,15", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"2\", \"6\", \"2\", \"12\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,10,7,2,9,14,11,13,4,14,2,6,2,12,15", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"2\", \"9\", \"14\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,10,7,2,9,14,11,13,4,14,2,6,2,12,15", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"11\", \"13\", \"4\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,10,7,2,9,14,11,13,4,14,2,6,2,12,15", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"2\", \"9\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,10,7,2,9,14,11,13,4,14,2,6,2,12,15", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 11.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,10,7,2,9,14,11,13,4,14,2,6,2,12,15", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"9\", \"14\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,10,7,2,9,14,11,13,4,14,2,6,2,12,15", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"9\", \"14\", \"11\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,10,7,2,9,14,11,13,4,14,2,6,2,12,15", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"11\", \"13\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,10,7,2,9,14,11,13,4,14,2,6,2,12,15", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"11\", \"13\", \"4\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,10,7,2,9,14,11,13,4,14,2,6,2,12,15", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"14\", \"2\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,10,7,2,9,14,11,13,4,14,2,6,2,12,15", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,10,7,2,9,14,11,13,4,14,2,6,2,12,15", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"9\", \"14\", \"11\", \"13\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q13_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,10,7,2,9,14,11,13,4,14,2,6,2,12,15", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"2\", \"6\", \"2\", \"12\", \"15\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,10,7,2,9,14,11,13,4,14,2,6,2,12,15", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"10\", \"7\", \"2\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,10,7,2,9,14,11,13,4,14,2,6,2,12,15", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,14,6,5,9,2,3,7,5,11,4,9,0,8,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"11\", \"4\"], \"clip_start\": 7.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,14,6,5,9,2,3,7,5,11,4,9,0,8,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,14,6,5,9,2,3,7,5,11,4,9,0,8,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"11\", \"4\"], \"clip_start\": 7.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,14,6,5,9,2,3,7,5,11,4,9,0,8,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"4\", \"9\", \"0\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,14,6,5,9,2,3,7,5,11,4,9,0,8,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"5\", \"11\", \"4\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,14,6,5,9,2,3,7,5,11,4,9,0,8,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"6\", \"5\", \"9\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,14,6,5,9,2,3,7,5,11,4,9,0,8,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"14\", \"6\", \"5\", \"9\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,14,6,5,9,2,3,7,5,11,4,9,0,8,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"4\", \"9\", \"0\", \"8\", \"4\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,14,6,5,9,2,3,7,5,11,4,9,0,8,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"4\", \"9\", \"0\", \"8\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,14,6,5,9,2,3,7,5,11,4,9,0,8,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"0\", \"8\", \"4\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,14,6,5,9,2,3,7,5,11,4,9,0,8,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,14,6,5,9,2,3,7,5,11,4,9,0,8,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"0\", \"8\", \"4\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,14,6,5,9,2,3,7,5,11,4,9,0,8,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"12\"], \"clip_start\": 13.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,14,6,5,9,2,3,7,5,11,4,9,0,8,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"2\", \"3\", \"7\", \"5\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q14_true_sequential.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,14,6,5,9,2,3,7,5,11,4,9,0,8,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L016_NO_RULES", "source_split": "substream_video", "length_L": 16, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"9\", \"2\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q15_true_spatial.mp4", "video_path": "videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,14,6,5,9,2,3,7,5,11,4,9,0,8,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,9,3,8,13,13,2,13,2,15,1,4,12,0,4,3,5,11,5,13,2,8,12,11,9,3,3,13,2,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"3\", \"3\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,9,3,8,13,13,2,13,2,15,1,4,12,0,4,3,5,11,5,13,2,8,12,11,9,3,3,13,2,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,9,3,8,13,13,2,13,2,15,1,4,12,0,4,3,5,11,5,13,2,8,12,11,9,3,3,13,2,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"11\", \"5\", \"13\", \"2\", \"8\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q3_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,9,3,8,13,13,2,13,2,15,1,4,12,0,4,3,5,11,5,13,2,8,12,11,9,3,3,13,2,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"2\", \"15\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q4_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,9,3,8,13,13,2,13,2,15,1,4,12,0,4,3,5,11,5,13,2,8,12,11,9,3,3,13,2,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"13\", \"2\", \"13\", \"2\", \"15\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,9,3,8,13,13,2,13,2,15,1,4,12,0,4,3,5,11,5,13,2,8,12,11,9,3,3,13,2,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"9\", \"3\", \"3\", \"13\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,9,3,8,13,13,2,13,2,15,1,4,12,0,4,3,5,11,5,13,2,8,12,11,9,3,3,13,2,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"5\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,9,3,8,13,13,2,13,2,15,1,4,12,0,4,3,5,11,5,13,2,8,12,11,9,3,3,13,2,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"0\"], \"clip_start\": 13.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,9,3,8,13,13,2,13,2,15,1,4,12,0,4,3,5,11,5,13,2,8,12,11,9,3,3,13,2,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"7\"], \"clip_start\": 22.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,9,3,8,13,13,2,13,2,15,1,4,12,0,4,3,5,11,5,13,2,8,12,11,9,3,3,13,2,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"8\", \"13\", \"13\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,9,3,8,13,13,2,13,2,15,1,4,12,0,4,3,5,11,5,13,2,8,12,11,9,3,3,13,2,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"9\", \"3\", \"8\", \"13\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,9,3,8,13,13,2,13,2,15,1,4,12,0,4,3,5,11,5,13,2,8,12,11,9,3,3,13,2,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"13\", \"13\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q12_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,9,3,8,13,13,2,13,2,15,1,4,12,0,4,3,5,11,5,13,2,8,12,11,9,3,3,13,2,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"8\", \"13\", \"13\", \"2\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q13_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,9,3,8,13,13,2,13,2,15,1,4,12,0,4,3,5,11,5,13,2,8,12,11,9,3,3,13,2,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"15\", \"3\"], \"clip_start\": 26.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q14_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,9,3,8,13,13,2,13,2,15,1,4,12,0,4,3,5,11,5,13,2,8,12,11,9,3,3,13,2,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"3\", \"3\", \"13\", \"2\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,9,3,8,13,13,2,13,2,15,1,4,12,0,4,3,5,11,5,13,2,8,12,11,9,3,3,13,2,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"11\", \"10\", \"7\", \"5\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,12,5,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"2\", \"0\", \"11\", \"10\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,12,5,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,12,5,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"11\", \"10\", \"7\", \"5\", \"8\"], \"clip_start\": 21.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,12,5,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"5\", \"7\", \"5\", \"8\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,12,5,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"2\", \"0\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,12,5,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"5\", \"2\"], \"clip_start\": 27.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,12,5,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,12,5,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,12,5,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"0\", \"11\", \"10\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,12,5,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"5\", \"2\", \"0\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,12,5,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q11_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,12,5,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"7\", \"5\", \"8\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,12,5,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"8\", \"12\", \"12\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q13_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,12,5,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"12\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,12,5,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"8\", \"12\", \"12\", \"5\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q15_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,12,5,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0,11,10,7,5,8,12,12,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"3\", \"10\", \"7\", \"0\", \"14\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,2,15,4,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"0\", \"3\", \"10\", \"7\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,2,15,4,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"3\", \"2\", \"15\", \"4\", \"0\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,2,15,4,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"14\", \"0\", \"3\"], \"clip_start\": 26.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,2,15,4,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"0\", \"14\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,2,15,4,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"3\", \"2\", \"15\", \"4\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q5_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,2,15,4,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"7\", \"0\", \"14\"], \"clip_start\": 12.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,2,15,4,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"15\", \"4\", \"0\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,2,15,4,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"7\", \"0\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,2,15,4,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"3\", \"10\", \"7\", \"0\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q9_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,2,15,4,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"0\", \"14\", \"0\", \"3\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,2,15,4,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"14\", \"0\", \"3\", \"10\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q11_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,2,15,4,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"0\", \"3\", \"10\", \"7\", \"0\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q12_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,2,15,4,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"9\", \"1\", \"6\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q13_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,2,15,4,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"0\", \"3\", \"10\", \"7\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,2,15,4,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"0\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q15_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,2,15,4,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10,7,0,14,0,3,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"6\", \"8\", \"8\", \"8\", \"5\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,9,9,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"5\", \"6\", \"8\", \"8\"], \"clip_start\": 17.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,9,9,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"8\", \"5\", \"6\", \"8\"], \"clip_start\": 26.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,9,9,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"6\", \"8\", \"8\", \"8\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,9,9,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"8\", \"8\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,9,9,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"8\", \"8\", \"8\", \"5\", \"6\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,9,9,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 15.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,9,9,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"8\", \"5\", \"6\", \"8\", \"8\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,9,9,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"6\", \"8\", \"8\"], \"clip_start\": 23.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,9,9,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"8\", \"5\", \"6\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,9,9,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"5\", \"6\", \"8\"], \"clip_start\": 27.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,9,9,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,9,9,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"9\", \"6\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,9,9,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 29.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,9,9,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"6\", \"8\", \"8\"], \"clip_start\": 28.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,9,9,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,9,9,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8,8,5,6,8,8", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"1\", \"10\", \"12\", \"5\", \"9\"], \"clip_start\": 11.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,7,13,4,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"13\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,7,13,4,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"9\", \"1\", \"10\", \"12\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,7,13,4,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,7,13,4,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 24.0, \"clip_end\": 27.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,7,13,4,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"5\", \"9\", \"1\", \"10\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,7,13,4,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"9\", \"1\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,7,13,4,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"9\", \"1\", \"10\", \"12\", \"5\"], \"clip_start\": 20.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,7,13,4,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"9\", \"1\", \"10\", \"12\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,7,13,4,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 13.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,7,13,4,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,7,13,4,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"9\", \"1\", \"10\", \"12\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,7,13,4,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"4\", \"9\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,7,13,4,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"9\", \"1\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,7,13,4,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"9\", \"1\", \"10\", \"12\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,7,13,4,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"9\", \"1\", \"10\", \"12\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,7,13,4,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9,1,10,12,5,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"4\", \"0\", \"8\", \"11\"], \"clip_start\": 21.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,2,13,12,2,11,13,12,2,0,2,11,11,4,6,1,7,0,8,4,0,8,4,0,8,11,7,2,4,6,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"1\", \"7\"], \"clip_start\": 14.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,2,13,12,2,11,13,12,2,0,2,11,11,4,6,1,7,0,8,4,0,8,4,0,8,11,7,2,4,6,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"12\", \"2\", \"11\", \"13\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,2,13,12,2,11,13,12,2,0,2,11,11,4,6,1,7,0,8,4,0,8,4,0,8,11,7,2,4,6,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,2,13,12,2,11,13,12,2,0,2,11,11,4,6,1,7,0,8,4,0,8,4,0,8,11,7,2,4,6,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"0\", \"8\", \"4\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,2,13,12,2,11,13,12,2,0,2,11,11,4,6,1,7,0,8,4,0,8,4,0,8,11,7,2,4,6,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"8\", \"11\", \"7\", \"2\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,2,13,12,2,11,13,12,2,0,2,11,11,4,6,1,7,0,8,4,0,8,4,0,8,11,7,2,4,6,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"8\", \"2\", \"13\", \"12\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,2,13,12,2,11,13,12,2,0,2,11,11,4,6,1,7,0,8,4,0,8,4,0,8,11,7,2,4,6,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"12\", \"2\", \"11\", \"13\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q7_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,2,13,12,2,11,13,12,2,0,2,11,11,4,6,1,7,0,8,4,0,8,4,0,8,11,7,2,4,6,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"0\", \"8\", \"4\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,2,13,12,2,11,13,12,2,0,2,11,11,4,6,1,7,0,8,4,0,8,4,0,8,11,7,2,4,6,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"0\", \"8\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q9_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,2,13,12,2,11,13,12,2,0,2,11,11,4,6,1,7,0,8,4,0,8,4,0,8,11,7,2,4,6,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"0\", \"8\", \"4\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q10_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,2,13,12,2,11,13,12,2,0,2,11,11,4,6,1,7,0,8,4,0,8,4,0,8,11,7,2,4,6,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"2\", \"4\", \"6\", \"1\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,2,13,12,2,11,13,12,2,0,2,11,11,4,6,1,7,0,8,4,0,8,4,0,8,11,7,2,4,6,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"2\", \"11\", \"13\", \"12\", \"2\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,2,13,12,2,11,13,12,2,0,2,11,11,4,6,1,7,0,8,4,0,8,4,0,8,11,7,2,4,6,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"4\", \"0\", \"8\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,2,13,12,2,11,13,12,2,0,2,11,11,4,6,1,7,0,8,4,0,8,4,0,8,11,7,2,4,6,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\", \"2\", \"15\", \"0\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q14_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,2,13,12,2,11,13,12,2,0,2,11,11,4,6,1,7,0,8,4,0,8,4,0,8,11,7,2,4,6,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"12\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,8,2,13,12,2,11,13,12,2,0,2,11,11,4,6,1,7,0,8,4,0,8,4,0,8,11,7,2,4,6,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"15\", \"11\", \"3\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,4,15,4,3,4,4,13,2,12,13,12,11,3,9,7,15,11,3,9,7,15,11,3,9,7,15,11,3,9,7", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"9\", \"7\"], \"clip_start\": 23.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,4,15,4,3,4,4,13,2,12,13,12,11,3,9,7,15,11,3,9,7,15,11,3,9,7,15,11,3,9,7", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"11\", \"3\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,4,15,4,3,4,4,13,2,12,13,12,11,3,9,7,15,11,3,9,7,15,11,3,9,7,15,11,3,9,7", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"13\", \"2\", \"12\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,4,15,4,3,4,4,13,2,12,13,12,11,3,9,7,15,11,3,9,7,15,11,3,9,7,15,11,3,9,7", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 15.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,4,15,4,3,4,4,13,2,12,13,12,11,3,9,7,15,11,3,9,7,15,11,3,9,7,15,11,3,9,7", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"9\", \"7\"], \"clip_start\": 13.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,4,15,4,3,4,4,13,2,12,13,12,11,3,9,7,15,11,3,9,7,15,11,3,9,7,15,11,3,9,7", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"7\", \"15\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,4,15,4,3,4,4,13,2,12,13,12,11,3,9,7,15,11,3,9,7,15,11,3,9,7,15,11,3,9,7", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,4,15,4,3,4,4,13,2,12,13,12,11,3,9,7,15,11,3,9,7,15,11,3,9,7,15,11,3,9,7", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"2\", \"12\", \"13\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,4,15,4,3,4,4,13,2,12,13,12,11,3,9,7,15,11,3,9,7,15,11,3,9,7,15,11,3,9,7", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"8\"], \"clip_start\": 26.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,4,15,4,3,4,4,13,2,12,13,12,11,3,9,7,15,11,3,9,7,15,11,3,9,7,15,11,3,9,7", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"4\", \"4\", \"13\", \"2\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,4,15,4,3,4,4,13,2,12,13,12,11,3,9,7,15,11,3,9,7,15,11,3,9,7,15,11,3,9,7", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"7\", \"15\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q11_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,4,15,4,3,4,4,13,2,12,13,12,11,3,9,7,15,11,3,9,7,15,11,3,9,7,15,11,3,9,7", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,4,15,4,3,4,4,13,2,12,13,12,11,3,9,7,15,11,3,9,7,15,11,3,9,7,15,11,3,9,7", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"3\", \"9\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,4,15,4,3,4,4,13,2,12,13,12,11,3,9,7,15,11,3,9,7,15,11,3,9,7,15,11,3,9,7", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"7\", \"15\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q14_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,4,15,4,3,4,4,13,2,12,13,12,11,3,9,7,15,11,3,9,7,15,11,3,9,7,15,11,3,9,7", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"4\", \"3\", \"4\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,4,15,4,3,4,4,13,2,12,13,12,11,3,9,7,15,11,3,9,7,15,11,3,9,7,15,11,3,9,7", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"4\", \"5\", \"3\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,6,4,0,4,5,13,8,11,2,3,3,5,4,3,14,5,5,4,5,3,14,5,5,4,5,3,14,5,5,4", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"5\", \"4\", \"5\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,6,4,0,4,5,13,8,11,2,3,3,5,4,3,14,5,5,4,5,3,14,5,5,4,5,3,14,5,5,4", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"4\", \"5\", \"13\", \"8\", \"11\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,6,4,0,4,5,13,8,11,2,3,3,5,4,3,14,5,5,4,5,3,14,5,5,4,5,3,14,5,5,4", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"3\"], \"clip_start\": 10.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,6,4,0,4,5,13,8,11,2,3,3,5,4,3,14,5,5,4,5,3,14,5,5,4,5,3,14,5,5,4", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"5\", \"5\", \"4\", \"5\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,6,4,0,4,5,13,8,11,2,3,3,5,4,3,14,5,5,4,5,3,14,5,5,4,5,3,14,5,5,4", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"5\", \"4\", \"3\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,6,4,0,4,5,13,8,11,2,3,3,5,4,3,14,5,5,4,5,3,14,5,5,4,5,3,14,5,5,4", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"4\", \"5\", \"3\", \"14\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,6,4,0,4,5,13,8,11,2,3,3,5,4,3,14,5,5,4,5,3,14,5,5,4,5,3,14,5,5,4", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"3\", \"14\", \"5\", \"5\", \"4\"], \"clip_start\": 20.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,6,4,0,4,5,13,8,11,2,3,3,5,4,3,14,5,5,4,5,3,14,5,5,4,5,3,14,5,5,4", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\"], \"clip_start\": 28.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,6,4,0,4,5,13,8,11,2,3,3,5,4,3,14,5,5,4,5,3,14,5,5,4,5,3,14,5,5,4", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"13\", \"3\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,6,4,0,4,5,13,8,11,2,3,3,5,4,3,14,5,5,4,5,3,14,5,5,4,5,3,14,5,5,4", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"4\", \"5\", \"13\", \"8\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q10_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,6,4,0,4,5,13,8,11,2,3,3,5,4,3,14,5,5,4,5,3,14,5,5,4,5,3,14,5,5,4", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"5\", \"4\", \"3\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,6,4,0,4,5,13,8,11,2,3,3,5,4,3,14,5,5,4,5,3,14,5,5,4,5,3,14,5,5,4", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"15\", \"9\"], \"clip_start\": 13.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,6,4,0,4,5,13,8,11,2,3,3,5,4,3,14,5,5,4,5,3,14,5,5,4,5,3,14,5,5,4", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"5\"], \"clip_start\": 24.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q13_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,6,4,0,4,5,13,8,11,2,3,3,5,4,3,14,5,5,4,5,3,14,5,5,4,5,3,14,5,5,4", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"5\", \"4\", \"3\", \"14\", \"5\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q14_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,6,4,0,4,5,13,8,11,2,3,3,5,4,3,14,5,5,4,5,3,14,5,5,4,5,3,14,5,5,4", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"3\", \"14\", \"5\", \"5\", \"4\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,6,4,0,4,5,13,8,11,2,3,3,5,4,3,14,5,5,4,5,3,14,5,5,4,5,3,14,5,5,4", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"0\", \"4\", \"9\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,6,15,7,6,14,13,11,1,9,0,4,9,5,13,10,7,15,5,14,14,13,0,4,9,14,13,11,1,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"1\", \"9\", \"0\", \"4\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,6,15,7,6,14,13,11,1,9,0,4,9,5,13,10,7,15,5,14,14,13,0,4,9,14,13,11,1,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"13\"], \"clip_start\": 26.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,6,15,7,6,14,13,11,1,9,0,4,9,5,13,10,7,15,5,14,14,13,0,4,9,14,13,11,1,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,6,15,7,6,14,13,11,1,9,0,4,9,5,13,10,7,15,5,14,14,13,0,4,9,14,13,11,1,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"0\", \"4\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,6,15,7,6,14,13,11,1,9,0,4,9,5,13,10,7,15,5,14,14,13,0,4,9,14,13,11,1,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"0\", \"4\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,6,15,7,6,14,13,11,1,9,0,4,9,5,13,10,7,15,5,14,14,13,0,4,9,14,13,11,1,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,6,15,7,6,14,13,11,1,9,0,4,9,5,13,10,7,15,5,14,14,13,0,4,9,14,13,11,1,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"7\", \"15\", \"5\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,6,15,7,6,14,13,11,1,9,0,4,9,5,13,10,7,15,5,14,14,13,0,4,9,14,13,11,1,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"7\", \"6\", \"14\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,6,15,7,6,14,13,11,1,9,0,4,9,5,13,10,7,15,5,14,14,13,0,4,9,14,13,11,1,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"14\", \"13\", \"11\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,6,15,7,6,14,13,11,1,9,0,4,9,5,13,10,7,15,5,14,14,13,0,4,9,14,13,11,1,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,6,15,7,6,14,13,11,1,9,0,4,9,5,13,10,7,15,5,14,14,13,0,4,9,14,13,11,1,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"13\", \"10\", \"7\"], \"clip_start\": 14.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,6,15,7,6,14,13,11,1,9,0,4,9,5,13,10,7,15,5,14,14,13,0,4,9,14,13,11,1,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,6,15,7,6,14,13,11,1,9,0,4,9,5,13,10,7,15,5,14,14,13,0,4,9,14,13,11,1,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"4\", \"9\", \"14\", \"13\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,6,15,7,6,14,13,11,1,9,0,4,9,5,13,10,7,15,5,14,14,13,0,4,9,14,13,11,1,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"6\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,6,15,7,6,14,13,11,1,9,0,4,9,5,13,10,7,15,5,14,14,13,0,4,9,14,13,11,1,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 16.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,6,15,7,6,14,13,11,1,9,0,4,9,5,13,10,7,15,5,14,14,13,0,4,9,14,13,11,1,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,11,15,14,1,11,3,0,1,5,13,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\", \"0\", \"3\", \"8\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,11,15,14,1,11,3,0,1,5,13,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"0\"], \"clip_start\": 26.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,11,15,14,1,11,3,0,1,5,13,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"14\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,11,15,14,1,11,3,0,1,5,13,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"3\", \"8\"], \"clip_start\": 18.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,11,15,14,1,11,3,0,1,5,13,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"15\", \"14\", \"1\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,11,15,14,1,11,3,0,1,5,13,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"0\", \"3\", \"8\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,11,15,14,1,11,3,0,1,5,13,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,11,15,14,1,11,3,0,1,5,13,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"15\", \"14\", \"1\", \"11\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,11,15,14,1,11,3,0,1,5,13,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"3\", \"8\", \"6\", \"3\"], \"clip_start\": 13.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,11,15,14,1,11,3,0,1,5,13,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,11,15,14,1,11,3,0,1,5,13,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"14\", \"1\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,11,15,14,1,11,3,0,1,5,13,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\", \"0\"], \"clip_start\": 15.0, \"clip_end\": 19.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,11,15,14,1,11,3,0,1,5,13,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"6\", \"3\", \"0\", \"3\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,11,15,14,1,11,3,0,1,5,13,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"14\", \"1\", \"11\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,11,15,14,1,11,3,0,1,5,13,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"3\", \"8\", \"6\", \"3\", \"0\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,11,15,14,1,11,3,0,1,5,13,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6,3,0,3,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"14\", \"12\", \"13\", \"7\", \"6\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,14,12,13,7,6,6,2,14,7,6,6,2,14,7,9,12,3,15,3,15,3,15,3,15,3,15,3,15,3,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 16.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,14,12,13,7,6,6,2,14,7,6,6,2,14,7,9,12,3,15,3,15,3,15,3,15,3,15,3,15,3,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"14\", \"12\", \"13\", \"7\", \"6\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,14,12,13,7,6,6,2,14,7,6,6,2,14,7,9,12,3,15,3,15,3,15,3,15,3,15,3,15,3,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"12\", \"3\", \"15\", \"3\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,14,12,13,7,6,6,2,14,7,6,6,2,14,7,9,12,3,15,3,15,3,15,3,15,3,15,3,15,3,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"15\", \"3\", \"15\", \"3\"], \"clip_start\": 17.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,14,12,13,7,6,6,2,14,7,6,6,2,14,7,9,12,3,15,3,15,3,15,3,15,3,15,3,15,3,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"7\", \"9\", \"12\", \"3\"], \"clip_start\": 13.0, \"clip_end\": 19.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,14,12,13,7,6,6,2,14,7,6,6,2,14,7,9,12,3,15,3,15,3,15,3,15,3,15,3,15,3,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"3\", \"15\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,14,12,13,7,6,6,2,14,7,6,6,2,14,7,9,12,3,15,3,15,3,15,3,15,3,15,3,15,3,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"3\", \"15\", \"3\", \"15\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,14,12,13,7,6,6,2,14,7,6,6,2,14,7,9,12,3,15,3,15,3,15,3,15,3,15,3,15,3,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"2\", \"14\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,14,12,13,7,6,6,2,14,7,6,6,2,14,7,9,12,3,15,3,15,3,15,3,15,3,15,3,15,3,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 29.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,14,12,13,7,6,6,2,14,7,6,6,2,14,7,9,12,3,15,3,15,3,15,3,15,3,15,3,15,3,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"3\", \"15\", \"3\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,14,12,13,7,6,6,2,14,7,6,6,2,14,7,9,12,3,15,3,15,3,15,3,15,3,15,3,15,3,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"3\", \"15\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,14,12,13,7,6,6,2,14,7,6,6,2,14,7,9,12,3,15,3,15,3,15,3,15,3,15,3,15,3,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"3\", \"15\", \"3\", \"15\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,14,12,13,7,6,6,2,14,7,6,6,2,14,7,9,12,3,15,3,15,3,15,3,15,3,15,3,15,3,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,14,12,13,7,6,6,2,14,7,6,6,2,14,7,9,12,3,15,3,15,3,15,3,15,3,15,3,15,3,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"13\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,14,12,13,7,6,6,2,14,7,6,6,2,14,7,9,12,3,15,3,15,3,15,3,15,3,15,3,15,3,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"3\", \"15\", \"3\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,14,12,13,7,6,6,2,14,7,6,6,2,14,7,9,12,3,15,3,15,3,15,3,15,3,15,3,15,3,15", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"14\", \"8\", \"4\", \"10\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,12,4,6,10,3,15,12,6,8,3,3,15,12,6,0,0,12,6,8,3,3,9,7,14,8,4,10,15,11,12", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"15\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,12,4,6,10,3,15,12,6,8,3,3,15,12,6,0,0,12,6,8,3,3,9,7,14,8,4,10,15,11,12", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"14\", \"8\", \"4\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,12,4,6,10,3,15,12,6,8,3,3,15,12,6,0,0,12,6,8,3,3,9,7,14,8,4,10,15,11,12", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"3\", \"9\"], \"clip_start\": 20.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,12,4,6,10,3,15,12,6,8,3,3,15,12,6,0,0,12,6,8,3,3,9,7,14,8,4,10,15,11,12", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,12,4,6,10,3,15,12,6,8,3,3,15,12,6,0,0,12,6,8,3,3,9,7,14,8,4,10,15,11,12", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"8\", \"3\", \"3\", \"15\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,12,4,6,10,3,15,12,6,8,3,3,15,12,6,0,0,12,6,8,3,3,9,7,14,8,4,10,15,11,12", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"8\", \"3\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,12,4,6,10,3,15,12,6,8,3,3,15,12,6,0,0,12,6,8,3,3,9,7,14,8,4,10,15,11,12", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"4\", \"8\", \"6\", \"0\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,12,4,6,10,3,15,12,6,8,3,3,15,12,6,0,0,12,6,8,3,3,9,7,14,8,4,10,15,11,12", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"7\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q8_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,12,4,6,10,3,15,12,6,8,3,3,15,12,6,0,0,12,6,8,3,3,9,7,14,8,4,10,15,11,12", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\", \"15\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,12,4,6,10,3,15,12,6,8,3,3,15,12,6,0,0,12,6,8,3,3,9,7,14,8,4,10,15,11,12", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"1\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,12,4,6,10,3,15,12,6,8,3,3,15,12,6,0,0,12,6,8,3,3,9,7,14,8,4,10,15,11,12", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"0\", \"12\", \"6\", \"8\", \"3\"], \"clip_start\": 16.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q11_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,12,4,6,10,3,15,12,6,8,3,3,15,12,6,0,0,12,6,8,3,3,9,7,14,8,4,10,15,11,12", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"8\", \"2\", \"5\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,12,4,6,10,3,15,12,6,8,3,3,15,12,6,0,0,12,6,8,3,3,9,7,14,8,4,10,15,11,12", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"8\", \"3\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,12,4,6,10,3,15,12,6,8,3,3,15,12,6,0,0,12,6,8,3,3,9,7,14,8,4,10,15,11,12", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"6\", \"10\", \"3\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,12,4,6,10,3,15,12,6,8,3,3,15,12,6,0,0,12,6,8,3,3,9,7,14,8,4,10,15,11,12", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"11\", \"12\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q15_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,12,4,6,10,3,15,12,6,8,3,3,15,12,6,0,0,12,6,8,3,3,9,7,14,8,4,10,15,11,12", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"11\", \"1\", \"4\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,11,5,12,12,11,15,5,9,12,9,5,12,3,10,12,9,8,15,5,0,4,0,1,4,8,11,1,4,8,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"4\", \"0\", \"1\", \"4\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,11,5,12,12,11,15,5,9,12,9,5,12,3,10,12,9,8,15,5,0,4,0,1,4,8,11,1,4,8,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"11\", \"15\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,11,5,12,12,11,15,5,9,12,9,5,12,3,10,12,9,8,15,5,0,4,0,1,4,8,11,1,4,8,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 8.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,11,5,12,12,11,15,5,9,12,9,5,12,3,10,12,9,8,15,5,0,4,0,1,4,8,11,1,4,8,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"12\"], \"clip_start\": 16.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q4_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,11,5,12,12,11,15,5,9,12,9,5,12,3,10,12,9,8,15,5,0,4,0,1,4,8,11,1,4,8,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"15\", \"5\", \"0\", \"4\", \"0\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,11,5,12,12,11,15,5,9,12,9,5,12,3,10,12,9,8,15,5,0,4,0,1,4,8,11,1,4,8,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"10\", \"14\", \"10\", \"0\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q6_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,11,5,12,12,11,15,5,9,12,9,5,12,3,10,12,9,8,15,5,0,4,0,1,4,8,11,1,4,8,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"0\", \"4\", \"0\", \"1\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,11,5,12,12,11,15,5,9,12,9,5,12,3,10,12,9,8,15,5,0,4,0,1,4,8,11,1,4,8,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"15\", \"5\", \"0\", \"4\", \"0\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,11,5,12,12,11,15,5,9,12,9,5,12,3,10,12,9,8,15,5,0,4,0,1,4,8,11,1,4,8,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"4\", \"0\"], \"clip_start\": 20.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,11,5,12,12,11,15,5,9,12,9,5,12,3,10,12,9,8,15,5,0,4,0,1,4,8,11,1,4,8,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"3\", \"10\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q10_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,11,5,12,12,11,15,5,9,12,9,5,12,3,10,12,9,8,15,5,0,4,0,1,4,8,11,1,4,8,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"9\", \"8\", \"15\", \"5\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,11,5,12,12,11,15,5,9,12,9,5,12,3,10,12,9,8,15,5,0,4,0,1,4,8,11,1,4,8,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"8\", \"0\", \"4\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,11,5,12,12,11,15,5,9,12,9,5,12,3,10,12,9,8,15,5,0,4,0,1,4,8,11,1,4,8,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"4\", \"0\", \"1\"], \"clip_start\": 21.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,11,5,12,12,11,15,5,9,12,9,5,12,3,10,12,9,8,15,5,0,4,0,1,4,8,11,1,4,8,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"5\", \"9\", \"12\", \"9\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q14_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,11,5,12,12,11,15,5,9,12,9,5,12,3,10,12,9,8,15,5,0,4,0,1,4,8,11,1,4,8,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"12\", \"3\", \"10\", \"12\"], \"clip_start\": 11.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q15_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,11,5,12,12,11,15,5,9,12,9,5,12,3,10,12,9,8,15,5,0,4,0,1,4,8,11,1,4,8,11", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"12\", \"3\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,10,7,11,3,13,0,5,7,11,9,14,7,9,14,7,11,7,11,7,11,7,11,7,12,6,12,3,13,0,5", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"7\", \"11\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,10,7,11,3,13,0,5,7,11,9,14,7,9,14,7,11,7,11,7,11,7,11,7,12,6,12,3,13,0,5", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"7\", \"11\", \"7\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,10,7,11,3,13,0,5,7,11,9,14,7,9,14,7,11,7,11,7,11,7,11,7,12,6,12,3,13,0,5", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"10\", \"7\", \"11\", \"3\", \"13\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,10,7,11,3,13,0,5,7,11,9,14,7,9,14,7,11,7,11,7,11,7,11,7,12,6,12,3,13,0,5", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"6\"], \"clip_start\": 24.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,10,7,11,3,13,0,5,7,11,9,14,7,9,14,7,11,7,11,7,11,7,11,7,12,6,12,3,13,0,5", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\", \"1\"], \"clip_start\": 28.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q5_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,10,7,11,3,13,0,5,7,11,9,14,7,9,14,7,11,7,11,7,11,7,11,7,12,6,12,3,13,0,5", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"5\", \"7\", \"3\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q6_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,10,7,11,3,13,0,5,7,11,9,14,7,9,14,7,11,7,11,7,11,7,11,7,12,6,12,3,13,0,5", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"3\", \"13\", \"0\"], \"clip_start\": 26.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,10,7,11,3,13,0,5,7,11,9,14,7,9,14,7,11,7,11,7,11,7,11,7,12,6,12,3,13,0,5", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"7\", \"9\", \"14\", \"7\"], \"clip_start\": 11.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q8_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,10,7,11,3,13,0,5,7,11,9,14,7,9,14,7,11,7,11,7,11,7,11,7,12,6,12,3,13,0,5", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"3\"], \"clip_start\": 26.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,10,7,11,3,13,0,5,7,11,9,14,7,9,14,7,11,7,11,7,11,7,11,7,12,6,12,3,13,0,5", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"5\", \"7\", \"11\", \"9\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q10_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,10,7,11,3,13,0,5,7,11,9,14,7,9,14,7,11,7,11,7,11,7,11,7,12,6,12,3,13,0,5", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"9\", \"14\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q11_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,10,7,11,3,13,0,5,7,11,9,14,7,9,14,7,11,7,11,7,11,7,11,7,12,6,12,3,13,0,5", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"10\", \"5\", \"10\", \"7\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,10,7,11,3,13,0,5,7,11,9,14,7,9,14,7,11,7,11,7,11,7,11,7,12,6,12,3,13,0,5", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"15\", \"0\", \"0\", \"10\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q13_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,10,7,11,3,13,0,5,7,11,9,14,7,9,14,7,11,7,11,7,11,7,11,7,12,6,12,3,13,0,5", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"14\", \"7\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,10,7,11,3,13,0,5,7,11,9,14,7,9,14,7,11,7,11,7,11,7,11,7,12,6,12,3,13,0,5", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"8\", \"5\", \"10\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q15_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,10,7,11,3,13,0,5,7,11,9,14,7,9,14,7,11,7,11,7,11,7,11,7,12,6,12,3,13,0,5", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"12\"], \"clip_start\": 25.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,12,2,7,0,12,10,13,2,7,0,12,12,9,11,1,3,12,1,3,12,0,9,11,1,3,12,0,9,5,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,12,2,7,0,12,10,13,2,7,0,12,12,9,11,1,3,12,1,3,12,0,9,11,1,3,12,0,9,5,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"9\", \"11\"], \"clip_start\": 21.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,12,2,7,0,12,10,13,2,7,0,12,12,9,11,1,3,12,1,3,12,0,9,11,1,3,12,0,9,5,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"0\", \"9\"], \"clip_start\": 20.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,12,2,7,0,12,10,13,2,7,0,12,12,9,11,1,3,12,1,3,12,0,9,11,1,3,12,0,9,5,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"1\", \"3\", \"12\", \"1\", \"3\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,12,2,7,0,12,10,13,2,7,0,12,12,9,11,1,3,12,1,3,12,0,9,11,1,3,12,0,9,5,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"0\", \"9\"], \"clip_start\": 20.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,12,2,7,0,12,10,13,2,7,0,12,12,9,11,1,3,12,1,3,12,0,9,11,1,3,12,0,9,5,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"9\", \"11\"], \"clip_start\": 21.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,12,2,7,0,12,10,13,2,7,0,12,12,9,11,1,3,12,1,3,12,0,9,11,1,3,12,0,9,5,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\", \"13\", \"2\", \"7\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,12,2,7,0,12,10,13,2,7,0,12,12,9,11,1,3,12,1,3,12,0,9,11,1,3,12,0,9,5,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"1\", \"3\"], \"clip_start\": 17.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,12,2,7,0,12,10,13,2,7,0,12,12,9,11,1,3,12,1,3,12,0,9,11,1,3,12,0,9,5,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"3\"], \"clip_start\": 14.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,12,2,7,0,12,10,13,2,7,0,12,12,9,11,1,3,12,1,3,12,0,9,11,1,3,12,0,9,5,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,12,2,7,0,12,10,13,2,7,0,12,12,9,11,1,3,12,1,3,12,0,9,11,1,3,12,0,9,5,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"11\"], \"clip_start\": 29.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,12,2,7,0,12,10,13,2,7,0,12,12,9,11,1,3,12,1,3,12,0,9,11,1,3,12,0,9,5,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"1\", \"3\", \"12\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,12,2,7,0,12,10,13,2,7,0,12,12,9,11,1,3,12,1,3,12,0,9,11,1,3,12,0,9,5,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"1\", \"3\", \"12\", \"0\", \"9\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,12,2,7,0,12,10,13,2,7,0,12,12,9,11,1,3,12,1,3,12,0,9,11,1,3,12,0,9,5,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"9\", \"5\"], \"clip_start\": 27.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,12,2,7,0,12,10,13,2,7,0,12,12,9,11,1,3,12,1,3,12,0,9,11,1,3,12,0,9,5,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"0\", \"9\", \"11\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,7,12,2,7,0,12,10,13,2,7,0,12,12,9,11,1,3,12,1,3,12,0,9,11,1,3,12,0,9,5,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"8\", \"15\", \"11\", \"13\", \"11\"], \"clip_start\": 11.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,0,13,5,10,15,13,5,14,6,1,8,15,11,13,11,12,5,14,6,1,13,0,6,1,6,1,15,5,13,5", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"15\", \"11\", \"13\", \"11\", \"12\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,0,13,5,10,15,13,5,14,6,1,8,15,11,13,11,12,5,14,6,1,13,0,6,1,6,1,15,5,13,5", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"14\", \"6\", \"1\"], \"clip_start\": 17.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,0,13,5,10,15,13,5,14,6,1,8,15,11,13,11,12,5,14,6,1,13,0,6,1,6,1,15,5,13,5", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"8\", \"15\", \"11\", \"13\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,0,13,5,10,15,13,5,14,6,1,8,15,11,13,11,12,5,14,6,1,13,0,6,1,6,1,15,5,13,5", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"0\", \"6\", \"1\", \"6\"], \"clip_start\": 21.0, \"clip_end\": 27.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,0,13,5,10,15,13,5,14,6,1,8,15,11,13,11,12,5,14,6,1,13,0,6,1,6,1,15,5,13,5", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 22.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,0,13,5,10,15,13,5,14,6,1,8,15,11,13,11,12,5,14,6,1,13,0,6,1,6,1,15,5,13,5", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"6\", \"1\", \"6\", \"1\"], \"clip_start\": 22.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,0,13,5,10,15,13,5,14,6,1,8,15,11,13,11,12,5,14,6,1,13,0,6,1,6,1,15,5,13,5", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,0,13,5,10,15,13,5,14,6,1,8,15,11,13,11,12,5,14,6,1,13,0,6,1,6,1,15,5,13,5", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"10\", \"15\", \"13\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,0,13,5,10,15,13,5,14,6,1,8,15,11,13,11,12,5,14,6,1,13,0,6,1,6,1,15,5,13,5", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"14\", \"6\", \"1\"], \"clip_start\": 17.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,0,13,5,10,15,13,5,14,6,1,8,15,11,13,11,12,5,14,6,1,13,0,6,1,6,1,15,5,13,5", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,0,13,5,10,15,13,5,14,6,1,8,15,11,13,11,12,5,14,6,1,13,0,6,1,6,1,15,5,13,5", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"15\", \"13\", \"5\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,0,13,5,10,15,13,5,14,6,1,8,15,11,13,11,12,5,14,6,1,13,0,6,1,6,1,15,5,13,5", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"14\", \"6\", \"1\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,0,13,5,10,15,13,5,14,6,1,8,15,11,13,11,12,5,14,6,1,13,0,6,1,6,1,15,5,13,5", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"6\", \"1\", \"13\", \"0\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,0,13,5,10,15,13,5,14,6,1,8,15,11,13,11,12,5,14,6,1,13,0,6,1,6,1,15,5,13,5", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,0,13,5,10,15,13,5,14,6,1,8,15,11,13,11,12,5,14,6,1,13,0,6,1,6,1,15,5,13,5", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"14\"], \"clip_start\": 17.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q15_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,0,13,5,10,15,13,5,14,6,1,8,15,11,13,11,12,5,14,6,1,13,0,6,1,6,1,15,5,13,5", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"5\", \"15\", \"8\"], \"clip_start\": 23.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,8,1,3,2,1,8,1,5,9,10,8,1,3,2,1,1,13,7,10,1,0,3,5,15,8,8,8,1,1,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 27.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,8,1,3,2,1,8,1,5,9,10,8,1,3,2,1,1,13,7,10,1,0,3,5,15,8,8,8,1,1,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,8,1,3,2,1,8,1,5,9,10,8,1,3,2,1,1,13,7,10,1,0,3,5,15,8,8,8,1,1,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"7\", \"10\", \"1\"], \"clip_start\": 17.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,8,1,3,2,1,8,1,5,9,10,8,1,3,2,1,1,13,7,10,1,0,3,5,15,8,8,8,1,1,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 21.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,8,1,3,2,1,8,1,5,9,10,8,1,3,2,1,1,13,7,10,1,0,3,5,15,8,8,8,1,1,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 26.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,8,1,3,2,1,8,1,5,9,10,8,1,3,2,1,1,13,7,10,1,0,3,5,15,8,8,8,1,1,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"0\"], \"clip_start\": 20.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,8,1,3,2,1,8,1,5,9,10,8,1,3,2,1,1,13,7,10,1,0,3,5,15,8,8,8,1,1,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"10\", \"1\", \"0\"], \"clip_start\": 18.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,8,1,3,2,1,8,1,5,9,10,8,1,3,2,1,1,13,7,10,1,0,3,5,15,8,8,8,1,1,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"8\", \"8\"], \"clip_start\": 26.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,8,1,3,2,1,8,1,5,9,10,8,1,3,2,1,1,13,7,10,1,0,3,5,15,8,8,8,1,1,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"1\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q9_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,8,1,3,2,1,8,1,5,9,10,8,1,3,2,1,1,13,7,10,1,0,3,5,15,8,8,8,1,1,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"10\", \"8\", \"1\", \"3\", \"2\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,8,1,3,2,1,8,1,5,9,10,8,1,3,2,1,1,13,7,10,1,0,3,5,15,8,8,8,1,1,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"5\", \"9\"], \"clip_start\": 7.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q11_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,8,1,3,2,1,8,1,5,9,10,8,1,3,2,1,1,13,7,10,1,0,3,5,15,8,8,8,1,1,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"0\", \"3\", \"5\", \"15\"], \"clip_start\": 20.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q12_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,8,1,3,2,1,8,1,5,9,10,8,1,3,2,1,1,13,7,10,1,0,3,5,15,8,8,8,1,1,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"1\", \"13\", \"7\"], \"clip_start\": 16.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q13_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,8,1,3,2,1,8,1,5,9,10,8,1,3,2,1,1,13,7,10,1,0,3,5,15,8,8,8,1,1,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"11\", \"2\", \"3\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q14_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,8,1,3,2,1,8,1,5,9,10,8,1,3,2,1,1,13,7,10,1,0,3,5,15,8,8,8,1,1,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"13\", \"9\", \"14\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q15_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,8,1,3,2,1,8,1,5,9,10,8,1,3,2,1,1,13,7,10,1,0,3,5,15,8,8,8,1,1,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"14\", \"11\"], \"clip_start\": 12.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,9,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,9,11,8", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"14\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,9,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,9,11,8", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"14\", \"11\", \"14\"], \"clip_start\": 20.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,9,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,9,11,8", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"14\", \"11\", \"14\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,9,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,9,11,8", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"14\", \"11\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,9,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,9,11,8", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"11\", \"14\", \"11\", \"14\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,9,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,9,11,8", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"14\", \"11\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,9,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,9,11,8", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"14\", \"11\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,9,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,9,11,8", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"14\"], \"clip_start\": 23.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,9,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,9,11,8", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"14\", \"11\", \"14\", \"11\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,9,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,9,11,8", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,9,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,9,11,8", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"14\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,9,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,9,11,8", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"14\", \"11\", \"14\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,9,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,9,11,8", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"14\", \"11\", \"14\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,9,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,9,11,8", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"14\", \"11\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,9,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,9,11,8", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"11\", \"14\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,9,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,14,11,9,11,8", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"15\", \"10\", \"9\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,12,3,11,14,12,15,10,9,11,14,12,4,13,0,4,0,6,4,13,0,6,13,11,13,15,6,4,13,0,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"4\", \"0\", \"6\"], \"clip_start\": 14.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,12,3,11,14,12,15,10,9,11,14,12,4,13,0,4,0,6,4,13,0,6,13,11,13,15,6,4,13,0,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"15\", \"6\", \"4\", \"13\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,12,3,11,14,12,15,10,9,11,14,12,4,13,0,4,0,6,4,13,0,6,13,11,13,15,6,4,13,0,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"12\", \"15\", \"10\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,12,3,11,14,12,15,10,9,11,14,12,4,13,0,4,0,6,4,13,0,6,13,11,13,15,6,4,13,0,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"13\", \"0\", \"4\"], \"clip_start\": 12.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,12,3,11,14,12,15,10,9,11,14,12,4,13,0,4,0,6,4,13,0,6,13,11,13,15,6,4,13,0,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"15\", \"10\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,12,3,11,14,12,15,10,9,11,14,12,4,13,0,4,0,6,4,13,0,6,13,11,13,15,6,4,13,0,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 25.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,12,3,11,14,12,15,10,9,11,14,12,4,13,0,4,0,6,4,13,0,6,13,11,13,15,6,4,13,0,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"9\", \"11\", \"14\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,12,3,11,14,12,15,10,9,11,14,12,4,13,0,4,0,6,4,13,0,6,13,11,13,15,6,4,13,0,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"10\", \"9\", \"11\", \"14\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,12,3,11,14,12,15,10,9,11,14,12,4,13,0,4,0,6,4,13,0,6,13,11,13,15,6,4,13,0,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"13\", \"0\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,12,3,11,14,12,15,10,9,11,14,12,4,13,0,4,0,6,4,13,0,6,13,11,13,15,6,4,13,0,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"13\", \"0\", \"4\"], \"clip_start\": 12.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,12,3,11,14,12,15,10,9,11,14,12,4,13,0,4,0,6,4,13,0,6,13,11,13,15,6,4,13,0,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"0\", \"6\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,12,3,11,14,12,15,10,9,11,14,12,4,13,0,4,0,6,4,13,0,6,13,11,13,15,6,4,13,0,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\"], \"clip_start\": 9.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,12,3,11,14,12,15,10,9,11,14,12,4,13,0,4,0,6,4,13,0,6,13,11,13,15,6,4,13,0,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"9\", \"11\", \"14\", \"12\", \"4\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q13_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,12,3,11,14,12,15,10,9,11,14,12,4,13,0,4,0,6,4,13,0,6,13,11,13,15,6,4,13,0,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"6\", \"4\", \"13\", \"0\", \"6\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,12,3,11,14,12,15,10,9,11,14,12,4,13,0,4,0,6,4,13,0,6,13,11,13,15,6,4,13,0,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"12\", \"15\", \"10\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,12,3,11,14,12,15,10,9,11,14,12,4,13,0,4,0,6,4,13,0,6,13,11,13,15,6,4,13,0,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,0,6,6,0,8,13,8,13,8,5,6,0,6,6,15,4,10,15,2,2,10,2,10,15,2,2,10,2,10,15", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"10\", \"15\", \"2\"], \"clip_start\": 17.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,0,6,6,0,8,13,8,13,8,5,6,0,6,6,15,4,10,15,2,2,10,2,10,15,2,2,10,2,10,15", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,0,6,6,0,8,13,8,13,8,5,6,0,6,6,15,4,10,15,2,2,10,2,10,15,2,2,10,2,10,15", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"4\", \"10\", \"15\"], \"clip_start\": 16.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,0,6,6,0,8,13,8,13,8,5,6,0,6,6,15,4,10,15,2,2,10,2,10,15,2,2,10,2,10,15", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"10\", \"15\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,0,6,6,0,8,13,8,13,8,5,6,0,6,6,15,4,10,15,2,2,10,2,10,15,2,2,10,2,10,15", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"4\", \"10\"], \"clip_start\": 14.0, \"clip_end\": 19.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,0,6,6,0,8,13,8,13,8,5,6,0,6,6,15,4,10,15,2,2,10,2,10,15,2,2,10,2,10,15", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"0\", \"8\", \"13\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,0,6,6,0,8,13,8,13,8,5,6,0,6,6,15,4,10,15,2,2,10,2,10,15,2,2,10,2,10,15", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"0\", \"6\", \"6\", \"0\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,0,6,6,0,8,13,8,13,8,5,6,0,6,6,15,4,10,15,2,2,10,2,10,15,2,2,10,2,10,15", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"10\", \"15\", \"2\", \"2\", \"10\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,0,6,6,0,8,13,8,13,8,5,6,0,6,6,15,4,10,15,2,2,10,2,10,15,2,2,10,2,10,15", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"10\", \"15\", \"2\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,0,6,6,0,8,13,8,13,8,5,6,0,6,6,15,4,10,15,2,2,10,2,10,15,2,2,10,2,10,15", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"2\", \"10\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,0,6,6,0,8,13,8,13,8,5,6,0,6,6,15,4,10,15,2,2,10,2,10,15,2,2,10,2,10,15", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,0,6,6,0,8,13,8,13,8,5,6,0,6,6,15,4,10,15,2,2,10,2,10,15,2,2,10,2,10,15", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"2\", \"10\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,0,6,6,0,8,13,8,13,8,5,6,0,6,6,15,4,10,15,2,2,10,2,10,15,2,2,10,2,10,15", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"12\"], \"clip_start\": 28.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,0,6,6,0,8,13,8,13,8,5,6,0,6,6,15,4,10,15,2,2,10,2,10,15,2,2,10,2,10,15", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"5\", \"6\", \"0\", \"6\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q14_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,0,6,6,0,8,13,8,13,8,5,6,0,6,6,15,4,10,15,2,2,10,2,10,15,2,2,10,2,10,15", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_ELOW", "source_split": "substream_video", "length_L": 32, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"13\", \"8\", \"13\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q15_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,0,6,6,0,8,13,8,13,8,5,6,0,6,6,15,4,10,15,2,2,10,2,10,15,2,2,10,2,10,15", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,11,5,3,11,2,13,7,2,3,11,2,13,7,2,2,8,11,2,13,7,2,7,9,7,9,3,11,2,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"11\", \"2\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,11,5,3,11,2,13,7,2,3,11,2,13,7,2,2,8,11,2,13,7,2,7,9,7,9,3,11,2,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,11,5,3,11,2,13,7,2,3,11,2,13,7,2,2,8,11,2,13,7,2,7,9,7,9,3,11,2,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"7\", \"2\", \"7\", \"9\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q3_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,11,5,3,11,2,13,7,2,3,11,2,13,7,2,2,8,11,2,13,7,2,7,9,7,9,3,11,2,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"11\", \"2\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q4_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,11,5,3,11,2,13,7,2,3,11,2,13,7,2,2,8,11,2,13,7,2,7,9,7,9,3,11,2,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"2\", \"3\", \"11\", \"2\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,11,5,3,11,2,13,7,2,3,11,2,13,7,2,2,8,11,2,13,7,2,7,9,7,9,3,11,2,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"3\", \"11\", \"2\", \"13\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,11,5,3,11,2,13,7,2,3,11,2,13,7,2,2,8,11,2,13,7,2,7,9,7,9,3,11,2,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"5\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,11,5,3,11,2,13,7,2,3,11,2,13,7,2,2,8,11,2,13,7,2,7,9,7,9,3,11,2,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"2\"], \"clip_start\": 13.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,11,5,3,11,2,13,7,2,3,11,2,13,7,2,2,8,11,2,13,7,2,7,9,7,9,3,11,2,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"7\"], \"clip_start\": 22.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,11,5,3,11,2,13,7,2,3,11,2,13,7,2,2,8,11,2,13,7,2,7,9,7,9,3,11,2,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"2\", \"13\", \"7\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,11,5,3,11,2,13,7,2,3,11,2,13,7,2,2,8,11,2,13,7,2,7,9,7,9,3,11,2,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"3\", \"11\", \"2\", \"13\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,11,5,3,11,2,13,7,2,3,11,2,13,7,2,2,8,11,2,13,7,2,7,9,7,9,3,11,2,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"13\", \"7\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q12_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,11,5,3,11,2,13,7,2,3,11,2,13,7,2,2,8,11,2,13,7,2,7,9,7,9,3,11,2,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"2\", \"13\", \"7\", \"2\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q13_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,11,5,3,11,2,13,7,2,3,11,2,13,7,2,2,8,11,2,13,7,2,7,9,7,9,3,11,2,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"15\", \"3\"], \"clip_start\": 26.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q14_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,11,5,3,11,2,13,7,2,3,11,2,13,7,2,2,8,11,2,13,7,2,7,9,7,9,3,11,2,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"11\", \"2\", \"13\", \"7\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,11,5,3,11,2,13,7,2,3,11,2,13,7,2,2,8,11,2,13,7,2,7,9,7,9,3,11,2,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"3\", \"13\", \"15\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,0,9,12,0,9,5,3,3,6,2,14,14,3,13,15,2,14,15,0,6,0,5,3,5,7,8,9,11,6,0,11", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"6\", \"2\", \"14\", \"14\", \"3\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,0,9,12,0,9,5,3,3,6,2,14,14,3,13,15,2,14,15,0,6,0,5,3,5,7,8,9,11,6,0,11", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,0,9,12,0,9,5,3,3,6,2,14,14,3,13,15,2,14,15,0,6,0,5,3,5,7,8,9,11,6,0,11", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"5\", \"3\", \"5\", \"7\", \"8\"], \"clip_start\": 21.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,0,9,12,0,9,5,3,3,6,2,14,14,3,13,15,2,14,15,0,6,0,5,3,5,7,8,9,11,6,0,11", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"12\", \"0\", \"9\", \"5\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,0,9,12,0,9,5,3,3,6,2,14,14,3,13,15,2,14,15,0,6,0,5,3,5,7,8,9,11,6,0,11", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"0\", \"6\", \"0\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,0,9,12,0,9,5,3,3,6,2,14,14,3,13,15,2,14,15,0,6,0,5,3,5,7,8,9,11,6,0,11", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"6\", \"0\"], \"clip_start\": 27.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,0,9,12,0,9,5,3,3,6,2,14,14,3,13,15,2,14,15,0,6,0,5,3,5,7,8,9,11,6,0,11", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,0,9,12,0,9,5,3,3,6,2,14,14,3,13,15,2,14,15,0,6,0,5,3,5,7,8,9,11,6,0,11", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,0,9,12,0,9,5,3,3,6,2,14,14,3,13,15,2,14,15,0,6,0,5,3,5,7,8,9,11,6,0,11", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"14\", \"14\", \"3\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,0,9,12,0,9,5,3,3,6,2,14,14,3,13,15,2,14,15,0,6,0,5,3,5,7,8,9,11,6,0,11", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"3\", \"3\", \"6\", \"2\", \"14\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,0,9,12,0,9,5,3,3,6,2,14,14,3,13,15,2,14,15,0,6,0,5,3,5,7,8,9,11,6,0,11", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q11_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,0,9,12,0,9,5,3,3,6,2,14,14,3,13,15,2,14,15,0,6,0,5,3,5,7,8,9,11,6,0,11", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"3\", \"5\", \"7\", \"8\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,0,9,12,0,9,5,3,3,6,2,14,14,3,13,15,2,14,15,0,6,0,5,3,5,7,8,9,11,6,0,11", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"8\", \"9\", \"11\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q13_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,0,9,12,0,9,5,3,3,6,2,14,14,3,13,15,2,14,15,0,6,0,5,3,5,7,8,9,11,6,0,11", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"12\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,0,9,12,0,9,5,3,3,6,2,14,14,3,13,15,2,14,15,0,6,0,5,3,5,7,8,9,11,6,0,11", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"15\", \"2\", \"14\", \"15\", \"0\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q15_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,0,9,12,0,9,5,3,3,6,2,14,14,3,13,15,2,14,15,0,6,0,5,3,5,7,8,9,11,6,0,11", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"6\", \"0\", \"5\", \"2\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,3,13,10,2,3,6,0,5,2,3,6,9,10,1,0,12,12,4,11,5,1,7,2,3,6,0,11,14,10,2", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"12\", \"4\", \"11\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,3,13,10,2,3,6,0,5,2,3,6,9,10,1,0,12,12,4,11,5,1,7,2,3,6,0,11,14,10,2", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"3\", \"13\", \"10\", \"2\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,3,13,10,2,3,6,0,5,2,3,6,9,10,1,0,12,12,4,11,5,1,7,2,3,6,0,11,14,10,2", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"0\", \"11\", \"14\", \"10\"], \"clip_start\": 26.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,3,13,10,2,3,6,0,5,2,3,6,9,10,1,0,12,12,4,11,5,1,7,2,3,6,0,11,14,10,2", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"5\", \"1\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,3,13,10,2,3,6,0,5,2,3,6,9,10,1,0,12,12,4,11,5,1,7,2,3,6,0,11,14,10,2", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"3\", \"13\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q5_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,3,13,10,2,3,6,0,5,2,3,6,9,10,1,0,12,12,4,11,5,1,7,2,3,6,0,11,14,10,2", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"10\", \"1\", \"0\"], \"clip_start\": 12.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,3,13,10,2,3,6,0,5,2,3,6,9,10,1,0,12,12,4,11,5,1,7,2,3,6,0,11,14,10,2", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"13\", \"10\", \"2\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,3,13,10,2,3,6,0,5,2,3,6,9,10,1,0,12,12,4,11,5,1,7,2,3,6,0,11,14,10,2", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"10\", \"1\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,3,13,10,2,3,6,0,5,2,3,6,9,10,1,0,12,12,4,11,5,1,7,2,3,6,0,11,14,10,2", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"6\", \"0\", \"5\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q9_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,3,13,10,2,3,6,0,5,2,3,6,9,10,1,0,12,12,4,11,5,1,7,2,3,6,0,11,14,10,2", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"5\", \"1\", \"7\", \"2\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,3,13,10,2,3,6,0,5,2,3,6,9,10,1,0,12,12,4,11,5,1,7,2,3,6,0,11,14,10,2", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"0\", \"12\", \"12\", \"4\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q11_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,3,13,10,2,3,6,0,5,2,3,6,9,10,1,0,12,12,4,11,5,1,7,2,3,6,0,11,14,10,2", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"6\", \"9\", \"10\", \"1\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q12_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,3,13,10,2,3,6,0,5,2,3,6,9,10,1,0,12,12,4,11,5,1,7,2,3,6,0,11,14,10,2", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"9\", \"1\", \"6\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q13_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,3,13,10,2,3,6,0,5,2,3,6,9,10,1,0,12,12,4,11,5,1,7,2,3,6,0,11,14,10,2", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"6\", \"9\", \"10\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,3,13,10,2,3,6,0,5,2,3,6,9,10,1,0,12,12,4,11,5,1,7,2,3,6,0,11,14,10,2", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"0\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q15_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,3,13,10,2,3,6,0,5,2,3,6,9,10,1,0,12,12,4,11,5,1,7,2,3,6,0,11,14,10,2", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"7\", \"5\", \"11\", \"11\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,0,7,13,9,8,15,1,6,2,7,12,13,15,1,15,1,11,8,12,7,5,11,11,9,8,12,13,15,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"8\", \"12\", \"7\", \"5\"], \"clip_start\": 17.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,0,7,13,9,8,15,1,6,2,7,12,13,15,1,15,1,11,8,12,7,5,11,11,9,8,12,13,15,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"15\", \"3\", \"11\"], \"clip_start\": 26.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,0,7,13,9,8,15,1,6,2,7,12,13,15,1,15,1,11,8,12,7,5,11,11,9,8,12,13,15,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"9\", \"8\", \"15\", \"1\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,0,7,13,9,8,15,1,6,2,7,12,13,15,1,15,1,11,8,12,7,5,11,11,9,8,12,13,15,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"15\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,0,7,13,9,8,15,1,6,2,7,12,13,15,1,15,1,11,8,12,7,5,11,11,9,8,12,13,15,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"7\", \"5\", \"11\", \"11\", \"9\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,0,7,13,9,8,15,1,6,2,7,12,13,15,1,15,1,11,8,12,7,5,11,11,9,8,12,13,15,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 15.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,0,7,13,9,8,15,1,6,2,7,12,13,15,1,15,1,11,8,12,7,5,11,11,9,8,12,13,15,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"6\", \"2\", \"7\", \"12\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,0,7,13,9,8,15,1,6,2,7,12,13,15,1,15,1,11,8,12,7,5,11,11,9,8,12,13,15,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"8\", \"12\"], \"clip_start\": 23.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,0,7,13,9,8,15,1,6,2,7,12,13,15,1,15,1,11,8,12,7,5,11,11,9,8,12,13,15,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"6\", \"2\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,0,7,13,9,8,15,1,6,2,7,12,13,15,1,15,1,11,8,12,7,5,11,11,9,8,12,13,15,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"15\", \"3\", \"11\"], \"clip_start\": 27.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,0,7,13,9,8,15,1,6,2,7,12,13,15,1,15,1,11,8,12,7,5,11,11,9,8,12,13,15,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,0,7,13,9,8,15,1,6,2,7,12,13,15,1,15,1,11,8,12,7,5,11,11,9,8,12,13,15,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"7\", \"13\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,0,7,13,9,8,15,1,6,2,7,12,13,15,1,15,1,11,8,12,7,5,11,11,9,8,12,13,15,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 29.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,0,7,13,9,8,15,1,6,2,7,12,13,15,1,15,1,11,8,12,7,5,11,11,9,8,12,13,15,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"3\", \"11\", \"6\"], \"clip_start\": 28.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,0,7,13,9,8,15,1,6,2,7,12,13,15,1,15,1,11,8,12,7,5,11,11,9,8,12,13,15,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,0,7,13,9,8,15,1,6,2,7,12,13,15,1,15,1,11,8,12,7,5,11,11,9,8,12,13,15,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\", \"3\", \"5\", \"6\"], \"clip_start\": 11.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,5,9,9,12,1,14,14,9,12,2,11,0,3,5,6,12,13,14,10,10,4,12,13,6,12,13,0,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"9\", \"9\", \"12\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,5,9,9,12,1,14,14,9,12,2,11,0,3,5,6,12,13,14,10,10,4,12,13,6,12,13,0,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"2\", \"11\", \"0\", \"3\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,5,9,9,12,1,14,14,9,12,2,11,0,3,5,6,12,13,14,10,10,4,12,13,6,12,13,0,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,5,9,9,12,1,14,14,9,12,2,11,0,3,5,6,12,13,14,10,10,4,12,13,6,12,13,0,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 24.0, \"clip_end\": 27.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,5,9,9,12,1,14,14,9,12,2,11,0,3,5,6,12,13,14,10,10,4,12,13,6,12,13,0,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"10\", \"10\", \"4\", \"12\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,5,9,9,12,1,14,14,9,12,2,11,0,3,5,6,12,13,14,10,10,4,12,13,6,12,13,0,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"10\", \"10\", \"4\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,5,9,9,12,1,14,14,9,12,2,11,0,3,5,6,12,13,14,10,10,4,12,13,6,12,13,0,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"10\", \"4\", \"12\", \"13\", \"6\"], \"clip_start\": 20.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,5,9,9,12,1,14,14,9,12,2,11,0,3,5,6,12,13,14,10,10,4,12,13,6,12,13,0,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"10\", \"10\", \"4\", \"12\", \"13\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,5,9,9,12,1,14,14,9,12,2,11,0,3,5,6,12,13,14,10,10,4,12,13,6,12,13,0,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 13.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,5,9,9,12,1,14,14,9,12,2,11,0,3,5,6,12,13,14,10,10,4,12,13,6,12,13,0,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,5,9,9,12,1,14,14,9,12,2,11,0,3,5,6,12,13,14,10,10,4,12,13,6,12,13,0,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"5\", \"6\", \"12\", \"13\", \"14\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,5,9,9,12,1,14,14,9,12,2,11,0,3,5,6,12,13,14,10,10,4,12,13,6,12,13,0,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"9\", \"12\", \"1\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,5,9,9,12,1,14,14,9,12,2,11,0,3,5,6,12,13,14,10,10,4,12,13,6,12,13,0,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"2\", \"11\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,5,9,9,12,1,14,14,9,12,2,11,0,3,5,6,12,13,14,10,10,4,12,13,6,12,13,0,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"1\", \"14\", \"14\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,5,9,9,12,1,14,14,9,12,2,11,0,3,5,6,12,13,14,10,10,4,12,13,6,12,13,0,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"5\", \"6\", \"12\", \"13\", \"14\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,5,9,9,12,1,14,14,9,12,2,11,0,3,5,6,12,13,14,10,10,4,12,13,6,12,13,0,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"12\", \"4\", \"0\", \"9\"], \"clip_start\": 21.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,12,7,1,0,15,12,0,15,12,6,8,7,13,2,13,5,1,0,15,12,6,15,12,4,0,9,11,4,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"5\", \"1\"], \"clip_start\": 14.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,12,7,1,0,15,12,0,15,12,6,8,7,13,2,13,5,1,0,15,12,6,15,12,4,0,9,11,4,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"15\", \"12\", \"0\", \"15\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,12,7,1,0,15,12,0,15,12,6,8,7,13,2,13,5,1,0,15,12,6,15,12,4,0,9,11,4,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,12,7,1,0,15,12,0,15,12,6,8,7,13,2,13,5,1,0,15,12,6,15,12,4,0,9,11,4,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"0\", \"15\", \"12\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,12,7,1,0,15,12,0,15,12,6,8,7,13,2,13,5,1,0,15,12,6,15,12,4,0,9,11,4,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"0\", \"9\", \"11\", \"4\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,12,7,1,0,15,12,0,15,12,6,8,7,13,2,13,5,1,0,15,12,6,15,12,4,0,9,11,4,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"7\", \"1\", \"0\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,12,7,1,0,15,12,0,15,12,6,8,7,13,2,13,5,1,0,15,12,6,15,12,4,0,9,11,4,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"15\", \"12\", \"0\", \"15\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q7_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,12,7,1,0,15,12,0,15,12,6,8,7,13,2,13,5,1,0,15,12,6,15,12,4,0,9,11,4,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"0\", \"15\", \"12\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,12,7,1,0,15,12,0,15,12,6,8,7,13,2,13,5,1,0,15,12,6,15,12,4,0,9,11,4,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"4\", \"0\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q9_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,12,7,1,0,15,12,0,15,12,6,8,7,13,2,13,5,1,0,15,12,6,15,12,4,0,9,11,4,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"6\", \"15\", \"12\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q10_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,12,7,1,0,15,12,0,15,12,6,8,7,13,2,13,5,1,0,15,12,6,15,12,4,0,9,11,4,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"4\", \"10\", \"1\", \"0\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,12,7,1,0,15,12,0,15,12,6,8,7,13,2,13,5,1,0,15,12,6,15,12,4,0,9,11,4,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"15\", \"12\", \"0\", \"15\", \"12\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,12,7,1,0,15,12,0,15,12,6,8,7,13,2,13,5,1,0,15,12,6,15,12,4,0,9,11,4,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"12\", \"4\", \"0\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,12,7,1,0,15,12,0,15,12,6,8,7,13,2,13,5,1,0,15,12,6,15,12,4,0,9,11,4,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\", \"2\", \"15\", \"0\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q14_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,12,7,1,0,15,12,0,15,12,6,8,7,13,2,13,5,1,0,15,12,6,15,12,4,0,9,11,4,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"1\", \"0\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,12,7,1,0,15,12,0,15,12,6,8,7,13,2,13,5,1,0,15,12,6,15,12,4,0,9,11,4,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"14\", \"4\", \"9\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,3,9,5,7,12,14,4,9,1,5,13,0,15,2,4,9,6,6,3,9,14,4,9,15,11,2,4,9,13,8", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"15\", \"11\"], \"clip_start\": 23.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,3,9,5,7,12,14,4,9,1,5,13,0,15,2,4,9,6,6,3,9,14,4,9,15,11,2,4,9,13,8", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"4\", \"9\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,3,9,5,7,12,14,4,9,1,5,13,0,15,2,4,9,6,6,3,9,14,4,9,15,11,2,4,9,13,8", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"4\", \"9\", \"1\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,3,9,5,7,12,14,4,9,1,5,13,0,15,2,4,9,6,6,3,9,14,4,9,15,11,2,4,9,13,8", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 15.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,3,9,5,7,12,14,4,9,1,5,13,0,15,2,4,9,6,6,3,9,14,4,9,15,11,2,4,9,13,8", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"15\", \"2\", \"4\"], \"clip_start\": 13.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,3,9,5,7,12,14,4,9,1,5,13,0,15,2,4,9,6,6,3,9,14,4,9,15,11,2,4,9,13,8", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"15\", \"11\", \"2\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,3,9,5,7,12,14,4,9,1,5,13,0,15,2,4,9,6,6,3,9,14,4,9,15,11,2,4,9,13,8", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,3,9,5,7,12,14,4,9,1,5,13,0,15,2,4,9,6,6,3,9,14,4,9,15,11,2,4,9,13,8", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"1\", \"5\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,3,9,5,7,12,14,4,9,1,5,13,0,15,2,4,9,6,6,3,9,14,4,9,15,11,2,4,9,13,8", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"8\"], \"clip_start\": 26.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,3,9,5,7,12,14,4,9,1,5,13,0,15,2,4,9,6,6,3,9,14,4,9,15,11,2,4,9,13,8", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"14\", \"4\", \"9\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,3,9,5,7,12,14,4,9,1,5,13,0,15,2,4,9,6,6,3,9,14,4,9,15,11,2,4,9,13,8", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"9\", \"14\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q11_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,3,9,5,7,12,14,4,9,1,5,13,0,15,2,4,9,6,6,3,9,14,4,9,15,11,2,4,9,13,8", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,3,9,5,7,12,14,4,9,1,5,13,0,15,2,4,9,6,6,3,9,14,4,9,15,11,2,4,9,13,8", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"9\", \"15\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,3,9,5,7,12,14,4,9,1,5,13,0,15,2,4,9,6,6,3,9,14,4,9,15,11,2,4,9,13,8", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"9\", \"14\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q14_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,3,9,5,7,12,14,4,9,1,5,13,0,15,2,4,9,6,6,3,9,14,4,9,15,11,2,4,9,13,8", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"5\", \"7\", \"12\", \"14\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,3,9,5,7,12,14,4,9,1,5,13,0,15,2,4,9,6,6,3,9,14,4,9,15,11,2,4,9,13,8", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"9\", \"11\", \"6\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,12,5,0,3,7,15,12,10,0,1,0,3,7,15,8,14,4,5,0,3,12,7,15,12,9,11,6,10,0,10,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"14\", \"4\", \"5\", \"0\", \"3\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,12,5,0,3,7,15,12,10,0,1,0,3,7,15,8,14,4,5,0,3,12,7,15,12,9,11,6,10,0,10,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"15\", \"12\", \"10\", \"0\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,12,5,0,3,7,15,12,10,0,1,0,3,7,15,8,14,4,5,0,3,12,7,15,12,9,11,6,10,0,10,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"3\"], \"clip_start\": 10.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,12,5,0,3,7,15,12,10,0,1,0,3,7,15,8,14,4,5,0,3,12,7,15,12,9,11,6,10,0,10,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"5\", \"0\", \"3\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,12,5,0,3,7,15,12,10,0,1,0,3,7,15,8,14,4,5,0,3,12,7,15,12,9,11,6,10,0,10,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"3\", \"7\", \"15\", \"8\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,12,5,0,3,7,15,12,10,0,1,0,3,7,15,8,14,4,5,0,3,12,7,15,12,9,11,6,10,0,10,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"9\", \"11\", \"6\", \"10\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,12,5,0,3,7,15,12,10,0,1,0,3,7,15,8,14,4,5,0,3,12,7,15,12,9,11,6,10,0,10,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"7\", \"15\", \"12\", \"9\"], \"clip_start\": 20.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,12,5,0,3,7,15,12,10,0,1,0,3,7,15,8,14,4,5,0,3,12,7,15,12,9,11,6,10,0,10,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\"], \"clip_start\": 28.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,12,5,0,3,7,15,12,10,0,1,0,3,7,15,8,14,4,5,0,3,12,7,15,12,9,11,6,10,0,10,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"13\", \"3\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,12,5,0,3,7,15,12,10,0,1,0,3,7,15,8,14,4,5,0,3,12,7,15,12,9,11,6,10,0,10,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"15\", \"12\", \"10\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q10_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,12,5,0,3,7,15,12,10,0,1,0,3,7,15,8,14,4,5,0,3,12,7,15,12,9,11,6,10,0,10,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"3\", \"7\", \"15\", \"8\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,12,5,0,3,7,15,12,10,0,1,0,3,7,15,8,14,4,5,0,3,12,7,15,12,9,11,6,10,0,10,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"15\", \"9\"], \"clip_start\": 13.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,12,5,0,3,7,15,12,10,0,1,0,3,7,15,8,14,4,5,0,3,12,7,15,12,9,11,6,10,0,10,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"11\"], \"clip_start\": 24.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q13_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,12,5,0,3,7,15,12,10,0,1,0,3,7,15,8,14,4,5,0,3,12,7,15,12,9,11,6,10,0,10,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"15\", \"8\", \"14\", \"4\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q14_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,12,5,0,3,7,15,12,10,0,1,0,3,7,15,8,14,4,5,0,3,12,7,15,12,9,11,6,10,0,10,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"10\", \"0\", \"10\", \"0\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,12,5,0,3,7,15,12,10,0,1,0,3,7,15,8,14,4,5,0,3,12,7,15,12,9,11,6,10,0,10,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"15\", \"10\", \"9\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,6,1,11,8,9,14,15,10,9,14,15,10,9,14,15,10,3,0,8,9,14,3,5,7,10,12,4,1,11,8", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"9\", \"14\", \"15\", \"10\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,6,1,11,8,9,14,15,10,9,14,15,10,9,14,15,10,3,0,8,9,14,3,5,7,10,12,4,1,11,8", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"4\"], \"clip_start\": 26.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,6,1,11,8,9,14,15,10,9,14,15,10,9,14,15,10,3,0,8,9,14,3,5,7,10,12,4,1,11,8", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,6,1,11,8,9,14,15,10,9,14,15,10,9,14,15,10,3,0,8,9,14,3,5,7,10,12,4,1,11,8", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"15\", \"10\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,6,1,11,8,9,14,15,10,9,14,15,10,9,14,15,10,3,0,8,9,14,3,5,7,10,12,4,1,11,8", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"15\", \"10\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,6,1,11,8,9,14,15,10,9,14,15,10,9,14,15,10,3,0,8,9,14,3,5,7,10,12,4,1,11,8", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,6,1,11,8,9,14,15,10,9,14,15,10,9,14,15,10,3,0,8,9,14,3,5,7,10,12,4,1,11,8", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"10\", \"3\", \"0\", \"8\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,6,1,11,8,9,14,15,10,9,14,15,10,9,14,15,10,3,0,8,9,14,3,5,7,10,12,4,1,11,8", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"11\", \"8\", \"9\", \"14\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,6,1,11,8,9,14,15,10,9,14,15,10,9,14,15,10,3,0,8,9,14,3,5,7,10,12,4,1,11,8", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"12\", \"4\", \"1\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,6,1,11,8,9,14,15,10,9,14,15,10,9,14,15,10,3,0,8,9,14,3,5,7,10,12,4,1,11,8", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,6,1,11,8,9,14,15,10,9,14,15,10,9,14,15,10,3,0,8,9,14,3,5,7,10,12,4,1,11,8", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"15\", \"10\", \"3\"], \"clip_start\": 14.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,6,1,11,8,9,14,15,10,9,14,15,10,9,14,15,10,3,0,8,9,14,3,5,7,10,12,4,1,11,8", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,6,1,11,8,9,14,15,10,9,14,15,10,9,14,15,10,3,0,8,9,14,3,5,7,10,12,4,1,11,8", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"5\", \"7\", \"10\", \"12\", \"4\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,6,1,11,8,9,14,15,10,9,14,15,10,9,14,15,10,3,0,8,9,14,3,5,7,10,12,4,1,11,8", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"6\", \"1\", \"11\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,6,1,11,8,9,14,15,10,9,14,15,10,9,14,15,10,3,0,8,9,14,3,5,7,10,12,4,1,11,8", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 16.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,6,1,11,8,9,14,15,10,9,14,15,10,9,14,15,10,3,0,8,9,14,3,5,7,10,12,4,1,11,8", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,11,3,2,6,7,11,3,8,2,11,3,2,6,7,11,3,2,10,0,13,7,11,13,11,3,2,2,11,3,2,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"2\", \"11\", \"3\", \"2\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,11,3,2,6,7,11,3,8,2,11,3,2,6,7,11,3,2,10,0,13,7,11,13,11,3,2,2,11,3,2,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"2\", \"11\"], \"clip_start\": 26.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,11,3,2,6,7,11,3,8,2,11,3,2,6,7,11,3,2,10,0,13,7,11,13,11,3,2,2,11,3,2,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"6\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,11,3,2,6,7,11,3,8,2,11,3,2,6,7,11,3,2,10,0,13,7,11,13,11,3,2,2,11,3,2,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"13\"], \"clip_start\": 18.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,11,3,2,6,7,11,3,8,2,11,3,2,6,7,11,3,2,10,0,13,7,11,13,11,3,2,2,11,3,2,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"2\", \"6\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,11,3,2,6,7,11,3,8,2,11,3,2,6,7,11,3,2,10,0,13,7,11,13,11,3,2,2,11,3,2,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"6\", \"7\", \"11\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,11,3,2,6,7,11,3,8,2,11,3,2,6,7,11,3,2,10,0,13,7,11,13,11,3,2,2,11,3,2,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,11,3,2,6,7,11,3,8,2,11,3,2,6,7,11,3,2,10,0,13,7,11,13,11,3,2,2,11,3,2,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"2\", \"6\", \"7\", \"11\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,11,3,2,6,7,11,3,8,2,11,3,2,6,7,11,3,2,10,0,13,7,11,13,11,3,2,2,11,3,2,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"11\", \"3\", \"2\"], \"clip_start\": 13.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,11,3,2,6,7,11,3,8,2,11,3,2,6,7,11,3,2,10,0,13,7,11,13,11,3,2,2,11,3,2,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,11,3,2,6,7,11,3,8,2,11,3,2,6,7,11,3,2,10,0,13,7,11,13,11,3,2,2,11,3,2,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"6\", \"7\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,11,3,2,6,7,11,3,8,2,11,3,2,6,7,11,3,2,10,0,13,7,11,13,11,3,2,2,11,3,2,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"2\", \"10\"], \"clip_start\": 15.0, \"clip_end\": 19.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,11,3,2,6,7,11,3,8,2,11,3,2,6,7,11,3,2,10,0,13,7,11,13,11,3,2,2,11,3,2,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"3\", \"2\", \"10\", \"0\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,11,3,2,6,7,11,3,8,2,11,3,2,6,7,11,3,2,10,0,13,7,11,13,11,3,2,2,11,3,2,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"6\", \"7\", \"11\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,11,3,2,6,7,11,3,8,2,11,3,2,6,7,11,3,2,10,0,13,7,11,13,11,3,2,2,11,3,2,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"11\", \"3\", \"2\", \"2\", \"11\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,11,3,2,6,7,11,3,8,2,11,3,2,6,7,11,3,2,10,0,13,7,11,13,11,3,2,2,11,3,2,9", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"3\", \"6\", \"11\", \"0\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,3,6,11,0,1,12,8,3,13,2,15,5,3,7,8,3,13,15,13,8,3,13,3,13,7,12,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 16.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,3,6,11,0,1,12,8,3,13,2,15,5,3,7,8,3,13,15,13,8,3,13,3,13,7,12,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"3\", \"6\", \"11\", \"0\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,3,6,11,0,1,12,8,3,13,2,15,5,3,7,8,3,13,15,13,8,3,13,3,13,7,12,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"8\", \"3\", \"13\", \"15\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,3,6,11,0,1,12,8,3,13,2,15,5,3,7,8,3,13,15,13,8,3,13,3,13,7,12,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"13\", \"15\", \"13\", \"8\"], \"clip_start\": 17.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,3,6,11,0,1,12,8,3,13,2,15,5,3,7,8,3,13,15,13,8,3,13,3,13,7,12,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"3\", \"7\", \"8\", \"3\"], \"clip_start\": 13.0, \"clip_end\": 19.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,3,6,11,0,1,12,8,3,13,2,15,5,3,7,8,3,13,15,13,8,3,13,3,13,7,12,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"12\", \"4\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,3,6,11,0,1,12,8,3,13,2,15,5,3,7,8,3,13,15,13,8,3,13,3,13,7,12,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"12\", \"4\", \"1\", \"12\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,3,6,11,0,1,12,8,3,13,2,15,5,3,7,8,3,13,15,13,8,3,13,3,13,7,12,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"2\", \"15\", \"5\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,3,6,11,0,1,12,8,3,13,2,15,5,3,7,8,3,13,15,13,8,3,13,3,13,7,12,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 29.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,3,6,11,0,1,12,8,3,13,2,15,5,3,7,8,3,13,15,13,8,3,13,3,13,7,12,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"8\", \"3\", \"13\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,3,6,11,0,1,12,8,3,13,2,15,5,3,7,8,3,13,15,13,8,3,13,3,13,7,12,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"12\", \"4\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,3,6,11,0,1,12,8,3,13,2,15,5,3,7,8,3,13,15,13,8,3,13,3,13,7,12,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"15\", \"13\", \"8\", \"3\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,3,6,11,0,1,12,8,3,13,2,15,5,3,7,8,3,13,15,13,8,3,13,3,13,7,12,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,3,6,11,0,1,12,8,3,13,2,15,5,3,7,8,3,13,15,13,8,3,13,3,13,7,12,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"6\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,3,6,11,0,1,12,8,3,13,2,15,5,3,7,8,3,13,15,13,8,3,13,3,13,7,12,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"8\", \"3\", \"13\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,11,3,6,11,0,1,12,8,3,13,2,15,5,3,7,8,3,13,15,13,8,3,13,3,13,7,12,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"0\", \"5\", \"14\", \"6\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,12,15,1,13,12,0,6,10,15,12,0,6,10,14,2,0,6,10,2,2,15,12,0,5,14,6,10,7,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"12\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,12,15,1,13,12,0,6,10,15,12,0,6,10,14,2,0,6,10,2,2,15,12,0,5,14,6,10,7,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"0\", \"5\", \"14\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,12,15,1,13,12,0,6,10,15,12,0,6,10,14,2,0,6,10,2,2,15,12,0,5,14,6,10,7,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"2\", \"15\"], \"clip_start\": 20.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,12,15,1,13,12,0,6,10,15,12,0,6,10,14,2,0,6,10,2,2,15,12,0,5,14,6,10,7,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,12,15,1,13,12,0,6,10,15,12,0,6,10,14,2,0,6,10,2,2,15,12,0,5,14,6,10,7,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"10\", \"15\", \"12\", \"0\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,12,15,1,13,12,0,6,10,15,12,0,6,10,14,2,0,6,10,2,2,15,12,0,5,14,6,10,7,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"10\", \"2\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,12,15,1,13,12,0,6,10,15,12,0,6,10,14,2,0,6,10,2,2,15,12,0,5,14,6,10,7,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"4\", \"8\", \"6\", \"0\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,12,15,1,13,12,0,6,10,15,12,0,6,10,14,2,0,6,10,2,2,15,12,0,5,14,6,10,7,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"7\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q8_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,12,15,1,13,12,0,6,10,15,12,0,6,10,14,2,0,6,10,2,2,15,12,0,5,14,6,10,7,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\", \"15\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,12,15,1,13,12,0,6,10,15,12,0,6,10,14,2,0,6,10,2,2,15,12,0,5,14,6,10,7,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"1\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,12,15,1,13,12,0,6,10,15,12,0,6,10,14,2,0,6,10,2,2,15,12,0,5,14,6,10,7,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"2\", \"0\", \"6\", \"10\", \"2\"], \"clip_start\": 16.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q11_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,12,15,1,13,12,0,6,10,15,12,0,6,10,14,2,0,6,10,2,2,15,12,0,5,14,6,10,7,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"8\", \"2\", \"5\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,12,15,1,13,12,0,6,10,15,12,0,6,10,14,2,0,6,10,2,2,15,12,0,5,14,6,10,7,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"10\", \"2\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,12,15,1,13,12,0,6,10,15,12,0,6,10,14,2,0,6,10,2,2,15,12,0,5,14,6,10,7,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"15\", \"1\", \"13\", \"12\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,12,15,1,13,12,0,6,10,15,12,0,6,10,14,2,0,6,10,2,2,15,12,0,5,14,6,10,7,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"11\", \"12\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q15_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,12,15,1,13,12,0,6,10,15,12,0,6,10,14,2,0,6,10,2,2,15,12,0,5,14,6,10,7,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"8\", \"9\", \"2\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,12,8,9,2,4,8,9,2,14,4,2,12,8,9,2,4,8,9,2,14,4,2,12,13,4,8,9,2,14,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"2\", \"12\", \"13\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,12,8,9,2,4,8,9,2,14,4,2,12,8,9,2,4,8,9,2,14,4,2,12,13,4,8,9,2,14,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"2\", \"4\", \"8\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,12,8,9,2,4,8,9,2,14,4,2,12,8,9,2,4,8,9,2,14,4,2,12,13,4,8,9,2,14,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 8.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,12,8,9,2,4,8,9,2,14,4,2,12,8,9,2,4,8,9,2,14,4,2,12,13,4,8,9,2,14,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"12\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q4_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,12,8,9,2,4,8,9,2,14,4,2,12,8,9,2,4,8,9,2,14,4,2,12,13,4,8,9,2,14,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"11\", \"6\", \"1\"], \"clip_start\": 26.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q5_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,12,8,9,2,4,8,9,2,14,4,2,12,8,9,2,4,8,9,2,14,4,2,12,13,4,8,9,2,14,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"14\"], \"clip_start\": 27.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q6_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,12,8,9,2,4,8,9,2,14,4,2,12,8,9,2,4,8,9,2,14,4,2,12,13,4,8,9,2,14,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"8\", \"9\", \"2\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q7_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,12,8,9,2,4,8,9,2,14,4,2,12,8,9,2,4,8,9,2,14,4,2,12,13,4,8,9,2,14,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"4\", \"8\", \"9\", \"2\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,12,8,9,2,4,8,9,2,14,4,2,12,8,9,2,4,8,9,2,14,4,2,12,13,4,8,9,2,14,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"4\", \"8\", \"9\", \"2\", \"14\"], \"clip_start\": 16.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,12,8,9,2,4,8,9,2,14,4,2,12,8,9,2,4,8,9,2,14,4,2,12,13,4,8,9,2,14,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"2\", \"12\", \"13\", \"4\"], \"clip_start\": 21.0, \"clip_end\": 27.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,12,8,9,2,4,8,9,2,14,4,2,12,8,9,2,4,8,9,2,14,4,2,12,13,4,8,9,2,14,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"4\", \"8\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,12,8,9,2,4,8,9,2,14,4,2,12,8,9,2,4,8,9,2,14,4,2,12,13,4,8,9,2,14,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"3\", \"5\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,12,8,9,2,4,8,9,2,14,4,2,12,8,9,2,4,8,9,2,14,4,2,12,13,4,8,9,2,14,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"10\", \"11\", \"0\", \"0\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q13_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,12,8,9,2,4,8,9,2,14,4,2,12,8,9,2,4,8,9,2,14,4,2,12,13,4,8,9,2,14,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"2\", \"12\"], \"clip_start\": 21.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q14_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,12,8,9,2,4,8,9,2,14,4,2,12,8,9,2,4,8,9,2,14,4,2,12,13,4,8,9,2,14,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"4\", \"8\", \"9\", \"2\", \"14\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,9,12,8,9,2,4,8,9,2,14,4,2,12,8,9,2,4,8,9,2,14,4,2,12,13,4,8,9,2,14,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"5\", \"6\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,5,14,10,11,7,2,7,2,15,12,2,4,13,12,11,7,2,15,3,14,5,2,12,1,0,5,6,6,14,10", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"3\", \"14\", \"5\", \"2\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q1_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,5,14,10,11,7,2,7,2,15,12,2,4,13,12,11,7,2,15,3,14,5,2,12,1,0,5,6,6,14,10", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"2\", \"12\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q2_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,5,14,10,11,7,2,7,2,15,12,2,4,13,12,11,7,2,15,3,14,5,2,12,1,0,5,6,6,14,10", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"2\"], \"clip_start\": 7.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,5,14,10,11,7,2,7,2,15,12,2,4,13,12,11,7,2,15,3,14,5,2,12,1,0,5,6,6,14,10", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"2\", \"4\", \"13\", \"12\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q4_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,5,14,10,11,7,2,7,2,15,12,2,4,13,12,11,7,2,15,3,14,5,2,12,1,0,5,6,6,14,10", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"2\", \"15\", \"3\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,5,14,10,11,7,2,7,2,15,12,2,4,13,12,11,7,2,15,3,14,5,2,12,1,0,5,6,6,14,10", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"2\", \"15\"], \"clip_start\": 15.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q6_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,5,14,10,11,7,2,7,2,15,12,2,4,13,12,11,7,2,15,3,14,5,2,12,1,0,5,6,6,14,10", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"14\", \"10\", \"11\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,5,14,10,11,7,2,7,2,15,12,2,4,13,12,11,7,2,15,3,14,5,2,12,1,0,5,6,6,14,10", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"14\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,5,14,10,11,7,2,7,2,15,12,2,4,13,12,11,7,2,15,3,14,5,2,12,1,0,5,6,6,14,10", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"10\", \"4\", \"15\", \"13\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,5,14,10,11,7,2,7,2,15,12,2,4,13,12,11,7,2,15,3,14,5,2,12,1,0,5,6,6,14,10", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"1\", \"0\", \"5\", \"6\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q10_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,5,14,10,11,7,2,7,2,15,12,2,4,13,12,11,7,2,15,3,14,5,2,12,1,0,5,6,6,14,10", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"7\"], \"clip_start\": 6.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,5,14,10,11,7,2,7,2,15,12,2,4,13,12,11,7,2,15,3,14,5,2,12,1,0,5,6,6,14,10", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"5\", \"6\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q12_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,5,14,10,11,7,2,7,2,15,12,2,4,13,12,11,7,2,15,3,14,5,2,12,1,0,5,6,6,14,10", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"2\", \"15\", \"12\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,5,14,10,11,7,2,7,2,15,12,2,4,13,12,11,7,2,15,3,14,5,2,12,1,0,5,6,6,14,10", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"12\", \"1\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,5,14,10,11,7,2,7,2,15,12,2,4,13,12,11,7,2,15,3,14,5,2,12,1,0,5,6,6,14,10", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"4\", \"14\", \"12\", \"1\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q15_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,5,14,10,11,7,2,7,2,15,12,2,4,13,12,11,7,2,15,3,14,5,2,12,1,0,5,6,6,14,10", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"0\", \"11\"], \"clip_start\": 25.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,6,15,9,0,6,2,13,6,1,5,8,9,8,0,12,2,13,6,8,0,7,1,5,8,0,11,7,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,6,15,9,0,6,2,13,6,1,5,8,9,8,0,12,2,13,6,8,0,7,1,5,8,0,11,7,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"7\", \"1\", \"5\"], \"clip_start\": 21.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,6,15,9,0,6,2,13,6,1,5,8,9,8,0,12,2,13,6,8,0,7,1,5,8,0,11,7,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"0\", \"7\", \"1\"], \"clip_start\": 20.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,6,15,9,0,6,2,13,6,1,5,8,9,8,0,12,2,13,6,8,0,7,1,5,8,0,11,7,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"13\", \"6\", \"8\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,6,15,9,0,6,2,13,6,1,5,8,9,8,0,12,2,13,6,8,0,7,1,5,8,0,11,7,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"0\", \"7\", \"1\"], \"clip_start\": 20.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,6,15,9,0,6,2,13,6,1,5,8,9,8,0,12,2,13,6,8,0,7,1,5,8,0,11,7,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"7\", \"1\", \"5\"], \"clip_start\": 21.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,6,15,9,0,6,2,13,6,1,5,8,9,8,0,12,2,13,6,8,0,7,1,5,8,0,11,7,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"2\", \"13\", \"6\", \"1\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,6,15,9,0,6,2,13,6,1,5,8,9,8,0,12,2,13,6,8,0,7,1,5,8,0,11,7,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"6\", \"8\"], \"clip_start\": 17.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,6,15,9,0,6,2,13,6,1,5,8,9,8,0,12,2,13,6,8,0,7,1,5,8,0,11,7,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"3\"], \"clip_start\": 14.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,6,15,9,0,6,2,13,6,1,5,8,9,8,0,12,2,13,6,8,0,7,1,5,8,0,11,7,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,6,15,9,0,6,2,13,6,1,5,8,9,8,0,12,2,13,6,8,0,7,1,5,8,0,11,7,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"11\"], \"clip_start\": 29.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,6,15,9,0,6,2,13,6,1,5,8,9,8,0,12,2,13,6,8,0,7,1,5,8,0,11,7,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"8\", \"0\", \"11\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,6,15,9,0,6,2,13,6,1,5,8,9,8,0,12,2,13,6,8,0,7,1,5,8,0,11,7,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"8\", \"0\", \"11\", \"7\", \"1\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,6,15,9,0,6,2,13,6,1,5,8,9,8,0,12,2,13,6,8,0,7,1,5,8,0,11,7,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"1\", \"15\"], \"clip_start\": 27.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,6,15,9,0,6,2,13,6,1,5,8,9,8,0,12,2,13,6,8,0,7,1,5,8,0,11,7,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"0\", \"7\", \"1\", \"5\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,6,15,9,0,6,2,13,6,1,5,8,9,8,0,12,2,13,6,8,0,7,1,5,8,0,11,7,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"6\", \"9\", \"7\", \"6\"], \"clip_start\": 11.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,1,5,1,5,1,5,0,12,14,13,3,6,9,7,6,9,14,13,10,11,10,2,5,0,3,7,6,9,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"6\", \"9\", \"7\", \"6\", \"9\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,1,5,1,5,1,5,0,12,14,13,3,6,9,7,6,9,14,13,10,11,10,2,5,0,3,7,6,9,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"13\", \"10\", \"11\"], \"clip_start\": 17.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,1,5,1,5,1,5,0,12,14,13,3,6,9,7,6,9,14,13,10,11,10,2,5,0,3,7,6,9,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"6\", \"9\", \"7\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,1,5,1,5,1,5,0,12,14,13,3,6,9,7,6,9,14,13,10,11,10,2,5,0,3,7,6,9,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"2\", \"5\", \"0\", \"3\"], \"clip_start\": 21.0, \"clip_end\": 27.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,1,5,1,5,1,5,0,12,14,13,3,6,9,7,6,9,14,13,10,11,10,2,5,0,3,7,6,9,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 22.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,1,5,1,5,1,5,0,12,14,13,3,6,9,7,6,9,14,13,10,11,10,2,5,0,3,7,6,9,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"5\", \"0\", \"3\", \"7\"], \"clip_start\": 22.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,1,5,1,5,1,5,0,12,14,13,3,6,9,7,6,9,14,13,10,11,10,2,5,0,3,7,6,9,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,1,5,1,5,1,5,0,12,14,13,3,6,9,7,6,9,14,13,10,11,10,2,5,0,3,7,6,9,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"5\", \"1\", \"5\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,1,5,1,5,1,5,0,12,14,13,3,6,9,7,6,9,14,13,10,11,10,2,5,0,3,7,6,9,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"13\", \"10\", \"11\"], \"clip_start\": 17.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,1,5,1,5,1,5,0,12,14,13,3,6,9,7,6,9,14,13,10,11,10,2,5,0,3,7,6,9,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,1,5,1,5,1,5,0,12,14,13,3,6,9,7,6,9,14,13,10,11,10,2,5,0,3,7,6,9,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"5\", \"0\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,1,5,1,5,1,5,0,12,14,13,3,6,9,7,6,9,14,13,10,11,10,2,5,0,3,7,6,9,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"12\", \"14\", \"13\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,1,5,1,5,1,5,0,12,14,13,3,6,9,7,6,9,14,13,10,11,10,2,5,0,3,7,6,9,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"11\", \"10\", \"2\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,1,5,1,5,1,5,0,12,14,13,3,6,9,7,6,9,14,13,10,11,10,2,5,0,3,7,6,9,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,1,5,1,5,1,5,0,12,14,13,3,6,9,7,6,9,14,13,10,11,10,2,5,0,3,7,6,9,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"13\"], \"clip_start\": 17.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q15_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,1,5,1,5,1,5,0,12,14,13,3,6,9,7,6,9,14,13,10,11,10,2,5,0,3,7,6,9,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"4\", \"1\", \"15\"], \"clip_start\": 23.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,3,4,1,3,4,1,9,15,7,13,15,9,13,15,7,5,5,3,4,1,1,3,4,1,15,13,15,12,13,15", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 27.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,3,4,1,3,4,1,9,15,7,13,15,9,13,15,7,5,5,3,4,1,1,3,4,1,15,13,15,12,13,15", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,3,4,1,3,4,1,9,15,7,13,15,9,13,15,7,5,5,3,4,1,1,3,4,1,15,13,15,12,13,15", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"3\", \"4\", \"1\"], \"clip_start\": 17.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,3,4,1,3,4,1,9,15,7,13,15,9,13,15,7,5,5,3,4,1,1,3,4,1,15,13,15,12,13,15", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 21.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,3,4,1,3,4,1,9,15,7,13,15,9,13,15,7,5,5,3,4,1,1,3,4,1,15,13,15,12,13,15", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 26.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,3,4,1,3,4,1,9,15,7,13,15,9,13,15,7,5,5,3,4,1,1,3,4,1,15,13,15,12,13,15", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"1\", \"1\"], \"clip_start\": 20.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,3,4,1,3,4,1,9,15,7,13,15,9,13,15,7,5,5,3,4,1,1,3,4,1,15,13,15,12,13,15", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"3\", \"4\", \"1\", \"1\"], \"clip_start\": 18.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,3,4,1,3,4,1,9,15,7,13,15,9,13,15,7,5,5,3,4,1,1,3,4,1,15,13,15,12,13,15", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"15\"], \"clip_start\": 26.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,3,4,1,3,4,1,9,15,7,13,15,9,13,15,7,5,5,3,4,1,1,3,4,1,15,13,15,12,13,15", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"4\", \"1\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q9_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,3,4,1,3,4,1,9,15,7,13,15,9,13,15,7,5,5,3,4,1,1,3,4,1,15,13,15,12,13,15", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"11\", \"3\", \"4\", \"1\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,3,4,1,3,4,1,9,15,7,13,15,9,13,15,7,5,5,3,4,1,1,3,4,1,15,13,15,12,13,15", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"15\", \"7\"], \"clip_start\": 7.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q11_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,3,4,1,3,4,1,9,15,7,13,15,9,13,15,7,5,5,3,4,1,1,3,4,1,15,13,15,12,13,15", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"1\", \"1\", \"3\", \"4\", \"1\"], \"clip_start\": 20.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q12_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,3,4,1,3,4,1,9,15,7,13,15,9,13,15,7,5,5,3,4,1,1,3,4,1,15,13,15,12,13,15", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"5\", \"3\"], \"clip_start\": 16.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q13_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,3,4,1,3,4,1,9,15,7,13,15,9,13,15,7,5,5,3,4,1,1,3,4,1,15,13,15,12,13,15", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"11\", \"2\", \"3\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q14_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,3,4,1,3,4,1,9,15,7,13,15,9,13,15,7,5,5,3,4,1,1,3,4,1,15,13,15,12,13,15", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"13\", \"9\", \"14\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q15_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,3,4,1,3,4,1,9,15,7,13,15,9,13,15,7,5,5,3,4,1,1,3,4,1,15,13,15,12,13,15", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"4\", \"4\", \"4\"], \"clip_start\": 12.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,15,3,12,4,4,4,4,4,4,4,4,4,4,4,4,4,7,3,10,5,15,3,11,13,5,13,5,5,15,0,13", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"4\", \"4\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,15,3,12,4,4,4,4,4,4,4,4,4,4,4,4,4,7,3,10,5,15,3,11,13,5,13,5,5,15,0,13", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"3\", \"11\", \"13\", \"5\"], \"clip_start\": 20.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,15,3,12,4,4,4,4,4,4,4,4,4,4,4,4,4,7,3,10,5,15,3,11,13,5,13,5,5,15,0,13", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"4\", \"4\", \"4\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,15,3,12,4,4,4,4,4,4,4,4,4,4,4,4,4,7,3,10,5,15,3,11,13,5,13,5,5,15,0,13", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"3\", \"11\", \"13\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,15,3,12,4,4,4,4,4,4,4,4,4,4,4,4,4,7,3,10,5,15,3,11,13,5,13,5,5,15,0,13", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"4\", \"4\", \"4\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,15,3,12,4,4,4,4,4,4,4,4,4,4,4,4,4,7,3,10,5,15,3,11,13,5,13,5,5,15,0,13", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"4\", \"4\", \"4\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,15,3,12,4,4,4,4,4,4,4,4,4,4,4,4,4,7,3,10,5,15,3,11,13,5,13,5,5,15,0,13", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"13\", \"5\", \"5\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,15,3,12,4,4,4,4,4,4,4,4,4,4,4,4,4,7,3,10,5,15,3,11,13,5,13,5,5,15,0,13", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"5\"], \"clip_start\": 23.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,15,3,12,4,4,4,4,4,4,4,4,4,4,4,4,4,7,3,10,5,15,3,11,13,5,13,5,5,15,0,13", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"7\", \"3\", \"10\", \"5\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,15,3,12,4,4,4,4,4,4,4,4,4,4,4,4,4,7,3,10,5,15,3,11,13,5,13,5,5,15,0,13", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"4\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,15,3,12,4,4,4,4,4,4,4,4,4,4,4,4,4,7,3,10,5,15,3,11,13,5,13,5,5,15,0,13", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"4\", \"4\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,15,3,12,4,4,4,4,4,4,4,4,4,4,4,4,4,7,3,10,5,15,3,11,13,5,13,5,5,15,0,13", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"4\", \"4\", \"4\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,15,3,12,4,4,4,4,4,4,4,4,4,4,4,4,4,7,3,10,5,15,3,11,13,5,13,5,5,15,0,13", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"4\", \"4\", \"4\", \"7\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,15,3,12,4,4,4,4,4,4,4,4,4,4,4,4,4,7,3,10,5,15,3,11,13,5,13,5,5,15,0,13", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"4\", \"4\", \"4\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,15,3,12,4,4,4,4,4,4,4,4,4,4,4,4,4,7,3,10,5,15,3,11,13,5,13,5,5,15,0,13", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"4\", \"4\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,15,3,12,4,4,4,4,4,4,4,4,4,4,4,4,4,7,3,10,5,15,3,11,13,5,13,5,5,15,0,13", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"7\", \"15\", \"10\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,11,11,3,4,11,7,15,10,7,15,10,7,15,10,7,15,10,4,2,14,10,7,15,10,7,15,10,7,15,10", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"10\", \"7\", \"15\", \"10\"], \"clip_start\": 14.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,11,11,3,4,11,7,15,10,7,15,10,7,15,10,7,15,10,4,2,14,10,7,15,10,7,15,10,7,15,10", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"7\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,11,11,3,4,11,7,15,10,7,15,10,7,15,10,7,15,10,4,2,14,10,7,15,10,7,15,10,7,15,10", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"4\", \"11\", \"7\", \"15\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,11,11,3,4,11,7,15,10,7,15,10,7,15,10,7,15,10,4,2,14,10,7,15,10,7,15,10,7,15,10", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"7\"], \"clip_start\": 12.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,11,11,3,4,11,7,15,10,7,15,10,7,15,10,7,15,10,4,2,14,10,7,15,10,7,15,10,7,15,10", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"7\", \"15\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,11,11,3,4,11,7,15,10,7,15,10,7,15,10,7,15,10,4,2,14,10,7,15,10,7,15,10,7,15,10", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 25.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,11,11,3,4,11,7,15,10,7,15,10,7,15,10,7,15,10,4,2,14,10,7,15,10,7,15,10,7,15,10", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"10\", \"7\", \"15\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,11,11,3,4,11,7,15,10,7,15,10,7,15,10,7,15,10,4,2,14,10,7,15,10,7,15,10,7,15,10", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"10\", \"7\", \"15\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,11,11,3,4,11,7,15,10,7,15,10,7,15,10,7,15,10,4,2,14,10,7,15,10,7,15,10,7,15,10", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,11,11,3,4,11,7,15,10,7,15,10,7,15,10,7,15,10,4,2,14,10,7,15,10,7,15,10,7,15,10", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"7\"], \"clip_start\": 12.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,11,11,3,4,11,7,15,10,7,15,10,7,15,10,7,15,10,4,2,14,10,7,15,10,7,15,10,7,15,10", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"14\", \"10\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,11,11,3,4,11,7,15,10,7,15,10,7,15,10,7,15,10,4,2,14,10,7,15,10,7,15,10,7,15,10", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"11\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,11,11,3,4,11,7,15,10,7,15,10,7,15,10,7,15,10,4,2,14,10,7,15,10,7,15,10,7,15,10", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\", \"7\"], \"clip_start\": 20.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q13_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,11,11,3,4,11,7,15,10,7,15,10,7,15,10,7,15,10,4,2,14,10,7,15,10,7,15,10,7,15,10", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"11\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,11,11,3,4,11,7,15,10,7,15,10,7,15,10,7,15,10,4,2,14,10,7,15,10,7,15,10,7,15,10", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"10\", \"7\", \"15\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,11,11,3,4,11,7,15,10,7,15,10,7,15,10,7,15,10,4,2,14,10,7,15,10,7,15,10,7,15,10", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,4,7,2,4,4,7,1,11,14,9,15,15,12,14,10,11,3,12,11,7,1,10,11,7,2,15,3,2,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"12\", \"11\"], \"clip_start\": 17.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,4,7,2,4,4,7,1,11,14,9,15,15,12,14,10,11,3,12,11,7,1,10,11,7,2,15,3,2,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,4,7,2,4,4,7,1,11,14,9,15,15,12,14,10,11,3,12,11,7,1,10,11,7,2,15,3,2,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"3\", \"12\"], \"clip_start\": 16.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,4,7,2,4,4,7,1,11,14,9,15,15,12,14,10,11,3,12,11,7,1,10,11,7,2,15,3,2,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"11\", \"7\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,4,7,2,4,4,7,1,11,14,9,15,15,12,14,10,11,3,12,11,7,1,10,11,7,2,15,3,2,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"10\", \"11\", \"3\"], \"clip_start\": 14.0, \"clip_end\": 19.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,4,7,2,4,4,7,1,11,14,9,15,15,12,14,10,11,3,12,11,7,1,10,11,7,2,15,3,2,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"4\", \"4\", \"7\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,4,7,2,4,4,7,1,11,14,9,15,15,12,14,10,11,3,12,11,7,1,10,11,7,2,15,3,2,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"4\", \"7\", \"2\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,4,7,2,4,4,7,1,11,14,9,15,15,12,14,10,11,3,12,11,7,1,10,11,7,2,15,3,2,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"7\", \"2\", \"15\", \"3\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,4,7,2,4,4,7,1,11,14,9,15,15,12,14,10,11,3,12,11,7,1,10,11,7,2,15,3,2,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"11\", \"7\", \"2\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,4,7,2,4,4,7,1,11,14,9,15,15,12,14,10,11,3,12,11,7,1,10,11,7,2,15,3,2,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"15\", \"3\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,4,7,2,4,4,7,1,11,14,9,15,15,12,14,10,11,3,12,11,7,1,10,11,7,2,15,3,2,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,4,7,2,4,4,7,1,11,14,9,15,15,12,14,10,11,3,12,11,7,1,10,11,7,2,15,3,2,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"15\", \"3\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,4,7,2,4,4,7,1,11,14,9,15,15,12,14,10,11,3,12,11,7,1,10,11,7,2,15,3,2,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"12\"], \"clip_start\": 28.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,4,7,2,4,4,7,1,11,14,9,15,15,12,14,10,11,3,12,11,7,1,10,11,7,2,15,3,2,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"15\", \"15\", \"12\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q14_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,4,7,2,4,4,7,1,11,14,9,15,15,12,14,10,11,3,12,11,7,1,10,11,7,2,15,3,2,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_MED", "source_split": "substream_video", "length_L": 32, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"7\", \"1\", \"11\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q15_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,4,7,2,4,4,7,1,11,14,9,15,15,12,14,10,11,3,12,11,7,1,10,11,7,2,15,3,2,4,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,9,10,6,6,7,5,0,10,3,6,3,6,8,7,9,8,11,2,0,2,4,13,6,2,3,5,14,13,10,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"5\", \"14\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,9,10,6,6,7,5,0,10,3,6,3,6,8,7,9,8,11,2,0,2,4,13,6,2,3,5,14,13,10,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,9,10,6,6,7,5,0,10,3,6,3,6,8,7,9,8,11,2,0,2,4,13,6,2,3,5,14,13,10,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"0\", \"2\", \"4\", \"13\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q3_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,9,10,6,6,7,5,0,10,3,6,3,6,8,7,9,8,11,2,0,2,4,13,6,2,3,5,14,13,10,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"3\", \"6\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q4_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,9,10,6,6,7,5,0,10,3,6,3,6,8,7,9,8,11,2,0,2,4,13,6,2,3,5,14,13,10,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"0\", \"10\", \"3\", \"6\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,9,10,6,6,7,5,0,10,3,6,3,6,8,7,9,8,11,2,0,2,4,13,6,2,3,5,14,13,10,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"3\", \"5\", \"14\", \"13\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,9,10,6,6,7,5,0,10,3,6,3,6,8,7,9,8,11,2,0,2,4,13,6,2,3,5,14,13,10,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"5\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,9,10,6,6,7,5,0,10,3,6,3,6,8,7,9,8,11,2,0,2,4,13,6,2,3,5,14,13,10,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"8\", \"7\"], \"clip_start\": 13.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,9,10,6,6,7,5,0,10,3,6,3,6,8,7,9,8,11,2,0,2,4,13,6,2,3,5,14,13,10,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"7\"], \"clip_start\": 22.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,9,10,6,6,7,5,0,10,3,6,3,6,8,7,9,8,11,2,0,2,4,13,6,2,3,5,14,13,10,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"6\", \"7\", \"5\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,9,10,6,6,7,5,0,10,3,6,3,6,8,7,9,8,11,2,0,2,4,13,6,2,3,5,14,13,10,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"10\", \"6\", \"6\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,9,10,6,6,7,5,0,10,3,6,3,6,8,7,9,8,11,2,0,2,4,13,6,2,3,5,14,13,10,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"7\", \"5\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q12_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,9,10,6,6,7,5,0,10,3,6,3,6,8,7,9,8,11,2,0,2,4,13,6,2,3,5,14,13,10,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"6\", \"7\", \"5\", \"0\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q13_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,9,10,6,6,7,5,0,10,3,6,3,6,8,7,9,8,11,2,0,2,4,13,6,2,3,5,14,13,10,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"15\", \"3\"], \"clip_start\": 26.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q14_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,9,10,6,6,7,5,0,10,3,6,3,6,8,7,9,8,11,2,0,2,4,13,6,2,3,5,14,13,10,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"5\", \"14\", \"13\", \"10\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,9,10,6,6,7,5,0,10,3,6,3,6,8,7,9,8,11,2,0,2,4,13,6,2,3,5,14,13,10,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"2\", \"0\", \"6\", \"14\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,11,4,1,2,0,1,1,11,14,2,0,6,14,14,8,1,8,15,0,0,1,10,3,8,13,2,13,11,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"1\", \"11\", \"14\", \"2\", \"0\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,11,4,1,2,0,1,1,11,14,2,0,6,14,14,8,1,8,15,0,0,1,10,3,8,13,2,13,11,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,11,4,1,2,0,1,1,11,14,2,0,6,14,14,8,1,8,15,0,0,1,10,3,8,13,2,13,11,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"0\", \"1\", \"10\", \"3\", \"8\"], \"clip_start\": 21.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,11,4,1,2,0,1,1,11,14,2,0,6,14,14,8,1,8,15,0,0,1,10,3,8,13,2,13,11,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"11\", \"4\", \"1\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,11,4,1,2,0,1,1,11,14,2,0,6,14,14,8,1,8,15,0,0,1,10,3,8,13,2,13,11,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"8\", \"15\", \"0\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,11,4,1,2,0,1,1,11,14,2,0,6,14,14,8,1,8,15,0,0,1,10,3,8,13,2,13,11,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"2\", \"13\", \"11\"], \"clip_start\": 27.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,11,4,1,2,0,1,1,11,14,2,0,6,14,14,8,1,8,15,0,0,1,10,3,8,13,2,13,11,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,11,4,1,2,0,1,1,11,14,2,0,6,14,14,8,1,8,15,0,0,1,10,3,8,13,2,13,11,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,11,4,1,2,0,1,1,11,14,2,0,6,14,14,8,1,8,15,0,0,1,10,3,8,13,2,13,11,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"11\", \"14\", \"2\", \"0\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,11,4,1,2,0,1,1,11,14,2,0,6,14,14,8,1,8,15,0,0,1,10,3,8,13,2,13,11,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"1\", \"1\", \"11\", \"14\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,11,4,1,2,0,1,1,11,14,2,0,6,14,14,8,1,8,15,0,0,1,10,3,8,13,2,13,11,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q11_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,11,4,1,2,0,1,1,11,14,2,0,6,14,14,8,1,8,15,0,0,1,10,3,8,13,2,13,11,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"10\", \"3\", \"8\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,11,4,1,2,0,1,1,11,14,2,0,6,14,14,8,1,8,15,0,0,1,10,3,8,13,2,13,11,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"13\", \"2\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q13_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,11,4,1,2,0,1,1,11,14,2,0,6,14,14,8,1,8,15,0,0,1,10,3,8,13,2,13,11,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"12\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,11,4,1,2,0,1,1,11,14,2,0,6,14,14,8,1,8,15,0,0,1,10,3,8,13,2,13,11,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"14\", \"8\", \"1\", \"8\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q15_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,10,11,11,4,1,2,0,1,1,11,14,2,0,6,14,14,8,1,8,15,0,0,1,10,3,8,13,2,13,11,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"15\", \"10\", \"7\", \"1\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,3,8,14,2,13,15,10,7,1,5,12,3,6,6,3,10,10,3,15,11,3,12,0,4,1,15,15,4,3,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"10\", \"3\", \"15\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,3,8,14,2,13,15,10,7,1,5,12,3,6,6,3,10,10,3,15,11,3,12,0,4,1,15,15,4,3,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"3\", \"8\", \"14\", \"2\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,3,8,14,2,13,15,10,7,1,5,12,3,6,6,3,10,10,3,15,11,3,12,0,4,1,15,15,4,3,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"15\", \"15\", \"4\", \"3\"], \"clip_start\": 26.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,3,8,14,2,13,15,10,7,1,5,12,3,6,6,3,10,10,3,15,11,3,12,0,4,1,15,15,4,3,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"11\", \"3\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,3,8,14,2,13,15,10,7,1,5,12,3,6,6,3,10,10,3,15,11,3,12,0,4,1,15,15,4,3,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"3\", \"8\", \"14\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q5_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,3,8,14,2,13,15,10,7,1,5,12,3,6,6,3,10,10,3,15,11,3,12,0,4,1,15,15,4,3,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"6\", \"6\", \"3\"], \"clip_start\": 12.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,3,8,14,2,13,15,10,7,1,5,12,3,6,6,3,10,10,3,15,11,3,12,0,4,1,15,15,4,3,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"8\", \"14\", \"2\", \"13\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,3,8,14,2,13,15,10,7,1,5,12,3,6,6,3,10,10,3,15,11,3,12,0,4,1,15,15,4,3,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"6\", \"6\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,3,8,14,2,13,15,10,7,1,5,12,3,6,6,3,10,10,3,15,11,3,12,0,4,1,15,15,4,3,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"15\", \"10\", \"7\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q9_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,3,8,14,2,13,15,10,7,1,5,12,3,6,6,3,10,10,3,15,11,3,12,0,4,1,15,15,4,3,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"11\", \"3\", \"12\", \"0\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,3,8,14,2,13,15,10,7,1,5,12,3,6,6,3,10,10,3,15,11,3,12,0,4,1,15,15,4,3,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"3\", \"10\", \"10\", \"3\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q11_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,3,8,14,2,13,15,10,7,1,5,12,3,6,6,3,10,10,3,15,11,3,12,0,4,1,15,15,4,3,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"12\", \"3\", \"6\", \"6\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q12_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,3,8,14,2,13,15,10,7,1,5,12,3,6,6,3,10,10,3,15,11,3,12,0,4,1,15,15,4,3,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"9\", \"1\", \"6\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q13_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,3,8,14,2,13,15,10,7,1,5,12,3,6,6,3,10,10,3,15,11,3,12,0,4,1,15,15,4,3,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"12\", \"3\", \"6\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,3,8,14,2,13,15,10,7,1,5,12,3,6,6,3,10,10,3,15,11,3,12,0,4,1,15,15,4,3,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"0\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q15_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,3,8,14,2,13,15,10,7,1,5,12,3,6,6,3,10,10,3,15,11,3,12,0,4,1,15,15,4,3,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"14\", \"2\", \"6\", \"3\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,11,6,7,15,4,3,12,6,6,12,11,2,10,1,4,12,11,3,14,2,6,3,3,2,15,12,5,7,8,15", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"3\", \"14\", \"2\"], \"clip_start\": 17.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,11,6,7,15,4,3,12,6,6,12,11,2,10,1,4,12,11,3,14,2,6,3,3,2,15,12,5,7,8,15", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"5\", \"7\", \"8\"], \"clip_start\": 26.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,11,6,7,15,4,3,12,6,6,12,11,2,10,1,4,12,11,3,14,2,6,3,3,2,15,12,5,7,8,15", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"15\", \"4\", \"3\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,11,6,7,15,4,3,12,6,6,12,11,2,10,1,4,12,11,3,14,2,6,3,3,2,15,12,5,7,8,15", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"4\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,11,6,7,15,4,3,12,6,6,12,11,2,10,1,4,12,11,3,14,2,6,3,3,2,15,12,5,7,8,15", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"2\", \"6\", \"3\", \"3\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,11,6,7,15,4,3,12,6,6,12,11,2,10,1,4,12,11,3,14,2,6,3,3,2,15,12,5,7,8,15", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 15.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,11,6,7,15,4,3,12,6,6,12,11,2,10,1,4,12,11,3,14,2,6,3,3,2,15,12,5,7,8,15", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"12\", \"6\", \"6\", \"12\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,11,6,7,15,4,3,12,6,6,12,11,2,10,1,4,12,11,3,14,2,6,3,3,2,15,12,5,7,8,15", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"2\", \"15\"], \"clip_start\": 23.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,11,6,7,15,4,3,12,6,6,12,11,2,10,1,4,12,11,3,14,2,6,3,3,2,15,12,5,7,8,15", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"12\", \"6\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,11,6,7,15,4,3,12,6,6,12,11,2,10,1,4,12,11,3,14,2,6,3,3,2,15,12,5,7,8,15", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"7\", \"8\"], \"clip_start\": 27.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,11,6,7,15,4,3,12,6,6,12,11,2,10,1,4,12,11,3,14,2,6,3,3,2,15,12,5,7,8,15", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,11,6,7,15,4,3,12,6,6,12,11,2,10,1,4,12,11,3,14,2,6,3,3,2,15,12,5,7,8,15", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"6\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,11,6,7,15,4,3,12,6,6,12,11,2,10,1,4,12,11,3,14,2,6,3,3,2,15,12,5,7,8,15", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 29.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,11,6,7,15,4,3,12,6,6,12,11,2,10,1,4,12,11,3,14,2,6,3,3,2,15,12,5,7,8,15", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"7\", \"8\", \"15\"], \"clip_start\": 28.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,11,6,7,15,4,3,12,6,6,12,11,2,10,1,4,12,11,3,14,2,6,3,3,2,15,12,5,7,8,15", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,11,6,7,15,4,3,12,6,6,12,11,2,10,1,4,12,11,3,14,2,6,3,3,2,15,12,5,7,8,15", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\", \"0\", \"2\", \"0\"], \"clip_start\": 11.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,9,7,12,11,11,12,2,8,12,4,7,9,9,0,2,0,12,13,1,14,12,1,6,0,4,6,15,15,7,3,1", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"11\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,9,7,12,11,11,12,2,8,12,4,7,9,9,0,2,0,12,13,1,14,12,1,6,0,4,6,15,15,7,3,1", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"7\", \"9\", \"9\", \"0\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,9,7,12,11,11,12,2,8,12,4,7,9,9,0,2,0,12,13,1,14,12,1,6,0,4,6,15,15,7,3,1", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,9,7,12,11,11,12,2,8,12,4,7,9,9,0,2,0,12,13,1,14,12,1,6,0,4,6,15,15,7,3,1", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 24.0, \"clip_end\": 27.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,9,7,12,11,11,12,2,8,12,4,7,9,9,0,2,0,12,13,1,14,12,1,6,0,4,6,15,15,7,3,1", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"14\", \"12\", \"1\", \"6\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,9,7,12,11,11,12,2,8,12,4,7,9,9,0,2,0,12,13,1,14,12,1,6,0,4,6,15,15,7,3,1", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"12\", \"1\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,9,7,12,11,11,12,2,8,12,4,7,9,9,0,2,0,12,13,1,14,12,1,6,0,4,6,15,15,7,3,1", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"6\", \"0\", \"4\"], \"clip_start\": 20.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,9,7,12,11,11,12,2,8,12,4,7,9,9,0,2,0,12,13,1,14,12,1,6,0,4,6,15,15,7,3,1", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"12\", \"1\", \"6\", \"0\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,9,7,12,11,11,12,2,8,12,4,7,9,9,0,2,0,12,13,1,14,12,1,6,0,4,6,15,15,7,3,1", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 13.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,9,7,12,11,11,12,2,8,12,4,7,9,9,0,2,0,12,13,1,14,12,1,6,0,4,6,15,15,7,3,1", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,9,7,12,11,11,12,2,8,12,4,7,9,9,0,2,0,12,13,1,14,12,1,6,0,4,6,15,15,7,3,1", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"2\", \"0\", \"12\", \"13\", \"1\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,9,7,12,11,11,12,2,8,12,4,7,9,9,0,2,0,12,13,1,14,12,1,6,0,4,6,15,15,7,3,1", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"11\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,9,7,12,11,11,12,2,8,12,4,7,9,9,0,2,0,12,13,1,14,12,1,6,0,4,6,15,15,7,3,1", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"7\", \"9\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,9,7,12,11,11,12,2,8,12,4,7,9,9,0,2,0,12,13,1,14,12,1,6,0,4,6,15,15,7,3,1", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"11\", \"12\", \"2\", \"8\", \"12\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,9,7,12,11,11,12,2,8,12,4,7,9,9,0,2,0,12,13,1,14,12,1,6,0,4,6,15,15,7,3,1", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"2\", \"0\", \"12\", \"13\", \"1\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,9,7,12,11,11,12,2,8,12,4,7,9,9,0,2,0,12,13,1,14,12,1,6,0,4,6,15,15,7,3,1", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"1\", \"10\", \"8\", \"0\"], \"clip_start\": 21.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,12,11,10,4,12,6,10,5,3,8,5,15,7,14,15,5,15,13,12,6,14,1,10,8,0,1,2,4,1,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"15\", \"5\"], \"clip_start\": 14.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,12,11,10,4,12,6,10,5,3,8,5,15,7,14,15,5,15,13,12,6,14,1,10,8,0,1,2,4,1,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"4\", \"12\", \"6\", \"10\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,12,11,10,4,12,6,10,5,3,8,5,15,7,14,15,5,15,13,12,6,14,1,10,8,0,1,2,4,1,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,12,11,10,4,12,6,10,5,3,8,5,15,7,14,15,5,15,13,12,6,14,1,10,8,0,1,2,4,1,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"15\", \"13\", \"12\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,12,11,10,4,12,6,10,5,3,8,5,15,7,14,15,5,15,13,12,6,14,1,10,8,0,1,2,4,1,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"8\", \"0\", \"1\", \"2\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,12,11,10,4,12,6,10,5,3,8,5,15,7,14,15,5,15,13,12,6,14,1,10,8,0,1,2,4,1,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"15\", \"12\", \"11\", \"10\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,12,11,10,4,12,6,10,5,3,8,5,15,7,14,15,5,15,13,12,6,14,1,10,8,0,1,2,4,1,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"4\", \"12\", \"6\", \"10\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q7_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,12,11,10,4,12,6,10,5,3,8,5,15,7,14,15,5,15,13,12,6,14,1,10,8,0,1,2,4,1,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"15\", \"13\", \"12\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,12,11,10,4,12,6,10,5,3,8,5,15,7,14,15,5,15,13,12,6,14,1,10,8,0,1,2,4,1,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"1\", \"10\", \"8\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q9_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,12,11,10,4,12,6,10,5,3,8,5,15,7,14,15,5,15,13,12,6,14,1,10,8,0,1,2,4,1,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"12\", \"6\", \"14\", \"1\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q10_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,12,11,10,4,12,6,10,5,3,8,5,15,7,14,15,5,15,13,12,6,14,1,10,8,0,1,2,4,1,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"2\", \"4\", \"1\", \"14\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,12,11,10,4,12,6,10,5,3,8,5,15,7,14,15,5,15,13,12,6,14,1,10,8,0,1,2,4,1,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"12\", \"6\", \"10\", \"5\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,12,11,10,4,12,6,10,5,3,8,5,15,7,14,15,5,15,13,12,6,14,1,10,8,0,1,2,4,1,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"1\", \"10\", \"8\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,12,11,10,4,12,6,10,5,3,8,5,15,7,14,15,5,15,13,12,6,14,1,10,8,0,1,2,4,1,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\", \"2\", \"15\", \"0\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q14_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,12,11,10,4,12,6,10,5,3,8,5,15,7,14,15,5,15,13,12,6,14,1,10,8,0,1,2,4,1,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"10\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,12,11,10,4,12,6,10,5,3,8,5,15,7,14,15,5,15,13,12,6,14,1,10,8,0,1,2,4,1,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"2\", \"3\", \"9\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,0,6,14,8,2,10,11,11,12,7,2,5,12,5,12,8,2,1,2,15,11,2,3,9,5,0,8,3,1,3,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"5\", \"0\"], \"clip_start\": 23.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,0,6,14,8,2,10,11,11,12,7,2,5,12,5,12,8,2,1,2,15,11,2,3,9,5,0,8,3,1,3,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"3\", \"1\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,0,6,14,8,2,10,11,11,12,7,2,5,12,5,12,8,2,1,2,15,11,2,3,9,5,0,8,3,1,3,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"11\", \"12\", \"7\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,0,6,14,8,2,10,11,11,12,7,2,5,12,5,12,8,2,1,2,15,11,2,3,9,5,0,8,3,1,3,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 15.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,0,6,14,8,2,10,11,11,12,7,2,5,12,5,12,8,2,1,2,15,11,2,3,9,5,0,8,3,1,3,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"12\", \"8\"], \"clip_start\": 13.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,0,6,14,8,2,10,11,11,12,7,2,5,12,5,12,8,2,1,2,15,11,2,3,9,5,0,8,3,1,3,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"0\", \"8\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,0,6,14,8,2,10,11,11,12,7,2,5,12,5,12,8,2,1,2,15,11,2,3,9,5,0,8,3,1,3,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,0,6,14,8,2,10,11,11,12,7,2,5,12,5,12,8,2,1,2,15,11,2,3,9,5,0,8,3,1,3,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"12\", \"7\", \"2\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,0,6,14,8,2,10,11,11,12,7,2,5,12,5,12,8,2,1,2,15,11,2,3,9,5,0,8,3,1,3,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"8\"], \"clip_start\": 26.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,0,6,14,8,2,10,11,11,12,7,2,5,12,5,12,8,2,1,2,15,11,2,3,9,5,0,8,3,1,3,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"10\", \"11\", \"11\", \"12\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,0,6,14,8,2,10,11,11,12,7,2,5,12,5,12,8,2,1,2,15,11,2,3,9,5,0,8,3,1,3,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"15\", \"11\", \"2\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q11_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,0,6,14,8,2,10,11,11,12,7,2,5,12,5,12,8,2,1,2,15,11,2,3,9,5,0,8,3,1,3,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,0,6,14,8,2,10,11,11,12,7,2,5,12,5,12,8,2,1,2,15,11,2,3,9,5,0,8,3,1,3,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"9\", \"5\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,0,6,14,8,2,10,11,11,12,7,2,5,12,5,12,8,2,1,2,15,11,2,3,9,5,0,8,3,1,3,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"15\", \"11\", \"2\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q14_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,0,6,14,8,2,10,11,11,12,7,2,5,12,5,12,8,2,1,2,15,11,2,3,9,5,0,8,3,1,3,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"8\", \"2\", \"10\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,0,6,14,8,2,10,11,11,12,7,2,5,12,5,12,8,2,1,2,15,11,2,3,9,5,0,8,3,1,3,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"6\", \"2\", \"5\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,4,0,4,4,1,0,0,15,5,4,5,5,4,5,1,12,1,1,8,11,4,15,2,6,2,5,4,6,15,15", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"12\", \"1\", \"1\", \"8\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,4,0,4,4,1,0,0,15,5,4,5,5,4,5,1,12,1,1,8,11,4,15,2,6,2,5,4,6,15,15", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"1\", \"0\", \"0\", \"15\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,4,0,4,4,1,0,0,15,5,4,5,5,4,5,1,12,1,1,8,11,4,15,2,6,2,5,4,6,15,15", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"5\"], \"clip_start\": 10.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,4,0,4,4,1,0,0,15,5,4,5,5,4,5,1,12,1,1,8,11,4,15,2,6,2,5,4,6,15,15", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"12\", \"1\", \"1\", \"8\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,4,0,4,4,1,0,0,15,5,4,5,5,4,5,1,12,1,1,8,11,4,15,2,6,2,5,4,6,15,15", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"5\", \"5\", \"4\", \"5\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,4,0,4,4,1,0,0,15,5,4,5,5,4,5,1,12,1,1,8,11,4,15,2,6,2,5,4,6,15,15", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"6\", \"2\", \"5\", \"4\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,4,0,4,4,1,0,0,15,5,4,5,5,4,5,1,12,1,1,8,11,4,15,2,6,2,5,4,6,15,15", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"4\", \"15\", \"2\", \"6\"], \"clip_start\": 20.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,4,0,4,4,1,0,0,15,5,4,5,5,4,5,1,12,1,1,8,11,4,15,2,6,2,5,4,6,15,15", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\"], \"clip_start\": 28.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,4,0,4,4,1,0,0,15,5,4,5,5,4,5,1,12,1,1,8,11,4,15,2,6,2,5,4,6,15,15", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"13\", \"3\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,4,0,4,4,1,0,0,15,5,4,5,5,4,5,1,12,1,1,8,11,4,15,2,6,2,5,4,6,15,15", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"1\", \"0\", \"0\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q10_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,4,0,4,4,1,0,0,15,5,4,5,5,4,5,1,12,1,1,8,11,4,15,2,6,2,5,4,6,15,15", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"5\", \"5\", \"4\", \"5\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,4,0,4,4,1,0,0,15,5,4,5,5,4,5,1,12,1,1,8,11,4,15,2,6,2,5,4,6,15,15", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"15\", \"9\"], \"clip_start\": 13.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,4,0,4,4,1,0,0,15,5,4,5,5,4,5,1,12,1,1,8,11,4,15,2,6,2,5,4,6,15,15", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"2\"], \"clip_start\": 24.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q13_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,4,0,4,4,1,0,0,15,5,4,5,5,4,5,1,12,1,1,8,11,4,15,2,6,2,5,4,6,15,15", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"4\", \"5\", \"1\", \"12\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q14_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,4,0,4,4,1,0,0,15,5,4,5,5,4,5,1,12,1,1,8,11,4,15,2,6,2,5,4,6,15,15", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"5\", \"4\", \"6\", \"15\", \"15\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,7,4,0,4,4,1,0,0,15,5,4,5,5,4,5,1,12,1,1,8,11,4,15,2,6,2,5,4,6,15,15", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"4\", \"10\", \"7\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,6,1,7,11,15,14,9,15,14,8,4,10,7,13,10,3,13,13,6,12,2,12,4,15,0,11,2,8,11,1", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"8\", \"4\", \"10\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,6,1,7,11,15,14,9,15,14,8,4,10,7,13,10,3,13,13,6,12,2,12,4,15,0,11,2,8,11,1", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"11\", \"2\"], \"clip_start\": 26.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,6,1,7,11,15,14,9,15,14,8,4,10,7,13,10,3,13,13,6,12,2,12,4,15,0,11,2,8,11,1", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,6,1,7,11,15,14,9,15,14,8,4,10,7,13,10,3,13,13,6,12,2,12,4,15,0,11,2,8,11,1", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"4\", \"10\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,6,1,7,11,15,14,9,15,14,8,4,10,7,13,10,3,13,13,6,12,2,12,4,15,0,11,2,8,11,1", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"4\", \"10\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,6,1,7,11,15,14,9,15,14,8,4,10,7,13,10,3,13,13,6,12,2,12,4,15,0,11,2,8,11,1", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,6,1,7,11,15,14,9,15,14,8,4,10,7,13,10,3,13,13,6,12,2,12,4,15,0,11,2,8,11,1", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"13\", \"13\", \"6\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,6,1,7,11,15,14,9,15,14,8,4,10,7,13,10,3,13,13,6,12,2,12,4,15,0,11,2,8,11,1", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"11\", \"15\", \"14\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,6,1,7,11,15,14,9,15,14,8,4,10,7,13,10,3,13,13,6,12,2,12,4,15,0,11,2,8,11,1", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"0\", \"11\", \"2\", \"8\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,6,1,7,11,15,14,9,15,14,8,4,10,7,13,10,3,13,13,6,12,2,12,4,15,0,11,2,8,11,1", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,6,1,7,11,15,14,9,15,14,8,4,10,7,13,10,3,13,13,6,12,2,12,4,15,0,11,2,8,11,1", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"10\", \"3\", \"13\"], \"clip_start\": 14.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,6,1,7,11,15,14,9,15,14,8,4,10,7,13,10,3,13,13,6,12,2,12,4,15,0,11,2,8,11,1", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,6,1,7,11,15,14,9,15,14,8,4,10,7,13,10,3,13,13,6,12,2,12,4,15,0,11,2,8,11,1", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"15\", \"0\", \"11\", \"2\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,6,1,7,11,15,14,9,15,14,8,4,10,7,13,10,3,13,13,6,12,2,12,4,15,0,11,2,8,11,1", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"6\", \"1\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,6,1,7,11,15,14,9,15,14,8,4,10,7,13,10,3,13,13,6,12,2,12,4,15,0,11,2,8,11,1", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 16.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,13,6,1,7,11,15,14,9,15,14,8,4,10,7,13,10,3,13,13,6,12,2,12,4,15,0,11,2,8,11,1", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,1,9,15,0,4,6,4,14,1,12,10,9,14,5,12,13,1,4,6,12,7,12,4,0,4,6,9,14,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"4\", \"6\", \"9\", \"14\", \"8\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,1,9,15,0,4,6,4,14,1,12,10,9,14,5,12,13,1,4,6,12,7,12,4,0,4,6,9,14,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"9\"], \"clip_start\": 26.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,1,9,15,0,4,6,4,14,1,12,10,9,14,5,12,13,1,4,6,12,7,12,4,0,4,6,9,14,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,1,9,15,0,4,6,4,14,1,12,10,9,14,5,12,13,1,4,6,12,7,12,4,0,4,6,9,14,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"6\"], \"clip_start\": 18.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,1,9,15,0,4,6,4,14,1,12,10,9,14,5,12,13,1,4,6,12,7,12,4,0,4,6,9,14,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"9\", \"15\", \"0\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,1,9,15,0,4,6,4,14,1,12,10,9,14,5,12,13,1,4,6,12,7,12,4,0,4,6,9,14,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"10\", \"9\", \"14\", \"5\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,1,9,15,0,4,6,4,14,1,12,10,9,14,5,12,13,1,4,6,12,7,12,4,0,4,6,9,14,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,1,9,15,0,4,6,4,14,1,12,10,9,14,5,12,13,1,4,6,12,7,12,4,0,4,6,9,14,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"9\", \"15\", \"0\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,1,9,15,0,4,6,4,14,1,12,10,9,14,5,12,13,1,4,6,12,7,12,4,0,4,6,9,14,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"5\", \"12\", \"13\"], \"clip_start\": 13.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,1,9,15,0,4,6,4,14,1,12,10,9,14,5,12,13,1,4,6,12,7,12,4,0,4,6,9,14,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,1,9,15,0,4,6,4,14,1,12,10,9,14,5,12,13,1,4,6,12,7,12,4,0,4,6,9,14,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"15\", \"0\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,1,9,15,0,4,6,4,14,1,12,10,9,14,5,12,13,1,4,6,12,7,12,4,0,4,6,9,14,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"13\", \"1\"], \"clip_start\": 15.0, \"clip_end\": 19.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,1,9,15,0,4,6,4,14,1,12,10,9,14,5,12,13,1,4,6,12,7,12,4,0,4,6,9,14,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"5\", \"12\", \"13\", \"1\", \"4\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,1,9,15,0,4,6,4,14,1,12,10,9,14,5,12,13,1,4,6,12,7,12,4,0,4,6,9,14,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"15\", \"0\", \"4\", \"6\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,1,9,15,0,4,6,4,14,1,12,10,9,14,5,12,13,1,4,6,12,7,12,4,0,4,6,9,14,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"0\", \"4\", \"6\", \"9\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,1,9,15,0,4,6,4,14,1,12,10,9,14,5,12,13,1,4,6,12,7,12,4,0,4,6,9,14,8,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"6\", \"7\", \"11\", \"5\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,6,6,7,11,5,14,4,8,4,2,13,3,7,4,0,9,11,7,13,4,6,10,9,6,9,11,14,5,12,8", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 16.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,6,6,7,11,5,14,4,8,4,2,13,3,7,4,0,9,11,7,13,4,6,10,9,6,9,11,14,5,12,8", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"6\", \"7\", \"11\", \"5\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,6,6,7,11,5,14,4,8,4,2,13,3,7,4,0,9,11,7,13,4,6,10,9,6,9,11,14,5,12,8", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"9\", \"11\", \"7\", \"13\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,6,6,7,11,5,14,4,8,4,2,13,3,7,4,0,9,11,7,13,4,6,10,9,6,9,11,14,5,12,8", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"7\", \"13\", \"4\", \"6\"], \"clip_start\": 17.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,6,6,7,11,5,14,4,8,4,2,13,3,7,4,0,9,11,7,13,4,6,10,9,6,9,11,14,5,12,8", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"4\", \"0\", \"9\", \"11\"], \"clip_start\": 13.0, \"clip_end\": 19.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,6,6,7,11,5,14,4,8,4,2,13,3,7,4,0,9,11,7,13,4,6,10,9,6,9,11,14,5,12,8", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"14\", \"5\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,6,6,7,11,5,14,4,8,4,2,13,3,7,4,0,9,11,7,13,4,6,10,9,6,9,11,14,5,12,8", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"14\", \"5\", \"12\", \"8\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,6,6,7,11,5,14,4,8,4,2,13,3,7,4,0,9,11,7,13,4,6,10,9,6,9,11,14,5,12,8", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"3\", \"7\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,6,6,7,11,5,14,4,8,4,2,13,3,7,4,0,9,11,7,13,4,6,10,9,6,9,11,14,5,12,8", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 29.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,6,6,7,11,5,14,4,8,4,2,13,3,7,4,0,9,11,7,13,4,6,10,9,6,9,11,14,5,12,8", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"6\", \"10\", \"9\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,6,6,7,11,5,14,4,8,4,2,13,3,7,4,0,9,11,7,13,4,6,10,9,6,9,11,14,5,12,8", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"14\", \"5\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,6,6,7,11,5,14,4,8,4,2,13,3,7,4,0,9,11,7,13,4,6,10,9,6,9,11,14,5,12,8", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"4\", \"6\", \"10\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,6,6,7,11,5,14,4,8,4,2,13,3,7,4,0,9,11,7,13,4,6,10,9,6,9,11,14,5,12,8", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,6,6,7,11,5,14,4,8,4,2,13,3,7,4,0,9,11,7,13,4,6,10,9,6,9,11,14,5,12,8", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"7\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,6,6,7,11,5,14,4,8,4,2,13,3,7,4,0,9,11,7,13,4,6,10,9,6,9,11,14,5,12,8", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"6\", \"10\", \"9\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,6,6,7,11,5,14,4,8,4,2,13,3,7,4,0,9,11,7,13,4,6,10,9,6,9,11,14,5,12,8", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"1\", \"15\", \"14\", \"15\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,12,7,11,3,1,1,4,11,9,3,14,11,14,10,2,11,1,9,5,8,9,0,10,1,15,14,15,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"1\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,12,7,11,3,1,1,4,11,9,3,14,11,14,10,2,11,1,9,5,8,9,0,10,1,15,14,15,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"1\", \"15\", \"14\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,12,7,11,3,1,1,4,11,9,3,14,11,14,10,2,11,1,9,5,8,9,0,10,1,15,14,15,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"8\", \"9\", \"0\"], \"clip_start\": 20.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,12,7,11,3,1,1,4,11,9,3,14,11,14,10,2,11,1,9,5,8,9,0,10,1,15,14,15,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,12,7,11,3,1,1,4,11,9,3,14,11,14,10,2,11,1,9,5,8,9,0,10,1,15,14,15,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"9\", \"3\", \"14\", \"11\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,12,7,11,3,1,1,4,11,9,3,14,11,14,10,2,11,1,9,5,8,9,0,10,1,15,14,15,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"5\", \"8\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,12,7,11,3,1,1,4,11,9,3,14,11,14,10,2,11,1,9,5,8,9,0,10,1,15,14,15,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"4\", \"8\", \"6\", \"0\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,12,7,11,3,1,1,4,11,9,3,14,11,14,10,2,11,1,9,5,8,9,0,10,1,15,14,15,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"7\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q8_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,12,7,11,3,1,1,4,11,9,3,14,11,14,10,2,11,1,9,5,8,9,0,10,1,15,14,15,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\", \"15\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,12,7,11,3,1,1,4,11,9,3,14,11,14,10,2,11,1,9,5,8,9,0,10,1,15,14,15,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"1\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,12,7,11,3,1,1,4,11,9,3,14,11,14,10,2,11,1,9,5,8,9,0,10,1,15,14,15,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"1\", \"9\", \"5\", \"8\"], \"clip_start\": 16.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q11_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,12,7,11,3,1,1,4,11,9,3,14,11,14,10,2,11,1,9,5,8,9,0,10,1,15,14,15,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"8\", \"2\", \"5\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,12,7,11,3,1,1,4,11,9,3,14,11,14,10,2,11,1,9,5,8,9,0,10,1,15,14,15,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"5\", \"8\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,12,7,11,3,1,1,4,11,9,3,14,11,14,10,2,11,1,9,5,8,9,0,10,1,15,14,15,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"7\", \"11\", \"3\", \"1\", \"1\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,12,7,11,3,1,1,4,11,9,3,14,11,14,10,2,11,1,9,5,8,9,0,10,1,15,14,15,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"11\", \"12\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q15_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,12,7,11,3,1,1,4,11,9,3,14,11,14,10,2,11,1,9,5,8,9,0,10,1,15,14,15,10,1,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"14\", \"5\", \"9\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,7,10,11,10,9,14,10,13,8,7,13,10,3,6,1,2,7,5,12,7,3,5,8,8,4,14,5,9,2,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"3\", \"5\", \"8\", \"8\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,7,10,11,10,9,14,10,13,8,7,13,10,3,6,1,2,7,5,12,7,3,5,8,8,4,14,5,9,2,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"9\", \"14\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,7,10,11,10,9,14,10,13,8,7,13,10,3,6,1,2,7,5,12,7,3,5,8,8,4,14,5,9,2,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 8.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,7,10,11,10,9,14,10,13,8,7,13,10,3,6,1,2,7,5,12,7,3,5,8,8,4,14,5,9,2,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"15\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q4_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,7,10,11,10,9,14,10,13,8,7,13,10,3,6,1,2,7,5,12,7,3,5,8,8,4,14,5,9,2,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"11\", \"6\", \"1\"], \"clip_start\": 26.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q5_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,7,10,11,10,9,14,10,13,8,7,13,10,3,6,1,2,7,5,12,7,3,5,8,8,4,14,5,9,2,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"5\", \"9\", \"2\"], \"clip_start\": 27.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q6_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,7,10,11,10,9,14,10,13,8,7,13,10,3,6,1,2,7,5,12,7,3,5,8,8,4,14,5,9,2,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"14\", \"5\", \"9\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q7_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,7,10,11,10,9,14,10,13,8,7,13,10,3,6,1,2,7,5,12,7,3,5,8,8,4,14,5,9,2,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"2\", \"7\", \"5\", \"12\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,7,10,11,10,9,14,10,13,8,7,13,10,3,6,1,2,7,5,12,7,3,5,8,8,4,14,5,9,2,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"2\", \"7\", \"5\", \"12\", \"7\"], \"clip_start\": 16.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,7,10,11,10,9,14,10,13,8,7,13,10,3,6,1,2,7,5,12,7,3,5,8,8,4,14,5,9,2,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"3\", \"5\", \"8\", \"8\", \"4\"], \"clip_start\": 21.0, \"clip_end\": 27.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,7,10,11,10,9,14,10,13,8,7,13,10,3,6,1,2,7,5,12,7,3,5,8,8,4,14,5,9,2,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"10\", \"9\", \"14\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,7,10,11,10,9,14,10,13,8,7,13,10,3,6,1,2,7,5,12,7,3,5,8,8,4,14,5,9,2,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"3\", \"5\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,7,10,11,10,9,14,10,13,8,7,13,10,3,6,1,2,7,5,12,7,3,5,8,8,4,14,5,9,2,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"10\", \"11\", \"0\", \"0\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q13_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,7,10,11,10,9,14,10,13,8,7,13,10,3,6,1,2,7,5,12,7,3,5,8,8,4,14,5,9,2,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"3\", \"5\", \"8\"], \"clip_start\": 21.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q14_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,7,10,11,10,9,14,10,13,8,7,13,10,3,6,1,2,7,5,12,7,3,5,8,8,4,14,5,9,2,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"9\", \"14\", \"10\", \"13\", \"8\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,7,10,11,10,9,14,10,13,8,7,13,10,3,6,1,2,7,5,12,7,3,5,8,8,4,14,5,9,2,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"10\", \"12\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,12,14,6,0,7,10,2,1,2,14,3,9,2,9,12,3,4,8,9,9,6,9,2,6,4,10,12,12,7,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"9\", \"6\", \"9\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,12,14,6,0,7,10,2,1,2,14,3,9,2,9,12,3,4,8,9,9,6,9,2,6,4,10,12,12,7,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"4\", \"8\", \"9\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,12,14,6,0,7,10,2,1,2,14,3,9,2,9,12,3,4,8,9,9,6,9,2,6,4,10,12,12,7,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"14\", \"6\", \"0\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,12,14,6,0,7,10,2,1,2,14,3,9,2,9,12,3,4,8,9,9,6,9,2,6,4,10,12,12,7,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"4\"], \"clip_start\": 24.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,12,14,6,0,7,10,2,1,2,14,3,9,2,9,12,3,4,8,9,9,6,9,2,6,4,10,12,12,7,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\", \"1\"], \"clip_start\": 28.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q5_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,12,14,6,0,7,10,2,1,2,14,3,9,2,9,12,3,4,8,9,9,6,9,2,6,4,10,12,12,7,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"5\", \"7\", \"3\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q6_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,12,14,6,0,7,10,2,1,2,14,3,9,2,9,12,3,4,8,9,9,6,9,2,6,4,10,12,12,7,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"10\", \"12\", \"12\", \"7\"], \"clip_start\": 26.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,12,14,6,0,7,10,2,1,2,14,3,9,2,9,12,3,4,8,9,9,6,9,2,6,4,10,12,12,7,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"9\", \"2\", \"9\", \"12\"], \"clip_start\": 11.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q8_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,12,14,6,0,7,10,2,1,2,14,3,9,2,9,12,3,4,8,9,9,6,9,2,6,4,10,12,12,7,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"10\", \"12\"], \"clip_start\": 26.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,12,14,6,0,7,10,2,1,2,14,3,9,2,9,12,3,4,8,9,9,6,9,2,6,4,10,12,12,7,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"1\", \"2\", \"14\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q10_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,12,14,6,0,7,10,2,1,2,14,3,9,2,9,12,3,4,8,9,9,6,9,2,6,4,10,12,12,7,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"2\", \"9\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q11_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,12,14,6,0,7,10,2,1,2,14,3,9,2,9,12,3,4,8,9,9,6,9,2,6,4,10,12,12,7,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"10\", \"5\", \"10\", \"7\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,12,14,6,0,7,10,2,1,2,14,3,9,2,9,12,3,4,8,9,9,6,9,2,6,4,10,12,12,7,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"15\", \"0\", \"0\", \"10\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q13_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,12,14,6,0,7,10,2,1,2,14,3,9,2,9,12,3,4,8,9,9,6,9,2,6,4,10,12,12,7,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"3\", \"9\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,12,14,6,0,7,10,2,1,2,14,3,9,2,9,12,3,4,8,9,9,6,9,2,6,4,10,12,12,7,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"8\", \"5\", \"10\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q15_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,12,14,6,0,7,10,2,1,2,14,3,9,2,9,12,3,4,8,9,9,6,9,2,6,4,10,12,12,7,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"11\"], \"clip_start\": 25.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,1,15,0,12,4,8,3,6,0,15,7,15,8,13,7,13,4,5,1,6,1,1,5,4,0,11,12,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,1,15,0,12,4,8,3,6,0,15,7,15,8,13,7,13,4,5,1,6,1,1,5,4,0,11,12,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"1\", \"1\", \"5\"], \"clip_start\": 21.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,1,15,0,12,4,8,3,6,0,15,7,15,8,13,7,13,4,5,1,6,1,1,5,4,0,11,12,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"1\", \"1\"], \"clip_start\": 20.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,1,15,0,12,4,8,3,6,0,15,7,15,8,13,7,13,4,5,1,6,1,1,5,4,0,11,12,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"13\", \"4\", \"5\", \"1\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,1,15,0,12,4,8,3,6,0,15,7,15,8,13,7,13,4,5,1,6,1,1,5,4,0,11,12,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"1\", \"1\"], \"clip_start\": 20.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,1,15,0,12,4,8,3,6,0,15,7,15,8,13,7,13,4,5,1,6,1,1,5,4,0,11,12,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"1\", \"1\", \"5\"], \"clip_start\": 21.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,1,15,0,12,4,8,3,6,0,15,7,15,8,13,7,13,4,5,1,6,1,1,5,4,0,11,12,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"8\", \"3\", \"6\", \"0\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,1,15,0,12,4,8,3,6,0,15,7,15,8,13,7,13,4,5,1,6,1,1,5,4,0,11,12,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"5\", \"1\"], \"clip_start\": 17.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,1,15,0,12,4,8,3,6,0,15,7,15,8,13,7,13,4,5,1,6,1,1,5,4,0,11,12,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"3\"], \"clip_start\": 14.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,1,15,0,12,4,8,3,6,0,15,7,15,8,13,7,13,4,5,1,6,1,1,5,4,0,11,12,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,1,15,0,12,4,8,3,6,0,15,7,15,8,13,7,13,4,5,1,6,1,1,5,4,0,11,12,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"11\"], \"clip_start\": 29.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,1,15,0,12,4,8,3,6,0,15,7,15,8,13,7,13,4,5,1,6,1,1,5,4,0,11,12,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"0\", \"11\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,1,15,0,12,4,8,3,6,0,15,7,15,8,13,7,13,4,5,1,6,1,1,5,4,0,11,12,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"0\", \"11\", \"12\", \"3\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,1,15,0,12,4,8,3,6,0,15,7,15,8,13,7,13,4,5,1,6,1,1,5,4,0,11,12,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"12\", \"3\", \"8\"], \"clip_start\": 27.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q14_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,1,15,0,12,4,8,3,6,0,15,7,15,8,13,7,13,4,5,1,6,1,1,5,4,0,11,12,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"1\", \"1\", \"5\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q15_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,1,15,0,12,4,8,3,6,0,15,7,15,8,13,7,13,4,5,1,6,1,1,5,4,0,11,12,3,8,11", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"6\", \"7\", \"0\", \"0\"], \"clip_start\": 11.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,0,5,4,5,15,13,3,14,14,8,11,6,7,0,0,12,14,12,7,12,6,9,3,3,9,9,4,15,13,0", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"7\", \"0\", \"0\", \"12\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,0,5,4,5,15,13,3,14,14,8,11,6,7,0,0,12,14,12,7,12,6,9,3,3,9,9,4,15,13,0", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"12\", \"7\", \"12\"], \"clip_start\": 17.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,0,5,4,5,15,13,3,14,14,8,11,6,7,0,0,12,14,12,7,12,6,9,3,3,9,9,4,15,13,0", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"6\", \"7\", \"0\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,0,5,4,5,15,13,3,14,14,8,11,6,7,0,0,12,14,12,7,12,6,9,3,3,9,9,4,15,13,0", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"9\", \"3\", \"3\", \"9\"], \"clip_start\": 21.0, \"clip_end\": 27.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,0,5,4,5,15,13,3,14,14,8,11,6,7,0,0,12,14,12,7,12,6,9,3,3,9,9,4,15,13,0", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 22.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,0,5,4,5,15,13,3,14,14,8,11,6,7,0,0,12,14,12,7,12,6,9,3,3,9,9,4,15,13,0", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"3\", \"3\", \"9\", \"9\"], \"clip_start\": 22.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,0,5,4,5,15,13,3,14,14,8,11,6,7,0,0,12,14,12,7,12,6,9,3,3,9,9,4,15,13,0", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,0,5,4,5,15,13,3,14,14,8,11,6,7,0,0,12,14,12,7,12,6,9,3,3,9,9,4,15,13,0", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"5\", \"15\", \"13\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,0,5,4,5,15,13,3,14,14,8,11,6,7,0,0,12,14,12,7,12,6,9,3,3,9,9,4,15,13,0", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"12\", \"7\", \"12\"], \"clip_start\": 17.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,0,5,4,5,15,13,3,14,14,8,11,6,7,0,0,12,14,12,7,12,6,9,3,3,9,9,4,15,13,0", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,0,5,4,5,15,13,3,14,14,8,11,6,7,0,0,12,14,12,7,12,6,9,3,3,9,9,4,15,13,0", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"13\", \"3\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,0,5,4,5,15,13,3,14,14,8,11,6,7,0,0,12,14,12,7,12,6,9,3,3,9,9,4,15,13,0", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"14\", \"14\", \"8\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,0,5,4,5,15,13,3,14,14,8,11,6,7,0,0,12,14,12,7,12,6,9,3,3,9,9,4,15,13,0", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"7\", \"12\", \"6\", \"9\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,0,5,4,5,15,13,3,14,14,8,11,6,7,0,0,12,14,12,7,12,6,9,3,3,9,9,4,15,13,0", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,0,5,4,5,15,13,3,14,14,8,11,6,7,0,0,12,14,12,7,12,6,9,3,3,9,9,4,15,13,0", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"12\"], \"clip_start\": 17.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q15_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,15,0,5,4,5,15,13,3,14,14,8,11,6,7,0,0,12,14,12,7,12,6,9,3,3,9,9,4,15,13,0", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"12\", \"0\"], \"clip_start\": 23.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,10,15,12,12,3,13,1,0,11,8,2,5,8,2,15,5,13,8,4,8,2,0,10,12,0,7,9,12,12,9", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 27.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,10,15,12,12,3,13,1,0,11,8,2,5,8,2,15,5,13,8,4,8,2,0,10,12,0,7,9,12,12,9", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,10,15,12,12,3,13,1,0,11,8,2,5,8,2,15,5,13,8,4,8,2,0,10,12,0,7,9,12,12,9", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"13\", \"8\", \"4\", \"8\"], \"clip_start\": 17.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,10,15,12,12,3,13,1,0,11,8,2,5,8,2,15,5,13,8,4,8,2,0,10,12,0,7,9,12,12,9", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 21.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,10,15,12,12,3,13,1,0,11,8,2,5,8,2,15,5,13,8,4,8,2,0,10,12,0,7,9,12,12,9", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 26.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,10,15,12,12,3,13,1,0,11,8,2,5,8,2,15,5,13,8,4,8,2,0,10,12,0,7,9,12,12,9", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"2\"], \"clip_start\": 20.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,10,15,12,12,3,13,1,0,11,8,2,5,8,2,15,5,13,8,4,8,2,0,10,12,0,7,9,12,12,9", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"8\", \"2\", \"5\", \"8\", \"2\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,10,15,12,12,3,13,1,0,11,8,2,5,8,2,15,5,13,8,4,8,2,0,10,12,0,7,9,12,12,9", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"11\", \"8\", \"2\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,10,15,12,12,3,13,1,0,11,8,2,5,8,2,15,5,13,8,4,8,2,0,10,12,0,7,9,12,12,9", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"13\", \"8\"], \"clip_start\": 17.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q9_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,10,15,12,12,3,13,1,0,11,8,2,5,8,2,15,5,13,8,4,8,2,0,10,12,0,7,9,12,12,9", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"12\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q10_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,10,15,12,12,3,13,1,0,11,8,2,5,8,2,15,5,13,8,4,8,2,0,10,12,0,7,9,12,12,9", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"8\", \"2\", \"0\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q11_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,10,15,12,12,3,13,1,0,11,8,2,5,8,2,15,5,13,8,4,8,2,0,10,12,0,7,9,12,12,9", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"3\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,10,15,12,12,3,13,1,0,11,8,2,5,8,2,15,5,13,8,4,8,2,0,10,12,0,7,9,12,12,9", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"11\", \"8\", \"2\", \"5\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q13_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,10,15,12,12,3,13,1,0,11,8,2,5,8,2,15,5,13,8,4,8,2,0,10,12,0,7,9,12,12,9", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"13\", \"1\", \"0\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q14_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,10,15,12,12,3,13,1,0,11,8,2,5,8,2,15,5,13,8,4,8,2,0,10,12,0,7,9,12,12,9", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"2\", \"0\", \"10\", \"12\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q15_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,13,10,15,12,12,3,13,1,0,11,8,2,5,8,2,15,5,13,8,4,8,2,0,10,12,0,7,9,12,12,9", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"1\", \"15\", \"3\"], \"clip_start\": 12.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,14,13,7,10,11,11,13,8,1,13,8,4,1,15,3,5,15,4,6,7,12,8,5,7,7,7,10,12,5,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"1\", \"13\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,14,13,7,10,11,11,13,8,1,13,8,4,1,15,3,5,15,4,6,7,12,8,5,7,7,7,10,12,5,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"12\", \"8\", \"5\", \"7\"], \"clip_start\": 20.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,14,13,7,10,11,11,13,8,1,13,8,4,1,15,3,5,15,4,6,7,12,8,5,7,7,7,10,12,5,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"11\", \"13\", \"8\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,14,13,7,10,11,11,13,8,1,13,8,4,1,15,3,5,15,4,6,7,12,8,5,7,7,7,10,12,5,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"12\", \"8\", \"5\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,14,13,7,10,11,11,13,8,1,13,8,4,1,15,3,5,15,4,6,7,12,8,5,7,7,7,10,12,5,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"7\", \"10\", \"11\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,14,13,7,10,11,11,13,8,1,13,8,4,1,15,3,5,15,4,6,7,12,8,5,7,7,7,10,12,5,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"8\", \"4\", \"1\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,14,13,7,10,11,11,13,8,1,13,8,4,1,15,3,5,15,4,6,7,12,8,5,7,7,7,10,12,5,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"7\", \"7\", \"7\", \"10\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,14,13,7,10,11,11,13,8,1,13,8,4,1,15,3,5,15,4,6,7,12,8,5,7,7,7,10,12,5,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"5\", \"7\"], \"clip_start\": 23.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,14,13,7,10,11,11,13,8,1,13,8,4,1,15,3,5,15,4,6,7,12,8,5,7,7,7,10,12,5,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"3\", \"5\", \"15\", \"4\", \"6\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,14,13,7,10,11,11,13,8,1,13,8,4,1,15,3,5,15,4,6,7,12,8,5,7,7,7,10,12,5,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"1\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,14,13,7,10,11,11,13,8,1,13,8,4,1,15,3,5,15,4,6,7,12,8,5,7,7,7,10,12,5,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"8\", \"4\"], \"clip_start\": 10.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,14,13,7,10,11,11,13,8,1,13,8,4,1,15,3,5,15,4,6,7,12,8,5,7,7,7,10,12,5,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"13\", \"8\", \"4\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,14,13,7,10,11,11,13,8,1,13,8,4,1,15,3,5,15,4,6,7,12,8,5,7,7,7,10,12,5,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"1\", \"15\", \"3\", \"5\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,14,13,7,10,11,11,13,8,1,13,8,4,1,15,3,5,15,4,6,7,12,8,5,7,7,7,10,12,5,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"1\", \"13\", \"8\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,14,13,7,10,11,11,13,8,1,13,8,4,1,15,3,5,15,4,6,7,12,8,5,7,7,7,10,12,5,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"7\", \"10\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,14,13,7,10,11,11,13,8,1,13,8,4,1,15,3,5,15,4,6,7,12,8,5,7,7,7,10,12,5,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"1\", \"2\", \"9\", \"1\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,11,2,5,9,1,2,9,1,10,7,3,11,7,4,9,4,10,12,9,11,15,15,12,15,1,9,14,14,9,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"4\", \"9\", \"4\", \"10\"], \"clip_start\": 14.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,11,2,5,9,1,2,9,1,10,7,3,11,7,4,9,4,10,12,9,11,15,15,12,15,1,9,14,14,9,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"9\", \"14\", \"14\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,11,2,5,9,1,2,9,1,10,7,3,11,7,4,9,4,10,12,9,11,15,15,12,15,1,9,14,14,9,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"9\", \"1\", \"2\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,11,2,5,9,1,2,9,1,10,7,3,11,7,4,9,4,10,12,9,11,15,15,12,15,1,9,14,14,9,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"7\", \"4\", \"9\"], \"clip_start\": 12.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,11,2,5,9,1,2,9,1,10,7,3,11,7,4,9,4,10,12,9,11,15,15,12,15,1,9,14,14,9,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"1\", \"2\", \"9\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,11,2,5,9,1,2,9,1,10,7,3,11,7,4,9,4,10,12,9,11,15,15,12,15,1,9,14,14,9,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 25.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,11,2,5,9,1,2,9,1,10,7,3,11,7,4,9,4,10,12,9,11,15,15,12,15,1,9,14,14,9,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"1\", \"10\", \"7\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,11,2,5,9,1,2,9,1,10,7,3,11,7,4,9,4,10,12,9,11,15,15,12,15,1,9,14,14,9,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"1\", \"10\", \"7\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,11,2,5,9,1,2,9,1,10,7,3,11,7,4,9,4,10,12,9,11,15,15,12,15,1,9,14,14,9,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"7\", \"4\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,11,2,5,9,1,2,9,1,10,7,3,11,7,4,9,4,10,12,9,11,15,15,12,15,1,9,14,14,9,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"7\", \"4\", \"9\"], \"clip_start\": 12.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,11,2,5,9,1,2,9,1,10,7,3,11,7,4,9,4,10,12,9,11,15,15,12,15,1,9,14,14,9,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"11\", \"15\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,11,2,5,9,1,2,9,1,10,7,3,11,7,4,9,4,10,12,9,11,15,15,12,15,1,9,14,14,9,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\"], \"clip_start\": 9.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,11,2,5,9,1,2,9,1,10,7,3,11,7,4,9,4,10,12,9,11,15,15,12,15,1,9,14,14,9,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"1\", \"10\", \"7\", \"3\", \"11\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q13_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,11,2,5,9,1,2,9,1,10,7,3,11,7,4,9,4,10,12,9,11,15,15,12,15,1,9,14,14,9,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"14\", \"14\", \"9\", \"6\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,11,2,5,9,1,2,9,1,10,7,3,11,7,4,9,4,10,12,9,11,15,15,12,15,1,9,14,14,9,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"9\", \"1\", \"2\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,11,2,5,9,1,2,9,1,10,7,3,11,7,4,9,4,10,12,9,11,15,15,12,15,1,9,14,14,9,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,1,3,8,3,9,6,6,0,0,10,1,12,11,3,5,12,1,10,5,2,9,11,4,9,0,0,8,2,1,5", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"1\", \"10\", \"5\"], \"clip_start\": 17.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,1,3,8,3,9,6,6,0,0,10,1,12,11,3,5,12,1,10,5,2,9,11,4,9,0,0,8,2,1,5", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,1,3,8,3,9,6,6,0,0,10,1,12,11,3,5,12,1,10,5,2,9,11,4,9,0,0,8,2,1,5", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"1\", \"10\"], \"clip_start\": 16.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,1,3,8,3,9,6,6,0,0,10,1,12,11,3,5,12,1,10,5,2,9,11,4,9,0,0,8,2,1,5", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"4\", \"9\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,1,3,8,3,9,6,6,0,0,10,1,12,11,3,5,12,1,10,5,2,9,11,4,9,0,0,8,2,1,5", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"5\", \"12\", \"1\"], \"clip_start\": 14.0, \"clip_end\": 19.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,1,3,8,3,9,6,6,0,0,10,1,12,11,3,5,12,1,10,5,2,9,11,4,9,0,0,8,2,1,5", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"3\", \"9\", \"6\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,1,3,8,3,9,6,6,0,0,10,1,12,11,3,5,12,1,10,5,2,9,11,4,9,0,0,8,2,1,5", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"3\", \"8\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,1,3,8,3,9,6,6,0,0,10,1,12,11,3,5,12,1,10,5,2,9,11,4,9,0,0,8,2,1,5", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"4\", \"9\", \"0\", \"0\", \"8\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,1,3,8,3,9,6,6,0,0,10,1,12,11,3,5,12,1,10,5,2,9,11,4,9,0,0,8,2,1,5", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"4\", \"9\", \"0\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,1,3,8,3,9,6,6,0,0,10,1,12,11,3,5,12,1,10,5,2,9,11,4,9,0,0,8,2,1,5", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"0\", \"0\", \"8\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,1,3,8,3,9,6,6,0,0,10,1,12,11,3,5,12,1,10,5,2,9,11,4,9,0,0,8,2,1,5", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,1,3,8,3,9,6,6,0,0,10,1,12,11,3,5,12,1,10,5,2,9,11,4,9,0,0,8,2,1,5", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"0\", \"0\", \"8\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,1,3,8,3,9,6,6,0,0,10,1,12,11,3,5,12,1,10,5,2,9,11,4,9,0,0,8,2,1,5", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"12\"], \"clip_start\": 28.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,1,3,8,3,9,6,6,0,0,10,1,12,11,3,5,12,1,10,5,2,9,11,4,9,0,0,8,2,1,5", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"1\", \"12\", \"11\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q14_true_sequential.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,1,3,8,3,9,6,6,0,0,10,1,12,11,3,5,12,1,10,5,2,9,11,4,9,0,0,8,2,1,5", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L032_NO_RULES", "source_split": "substream_video", "length_L": 32, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"6\", \"6\", \"0\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q15_true_spatial.mp4", "video_path": "videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,1,3,8,3,9,6,6,0,0,10,1,12,11,3,5,12,1,10,5,2,9,11,4,9,0,0,8,2,1,5", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 58.0, \"clip_end\": 64.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,1,1,4,1,1,14,14,3,0,12,0,0,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"7\", \"5\"], \"clip_start\": 52.0, \"clip_end\": 56.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,1,1,4,1,1,14,14,3,0,12,0,0,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"1\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,1,1,4,1,1,14,14,3,0,12,0,0,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"7\", \"4\", \"2\", \"7\"], \"clip_start\": 39.0, \"clip_end\": 45.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q3_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,1,1,4,1,1,14,14,3,0,12,0,0,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"5\", \"7\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q4_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,1,1,4,1,1,14,14,3,0,12,0,0,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"7\", \"4\", \"2\", \"7\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,1,1,4,1,1,14,14,3,0,12,0,0,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"5\", \"7\", \"4\", \"2\"], \"clip_start\": 53.0, \"clip_end\": 59.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,1,1,4,1,1,14,14,3,0,12,0,0,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"5\"], \"clip_start\": 51.0, \"clip_end\": 55.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q7_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,1,1,4,1,1,14,14,3,0,12,0,0,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"5\"], \"clip_start\": 28.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,1,1,4,1,1,14,14,3,0,12,0,0,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"7\"], \"clip_start\": 45.0, \"clip_end\": 48.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,1,1,4,1,1,14,14,3,0,12,0,0,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"3\", \"0\", \"12\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q10_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,1,1,4,1,1,14,14,3,0,12,0,0,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"1\", \"1\", \"14\", \"14\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q11_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,1,1,4,1,1,14,14,3,0,12,0,0,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"0\", \"12\", \"0\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q12_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,1,1,4,1,1,14,14,3,0,12,0,0,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"3\", \"0\", \"12\", \"0\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q13_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,1,1,4,1,1,14,14,3,0,12,0,0,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"15\", \"3\"], \"clip_start\": 57.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q14_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,1,1,4,1,1,14,14,3,0,12,0,0,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"7\", \"4\", \"2\", \"7\"], \"clip_start\": 54.0, \"clip_end\": 60.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q15_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,1,1,4,1,1,14,14,3,0,12,0,0,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2,7,5,7,4,2", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"12\", \"12\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,7,11,12,12,15,3,4,15,6,2,12,8,7,4,4,15,6,2,6,7,7,10,15,3,11,10,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,6,13,14,10,8,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"6\", \"7\", \"7\", \"10\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,7,11,12,12,15,3,4,15,6,2,12,8,7,4,4,15,6,2,6,7,7,10,15,3,11,10,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,6,13,14,10,8,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 57.0, \"clip_end\": 63.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,7,11,12,12,15,3,4,15,6,2,12,8,7,4,4,15,6,2,6,7,7,10,15,3,11,10,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,6,13,14,10,8,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"12\", \"12\", \"11\", \"12\", \"12\"], \"clip_start\": 45.0, \"clip_end\": 51.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,7,11,12,12,15,3,4,15,6,2,12,8,7,4,4,15,6,2,6,7,7,10,15,3,11,10,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,6,13,14,10,8,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"12\", \"12\", \"15\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,7,11,12,12,15,3,4,15,6,2,12,8,7,4,4,15,6,2,6,7,7,10,15,3,11,10,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,6,13,14,10,8,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"12\", \"12\"], \"clip_start\": 38.0, \"clip_end\": 42.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,7,11,12,12,15,3,4,15,6,2,12,8,7,4,4,15,6,2,6,7,7,10,15,3,11,10,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,6,13,14,10,8,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"13\", \"14\"], \"clip_start\": 57.0, \"clip_end\": 61.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,7,11,12,12,15,3,4,15,6,2,12,8,7,4,4,15,6,2,6,7,7,10,15,3,11,10,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,6,13,14,10,8,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,7,11,12,12,15,3,4,15,6,2,12,8,7,4,4,15,6,2,6,7,7,10,15,3,11,10,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,6,13,14,10,8,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 46.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,7,11,12,12,15,3,4,15,6,2,12,8,7,4,4,15,6,2,6,7,7,10,15,3,11,10,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,6,13,14,10,8,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"7\", \"10\", \"15\", \"3\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,7,11,12,12,15,3,4,15,6,2,12,8,7,4,4,15,6,2,6,7,7,10,15,3,11,10,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,6,13,14,10,8,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"15\", \"6\", \"2\", \"6\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,7,11,12,12,15,3,4,15,6,2,12,8,7,4,4,15,6,2,6,7,7,10,15,3,11,10,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,6,13,14,10,8,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 3.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q11_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,7,11,12,12,15,3,4,15,6,2,12,8,7,4,4,15,6,2,6,7,7,10,15,3,11,10,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,6,13,14,10,8,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"12\", \"12\", \"11\"], \"clip_start\": 47.0, \"clip_end\": 52.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,7,11,12,12,15,3,4,15,6,2,12,8,7,4,4,15,6,2,6,7,7,10,15,3,11,10,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,6,13,14,10,8,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"11\", \"12\"], \"clip_start\": 52.0, \"clip_end\": 56.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q13_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,7,11,12,12,15,3,4,15,6,2,12,8,7,4,4,15,6,2,6,7,7,10,15,3,11,10,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,6,13,14,10,8,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"12\"], \"clip_start\": 14.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,7,11,12,12,15,3,4,15,6,2,12,8,7,4,4,15,6,2,6,7,7,10,15,3,11,10,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,6,13,14,10,8,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"12\", \"12\", \"11\", \"12\", \"12\"], \"clip_start\": 30.0, \"clip_end\": 36.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q15_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,7,11,12,12,15,3,4,15,6,2,12,8,7,4,4,15,6,2,6,7,7,10,15,3,11,10,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,12,12,11,6,13,14,10,8,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"9\", \"4\", \"13\", \"0\", \"5\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,13,0,12,7,4,7,4,4,13,0,5,9,4,13,0,5,9,12,5,15,1,7,4,2,0,11,1,15,4,13,13,12,8,11,8,11,10,8,15,3,11,0,11,6,9,13,0,7,1,5,10,8,5,2,0,11,1,15,3,11,7,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"8\", \"11\", \"10\", \"8\"], \"clip_start\": 35.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,13,0,12,7,4,7,4,4,13,0,5,9,4,13,0,5,9,12,5,15,1,7,4,2,0,11,1,15,4,13,13,12,8,11,8,11,10,8,15,3,11,0,11,6,9,13,0,7,1,5,10,8,5,2,0,11,1,15,3,11,7,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"13\", \"0\", \"12\", \"7\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,13,0,12,7,4,7,4,4,13,0,5,9,4,13,0,5,9,12,5,15,1,7,4,2,0,11,1,15,4,13,13,12,8,11,8,11,10,8,15,3,11,0,11,6,9,13,0,7,1,5,10,8,5,2,0,11,1,15,3,11,7,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"11\", \"1\", \"15\"], \"clip_start\": 55.0, \"clip_end\": 60.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,13,0,12,7,4,7,4,4,13,0,5,9,4,13,0,5,9,12,5,15,1,7,4,2,0,11,1,15,4,13,13,12,8,11,8,11,10,8,15,3,11,0,11,6,9,13,0,7,1,5,10,8,5,2,0,11,1,15,3,11,7,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"0\", \"11\"], \"clip_start\": 41.0, \"clip_end\": 45.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,13,0,12,7,4,7,4,4,13,0,5,9,4,13,0,5,9,12,5,15,1,7,4,2,0,11,1,15,4,13,13,12,8,11,8,11,10,8,15,3,11,0,11,6,9,13,0,7,1,5,10,8,5,2,0,11,1,15,3,11,7,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"0\", \"12\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q5_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,13,0,12,7,4,7,4,4,13,0,5,9,4,13,0,5,9,12,5,15,1,7,4,2,0,11,1,15,4,13,13,12,8,11,8,11,10,8,15,3,11,0,11,6,9,13,0,7,1,5,10,8,5,2,0,11,1,15,3,11,7,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"1\", \"15\", \"4\", \"13\"], \"clip_start\": 27.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,13,0,12,7,4,7,4,4,13,0,5,9,4,13,0,5,9,12,5,15,1,7,4,2,0,11,1,15,4,13,13,12,8,11,8,11,10,8,15,3,11,0,11,6,9,13,0,7,1,5,10,8,5,2,0,11,1,15,3,11,7,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"12\", \"7\", \"4\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,13,0,12,7,4,7,4,4,13,0,5,9,4,13,0,5,9,12,5,15,1,7,4,2,0,11,1,15,4,13,13,12,8,11,8,11,10,8,15,3,11,0,11,6,9,13,0,7,1,5,10,8,5,2,0,11,1,15,3,11,7,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"11\", \"1\", \"15\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q8_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,13,0,12,7,4,7,4,4,13,0,5,9,4,13,0,5,9,12,5,15,1,7,4,2,0,11,1,15,4,13,13,12,8,11,8,11,10,8,15,3,11,0,11,6,9,13,0,7,1,5,10,8,5,2,0,11,1,15,3,11,7,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"5\", \"9\", \"4\", \"13\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q9_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,13,0,12,7,4,7,4,4,13,0,5,9,4,13,0,5,9,12,5,15,1,7,4,2,0,11,1,15,4,13,13,12,8,11,8,11,10,8,15,3,11,0,11,6,9,13,0,7,1,5,10,8,5,2,0,11,1,15,3,11,7,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"0\", \"11\", \"6\", \"9\", \"13\"], \"clip_start\": 42.0, \"clip_end\": 48.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q10_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,13,0,12,7,4,7,4,4,13,0,5,9,4,13,0,5,9,12,5,15,1,7,4,2,0,11,1,15,4,13,13,12,8,11,8,11,10,8,15,3,11,0,11,6,9,13,0,7,1,5,10,8,5,2,0,11,1,15,3,11,7,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"13\", \"12\", \"8\", \"11\"], \"clip_start\": 30.0, \"clip_end\": 36.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q11_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,13,0,12,7,4,7,4,4,13,0,5,9,4,13,0,5,9,12,5,15,1,7,4,2,0,11,1,15,4,13,13,12,8,11,8,11,10,8,15,3,11,0,11,6,9,13,0,7,1,5,10,8,5,2,0,11,1,15,3,11,7,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"4\", \"2\", \"0\", \"11\", \"1\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q12_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,13,0,12,7,4,7,4,4,13,0,5,9,4,13,0,5,9,12,5,15,1,7,4,2,0,11,1,15,4,13,13,12,8,11,8,11,10,8,15,3,11,0,11,6,9,13,0,7,1,5,10,8,5,2,0,11,1,15,3,11,7,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"9\", \"1\", \"6\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q13_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,13,0,12,7,4,7,4,4,13,0,5,9,4,13,0,5,9,12,5,15,1,7,4,2,0,11,1,15,4,13,13,12,8,11,8,11,10,8,15,3,11,0,11,6,9,13,0,7,1,5,10,8,5,2,0,11,1,15,3,11,7,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"7\", \"4\", \"2\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q14_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,13,0,12,7,4,7,4,4,13,0,5,9,4,13,0,5,9,12,5,15,1,7,4,2,0,11,1,15,4,13,13,12,8,11,8,11,10,8,15,3,11,0,11,6,9,13,0,7,1,5,10,8,5,2,0,11,1,15,3,11,7,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"0\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q15_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,13,0,12,7,4,7,4,4,13,0,5,9,4,13,0,5,9,12,5,15,1,7,4,2,0,11,1,15,4,13,13,12,8,11,8,11,10,8,15,3,11,0,11,6,9,13,0,7,1,5,10,8,5,2,0,11,1,15,3,11,7,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"3\", \"10\", \"11\", \"9\", \"3\"], \"clip_start\": 40.0, \"clip_end\": 46.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,4,7,3,12,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,12,15,11,10,7,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"10\", \"7\", \"3\"], \"clip_start\": 37.0, \"clip_end\": 42.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,4,7,3,12,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,12,15,11,10,7,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"3\", \"10\", \"11\"], \"clip_start\": 55.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,4,7,3,12,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,12,15,11,10,7,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"3\", \"10\", \"11\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,4,7,3,12,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,12,15,11,10,7,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"10\"], \"clip_start\": 8.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,4,7,3,12,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,12,15,11,10,7,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"9\", \"3\", \"10\", \"11\"], \"clip_start\": 42.0, \"clip_end\": 48.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,4,7,3,12,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,12,15,11,10,7,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 32.0, \"clip_end\": 35.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,4,7,3,12,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,12,15,11,10,7,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"9\", \"3\", \"10\", \"11\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,4,7,3,12,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,12,15,11,10,7,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"10\", \"11\"], \"clip_start\": 48.0, \"clip_end\": 52.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,4,7,3,12,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,12,15,11,10,7,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"9\", \"3\"], \"clip_start\": 14.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,4,7,3,12,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,12,15,11,10,7,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"11\", \"9\"], \"clip_start\": 57.0, \"clip_end\": 61.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,4,7,3,12,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,12,15,11,10,7,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,4,7,3,12,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,12,15,11,10,7,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"3\", \"10\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,4,7,3,12,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,12,15,11,10,7,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 61.0, \"clip_end\": 64.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,4,7,3,12,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,12,15,11,10,7,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"3\", \"10\"], \"clip_start\": 59.0, \"clip_end\": 63.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,4,7,3,12,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,12,15,11,10,7,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,4,7,3,12,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,12,15,11,10,7,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11,9,3,10,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"4\", \"11\", \"8\", \"15\", \"6\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,7,3,2,6,14,10,6,12,0,7,9,14,10,6,1,13,1,13,1,13,11,14,4,15,15,4,11,8,15,6,14,10,6,12,0,7,9,14,10,12,14,7,3,2,6,14,10,6,12,0,7,9,14,10,6,12,0,7,9,14,10,6,12", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"12\", \"0\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,7,3,2,6,14,10,6,12,0,7,9,14,10,6,1,13,1,13,1,13,11,14,4,15,15,4,11,8,15,6,14,10,6,12,0,7,9,14,10,12,14,7,3,2,6,14,10,6,12,0,7,9,14,10,6,12,0,7,9,14,10,6,12", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"15\", \"15\", \"4\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,7,3,2,6,14,10,6,12,0,7,9,14,10,6,1,13,1,13,1,13,11,14,4,15,15,4,11,8,15,6,14,10,6,12,0,7,9,14,10,12,14,7,3,2,6,14,10,6,12,0,7,9,14,10,6,12,0,7,9,14,10,6,12", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 51.0, \"clip_end\": 56.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,7,3,2,6,14,10,6,12,0,7,9,14,10,6,1,13,1,13,1,13,11,14,4,15,15,4,11,8,15,6,14,10,6,12,0,7,9,14,10,12,14,7,3,2,6,14,10,6,12,0,7,9,14,10,6,12,0,7,9,14,10,6,12", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 50.0, \"clip_end\": 53.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,7,3,2,6,14,10,6,12,0,7,9,14,10,6,1,13,1,13,1,13,11,14,4,15,15,4,11,8,15,6,14,10,6,12,0,7,9,14,10,12,14,7,3,2,6,14,10,6,12,0,7,9,14,10,6,12,0,7,9,14,10,6,12", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"7\", \"3\", \"2\", \"6\"], \"clip_start\": 40.0, \"clip_end\": 46.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,7,3,2,6,14,10,6,12,0,7,9,14,10,6,1,13,1,13,1,13,11,14,4,15,15,4,11,8,15,6,14,10,6,12,0,7,9,14,10,12,14,7,3,2,6,14,10,6,12,0,7,9,14,10,6,12,0,7,9,14,10,6,12", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"7\", \"3\"], \"clip_start\": 40.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,7,3,2,6,14,10,6,12,0,7,9,14,10,6,1,13,1,13,1,13,11,14,4,15,15,4,11,8,15,6,14,10,6,12,0,7,9,14,10,12,14,7,3,2,6,14,10,6,12,0,7,9,14,10,6,12,0,7,9,14,10,6,12", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"14\", \"10\", \"6\", \"12\"], \"clip_start\": 44.0, \"clip_end\": 50.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,7,3,2,6,14,10,6,12,0,7,9,14,10,6,1,13,1,13,1,13,11,14,4,15,15,4,11,8,15,6,14,10,6,12,0,7,9,14,10,12,14,7,3,2,6,14,10,6,12,0,7,9,14,10,6,12,0,7,9,14,10,6,12", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"3\", \"2\", \"6\", \"14\", \"10\"], \"clip_start\": 42.0, \"clip_end\": 48.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,7,3,2,6,14,10,6,12,0,7,9,14,10,6,1,13,1,13,1,13,11,14,4,15,15,4,11,8,15,6,14,10,6,12,0,7,9,14,10,12,14,7,3,2,6,14,10,6,12,0,7,9,14,10,6,12,0,7,9,14,10,6,12", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 28.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,7,3,2,6,14,10,6,12,0,7,9,14,10,6,1,13,1,13,1,13,11,14,4,15,15,4,11,8,15,6,14,10,6,12,0,7,9,14,10,12,14,7,3,2,6,14,10,6,12,0,7,9,14,10,6,12,0,7,9,14,10,6,12", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 50.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,7,3,2,6,14,10,6,12,0,7,9,14,10,6,1,13,1,13,1,13,11,14,4,15,15,4,11,8,15,6,14,10,6,12,0,7,9,14,10,12,14,7,3,2,6,14,10,6,12,0,7,9,14,10,6,12,0,7,9,14,10,6,12", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"12\", \"0\", \"7\", \"9\"], \"clip_start\": 32.0, \"clip_end\": 38.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,7,3,2,6,14,10,6,12,0,7,9,14,10,6,1,13,1,13,1,13,11,14,4,15,15,4,11,8,15,6,14,10,6,12,0,7,9,14,10,12,14,7,3,2,6,14,10,6,12,0,7,9,14,10,6,12,0,7,9,14,10,6,12", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"0\", \"7\"], \"clip_start\": 7.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,7,3,2,6,14,10,6,12,0,7,9,14,10,6,1,13,1,13,1,13,11,14,4,15,15,4,11,8,15,6,14,10,6,12,0,7,9,14,10,12,14,7,3,2,6,14,10,6,12,0,7,9,14,10,6,12,0,7,9,14,10,6,12", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"11\", \"14\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,7,3,2,6,14,10,6,12,0,7,9,14,10,6,1,13,1,13,1,13,11,14,4,15,15,4,11,8,15,6,14,10,6,12,0,7,9,14,10,12,14,7,3,2,6,14,10,6,12,0,7,9,14,10,6,12,0,7,9,14,10,6,12", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"14\", \"10\", \"6\", \"1\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,7,3,2,6,14,10,6,12,0,7,9,14,10,6,1,13,1,13,1,13,11,14,4,15,15,4,11,8,15,6,14,10,6,12,0,7,9,14,10,12,14,7,3,2,6,14,10,6,12,0,7,9,14,10,6,12,0,7,9,14,10,6,12", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"10\", \"6\", \"12\", \"0\"], \"clip_start\": 30.0, \"clip_end\": 36.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,7,3,2,6,14,10,6,12,0,7,9,14,10,6,1,13,1,13,1,13,11,14,4,15,15,4,11,8,15,6,14,10,6,12,0,7,9,14,10,12,14,7,3,2,6,14,10,6,12,0,7,9,14,10,6,12,0,7,9,14,10,6,12", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"6\", \"15\", \"9\", \"8\"], \"clip_start\": 48.0, \"clip_end\": 54.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,0,4,12,0,7,2,10,8,6,1,8,6,8,6,15,15,6,15,9,8,8,8,14,10,8,6,15,15,6,15,9,8,8,8,15,9,8,8,8,15,2,0,7,12,8,8,15,15,6,15,9,8,8,8,15,9,8,8,8,15,9,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"9\", \"8\"], \"clip_start\": 30.0, \"clip_end\": 34.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,0,4,12,0,7,2,10,8,6,1,8,6,8,6,15,15,6,15,9,8,8,8,14,10,8,6,15,15,6,15,9,8,8,8,15,9,8,8,8,15,2,0,7,12,8,8,15,15,6,15,9,8,8,8,15,9,8,8,8,15,9,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"10\", \"8\", \"6\", \"1\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,0,4,12,0,7,2,10,8,6,1,8,6,8,6,15,15,6,15,9,8,8,8,14,10,8,6,15,15,6,15,9,8,8,8,15,9,8,8,8,15,2,0,7,12,8,8,15,15,6,15,9,8,8,8,15,9,8,8,8,15,9,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 8.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,0,4,12,0,7,2,10,8,6,1,8,6,8,6,15,15,6,15,9,8,8,8,14,10,8,6,15,15,6,15,9,8,8,8,15,9,8,8,8,15,2,0,7,12,8,8,15,15,6,15,9,8,8,8,15,9,8,8,8,15,9,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"8\", \"8\", \"8\"], \"clip_start\": 36.0, \"clip_end\": 41.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,0,4,12,0,7,2,10,8,6,1,8,6,8,6,15,15,6,15,9,8,8,8,14,10,8,6,15,15,6,15,9,8,8,8,15,9,8,8,8,15,2,0,7,12,8,8,15,15,6,15,9,8,8,8,15,9,8,8,8,15,9,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"8\", \"8\", \"8\", \"15\"], \"clip_start\": 51.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,0,4,12,0,7,2,10,8,6,1,8,6,8,6,15,15,6,15,9,8,8,8,14,10,8,6,15,15,6,15,9,8,8,8,15,9,8,8,8,15,2,0,7,12,8,8,15,15,6,15,9,8,8,8,15,9,8,8,8,15,9,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"4\", \"12\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q6_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,0,4,12,0,7,2,10,8,6,1,8,6,8,6,15,15,6,15,9,8,8,8,14,10,8,6,15,15,6,15,9,8,8,8,15,9,8,8,8,15,2,0,7,12,8,8,15,15,6,15,9,8,8,8,15,9,8,8,8,15,9,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"10\", \"8\", \"6\", \"1\", \"8\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q7_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,0,4,12,0,7,2,10,8,6,1,8,6,8,6,15,15,6,15,9,8,8,8,14,10,8,6,15,15,6,15,9,8,8,8,15,9,8,8,8,15,2,0,7,12,8,8,15,15,6,15,9,8,8,8,15,9,8,8,8,15,9,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"15\", \"9\", \"8\", \"8\"], \"clip_start\": 35.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,0,4,12,0,7,2,10,8,6,1,8,6,8,6,15,15,6,15,9,8,8,8,14,10,8,6,15,15,6,15,9,8,8,8,15,9,8,8,8,15,2,0,7,12,8,8,15,15,6,15,9,8,8,8,15,9,8,8,8,15,9,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"8\", \"15\", \"15\"], \"clip_start\": 46.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q9_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,0,4,12,0,7,2,10,8,6,1,8,6,8,6,15,15,6,15,9,8,8,8,14,10,8,6,15,15,6,15,9,8,8,8,15,9,8,8,8,15,2,0,7,12,8,8,15,15,6,15,9,8,8,8,15,9,8,8,8,15,9,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"0\", \"7\", \"12\"], \"clip_start\": 41.0, \"clip_end\": 46.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q10_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,0,4,12,0,7,2,10,8,6,1,8,6,8,6,15,15,6,15,9,8,8,8,14,10,8,6,15,15,6,15,9,8,8,8,15,9,8,8,8,15,2,0,7,12,8,8,15,15,6,15,9,8,8,8,15,9,8,8,8,15,9,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"8\", \"8\", \"15\", \"9\", \"8\"], \"clip_start\": 58.0, \"clip_end\": 64.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,0,4,12,0,7,2,10,8,6,1,8,6,8,6,15,15,6,15,9,8,8,8,14,10,8,6,15,15,6,15,9,8,8,8,15,9,8,8,8,15,2,0,7,12,8,8,15,15,6,15,9,8,8,8,15,9,8,8,8,15,9,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"1\", \"8\", \"6\", \"8\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,0,4,12,0,7,2,10,8,6,1,8,6,8,6,15,15,6,15,9,8,8,8,14,10,8,6,15,15,6,15,9,8,8,8,15,9,8,8,8,15,2,0,7,12,8,8,15,15,6,15,9,8,8,8,15,9,8,8,8,15,9,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"15\", \"15\", \"6\", \"15\"], \"clip_start\": 47.0, \"clip_end\": 52.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q13_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,0,4,12,0,7,2,10,8,6,1,8,6,8,6,15,15,6,15,9,8,8,8,14,10,8,6,15,15,6,15,9,8,8,8,15,9,8,8,8,15,2,0,7,12,8,8,15,15,6,15,9,8,8,8,15,9,8,8,8,15,9,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\", \"2\", \"15\", \"0\"], \"clip_start\": 53.0, \"clip_end\": 59.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q14_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,0,4,12,0,7,2,10,8,6,1,8,6,8,6,15,15,6,15,9,8,8,8,14,10,8,6,15,15,6,15,9,8,8,8,15,9,8,8,8,15,2,0,7,12,8,8,15,15,6,15,9,8,8,8,15,9,8,8,8,15,9,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"7\", \"2\", \"10\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q15_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,0,4,12,0,7,2,10,8,6,1,8,6,8,6,15,15,6,15,9,8,8,8,14,10,8,6,15,15,6,15,9,8,8,8,15,9,8,8,8,15,2,0,7,12,8,8,15,15,6,15,9,8,8,8,15,9,8,8,8,15,9,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"7\", \"6\", \"9\"], \"clip_start\": 43.0, \"clip_end\": 48.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,4,9,5,1,10,8,10,7,3,10,7,10,7,10,7,10,14,12,10,6,6,14,3,14,15,11,3,15,15,11,15,11,3,15,15,0,4,2,3,14,12,10,6,7,6,9,7,0,4,2,15,11,3,15,15,11,15,11,3,15,15,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"4\", \"2\"], \"clip_start\": 48.0, \"clip_end\": 52.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,4,9,5,1,10,8,10,7,3,10,7,10,7,10,7,10,14,12,10,6,6,14,3,14,15,11,3,15,15,11,15,11,3,15,15,0,4,2,3,14,12,10,6,7,6,9,7,0,4,2,15,11,3,15,15,11,15,11,3,15,15,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"11\", \"15\"], \"clip_start\": 55.0, \"clip_end\": 59.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,4,9,5,1,10,8,10,7,3,10,7,10,7,10,7,10,14,12,10,6,6,14,3,14,15,11,3,15,15,11,15,11,3,15,15,0,4,2,3,14,12,10,6,7,6,9,7,0,4,2,15,11,3,15,15,11,15,11,3,15,15,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"7\", \"10\", \"14\"], \"clip_start\": 14.0, \"clip_end\": 19.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,4,9,5,1,10,8,10,7,3,10,7,10,7,10,7,10,14,12,10,6,6,14,3,14,15,11,3,15,15,11,15,11,3,15,15,0,4,2,3,14,12,10,6,7,6,9,7,0,4,2,15,11,3,15,15,11,15,11,3,15,15,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 31.0, \"clip_end\": 35.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,4,9,5,1,10,8,10,7,3,10,7,10,7,10,7,10,14,12,10,6,6,14,3,14,15,11,3,15,15,11,15,11,3,15,15,0,4,2,3,14,12,10,6,7,6,9,7,0,4,2,15,11,3,15,15,11,15,11,3,15,15,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"15\", \"11\"], \"clip_start\": 28.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,4,9,5,1,10,8,10,7,3,10,7,10,7,10,7,10,14,12,10,6,6,14,3,14,15,11,3,15,15,11,15,11,3,15,15,0,4,2,3,14,12,10,6,7,6,9,7,0,4,2,15,11,3,15,15,11,15,11,3,15,15,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"3\", \"15\"], \"clip_start\": 52.0, \"clip_end\": 56.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,4,9,5,1,10,8,10,7,3,10,7,10,7,10,7,10,14,12,10,6,6,14,3,14,15,11,3,15,15,11,15,11,3,15,15,0,4,2,3,14,12,10,6,7,6,9,7,0,4,2,15,11,3,15,15,11,15,11,3,15,15,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 54.0, \"clip_end\": 59.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,4,9,5,1,10,8,10,7,3,10,7,10,7,10,7,10,14,12,10,6,6,14,3,14,15,11,3,15,15,11,15,11,3,15,15,0,4,2,3,14,12,10,6,7,6,9,7,0,4,2,15,11,3,15,15,11,15,11,3,15,15,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"14\", \"12\", \"10\"], \"clip_start\": 17.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,4,9,5,1,10,8,10,7,3,10,7,10,7,10,7,10,14,12,10,6,6,14,3,14,15,11,3,15,15,11,15,11,3,15,15,0,4,2,3,14,12,10,6,7,6,9,7,0,4,2,15,11,3,15,15,11,15,11,3,15,15,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"8\"], \"clip_start\": 53.0, \"clip_end\": 56.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,4,9,5,1,10,8,10,7,3,10,7,10,7,10,7,10,14,12,10,6,6,14,3,14,15,11,3,15,15,11,15,11,3,15,15,0,4,2,3,14,12,10,6,7,6,9,7,0,4,2,15,11,3,15,15,11,15,11,3,15,15,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"10\", \"7\", \"10\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q10_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,4,9,5,1,10,8,10,7,3,10,7,10,7,10,7,10,14,12,10,6,6,14,3,14,15,11,3,15,15,11,15,11,3,15,15,0,4,2,3,14,12,10,6,7,6,9,7,0,4,2,15,11,3,15,15,11,15,11,3,15,15,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"12\", \"10\"], \"clip_start\": 40.0, \"clip_end\": 44.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q11_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,4,9,5,1,10,8,10,7,3,10,7,10,7,10,7,10,14,12,10,6,6,14,3,14,15,11,3,15,15,11,15,11,3,15,15,0,4,2,3,14,12,10,6,7,6,9,7,0,4,2,15,11,3,15,15,11,15,11,3,15,15,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\"], \"clip_start\": 6.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q12_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,4,9,5,1,10,8,10,7,3,10,7,10,7,10,7,10,14,12,10,6,6,14,3,14,15,11,3,15,15,11,15,11,3,15,15,0,4,2,3,14,12,10,6,7,6,9,7,0,4,2,15,11,3,15,15,11,15,11,3,15,15,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"7\", \"0\"], \"clip_start\": 46.0, \"clip_end\": 50.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q13_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,4,9,5,1,10,8,10,7,3,10,7,10,7,10,7,10,14,12,10,6,6,14,3,14,15,11,3,15,15,11,15,11,3,15,15,0,4,2,3,14,12,10,6,7,6,9,7,0,4,2,15,11,3,15,15,11,15,11,3,15,15,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"10\", \"6\"], \"clip_start\": 41.0, \"clip_end\": 45.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q14_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,4,9,5,1,10,8,10,7,3,10,7,10,7,10,7,10,14,12,10,6,6,14,3,14,15,11,3,15,15,11,15,11,3,15,15,0,4,2,3,14,12,10,6,7,6,9,7,0,4,2,15,11,3,15,15,11,15,11,3,15,15,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"10\", \"7\", \"3\", \"10\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q15_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,4,9,5,1,10,8,10,7,3,10,7,10,7,10,7,10,14,12,10,6,6,14,3,14,15,11,3,15,15,11,15,11,3,15,15,0,4,2,3,14,12,10,6,7,6,9,7,0,4,2,15,11,3,15,15,11,15,11,3,15,15,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"7\", \"10\", \"5\"], \"clip_start\": 50.0, \"clip_end\": 55.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,15,14,0,3,9,11,13,1,3,7,11,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,11,13,1,3,7,10,5,14,15,14,0,9,2,15,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"3\", \"7\", \"3\", \"14\"], \"clip_start\": 34.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,15,14,0,3,9,11,13,1,3,7,11,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,11,13,1,3,7,10,5,14,15,14,0,9,2,15,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"7\", \"11\", \"13\", \"1\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,15,14,0,3,9,11,13,1,3,7,11,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,11,13,1,3,7,10,5,14,15,14,0,9,2,15,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"7\"], \"clip_start\": 21.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,15,14,0,3,9,11,13,1,3,7,11,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,11,13,1,3,7,10,5,14,15,14,0,9,2,15,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"7\", \"3\", \"14\"], \"clip_start\": 35.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,15,14,0,3,9,11,13,1,3,7,11,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,11,13,1,3,7,10,5,14,15,14,0,9,2,15,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"0\", \"13\", \"1\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,15,14,0,3,9,11,13,1,3,7,11,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,11,13,1,3,7,10,5,14,15,14,0,9,2,15,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"7\", \"10\", \"5\", \"14\"], \"clip_start\": 50.0, \"clip_end\": 56.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,15,14,0,3,9,11,13,1,3,7,11,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,11,13,1,3,7,10,5,14,15,14,0,9,2,15,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"3\", \"14\", \"0\", \"11\", \"13\"], \"clip_start\": 44.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,15,14,0,3,9,11,13,1,3,7,11,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,11,13,1,3,7,10,5,14,15,14,0,9,2,15,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\"], \"clip_start\": 58.0, \"clip_end\": 61.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,15,14,0,3,9,11,13,1,3,7,11,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,11,13,1,3,7,10,5,14,15,14,0,9,2,15,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"13\", \"3\"], \"clip_start\": 49.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q9_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,15,14,0,3,9,11,13,1,3,7,11,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,11,13,1,3,7,10,5,14,15,14,0,9,2,15,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"7\", \"11\", \"13\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q10_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,15,14,0,3,9,11,13,1,3,7,11,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,11,13,1,3,7,10,5,14,15,14,0,9,2,15,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"0\", \"13\", \"1\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,15,14,0,3,9,11,13,1,3,7,11,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,11,13,1,3,7,10,5,14,15,14,0,9,2,15,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"15\", \"9\"], \"clip_start\": 27.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q12_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,15,14,0,3,9,11,13,1,3,7,11,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,11,13,1,3,7,10,5,14,15,14,0,9,2,15,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"10\"], \"clip_start\": 51.0, \"clip_end\": 54.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q13_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,15,14,0,3,9,11,13,1,3,7,11,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,11,13,1,3,7,10,5,14,15,14,0,9,2,15,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"3\", \"7\", \"3\", \"14\"], \"clip_start\": 27.0, \"clip_end\": 33.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q14_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,15,14,0,3,9,11,13,1,3,7,11,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,11,13,1,3,7,10,5,14,15,14,0,9,2,15,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"0\", \"9\", \"2\", \"15\", \"14\"], \"clip_start\": 57.0, \"clip_end\": 63.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q15_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,14,15,14,0,3,9,11,13,1,3,7,11,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,13,1,3,7,3,14,0,11,13,1,3,7,10,5,14,15,14,0,9,2,15,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"1\", \"1\", \"13\", \"10\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,11,5,8,8,11,11,11,6,2,5,1,13,3,1,13,3,11,11,6,8,11,11,1,1,13,10,11,1,13,3,11,11,6,8,11,11,1,1,13,3,11,11,6,8,11,11,1,1,1,5,0,4,5,2,5,1,13,3,1,13,3,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"8\", \"11\", \"11\", \"1\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,11,5,8,8,11,11,11,6,2,5,1,13,3,1,13,3,11,11,6,8,11,11,1,1,13,10,11,1,13,3,11,11,6,8,11,11,1,1,13,3,11,11,6,8,11,11,1,1,1,5,0,4,5,2,5,1,13,3,1,13,3,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"5\", \"1\"], \"clip_start\": 55.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,11,5,8,8,11,11,11,6,2,5,1,13,3,1,13,3,11,11,6,8,11,11,1,1,13,10,11,1,13,3,11,11,6,8,11,11,1,1,13,3,11,11,6,8,11,11,1,1,1,5,0,4,5,2,5,1,13,3,1,13,3,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,11,5,8,8,11,11,11,6,2,5,1,13,3,1,13,3,11,11,6,8,11,11,1,1,13,10,11,1,13,3,11,11,6,8,11,11,1,1,13,3,11,11,6,8,11,11,1,1,1,5,0,4,5,2,5,1,13,3,1,13,3,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"11\", \"1\", \"1\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,11,5,8,8,11,11,11,6,2,5,1,13,3,1,13,3,11,11,6,8,11,11,1,1,13,10,11,1,13,3,11,11,6,8,11,11,1,1,13,3,11,11,6,8,11,11,1,1,1,5,0,4,5,2,5,1,13,3,1,13,3,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"11\", \"1\", \"1\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,11,5,8,8,11,11,11,6,2,5,1,13,3,1,13,3,11,11,6,8,11,11,1,1,13,10,11,1,13,3,11,11,6,8,11,11,1,1,13,3,11,11,6,8,11,11,1,1,1,5,0,4,5,2,5,1,13,3,1,13,3,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 56.0, \"clip_end\": 60.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,11,5,8,8,11,11,11,6,2,5,1,13,3,1,13,3,11,11,6,8,11,11,1,1,13,10,11,1,13,3,11,11,6,8,11,11,1,1,13,3,11,11,6,8,11,11,1,1,1,5,0,4,5,2,5,1,13,3,1,13,3,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"11\", \"1\", \"1\"], \"clip_start\": 35.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,11,5,8,8,11,11,11,6,2,5,1,13,3,1,13,3,11,11,6,8,11,11,1,1,13,10,11,1,13,3,11,11,6,8,11,11,1,1,13,3,11,11,6,8,11,11,1,1,1,5,0,4,5,2,5,1,13,3,1,13,3,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"11\", \"6\", \"2\", \"5\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,11,5,8,8,11,11,11,6,2,5,1,13,3,1,13,3,11,11,6,8,11,11,1,1,13,10,11,1,13,3,11,11,6,8,11,11,1,1,13,3,11,11,6,8,11,11,1,1,1,5,0,4,5,2,5,1,13,3,1,13,3,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"5\", \"1\", \"13\", \"3\"], \"clip_start\": 55.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,11,5,8,8,11,11,11,6,2,5,1,13,3,1,13,3,11,11,6,8,11,11,1,1,13,10,11,1,13,3,11,11,6,8,11,11,1,1,13,3,11,11,6,8,11,11,1,1,1,5,0,4,5,2,5,1,13,3,1,13,3,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,11,5,8,8,11,11,11,6,2,5,1,13,3,1,13,3,11,11,6,8,11,11,1,1,13,10,11,1,13,3,11,11,6,8,11,11,1,1,13,3,11,11,6,8,11,11,1,1,1,5,0,4,5,2,5,1,13,3,1,13,3,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"11\", \"11\", \"6\"], \"clip_start\": 30.0, \"clip_end\": 35.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,11,5,8,8,11,11,11,6,2,5,1,13,3,1,13,3,11,11,6,8,11,11,1,1,13,10,11,1,13,3,11,11,6,8,11,11,1,1,13,3,11,11,6,8,11,11,1,1,1,5,0,4,5,2,5,1,13,3,1,13,3,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,11,5,8,8,11,11,11,6,2,5,1,13,3,1,13,3,11,11,6,8,11,11,1,1,13,10,11,1,13,3,11,11,6,8,11,11,1,1,13,3,11,11,6,8,11,11,1,1,1,5,0,4,5,2,5,1,13,3,1,13,3,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"4\", \"5\", \"2\", \"5\"], \"clip_start\": 51.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,11,5,8,8,11,11,11,6,2,5,1,13,3,1,13,3,11,11,6,8,11,11,1,1,13,10,11,1,13,3,11,11,6,8,11,11,1,1,13,3,11,11,6,8,11,11,1,1,1,5,0,4,5,2,5,1,13,3,1,13,3,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"8\", \"8\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,11,5,8,8,11,11,11,6,2,5,1,13,3,1,13,3,11,11,6,8,11,11,1,1,13,10,11,1,13,3,11,11,6,8,11,11,1,1,13,3,11,11,6,8,11,11,1,1,1,5,0,4,5,2,5,1,13,3,1,13,3,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 33.0, \"clip_end\": 36.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,11,5,8,8,11,11,11,6,2,5,1,13,3,1,13,3,11,11,6,8,11,11,1,1,13,10,11,1,13,3,11,11,6,8,11,11,1,1,13,3,11,11,6,8,11,11,1,1,1,5,0,4,5,2,5,1,13,3,1,13,3,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,14,13,7,13,10,14,3,2,14,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,10,3,2,3,2,6,11,14,4,8,1,0,1", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"6\", \"11\", \"14\", \"4\"], \"clip_start\": 54.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,14,13,7,13,10,14,3,2,14,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,10,3,2,3,2,6,11,14,4,8,1,0,1", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"11\"], \"clip_start\": 55.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,14,13,7,13,10,14,3,2,14,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,10,3,2,3,2,6,11,14,4,8,1,0,1", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"14\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,14,13,7,13,10,14,3,2,14,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,10,3,2,3,2,6,11,14,4,8,1,0,1", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 37.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,14,13,7,13,10,14,3,2,14,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,10,3,2,3,2,6,11,14,4,8,1,0,1", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"10\", \"14\", \"3\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,14,13,7,13,10,14,3,2,14,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,10,3,2,3,2,6,11,14,4,8,1,0,1", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"4\", \"11\", \"14\", \"15\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,14,13,7,13,10,14,3,2,14,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,10,3,2,3,2,6,11,14,4,8,1,0,1", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 38.0, \"clip_end\": 42.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,14,13,7,13,10,14,3,2,14,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,10,3,2,3,2,6,11,14,4,8,1,0,1", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"7\", \"13\", \"10\", \"14\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,14,13,7,13,10,14,3,2,14,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,10,3,2,3,2,6,11,14,4,8,1,0,1", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"15\", \"4\", \"0\"], \"clip_start\": 27.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,14,13,7,13,10,14,3,2,14,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,10,3,2,3,2,6,11,14,4,8,1,0,1", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 53.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,14,13,7,13,10,14,3,2,14,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,10,3,2,3,2,6,11,14,4,8,1,0,1", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"14\", \"3\", \"2\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,14,13,7,13,10,14,3,2,14,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,10,3,2,3,2,6,11,14,4,8,1,0,1", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"4\", \"0\"], \"clip_start\": 33.0, \"clip_end\": 37.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,14,13,7,13,10,14,3,2,14,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,10,3,2,3,2,6,11,14,4,8,1,0,1", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"11\", \"14\", \"4\", \"0\"], \"clip_start\": 31.0, \"clip_end\": 37.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,14,13,7,13,10,14,3,2,14,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,10,3,2,3,2,6,11,14,4,8,1,0,1", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"14\", \"3\", \"2\", \"14\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,14,13,7,13,10,14,3,2,14,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,10,3,2,3,2,6,11,14,4,8,1,0,1", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"3\", \"2\", \"6\", \"11\"], \"clip_start\": 52.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,14,13,7,13,10,14,3,2,14,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,11,4,11,14,15,4,0,12,11,14,4,0,15,10,3,2,3,2,6,11,14,4,8,1,0,1", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"7\", \"10\", \"4\", \"9\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,6,7,6,7,10,4,9,11,11,8,9,0,2,8,1,10,8,8,9,9,0,4,9,11,11,3,10,0,8,8,9,0,2,8,1,10,13,5,2,3,10,0,8,4,8,9,12,6,7,1,10,10,5,1,3,10,0,8,8,9,0,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 36.0, \"clip_end\": 42.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,6,7,6,7,10,4,9,11,11,8,9,0,2,8,1,10,8,8,9,9,0,4,9,11,11,3,10,0,8,8,9,0,2,8,1,10,13,5,2,3,10,0,8,4,8,9,12,6,7,1,10,10,5,1,3,10,0,8,8,9,0,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"6\", \"7\", \"10\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,6,7,6,7,10,4,9,11,11,8,9,0,2,8,1,10,8,8,9,9,0,4,9,11,11,3,10,0,8,8,9,0,2,8,1,10,13,5,2,3,10,0,8,4,8,9,12,6,7,1,10,10,5,1,3,10,0,8,8,9,0,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"8\", \"1\", \"10\", \"13\", \"5\"], \"clip_start\": 34.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,6,7,6,7,10,4,9,11,11,8,9,0,2,8,1,10,8,8,9,9,0,4,9,11,11,3,10,0,8,8,9,0,2,8,1,10,13,5,2,3,10,0,8,4,8,9,12,6,7,1,10,10,5,1,3,10,0,8,8,9,0,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"2\", \"3\", \"10\", \"0\"], \"clip_start\": 38.0, \"clip_end\": 44.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,6,7,6,7,10,4,9,11,11,8,9,0,2,8,1,10,8,8,9,9,0,4,9,11,11,3,10,0,8,8,9,0,2,8,1,10,13,5,2,3,10,0,8,4,8,9,12,6,7,1,10,10,5,1,3,10,0,8,8,9,0,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"8\", \"9\", \"0\", \"2\"], \"clip_start\": 29.0, \"clip_end\": 35.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,6,7,6,7,10,4,9,11,11,8,9,0,2,8,1,10,8,8,9,9,0,4,9,11,11,3,10,0,8,8,9,0,2,8,1,10,13,5,2,3,10,0,8,4,8,9,12,6,7,1,10,10,5,1,3,10,0,8,8,9,0,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"0\", \"8\"], \"clip_start\": 56.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,6,7,6,7,10,4,9,11,11,8,9,0,2,8,1,10,8,8,9,9,0,4,9,11,11,3,10,0,8,8,9,0,2,8,1,10,13,5,2,3,10,0,8,4,8,9,12,6,7,1,10,10,5,1,3,10,0,8,8,9,0,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"8\", \"9\", \"0\", \"2\"], \"clip_start\": 58.0, \"clip_end\": 64.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,6,7,6,7,10,4,9,11,11,8,9,0,2,8,1,10,8,8,9,9,0,4,9,11,11,3,10,0,8,8,9,0,2,8,1,10,13,5,2,3,10,0,8,4,8,9,12,6,7,1,10,10,5,1,3,10,0,8,8,9,0,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"11\", \"11\"], \"clip_start\": 23.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,6,7,6,7,10,4,9,11,11,8,9,0,2,8,1,10,8,8,9,9,0,4,9,11,11,3,10,0,8,8,9,0,2,8,1,10,13,5,2,3,10,0,8,4,8,9,12,6,7,1,10,10,5,1,3,10,0,8,8,9,0,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 61.0, \"clip_end\": 64.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,6,7,6,7,10,4,9,11,11,8,9,0,2,8,1,10,8,8,9,9,0,4,9,11,11,3,10,0,8,8,9,0,2,8,1,10,13,5,2,3,10,0,8,4,8,9,12,6,7,1,10,10,5,1,3,10,0,8,8,9,0,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"8\", \"9\", \"12\"], \"clip_start\": 44.0, \"clip_end\": 49.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,6,7,6,7,10,4,9,11,11,8,9,0,2,8,1,10,8,8,9,9,0,4,9,11,11,3,10,0,8,8,9,0,2,8,1,10,13,5,2,3,10,0,8,4,8,9,12,6,7,1,10,10,5,1,3,10,0,8,8,9,0,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"0\", \"8\"], \"clip_start\": 56.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,6,7,6,7,10,4,9,11,11,8,9,0,2,8,1,10,8,8,9,9,0,4,9,11,11,3,10,0,8,8,9,0,2,8,1,10,13,5,2,3,10,0,8,4,8,9,12,6,7,1,10,10,5,1,3,10,0,8,8,9,0,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"10\", \"0\", \"8\"], \"clip_start\": 40.0, \"clip_end\": 45.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,6,7,6,7,10,4,9,11,11,8,9,0,2,8,1,10,8,8,9,9,0,4,9,11,11,3,10,0,8,8,9,0,2,8,1,10,13,5,2,3,10,0,8,4,8,9,12,6,7,1,10,10,5,1,3,10,0,8,8,9,0,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 31.0, \"clip_end\": 37.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,6,7,6,7,10,4,9,11,11,8,9,0,2,8,1,10,8,8,9,9,0,4,9,11,11,3,10,0,8,8,9,0,2,8,1,10,13,5,2,3,10,0,8,4,8,9,12,6,7,1,10,10,5,1,3,10,0,8,8,9,0,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"10\", \"4\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,6,7,6,7,10,4,9,11,11,8,9,0,2,8,1,10,8,8,9,9,0,4,9,11,11,3,10,0,8,8,9,0,2,8,1,10,13,5,2,3,10,0,8,4,8,9,12,6,7,1,10,10,5,1,3,10,0,8,8,9,0,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"8\", \"9\", \"12\"], \"clip_start\": 44.0, \"clip_end\": 49.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,6,7,6,7,10,4,9,11,11,8,9,0,2,8,1,10,8,8,9,9,0,4,9,11,11,3,10,0,8,8,9,0,2,8,1,10,13,5,2,3,10,0,8,4,8,9,12,6,7,1,10,10,5,1,3,10,0,8,8,9,0,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"12\", \"0\", \"4\", \"1\"], \"clip_start\": 50.0, \"clip_end\": 56.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,3,12,0,4,1,1,4,12,1,4,3,12,0,4,3,12,0,1,4,12,12,0,10,8,6,6,12,0,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"0\"], \"clip_start\": 11.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,3,12,0,4,1,1,4,12,1,4,3,12,0,4,3,12,0,1,4,12,12,0,10,8,6,6,12,0,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"0\", \"4\", \"1\"], \"clip_start\": 51.0, \"clip_end\": 56.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,3,12,0,4,1,1,4,12,1,4,3,12,0,4,3,12,0,1,4,12,12,0,10,8,6,6,12,0,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"4\", \"1\", \"1\"], \"clip_start\": 43.0, \"clip_end\": 47.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,3,12,0,4,1,1,4,12,1,4,3,12,0,4,3,12,0,1,4,12,12,0,10,8,6,6,12,0,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 8.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,3,12,0,4,1,1,4,12,1,4,3,12,0,4,3,12,0,1,4,12,12,0,10,8,6,6,12,0,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"12\", \"12\", \"0\", \"10\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,3,12,0,4,1,1,4,12,1,4,3,12,0,4,3,12,0,1,4,12,12,0,10,8,6,6,12,0,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"12\", \"12\"], \"clip_start\": 39.0, \"clip_end\": 43.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,3,12,0,4,1,1,4,12,1,4,3,12,0,4,3,12,0,1,4,12,12,0,10,8,6,6,12,0,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"4\", \"8\", \"6\", \"0\"], \"clip_start\": 52.0, \"clip_end\": 58.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,3,12,0,4,1,1,4,12,1,4,3,12,0,4,3,12,0,1,4,12,12,0,10,8,6,6,12,0,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"7\"], \"clip_start\": 11.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q8_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,3,12,0,4,1,1,4,12,1,4,3,12,0,4,3,12,0,1,4,12,12,0,10,8,6,6,12,0,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\", \"15\"], \"clip_start\": 20.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q9_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,3,12,0,4,1,1,4,12,1,4,3,12,0,4,3,12,0,1,4,12,12,0,10,8,6,6,12,0,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"1\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q10_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,3,12,0,4,1,1,4,12,1,4,3,12,0,4,3,12,0,1,4,12,12,0,10,8,6,6,12,0,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"12\", \"1\", \"4\", \"12\"], \"clip_start\": 36.0, \"clip_end\": 42.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q11_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,3,12,0,4,1,1,4,12,1,4,3,12,0,4,3,12,0,1,4,12,12,0,10,8,6,6,12,0,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"8\", \"2\", \"5\"], \"clip_start\": 52.0, \"clip_end\": 58.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q12_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,3,12,0,4,1,1,4,12,1,4,3,12,0,4,3,12,0,1,4,12,12,0,10,8,6,6,12,0,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"12\", \"12\"], \"clip_start\": 39.0, \"clip_end\": 43.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q13_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,3,12,0,4,1,1,4,12,1,4,3,12,0,4,3,12,0,1,4,12,12,0,10,8,6,6,12,0,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"1\", \"1\", \"4\", \"12\", \"1\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q14_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,3,12,0,4,1,1,4,12,1,4,3,12,0,4,3,12,0,1,4,12,12,0,10,8,6,6,12,0,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"11\", \"12\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q15_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,3,12,0,4,1,1,4,12,1,4,3,12,0,4,3,12,0,1,4,12,12,0,10,8,6,6,12,0,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0,4,1,1,4,12,1,4,12,12,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"14\", \"4\", \"5\"], \"clip_start\": 54.0, \"clip_end\": 59.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,2,6,12,4,13,5,4,13,5,4,2,13,11,7,6,3,6,3,14,4,5,4,2,13,11,7,6,3,14,4,5,4,6,3,6,3,14,4,5,4,6,3,14,4,5,4,6,3,6,3,6,3,6,3,14,4,5,4,6,3,6,3", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"3\", \"6\", \"3\"], \"clip_start\": 47.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,2,6,12,4,13,5,4,13,5,4,2,13,11,7,6,3,6,3,14,4,5,4,2,13,11,7,6,3,14,4,5,4,6,3,6,3,14,4,5,4,6,3,14,4,5,4,6,3,6,3,6,3,6,3,14,4,5,4,6,3,6,3", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"4\", \"2\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,2,6,12,4,13,5,4,13,5,4,2,13,11,7,6,3,6,3,14,4,5,4,2,13,11,7,6,3,14,4,5,4,6,3,6,3,14,4,5,4,6,3,14,4,5,4,6,3,6,3,6,3,6,3,14,4,5,4,6,3,6,3", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 16.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,2,6,12,4,13,5,4,13,5,4,2,13,11,7,6,3,6,3,14,4,5,4,2,13,11,7,6,3,14,4,5,4,6,3,6,3,14,4,5,4,6,3,14,4,5,4,6,3,6,3,6,3,6,3,14,4,5,4,6,3,6,3", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q4_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,2,6,12,4,13,5,4,13,5,4,2,13,11,7,6,3,6,3,14,4,5,4,2,13,11,7,6,3,14,4,5,4,6,3,6,3,14,4,5,4,6,3,14,4,5,4,6,3,6,3,6,3,6,3,14,4,5,4,6,3,6,3", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"11\", \"6\", \"1\"], \"clip_start\": 56.0, \"clip_end\": 61.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q5_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,2,6,12,4,13,5,4,13,5,4,2,13,11,7,6,3,6,3,14,4,5,4,2,13,11,7,6,3,14,4,5,4,6,3,6,3,14,4,5,4,6,3,14,4,5,4,6,3,6,3,6,3,6,3,14,4,5,4,6,3,6,3", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"6\", \"3\"], \"clip_start\": 58.0, \"clip_end\": 62.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q6_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,2,6,12,4,13,5,4,13,5,4,2,13,11,7,6,3,6,3,14,4,5,4,2,13,11,7,6,3,14,4,5,4,6,3,6,3,14,4,5,4,6,3,14,4,5,4,6,3,6,3,6,3,6,3,14,4,5,4,6,3,6,3", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"14\", \"4\", \"5\"], \"clip_start\": 54.0, \"clip_end\": 59.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q7_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,2,6,12,4,13,5,4,13,5,4,2,13,11,7,6,3,6,3,14,4,5,4,2,13,11,7,6,3,14,4,5,4,6,3,6,3,14,4,5,4,6,3,14,4,5,4,6,3,6,3,6,3,6,3,14,4,5,4,6,3,6,3", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"6\", \"3\", \"14\", \"4\"], \"clip_start\": 35.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,2,6,12,4,13,5,4,13,5,4,2,13,11,7,6,3,6,3,14,4,5,4,2,13,11,7,6,3,14,4,5,4,6,3,6,3,14,4,5,4,6,3,14,4,5,4,6,3,6,3,6,3,6,3,14,4,5,4,6,3,6,3", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"6\", \"3\", \"14\", \"4\", \"5\"], \"clip_start\": 35.0, \"clip_end\": 41.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,2,6,12,4,13,5,4,13,5,4,2,13,11,7,6,3,6,3,14,4,5,4,2,13,11,7,6,3,14,4,5,4,6,3,6,3,14,4,5,4,6,3,14,4,5,4,6,3,6,3,6,3,6,3,14,4,5,4,6,3,6,3", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"6\", \"3\", \"6\", \"3\"], \"clip_start\": 46.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q10_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,2,6,12,4,13,5,4,13,5,4,2,13,11,7,6,3,6,3,14,4,5,4,2,13,11,7,6,3,14,4,5,4,6,3,6,3,14,4,5,4,6,3,14,4,5,4,6,3,6,3,6,3,6,3,14,4,5,4,6,3,6,3", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"4\", \"13\", \"5\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q11_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,2,6,12,4,13,5,4,13,5,4,2,13,11,7,6,3,6,3,14,4,5,4,2,13,11,7,6,3,14,4,5,4,6,3,6,3,14,4,5,4,6,3,14,4,5,4,6,3,6,3,6,3,6,3,14,4,5,4,6,3,6,3", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"2\", \"13\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q12_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,2,6,12,4,13,5,4,13,5,4,2,13,11,7,6,3,6,3,14,4,5,4,2,13,11,7,6,3,14,4,5,4,6,3,6,3,14,4,5,4,6,3,14,4,5,4,6,3,6,3,6,3,6,3,14,4,5,4,6,3,6,3", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"14\", \"2\", \"4\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q13_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,2,6,12,4,13,5,4,13,5,4,2,13,11,7,6,3,6,3,14,4,5,4,2,13,11,7,6,3,14,4,5,4,6,3,6,3,14,4,5,4,6,3,14,4,5,4,6,3,6,3,6,3,6,3,14,4,5,4,6,3,6,3", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"6\", \"3\", \"14\"], \"clip_start\": 17.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q14_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,2,6,12,4,13,5,4,13,5,4,2,13,11,7,6,3,6,3,14,4,5,4,2,13,11,7,6,3,14,4,5,4,6,3,6,3,14,4,5,4,6,3,14,4,5,4,6,3,6,3,6,3,6,3,14,4,5,4,6,3,6,3", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"13\", \"11\", \"7\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q15_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,12,2,6,12,4,13,5,4,13,5,4,2,13,11,7,6,3,6,3,14,4,5,4,2,13,11,7,6,3,14,4,5,4,6,3,6,3,14,4,5,4,6,3,14,4,5,4,6,3,6,3,6,3,6,3,14,4,5,4,6,3,6,3", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"8\", \"13\", \"0\"], \"clip_start\": 53.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,9,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,5,2,5,10,7,9,1,10,7,13,10,14,7,14,10,7,13,3,4,13,11,6,4,6,4,8,8,13,0,6,7,13,10,14,7,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"13\", \"3\", \"4\"], \"clip_start\": 42.0, \"clip_end\": 47.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,9,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,5,2,5,10,7,9,1,10,7,13,10,14,7,14,10,7,13,3,4,13,11,6,4,6,4,8,8,13,0,6,7,13,10,14,7,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"13\", \"10\", \"14\"], \"clip_start\": 35.0, \"clip_end\": 40.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,9,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,5,2,5,10,7,9,1,10,7,13,10,14,7,14,10,7,13,3,4,13,11,6,4,6,4,8,8,13,0,6,7,13,10,14,7,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"0\", \"0\", \"6\", \"4\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,9,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,5,2,5,10,7,9,1,10,7,13,10,14,7,14,10,7,13,3,4,13,11,6,4,6,4,8,8,13,0,6,7,13,10,14,7,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"4\"], \"clip_start\": 50.0, \"clip_end\": 53.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,9,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,5,2,5,10,7,9,1,10,7,13,10,14,7,14,10,7,13,3,4,13,11,6,4,6,4,8,8,13,0,6,7,13,10,14,7,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\", \"1\"], \"clip_start\": 60.0, \"clip_end\": 64.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q5_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,9,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,5,2,5,10,7,9,1,10,7,13,10,14,7,14,10,7,13,3,4,13,11,6,4,6,4,8,8,13,0,6,7,13,10,14,7,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"5\", \"7\", \"3\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q6_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,9,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,5,2,5,10,7,9,1,10,7,13,10,14,7,14,10,7,13,3,4,13,11,6,4,6,4,8,8,13,0,6,7,13,10,14,7,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"7\", \"13\", \"10\"], \"clip_start\": 56.0, \"clip_end\": 61.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,9,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,5,2,5,10,7,9,1,10,7,13,10,14,7,14,10,7,13,3,4,13,11,6,4,6,4,8,8,13,0,6,7,13,10,14,7,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"0\", \"6\", \"5\", \"2\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q8_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,9,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,5,2,5,10,7,9,1,10,7,13,10,14,7,14,10,7,13,3,4,13,11,6,4,6,4,8,8,13,0,6,7,13,10,14,7,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"0\"], \"clip_start\": 54.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,9,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,5,2,5,10,7,9,1,10,7,13,10,14,7,14,10,7,13,3,4,13,11,6,4,6,4,8,8,13,0,6,7,13,10,14,7,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"0\", \"6\", \"4\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q10_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,9,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,5,2,5,10,7,9,1,10,7,13,10,14,7,14,10,7,13,3,4,13,11,6,4,6,4,8,8,13,0,6,7,13,10,14,7,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"5\", \"2\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q11_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,9,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,5,2,5,10,7,9,1,10,7,13,10,14,7,14,10,7,13,3,4,13,11,6,4,6,4,8,8,13,0,6,7,13,10,14,7,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"10\", \"5\", \"10\", \"7\"], \"clip_start\": 51.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q12_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,9,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,5,2,5,10,7,9,1,10,7,13,10,14,7,14,10,7,13,3,4,13,11,6,4,6,4,8,8,13,0,6,7,13,10,14,7,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"15\", \"0\", \"0\", \"10\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q13_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,9,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,5,2,5,10,7,9,1,10,7,13,10,14,7,14,10,7,13,3,4,13,11,6,4,6,4,8,8,13,0,6,7,13,10,14,7,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"0\", \"6\", \"4\"], \"clip_start\": 21.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,9,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,5,2,5,10,7,9,1,10,7,13,10,14,7,14,10,7,13,3,4,13,11,6,4,6,4,8,8,13,0,6,7,13,10,14,7,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"8\", \"5\", \"10\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q15_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,9,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,4,0,0,6,5,2,5,10,7,9,1,10,7,13,10,14,7,14,10,7,13,3,4,13,11,6,4,6,4,8,8,13,0,6,7,13,10,14,7,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"1\"], \"clip_start\": 53.0, \"clip_end\": 56.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,1,2,4,11,7,5,1,2,2,6,7,1,13,10,11,6,12,7,5,1,8,10,7,5,1,12,7,5,1,8,10,7,5,1,4,7,5,1,2,2,6,7,1,13,0,12,7,5,1,8,10,7,5,1,4,11,15,1,4,11,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,1,2,4,11,7,5,1,2,2,6,7,1,13,10,11,6,12,7,5,1,8,10,7,5,1,12,7,5,1,8,10,7,5,1,4,7,5,1,2,2,6,7,1,13,0,12,7,5,1,8,10,7,5,1,4,11,15,1,4,11,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"0\", \"12\"], \"clip_start\": 44.0, \"clip_end\": 48.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,1,2,4,11,7,5,1,2,2,6,7,1,13,10,11,6,12,7,5,1,8,10,7,5,1,12,7,5,1,8,10,7,5,1,4,7,5,1,2,2,6,7,1,13,0,12,7,5,1,8,10,7,5,1,4,11,15,1,4,11,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"1\", \"13\", \"0\"], \"clip_start\": 43.0, \"clip_end\": 47.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,1,2,4,11,7,5,1,2,2,6,7,1,13,10,11,6,12,7,5,1,8,10,7,5,1,12,7,5,1,8,10,7,5,1,4,7,5,1,2,2,6,7,1,13,0,12,7,5,1,8,10,7,5,1,4,11,15,1,4,11,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"1\", \"4\", \"7\", \"5\"], \"clip_start\": 33.0, \"clip_end\": 39.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,1,2,4,11,7,5,1,2,2,6,7,1,13,10,11,6,12,7,5,1,8,10,7,5,1,12,7,5,1,8,10,7,5,1,4,7,5,1,2,2,6,7,1,13,0,12,7,5,1,8,10,7,5,1,4,11,15,1,4,11,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"1\", \"13\"], \"clip_start\": 42.0, \"clip_end\": 46.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,1,2,4,11,7,5,1,2,2,6,7,1,13,10,11,6,12,7,5,1,8,10,7,5,1,12,7,5,1,8,10,7,5,1,4,7,5,1,2,2,6,7,1,13,0,12,7,5,1,8,10,7,5,1,4,11,15,1,4,11,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"0\", \"12\"], \"clip_start\": 44.0, \"clip_end\": 48.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,1,2,4,11,7,5,1,2,2,6,7,1,13,10,11,6,12,7,5,1,8,10,7,5,1,12,7,5,1,8,10,7,5,1,4,7,5,1,2,2,6,7,1,13,0,12,7,5,1,8,10,7,5,1,4,11,15,1,4,11,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"1\", \"13\", \"10\", \"11\", \"6\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,1,2,4,11,7,5,1,2,2,6,7,1,13,10,11,6,12,7,5,1,8,10,7,5,1,12,7,5,1,8,10,7,5,1,4,7,5,1,2,2,6,7,1,13,0,12,7,5,1,8,10,7,5,1,4,11,15,1,4,11,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"1\", \"2\"], \"clip_start\": 37.0, \"clip_end\": 41.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,1,2,4,11,7,5,1,2,2,6,7,1,13,10,11,6,12,7,5,1,8,10,7,5,1,12,7,5,1,8,10,7,5,1,4,7,5,1,2,2,6,7,1,13,0,12,7,5,1,8,10,7,5,1,4,11,15,1,4,11,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"3\"], \"clip_start\": 29.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,1,2,4,11,7,5,1,2,2,6,7,1,13,10,11,6,12,7,5,1,8,10,7,5,1,12,7,5,1,8,10,7,5,1,4,7,5,1,2,2,6,7,1,13,0,12,7,5,1,8,10,7,5,1,4,11,15,1,4,11,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\"], \"clip_start\": 26.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,1,2,4,11,7,5,1,2,2,6,7,1,13,10,11,6,12,7,5,1,8,10,7,5,1,12,7,5,1,8,10,7,5,1,4,7,5,1,2,2,6,7,1,13,0,12,7,5,1,8,10,7,5,1,4,11,15,1,4,11,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"11\"], \"clip_start\": 61.0, \"clip_end\": 64.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,1,2,4,11,7,5,1,2,2,6,7,1,13,10,11,6,12,7,5,1,8,10,7,5,1,12,7,5,1,8,10,7,5,1,4,7,5,1,2,2,6,7,1,13,0,12,7,5,1,8,10,7,5,1,4,11,15,1,4,11,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"10\", \"7\", \"5\"], \"clip_start\": 51.0, \"clip_end\": 55.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,1,2,4,11,7,5,1,2,2,6,7,1,13,10,11,6,12,7,5,1,8,10,7,5,1,12,7,5,1,8,10,7,5,1,4,7,5,1,2,2,6,7,1,13,0,12,7,5,1,8,10,7,5,1,4,11,15,1,4,11,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"1\", \"4\", \"11\", \"15\"], \"clip_start\": 53.0, \"clip_end\": 59.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q13_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,1,2,4,11,7,5,1,2,2,6,7,1,13,10,11,6,12,7,5,1,8,10,7,5,1,12,7,5,1,8,10,7,5,1,4,7,5,1,2,2,6,7,1,13,0,12,7,5,1,8,10,7,5,1,4,11,15,1,4,11,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"1\", \"4\"], \"clip_start\": 57.0, \"clip_end\": 61.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q14_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,1,2,4,11,7,5,1,2,2,6,7,1,13,10,11,6,12,7,5,1,8,10,7,5,1,12,7,5,1,8,10,7,5,1,4,7,5,1,2,2,6,7,1,13,0,12,7,5,1,8,10,7,5,1,4,11,15,1,4,11,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"0\", \"12\", \"7\"], \"clip_start\": 44.0, \"clip_end\": 49.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q15_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,5,1,2,4,11,7,5,1,2,2,6,7,1,13,10,11,6,12,7,5,1,8,10,7,5,1,12,7,5,1,8,10,7,5,1,4,7,5,1,2,2,6,7,1,13,0,12,7,5,1,8,10,7,5,1,4,11,15,1,4,11,5,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"4\", \"14\", \"14\", \"14\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,14,10,2,6,11,11,7,0,1,15,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,7", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"4\", \"14\", \"14\", \"14\", \"3\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,14,10,2,6,11,11,7,0,1,15,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,7", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"5\", \"2\", \"4\", \"14\"], \"clip_start\": 38.0, \"clip_end\": 43.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,14,10,2,6,11,11,7,0,1,15,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,7", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"5\", \"2\", \"4\", \"14\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,14,10,2,6,11,11,7,0,1,15,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,7", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"4\", \"14\", \"14\", \"14\", \"3\"], \"clip_start\": 47.0, \"clip_end\": 53.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,14,10,2,6,11,11,7,0,1,15,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,7", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 48.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,14,10,2,6,11,11,7,0,1,15,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,7", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"14\", \"3\", \"5\", \"2\"], \"clip_start\": 49.0, \"clip_end\": 55.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,14,10,2,6,11,11,7,0,1,15,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,7", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,14,10,2,6,11,11,7,0,1,15,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,7", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"11\", \"7\", \"0\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,14,10,2,6,11,11,7,0,1,15,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,7", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"5\", \"2\", \"4\"], \"clip_start\": 37.0, \"clip_end\": 42.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,14,10,2,6,11,11,7,0,1,15,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,7", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,14,10,2,6,11,11,7,0,1,15,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,7", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"15\", \"4\", \"14\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,14,10,2,6,11,11,7,0,1,15,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,7", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"5\", \"2\", \"4\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,14,10,2,6,11,11,7,0,1,15,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,7", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"14\", \"3\", \"5\"], \"clip_start\": 42.0, \"clip_end\": 47.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,14,10,2,6,11,11,7,0,1,15,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,7", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 32.0, \"clip_end\": 38.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,14,10,2,6,11,11,7,0,1,15,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,7", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"14\"], \"clip_start\": 35.0, \"clip_end\": 38.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q15_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,14,10,2,6,11,11,7,0,1,15,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,14,14,14,3,5,2,4,7", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"6\", \"3\", \"7\"], \"clip_start\": 48.0, \"clip_end\": 52.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,11,9,7,5,6,6,12,10,0,11,5,8,6,4,4,4,4,6,12,5,6,15,7,5,6,3,7,5,6,6,12,10,15,7,6,12,10,0,11,5,8,6,7,5,6,3,7,5,6,3,7,5,6,6,12,10,0,11,5,8,6,12,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 57.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,11,9,7,5,6,6,12,10,0,11,5,8,6,4,4,4,4,6,12,5,6,15,7,5,6,3,7,5,6,6,12,10,15,7,6,12,10,0,11,5,8,6,7,5,6,3,7,5,6,3,7,5,6,6,12,10,0,11,5,8,6,12,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,11,9,7,5,6,6,12,10,0,11,5,8,6,4,4,4,4,6,12,5,6,15,7,5,6,3,7,5,6,6,12,10,15,7,6,12,10,0,11,5,8,6,7,5,6,3,7,5,6,3,7,5,6,6,12,10,0,11,5,8,6,12,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"10\", \"0\", \"11\", \"5\"], \"clip_start\": 36.0, \"clip_end\": 41.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,11,9,7,5,6,6,12,10,0,11,5,8,6,4,4,4,4,6,12,5,6,15,7,5,6,3,7,5,6,6,12,10,15,7,6,12,10,0,11,5,8,6,7,5,6,3,7,5,6,3,7,5,6,6,12,10,0,11,5,8,6,12,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 46.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,11,9,7,5,6,6,12,10,0,11,5,8,6,4,4,4,4,6,12,5,6,15,7,5,6,3,7,5,6,6,12,10,15,7,6,12,10,0,11,5,8,6,7,5,6,3,7,5,6,3,7,5,6,6,12,10,0,11,5,8,6,12,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 56.0, \"clip_end\": 61.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,11,9,7,5,6,6,12,10,0,11,5,8,6,4,4,4,4,6,12,5,6,15,7,5,6,3,7,5,6,6,12,10,15,7,6,12,10,0,11,5,8,6,7,5,6,3,7,5,6,3,7,5,6,6,12,10,0,11,5,8,6,12,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"5\"], \"clip_start\": 42.0, \"clip_end\": 45.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,11,9,7,5,6,6,12,10,0,11,5,8,6,4,4,4,4,6,12,5,6,15,7,5,6,3,7,5,6,6,12,10,15,7,6,12,10,0,11,5,8,6,7,5,6,3,7,5,6,3,7,5,6,6,12,10,0,11,5,8,6,12,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"8\", \"6\", \"7\", \"5\"], \"clip_start\": 40.0, \"clip_end\": 45.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,11,9,7,5,6,6,12,10,0,11,5,8,6,4,4,4,4,6,12,5,6,15,7,5,6,3,7,5,6,6,12,10,15,7,6,12,10,0,11,5,8,6,7,5,6,3,7,5,6,3,7,5,6,6,12,10,0,11,5,8,6,12,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"10\"], \"clip_start\": 54.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,11,9,7,5,6,6,12,10,0,11,5,8,6,4,4,4,4,6,12,5,6,15,7,5,6,3,7,5,6,6,12,10,15,7,6,12,10,0,11,5,8,6,7,5,6,3,7,5,6,3,7,5,6,6,12,10,0,11,5,8,6,12,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"6\", \"6\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q9_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,11,9,7,5,6,6,12,10,0,11,5,8,6,4,4,4,4,6,12,5,6,15,7,5,6,3,7,5,6,6,12,10,15,7,6,12,10,0,11,5,8,6,7,5,6,3,7,5,6,3,7,5,6,6,12,10,0,11,5,8,6,12,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"11\", \"9\", \"7\", \"5\", \"6\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q10_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,11,9,7,5,6,6,12,10,0,11,5,8,6,4,4,4,4,6,12,5,6,15,7,5,6,3,7,5,6,6,12,10,15,7,6,12,10,0,11,5,8,6,7,5,6,3,7,5,6,3,7,5,6,6,12,10,0,11,5,8,6,12,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"6\", \"12\"], \"clip_start\": 16.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q11_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,11,9,7,5,6,6,12,10,0,11,5,8,6,4,4,4,4,6,12,5,6,15,7,5,6,3,7,5,6,6,12,10,15,7,6,12,10,0,11,5,8,6,7,5,6,3,7,5,6,3,7,5,6,6,12,10,0,11,5,8,6,12,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"6\", \"3\", \"7\", \"5\", \"6\"], \"clip_start\": 44.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q12_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,11,9,7,5,6,6,12,10,0,11,5,8,6,4,4,4,4,6,12,5,6,15,7,5,6,3,7,5,6,6,12,10,15,7,6,12,10,0,11,5,8,6,7,5,6,3,7,5,6,3,7,5,6,6,12,10,0,11,5,8,6,12,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"6\", \"12\"], \"clip_start\": 33.0, \"clip_end\": 37.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q13_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,11,9,7,5,6,6,12,10,0,11,5,8,6,4,4,4,4,6,12,5,6,15,7,5,6,3,7,5,6,6,12,10,15,7,6,12,10,0,11,5,8,6,7,5,6,3,7,5,6,3,7,5,6,6,12,10,0,11,5,8,6,12,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"11\", \"2\", \"3\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q14_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,11,9,7,5,6,6,12,10,0,11,5,8,6,4,4,4,4,6,12,5,6,15,7,5,6,3,7,5,6,6,12,10,15,7,6,12,10,0,11,5,8,6,7,5,6,3,7,5,6,3,7,5,6,6,12,10,0,11,5,8,6,12,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"13\", \"9\", \"14\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q15_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,11,9,7,5,6,6,12,10,0,11,5,8,6,4,4,4,4,6,12,5,6,15,7,5,6,3,7,5,6,6,12,10,15,7,6,12,10,0,11,5,8,6,7,5,6,3,7,5,6,3,7,5,6,6,12,10,0,11,5,8,6,12,10", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"7\", \"11\", \"8\", \"0\"], \"clip_start\": 27.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,11,8,7,1,0,7,6,3,2,9,13,14,2,15,9,13,14,0,7,6,3,5,0,7,11,8,0,7,11,8,0,12,3,7,1,2,9,13,14,0,2,9,13,13,15,9,13,15,0,7,11,8,0,7,11,8,0,7,6,3,5,0,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"7\", \"6\", \"3\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,11,8,7,1,0,7,6,3,2,9,13,14,2,15,9,13,14,0,7,6,3,5,0,7,11,8,0,7,11,8,0,12,3,7,1,2,9,13,14,0,2,9,13,13,15,9,13,15,0,7,11,8,0,7,11,8,0,7,6,3,5,0,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"15\", \"9\", \"13\", \"15\", \"0\"], \"clip_start\": 44.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,11,8,7,1,0,7,6,3,2,9,13,14,2,15,9,13,14,0,7,6,3,5,0,7,11,8,0,7,11,8,0,12,3,7,1,2,9,13,14,0,2,9,13,13,15,9,13,15,0,7,11,8,0,7,11,8,0,7,6,3,5,0,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"2\", \"15\", \"9\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,11,8,7,1,0,7,6,3,2,9,13,14,2,15,9,13,14,0,7,6,3,5,0,7,11,8,0,7,11,8,0,12,3,7,1,2,9,13,14,0,2,9,13,13,15,9,13,15,0,7,11,8,0,7,11,8,0,7,6,3,5,0,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"15\", \"9\", \"13\", \"15\"], \"clip_start\": 44.0, \"clip_end\": 49.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,11,8,7,1,0,7,6,3,2,9,13,14,2,15,9,13,14,0,7,6,3,5,0,7,11,8,0,7,11,8,0,12,3,7,1,2,9,13,14,0,2,9,13,13,15,9,13,15,0,7,11,8,0,7,11,8,0,7,6,3,5,0,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"7\", \"6\", \"3\", \"2\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,11,8,7,1,0,7,6,3,2,9,13,14,2,15,9,13,14,0,7,6,3,5,0,7,11,8,0,7,11,8,0,12,3,7,1,2,9,13,14,0,2,9,13,13,15,9,13,15,0,7,11,8,0,7,11,8,0,7,6,3,5,0,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"11\", \"8\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,11,8,7,1,0,7,6,3,2,9,13,14,2,15,9,13,14,0,7,6,3,5,0,7,11,8,0,7,11,8,0,12,3,7,1,2,9,13,14,0,2,9,13,13,15,9,13,15,0,7,11,8,0,7,11,8,0,7,6,3,5,0,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"0\", \"7\", \"11\", \"8\"], \"clip_start\": 52.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,11,8,7,1,0,7,6,3,2,9,13,14,2,15,9,13,14,0,7,6,3,5,0,7,11,8,0,7,11,8,0,12,3,7,1,2,9,13,14,0,2,9,13,13,15,9,13,15,0,7,11,8,0,7,11,8,0,7,6,3,5,0,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"7\", \"11\"], \"clip_start\": 49.0, \"clip_end\": 52.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,11,8,7,1,0,7,6,3,2,9,13,14,2,15,9,13,14,0,7,6,3,5,0,7,11,8,0,7,11,8,0,12,3,7,1,2,9,13,14,0,2,9,13,13,15,9,13,15,0,7,11,8,0,7,11,8,0,7,6,3,5,0,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"1\", \"2\", \"9\", \"13\"], \"clip_start\": 33.0, \"clip_end\": 39.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,11,8,7,1,0,7,6,3,2,9,13,14,2,15,9,13,14,0,7,6,3,5,0,7,11,8,0,7,11,8,0,12,3,7,1,2,9,13,14,0,2,9,13,13,15,9,13,15,0,7,11,8,0,7,11,8,0,7,6,3,5,0,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"0\", \"7\"], \"clip_start\": 26.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,11,8,7,1,0,7,6,3,2,9,13,14,2,15,9,13,14,0,7,6,3,5,0,7,11,8,0,7,11,8,0,12,3,7,1,2,9,13,14,0,2,9,13,13,15,9,13,15,0,7,11,8,0,7,11,8,0,7,6,3,5,0,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"11\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,11,8,7,1,0,7,6,3,2,9,13,14,2,15,9,13,14,0,7,6,3,5,0,7,11,8,0,7,11,8,0,12,3,7,1,2,9,13,14,0,2,9,13,13,15,9,13,15,0,7,11,8,0,7,11,8,0,7,6,3,5,0,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"5\", \"0\", \"7\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,11,8,7,1,0,7,6,3,2,9,13,14,2,15,9,13,14,0,7,6,3,5,0,7,11,8,0,7,11,8,0,12,3,7,1,2,9,13,14,0,2,9,13,13,15,9,13,15,0,7,11,8,0,7,11,8,0,7,6,3,5,0,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"0\", \"7\", \"11\", \"8\", \"0\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,11,8,7,1,0,7,6,3,2,9,13,14,2,15,9,13,14,0,7,6,3,5,0,7,11,8,0,7,11,8,0,12,3,7,1,2,9,13,14,0,2,9,13,13,15,9,13,15,0,7,11,8,0,7,11,8,0,7,6,3,5,0,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"3\", \"5\", \"0\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,11,8,7,1,0,7,6,3,2,9,13,14,2,15,9,13,14,0,7,6,3,5,0,7,11,8,0,7,11,8,0,12,3,7,1,2,9,13,14,0,2,9,13,13,15,9,13,15,0,7,11,8,0,7,11,8,0,7,6,3,5,0,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"7\", \"6\", \"3\", \"2\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,11,8,7,1,0,7,6,3,2,9,13,14,2,15,9,13,14,0,7,6,3,5,0,7,11,8,0,7,11,8,0,12,3,7,1,2,9,13,14,0,2,9,13,13,15,9,13,15,0,7,11,8,0,7,11,8,0,7,6,3,5,0,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"10\", \"11\", \"10\", \"0\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,6,7,0,7,5,10,15,15,7,5,10,11,10,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,1,4,3,3,8,14,6,7,5,10,11,13,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,6,7", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"3\", \"8\", \"14\"], \"clip_start\": 31.0, \"clip_end\": 36.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,6,7,0,7,5,10,15,15,7,5,10,11,10,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,1,4,3,3,8,14,6,7,5,10,11,13,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,6,7", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"0\", \"11\", \"14\"], \"clip_start\": 54.0, \"clip_end\": 59.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,6,7,0,7,5,10,15,15,7,5,10,11,10,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,1,4,3,3,8,14,6,7,5,10,11,13,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,6,7", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"10\", \"11\", \"10\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,6,7,0,7,5,10,15,15,7,5,10,11,10,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,1,4,3,3,8,14,6,7,5,10,11,13,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,6,7", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"11\", \"14\", \"6\", \"7\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,6,7,0,7,5,10,15,15,7,5,10,11,10,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,1,4,3,3,8,14,6,7,5,10,11,13,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,6,7", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"10\", \"0\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,6,7,0,7,5,10,15,15,7,5,10,11,10,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,1,4,3,3,8,14,6,7,5,10,11,13,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,6,7", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 52.0, \"clip_end\": 55.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,6,7,0,7,5,10,15,15,7,5,10,11,10,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,1,4,3,3,8,14,6,7,5,10,11,13,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,6,7", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"6\", \"7\"], \"clip_start\": 16.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,6,7,0,7,5,10,15,15,7,5,10,11,10,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,1,4,3,3,8,14,6,7,5,10,11,13,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,6,7", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"11\", \"14\", \"6\", \"7\"], \"clip_start\": 15.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,6,7,0,7,5,10,15,15,7,5,10,11,10,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,1,4,3,3,8,14,6,7,5,10,11,13,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,6,7", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"6\", \"7\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,6,7,0,7,5,10,15,15,7,5,10,11,10,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,1,4,3,3,8,14,6,7,5,10,11,13,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,6,7", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"6\", \"7\", \"1\", \"4\"], \"clip_start\": 27.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,6,7,0,7,5,10,15,15,7,5,10,11,10,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,1,4,3,3,8,14,6,7,5,10,11,13,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,6,7", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"11\", \"14\"], \"clip_start\": 40.0, \"clip_end\": 44.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,6,7,0,7,5,10,15,15,7,5,10,11,10,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,1,4,3,3,8,14,6,7,5,10,11,13,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,6,7", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\"], \"clip_start\": 19.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,6,7,0,7,5,10,15,15,7,5,10,11,10,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,1,4,3,3,8,14,6,7,5,10,11,13,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,6,7", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"6\", \"7\", \"0\", \"11\", \"14\"], \"clip_start\": 17.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q13_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,6,7,0,7,5,10,15,15,7,5,10,11,10,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,1,4,3,3,8,14,6,7,5,10,11,13,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,6,7", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"6\", \"7\", \"0\", \"6\", \"7\"], \"clip_start\": 58.0, \"clip_end\": 64.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,6,7,0,7,5,10,15,15,7,5,10,11,10,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,1,4,3,3,8,14,6,7,5,10,11,13,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,6,7", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"7\", \"5\", \"10\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,6,7,0,7,5,10,15,15,7,5,10,11,10,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,1,4,3,3,8,14,6,7,5,10,11,13,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,11,14,6,7,0,6,7", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 39.0, \"clip_end\": 43.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,10,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"15\", \"15\"], \"clip_start\": 36.0, \"clip_end\": 40.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,10,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,10,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"4\", \"15\"], \"clip_start\": 35.0, \"clip_end\": 39.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,10,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"4\", \"15\"], \"clip_start\": 46.0, \"clip_end\": 50.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,10,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"14\", \"3\", \"11\"], \"clip_start\": 31.0, \"clip_end\": 36.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,10,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"15\", \"14\", \"3\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,10,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"6\", \"4\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,10,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"3\", \"11\", \"6\", \"4\"], \"clip_start\": 51.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,10,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"15\", \"15\", \"15\"], \"clip_start\": 47.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,10,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"6\", \"4\"], \"clip_start\": 53.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,10,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,10,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"4\", \"15\"], \"clip_start\": 54.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,10,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"12\"], \"clip_start\": 58.0, \"clip_end\": 61.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,10,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"15\", \"14\", \"3\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q14_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,10,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_ELOW", "source_split": "substream_video", "length_L": 64, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"6\", \"4\", \"15\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q15_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,10,15,14,3,11,6,4,15,15,15,14,3,11,6,4,15,15,15,14,3,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 58.0, \"clip_end\": 64.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,12,6,10,8,14,3,9,12,12,8,10,1,7,9,7,0,1,8,10,2,15,8,14,13,4,6,1,15,8,14,13,1,9,11,8,7,12,11,7,0,1,7,8,10,6,1,6,0,5,8,5,13,3,10,3,10,10,0,5,11,14,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"13\", \"3\", \"10\"], \"clip_start\": 52.0, \"clip_end\": 56.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,12,6,10,8,14,3,9,12,12,8,10,1,7,9,7,0,1,8,10,2,15,8,14,13,4,6,1,15,8,14,13,1,9,11,8,7,12,11,7,0,1,7,8,10,6,1,6,0,5,8,5,13,3,10,3,10,10,0,5,11,14,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"10\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,12,6,10,8,14,3,9,12,12,8,10,1,7,9,7,0,1,8,10,2,15,8,14,13,4,6,1,15,8,14,13,1,9,11,8,7,12,11,7,0,1,7,8,10,6,1,6,0,5,8,5,13,3,10,3,10,10,0,5,11,14,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"0\", \"1\", \"7\", \"8\"], \"clip_start\": 39.0, \"clip_end\": 45.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q3_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,12,6,10,8,14,3,9,12,12,8,10,1,7,9,7,0,1,8,10,2,15,8,14,13,4,6,1,15,8,14,13,1,9,11,8,7,12,11,7,0,1,7,8,10,6,1,6,0,5,8,5,13,3,10,3,10,10,0,5,11,14,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"8\", \"10\", \"2\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q4_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,12,6,10,8,14,3,9,12,12,8,10,1,7,9,7,0,1,8,10,2,15,8,14,13,4,6,1,15,8,14,13,1,9,11,8,7,12,11,7,0,1,7,8,10,6,1,6,0,5,8,5,13,3,10,3,10,10,0,5,11,14,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"7\", \"0\", \"1\", \"8\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,12,6,10,8,14,3,9,12,12,8,10,1,7,9,7,0,1,8,10,2,15,8,14,13,4,6,1,15,8,14,13,1,9,11,8,7,12,11,7,0,1,7,8,10,6,1,6,0,5,8,5,13,3,10,3,10,10,0,5,11,14,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"10\", \"3\", \"10\", \"10\"], \"clip_start\": 53.0, \"clip_end\": 59.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,12,6,10,8,14,3,9,12,12,8,10,1,7,9,7,0,1,8,10,2,15,8,14,13,4,6,1,15,8,14,13,1,9,11,8,7,12,11,7,0,1,7,8,10,6,1,6,0,5,8,5,13,3,10,3,10,10,0,5,11,14,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"5\"], \"clip_start\": 51.0, \"clip_end\": 55.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q7_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,12,6,10,8,14,3,9,12,12,8,10,1,7,9,7,0,1,8,10,2,15,8,14,13,4,6,1,15,8,14,13,1,9,11,8,7,12,11,7,0,1,7,8,10,6,1,6,0,5,8,5,13,3,10,3,10,10,0,5,11,14,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"15\", \"8\"], \"clip_start\": 28.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,12,6,10,8,14,3,9,12,12,8,10,1,7,9,7,0,1,8,10,2,15,8,14,13,4,6,1,15,8,14,13,1,9,11,8,7,12,11,7,0,1,7,8,10,6,1,6,0,5,8,5,13,3,10,3,10,10,0,5,11,14,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"7\"], \"clip_start\": 45.0, \"clip_end\": 48.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,12,6,10,8,14,3,9,12,12,8,10,1,7,9,7,0,1,8,10,2,15,8,14,13,4,6,1,15,8,14,13,1,9,11,8,7,12,11,7,0,1,7,8,10,6,1,6,0,5,8,5,13,3,10,3,10,10,0,5,11,14,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"12\", \"12\", \"8\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q10_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,12,6,10,8,14,3,9,12,12,8,10,1,7,9,7,0,1,8,10,2,15,8,14,13,4,6,1,15,8,14,13,1,9,11,8,7,12,11,7,0,1,7,8,10,6,1,6,0,5,8,5,13,3,10,3,10,10,0,5,11,14,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"8\", \"14\", \"3\", \"9\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q11_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,12,6,10,8,14,3,9,12,12,8,10,1,7,9,7,0,1,8,10,2,15,8,14,13,4,6,1,15,8,14,13,1,9,11,8,7,12,11,7,0,1,7,8,10,6,1,6,0,5,8,5,13,3,10,3,10,10,0,5,11,14,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"8\", \"10\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q12_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,12,6,10,8,14,3,9,12,12,8,10,1,7,9,7,0,1,8,10,2,15,8,14,13,4,6,1,15,8,14,13,1,9,11,8,7,12,11,7,0,1,7,8,10,6,1,6,0,5,8,5,13,3,10,3,10,10,0,5,11,14,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"12\", \"12\", \"8\", \"10\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q13_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,12,6,10,8,14,3,9,12,12,8,10,1,7,9,7,0,1,8,10,2,15,8,14,13,4,6,1,15,8,14,13,1,9,11,8,7,12,11,7,0,1,7,8,10,6,1,6,0,5,8,5,13,3,10,3,10,10,0,5,11,14,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"15\", \"3\"], \"clip_start\": 57.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q14_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,12,6,10,8,14,3,9,12,12,8,10,1,7,9,7,0,1,8,10,2,15,8,14,13,4,6,1,15,8,14,13,1,9,11,8,7,12,11,7,0,1,7,8,10,6,1,6,0,5,8,5,13,3,10,3,10,10,0,5,11,14,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"3\", \"10\", \"10\", \"0\"], \"clip_start\": 54.0, \"clip_end\": 60.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q15_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,12,6,10,8,14,3,9,12,12,8,10,1,7,9,7,0,1,8,10,2,15,8,14,13,4,6,1,15,8,14,13,1,9,11,8,7,12,11,7,0,1,7,8,10,6,1,6,0,5,8,5,13,3,10,3,10,10,0,5,11,14,12", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"0\", \"6\", \"15\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,10,1,9,6,4,1,2,15,0,1,2,1,10,7,8,15,0,0,4,6,6,4,11,15,15,0,6,15,12,14,5,3,2,8,6,14,11,8,6,1,9,12,6,12,15,8,3,15,5,6,9,11,4,1,8,3,7,5,9,13,11,15", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"0\", \"4\", \"6\", \"6\", \"4\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,10,1,9,6,4,1,2,15,0,1,2,1,10,7,8,15,0,0,4,6,6,4,11,15,15,0,6,15,12,14,5,3,2,8,6,14,11,8,6,1,9,12,6,12,15,8,3,15,5,6,9,11,4,1,8,3,7,5,9,13,11,15", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 57.0, \"clip_end\": 63.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,10,1,9,6,4,1,2,15,0,1,2,1,10,7,8,15,0,0,4,6,6,4,11,15,15,0,6,15,12,14,5,3,2,8,6,14,11,8,6,1,9,12,6,12,15,8,3,15,5,6,9,11,4,1,8,3,7,5,9,13,11,15", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"15\", \"8\", \"3\", \"15\", \"5\"], \"clip_start\": 45.0, \"clip_end\": 51.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,10,1,9,6,4,1,2,15,0,1,2,1,10,7,8,15,0,0,4,6,6,4,11,15,15,0,6,15,12,14,5,3,2,8,6,14,11,8,6,1,9,12,6,12,15,8,3,15,5,6,9,11,4,1,8,3,7,5,9,13,11,15", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"9\", \"6\", \"4\", \"1\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,10,1,9,6,4,1,2,15,0,1,2,1,10,7,8,15,0,0,4,6,6,4,11,15,15,0,6,15,12,14,5,3,2,8,6,14,11,8,6,1,9,12,6,12,15,8,3,15,5,6,9,11,4,1,8,3,7,5,9,13,11,15", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"8\", \"6\", \"1\"], \"clip_start\": 38.0, \"clip_end\": 42.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,10,1,9,6,4,1,2,15,0,1,2,1,10,7,8,15,0,0,4,6,6,4,11,15,15,0,6,15,12,14,5,3,2,8,6,14,11,8,6,1,9,12,6,12,15,8,3,15,5,6,9,11,4,1,8,3,7,5,9,13,11,15", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"5\", \"9\"], \"clip_start\": 57.0, \"clip_end\": 61.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,10,1,9,6,4,1,2,15,0,1,2,1,10,7,8,15,0,0,4,6,6,4,11,15,15,0,6,15,12,14,5,3,2,8,6,14,11,8,6,1,9,12,6,12,15,8,3,15,5,6,9,11,4,1,8,3,7,5,9,13,11,15", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,10,1,9,6,4,1,2,15,0,1,2,1,10,7,8,15,0,0,4,6,6,4,11,15,15,0,6,15,12,14,5,3,2,8,6,14,11,8,6,1,9,12,6,12,15,8,3,15,5,6,9,11,4,1,8,3,7,5,9,13,11,15", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 46.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,10,1,9,6,4,1,2,15,0,1,2,1,10,7,8,15,0,0,4,6,6,4,11,15,15,0,6,15,12,14,5,3,2,8,6,14,11,8,6,1,9,12,6,12,15,8,3,15,5,6,9,11,4,1,8,3,7,5,9,13,11,15", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"4\", \"11\", \"15\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,10,1,9,6,4,1,2,15,0,1,2,1,10,7,8,15,0,0,4,6,6,4,11,15,15,0,6,15,12,14,5,3,2,8,6,14,11,8,6,1,9,12,6,12,15,8,3,15,5,6,9,11,4,1,8,3,7,5,9,13,11,15", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"8\", \"15\", \"0\", \"0\", \"4\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,10,1,9,6,4,1,2,15,0,1,2,1,10,7,8,15,0,0,4,6,6,4,11,15,15,0,6,15,12,14,5,3,2,8,6,14,11,8,6,1,9,12,6,12,15,8,3,15,5,6,9,11,4,1,8,3,7,5,9,13,11,15", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 3.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q11_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,10,1,9,6,4,1,2,15,0,1,2,1,10,7,8,15,0,0,4,6,6,4,11,15,15,0,6,15,12,14,5,3,2,8,6,14,11,8,6,1,9,12,6,12,15,8,3,15,5,6,9,11,4,1,8,3,7,5,9,13,11,15", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"15\", \"5\", \"6\"], \"clip_start\": 47.0, \"clip_end\": 52.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,10,1,9,6,4,1,2,15,0,1,2,1,10,7,8,15,0,0,4,6,6,4,11,15,15,0,6,15,12,14,5,3,2,8,6,14,11,8,6,1,9,12,6,12,15,8,3,15,5,6,9,11,4,1,8,3,7,5,9,13,11,15", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"4\", \"1\"], \"clip_start\": 52.0, \"clip_end\": 56.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q13_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,10,1,9,6,4,1,2,15,0,1,2,1,10,7,8,15,0,0,4,6,6,4,11,15,15,0,6,15,12,14,5,3,2,8,6,14,11,8,6,1,9,12,6,12,15,8,3,15,5,6,9,11,4,1,8,3,7,5,9,13,11,15", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"12\"], \"clip_start\": 14.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,10,1,9,6,4,1,2,15,0,1,2,1,10,7,8,15,0,0,4,6,6,4,11,15,15,0,6,15,12,14,5,3,2,8,6,14,11,8,6,1,9,12,6,12,15,8,3,15,5,6,9,11,4,1,8,3,7,5,9,13,11,15", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"3\", \"2\", \"8\"], \"clip_start\": 30.0, \"clip_end\": 36.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q15_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,10,1,9,6,4,1,2,15,0,1,2,1,10,7,8,15,0,0,4,6,6,4,11,15,15,0,6,15,12,14,5,3,2,8,6,14,11,8,6,1,9,12,6,12,15,8,3,15,5,6,9,11,4,1,8,3,7,5,9,13,11,15", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"9\", \"0\", \"5\", \"15\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,8,15,3,9,2,14,6,1,14,11,7,2,1,9,0,5,15,14,12,15,6,14,15,9,15,0,0,1,2,0,4,0,5,2,2,6,5,11,6,0,15,5,3,8,7,2,11,14,13,11,12,7,6,11,14,12,8,1,7,13,11,14,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"5\", \"11\", \"6\"], \"clip_start\": 35.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,8,15,3,9,2,14,6,1,14,11,7,2,1,9,0,5,15,14,12,15,6,14,15,9,15,0,0,1,2,0,4,0,5,2,2,6,5,11,6,0,15,5,3,8,7,2,11,14,13,11,12,7,6,11,14,12,8,1,7,13,11,14,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"8\", \"15\", \"3\", \"9\", \"2\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,8,15,3,9,2,14,6,1,14,11,7,2,1,9,0,5,15,14,12,15,6,14,15,9,15,0,0,1,2,0,4,0,5,2,2,6,5,11,6,0,15,5,3,8,7,2,11,14,13,11,12,7,6,11,14,12,8,1,7,13,11,14,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"8\", \"1\", \"7\"], \"clip_start\": 55.0, \"clip_end\": 60.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,8,15,3,9,2,14,6,1,14,11,7,2,1,9,0,5,15,14,12,15,6,14,15,9,15,0,0,1,2,0,4,0,5,2,2,6,5,11,6,0,15,5,3,8,7,2,11,14,13,11,12,7,6,11,14,12,8,1,7,13,11,14,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"3\", \"8\"], \"clip_start\": 41.0, \"clip_end\": 45.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,8,15,3,9,2,14,6,1,14,11,7,2,1,9,0,5,15,14,12,15,6,14,15,9,15,0,0,1,2,0,4,0,5,2,2,6,5,11,6,0,15,5,3,8,7,2,11,14,13,11,12,7,6,11,14,12,8,1,7,13,11,14,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"15\", \"3\", \"9\", \"2\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q5_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,8,15,3,9,2,14,6,1,14,11,7,2,1,9,0,5,15,14,12,15,6,14,15,9,15,0,0,1,2,0,4,0,5,2,2,6,5,11,6,0,15,5,3,8,7,2,11,14,13,11,12,7,6,11,14,12,8,1,7,13,11,14,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"2\", \"0\", \"4\"], \"clip_start\": 27.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,8,15,3,9,2,14,6,1,14,11,7,2,1,9,0,5,15,14,12,15,6,14,15,9,15,0,0,1,2,0,4,0,5,2,2,6,5,11,6,0,15,5,3,8,7,2,11,14,13,11,12,7,6,11,14,12,8,1,7,13,11,14,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"3\", \"9\", \"2\", \"14\", \"6\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,8,15,3,9,2,14,6,1,14,11,7,2,1,9,0,5,15,14,12,15,6,14,15,9,15,0,0,1,2,0,4,0,5,2,2,6,5,11,6,0,15,5,3,8,7,2,11,14,13,11,12,7,6,11,14,12,8,1,7,13,11,14,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"0\", \"1\", \"2\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q8_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,8,15,3,9,2,14,6,1,14,11,7,2,1,9,0,5,15,14,12,15,6,14,15,9,15,0,0,1,2,0,4,0,5,2,2,6,5,11,6,0,15,5,3,8,7,2,11,14,13,11,12,7,6,11,14,12,8,1,7,13,11,14,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"1\", \"9\", \"0\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q9_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,8,15,3,9,2,14,6,1,14,11,7,2,1,9,0,5,15,14,12,15,6,14,15,9,15,0,0,1,2,0,4,0,5,2,2,6,5,11,6,0,15,5,3,8,7,2,11,14,13,11,12,7,6,11,14,12,8,1,7,13,11,14,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"3\", \"8\", \"7\", \"2\", \"11\"], \"clip_start\": 42.0, \"clip_end\": 48.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q10_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,8,15,3,9,2,14,6,1,14,11,7,2,1,9,0,5,15,14,12,15,6,14,15,9,15,0,0,1,2,0,4,0,5,2,2,6,5,11,6,0,15,5,3,8,7,2,11,14,13,11,12,7,6,11,14,12,8,1,7,13,11,14,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"4\", \"0\", \"5\", \"2\", \"2\"], \"clip_start\": 30.0, \"clip_end\": 36.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q11_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,8,15,3,9,2,14,6,1,14,11,7,2,1,9,0,5,15,14,12,15,6,14,15,9,15,0,0,1,2,0,4,0,5,2,2,6,5,11,6,0,15,5,3,8,7,2,11,14,13,11,12,7,6,11,14,12,8,1,7,13,11,14,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"15\", \"0\", \"0\", \"1\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q12_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,8,15,3,9,2,14,6,1,14,11,7,2,1,9,0,5,15,14,12,15,6,14,15,9,15,0,0,1,2,0,4,0,5,2,2,6,5,11,6,0,15,5,3,8,7,2,11,14,13,11,12,7,6,11,14,12,8,1,7,13,11,14,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"9\", \"1\", \"6\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q13_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,8,15,3,9,2,14,6,1,14,11,7,2,1,9,0,5,15,14,12,15,6,14,15,9,15,0,0,1,2,0,4,0,5,2,2,6,5,11,6,0,15,5,3,8,7,2,11,14,13,11,12,7,6,11,14,12,8,1,7,13,11,14,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\", \"9\", \"15\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q14_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,8,15,3,9,2,14,6,1,14,11,7,2,1,9,0,5,15,14,12,15,6,14,15,9,15,0,0,1,2,0,4,0,5,2,2,6,5,11,6,0,15,5,3,8,7,2,11,14,13,11,12,7,6,11,14,12,8,1,7,13,11,14,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"0\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q15_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,8,15,3,9,2,14,6,1,14,11,7,2,1,9,0,5,15,14,12,15,6,14,15,9,15,0,0,1,2,0,4,0,5,2,2,6,5,11,6,0,15,5,3,8,7,2,11,14,13,11,12,7,6,11,14,12,8,1,7,13,11,14,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"2\", \"10\", \"15\", \"6\", \"11\"], \"clip_start\": 40.0, \"clip_end\": 46.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,15,2,13,12,6,12,9,14,5,4,10,6,10,4,1,9,13,6,12,13,15,3,1,10,6,7,5,15,4,10,2,11,15,15,9,4,13,11,8,2,10,15,6,11,13,8,8,3,13,13,2,6,10,9,6,14,3,4,10,3,13,1", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"11\", \"8\", \"2\"], \"clip_start\": 37.0, \"clip_end\": 42.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,15,2,13,12,6,12,9,14,5,4,10,6,10,4,1,9,13,6,12,13,15,3,1,10,6,7,5,15,4,10,2,11,15,15,9,4,13,11,8,2,10,15,6,11,13,8,8,3,13,13,2,6,10,9,6,14,3,4,10,3,13,1", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"6\", \"14\", \"3\", \"4\"], \"clip_start\": 55.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,15,2,13,12,6,12,9,14,5,4,10,6,10,4,1,9,13,6,12,13,15,3,1,10,6,7,5,15,4,10,2,11,15,15,9,4,13,11,8,2,10,15,6,11,13,8,8,3,13,13,2,6,10,9,6,14,3,4,10,3,13,1", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"14\", \"5\", \"4\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,15,2,13,12,6,12,9,14,5,4,10,6,10,4,1,9,13,6,12,13,15,3,1,10,6,7,5,15,4,10,2,11,15,15,9,4,13,11,8,2,10,15,6,11,13,8,8,3,13,13,2,6,10,9,6,14,3,4,10,3,13,1", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"5\"], \"clip_start\": 8.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,15,2,13,12,6,12,9,14,5,4,10,6,10,4,1,9,13,6,12,13,15,3,1,10,6,7,5,15,4,10,2,11,15,15,9,4,13,11,8,2,10,15,6,11,13,8,8,3,13,13,2,6,10,9,6,14,3,4,10,3,13,1", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"15\", \"6\", \"11\", \"13\", \"8\"], \"clip_start\": 42.0, \"clip_end\": 48.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,15,2,13,12,6,12,9,14,5,4,10,6,10,4,1,9,13,6,12,13,15,3,1,10,6,7,5,15,4,10,2,11,15,15,9,4,13,11,8,2,10,15,6,11,13,8,8,3,13,13,2,6,10,9,6,14,3,4,10,3,13,1", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 32.0, \"clip_end\": 35.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,15,2,13,12,6,12,9,14,5,4,10,6,10,4,1,9,13,6,12,13,15,3,1,10,6,7,5,15,4,10,2,11,15,15,9,4,13,11,8,2,10,15,6,11,13,8,8,3,13,13,2,6,10,9,6,14,3,4,10,3,13,1", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"1\", \"9\", \"13\", \"6\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,15,2,13,12,6,12,9,14,5,4,10,6,10,4,1,9,13,6,12,13,15,3,1,10,6,7,5,15,4,10,2,11,15,15,9,4,13,11,8,2,10,15,6,11,13,8,8,3,13,13,2,6,10,9,6,14,3,4,10,3,13,1", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"13\", \"13\"], \"clip_start\": 48.0, \"clip_end\": 52.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,15,2,13,12,6,12,9,14,5,4,10,6,10,4,1,9,13,6,12,13,15,3,1,10,6,7,5,15,4,10,2,11,15,15,9,4,13,11,8,2,10,15,6,11,13,8,8,3,13,13,2,6,10,9,6,14,3,4,10,3,13,1", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"1\", \"9\"], \"clip_start\": 14.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,15,2,13,12,6,12,9,14,5,4,10,6,10,4,1,9,13,6,12,13,15,3,1,10,6,7,5,15,4,10,2,11,15,15,9,4,13,11,8,2,10,15,6,11,13,8,8,3,13,13,2,6,10,9,6,14,3,4,10,3,13,1", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\", \"10\"], \"clip_start\": 57.0, \"clip_end\": 61.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,15,2,13,12,6,12,9,14,5,4,10,6,10,4,1,9,13,6,12,13,15,3,1,10,6,7,5,15,4,10,2,11,15,15,9,4,13,11,8,2,10,15,6,11,13,8,8,3,13,13,2,6,10,9,6,14,3,4,10,3,13,1", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,15,2,13,12,6,12,9,14,5,4,10,6,10,4,1,9,13,6,12,13,15,3,1,10,6,7,5,15,4,10,2,11,15,15,9,4,13,11,8,2,10,15,6,11,13,8,8,3,13,13,2,6,10,9,6,14,3,4,10,3,13,1", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"12\", \"6\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,15,2,13,12,6,12,9,14,5,4,10,6,10,4,1,9,13,6,12,13,15,3,1,10,6,7,5,15,4,10,2,11,15,15,9,4,13,11,8,2,10,15,6,11,13,8,8,3,13,13,2,6,10,9,6,14,3,4,10,3,13,1", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 61.0, \"clip_end\": 64.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,15,2,13,12,6,12,9,14,5,4,10,6,10,4,1,9,13,6,12,13,15,3,1,10,6,7,5,15,4,10,2,11,15,15,9,4,13,11,8,2,10,15,6,11,13,8,8,3,13,13,2,6,10,9,6,14,3,4,10,3,13,1", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"10\", \"3\", \"13\"], \"clip_start\": 59.0, \"clip_end\": 63.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,15,2,13,12,6,12,9,14,5,4,10,6,10,4,1,9,13,6,12,13,15,3,1,10,6,7,5,15,4,10,2,11,15,15,9,4,13,11,8,2,10,15,6,11,13,8,8,3,13,13,2,6,10,9,6,14,3,4,10,3,13,1", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,15,2,13,12,6,12,9,14,5,4,10,6,10,4,1,9,13,6,12,13,15,3,1,10,6,7,5,15,4,10,2,11,15,15,9,4,13,11,8,2,10,15,6,11,13,8,8,3,13,13,2,6,10,9,6,14,3,4,10,3,13,1", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"14\", \"7\", \"12\", \"1\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,5,8,10,6,7,13,9,14,0,9,9,12,14,14,14,14,15,5,12,7,4,13,9,4,2,14,7,12,1,6,8,15,8,14,15,3,9,12,2,14,6,0,12,5,7,6,2,15,1,5,10,10,0,1,12,0,12,0,2,5,3,14", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"9\", \"14\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,5,8,10,6,7,13,9,14,0,9,9,12,14,14,14,14,15,5,12,7,4,13,9,4,2,14,7,12,1,6,8,15,8,14,15,3,9,12,2,14,6,0,12,5,7,6,2,15,1,5,10,10,0,1,12,0,12,0,2,5,3,14", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"9\", \"4\", \"2\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,5,8,10,6,7,13,9,14,0,9,9,12,14,14,14,14,15,5,12,7,4,13,9,4,2,14,7,12,1,6,8,15,8,14,15,3,9,12,2,14,6,0,12,5,7,6,2,15,1,5,10,10,0,1,12,0,12,0,2,5,3,14", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 51.0, \"clip_end\": 56.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,5,8,10,6,7,13,9,14,0,9,9,12,14,14,14,14,15,5,12,7,4,13,9,4,2,14,7,12,1,6,8,15,8,14,15,3,9,12,2,14,6,0,12,5,7,6,2,15,1,5,10,10,0,1,12,0,12,0,2,5,3,14", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 50.0, \"clip_end\": 53.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,5,8,10,6,7,13,9,14,0,9,9,12,14,14,14,14,15,5,12,7,4,13,9,4,2,14,7,12,1,6,8,15,8,14,15,3,9,12,2,14,6,0,12,5,7,6,2,15,1,5,10,10,0,1,12,0,12,0,2,5,3,14", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"6\", \"0\", \"12\", \"5\"], \"clip_start\": 40.0, \"clip_end\": 46.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,5,8,10,6,7,13,9,14,0,9,9,12,14,14,14,14,15,5,12,7,4,13,9,4,2,14,7,12,1,6,8,15,8,14,15,3,9,12,2,14,6,0,12,5,7,6,2,15,1,5,10,10,0,1,12,0,12,0,2,5,3,14", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"6\", \"0\"], \"clip_start\": 40.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,5,8,10,6,7,13,9,14,0,9,9,12,14,14,14,14,15,5,12,7,4,13,9,4,2,14,7,12,1,6,8,15,8,14,15,3,9,12,2,14,6,0,12,5,7,6,2,15,1,5,10,10,0,1,12,0,12,0,2,5,3,14", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"7\", \"6\", \"2\", \"15\"], \"clip_start\": 44.0, \"clip_end\": 50.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,5,8,10,6,7,13,9,14,0,9,9,12,14,14,14,14,15,5,12,7,4,13,9,4,2,14,7,12,1,6,8,15,8,14,15,3,9,12,2,14,6,0,12,5,7,6,2,15,1,5,10,10,0,1,12,0,12,0,2,5,3,14", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"0\", \"12\", \"5\", \"7\", \"6\"], \"clip_start\": 42.0, \"clip_end\": 48.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,5,8,10,6,7,13,9,14,0,9,9,12,14,14,14,14,15,5,12,7,4,13,9,4,2,14,7,12,1,6,8,15,8,14,15,3,9,12,2,14,6,0,12,5,7,6,2,15,1,5,10,10,0,1,12,0,12,0,2,5,3,14", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 28.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,5,8,10,6,7,13,9,14,0,9,9,12,14,14,14,14,15,5,12,7,4,13,9,4,2,14,7,12,1,6,8,15,8,14,15,3,9,12,2,14,6,0,12,5,7,6,2,15,1,5,10,10,0,1,12,0,12,0,2,5,3,14", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 50.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,5,8,10,6,7,13,9,14,0,9,9,12,14,14,14,14,15,5,12,7,4,13,9,4,2,14,7,12,1,6,8,15,8,14,15,3,9,12,2,14,6,0,12,5,7,6,2,15,1,5,10,10,0,1,12,0,12,0,2,5,3,14", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"15\", \"8\", \"14\", \"15\", \"3\"], \"clip_start\": 32.0, \"clip_end\": 38.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,5,8,10,6,7,13,9,14,0,9,9,12,14,14,14,14,15,5,12,7,4,13,9,4,2,14,7,12,1,6,8,15,8,14,15,3,9,12,2,14,6,0,12,5,7,6,2,15,1,5,10,10,0,1,12,0,12,0,2,5,3,14", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"9\", \"14\", \"0\"], \"clip_start\": 7.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,5,8,10,6,7,13,9,14,0,9,9,12,14,14,14,14,15,5,12,7,4,13,9,4,2,14,7,12,1,6,8,15,8,14,15,3,9,12,2,14,6,0,12,5,7,6,2,15,1,5,10,10,0,1,12,0,12,0,2,5,3,14", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"7\", \"4\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,5,8,10,6,7,13,9,14,0,9,9,12,14,14,14,14,15,5,12,7,4,13,9,4,2,14,7,12,1,6,8,15,8,14,15,3,9,12,2,14,6,0,12,5,7,6,2,15,1,5,10,10,0,1,12,0,12,0,2,5,3,14", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"9\", \"12\", \"14\", \"14\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,5,8,10,6,7,13,9,14,0,9,9,12,14,14,14,14,15,5,12,7,4,13,9,4,2,14,7,12,1,6,8,15,8,14,15,3,9,12,2,14,6,0,12,5,7,6,2,15,1,5,10,10,0,1,12,0,12,0,2,5,3,14", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"8\", \"15\", \"8\", \"14\"], \"clip_start\": 30.0, \"clip_end\": 36.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,5,8,10,6,7,13,9,14,0,9,9,12,14,14,14,14,15,5,12,7,4,13,9,4,2,14,7,12,1,6,8,15,8,14,15,3,9,12,2,14,6,0,12,5,7,6,2,15,1,5,10,10,0,1,12,0,12,0,2,5,3,14", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"15\", \"8\", \"13\", \"2\"], \"clip_start\": 48.0, \"clip_end\": 54.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,12,11,1,0,3,6,15,15,15,14,13,13,7,5,14,1,12,7,0,8,11,9,2,13,2,2,10,11,10,13,5,14,13,1,9,6,0,0,14,13,1,9,3,6,0,13,14,15,15,8,13,2,7,15,3,13,6,0,6,6,14,5", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"13\", \"5\", \"14\"], \"clip_start\": 30.0, \"clip_end\": 34.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,12,11,1,0,3,6,15,15,15,14,13,13,7,5,14,1,12,7,0,8,11,9,2,13,2,2,10,11,10,13,5,14,13,1,9,6,0,0,14,13,1,9,3,6,0,13,14,15,15,8,13,2,7,15,3,13,6,0,6,6,14,5", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"6\", \"15\", \"15\", \"15\", \"14\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,12,11,1,0,3,6,15,15,15,14,13,13,7,5,14,1,12,7,0,8,11,9,2,13,2,2,10,11,10,13,5,14,13,1,9,6,0,0,14,13,1,9,3,6,0,13,14,15,15,8,13,2,7,15,3,13,6,0,6,6,14,5", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 8.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,12,11,1,0,3,6,15,15,15,14,13,13,7,5,14,1,12,7,0,8,11,9,2,13,2,2,10,11,10,13,5,14,13,1,9,6,0,0,14,13,1,9,3,6,0,13,14,15,15,8,13,2,7,15,3,13,6,0,6,6,14,5", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"6\", \"0\", \"0\", \"14\"], \"clip_start\": 36.0, \"clip_end\": 41.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,12,11,1,0,3,6,15,15,15,14,13,13,7,5,14,1,12,7,0,8,11,9,2,13,2,2,10,11,10,13,5,14,13,1,9,6,0,0,14,13,1,9,3,6,0,13,14,15,15,8,13,2,7,15,3,13,6,0,6,6,14,5", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"2\", \"7\", \"15\", \"3\"], \"clip_start\": 51.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,12,11,1,0,3,6,15,15,15,14,13,13,7,5,14,1,12,7,0,8,11,9,2,13,2,2,10,11,10,13,5,14,13,1,9,6,0,0,14,13,1,9,3,6,0,13,14,15,15,8,13,2,7,15,3,13,6,0,6,6,14,5", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"12\", \"11\", \"1\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q6_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,12,11,1,0,3,6,15,15,15,14,13,13,7,5,14,1,12,7,0,8,11,9,2,13,2,2,10,11,10,13,5,14,13,1,9,6,0,0,14,13,1,9,3,6,0,13,14,15,15,8,13,2,7,15,3,13,6,0,6,6,14,5", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"15\", \"15\", \"14\", \"13\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q7_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,12,11,1,0,3,6,15,15,15,14,13,13,7,5,14,1,12,7,0,8,11,9,2,13,2,2,10,11,10,13,5,14,13,1,9,6,0,0,14,13,1,9,3,6,0,13,14,15,15,8,13,2,7,15,3,13,6,0,6,6,14,5", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"6\", \"0\", \"0\"], \"clip_start\": 35.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,12,11,1,0,3,6,15,15,15,14,13,13,7,5,14,1,12,7,0,8,11,9,2,13,2,2,10,11,10,13,5,14,13,1,9,6,0,0,14,13,1,9,3,6,0,13,14,15,15,8,13,2,7,15,3,13,6,0,6,6,14,5", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"14\", \"15\"], \"clip_start\": 46.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q9_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,12,11,1,0,3,6,15,15,15,14,13,13,7,5,14,1,12,7,0,8,11,9,2,13,2,2,10,11,10,13,5,14,13,1,9,6,0,0,14,13,1,9,3,6,0,13,14,15,15,8,13,2,7,15,3,13,6,0,6,6,14,5", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"9\", \"3\", \"6\"], \"clip_start\": 41.0, \"clip_end\": 46.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q10_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,12,11,1,0,3,6,15,15,15,14,13,13,7,5,14,1,12,7,0,8,11,9,2,13,2,2,10,11,10,13,5,14,13,1,9,6,0,0,14,13,1,9,3,6,0,13,14,15,15,8,13,2,7,15,3,13,6,0,6,6,14,5", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"0\", \"6\", \"6\", \"14\", \"5\"], \"clip_start\": 58.0, \"clip_end\": 64.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,12,11,1,0,3,6,15,15,15,14,13,13,7,5,14,1,12,7,0,8,11,9,2,13,2,2,10,11,10,13,5,14,13,1,9,6,0,0,14,13,1,9,3,6,0,13,14,15,15,8,13,2,7,15,3,13,6,0,6,6,14,5", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"14\", \"13\", \"13\", \"7\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,12,11,1,0,3,6,15,15,15,14,13,13,7,5,14,1,12,7,0,8,11,9,2,13,2,2,10,11,10,13,5,14,13,1,9,6,0,0,14,13,1,9,3,6,0,13,14,15,15,8,13,2,7,15,3,13,6,0,6,6,14,5", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"15\", \"15\", \"8\"], \"clip_start\": 47.0, \"clip_end\": 52.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q13_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,12,11,1,0,3,6,15,15,15,14,13,13,7,5,14,1,12,7,0,8,11,9,2,13,2,2,10,11,10,13,5,14,13,1,9,6,0,0,14,13,1,9,3,6,0,13,14,15,15,8,13,2,7,15,3,13,6,0,6,6,14,5", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\", \"2\", \"15\", \"0\"], \"clip_start\": 53.0, \"clip_end\": 59.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q14_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,12,11,1,0,3,6,15,15,15,14,13,13,7,5,14,1,12,7,0,8,11,9,2,13,2,2,10,11,10,13,5,14,13,1,9,6,0,0,14,13,1,9,3,6,0,13,14,15,15,8,13,2,7,15,3,13,6,0,6,6,14,5", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"3\", \"6\", \"15\"], \"clip_start\": 5.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q15_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,12,11,1,0,3,6,15,15,15,14,13,13,7,5,14,1,12,7,0,8,11,9,2,13,2,2,10,11,10,13,5,14,13,1,9,6,0,0,14,13,1,9,3,6,0,13,14,15,15,8,13,2,7,15,3,13,6,0,6,6,14,5", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"0\", \"15\", \"15\", \"13\"], \"clip_start\": 43.0, \"clip_end\": 48.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,8,15,15,10,13,9,3,5,8,8,12,6,2,2,1,14,9,7,12,0,5,0,15,8,8,0,6,1,3,5,0,6,1,7,4,13,8,3,12,9,14,14,0,15,15,13,0,8,7,12,9,10,12,4,2,6,11,14,13,1,6,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"7\", \"12\"], \"clip_start\": 48.0, \"clip_end\": 52.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,8,15,15,10,13,9,3,5,8,8,12,6,2,2,1,14,9,7,12,0,5,0,15,8,8,0,6,1,3,5,0,6,1,7,4,13,8,3,12,9,14,14,0,15,15,13,0,8,7,12,9,10,12,4,2,6,11,14,13,1,6,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"6\", \"11\"], \"clip_start\": 55.0, \"clip_end\": 59.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,8,15,15,10,13,9,3,5,8,8,12,6,2,2,1,14,9,7,12,0,5,0,15,8,8,0,6,1,3,5,0,6,1,7,4,13,8,3,12,9,14,14,0,15,15,13,0,8,7,12,9,10,12,4,2,6,11,14,13,1,6,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"2\", \"1\", \"14\", \"9\"], \"clip_start\": 14.0, \"clip_end\": 19.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,8,15,15,10,13,9,3,5,8,8,12,6,2,2,1,14,9,7,12,0,5,0,15,8,8,0,6,1,3,5,0,6,1,7,4,13,8,3,12,9,14,14,0,15,15,13,0,8,7,12,9,10,12,4,2,6,11,14,13,1,6,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 31.0, \"clip_end\": 35.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,8,15,15,10,13,9,3,5,8,8,12,6,2,2,1,14,9,7,12,0,5,0,15,8,8,0,6,1,3,5,0,6,1,7,4,13,8,3,12,9,14,14,0,15,15,13,0,8,7,12,9,10,12,4,2,6,11,14,13,1,6,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"1\", \"3\", \"5\"], \"clip_start\": 28.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,8,15,15,10,13,9,3,5,8,8,12,6,2,2,1,14,9,7,12,0,5,0,15,8,8,0,6,1,3,5,0,6,1,7,4,13,8,3,12,9,14,14,0,15,15,13,0,8,7,12,9,10,12,4,2,6,11,14,13,1,6,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"10\", \"12\", \"4\"], \"clip_start\": 52.0, \"clip_end\": 56.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,8,15,15,10,13,9,3,5,8,8,12,6,2,2,1,14,9,7,12,0,5,0,15,8,8,0,6,1,3,5,0,6,1,7,4,13,8,3,12,9,14,14,0,15,15,13,0,8,7,12,9,10,12,4,2,6,11,14,13,1,6,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 54.0, \"clip_end\": 59.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,8,15,15,10,13,9,3,5,8,8,12,6,2,2,1,14,9,7,12,0,5,0,15,8,8,0,6,1,3,5,0,6,1,7,4,13,8,3,12,9,14,14,0,15,15,13,0,8,7,12,9,10,12,4,2,6,11,14,13,1,6,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"7\", \"12\"], \"clip_start\": 17.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,8,15,15,10,13,9,3,5,8,8,12,6,2,2,1,14,9,7,12,0,5,0,15,8,8,0,6,1,3,5,0,6,1,7,4,13,8,3,12,9,14,14,0,15,15,13,0,8,7,12,9,10,12,4,2,6,11,14,13,1,6,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"8\"], \"clip_start\": 53.0, \"clip_end\": 56.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,8,15,15,10,13,9,3,5,8,8,12,6,2,2,1,14,9,7,12,0,5,0,15,8,8,0,6,1,3,5,0,6,1,7,4,13,8,3,12,9,14,14,0,15,15,13,0,8,7,12,9,10,12,4,2,6,11,14,13,1,6,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"6\", \"2\", \"2\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q10_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,8,15,15,10,13,9,3,5,8,8,12,6,2,2,1,14,9,7,12,0,5,0,15,8,8,0,6,1,3,5,0,6,1,7,4,13,8,3,12,9,14,14,0,15,15,13,0,8,7,12,9,10,12,4,2,6,11,14,13,1,6,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"14\", \"14\"], \"clip_start\": 40.0, \"clip_end\": 44.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q11_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,8,15,15,10,13,9,3,5,8,8,12,6,2,2,1,14,9,7,12,0,5,0,15,8,8,0,6,1,3,5,0,6,1,7,4,13,8,3,12,9,14,14,0,15,15,13,0,8,7,12,9,10,12,4,2,6,11,14,13,1,6,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"6\"], \"clip_start\": 55.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q12_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,8,15,15,10,13,9,3,5,8,8,12,6,2,2,1,14,9,7,12,0,5,0,15,8,8,0,6,1,3,5,0,6,1,7,4,13,8,3,12,9,14,14,0,15,15,13,0,8,7,12,9,10,12,4,2,6,11,14,13,1,6,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"14\", \"14\", \"8\"], \"clip_start\": 49.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q13_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,8,15,15,10,13,9,3,5,8,8,12,6,2,2,1,14,9,7,12,0,5,0,15,8,8,0,6,1,3,5,0,6,1,7,4,13,8,3,12,9,14,14,0,15,15,13,0,8,7,12,9,10,12,4,2,6,11,14,13,1,6,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"1\", \"7\", \"4\", \"13\"], \"clip_start\": 32.0, \"clip_end\": 38.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q14_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,8,15,15,10,13,9,3,5,8,8,12,6,2,2,1,14,9,7,12,0,5,0,15,8,8,0,6,1,3,5,0,6,1,7,4,13,8,3,12,9,14,14,0,15,15,13,0,8,7,12,9,10,12,4,2,6,11,14,13,1,6,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"5\", \"0\", \"15\"], \"clip_start\": 21.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q15_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,8,15,15,10,13,9,3,5,8,8,12,6,2,2,1,14,9,7,12,0,5,0,15,8,8,0,6,1,3,5,0,6,1,7,4,13,8,3,12,9,14,14,0,15,15,13,0,8,7,12,9,10,12,4,2,6,11,14,13,1,6,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"0\", \"4\", \"10\"], \"clip_start\": 50.0, \"clip_end\": 55.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,7,15,5,12,5,2,9,8,1,9,0,6,5,2,6,14,10,3,7,4,10,11,6,13,13,11,14,11,12,7,15,12,1,3,0,14,9,1,0,5,4,15,9,3,8,3,0,3,14,7,0,4,10,9,12,6,1,11,6,1,4,9", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"0\", \"14\", \"9\", \"1\"], \"clip_start\": 34.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,7,15,5,12,5,2,9,8,1,9,0,6,5,2,6,14,10,3,7,4,10,11,6,13,13,11,14,11,12,7,15,12,1,3,0,14,9,1,0,5,4,15,9,3,8,3,0,3,14,7,0,4,10,9,12,6,1,11,6,1,4,9", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"9\", \"0\", \"6\", \"5\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,7,15,5,12,5,2,9,8,1,9,0,6,5,2,6,14,10,3,7,4,10,11,6,13,13,11,14,11,12,7,15,12,1,3,0,14,9,1,0,5,4,15,9,3,8,3,0,3,14,7,0,4,10,9,12,6,1,11,6,1,4,9", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"10\", \"11\"], \"clip_start\": 21.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,7,15,5,12,5,2,9,8,1,9,0,6,5,2,6,14,10,3,7,4,10,11,6,13,13,11,14,11,12,7,15,12,1,3,0,14,9,1,0,5,4,15,9,3,8,3,0,3,14,7,0,4,10,9,12,6,1,11,6,1,4,9", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"0\", \"14\", \"9\", \"1\"], \"clip_start\": 35.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,7,15,5,12,5,2,9,8,1,9,0,6,5,2,6,14,10,3,7,4,10,11,6,13,13,11,14,11,12,7,15,12,1,3,0,14,9,1,0,5,4,15,9,3,8,3,0,3,14,7,0,4,10,9,12,6,1,11,6,1,4,9", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"13\", \"11\", \"14\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,7,15,5,12,5,2,9,8,1,9,0,6,5,2,6,14,10,3,7,4,10,11,6,13,13,11,14,11,12,7,15,12,1,3,0,14,9,1,0,5,4,15,9,3,8,3,0,3,14,7,0,4,10,9,12,6,1,11,6,1,4,9", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"0\", \"4\", \"10\", \"9\"], \"clip_start\": 50.0, \"clip_end\": 56.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,7,15,5,12,5,2,9,8,1,9,0,6,5,2,6,14,10,3,7,4,10,11,6,13,13,11,14,11,12,7,15,12,1,3,0,14,9,1,0,5,4,15,9,3,8,3,0,3,14,7,0,4,10,9,12,6,1,11,6,1,4,9", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"8\", \"3\", \"0\", \"3\"], \"clip_start\": 44.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,7,15,5,12,5,2,9,8,1,9,0,6,5,2,6,14,10,3,7,4,10,11,6,13,13,11,14,11,12,7,15,12,1,3,0,14,9,1,0,5,4,15,9,3,8,3,0,3,14,7,0,4,10,9,12,6,1,11,6,1,4,9", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\"], \"clip_start\": 58.0, \"clip_end\": 61.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,7,15,5,12,5,2,9,8,1,9,0,6,5,2,6,14,10,3,7,4,10,11,6,13,13,11,14,11,12,7,15,12,1,3,0,14,9,1,0,5,4,15,9,3,8,3,0,3,14,7,0,4,10,9,12,6,1,11,6,1,4,9", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"13\", \"3\"], \"clip_start\": 49.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q9_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,7,15,5,12,5,2,9,8,1,9,0,6,5,2,6,14,10,3,7,4,10,11,6,13,13,11,14,11,12,7,15,12,1,3,0,14,9,1,0,5,4,15,9,3,8,3,0,3,14,7,0,4,10,9,12,6,1,11,6,1,4,9", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"9\", \"0\", \"6\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q10_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,7,15,5,12,5,2,9,8,1,9,0,6,5,2,6,14,10,3,7,4,10,11,6,13,13,11,14,11,12,7,15,12,1,3,0,14,9,1,0,5,4,15,9,3,8,3,0,3,14,7,0,4,10,9,12,6,1,11,6,1,4,9", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"13\", \"11\", \"14\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,7,15,5,12,5,2,9,8,1,9,0,6,5,2,6,14,10,3,7,4,10,11,6,13,13,11,14,11,12,7,15,12,1,3,0,14,9,1,0,5,4,15,9,3,8,3,0,3,14,7,0,4,10,9,12,6,1,11,6,1,4,9", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"15\", \"9\"], \"clip_start\": 27.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q12_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,7,15,5,12,5,2,9,8,1,9,0,6,5,2,6,14,10,3,7,4,10,11,6,13,13,11,14,11,12,7,15,12,1,3,0,14,9,1,0,5,4,15,9,3,8,3,0,3,14,7,0,4,10,9,12,6,1,11,6,1,4,9", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"4\"], \"clip_start\": 51.0, \"clip_end\": 54.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q13_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,7,15,5,12,5,2,9,8,1,9,0,6,5,2,6,14,10,3,7,4,10,11,6,13,13,11,14,11,12,7,15,12,1,3,0,14,9,1,0,5,4,15,9,3,8,3,0,3,14,7,0,4,10,9,12,6,1,11,6,1,4,9", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"12\", \"7\", \"15\"], \"clip_start\": 27.0, \"clip_end\": 33.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q14_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,7,15,5,12,5,2,9,8,1,9,0,6,5,2,6,14,10,3,7,4,10,11,6,13,13,11,14,11,12,7,15,12,1,3,0,14,9,1,0,5,4,15,9,3,8,3,0,3,14,7,0,4,10,9,12,6,1,11,6,1,4,9", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"1\", \"11\", \"6\", \"1\", \"4\"], \"clip_start\": 57.0, \"clip_end\": 63.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q15_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,10,7,15,5,12,5,2,9,8,1,9,0,6,5,2,6,14,10,3,7,4,10,11,6,13,13,11,14,11,12,7,15,12,1,3,0,14,9,1,0,5,4,15,9,3,8,3,0,3,14,7,0,4,10,9,12,6,1,11,6,1,4,9", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"7\", \"0\", \"2\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,5,7,8,6,10,12,12,15,11,5,2,11,9,9,0,10,5,8,14,10,15,8,12,12,7,0,2,2,7,9,1,12,13,15,14,9,7,0,8,5,1,2,12,10,0,15,11,12,1,0,1,9,15,9,6,7,12,7,5,0,5,7,12", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"15\", \"8\", \"12\", \"12\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,5,7,8,6,10,12,12,15,11,5,2,11,9,9,0,10,5,8,14,10,15,8,12,12,7,0,2,2,7,9,1,12,13,15,14,9,7,0,8,5,1,2,12,10,0,15,11,12,1,0,1,9,15,9,6,7,12,7,5,0,5,7,12", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"12\"], \"clip_start\": 55.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,5,7,8,6,10,12,12,15,11,5,2,11,9,9,0,10,5,8,14,10,15,8,12,12,7,0,2,2,7,9,1,12,13,15,14,9,7,0,8,5,1,2,12,10,0,15,11,12,1,0,1,9,15,9,6,7,12,7,5,0,5,7,12", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,5,7,8,6,10,12,12,15,11,5,2,11,9,9,0,10,5,8,14,10,15,8,12,12,7,0,2,2,7,9,1,12,13,15,14,9,7,0,8,5,1,2,12,10,0,15,11,12,1,0,1,9,15,9,6,7,12,7,5,0,5,7,12", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"7\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,5,7,8,6,10,12,12,15,11,5,2,11,9,9,0,10,5,8,14,10,15,8,12,12,7,0,2,2,7,9,1,12,13,15,14,9,7,0,8,5,1,2,12,10,0,15,11,12,1,0,1,9,15,9,6,7,12,7,5,0,5,7,12", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"7\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,5,7,8,6,10,12,12,15,11,5,2,11,9,9,0,10,5,8,14,10,15,8,12,12,7,0,2,2,7,9,1,12,13,15,14,9,7,0,8,5,1,2,12,10,0,15,11,12,1,0,1,9,15,9,6,7,12,7,5,0,5,7,12", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 56.0, \"clip_end\": 60.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,5,7,8,6,10,12,12,15,11,5,2,11,9,9,0,10,5,8,14,10,15,8,12,12,7,0,2,2,7,9,1,12,13,15,14,9,7,0,8,5,1,2,12,10,0,15,11,12,1,0,1,9,15,9,6,7,12,7,5,0,5,7,12", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"7\", \"0\", \"8\"], \"clip_start\": 35.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,5,7,8,6,10,12,12,15,11,5,2,11,9,9,0,10,5,8,14,10,15,8,12,12,7,0,2,2,7,9,1,12,13,15,14,9,7,0,8,5,1,2,12,10,0,15,11,12,1,0,1,9,15,9,6,7,12,7,5,0,5,7,12", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"15\", \"11\", \"5\", \"2\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,5,7,8,6,10,12,12,15,11,5,2,11,9,9,0,10,5,8,14,10,15,8,12,12,7,0,2,2,7,9,1,12,13,15,14,9,7,0,8,5,1,2,12,10,0,15,11,12,1,0,1,9,15,9,6,7,12,7,5,0,5,7,12", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"12\", \"7\", \"5\"], \"clip_start\": 55.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,5,7,8,6,10,12,12,15,11,5,2,11,9,9,0,10,5,8,14,10,15,8,12,12,7,0,2,2,7,9,1,12,13,15,14,9,7,0,8,5,1,2,12,10,0,15,11,12,1,0,1,9,15,9,6,7,12,7,5,0,5,7,12", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,5,7,8,6,10,12,12,15,11,5,2,11,9,9,0,10,5,8,14,10,15,8,12,12,7,0,2,2,7,9,1,12,13,15,14,9,7,0,8,5,1,2,12,10,0,15,11,12,1,0,1,9,15,9,6,7,12,7,5,0,5,7,12", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"1\", \"12\", \"13\", \"15\"], \"clip_start\": 30.0, \"clip_end\": 35.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,5,7,8,6,10,12,12,15,11,5,2,11,9,9,0,10,5,8,14,10,15,8,12,12,7,0,2,2,7,9,1,12,13,15,14,9,7,0,8,5,1,2,12,10,0,15,11,12,1,0,1,9,15,9,6,7,12,7,5,0,5,7,12", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,5,7,8,6,10,12,12,15,11,5,2,11,9,9,0,10,5,8,14,10,15,8,12,12,7,0,2,2,7,9,1,12,13,15,14,9,7,0,8,5,1,2,12,10,0,15,11,12,1,0,1,9,15,9,6,7,12,7,5,0,5,7,12", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"15\", \"9\", \"6\", \"7\"], \"clip_start\": 51.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,5,7,8,6,10,12,12,15,11,5,2,11,9,9,0,10,5,8,14,10,15,8,12,12,7,0,2,2,7,9,1,12,13,15,14,9,7,0,8,5,1,2,12,10,0,15,11,12,1,0,1,9,15,9,6,7,12,7,5,0,5,7,12", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"8\", \"6\", \"10\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,5,7,8,6,10,12,12,15,11,5,2,11,9,9,0,10,5,8,14,10,15,8,12,12,7,0,2,2,7,9,1,12,13,15,14,9,7,0,8,5,1,2,12,10,0,15,11,12,1,0,1,9,15,9,6,7,12,7,5,0,5,7,12", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 33.0, \"clip_end\": 36.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,5,7,8,6,10,12,12,15,11,5,2,11,9,9,0,10,5,8,14,10,15,8,12,12,7,0,2,2,7,9,1,12,13,15,14,9,7,0,8,5,1,2,12,10,0,15,11,12,1,0,1,9,15,9,6,7,12,7,5,0,5,7,12", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,5,2,0,6,1,15,8,10,3,5,5,11,12,9,4,9,5,6,15,13,12,7,2,8,7,2,13,0,6,2,12,3,1,6,11,13,13,1,3,11,15,12,3,11,11,6,7,5,14,11,1,8,13,7,12,6,9,4,8,5,12,0", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"12\", \"6\", \"9\", \"4\"], \"clip_start\": 54.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,5,2,0,6,1,15,8,10,3,5,5,11,12,9,4,9,5,6,15,13,12,7,2,8,7,2,13,0,6,2,12,3,1,6,11,13,13,1,3,11,15,12,3,11,11,6,7,5,14,11,1,8,13,7,12,6,9,4,8,5,12,0", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"6\"], \"clip_start\": 55.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,5,2,0,6,1,15,8,10,3,5,5,11,12,9,4,9,5,6,15,13,12,7,2,8,7,2,13,0,6,2,12,3,1,6,11,13,13,1,3,11,15,12,3,11,11,6,7,5,14,11,1,8,13,7,12,6,9,4,8,5,12,0", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"1\", \"15\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,5,2,0,6,1,15,8,10,3,5,5,11,12,9,4,9,5,6,15,13,12,7,2,8,7,2,13,0,6,2,12,3,1,6,11,13,13,1,3,11,15,12,3,11,11,6,7,5,14,11,1,8,13,7,12,6,9,4,8,5,12,0", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"13\", \"1\"], \"clip_start\": 37.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,5,2,0,6,1,15,8,10,3,5,5,11,12,9,4,9,5,6,15,13,12,7,2,8,7,2,13,0,6,2,12,3,1,6,11,13,13,1,3,11,15,12,3,11,11,6,7,5,14,11,1,8,13,7,12,6,9,4,8,5,12,0", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"1\", \"15\", \"8\"], \"clip_start\": 4.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,5,2,0,6,1,15,8,10,3,5,5,11,12,9,4,9,5,6,15,13,12,7,2,8,7,2,13,0,6,2,12,3,1,6,11,13,13,1,3,11,15,12,3,11,11,6,7,5,14,11,1,8,13,7,12,6,9,4,8,5,12,0", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"2\", \"13\", \"0\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,5,2,0,6,1,15,8,10,3,5,5,11,12,9,4,9,5,6,15,13,12,7,2,8,7,2,13,0,6,2,12,3,1,6,11,13,13,1,3,11,15,12,3,11,11,6,7,5,14,11,1,8,13,7,12,6,9,4,8,5,12,0", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 38.0, \"clip_end\": 42.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,5,2,0,6,1,15,8,10,3,5,5,11,12,9,4,9,5,6,15,13,12,7,2,8,7,2,13,0,6,2,12,3,1,6,11,13,13,1,3,11,15,12,3,11,11,6,7,5,14,11,1,8,13,7,12,6,9,4,8,5,12,0", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"0\", \"6\", \"1\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,5,2,0,6,1,15,8,10,3,5,5,11,12,9,4,9,5,6,15,13,12,7,2,8,7,2,13,0,6,2,12,3,1,6,11,13,13,1,3,11,15,12,3,11,11,6,7,5,14,11,1,8,13,7,12,6,9,4,8,5,12,0", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"0\", \"6\", \"2\"], \"clip_start\": 27.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,5,2,0,6,1,15,8,10,3,5,5,11,12,9,4,9,5,6,15,13,12,7,2,8,7,2,13,0,6,2,12,3,1,6,11,13,13,1,3,11,15,12,3,11,11,6,7,5,14,11,1,8,13,7,12,6,9,4,8,5,12,0", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 53.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,5,2,0,6,1,15,8,10,3,5,5,11,12,9,4,9,5,6,15,13,12,7,2,8,7,2,13,0,6,2,12,3,1,6,11,13,13,1,3,11,15,12,3,11,11,6,7,5,14,11,1,8,13,7,12,6,9,4,8,5,12,0", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"1\", \"15\", \"8\", \"10\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,5,2,0,6,1,15,8,10,3,5,5,11,12,9,4,9,5,6,15,13,12,7,2,8,7,2,13,0,6,2,12,3,1,6,11,13,13,1,3,11,15,12,3,11,11,6,7,5,14,11,1,8,13,7,12,6,9,4,8,5,12,0", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"6\", \"11\"], \"clip_start\": 33.0, \"clip_end\": 37.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,5,2,0,6,1,15,8,10,3,5,5,11,12,9,4,9,5,6,15,13,12,7,2,8,7,2,13,0,6,2,12,3,1,6,11,13,13,1,3,11,15,12,3,11,11,6,7,5,14,11,1,8,13,7,12,6,9,4,8,5,12,0", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"3\", \"1\", \"6\", \"11\"], \"clip_start\": 31.0, \"clip_end\": 37.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,5,2,0,6,1,15,8,10,3,5,5,11,12,9,4,9,5,6,15,13,12,7,2,8,7,2,13,0,6,2,12,3,1,6,11,13,13,1,3,11,15,12,3,11,11,6,7,5,14,11,1,8,13,7,12,6,9,4,8,5,12,0", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"1\", \"15\", \"8\", \"10\", \"3\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,5,2,0,6,1,15,8,10,3,5,5,11,12,9,4,9,5,6,15,13,12,7,2,8,7,2,13,0,6,2,12,3,1,6,11,13,13,1,3,11,15,12,3,11,11,6,7,5,14,11,1,8,13,7,12,6,9,4,8,5,12,0", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"8\", \"13\", \"7\", \"12\", \"6\"], \"clip_start\": 52.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,5,2,0,6,1,15,8,10,3,5,5,11,12,9,4,9,5,6,15,13,12,7,2,8,7,2,13,0,6,2,12,3,1,6,11,13,13,1,3,11,15,12,3,11,11,6,7,5,14,11,1,8,13,7,12,6,9,4,8,5,12,0", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"15\", \"15\", \"4\", \"10\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,5,2,9,15,15,4,10,3,7,8,6,7,4,4,9,10,6,12,10,4,5,2,6,3,11,9,14,0,3,9,11,11,1,12,1,12,15,2,7,4,11,3,3,3,10,4,14,9,13,3,5,10,0,2,8,7,13,7,11,12,1,14", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 36.0, \"clip_end\": 42.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,5,2,9,15,15,4,10,3,7,8,6,7,4,4,9,10,6,12,10,4,5,2,6,3,11,9,14,0,3,9,11,11,1,12,1,12,15,2,7,4,11,3,3,3,10,4,14,9,13,3,5,10,0,2,8,7,13,7,11,12,1,14", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"9\", \"15\", \"15\", \"4\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,5,2,9,15,15,4,10,3,7,8,6,7,4,4,9,10,6,12,10,4,5,2,6,3,11,9,14,0,3,9,11,11,1,12,1,12,15,2,7,4,11,3,3,3,10,4,14,9,13,3,5,10,0,2,8,7,13,7,11,12,1,14", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"12\", \"1\", \"12\", \"15\", \"2\"], \"clip_start\": 34.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,5,2,9,15,15,4,10,3,7,8,6,7,4,4,9,10,6,12,10,4,5,2,6,3,11,9,14,0,3,9,11,11,1,12,1,12,15,2,7,4,11,3,3,3,10,4,14,9,13,3,5,10,0,2,8,7,13,7,11,12,1,14", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"7\", \"4\", \"11\", \"3\"], \"clip_start\": 38.0, \"clip_end\": 44.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,5,2,9,15,15,4,10,3,7,8,6,7,4,4,9,10,6,12,10,4,5,2,6,3,11,9,14,0,3,9,11,11,1,12,1,12,15,2,7,4,11,3,3,3,10,4,14,9,13,3,5,10,0,2,8,7,13,7,11,12,1,14", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"3\", \"9\", \"11\", \"11\", \"1\"], \"clip_start\": 29.0, \"clip_end\": 35.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,5,2,9,15,15,4,10,3,7,8,6,7,4,4,9,10,6,12,10,4,5,2,6,3,11,9,14,0,3,9,11,11,1,12,1,12,15,2,7,4,11,3,3,3,10,4,14,9,13,3,5,10,0,2,8,7,13,7,11,12,1,14", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"13\", \"7\"], \"clip_start\": 56.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,5,2,9,15,15,4,10,3,7,8,6,7,4,4,9,10,6,12,10,4,5,2,6,3,11,9,14,0,3,9,11,11,1,12,1,12,15,2,7,4,11,3,3,3,10,4,14,9,13,3,5,10,0,2,8,7,13,7,11,12,1,14", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"11\", \"12\", \"1\", \"14\"], \"clip_start\": 58.0, \"clip_end\": 64.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,5,2,9,15,15,4,10,3,7,8,6,7,4,4,9,10,6,12,10,4,5,2,6,3,11,9,14,0,3,9,11,11,1,12,1,12,15,2,7,4,11,3,3,3,10,4,14,9,13,3,5,10,0,2,8,7,13,7,11,12,1,14", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"3\", \"11\"], \"clip_start\": 23.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,5,2,9,15,15,4,10,3,7,8,6,7,4,4,9,10,6,12,10,4,5,2,6,3,11,9,14,0,3,9,11,11,1,12,1,12,15,2,7,4,11,3,3,3,10,4,14,9,13,3,5,10,0,2,8,7,13,7,11,12,1,14", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 61.0, \"clip_end\": 64.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,5,2,9,15,15,4,10,3,7,8,6,7,4,4,9,10,6,12,10,4,5,2,6,3,11,9,14,0,3,9,11,11,1,12,1,12,15,2,7,4,11,3,3,3,10,4,14,9,13,3,5,10,0,2,8,7,13,7,11,12,1,14", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"10\", \"4\", \"14\"], \"clip_start\": 44.0, \"clip_end\": 49.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,5,2,9,15,15,4,10,3,7,8,6,7,4,4,9,10,6,12,10,4,5,2,6,3,11,9,14,0,3,9,11,11,1,12,1,12,15,2,7,4,11,3,3,3,10,4,14,9,13,3,5,10,0,2,8,7,13,7,11,12,1,14", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"13\", \"7\"], \"clip_start\": 56.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,5,2,9,15,15,4,10,3,7,8,6,7,4,4,9,10,6,12,10,4,5,2,6,3,11,9,14,0,3,9,11,11,1,12,1,12,15,2,7,4,11,3,3,3,10,4,14,9,13,3,5,10,0,2,8,7,13,7,11,12,1,14", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"4\", \"11\", \"3\", \"3\"], \"clip_start\": 40.0, \"clip_end\": 45.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,5,2,9,15,15,4,10,3,7,8,6,7,4,4,9,10,6,12,10,4,5,2,6,3,11,9,14,0,3,9,11,11,1,12,1,12,15,2,7,4,11,3,3,3,10,4,14,9,13,3,5,10,0,2,8,7,13,7,11,12,1,14", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 31.0, \"clip_end\": 37.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,5,2,9,15,15,4,10,3,7,8,6,7,4,4,9,10,6,12,10,4,5,2,6,3,11,9,14,0,3,9,11,11,1,12,1,12,15,2,7,4,11,3,3,3,10,4,14,9,13,3,5,10,0,2,8,7,13,7,11,12,1,14", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"15\", \"15\", \"4\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,5,2,9,15,15,4,10,3,7,8,6,7,4,4,9,10,6,12,10,4,5,2,6,3,11,9,14,0,3,9,11,11,1,12,1,12,15,2,7,4,11,3,3,3,10,4,14,9,13,3,5,10,0,2,8,7,13,7,11,12,1,14", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"10\", \"4\", \"14\"], \"clip_start\": 44.0, \"clip_end\": 49.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,5,2,9,15,15,4,10,3,7,8,6,7,4,4,9,10,6,12,10,4,5,2,6,3,11,9,14,0,3,9,11,11,1,12,1,12,15,2,7,4,11,3,3,3,10,4,14,9,13,3,5,10,0,2,8,7,13,7,11,12,1,14", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"6\", \"3\", \"12\", \"5\"], \"clip_start\": 50.0, \"clip_end\": 56.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,10,11,14,8,5,2,15,7,8,9,11,13,13,7,9,1,1,7,7,4,7,0,10,0,1,8,2,4,10,2,8,10,9,10,5,5,2,1,10,7,14,9,13,3,9,13,3,3,3,6,10,6,3,12,5,12,15,13,14,4,2,3,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"13\"], \"clip_start\": 11.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,10,11,14,8,5,2,15,7,8,9,11,13,13,7,9,1,1,7,7,4,7,0,10,0,1,8,2,4,10,2,8,10,9,10,5,5,2,1,10,7,14,9,13,3,9,13,3,3,3,6,10,6,3,12,5,12,15,13,14,4,2,3,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"3\", \"12\", \"5\"], \"clip_start\": 51.0, \"clip_end\": 56.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,10,11,14,8,5,2,15,7,8,9,11,13,13,7,9,1,1,7,7,4,7,0,10,0,1,8,2,4,10,2,8,10,9,10,5,5,2,1,10,7,14,9,13,3,9,13,3,3,3,6,10,6,3,12,5,12,15,13,14,4,2,3,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"9\", \"13\"], \"clip_start\": 43.0, \"clip_end\": 47.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,10,11,14,8,5,2,15,7,8,9,11,13,13,7,9,1,1,7,7,4,7,0,10,0,1,8,2,4,10,2,8,10,9,10,5,5,2,1,10,7,14,9,13,3,9,13,3,3,3,6,10,6,3,12,5,12,15,13,14,4,2,3,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 8.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,10,11,14,8,5,2,15,7,8,9,11,13,13,7,9,1,1,7,7,4,7,0,10,0,1,8,2,4,10,2,8,10,9,10,5,5,2,1,10,7,14,9,13,3,9,13,3,3,3,6,10,6,3,12,5,12,15,13,14,4,2,3,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"7\", \"4\", \"7\", \"0\", \"10\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,10,11,14,8,5,2,15,7,8,9,11,13,13,7,9,1,1,7,7,4,7,0,10,0,1,8,2,4,10,2,8,10,9,10,5,5,2,1,10,7,14,9,13,3,9,13,3,3,3,6,10,6,3,12,5,12,15,13,14,4,2,3,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"14\", \"9\"], \"clip_start\": 39.0, \"clip_end\": 43.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,10,11,14,8,5,2,15,7,8,9,11,13,13,7,9,1,1,7,7,4,7,0,10,0,1,8,2,4,10,2,8,10,9,10,5,5,2,1,10,7,14,9,13,3,9,13,3,3,3,6,10,6,3,12,5,12,15,13,14,4,2,3,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"4\", \"8\", \"6\", \"0\"], \"clip_start\": 52.0, \"clip_end\": 58.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,10,11,14,8,5,2,15,7,8,9,11,13,13,7,9,1,1,7,7,4,7,0,10,0,1,8,2,4,10,2,8,10,9,10,5,5,2,1,10,7,14,9,13,3,9,13,3,3,3,6,10,6,3,12,5,12,15,13,14,4,2,3,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"7\"], \"clip_start\": 11.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q8_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,10,11,14,8,5,2,15,7,8,9,11,13,13,7,9,1,1,7,7,4,7,0,10,0,1,8,2,4,10,2,8,10,9,10,5,5,2,1,10,7,14,9,13,3,9,13,3,3,3,6,10,6,3,12,5,12,15,13,14,4,2,3,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\", \"15\"], \"clip_start\": 20.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q9_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,10,11,14,8,5,2,15,7,8,9,11,13,13,7,9,1,1,7,7,4,7,0,10,0,1,8,2,4,10,2,8,10,9,10,5,5,2,1,10,7,14,9,13,3,9,13,3,3,3,6,10,6,3,12,5,12,15,13,14,4,2,3,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"1\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q10_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,10,11,14,8,5,2,15,7,8,9,11,13,13,7,9,1,1,7,7,4,7,0,10,0,1,8,2,4,10,2,8,10,9,10,5,5,2,1,10,7,14,9,13,3,9,13,3,3,3,6,10,6,3,12,5,12,15,13,14,4,2,3,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"1\", \"10\", \"7\", \"14\"], \"clip_start\": 36.0, \"clip_end\": 42.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q11_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,10,11,14,8,5,2,15,7,8,9,11,13,13,7,9,1,1,7,7,4,7,0,10,0,1,8,2,4,10,2,8,10,9,10,5,5,2,1,10,7,14,9,13,3,9,13,3,3,3,6,10,6,3,12,5,12,15,13,14,4,2,3,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"8\", \"2\", \"5\"], \"clip_start\": 52.0, \"clip_end\": 58.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q12_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,10,11,14,8,5,2,15,7,8,9,11,13,13,7,9,1,1,7,7,4,7,0,10,0,1,8,2,4,10,2,8,10,9,10,5,5,2,1,10,7,14,9,13,3,9,13,3,3,3,6,10,6,3,12,5,12,15,13,14,4,2,3,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"14\", \"9\"], \"clip_start\": 39.0, \"clip_end\": 43.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q13_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,10,11,14,8,5,2,15,7,8,9,11,13,13,7,9,1,1,7,7,4,7,0,10,0,1,8,2,4,10,2,8,10,9,10,5,5,2,1,10,7,14,9,13,3,9,13,3,3,3,6,10,6,3,12,5,12,15,13,14,4,2,3,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"5\", \"2\", \"15\", \"7\", \"8\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q14_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,10,11,14,8,5,2,15,7,8,9,11,13,13,7,9,1,1,7,7,4,7,0,10,0,1,8,2,4,10,2,8,10,9,10,5,5,2,1,10,7,14,9,13,3,9,13,3,3,3,6,10,6,3,12,5,12,15,13,14,4,2,3,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"11\", \"12\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q15_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,10,11,14,8,5,2,15,7,8,9,11,13,13,7,9,1,1,7,7,4,7,0,10,0,1,8,2,4,10,2,8,10,9,10,5,5,2,1,10,7,14,9,13,3,9,13,3,3,3,6,10,6,3,12,5,12,15,13,14,4,2,3,8", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"9\", \"9\", \"4\"], \"clip_start\": 54.0, \"clip_end\": 59.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,13,7,12,3,10,6,9,6,1,14,10,9,5,9,7,8,11,10,13,9,9,0,11,9,5,15,13,8,9,1,3,10,8,3,8,11,15,14,5,9,1,6,13,13,6,7,12,11,13,0,13,10,3,9,9,4,12,5,9,7,1", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"12\", \"11\", \"13\"], \"clip_start\": 47.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,13,7,12,3,10,6,9,6,1,14,10,9,5,9,7,8,11,10,13,9,9,0,11,9,5,15,13,8,9,1,3,10,8,3,8,11,15,14,5,9,1,6,13,13,6,7,12,11,13,0,13,10,3,9,9,4,12,5,9,7,1", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"6\", \"1\", \"14\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,13,7,12,3,10,6,9,6,1,14,10,9,5,9,7,8,11,10,13,9,9,0,11,9,5,15,13,8,9,1,3,10,8,3,8,11,15,14,5,9,1,6,13,13,6,7,12,11,13,0,13,10,3,9,9,4,12,5,9,7,1", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 16.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,13,7,12,3,10,6,9,6,1,14,10,9,5,9,7,8,11,10,13,9,9,0,11,9,5,15,13,8,9,1,3,10,8,3,8,11,15,14,5,9,1,6,13,13,6,7,12,11,13,0,13,10,3,9,9,4,12,5,9,7,1", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"13\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q4_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,13,7,12,3,10,6,9,6,1,14,10,9,5,9,7,8,11,10,13,9,9,0,11,9,5,15,13,8,9,1,3,10,8,3,8,11,15,14,5,9,1,6,13,13,6,7,12,11,13,0,13,10,3,9,9,4,12,5,9,7,1", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"11\", \"6\", \"1\"], \"clip_start\": 56.0, \"clip_end\": 61.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q5_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,13,7,12,3,10,6,9,6,1,14,10,9,5,9,7,8,11,10,13,9,9,0,11,9,5,15,13,8,9,1,3,10,8,3,8,11,15,14,5,9,1,6,13,13,6,7,12,11,13,0,13,10,3,9,9,4,12,5,9,7,1", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"5\", \"9\"], \"clip_start\": 58.0, \"clip_end\": 62.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q6_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,13,7,12,3,10,6,9,6,1,14,10,9,5,9,7,8,11,10,13,9,9,0,11,9,5,15,13,8,9,1,3,10,8,3,8,11,15,14,5,9,1,6,13,13,6,7,12,11,13,0,13,10,3,9,9,4,12,5,9,7,1", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"9\", \"9\", \"4\"], \"clip_start\": 54.0, \"clip_end\": 59.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q7_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,13,7,12,3,10,6,9,6,1,14,10,9,5,9,7,8,11,10,13,9,9,0,11,9,5,15,13,8,9,1,3,10,8,3,8,11,15,14,5,9,1,6,13,13,6,7,12,11,13,0,13,10,3,9,9,4,12,5,9,7,1", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"8\", \"11\", \"15\"], \"clip_start\": 35.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,13,7,12,3,10,6,9,6,1,14,10,9,5,9,7,8,11,10,13,9,9,0,11,9,5,15,13,8,9,1,3,10,8,3,8,11,15,14,5,9,1,6,13,13,6,7,12,11,13,0,13,10,3,9,9,4,12,5,9,7,1", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"8\", \"11\", \"15\", \"14\"], \"clip_start\": 35.0, \"clip_end\": 41.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,13,7,12,3,10,6,9,6,1,14,10,9,5,9,7,8,11,10,13,9,9,0,11,9,5,15,13,8,9,1,3,10,8,3,8,11,15,14,5,9,1,6,13,13,6,7,12,11,13,0,13,10,3,9,9,4,12,5,9,7,1", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"6\", \"7\", \"12\", \"11\", \"13\"], \"clip_start\": 46.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q10_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,13,7,12,3,10,6,9,6,1,14,10,9,5,9,7,8,11,10,13,9,9,0,11,9,5,15,13,8,9,1,3,10,8,3,8,11,15,14,5,9,1,6,13,13,6,7,12,11,13,0,13,10,3,9,9,4,12,5,9,7,1", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"6\", \"9\", \"6\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,13,7,12,3,10,6,9,6,1,14,10,9,5,9,7,8,11,10,13,9,9,0,11,9,5,15,13,8,9,1,3,10,8,3,8,11,15,14,5,9,1,6,13,13,6,7,12,11,13,0,13,10,3,9,9,4,12,5,9,7,1", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"3\", \"5\"], \"clip_start\": 55.0, \"clip_end\": 59.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q12_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,13,7,12,3,10,6,9,6,1,14,10,9,5,9,7,8,11,10,13,9,9,0,11,9,5,15,13,8,9,1,3,10,8,3,8,11,15,14,5,9,1,6,13,13,6,7,12,11,13,0,13,10,3,9,9,4,12,5,9,7,1", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"10\", \"11\", \"0\", \"0\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q13_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,13,7,12,3,10,6,9,6,1,14,10,9,5,9,7,8,11,10,13,9,9,0,11,9,5,15,13,8,9,1,3,10,8,3,8,11,15,14,5,9,1,6,13,13,6,7,12,11,13,0,13,10,3,9,9,4,12,5,9,7,1", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"13\", \"6\", \"7\"], \"clip_start\": 45.0, \"clip_end\": 49.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q14_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,13,7,12,3,10,6,9,6,1,14,10,9,5,9,7,8,11,10,13,9,9,0,11,9,5,15,13,8,9,1,3,10,8,3,8,11,15,14,5,9,1,6,13,13,6,7,12,11,13,0,13,10,3,9,9,4,12,5,9,7,1", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"10\", \"9\", \"5\", \"9\", \"7\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q15_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,13,7,12,3,10,6,9,6,1,14,10,9,5,9,7,8,11,10,13,9,9,0,11,9,5,15,13,8,9,1,3,10,8,3,8,11,15,14,5,9,1,6,13,13,6,7,12,11,13,0,13,10,3,9,9,4,12,5,9,7,1", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"1\", \"4\"], \"clip_start\": 53.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,4,9,15,0,15,0,1,8,13,9,4,8,15,5,6,15,13,14,15,12,9,13,8,14,10,4,13,1,4,8,14,13,4,7,14,7,6,6,4,2,12,2,3,0,0,10,3,2,0,13,4,13,4,1,4,7,8,14,1,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"2\", \"3\", \"0\", \"0\"], \"clip_start\": 42.0, \"clip_end\": 47.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,4,9,15,0,15,0,1,8,13,9,4,8,15,5,6,15,13,14,15,12,9,13,8,14,10,4,13,1,4,8,14,13,4,7,14,7,6,6,4,2,12,2,3,0,0,10,3,2,0,13,4,13,4,1,4,7,8,14,1,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"7\", \"6\", \"6\"], \"clip_start\": 35.0, \"clip_end\": 40.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,4,9,15,0,15,0,1,8,13,9,4,8,15,5,6,15,13,14,15,12,9,13,8,14,10,4,13,1,4,8,14,13,4,7,14,7,6,6,4,2,12,2,3,0,0,10,3,2,0,13,4,13,4,1,4,7,8,14,1,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"15\", \"0\", \"15\", \"0\", \"1\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,4,9,15,0,15,0,1,8,13,9,4,8,15,5,6,15,13,14,15,12,9,13,8,14,10,4,13,1,4,8,14,13,4,7,14,7,6,6,4,2,12,2,3,0,0,10,3,2,0,13,4,13,4,1,4,7,8,14,1,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"4\"], \"clip_start\": 50.0, \"clip_end\": 53.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,4,9,15,0,15,0,1,8,13,9,4,8,15,5,6,15,13,14,15,12,9,13,8,14,10,4,13,1,4,8,14,13,4,7,14,7,6,6,4,2,12,2,3,0,0,10,3,2,0,13,4,13,4,1,4,7,8,14,1,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\", \"1\"], \"clip_start\": 60.0, \"clip_end\": 64.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q5_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,4,9,15,0,15,0,1,8,13,9,4,8,15,5,6,15,13,14,15,12,9,13,8,14,10,4,13,1,4,8,14,13,4,7,14,7,6,6,4,2,12,2,3,0,0,10,3,2,0,13,4,13,4,1,4,7,8,14,1,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"5\", \"7\", \"3\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q6_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,4,9,15,0,15,0,1,8,13,9,4,8,15,5,6,15,13,14,15,12,9,13,8,14,10,4,13,1,4,8,14,13,4,7,14,7,6,6,4,2,12,2,3,0,0,10,3,2,0,13,4,13,4,1,4,7,8,14,1,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"7\", \"8\", \"14\", \"1\"], \"clip_start\": 56.0, \"clip_end\": 61.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,4,9,15,0,15,0,1,8,13,9,4,8,15,5,6,15,13,14,15,12,9,13,8,14,10,4,13,1,4,8,14,13,4,7,14,7,6,6,4,2,12,2,3,0,0,10,3,2,0,13,4,13,4,1,4,7,8,14,1,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"14\", \"10\", \"4\", \"13\", \"1\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q8_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,4,9,15,0,15,0,1,8,13,9,4,8,15,5,6,15,13,14,15,12,9,13,8,14,10,4,13,1,4,8,14,13,4,7,14,7,6,6,4,2,12,2,3,0,0,10,3,2,0,13,4,13,4,1,4,7,8,14,1,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"1\", \"4\"], \"clip_start\": 54.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,4,9,15,0,15,0,1,8,13,9,4,8,15,5,6,15,13,14,15,12,9,13,8,14,10,4,13,1,4,8,14,13,4,7,14,7,6,6,4,2,12,2,3,0,0,10,3,2,0,13,4,13,4,1,4,7,8,14,1,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"13\", \"14\", \"15\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q10_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,4,9,15,0,15,0,1,8,13,9,4,8,15,5,6,15,13,14,15,12,9,13,8,14,10,4,13,1,4,8,14,13,4,7,14,7,6,6,4,2,12,2,3,0,0,10,3,2,0,13,4,13,4,1,4,7,8,14,1,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"13\", \"1\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q11_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,4,9,15,0,15,0,1,8,13,9,4,8,15,5,6,15,13,14,15,12,9,13,8,14,10,4,13,1,4,8,14,13,4,7,14,7,6,6,4,2,12,2,3,0,0,10,3,2,0,13,4,13,4,1,4,7,8,14,1,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"10\", \"5\", \"10\", \"7\"], \"clip_start\": 51.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q12_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,4,9,15,0,15,0,1,8,13,9,4,8,15,5,6,15,13,14,15,12,9,13,8,14,10,4,13,1,4,8,14,13,4,7,14,7,6,6,4,2,12,2,3,0,0,10,3,2,0,13,4,13,4,1,4,7,8,14,1,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"15\", \"0\", \"0\", \"10\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q13_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,4,9,15,0,15,0,1,8,13,9,4,8,15,5,6,15,13,14,15,12,9,13,8,14,10,4,13,1,4,8,14,13,4,7,14,7,6,6,4,2,12,2,3,0,0,10,3,2,0,13,4,13,4,1,4,7,8,14,1,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"13\", \"8\"], \"clip_start\": 21.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,4,9,15,0,15,0,1,8,13,9,4,8,15,5,6,15,13,14,15,12,9,13,8,14,10,4,13,1,4,8,14,13,4,7,14,7,6,6,4,2,12,2,3,0,0,10,3,2,0,13,4,13,4,1,4,7,8,14,1,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"8\", \"5\", \"10\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q15_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,4,9,15,0,15,0,1,8,13,9,4,8,15,5,6,15,13,14,15,12,9,13,8,14,10,4,13,1,4,8,14,13,4,7,14,7,6,6,4,2,12,2,3,0,0,10,3,2,0,13,4,13,4,1,4,7,8,14,1,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"3\"], \"clip_start\": 53.0, \"clip_end\": 56.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,15,0,3,13,3,7,4,15,3,6,15,2,5,11,6,7,6,12,13,8,15,10,12,3,5,9,7,2,13,2,5,14,4,2,15,9,4,9,5,4,4,7,2,11,6,6,6,15,8,1,13,6,7,3,5,9,14,14,8,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,15,0,3,13,3,7,4,15,3,6,15,2,5,11,6,7,6,12,13,8,15,10,12,3,5,9,7,2,13,2,5,14,4,2,15,9,4,9,5,4,4,7,2,11,6,6,6,15,8,1,13,6,7,3,5,9,14,14,8,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"6\", \"6\"], \"clip_start\": 44.0, \"clip_end\": 48.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,15,0,3,13,3,7,4,15,3,6,15,2,5,11,6,7,6,12,13,8,15,10,12,3,5,9,7,2,13,2,5,14,4,2,15,9,4,9,5,4,4,7,2,11,6,6,6,15,8,1,13,6,7,3,5,9,14,14,8,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"11\", \"6\"], \"clip_start\": 43.0, \"clip_end\": 47.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,15,0,3,13,3,7,4,15,3,6,15,2,5,11,6,7,6,12,13,8,15,10,12,3,5,9,7,2,13,2,5,14,4,2,15,9,4,9,5,4,4,7,2,11,6,6,6,15,8,1,13,6,7,3,5,9,14,14,8,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"2\", \"15\", \"9\", \"4\"], \"clip_start\": 33.0, \"clip_end\": 39.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,15,0,3,13,3,7,4,15,3,6,15,2,5,11,6,7,6,12,13,8,15,10,12,3,5,9,7,2,13,2,5,14,4,2,15,9,4,9,5,4,4,7,2,11,6,6,6,15,8,1,13,6,7,3,5,9,14,14,8,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"7\", \"2\", \"11\"], \"clip_start\": 42.0, \"clip_end\": 46.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,15,0,3,13,3,7,4,15,3,6,15,2,5,11,6,7,6,12,13,8,15,10,12,3,5,9,7,2,13,2,5,14,4,2,15,9,4,9,5,4,4,7,2,11,6,6,6,15,8,1,13,6,7,3,5,9,14,14,8,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"6\", \"6\"], \"clip_start\": 44.0, \"clip_end\": 48.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,15,0,3,13,3,7,4,15,3,6,15,2,5,11,6,7,6,12,13,8,15,10,12,3,5,9,7,2,13,2,5,14,4,2,15,9,4,9,5,4,4,7,2,11,6,6,6,15,8,1,13,6,7,3,5,9,14,14,8,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"5\", \"11\", \"6\", \"7\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,15,0,3,13,3,7,4,15,3,6,15,2,5,11,6,7,6,12,13,8,15,10,12,3,5,9,7,2,13,2,5,14,4,2,15,9,4,9,5,4,4,7,2,11,6,6,6,15,8,1,13,6,7,3,5,9,14,14,8,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"4\", \"9\", \"5\"], \"clip_start\": 37.0, \"clip_end\": 41.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,15,0,3,13,3,7,4,15,3,6,15,2,5,11,6,7,6,12,13,8,15,10,12,3,5,9,7,2,13,2,5,14,4,2,15,9,4,9,5,4,4,7,2,11,6,6,6,15,8,1,13,6,7,3,5,9,14,14,8,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"3\"], \"clip_start\": 29.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,15,0,3,13,3,7,4,15,3,6,15,2,5,11,6,7,6,12,13,8,15,10,12,3,5,9,7,2,13,2,5,14,4,2,15,9,4,9,5,4,4,7,2,11,6,6,6,15,8,1,13,6,7,3,5,9,14,14,8,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\"], \"clip_start\": 26.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,15,0,3,13,3,7,4,15,3,6,15,2,5,11,6,7,6,12,13,8,15,10,12,3,5,9,7,2,13,2,5,14,4,2,15,9,4,9,5,4,4,7,2,11,6,6,6,15,8,1,13,6,7,3,5,9,14,14,8,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"11\"], \"clip_start\": 61.0, \"clip_end\": 64.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,15,0,3,13,3,7,4,15,3,6,15,2,5,11,6,7,6,12,13,8,15,10,12,3,5,9,7,2,13,2,5,14,4,2,15,9,4,9,5,4,4,7,2,11,6,6,6,15,8,1,13,6,7,3,5,9,14,14,8,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"6\", \"7\"], \"clip_start\": 51.0, \"clip_end\": 55.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,15,0,3,13,3,7,4,15,3,6,15,2,5,11,6,7,6,12,13,8,15,10,12,3,5,9,7,2,13,2,5,14,4,2,15,9,4,9,5,4,4,7,2,11,6,6,6,15,8,1,13,6,7,3,5,9,14,14,8,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"3\", \"5\", \"9\", \"14\"], \"clip_start\": 53.0, \"clip_end\": 59.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q13_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,15,0,3,13,3,7,4,15,3,6,15,2,5,11,6,7,6,12,13,8,15,10,12,3,5,9,7,2,13,2,5,14,4,2,15,9,4,9,5,4,4,7,2,11,6,6,6,15,8,1,13,6,7,3,5,9,14,14,8,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"14\", \"8\"], \"clip_start\": 57.0, \"clip_end\": 61.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q14_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,15,0,3,13,3,7,4,15,3,6,15,2,5,11,6,7,6,12,13,8,15,10,12,3,5,9,7,2,13,2,5,14,4,2,15,9,4,9,5,4,4,7,2,11,6,6,6,15,8,1,13,6,7,3,5,9,14,14,8,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"6\", \"6\", \"6\"], \"clip_start\": 44.0, \"clip_end\": 49.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q15_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,1,15,0,3,13,3,7,4,15,3,6,15,2,5,11,6,7,6,12,13,8,15,10,12,3,5,9,7,2,13,2,5,14,4,2,15,9,4,9,5,4,4,7,2,11,6,6,6,15,8,1,13,6,7,3,5,9,14,14,8,1,15,12", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"1\", \"10\", \"7\", \"5\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,15,5,4,9,1,13,3,9,11,4,10,13,1,11,0,5,2,7,11,13,1,9,15,7,9,1,10,7,5,8,1,4,0,2,6,12,6,0,5,4,4,11,4,9,2,8,14,0,9,14,3,8,11,8,2,11,11,12,10,10,5,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"1\", \"10\", \"7\", \"5\", \"8\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,15,5,4,9,1,13,3,9,11,4,10,13,1,11,0,5,2,7,11,13,1,9,15,7,9,1,10,7,5,8,1,4,0,2,6,12,6,0,5,4,4,11,4,9,2,8,14,0,9,14,3,8,11,8,2,11,11,12,10,10,5,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"0\", \"5\", \"4\", \"4\"], \"clip_start\": 38.0, \"clip_end\": 43.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,15,5,4,9,1,13,3,9,11,4,10,13,1,11,0,5,2,7,11,13,1,9,15,7,9,1,10,7,5,8,1,4,0,2,6,12,6,0,5,4,4,11,4,9,2,8,14,0,9,14,3,8,11,8,2,11,11,12,10,10,5,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"9\", \"1\", \"10\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,15,5,4,9,1,13,3,9,11,4,10,13,1,11,0,5,2,7,11,13,1,9,15,7,9,1,10,7,5,8,1,4,0,2,6,12,6,0,5,4,4,11,4,9,2,8,14,0,9,14,3,8,11,8,2,11,11,12,10,10,5,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"14\", \"0\", \"9\", \"14\", \"3\"], \"clip_start\": 47.0, \"clip_end\": 53.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,15,5,4,9,1,13,3,9,11,4,10,13,1,11,0,5,2,7,11,13,1,9,15,7,9,1,10,7,5,8,1,4,0,2,6,12,6,0,5,4,4,11,4,9,2,8,14,0,9,14,3,8,11,8,2,11,11,12,10,10,5,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 48.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,15,5,4,9,1,13,3,9,11,4,10,13,1,11,0,5,2,7,11,13,1,9,15,7,9,1,10,7,5,8,1,4,0,2,6,12,6,0,5,4,4,11,4,9,2,8,14,0,9,14,3,8,11,8,2,11,11,12,10,10,5,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"14\", \"3\", \"8\", \"11\"], \"clip_start\": 49.0, \"clip_end\": 55.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,15,5,4,9,1,13,3,9,11,4,10,13,1,11,0,5,2,7,11,13,1,9,15,7,9,1,10,7,5,8,1,4,0,2,6,12,6,0,5,4,4,11,4,9,2,8,14,0,9,14,3,8,11,8,2,11,11,12,10,10,5,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,15,5,4,9,1,13,3,9,11,4,10,13,1,11,0,5,2,7,11,13,1,9,15,7,9,1,10,7,5,8,1,4,0,2,6,12,6,0,5,4,4,11,4,9,2,8,14,0,9,14,3,8,11,8,2,11,11,12,10,10,5,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"3\", \"9\", \"11\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,15,5,4,9,1,13,3,9,11,4,10,13,1,11,0,5,2,7,11,13,1,9,15,7,9,1,10,7,5,8,1,4,0,2,6,12,6,0,5,4,4,11,4,9,2,8,14,0,9,14,3,8,11,8,2,11,11,12,10,10,5,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"0\", \"5\", \"4\"], \"clip_start\": 37.0, \"clip_end\": 42.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,15,5,4,9,1,13,3,9,11,4,10,13,1,11,0,5,2,7,11,13,1,9,15,7,9,1,10,7,5,8,1,4,0,2,6,12,6,0,5,4,4,11,4,9,2,8,14,0,9,14,3,8,11,8,2,11,11,12,10,10,5,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,15,5,4,9,1,13,3,9,11,4,10,13,1,11,0,5,2,7,11,13,1,9,15,7,9,1,10,7,5,8,1,4,0,2,6,12,6,0,5,4,4,11,4,9,2,8,14,0,9,14,3,8,11,8,2,11,11,12,10,10,5,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"10\", \"13\", \"1\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,15,5,4,9,1,13,3,9,11,4,10,13,1,11,0,5,2,7,11,13,1,9,15,7,9,1,10,7,5,8,1,4,0,2,6,12,6,0,5,4,4,11,4,9,2,8,14,0,9,14,3,8,11,8,2,11,11,12,10,10,5,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"5\", \"2\", \"7\", \"11\"], \"clip_start\": 16.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,15,5,4,9,1,13,3,9,11,4,10,13,1,11,0,5,2,7,11,13,1,9,15,7,9,1,10,7,5,8,1,4,0,2,6,12,6,0,5,4,4,11,4,9,2,8,14,0,9,14,3,8,11,8,2,11,11,12,10,10,5,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"4\", \"9\", \"2\"], \"clip_start\": 42.0, \"clip_end\": 47.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,15,5,4,9,1,13,3,9,11,4,10,13,1,11,0,5,2,7,11,13,1,9,15,7,9,1,10,7,5,8,1,4,0,2,6,12,6,0,5,4,4,11,4,9,2,8,14,0,9,14,3,8,11,8,2,11,11,12,10,10,5,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 32.0, \"clip_end\": 38.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,15,5,4,9,1,13,3,9,11,4,10,13,1,11,0,5,2,7,11,13,1,9,15,7,9,1,10,7,5,8,1,4,0,2,6,12,6,0,5,4,4,11,4,9,2,8,14,0,9,14,3,8,11,8,2,11,11,12,10,10,5,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"12\"], \"clip_start\": 35.0, \"clip_end\": 38.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q15_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,15,5,4,9,1,13,3,9,11,4,10,13,1,11,0,5,2,7,11,13,1,9,15,7,9,1,10,7,5,8,1,4,0,2,6,12,6,0,5,4,4,11,4,9,2,8,14,0,9,14,3,8,11,8,2,11,11,12,10,10,5,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"4\", \"10\"], \"clip_start\": 48.0, \"clip_end\": 52.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,11,7,11,13,15,7,4,9,1,5,14,1,11,1,12,4,14,13,3,5,7,12,13,9,2,6,10,6,14,5,0,3,4,1,2,12,2,1,13,6,10,11,1,9,14,6,5,2,4,10,5,6,1,8,7,3,3,3,15,6,3,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 57.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,11,7,11,13,15,7,4,9,1,5,14,1,11,1,12,4,14,13,3,5,7,12,13,9,2,6,10,6,14,5,0,3,4,1,2,12,2,1,13,6,10,11,1,9,14,6,5,2,4,10,5,6,1,8,7,3,3,3,15,6,3,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,11,7,11,13,15,7,4,9,1,5,14,1,11,1,12,4,14,13,3,5,7,12,13,9,2,6,10,6,14,5,0,3,4,1,2,12,2,1,13,6,10,11,1,9,14,6,5,2,4,10,5,6,1,8,7,3,3,3,15,6,3,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"2\", \"1\", \"13\"], \"clip_start\": 36.0, \"clip_end\": 41.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,11,7,11,13,15,7,4,9,1,5,14,1,11,1,12,4,14,13,3,5,7,12,13,9,2,6,10,6,14,5,0,3,4,1,2,12,2,1,13,6,10,11,1,9,14,6,5,2,4,10,5,6,1,8,7,3,3,3,15,6,3,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 46.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,11,7,11,13,15,7,4,9,1,5,14,1,11,1,12,4,14,13,3,5,7,12,13,9,2,6,10,6,14,5,0,3,4,1,2,12,2,1,13,6,10,11,1,9,14,6,5,2,4,10,5,6,1,8,7,3,3,3,15,6,3,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 56.0, \"clip_end\": 61.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,11,7,11,13,15,7,4,9,1,5,14,1,11,1,12,4,14,13,3,5,7,12,13,9,2,6,10,6,14,5,0,3,4,1,2,12,2,1,13,6,10,11,1,9,14,6,5,2,4,10,5,6,1,8,7,3,3,3,15,6,3,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"1\"], \"clip_start\": 42.0, \"clip_end\": 45.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,11,7,11,13,15,7,4,9,1,5,14,1,11,1,12,4,14,13,3,5,7,12,13,9,2,6,10,6,14,5,0,3,4,1,2,12,2,1,13,6,10,11,1,9,14,6,5,2,4,10,5,6,1,8,7,3,3,3,15,6,3,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"6\", \"10\", \"11\", \"1\"], \"clip_start\": 40.0, \"clip_end\": 45.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,11,7,11,13,15,7,4,9,1,5,14,1,11,1,12,4,14,13,3,5,7,12,13,9,2,6,10,6,14,5,0,3,4,1,2,12,2,1,13,6,10,11,1,9,14,6,5,2,4,10,5,6,1,8,7,3,3,3,15,6,3,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"8\", \"7\"], \"clip_start\": 54.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,11,7,11,13,15,7,4,9,1,5,14,1,11,1,12,4,14,13,3,5,7,12,13,9,2,6,10,6,14,5,0,3,4,1,2,12,2,1,13,6,10,11,1,9,14,6,5,2,4,10,5,6,1,8,7,3,3,3,15,6,3,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"13\", \"15\"], \"clip_start\": 3.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q9_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,11,7,11,13,15,7,4,9,1,5,14,1,11,1,12,4,14,13,3,5,7,12,13,9,2,6,10,6,14,5,0,3,4,1,2,12,2,1,13,6,10,11,1,9,14,6,5,2,4,10,5,6,1,8,7,3,3,3,15,6,3,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"11\", \"7\", \"11\", \"13\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q10_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,11,7,11,13,15,7,4,9,1,5,14,1,11,1,12,4,14,13,3,5,7,12,13,9,2,6,10,6,14,5,0,3,4,1,2,12,2,1,13,6,10,11,1,9,14,6,5,2,4,10,5,6,1,8,7,3,3,3,15,6,3,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"14\", \"13\"], \"clip_start\": 16.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q11_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,11,7,11,13,15,7,4,9,1,5,14,1,11,1,12,4,14,13,3,5,7,12,13,9,2,6,10,6,14,5,0,3,4,1,2,12,2,1,13,6,10,11,1,9,14,6,5,2,4,10,5,6,1,8,7,3,3,3,15,6,3,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"14\", \"6\", \"5\", \"2\"], \"clip_start\": 44.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q12_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,11,7,11,13,15,7,4,9,1,5,14,1,11,1,12,4,14,13,3,5,7,12,13,9,2,6,10,6,14,5,0,3,4,1,2,12,2,1,13,6,10,11,1,9,14,6,5,2,4,10,5,6,1,8,7,3,3,3,15,6,3,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"4\", \"1\", \"2\"], \"clip_start\": 33.0, \"clip_end\": 37.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q13_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,11,7,11,13,15,7,4,9,1,5,14,1,11,1,12,4,14,13,3,5,7,12,13,9,2,6,10,6,14,5,0,3,4,1,2,12,2,1,13,6,10,11,1,9,14,6,5,2,4,10,5,6,1,8,7,3,3,3,15,6,3,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"11\", \"2\", \"3\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q14_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,11,7,11,13,15,7,4,9,1,5,14,1,11,1,12,4,14,13,3,5,7,12,13,9,2,6,10,6,14,5,0,3,4,1,2,12,2,1,13,6,10,11,1,9,14,6,5,2,4,10,5,6,1,8,7,3,3,3,15,6,3,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"13\", \"9\", \"14\"], \"clip_start\": 7.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q15_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,9,11,7,11,13,15,7,4,9,1,5,14,1,11,1,12,4,14,13,3,5,7,12,13,9,2,6,10,6,14,5,0,3,4,1,2,12,2,1,13,6,10,11,1,9,14,6,5,2,4,10,5,6,1,8,7,3,3,3,15,6,3,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"14\", \"14\", \"8\"], \"clip_start\": 27.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,7,14,13,4,4,6,13,4,4,8,9,14,0,15,2,5,13,8,1,14,11,5,4,0,9,13,4,14,14,8,5,0,12,5,5,9,10,4,3,15,1,12,11,6,0,4,6,5,9,13,3,9,13,13,9,0,1,3,6,1,7,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"1\", \"14\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,7,14,13,4,4,6,13,4,4,8,9,14,0,15,2,5,13,8,1,14,11,5,4,0,9,13,4,14,14,8,5,0,12,5,5,9,10,4,3,15,1,12,11,6,0,4,6,5,9,13,3,9,13,13,9,0,1,3,6,1,7,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"0\", \"4\", \"6\", \"5\"], \"clip_start\": 44.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,7,14,13,4,4,6,13,4,4,8,9,14,0,15,2,5,13,8,1,14,11,5,4,0,9,13,4,14,14,8,5,0,12,5,5,9,10,4,3,15,1,12,11,6,0,4,6,5,9,13,3,9,13,13,9,0,1,3,6,1,7,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"14\", \"0\", \"15\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,7,14,13,4,4,6,13,4,4,8,9,14,0,15,2,5,13,8,1,14,11,5,4,0,9,13,4,14,14,8,5,0,12,5,5,9,10,4,3,15,1,12,11,6,0,4,6,5,9,13,3,9,13,13,9,0,1,3,6,1,7,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"0\", \"4\", \"6\"], \"clip_start\": 44.0, \"clip_end\": 49.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,7,14,13,4,4,6,13,4,4,8,9,14,0,15,2,5,13,8,1,14,11,5,4,0,9,13,4,14,14,8,5,0,12,5,5,9,10,4,3,15,1,12,11,6,0,4,6,5,9,13,3,9,13,13,9,0,1,3,6,1,7,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"4\", \"6\", \"13\", \"4\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,7,14,13,4,4,6,13,4,4,8,9,14,0,15,2,5,13,8,1,14,11,5,4,0,9,13,4,14,14,8,5,0,12,5,5,9,10,4,3,15,1,12,11,6,0,4,6,5,9,13,3,9,13,13,9,0,1,3,6,1,7,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"4\", \"0\", \"9\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,7,14,13,4,4,6,13,4,4,8,9,14,0,15,2,5,13,8,1,14,11,5,4,0,9,13,4,14,14,8,5,0,12,5,5,9,10,4,3,15,1,12,11,6,0,4,6,5,9,13,3,9,13,13,9,0,1,3,6,1,7,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"13\", \"13\", \"9\"], \"clip_start\": 52.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,7,14,13,4,4,6,13,4,4,8,9,14,0,15,2,5,13,8,1,14,11,5,4,0,9,13,4,14,14,8,5,0,12,5,5,9,10,4,3,15,1,12,11,6,0,4,6,5,9,13,3,9,13,13,9,0,1,3,6,1,7,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"9\", \"13\"], \"clip_start\": 49.0, \"clip_end\": 52.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,7,14,13,4,4,6,13,4,4,8,9,14,0,15,2,5,13,8,1,14,11,5,4,0,9,13,4,14,14,8,5,0,12,5,5,9,10,4,3,15,1,12,11,6,0,4,6,5,9,13,3,9,13,13,9,0,1,3,6,1,7,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"5\", \"5\", \"9\", \"10\"], \"clip_start\": 33.0, \"clip_end\": 39.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,7,14,13,4,4,6,13,4,4,8,9,14,0,15,2,5,13,8,1,14,11,5,4,0,9,13,4,14,14,8,5,0,12,5,5,9,10,4,3,15,1,12,11,6,0,4,6,5,9,13,3,9,13,13,9,0,1,3,6,1,7,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"4\"], \"clip_start\": 26.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,7,14,13,4,4,6,13,4,4,8,9,14,0,15,2,5,13,8,1,14,11,5,4,0,9,13,4,14,14,8,5,0,12,5,5,9,10,4,3,15,1,12,11,6,0,4,6,5,9,13,3,9,13,13,9,0,1,3,6,1,7,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"4\", \"0\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,7,14,13,4,4,6,13,4,4,8,9,14,0,15,2,5,13,8,1,14,11,5,4,0,9,13,4,14,14,8,5,0,12,5,5,9,10,4,3,15,1,12,11,6,0,4,6,5,9,13,3,9,13,13,9,0,1,3,6,1,7,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"11\", \"5\", \"4\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,7,14,13,4,4,6,13,4,4,8,9,14,0,15,2,5,13,8,1,14,11,5,4,0,9,13,4,14,14,8,5,0,12,5,5,9,10,4,3,15,1,12,11,6,0,4,6,5,9,13,3,9,13,13,9,0,1,3,6,1,7,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"4\", \"14\", \"14\", \"8\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,7,14,13,4,4,6,13,4,4,8,9,14,0,15,2,5,13,8,1,14,11,5,4,0,9,13,4,14,14,8,5,0,12,5,5,9,10,4,3,15,1,12,11,6,0,4,6,5,9,13,3,9,13,13,9,0,1,3,6,1,7,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"14\", \"11\", \"5\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,7,14,13,4,4,6,13,4,4,8,9,14,0,15,2,5,13,8,1,14,11,5,4,0,9,13,4,14,14,8,5,0,12,5,5,9,10,4,3,15,1,12,11,6,0,4,6,5,9,13,3,9,13,13,9,0,1,3,6,1,7,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"6\", \"13\", \"4\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,7,14,13,4,4,6,13,4,4,8,9,14,0,15,2,5,13,8,1,14,11,5,4,0,9,13,4,14,14,8,5,0,12,5,5,9,10,4,3,15,1,12,11,6,0,4,6,5,9,13,3,9,13,13,9,0,1,3,6,1,7,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"2\", \"8\", \"8\"], \"clip_start\": 11.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,7,7,13,3,9,9,3,0,4,13,1,3,2,8,8,12,11,0,15,10,2,12,3,2,0,12,7,9,12,15,11,14,7,11,10,1,13,14,3,6,9,11,3,6,8,6,4,6,10,4,3,0,12,5,6,8,13,12,4,11,6,8,0", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"7\", \"11\", \"10\"], \"clip_start\": 31.0, \"clip_end\": 36.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,7,7,13,3,9,9,3,0,4,13,1,3,2,8,8,12,11,0,15,10,2,12,3,2,0,12,7,9,12,15,11,14,7,11,10,1,13,14,3,6,9,11,3,6,8,6,4,6,10,4,3,0,12,5,6,8,13,12,4,11,6,8,0", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"6\", \"8\", \"13\", \"12\"], \"clip_start\": 54.0, \"clip_end\": 59.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,7,7,13,3,9,9,3,0,4,13,1,3,2,8,8,12,11,0,15,10,2,12,3,2,0,12,7,9,12,15,11,14,7,11,10,1,13,14,3,6,9,11,3,6,8,6,4,6,10,4,3,0,12,5,6,8,13,12,4,11,6,8,0", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"3\", \"2\", \"8\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,7,7,13,3,9,9,3,0,4,13,1,3,2,8,8,12,11,0,15,10,2,12,3,2,0,12,7,9,12,15,11,14,7,11,10,1,13,14,3,6,9,11,3,6,8,6,4,6,10,4,3,0,12,5,6,8,13,12,4,11,6,8,0", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"7\", \"9\", \"12\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,7,7,13,3,9,9,3,0,4,13,1,3,2,8,8,12,11,0,15,10,2,12,3,2,0,12,7,9,12,15,11,14,7,11,10,1,13,14,3,6,9,11,3,6,8,6,4,6,10,4,3,0,12,5,6,8,13,12,4,11,6,8,0", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"8\", \"8\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,7,7,13,3,9,9,3,0,4,13,1,3,2,8,8,12,11,0,15,10,2,12,3,2,0,12,7,9,12,15,11,14,7,11,10,1,13,14,3,6,9,11,3,6,8,6,4,6,10,4,3,0,12,5,6,8,13,12,4,11,6,8,0", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 52.0, \"clip_end\": 55.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,7,7,13,3,9,9,3,0,4,13,1,3,2,8,8,12,11,0,15,10,2,12,3,2,0,12,7,9,12,15,11,14,7,11,10,1,13,14,3,6,9,11,3,6,8,6,4,6,10,4,3,0,12,5,6,8,13,12,4,11,6,8,0", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"0\", \"15\"], \"clip_start\": 16.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,7,7,13,3,9,9,3,0,4,13,1,3,2,8,8,12,11,0,15,10,2,12,3,2,0,12,7,9,12,15,11,14,7,11,10,1,13,14,3,6,9,11,3,6,8,6,4,6,10,4,3,0,12,5,6,8,13,12,4,11,6,8,0", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"11\", \"0\", \"15\"], \"clip_start\": 15.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,7,7,13,3,9,9,3,0,4,13,1,3,2,8,8,12,11,0,15,10,2,12,3,2,0,12,7,9,12,15,11,14,7,11,10,1,13,14,3,6,9,11,3,6,8,6,4,6,10,4,3,0,12,5,6,8,13,12,4,11,6,8,0", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"7\", \"9\", \"12\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,7,7,13,3,9,9,3,0,4,13,1,3,2,8,8,12,11,0,15,10,2,12,3,2,0,12,7,9,12,15,11,14,7,11,10,1,13,14,3,6,9,11,3,6,8,6,4,6,10,4,3,0,12,5,6,8,13,12,4,11,6,8,0", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"12\", \"15\", \"11\"], \"clip_start\": 27.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,7,7,13,3,9,9,3,0,4,13,1,3,2,8,8,12,11,0,15,10,2,12,3,2,0,12,7,9,12,15,11,14,7,11,10,1,13,14,3,6,9,11,3,6,8,6,4,6,10,4,3,0,12,5,6,8,13,12,4,11,6,8,0", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"11\", \"3\"], \"clip_start\": 40.0, \"clip_end\": 44.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,7,7,13,3,9,9,3,0,4,13,1,3,2,8,8,12,11,0,15,10,2,12,3,2,0,12,7,9,12,15,11,14,7,11,10,1,13,14,3,6,9,11,3,6,8,6,4,6,10,4,3,0,12,5,6,8,13,12,4,11,6,8,0", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\"], \"clip_start\": 19.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,7,7,13,3,9,9,3,0,4,13,1,3,2,8,8,12,11,0,15,10,2,12,3,2,0,12,7,9,12,15,11,14,7,11,10,1,13,14,3,6,9,11,3,6,8,6,4,6,10,4,3,0,12,5,6,8,13,12,4,11,6,8,0", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"0\", \"15\", \"10\", \"2\", \"12\"], \"clip_start\": 17.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q13_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,7,7,13,3,9,9,3,0,4,13,1,3,2,8,8,12,11,0,15,10,2,12,3,2,0,12,7,9,12,15,11,14,7,11,10,1,13,14,3,6,9,11,3,6,8,6,4,6,10,4,3,0,12,5,6,8,13,12,4,11,6,8,0", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"11\", \"6\", \"8\", \"0\"], \"clip_start\": 58.0, \"clip_end\": 64.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,7,7,13,3,9,9,3,0,4,13,1,3,2,8,8,12,11,0,15,10,2,12,3,2,0,12,7,9,12,15,11,14,7,11,10,1,13,14,3,6,9,11,3,6,8,6,4,6,10,4,3,0,12,5,6,8,13,12,4,11,6,8,0", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"4\", \"13\", \"1\", \"3\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,7,7,13,3,9,9,3,0,4,13,1,3,2,8,8,12,11,0,15,10,2,12,3,2,0,12,7,9,12,15,11,14,7,11,10,1,13,14,3,6,9,11,3,6,8,6,4,6,10,4,3,0,12,5,6,8,13,12,4,11,6,8,0", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 39.0, \"clip_end\": 43.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,9,12,10,13,6,2,14,3,3,10,9,0,2,2,9,15,3,6,8,9,3,3,5,8,2,14,9,15,0,14,4,1,6,12,3,6,2,4,8,9,9,3,8,1,1,14,5,2,8,7,12,6,12,11,2,8,11,14,7,8,5,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"6\", \"2\", \"4\"], \"clip_start\": 36.0, \"clip_end\": 40.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,9,12,10,13,6,2,14,3,3,10,9,0,2,2,9,15,3,6,8,9,3,3,5,8,2,14,9,15,0,14,4,1,6,12,3,6,2,4,8,9,9,3,8,1,1,14,5,2,8,7,12,6,12,11,2,8,11,14,7,8,5,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,9,12,10,13,6,2,14,3,3,10,9,0,2,2,9,15,3,6,8,9,3,3,5,8,2,14,9,15,0,14,4,1,6,12,3,6,2,4,8,9,9,3,8,1,1,14,5,2,8,7,12,6,12,11,2,8,11,14,7,8,5,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"6\", \"2\"], \"clip_start\": 35.0, \"clip_end\": 39.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,9,12,10,13,6,2,14,3,3,10,9,0,2,2,9,15,3,6,8,9,3,3,5,8,2,14,9,15,0,14,4,1,6,12,3,6,2,4,8,9,9,3,8,1,1,14,5,2,8,7,12,6,12,11,2,8,11,14,7,8,5,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"5\", \"2\"], \"clip_start\": 46.0, \"clip_end\": 50.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,9,12,10,13,6,2,14,3,3,10,9,0,2,2,9,15,3,6,8,9,3,3,5,8,2,14,9,15,0,14,4,1,6,12,3,6,2,4,8,9,9,3,8,1,1,14,5,2,8,7,12,6,12,11,2,8,11,14,7,8,5,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"1\", \"6\", \"12\"], \"clip_start\": 31.0, \"clip_end\": 36.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,9,12,10,13,6,2,14,3,3,10,9,0,2,2,9,15,3,6,8,9,3,3,5,8,2,14,9,15,0,14,4,1,6,12,3,6,2,4,8,9,9,3,8,1,1,14,5,2,8,7,12,6,12,11,2,8,11,14,7,8,5,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"14\", \"3\", \"3\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,9,12,10,13,6,2,14,3,3,10,9,0,2,2,9,15,3,6,8,9,3,3,5,8,2,14,9,15,0,14,4,1,6,12,3,6,2,4,8,9,9,3,8,1,1,14,5,2,8,7,12,6,12,11,2,8,11,14,7,8,5,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"10\", \"13\", \"6\"], \"clip_start\": 2.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,9,12,10,13,6,2,14,3,3,10,9,0,2,2,9,15,3,6,8,9,3,3,5,8,2,14,9,15,0,14,4,1,6,12,3,6,2,4,8,9,9,3,8,1,1,14,5,2,8,7,12,6,12,11,2,8,11,14,7,8,5,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"6\", \"12\", \"11\", \"2\"], \"clip_start\": 51.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,9,12,10,13,6,2,14,3,3,10,9,0,2,2,9,15,3,6,8,9,3,3,5,8,2,14,9,15,0,14,4,1,6,12,3,6,2,4,8,9,9,3,8,1,1,14,5,2,8,7,12,6,12,11,2,8,11,14,7,8,5,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"5\", \"2\", \"8\", \"7\"], \"clip_start\": 47.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,9,12,10,13,6,2,14,3,3,10,9,0,2,2,9,15,3,6,8,9,3,3,5,8,2,14,9,15,0,14,4,1,6,12,3,6,2,4,8,9,9,3,8,1,1,14,5,2,8,7,12,6,12,11,2,8,11,14,7,8,5,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"11\", \"2\"], \"clip_start\": 53.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,9,12,10,13,6,2,14,3,3,10,9,0,2,2,9,15,3,6,8,9,3,3,5,8,2,14,9,15,0,14,4,1,6,12,3,6,2,4,8,9,9,3,8,1,1,14,5,2,8,7,12,6,12,11,2,8,11,14,7,8,5,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,9,12,10,13,6,2,14,3,3,10,9,0,2,2,9,15,3,6,8,9,3,3,5,8,2,14,9,15,0,14,4,1,6,12,3,6,2,4,8,9,9,3,8,1,1,14,5,2,8,7,12,6,12,11,2,8,11,14,7,8,5,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"2\", \"8\"], \"clip_start\": 54.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,9,12,10,13,6,2,14,3,3,10,9,0,2,2,9,15,3,6,8,9,3,3,5,8,2,14,9,15,0,14,4,1,6,12,3,6,2,4,8,9,9,3,8,1,1,14,5,2,8,7,12,6,12,11,2,8,11,14,7,8,5,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"12\"], \"clip_start\": 58.0, \"clip_end\": 61.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,9,12,10,13,6,2,14,3,3,10,9,0,2,2,9,15,3,6,8,9,3,3,5,8,2,14,9,15,0,14,4,1,6,12,3,6,2,4,8,9,9,3,8,1,1,14,5,2,8,7,12,6,12,11,2,8,11,14,7,8,5,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"5\", \"8\", \"2\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q14_true_sequential.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,9,12,10,13,6,2,14,3,3,10,9,0,2,2,9,15,3,6,8,9,3,3,5,8,2,14,9,15,0,14,4,1,6,12,3,6,2,4,8,9,9,3,8,1,1,14,5,2,8,7,12,6,12,11,2,8,11,14,7,8,5,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L064_NO_RULES", "source_split": "substream_video", "length_L": 64, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"9\", \"0\", \"2\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q15_true_spatial.mp4", "video_path": "videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,5,9,12,10,13,6,2,14,3,3,10,9,0,2,2,9,15,3,6,8,9,3,3,5,8,2,14,9,15,0,14,4,1,6,12,3,6,2,4,8,9,9,3,8,1,1,14,5,2,8,7,12,6,12,11,2,8,11,14,7,8,5,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 1011.0, \"clip_end\": 1017.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,13,4,3,15,3,8,10,12,13,4,6,7,9,7,9,10,3,8,4,12,10,3,8,12,6,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,7,9,10,8,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,9,6,14,15,1,13,4,14,12,15,15,1,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,10,3,8,4,12,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,0,14,12,4,4,15,1,13,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,3,8,10,6,15,1,13,4,14,12,15,15,1,15,12,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,7,13,4,10,14,12,4,4,15,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,7,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,8,4,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,1,5,6,6,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,7,9,6,14,7,9,6,14,7,9,10,3,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,11,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"10\", \"3\"], \"clip_start\": 886.0, \"clip_end\": 890.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,13,4,3,15,3,8,10,12,13,4,6,7,9,7,9,10,3,8,4,12,10,3,8,12,6,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,7,9,10,8,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,9,6,14,15,1,13,4,14,12,15,15,1,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,10,3,8,4,12,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,0,14,12,4,4,15,1,13,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,3,8,10,6,15,1,13,4,14,12,15,15,1,15,12,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,7,13,4,10,14,12,4,4,15,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,7,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,8,4,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,1,5,6,6,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,7,9,6,14,7,9,6,14,7,9,10,3,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,11,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"13\"], \"clip_start\": 39.0, \"clip_end\": 42.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,13,4,3,15,3,8,10,12,13,4,6,7,9,7,9,10,3,8,4,12,10,3,8,12,6,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,7,9,10,8,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,9,6,14,15,1,13,4,14,12,15,15,1,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,10,3,8,4,12,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,0,14,12,4,4,15,1,13,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,3,8,10,6,15,1,13,4,14,12,15,15,1,15,12,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,7,13,4,10,14,12,4,4,15,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,7,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,8,4,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,1,5,6,6,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,7,9,6,14,7,9,6,14,7,9,10,3,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,11,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"4\", \"0\", \"14\", \"1\"], \"clip_start\": 680.0, \"clip_end\": 686.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q3_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,13,4,3,15,3,8,10,12,13,4,6,7,9,7,9,10,3,8,4,12,10,3,8,12,6,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,7,9,10,8,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,9,6,14,15,1,13,4,14,12,15,15,1,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,10,3,8,4,12,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,0,14,12,4,4,15,1,13,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,3,8,10,6,15,1,13,4,14,12,15,15,1,15,12,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,7,13,4,10,14,12,4,4,15,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,7,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,8,4,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,1,5,6,6,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,7,9,6,14,7,9,6,14,7,9,10,3,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,11,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"15\", \"1\"], \"clip_start\": 309.0, \"clip_end\": 313.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q4_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,13,4,3,15,3,8,10,12,13,4,6,7,9,7,9,10,3,8,4,12,10,3,8,12,6,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,7,9,10,8,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,9,6,14,15,1,13,4,14,12,15,15,1,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,10,3,8,4,12,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,0,14,12,4,4,15,1,13,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,3,8,10,6,15,1,13,4,14,12,15,15,1,15,12,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,7,13,4,10,14,12,4,4,15,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,7,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,8,4,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,1,5,6,6,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,7,9,6,14,7,9,6,14,7,9,10,3,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,11,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"1\", \"13\", \"4\", \"15\"], \"clip_start\": 247.0, \"clip_end\": 253.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,13,4,3,15,3,8,10,12,13,4,6,7,9,7,9,10,3,8,4,12,10,3,8,12,6,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,7,9,10,8,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,9,6,14,15,1,13,4,14,12,15,15,1,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,10,3,8,4,12,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,0,14,12,4,4,15,1,13,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,3,8,10,6,15,1,13,4,14,12,15,15,1,15,12,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,7,13,4,10,14,12,4,4,15,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,7,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,8,4,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,1,5,6,6,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,7,9,6,14,7,9,6,14,7,9,10,3,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,11,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"14\", \"12\", \"15\", \"11\", \"5\"], \"clip_start\": 926.0, \"clip_end\": 932.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,13,4,3,15,3,8,10,12,13,4,6,7,9,7,9,10,3,8,4,12,10,3,8,12,6,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,7,9,10,8,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,9,6,14,15,1,13,4,14,12,15,15,1,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,10,3,8,4,12,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,0,14,12,4,4,15,1,13,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,3,8,10,6,15,1,13,4,14,12,15,15,1,15,12,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,7,13,4,10,14,12,4,4,15,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,7,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,8,4,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,1,5,6,6,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,7,9,6,14,7,9,6,14,7,9,10,3,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,11,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"5\"], \"clip_start\": 862.0, \"clip_end\": 866.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q7_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,13,4,3,15,3,8,10,12,13,4,6,7,9,7,9,10,3,8,4,12,10,3,8,12,6,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,7,9,10,8,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,9,6,14,15,1,13,4,14,12,15,15,1,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,10,3,8,4,12,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,0,14,12,4,4,15,1,13,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,3,8,10,6,15,1,13,4,14,12,15,15,1,15,12,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,7,13,4,10,14,12,4,4,15,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,7,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,8,4,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,1,5,6,6,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,7,9,6,14,7,9,6,14,7,9,10,3,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,11,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"4\"], \"clip_start\": 473.0, \"clip_end\": 476.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,13,4,3,15,3,8,10,12,13,4,6,7,9,7,9,10,3,8,4,12,10,3,8,12,6,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,7,9,10,8,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,9,6,14,15,1,13,4,14,12,15,15,1,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,10,3,8,4,12,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,0,14,12,4,4,15,1,13,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,3,8,10,6,15,1,13,4,14,12,15,15,1,15,12,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,7,13,4,10,14,12,4,4,15,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,7,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,8,4,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,1,5,6,6,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,7,9,6,14,7,9,6,14,7,9,10,3,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,11,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"7\"], \"clip_start\": 750.0, \"clip_end\": 753.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,13,4,3,15,3,8,10,12,13,4,6,7,9,7,9,10,3,8,4,12,10,3,8,12,6,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,7,9,10,8,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,9,6,14,15,1,13,4,14,12,15,15,1,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,10,3,8,4,12,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,0,14,12,4,4,15,1,13,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,3,8,10,6,15,1,13,4,14,12,15,15,1,15,12,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,7,13,4,10,14,12,4,4,15,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,7,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,8,4,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,1,5,6,6,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,7,9,6,14,7,9,6,14,7,9,10,3,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,11,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"15\", \"1\", \"13\"], \"clip_start\": 131.0, \"clip_end\": 136.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q10_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,13,4,3,15,3,8,10,12,13,4,6,7,9,7,9,10,3,8,4,12,10,3,8,12,6,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,7,9,10,8,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,9,6,14,15,1,13,4,14,12,15,15,1,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,10,3,8,4,12,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,0,14,12,4,4,15,1,13,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,3,8,10,6,15,1,13,4,14,12,15,15,1,15,12,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,7,13,4,10,14,12,4,4,15,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,7,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,8,4,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,1,5,6,6,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,7,9,6,14,7,9,6,14,7,9,10,3,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,11,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"12\", \"6\", \"15\", \"1\"], \"clip_start\": 62.0, \"clip_end\": 68.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q11_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,13,4,3,15,3,8,10,12,13,4,6,7,9,7,9,10,3,8,4,12,10,3,8,12,6,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,7,9,10,8,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,9,6,14,15,1,13,4,14,12,15,15,1,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,10,3,8,4,12,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,0,14,12,4,4,15,1,13,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,3,8,10,6,15,1,13,4,14,12,15,15,1,15,12,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,7,13,4,10,14,12,4,4,15,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,7,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,8,4,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,1,5,6,6,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,7,9,6,14,7,9,6,14,7,9,10,3,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,11,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"1\", \"15\"], \"clip_start\": 155.0, \"clip_end\": 159.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q12_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,13,4,3,15,3,8,10,12,13,4,6,7,9,7,9,10,3,8,4,12,10,3,8,12,6,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,7,9,10,8,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,9,6,14,15,1,13,4,14,12,15,15,1,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,10,3,8,4,12,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,0,14,12,4,4,15,1,13,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,3,8,10,6,15,1,13,4,14,12,15,15,1,15,12,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,7,13,4,10,14,12,4,4,15,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,7,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,8,4,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,1,5,6,6,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,7,9,6,14,7,9,6,14,7,9,10,3,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,11,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"13\", \"4\", \"14\", \"12\"], \"clip_start\": 136.0, \"clip_end\": 142.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q13_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,13,4,3,15,3,8,10,12,13,4,6,7,9,7,9,10,3,8,4,12,10,3,8,12,6,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,7,9,10,8,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,9,6,14,15,1,13,4,14,12,15,15,1,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,10,3,8,4,12,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,0,14,12,4,4,15,1,13,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,3,8,10,6,15,1,13,4,14,12,15,15,1,15,12,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,7,13,4,10,14,12,4,4,15,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,7,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,8,4,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,1,5,6,6,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,7,9,6,14,7,9,6,14,7,9,10,3,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,11,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"15\", \"3\"], \"clip_start\": 969.0, \"clip_end\": 974.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q14_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,13,4,3,15,3,8,10,12,13,4,6,7,9,7,9,10,3,8,4,12,10,3,8,12,6,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,7,9,10,8,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,9,6,14,15,1,13,4,14,12,15,15,1,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,10,3,8,4,12,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,0,14,12,4,4,15,1,13,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,3,8,10,6,15,1,13,4,14,12,15,15,1,15,12,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,7,13,4,10,14,12,4,4,15,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,7,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,8,4,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,1,5,6,6,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,7,9,6,14,7,9,6,14,7,9,10,3,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,11,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"14\", \"12\", \"15\", \"15\", \"1\"], \"clip_start\": 948.0, \"clip_end\": 954.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q15_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,13,4,3,15,3,8,10,12,13,4,6,7,9,7,9,10,3,8,4,12,10,3,8,12,6,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,7,9,10,8,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,9,6,14,15,1,13,4,14,12,15,15,1,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,10,3,8,4,12,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,0,14,12,4,4,15,1,13,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,3,8,10,6,15,1,13,4,14,12,15,15,1,15,12,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,7,13,4,10,14,12,4,4,15,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,4,12,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,7,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,14,1,1,13,4,0,8,4,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,1,5,6,6,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,7,9,6,14,7,9,6,14,7,9,10,3,8,12,13,4,10,14,12,4,4,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,11,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,1,13,15,1,13,4,14,12,15,15,1,15,4,12,13,13,4,3,15,1,13,4,14,12,15,15,1,15,1,5,15,15,1,13,4,14,12,15,15,1,15,1,13,15,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"13\", \"9\", \"13\"], \"clip_start\": 433.0, \"clip_end\": 438.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,2,6,10,7,8,4,12,0,7,8,11,13,12,3,0,1,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,15,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,13,9,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,10,15,13,12,3,0,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,3,0,4,1,6,12,13,7,7,1,6,12,13,6,12,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,12,0,7,8,4,1,6,12,13,6,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,13,12,3,0,1,6,12,13,7,7,1,6,8,12,5,8,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,9,9,3,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,8,9,11,11,15,6,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,15,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,3,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"12\", \"13\", \"7\", \"7\"], \"clip_start\": 312.0, \"clip_end\": 318.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,2,6,10,7,8,4,12,0,7,8,11,13,12,3,0,1,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,15,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,13,9,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,10,15,13,12,3,0,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,3,0,4,1,6,12,13,7,7,1,6,12,13,6,12,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,12,0,7,8,4,1,6,12,13,6,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,13,12,3,0,1,6,12,13,7,7,1,6,8,12,5,8,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,9,9,3,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,8,9,11,11,15,6,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,15,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,3,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 992.0, \"clip_end\": 998.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,2,6,10,7,8,4,12,0,7,8,11,13,12,3,0,1,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,15,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,13,9,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,10,15,13,12,3,0,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,3,0,4,1,6,12,13,7,7,1,6,12,13,6,12,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,12,0,7,8,4,1,6,12,13,6,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,13,12,3,0,1,6,12,13,7,7,1,6,8,12,5,8,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,9,9,3,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,8,9,11,11,15,6,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,15,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,3,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"13\", \"7\", \"7\", \"1\"], \"clip_start\": 792.0, \"clip_end\": 798.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,2,6,10,7,8,4,12,0,7,8,11,13,12,3,0,1,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,15,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,13,9,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,10,15,13,12,3,0,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,3,0,4,1,6,12,13,7,7,1,6,12,13,6,12,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,12,0,7,8,4,1,6,12,13,6,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,13,12,3,0,1,6,12,13,7,7,1,6,8,12,5,8,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,9,9,3,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,8,9,11,11,15,6,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,15,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,3,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"1\", \"6\", \"12\", \"13\", \"7\"], \"clip_start\": 38.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,2,6,10,7,8,4,12,0,7,8,11,13,12,3,0,1,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,15,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,13,9,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,10,15,13,12,3,0,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,3,0,4,1,6,12,13,7,7,1,6,12,13,6,12,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,12,0,7,8,4,1,6,12,13,6,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,13,12,3,0,1,6,12,13,7,7,1,6,8,12,5,8,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,9,9,3,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,8,9,11,11,15,6,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,15,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,3,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"7\", \"1\", \"6\"], \"clip_start\": 636.0, \"clip_end\": 640.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,2,6,10,7,8,4,12,0,7,8,11,13,12,3,0,1,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,15,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,13,9,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,10,15,13,12,3,0,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,3,0,4,1,6,12,13,7,7,1,6,12,13,6,12,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,12,0,7,8,4,1,6,12,13,6,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,13,12,3,0,1,6,12,13,7,7,1,6,8,12,5,8,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,9,9,3,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,8,9,11,11,15,6,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,15,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,3,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"6\", \"7\", \"8\"], \"clip_start\": 964.0, \"clip_end\": 968.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,2,6,10,7,8,4,12,0,7,8,11,13,12,3,0,1,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,15,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,13,9,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,10,15,13,12,3,0,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,3,0,4,1,6,12,13,7,7,1,6,12,13,6,12,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,12,0,7,8,4,1,6,12,13,6,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,13,12,3,0,1,6,12,13,7,7,1,6,8,12,5,8,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,9,9,3,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,8,9,11,11,15,6,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,15,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,3,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 331.0, \"clip_end\": 337.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,2,6,10,7,8,4,12,0,7,8,11,13,12,3,0,1,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,15,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,13,9,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,10,15,13,12,3,0,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,3,0,4,1,6,12,13,7,7,1,6,12,13,6,12,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,12,0,7,8,4,1,6,12,13,6,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,13,12,3,0,1,6,12,13,7,7,1,6,8,12,5,8,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,9,9,3,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,8,9,11,11,15,6,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,15,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,3,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 785.0, \"clip_end\": 789.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,2,6,10,7,8,4,12,0,7,8,11,13,12,3,0,1,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,15,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,13,9,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,10,15,13,12,3,0,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,3,0,4,1,6,12,13,7,7,1,6,12,13,6,12,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,12,0,7,8,4,1,6,12,13,6,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,13,12,3,0,1,6,12,13,7,7,1,6,8,12,5,8,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,9,9,3,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,8,9,11,11,15,6,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,15,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,3,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"7\", \"7\", \"1\"], \"clip_start\": 357.0, \"clip_end\": 362.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,2,6,10,7,8,4,12,0,7,8,11,13,12,3,0,1,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,15,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,13,9,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,10,15,13,12,3,0,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,3,0,4,1,6,12,13,7,7,1,6,12,13,6,12,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,12,0,7,8,4,1,6,12,13,6,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,13,12,3,0,1,6,12,13,7,7,1,6,8,12,5,8,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,9,9,3,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,8,9,11,11,15,6,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,15,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,3,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"7\", \"1\", \"6\", \"12\"], \"clip_start\": 261.0, \"clip_end\": 267.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,2,6,10,7,8,4,12,0,7,8,11,13,12,3,0,1,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,15,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,13,9,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,10,15,13,12,3,0,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,3,0,4,1,6,12,13,7,7,1,6,12,13,6,12,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,12,0,7,8,4,1,6,12,13,6,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,13,12,3,0,1,6,12,13,7,7,1,6,8,12,5,8,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,9,9,3,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,8,9,11,11,15,6,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,15,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,3,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 59.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q11_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,2,6,10,7,8,4,12,0,7,8,11,13,12,3,0,1,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,15,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,13,9,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,10,15,13,12,3,0,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,3,0,4,1,6,12,13,7,7,1,6,12,13,6,12,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,12,0,7,8,4,1,6,12,13,6,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,13,12,3,0,1,6,12,13,7,7,1,6,8,12,5,8,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,9,9,3,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,8,9,11,11,15,6,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,15,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,3,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"13\", \"7\", \"7\"], \"clip_start\": 804.0, \"clip_end\": 809.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,2,6,10,7,8,4,12,0,7,8,11,13,12,3,0,1,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,15,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,13,9,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,10,15,13,12,3,0,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,3,0,4,1,6,12,13,7,7,1,6,12,13,6,12,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,12,0,7,8,4,1,6,12,13,6,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,13,12,3,0,1,6,12,13,7,7,1,6,8,12,5,8,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,9,9,3,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,8,9,11,11,15,6,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,15,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,3,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"7\", \"1\", \"6\"], \"clip_start\": 884.0, \"clip_end\": 888.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q13_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,2,6,10,7,8,4,12,0,7,8,11,13,12,3,0,1,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,15,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,13,9,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,10,15,13,12,3,0,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,3,0,4,1,6,12,13,7,7,1,6,12,13,6,12,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,12,0,7,8,4,1,6,12,13,6,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,13,12,3,0,1,6,12,13,7,7,1,6,8,12,5,8,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,9,9,3,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,8,9,11,11,15,6,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,15,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,3,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"12\"], \"clip_start\": 242.0, \"clip_end\": 246.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,2,6,10,7,8,4,12,0,7,8,11,13,12,3,0,1,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,15,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,13,9,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,10,15,13,12,3,0,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,3,0,4,1,6,12,13,7,7,1,6,12,13,6,12,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,12,0,7,8,4,1,6,12,13,6,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,13,12,3,0,1,6,12,13,7,7,1,6,8,12,5,8,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,9,9,3,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,8,9,11,11,15,6,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,15,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,3,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"7\", \"1\", \"6\", \"12\", \"13\"], \"clip_start\": 534.0, \"clip_end\": 540.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q15_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,2,6,10,7,8,4,12,0,7,8,11,13,12,3,0,1,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,15,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,14,4,13,1,1,6,12,13,9,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,10,15,13,12,3,0,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,12,0,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,3,0,4,1,6,12,13,7,7,1,6,12,13,6,12,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,12,0,7,8,4,1,6,12,13,6,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,13,12,3,0,1,6,12,13,7,7,1,6,8,12,5,8,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,9,9,3,0,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,5,13,12,3,0,1,6,12,13,7,7,1,6,12,13,8,9,11,11,15,6,7,8,4,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,15,13,12,3,0,14,4,13,1,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,7,1,6,12,13,7,3,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"7\", \"6\", \"7\", \"12\", \"2\"], \"clip_start\": 222.0, \"clip_end\": 228.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,13,11,7,8,9,5,10,0,3,12,6,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,7,13,11,4,12,10,10,14,7,10,14,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,4,7,12,2,14,7,10,14,0,3,6,15,9,3,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,1,12,10,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,2,1,15,13,6,15,7,4,12,4,9,3,14,7,0,3,12,6,5,14,7,10,14,2,1,12,10,10,14,7,2,14,7,10,14,0,8,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,4,5,14,2,1,15,4,12,4,9,3,14,8,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,14,5,14,7,0,3,12,6,5,14,7,15,13,5,2,11,15,13,5,2,11,2,7,13,11,1,15,7,7,6,7,12,2,1,15,10,8,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,8,13,11,4,7,12,2,7,13,11,4,7,13,11,7,8,9,5,14,7,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,0,3,12,11,2,14,7,0,3,12,6,5,14,7,14,7,10,14,1,14,7,10,14,0,3,6,15,13,4,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,3,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,10,13,11,7,8,9,5,14,8,13,11,4,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,7,12,2,7,13,11,7,8,9,5,14,7,10,14,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,12,10,10,3,1,12,10,0,3,12,6,5,14,7,0,2,1,12,10,2,13,11,7,8,9,5,14,7,10,14,3,1,15,13,10,2,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,5,2,11,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,9,3,13,11,7,14,7,10,14,0,3,12,10,2,13,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,15,13,8,7,13,11,4,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,3,1,12,10,10,14,7,10,3,13,11,4,7,12,2,0,3,3,5,14,5,14,7,10,14,0,3,8,7,13,11,10,8,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,0,3,3,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"8\", \"13\", \"11\"], \"clip_start\": 599.0, \"clip_end\": 604.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,13,11,7,8,9,5,10,0,3,12,6,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,7,13,11,4,12,10,10,14,7,10,14,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,4,7,12,2,14,7,10,14,0,3,6,15,9,3,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,1,12,10,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,2,1,15,13,6,15,7,4,12,4,9,3,14,7,0,3,12,6,5,14,7,10,14,2,1,12,10,10,14,7,2,14,7,10,14,0,8,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,4,5,14,2,1,15,4,12,4,9,3,14,8,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,14,5,14,7,0,3,12,6,5,14,7,15,13,5,2,11,15,13,5,2,11,2,7,13,11,1,15,7,7,6,7,12,2,1,15,10,8,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,8,13,11,4,7,12,2,7,13,11,4,7,13,11,7,8,9,5,14,7,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,0,3,12,11,2,14,7,0,3,12,6,5,14,7,14,7,10,14,1,14,7,10,14,0,3,6,15,13,4,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,3,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,10,13,11,7,8,9,5,14,8,13,11,4,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,7,12,2,7,13,11,7,8,9,5,14,7,10,14,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,12,10,10,3,1,12,10,0,3,12,6,5,14,7,0,2,1,12,10,2,13,11,7,8,9,5,14,7,10,14,3,1,15,13,10,2,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,5,2,11,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,9,3,13,11,7,14,7,10,14,0,3,12,10,2,13,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,15,13,8,7,13,11,4,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,3,1,12,10,10,14,7,10,3,13,11,4,7,12,2,0,3,3,5,14,5,14,7,10,14,0,3,8,7,13,11,10,8,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,0,3,3,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"8\", \"9\", \"5\", \"10\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,13,11,7,8,9,5,10,0,3,12,6,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,7,13,11,4,12,10,10,14,7,10,14,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,4,7,12,2,14,7,10,14,0,3,6,15,9,3,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,1,12,10,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,2,1,15,13,6,15,7,4,12,4,9,3,14,7,0,3,12,6,5,14,7,10,14,2,1,12,10,10,14,7,2,14,7,10,14,0,8,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,4,5,14,2,1,15,4,12,4,9,3,14,8,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,14,5,14,7,0,3,12,6,5,14,7,15,13,5,2,11,15,13,5,2,11,2,7,13,11,1,15,7,7,6,7,12,2,1,15,10,8,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,8,13,11,4,7,12,2,7,13,11,4,7,13,11,7,8,9,5,14,7,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,0,3,12,11,2,14,7,0,3,12,6,5,14,7,14,7,10,14,1,14,7,10,14,0,3,6,15,13,4,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,3,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,10,13,11,7,8,9,5,14,8,13,11,4,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,7,12,2,7,13,11,7,8,9,5,14,7,10,14,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,12,10,10,3,1,12,10,0,3,12,6,5,14,7,0,2,1,12,10,2,13,11,7,8,9,5,14,7,10,14,3,1,15,13,10,2,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,5,2,11,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,9,3,13,11,7,14,7,10,14,0,3,12,10,2,13,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,15,13,8,7,13,11,4,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,3,1,12,10,10,14,7,10,3,13,11,4,7,12,2,0,3,3,5,14,5,14,7,10,14,0,3,8,7,13,11,10,8,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,0,3,3,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"10\", \"14\", \"7\", \"10\"], \"clip_start\": 949.0, \"clip_end\": 954.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,13,11,7,8,9,5,10,0,3,12,6,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,7,13,11,4,12,10,10,14,7,10,14,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,4,7,12,2,14,7,10,14,0,3,6,15,9,3,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,1,12,10,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,2,1,15,13,6,15,7,4,12,4,9,3,14,7,0,3,12,6,5,14,7,10,14,2,1,12,10,10,14,7,2,14,7,10,14,0,8,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,4,5,14,2,1,15,4,12,4,9,3,14,8,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,14,5,14,7,0,3,12,6,5,14,7,15,13,5,2,11,15,13,5,2,11,2,7,13,11,1,15,7,7,6,7,12,2,1,15,10,8,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,8,13,11,4,7,12,2,7,13,11,4,7,13,11,7,8,9,5,14,7,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,0,3,12,11,2,14,7,0,3,12,6,5,14,7,14,7,10,14,1,14,7,10,14,0,3,6,15,13,4,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,3,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,10,13,11,7,8,9,5,14,8,13,11,4,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,7,12,2,7,13,11,7,8,9,5,14,7,10,14,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,12,10,10,3,1,12,10,0,3,12,6,5,14,7,0,2,1,12,10,2,13,11,7,8,9,5,14,7,10,14,3,1,15,13,10,2,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,5,2,11,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,9,3,13,11,7,14,7,10,14,0,3,12,10,2,13,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,15,13,8,7,13,11,4,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,3,1,12,10,10,14,7,10,3,13,11,4,7,12,2,0,3,3,5,14,5,14,7,10,14,0,3,8,7,13,11,10,8,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,0,3,3,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"7\", \"4\"], \"clip_start\": 694.0, \"clip_end\": 698.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,13,11,7,8,9,5,10,0,3,12,6,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,7,13,11,4,12,10,10,14,7,10,14,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,4,7,12,2,14,7,10,14,0,3,6,15,9,3,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,1,12,10,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,2,1,15,13,6,15,7,4,12,4,9,3,14,7,0,3,12,6,5,14,7,10,14,2,1,12,10,10,14,7,2,14,7,10,14,0,8,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,4,5,14,2,1,15,4,12,4,9,3,14,8,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,14,5,14,7,0,3,12,6,5,14,7,15,13,5,2,11,15,13,5,2,11,2,7,13,11,1,15,7,7,6,7,12,2,1,15,10,8,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,8,13,11,4,7,12,2,7,13,11,4,7,13,11,7,8,9,5,14,7,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,0,3,12,11,2,14,7,0,3,12,6,5,14,7,14,7,10,14,1,14,7,10,14,0,3,6,15,13,4,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,3,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,10,13,11,7,8,9,5,14,8,13,11,4,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,7,12,2,7,13,11,7,8,9,5,14,7,10,14,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,12,10,10,3,1,12,10,0,3,12,6,5,14,7,0,2,1,12,10,2,13,11,7,8,9,5,14,7,10,14,3,1,15,13,10,2,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,5,2,11,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,9,3,13,11,7,14,7,10,14,0,3,12,10,2,13,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,15,13,8,7,13,11,4,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,3,1,12,10,10,14,7,10,3,13,11,4,7,12,2,0,3,3,5,14,5,14,7,10,14,0,3,8,7,13,11,10,8,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,0,3,3,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"6\", \"5\", \"14\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q5_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,13,11,7,8,9,5,10,0,3,12,6,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,7,13,11,4,12,10,10,14,7,10,14,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,4,7,12,2,14,7,10,14,0,3,6,15,9,3,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,1,12,10,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,2,1,15,13,6,15,7,4,12,4,9,3,14,7,0,3,12,6,5,14,7,10,14,2,1,12,10,10,14,7,2,14,7,10,14,0,8,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,4,5,14,2,1,15,4,12,4,9,3,14,8,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,14,5,14,7,0,3,12,6,5,14,7,15,13,5,2,11,15,13,5,2,11,2,7,13,11,1,15,7,7,6,7,12,2,1,15,10,8,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,8,13,11,4,7,12,2,7,13,11,4,7,13,11,7,8,9,5,14,7,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,0,3,12,11,2,14,7,0,3,12,6,5,14,7,14,7,10,14,1,14,7,10,14,0,3,6,15,13,4,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,3,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,10,13,11,7,8,9,5,14,8,13,11,4,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,7,12,2,7,13,11,7,8,9,5,14,7,10,14,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,12,10,10,3,1,12,10,0,3,12,6,5,14,7,0,2,1,12,10,2,13,11,7,8,9,5,14,7,10,14,3,1,15,13,10,2,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,5,2,11,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,9,3,13,11,7,14,7,10,14,0,3,12,10,2,13,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,15,13,8,7,13,11,4,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,3,1,12,10,10,14,7,10,3,13,11,4,7,12,2,0,3,3,5,14,5,14,7,10,14,0,3,8,7,13,11,10,8,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,0,3,3,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"7\", \"6\", \"7\", \"13\"], \"clip_start\": 464.0, \"clip_end\": 469.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,13,11,7,8,9,5,10,0,3,12,6,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,7,13,11,4,12,10,10,14,7,10,14,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,4,7,12,2,14,7,10,14,0,3,6,15,9,3,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,1,12,10,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,2,1,15,13,6,15,7,4,12,4,9,3,14,7,0,3,12,6,5,14,7,10,14,2,1,12,10,10,14,7,2,14,7,10,14,0,8,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,4,5,14,2,1,15,4,12,4,9,3,14,8,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,14,5,14,7,0,3,12,6,5,14,7,15,13,5,2,11,15,13,5,2,11,2,7,13,11,1,15,7,7,6,7,12,2,1,15,10,8,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,8,13,11,4,7,12,2,7,13,11,4,7,13,11,7,8,9,5,14,7,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,0,3,12,11,2,14,7,0,3,12,6,5,14,7,14,7,10,14,1,14,7,10,14,0,3,6,15,13,4,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,3,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,10,13,11,7,8,9,5,14,8,13,11,4,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,7,12,2,7,13,11,7,8,9,5,14,7,10,14,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,12,10,10,3,1,12,10,0,3,12,6,5,14,7,0,2,1,12,10,2,13,11,7,8,9,5,14,7,10,14,3,1,15,13,10,2,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,5,2,11,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,9,3,13,11,7,14,7,10,14,0,3,12,10,2,13,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,15,13,8,7,13,11,4,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,3,1,12,10,10,14,7,10,3,13,11,4,7,12,2,0,3,3,5,14,5,14,7,10,14,0,3,8,7,13,11,10,8,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,0,3,3,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"13\", \"4\", \"11\", \"1\"], \"clip_start\": 50.0, \"clip_end\": 56.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,13,11,7,8,9,5,10,0,3,12,6,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,7,13,11,4,12,10,10,14,7,10,14,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,4,7,12,2,14,7,10,14,0,3,6,15,9,3,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,1,12,10,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,2,1,15,13,6,15,7,4,12,4,9,3,14,7,0,3,12,6,5,14,7,10,14,2,1,12,10,10,14,7,2,14,7,10,14,0,8,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,4,5,14,2,1,15,4,12,4,9,3,14,8,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,14,5,14,7,0,3,12,6,5,14,7,15,13,5,2,11,15,13,5,2,11,2,7,13,11,1,15,7,7,6,7,12,2,1,15,10,8,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,8,13,11,4,7,12,2,7,13,11,4,7,13,11,7,8,9,5,14,7,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,0,3,12,11,2,14,7,0,3,12,6,5,14,7,14,7,10,14,1,14,7,10,14,0,3,6,15,13,4,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,3,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,10,13,11,7,8,9,5,14,8,13,11,4,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,7,12,2,7,13,11,7,8,9,5,14,7,10,14,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,12,10,10,3,1,12,10,0,3,12,6,5,14,7,0,2,1,12,10,2,13,11,7,8,9,5,14,7,10,14,3,1,15,13,10,2,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,5,2,11,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,9,3,13,11,7,14,7,10,14,0,3,12,10,2,13,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,15,13,8,7,13,11,4,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,3,1,12,10,10,14,7,10,3,13,11,4,7,12,2,0,3,3,5,14,5,14,7,10,14,0,3,8,7,13,11,10,8,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,0,3,3,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"8\", \"9\", \"5\"], \"clip_start\": 450.0, \"clip_end\": 454.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q8_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,13,11,7,8,9,5,10,0,3,12,6,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,7,13,11,4,12,10,10,14,7,10,14,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,4,7,12,2,14,7,10,14,0,3,6,15,9,3,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,1,12,10,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,2,1,15,13,6,15,7,4,12,4,9,3,14,7,0,3,12,6,5,14,7,10,14,2,1,12,10,10,14,7,2,14,7,10,14,0,8,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,4,5,14,2,1,15,4,12,4,9,3,14,8,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,14,5,14,7,0,3,12,6,5,14,7,15,13,5,2,11,15,13,5,2,11,2,7,13,11,1,15,7,7,6,7,12,2,1,15,10,8,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,8,13,11,4,7,12,2,7,13,11,4,7,13,11,7,8,9,5,14,7,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,0,3,12,11,2,14,7,0,3,12,6,5,14,7,14,7,10,14,1,14,7,10,14,0,3,6,15,13,4,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,3,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,10,13,11,7,8,9,5,14,8,13,11,4,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,7,12,2,7,13,11,7,8,9,5,14,7,10,14,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,12,10,10,3,1,12,10,0,3,12,6,5,14,7,0,2,1,12,10,2,13,11,7,8,9,5,14,7,10,14,3,1,15,13,10,2,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,5,2,11,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,9,3,13,11,7,14,7,10,14,0,3,12,10,2,13,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,15,13,8,7,13,11,4,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,3,1,12,10,10,14,7,10,3,13,11,4,7,12,2,0,3,3,5,14,5,14,7,10,14,0,3,8,7,13,11,10,8,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,0,3,3,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"14\", \"0\", \"3\"], \"clip_start\": 202.0, \"clip_end\": 207.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q9_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,13,11,7,8,9,5,10,0,3,12,6,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,7,13,11,4,12,10,10,14,7,10,14,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,4,7,12,2,14,7,10,14,0,3,6,15,9,3,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,1,12,10,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,2,1,15,13,6,15,7,4,12,4,9,3,14,7,0,3,12,6,5,14,7,10,14,2,1,12,10,10,14,7,2,14,7,10,14,0,8,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,4,5,14,2,1,15,4,12,4,9,3,14,8,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,14,5,14,7,0,3,12,6,5,14,7,15,13,5,2,11,15,13,5,2,11,2,7,13,11,1,15,7,7,6,7,12,2,1,15,10,8,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,8,13,11,4,7,12,2,7,13,11,4,7,13,11,7,8,9,5,14,7,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,0,3,12,11,2,14,7,0,3,12,6,5,14,7,14,7,10,14,1,14,7,10,14,0,3,6,15,13,4,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,3,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,10,13,11,7,8,9,5,14,8,13,11,4,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,7,12,2,7,13,11,7,8,9,5,14,7,10,14,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,12,10,10,3,1,12,10,0,3,12,6,5,14,7,0,2,1,12,10,2,13,11,7,8,9,5,14,7,10,14,3,1,15,13,10,2,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,5,2,11,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,9,3,13,11,7,14,7,10,14,0,3,12,10,2,13,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,15,13,8,7,13,11,4,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,3,1,12,10,10,14,7,10,3,13,11,4,7,12,2,0,3,3,5,14,5,14,7,10,14,0,3,8,7,13,11,10,8,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,0,3,3,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"8\", \"9\", \"5\", \"14\", \"7\"], \"clip_start\": 729.0, \"clip_end\": 735.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q10_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,13,11,7,8,9,5,10,0,3,12,6,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,7,13,11,4,12,10,10,14,7,10,14,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,4,7,12,2,14,7,10,14,0,3,6,15,9,3,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,1,12,10,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,2,1,15,13,6,15,7,4,12,4,9,3,14,7,0,3,12,6,5,14,7,10,14,2,1,12,10,10,14,7,2,14,7,10,14,0,8,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,4,5,14,2,1,15,4,12,4,9,3,14,8,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,14,5,14,7,0,3,12,6,5,14,7,15,13,5,2,11,15,13,5,2,11,2,7,13,11,1,15,7,7,6,7,12,2,1,15,10,8,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,8,13,11,4,7,12,2,7,13,11,4,7,13,11,7,8,9,5,14,7,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,0,3,12,11,2,14,7,0,3,12,6,5,14,7,14,7,10,14,1,14,7,10,14,0,3,6,15,13,4,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,3,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,10,13,11,7,8,9,5,14,8,13,11,4,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,7,12,2,7,13,11,7,8,9,5,14,7,10,14,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,12,10,10,3,1,12,10,0,3,12,6,5,14,7,0,2,1,12,10,2,13,11,7,8,9,5,14,7,10,14,3,1,15,13,10,2,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,5,2,11,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,9,3,13,11,7,14,7,10,14,0,3,12,10,2,13,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,15,13,8,7,13,11,4,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,3,1,12,10,10,14,7,10,3,13,11,4,7,12,2,0,3,3,5,14,5,14,7,10,14,0,3,8,7,13,11,10,8,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,0,3,3,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"3\", \"12\", \"6\", \"5\", \"14\"], \"clip_start\": 531.0, \"clip_end\": 537.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q11_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,13,11,7,8,9,5,10,0,3,12,6,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,7,13,11,4,12,10,10,14,7,10,14,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,4,7,12,2,14,7,10,14,0,3,6,15,9,3,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,1,12,10,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,2,1,15,13,6,15,7,4,12,4,9,3,14,7,0,3,12,6,5,14,7,10,14,2,1,12,10,10,14,7,2,14,7,10,14,0,8,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,4,5,14,2,1,15,4,12,4,9,3,14,8,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,14,5,14,7,0,3,12,6,5,14,7,15,13,5,2,11,15,13,5,2,11,2,7,13,11,1,15,7,7,6,7,12,2,1,15,10,8,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,8,13,11,4,7,12,2,7,13,11,4,7,13,11,7,8,9,5,14,7,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,0,3,12,11,2,14,7,0,3,12,6,5,14,7,14,7,10,14,1,14,7,10,14,0,3,6,15,13,4,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,3,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,10,13,11,7,8,9,5,14,8,13,11,4,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,7,12,2,7,13,11,7,8,9,5,14,7,10,14,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,12,10,10,3,1,12,10,0,3,12,6,5,14,7,0,2,1,12,10,2,13,11,7,8,9,5,14,7,10,14,3,1,15,13,10,2,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,5,2,11,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,9,3,13,11,7,14,7,10,14,0,3,12,10,2,13,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,15,13,8,7,13,11,4,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,3,1,12,10,10,14,7,10,3,13,11,4,7,12,2,0,3,3,5,14,5,14,7,10,14,0,3,8,7,13,11,10,8,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,0,3,3,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"15\", \"13\", \"5\", \"2\"], \"clip_start\": 398.0, \"clip_end\": 404.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q12_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,13,11,7,8,9,5,10,0,3,12,6,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,7,13,11,4,12,10,10,14,7,10,14,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,4,7,12,2,14,7,10,14,0,3,6,15,9,3,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,1,12,10,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,2,1,15,13,6,15,7,4,12,4,9,3,14,7,0,3,12,6,5,14,7,10,14,2,1,12,10,10,14,7,2,14,7,10,14,0,8,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,4,5,14,2,1,15,4,12,4,9,3,14,8,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,14,5,14,7,0,3,12,6,5,14,7,15,13,5,2,11,15,13,5,2,11,2,7,13,11,1,15,7,7,6,7,12,2,1,15,10,8,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,8,13,11,4,7,12,2,7,13,11,4,7,13,11,7,8,9,5,14,7,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,0,3,12,11,2,14,7,0,3,12,6,5,14,7,14,7,10,14,1,14,7,10,14,0,3,6,15,13,4,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,3,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,10,13,11,7,8,9,5,14,8,13,11,4,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,7,12,2,7,13,11,7,8,9,5,14,7,10,14,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,12,10,10,3,1,12,10,0,3,12,6,5,14,7,0,2,1,12,10,2,13,11,7,8,9,5,14,7,10,14,3,1,15,13,10,2,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,5,2,11,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,9,3,13,11,7,14,7,10,14,0,3,12,10,2,13,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,15,13,8,7,13,11,4,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,3,1,12,10,10,14,7,10,3,13,11,4,7,12,2,0,3,3,5,14,5,14,7,10,14,0,3,8,7,13,11,10,8,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,0,3,3,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"9\", \"1\", \"6\"], \"clip_start\": 409.0, \"clip_end\": 414.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q13_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,13,11,7,8,9,5,10,0,3,12,6,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,7,13,11,4,12,10,10,14,7,10,14,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,4,7,12,2,14,7,10,14,0,3,6,15,9,3,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,1,12,10,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,2,1,15,13,6,15,7,4,12,4,9,3,14,7,0,3,12,6,5,14,7,10,14,2,1,12,10,10,14,7,2,14,7,10,14,0,8,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,4,5,14,2,1,15,4,12,4,9,3,14,8,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,14,5,14,7,0,3,12,6,5,14,7,15,13,5,2,11,15,13,5,2,11,2,7,13,11,1,15,7,7,6,7,12,2,1,15,10,8,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,8,13,11,4,7,12,2,7,13,11,4,7,13,11,7,8,9,5,14,7,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,0,3,12,11,2,14,7,0,3,12,6,5,14,7,14,7,10,14,1,14,7,10,14,0,3,6,15,13,4,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,3,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,10,13,11,7,8,9,5,14,8,13,11,4,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,7,12,2,7,13,11,7,8,9,5,14,7,10,14,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,12,10,10,3,1,12,10,0,3,12,6,5,14,7,0,2,1,12,10,2,13,11,7,8,9,5,14,7,10,14,3,1,15,13,10,2,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,5,2,11,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,9,3,13,11,7,14,7,10,14,0,3,12,10,2,13,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,15,13,8,7,13,11,4,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,3,1,12,10,10,14,7,10,3,13,11,4,7,12,2,0,3,3,5,14,5,14,7,10,14,0,3,8,7,13,11,10,8,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,0,3,3,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"15\", \"7\", \"7\", \"6\"], \"clip_start\": 371.0, \"clip_end\": 376.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q14_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,13,11,7,8,9,5,10,0,3,12,6,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,7,13,11,4,12,10,10,14,7,10,14,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,4,7,12,2,14,7,10,14,0,3,6,15,9,3,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,1,12,10,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,2,1,15,13,6,15,7,4,12,4,9,3,14,7,0,3,12,6,5,14,7,10,14,2,1,12,10,10,14,7,2,14,7,10,14,0,8,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,4,5,14,2,1,15,4,12,4,9,3,14,8,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,14,5,14,7,0,3,12,6,5,14,7,15,13,5,2,11,15,13,5,2,11,2,7,13,11,1,15,7,7,6,7,12,2,1,15,10,8,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,8,13,11,4,7,12,2,7,13,11,4,7,13,11,7,8,9,5,14,7,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,0,3,12,11,2,14,7,0,3,12,6,5,14,7,14,7,10,14,1,14,7,10,14,0,3,6,15,13,4,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,3,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,10,13,11,7,8,9,5,14,8,13,11,4,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,7,12,2,7,13,11,7,8,9,5,14,7,10,14,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,12,10,10,3,1,12,10,0,3,12,6,5,14,7,0,2,1,12,10,2,13,11,7,8,9,5,14,7,10,14,3,1,15,13,10,2,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,5,2,11,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,9,3,13,11,7,14,7,10,14,0,3,12,10,2,13,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,15,13,8,7,13,11,4,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,3,1,12,10,10,14,7,10,3,13,11,4,7,12,2,0,3,3,5,14,5,14,7,10,14,0,3,8,7,13,11,10,8,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,0,3,3,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"0\"], \"clip_start\": 433.0, \"clip_end\": 437.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q15_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,7,13,11,7,8,9,5,10,0,3,12,6,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,7,13,11,4,12,10,10,14,7,10,14,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,4,7,12,2,14,7,10,14,0,3,6,15,9,3,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,12,2,1,12,10,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,2,1,15,13,6,15,7,4,12,4,9,3,14,7,0,3,12,6,5,14,7,10,14,2,1,12,10,10,14,7,2,14,7,10,14,0,8,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,4,5,14,2,1,15,4,12,4,9,3,14,8,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,13,11,7,14,5,14,7,0,3,12,6,5,14,7,15,13,5,2,11,15,13,5,2,11,2,7,13,11,1,15,7,7,6,7,12,2,1,15,10,8,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,8,13,11,4,7,12,2,7,13,11,4,7,13,11,7,8,9,5,14,7,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,0,3,12,11,2,14,7,0,3,12,6,5,14,7,14,7,10,14,1,14,7,10,14,0,3,6,15,13,4,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,3,5,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,10,13,11,7,8,9,5,14,8,13,11,4,7,12,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,7,12,2,7,13,11,7,8,9,5,14,7,10,14,0,3,12,6,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1,15,7,7,6,7,13,11,7,8,9,5,14,7,0,3,12,6,5,14,7,9,3,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,4,12,10,10,3,1,12,10,0,3,12,6,5,14,7,0,2,1,12,10,2,13,11,7,8,9,5,14,7,10,14,3,1,15,13,10,2,13,11,7,8,9,5,14,7,10,14,0,3,6,15,6,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,6,15,13,5,2,11,2,14,7,10,14,0,3,6,15,6,15,13,4,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,7,10,14,0,3,6,15,9,3,13,11,7,14,7,10,14,0,3,12,10,2,13,11,1,15,7,7,6,7,13,11,4,7,12,2,1,15,13,6,15,7,4,15,13,8,7,13,11,4,7,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,11,3,1,12,10,10,14,7,10,3,13,11,4,7,12,2,0,3,3,5,14,5,14,7,10,14,0,3,8,7,13,11,10,8,7,13,11,4,7,12,2,1,15,13,6,15,7,4,12,4,9,3,14,0,3,3,13,11,7,14,7,10,14,0,3,6,15,6,15,13,4,10,10,6,15,13,4,11,1", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"2\", \"8\", \"8\", \"11\"], \"clip_start\": 701.0, \"clip_end\": 707.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,2,7,10,1,9,15,7,15,15,3,14,11,5,7,3,6,6,9,1,8,13,14,2,7,8,8,9,15,7,15,9,3,7,3,6,1,8,13,9,1,8,13,14,11,4,10,15,7,15,15,13,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,7,0,2,9,9,15,3,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,6,9,7,3,6,11,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,15,3,8,12,1,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,5,7,4,9,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,11,15,3,8,13,13,11,2,8,8,11,4,10,15,7,1,8,13,1,8,13,9,0,0,4,9,5,8,13,13,6,9,1,8,12,2,9,11,12,2,7,8,8,11,11,2,8,8,11,2,8,8,11,15,7,15,15,3,8,13,13,2,7,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,10,14,11,4,10,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,15,7,15,15,11,2,8,8,11,2,8,8,12,2,7,8,8,11,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,11,2,8,8,9,3,6,1,7,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,0,14,11,4,10,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,10,1,9,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,15,7,1,2,7,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,4,10,15,7,15,15,3,14,11,4,10,15,7,15,15,3,14,2,7,10,14,11,4,10,15,7,15,15,11,2,8,8,11,9,3,6,6,9,1,8,13,14,11,4,10,15,7,15,15,11,2,8,8,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,0,6,11,2,8,8,11,2,8,8,11,2,8,8,4,9,14,11,4,10,15,7,1,8,2,7,8,8,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"15\", \"15\", \"3\"], \"clip_start\": 645.0, \"clip_end\": 650.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,2,7,10,1,9,15,7,15,15,3,14,11,5,7,3,6,6,9,1,8,13,14,2,7,8,8,9,15,7,15,9,3,7,3,6,1,8,13,9,1,8,13,14,11,4,10,15,7,15,15,13,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,7,0,2,9,9,15,3,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,6,9,7,3,6,11,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,15,3,8,12,1,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,5,7,4,9,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,11,15,3,8,13,13,11,2,8,8,11,4,10,15,7,1,8,13,1,8,13,9,0,0,4,9,5,8,13,13,6,9,1,8,12,2,9,11,12,2,7,8,8,11,11,2,8,8,11,2,8,8,11,15,7,15,15,3,8,13,13,2,7,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,10,14,11,4,10,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,15,7,15,15,11,2,8,8,11,2,8,8,12,2,7,8,8,11,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,11,2,8,8,9,3,6,1,7,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,0,14,11,4,10,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,10,1,9,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,15,7,1,2,7,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,4,10,15,7,15,15,3,14,11,4,10,15,7,15,15,3,14,2,7,10,14,11,4,10,15,7,15,15,11,2,8,8,11,9,3,6,6,9,1,8,13,14,11,4,10,15,7,15,15,11,2,8,8,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,0,6,11,2,8,8,11,2,8,8,11,2,8,8,4,9,14,11,4,10,15,7,1,8,2,7,8,8,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"11\", \"4\", \"10\"], \"clip_start\": 948.0, \"clip_end\": 953.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,2,7,10,1,9,15,7,15,15,3,14,11,5,7,3,6,6,9,1,8,13,14,2,7,8,8,9,15,7,15,9,3,7,3,6,1,8,13,9,1,8,13,14,11,4,10,15,7,15,15,13,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,7,0,2,9,9,15,3,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,6,9,7,3,6,11,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,15,3,8,12,1,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,5,7,4,9,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,11,15,3,8,13,13,11,2,8,8,11,4,10,15,7,1,8,13,1,8,13,9,0,0,4,9,5,8,13,13,6,9,1,8,12,2,9,11,12,2,7,8,8,11,11,2,8,8,11,2,8,8,11,15,7,15,15,3,8,13,13,2,7,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,10,14,11,4,10,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,15,7,15,15,11,2,8,8,11,2,8,8,12,2,7,8,8,11,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,11,2,8,8,9,3,6,1,7,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,0,14,11,4,10,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,10,1,9,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,15,7,1,2,7,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,4,10,15,7,15,15,3,14,11,4,10,15,7,15,15,3,14,2,7,10,14,11,4,10,15,7,15,15,11,2,8,8,11,9,3,6,6,9,1,8,13,14,11,4,10,15,7,15,15,11,2,8,8,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,0,6,11,2,8,8,11,2,8,8,11,2,8,8,4,9,14,11,4,10,15,7,1,8,2,7,8,8,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"8\", \"8\", \"11\", \"2\"], \"clip_start\": 123.0, \"clip_end\": 128.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,2,7,10,1,9,15,7,15,15,3,14,11,5,7,3,6,6,9,1,8,13,14,2,7,8,8,9,15,7,15,9,3,7,3,6,1,8,13,9,1,8,13,14,11,4,10,15,7,15,15,13,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,7,0,2,9,9,15,3,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,6,9,7,3,6,11,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,15,3,8,12,1,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,5,7,4,9,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,11,15,3,8,13,13,11,2,8,8,11,4,10,15,7,1,8,13,1,8,13,9,0,0,4,9,5,8,13,13,6,9,1,8,12,2,9,11,12,2,7,8,8,11,11,2,8,8,11,2,8,8,11,15,7,15,15,3,8,13,13,2,7,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,10,14,11,4,10,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,15,7,15,15,11,2,8,8,11,2,8,8,12,2,7,8,8,11,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,11,2,8,8,9,3,6,1,7,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,0,14,11,4,10,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,10,1,9,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,15,7,1,2,7,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,4,10,15,7,15,15,3,14,11,4,10,15,7,15,15,3,14,2,7,10,14,11,4,10,15,7,15,15,11,2,8,8,11,9,3,6,6,9,1,8,13,14,11,4,10,15,7,15,15,11,2,8,8,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,0,6,11,2,8,8,11,2,8,8,11,2,8,8,4,9,14,11,4,10,15,7,1,8,2,7,8,8,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"2\"], \"clip_start\": 141.0, \"clip_end\": 144.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,2,7,10,1,9,15,7,15,15,3,14,11,5,7,3,6,6,9,1,8,13,14,2,7,8,8,9,15,7,15,9,3,7,3,6,1,8,13,9,1,8,13,14,11,4,10,15,7,15,15,13,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,7,0,2,9,9,15,3,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,6,9,7,3,6,11,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,15,3,8,12,1,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,5,7,4,9,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,11,15,3,8,13,13,11,2,8,8,11,4,10,15,7,1,8,13,1,8,13,9,0,0,4,9,5,8,13,13,6,9,1,8,12,2,9,11,12,2,7,8,8,11,11,2,8,8,11,2,8,8,11,15,7,15,15,3,8,13,13,2,7,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,10,14,11,4,10,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,15,7,15,15,11,2,8,8,11,2,8,8,12,2,7,8,8,11,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,11,2,8,8,9,3,6,1,7,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,0,14,11,4,10,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,10,1,9,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,15,7,1,2,7,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,4,10,15,7,15,15,3,14,11,4,10,15,7,15,15,3,14,2,7,10,14,11,4,10,15,7,15,15,11,2,8,8,11,9,3,6,6,9,1,8,13,14,11,4,10,15,7,15,15,11,2,8,8,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,0,6,11,2,8,8,11,2,8,8,11,2,8,8,4,9,14,11,4,10,15,7,1,8,2,7,8,8,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"8\", \"8\", \"11\", \"2\", \"10\"], \"clip_start\": 738.0, \"clip_end\": 744.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,2,7,10,1,9,15,7,15,15,3,14,11,5,7,3,6,6,9,1,8,13,14,2,7,8,8,9,15,7,15,9,3,7,3,6,1,8,13,9,1,8,13,14,11,4,10,15,7,15,15,13,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,7,0,2,9,9,15,3,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,6,9,7,3,6,11,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,15,3,8,12,1,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,5,7,4,9,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,11,15,3,8,13,13,11,2,8,8,11,4,10,15,7,1,8,13,1,8,13,9,0,0,4,9,5,8,13,13,6,9,1,8,12,2,9,11,12,2,7,8,8,11,11,2,8,8,11,2,8,8,11,15,7,15,15,3,8,13,13,2,7,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,10,14,11,4,10,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,15,7,15,15,11,2,8,8,11,2,8,8,12,2,7,8,8,11,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,11,2,8,8,9,3,6,1,7,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,0,14,11,4,10,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,10,1,9,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,15,7,1,2,7,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,4,10,15,7,15,15,3,14,11,4,10,15,7,15,15,3,14,2,7,10,14,11,4,10,15,7,15,15,11,2,8,8,11,9,3,6,6,9,1,8,13,14,11,4,10,15,7,15,15,11,2,8,8,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,0,6,11,2,8,8,11,2,8,8,11,2,8,8,4,9,14,11,4,10,15,7,1,8,2,7,8,8,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 533.0, \"clip_end\": 536.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,2,7,10,1,9,15,7,15,15,3,14,11,5,7,3,6,6,9,1,8,13,14,2,7,8,8,9,15,7,15,9,3,7,3,6,1,8,13,9,1,8,13,14,11,4,10,15,7,15,15,13,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,7,0,2,9,9,15,3,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,6,9,7,3,6,11,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,15,3,8,12,1,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,5,7,4,9,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,11,15,3,8,13,13,11,2,8,8,11,4,10,15,7,1,8,13,1,8,13,9,0,0,4,9,5,8,13,13,6,9,1,8,12,2,9,11,12,2,7,8,8,11,11,2,8,8,11,2,8,8,11,15,7,15,15,3,8,13,13,2,7,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,10,14,11,4,10,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,15,7,15,15,11,2,8,8,11,2,8,8,12,2,7,8,8,11,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,11,2,8,8,9,3,6,1,7,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,0,14,11,4,10,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,10,1,9,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,15,7,1,2,7,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,4,10,15,7,15,15,3,14,11,4,10,15,7,15,15,3,14,2,7,10,14,11,4,10,15,7,15,15,11,2,8,8,11,9,3,6,6,9,1,8,13,14,11,4,10,15,7,15,15,11,2,8,8,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,0,6,11,2,8,8,11,2,8,8,11,2,8,8,4,9,14,11,4,10,15,7,1,8,2,7,8,8,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"1\", \"8\", \"13\", \"9\", \"1\"], \"clip_start\": 254.0, \"clip_end\": 260.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,2,7,10,1,9,15,7,15,15,3,14,11,5,7,3,6,6,9,1,8,13,14,2,7,8,8,9,15,7,15,9,3,7,3,6,1,8,13,9,1,8,13,14,11,4,10,15,7,15,15,13,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,7,0,2,9,9,15,3,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,6,9,7,3,6,11,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,15,3,8,12,1,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,5,7,4,9,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,11,15,3,8,13,13,11,2,8,8,11,4,10,15,7,1,8,13,1,8,13,9,0,0,4,9,5,8,13,13,6,9,1,8,12,2,9,11,12,2,7,8,8,11,11,2,8,8,11,2,8,8,11,15,7,15,15,3,8,13,13,2,7,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,10,14,11,4,10,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,15,7,15,15,11,2,8,8,11,2,8,8,12,2,7,8,8,11,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,11,2,8,8,9,3,6,1,7,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,0,14,11,4,10,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,10,1,9,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,15,7,1,2,7,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,4,10,15,7,15,15,3,14,11,4,10,15,7,15,15,3,14,2,7,10,14,11,4,10,15,7,15,15,11,2,8,8,11,9,3,6,6,9,1,8,13,14,11,4,10,15,7,15,15,11,2,8,8,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,0,6,11,2,8,8,11,2,8,8,11,2,8,8,4,9,14,11,4,10,15,7,1,8,2,7,8,8,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"8\", \"8\", \"11\"], \"clip_start\": 811.0, \"clip_end\": 815.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,2,7,10,1,9,15,7,15,15,3,14,11,5,7,3,6,6,9,1,8,13,14,2,7,8,8,9,15,7,15,9,3,7,3,6,1,8,13,9,1,8,13,14,11,4,10,15,7,15,15,13,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,7,0,2,9,9,15,3,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,6,9,7,3,6,11,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,15,3,8,12,1,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,5,7,4,9,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,11,15,3,8,13,13,11,2,8,8,11,4,10,15,7,1,8,13,1,8,13,9,0,0,4,9,5,8,13,13,6,9,1,8,12,2,9,11,12,2,7,8,8,11,11,2,8,8,11,2,8,8,11,15,7,15,15,3,8,13,13,2,7,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,10,14,11,4,10,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,15,7,15,15,11,2,8,8,11,2,8,8,12,2,7,8,8,11,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,11,2,8,8,9,3,6,1,7,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,0,14,11,4,10,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,10,1,9,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,15,7,1,2,7,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,4,10,15,7,15,15,3,14,11,4,10,15,7,15,15,3,14,2,7,10,14,11,4,10,15,7,15,15,11,2,8,8,11,9,3,6,6,9,1,8,13,14,11,4,10,15,7,15,15,11,2,8,8,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,0,6,11,2,8,8,11,2,8,8,11,2,8,8,4,9,14,11,4,10,15,7,1,8,2,7,8,8,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"8\", \"8\"], \"clip_start\": 237.0, \"clip_end\": 241.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,2,7,10,1,9,15,7,15,15,3,14,11,5,7,3,6,6,9,1,8,13,14,2,7,8,8,9,15,7,15,9,3,7,3,6,1,8,13,9,1,8,13,14,11,4,10,15,7,15,15,13,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,7,0,2,9,9,15,3,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,6,9,7,3,6,11,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,15,3,8,12,1,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,5,7,4,9,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,11,15,3,8,13,13,11,2,8,8,11,4,10,15,7,1,8,13,1,8,13,9,0,0,4,9,5,8,13,13,6,9,1,8,12,2,9,11,12,2,7,8,8,11,11,2,8,8,11,2,8,8,11,15,7,15,15,3,8,13,13,2,7,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,10,14,11,4,10,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,15,7,15,15,11,2,8,8,11,2,8,8,12,2,7,8,8,11,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,11,2,8,8,9,3,6,1,7,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,0,14,11,4,10,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,10,1,9,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,15,7,1,2,7,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,4,10,15,7,15,15,3,14,11,4,10,15,7,15,15,3,14,2,7,10,14,11,4,10,15,7,15,15,11,2,8,8,11,9,3,6,6,9,1,8,13,14,11,4,10,15,7,15,15,11,2,8,8,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,0,6,11,2,8,8,11,2,8,8,11,2,8,8,4,9,14,11,4,10,15,7,1,8,2,7,8,8,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"15\", \"15\"], \"clip_start\": 961.0, \"clip_end\": 965.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,2,7,10,1,9,15,7,15,15,3,14,11,5,7,3,6,6,9,1,8,13,14,2,7,8,8,9,15,7,15,9,3,7,3,6,1,8,13,9,1,8,13,14,11,4,10,15,7,15,15,13,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,7,0,2,9,9,15,3,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,6,9,7,3,6,11,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,15,3,8,12,1,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,5,7,4,9,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,11,15,3,8,13,13,11,2,8,8,11,4,10,15,7,1,8,13,1,8,13,9,0,0,4,9,5,8,13,13,6,9,1,8,12,2,9,11,12,2,7,8,8,11,11,2,8,8,11,2,8,8,11,15,7,15,15,3,8,13,13,2,7,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,10,14,11,4,10,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,15,7,15,15,11,2,8,8,11,2,8,8,12,2,7,8,8,11,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,11,2,8,8,9,3,6,1,7,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,0,14,11,4,10,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,10,1,9,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,15,7,1,2,7,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,4,10,15,7,15,15,3,14,11,4,10,15,7,15,15,3,14,2,7,10,14,11,4,10,15,7,15,15,11,2,8,8,11,9,3,6,6,9,1,8,13,14,11,4,10,15,7,15,15,11,2,8,8,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,0,6,11,2,8,8,11,2,8,8,11,2,8,8,4,9,14,11,4,10,15,7,1,8,2,7,8,8,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 68.0, \"clip_end\": 74.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,2,7,10,1,9,15,7,15,15,3,14,11,5,7,3,6,6,9,1,8,13,14,2,7,8,8,9,15,7,15,9,3,7,3,6,1,8,13,9,1,8,13,14,11,4,10,15,7,15,15,13,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,7,0,2,9,9,15,3,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,6,9,7,3,6,11,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,15,3,8,12,1,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,5,7,4,9,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,11,15,3,8,13,13,11,2,8,8,11,4,10,15,7,1,8,13,1,8,13,9,0,0,4,9,5,8,13,13,6,9,1,8,12,2,9,11,12,2,7,8,8,11,11,2,8,8,11,2,8,8,11,15,7,15,15,3,8,13,13,2,7,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,10,14,11,4,10,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,15,7,15,15,11,2,8,8,11,2,8,8,12,2,7,8,8,11,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,11,2,8,8,9,3,6,1,7,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,0,14,11,4,10,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,10,1,9,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,15,7,1,2,7,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,4,10,15,7,15,15,3,14,11,4,10,15,7,15,15,3,14,2,7,10,14,11,4,10,15,7,15,15,11,2,8,8,11,9,3,6,6,9,1,8,13,14,11,4,10,15,7,15,15,11,2,8,8,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,0,6,11,2,8,8,11,2,8,8,11,2,8,8,4,9,14,11,4,10,15,7,1,8,2,7,8,8,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"2\", \"8\"], \"clip_start\": 53.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,2,7,10,1,9,15,7,15,15,3,14,11,5,7,3,6,6,9,1,8,13,14,2,7,8,8,9,15,7,15,9,3,7,3,6,1,8,13,9,1,8,13,14,11,4,10,15,7,15,15,13,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,7,0,2,9,9,15,3,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,6,9,7,3,6,11,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,15,3,8,12,1,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,5,7,4,9,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,11,15,3,8,13,13,11,2,8,8,11,4,10,15,7,1,8,13,1,8,13,9,0,0,4,9,5,8,13,13,6,9,1,8,12,2,9,11,12,2,7,8,8,11,11,2,8,8,11,2,8,8,11,15,7,15,15,3,8,13,13,2,7,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,10,14,11,4,10,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,15,7,15,15,11,2,8,8,11,2,8,8,12,2,7,8,8,11,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,11,2,8,8,9,3,6,1,7,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,0,14,11,4,10,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,10,1,9,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,15,7,1,2,7,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,4,10,15,7,15,15,3,14,11,4,10,15,7,15,15,3,14,2,7,10,14,11,4,10,15,7,15,15,11,2,8,8,11,9,3,6,6,9,1,8,13,14,11,4,10,15,7,15,15,11,2,8,8,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,0,6,11,2,8,8,11,2,8,8,11,2,8,8,4,9,14,11,4,10,15,7,1,8,2,7,8,8,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 1010.0, \"clip_end\": 1013.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,2,7,10,1,9,15,7,15,15,3,14,11,5,7,3,6,6,9,1,8,13,14,2,7,8,8,9,15,7,15,9,3,7,3,6,1,8,13,9,1,8,13,14,11,4,10,15,7,15,15,13,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,7,0,2,9,9,15,3,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,6,9,7,3,6,11,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,15,3,8,12,1,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,5,7,4,9,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,11,15,3,8,13,13,11,2,8,8,11,4,10,15,7,1,8,13,1,8,13,9,0,0,4,9,5,8,13,13,6,9,1,8,12,2,9,11,12,2,7,8,8,11,11,2,8,8,11,2,8,8,11,15,7,15,15,3,8,13,13,2,7,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,10,14,11,4,10,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,15,7,15,15,11,2,8,8,11,2,8,8,12,2,7,8,8,11,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,11,2,8,8,9,3,6,1,7,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,0,14,11,4,10,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,10,1,9,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,15,7,1,2,7,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,4,10,15,7,15,15,3,14,11,4,10,15,7,15,15,3,14,2,7,10,14,11,4,10,15,7,15,15,11,2,8,8,11,9,3,6,6,9,1,8,13,14,11,4,10,15,7,15,15,11,2,8,8,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,0,6,11,2,8,8,11,2,8,8,11,2,8,8,4,9,14,11,4,10,15,7,1,8,2,7,8,8,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"2\", \"0\"], \"clip_start\": 992.0, \"clip_end\": 996.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,2,7,10,1,9,15,7,15,15,3,14,11,5,7,3,6,6,9,1,8,13,14,2,7,8,8,9,15,7,15,9,3,7,3,6,1,8,13,9,1,8,13,14,11,4,10,15,7,15,15,13,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,7,0,2,9,9,15,3,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,6,9,7,3,6,11,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,15,3,8,12,1,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,5,7,4,9,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,11,15,3,8,13,13,11,2,8,8,11,4,10,15,7,1,8,13,1,8,13,9,0,0,4,9,5,8,13,13,6,9,1,8,12,2,9,11,12,2,7,8,8,11,11,2,8,8,11,2,8,8,11,15,7,15,15,3,8,13,13,2,7,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,10,14,11,4,10,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,15,7,15,15,11,2,8,8,11,2,8,8,12,2,7,8,8,11,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,11,2,8,8,9,3,6,1,7,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,0,14,11,4,10,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,10,1,9,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,15,7,1,2,7,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,4,10,15,7,15,15,3,14,11,4,10,15,7,15,15,3,14,2,7,10,14,11,4,10,15,7,15,15,11,2,8,8,11,9,3,6,6,9,1,8,13,14,11,4,10,15,7,15,15,11,2,8,8,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,0,6,11,2,8,8,11,2,8,8,11,2,8,8,4,9,14,11,4,10,15,7,1,8,2,7,8,8,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 321.0, \"clip_end\": 327.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,2,7,10,1,9,15,7,15,15,3,14,11,5,7,3,6,6,9,1,8,13,14,2,7,8,8,9,15,7,15,9,3,7,3,6,1,8,13,9,1,8,13,14,11,4,10,15,7,15,15,13,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,7,0,2,9,9,15,3,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,12,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,6,9,7,3,6,11,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,15,3,8,12,1,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,5,7,4,9,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,11,15,3,8,13,13,11,2,8,8,11,4,10,15,7,1,8,13,1,8,13,9,0,0,4,9,5,8,13,13,6,9,1,8,12,2,9,11,12,2,7,8,8,11,11,2,8,8,11,2,8,8,11,15,7,15,15,3,8,13,13,2,7,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,10,14,11,4,10,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,8,13,13,15,11,2,8,8,11,2,8,8,10,1,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,14,11,4,10,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,15,7,15,15,11,2,8,8,11,2,8,8,12,2,7,8,8,11,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,0,11,2,8,8,9,3,6,1,7,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,0,14,11,4,10,15,7,15,15,3,8,13,13,15,11,2,8,8,11,2,8,8,11,2,10,1,9,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,3,6,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,8,11,2,8,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,15,7,1,2,7,1,8,13,9,1,8,13,14,2,7,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,15,3,8,13,13,15,11,2,8,8,11,4,10,15,7,15,15,3,14,11,4,10,15,7,15,15,3,14,2,7,10,14,11,4,10,15,7,15,15,11,2,8,8,11,9,3,6,6,9,1,8,13,14,11,4,10,15,7,15,15,11,2,8,8,15,7,15,15,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,8,8,11,2,0,6,11,2,8,8,11,2,8,8,11,2,8,8,4,9,14,11,4,10,15,7,1,8,2,7,8,8,11", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"11\", \"14\", \"14\", \"11\"], \"clip_start\": 443.0, \"clip_end\": 449.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,4,7,9,12,6,5,14,2,15,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,7,0,10,11,3,8,14,9,0,13,14,8,8,0,14,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,11,3,8,1,0,14,15,11,5,8,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,11,8,14,4,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,2,15,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,0,14,9,0,13,14,8,8,14,8,0,14,14,11,12,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,10,11,3,15,7,7,0,12,4,13,6,5,14,9,0,13,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,4,7,10,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,1,12,4,7,9,12,4,6,5,14,9,0,13,14,8,8,14,8,0,14,14,2,15,11,8,14,7,0,7,5,8,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,6,5,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,4,6,1,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,7,5,8,3,10,4,7,9,12,6,5,14,9,0,13,14,8,8,13,6,5,14,9,12,7,0,10,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,5,4,13,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,0,7,0,7,5,8,0,14,9,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,2,15,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,15,11,3,8,14,9,0,13,14,8,8,14,8,4,13,6,5,14,9,0,13,9,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"3\", \"13\"], \"clip_start\": 103.0, \"clip_end\": 107.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,4,7,9,12,6,5,14,2,15,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,7,0,10,11,3,8,14,9,0,13,14,8,8,0,14,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,11,3,8,1,0,14,15,11,5,8,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,11,8,14,4,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,2,15,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,0,14,9,0,13,14,8,8,14,8,0,14,14,11,12,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,10,11,3,15,7,7,0,12,4,13,6,5,14,9,0,13,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,4,7,10,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,1,12,4,7,9,12,4,6,5,14,9,0,13,14,8,8,14,8,0,14,14,2,15,11,8,14,7,0,7,5,8,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,6,5,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,4,6,1,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,7,5,8,3,10,4,7,9,12,6,5,14,9,0,13,14,8,8,13,6,5,14,9,12,7,0,10,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,5,4,13,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,0,7,0,7,5,8,0,14,9,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,2,15,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,15,11,3,8,14,9,0,13,14,8,8,14,8,4,13,6,5,14,9,0,13,9,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"11\", \"14\", \"14\"], \"clip_start\": 383.0, \"clip_end\": 388.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,4,7,9,12,6,5,14,2,15,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,7,0,10,11,3,8,14,9,0,13,14,8,8,0,14,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,11,3,8,1,0,14,15,11,5,8,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,11,8,14,4,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,2,15,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,0,14,9,0,13,14,8,8,14,8,0,14,14,11,12,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,10,11,3,15,7,7,0,12,4,13,6,5,14,9,0,13,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,4,7,10,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,1,12,4,7,9,12,4,6,5,14,9,0,13,14,8,8,14,8,0,14,14,2,15,11,8,14,7,0,7,5,8,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,6,5,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,4,6,1,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,7,5,8,3,10,4,7,9,12,6,5,14,9,0,13,14,8,8,13,6,5,14,9,12,7,0,10,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,5,4,13,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,0,7,0,7,5,8,0,14,9,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,2,15,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,15,11,3,8,14,9,0,13,14,8,8,14,8,4,13,6,5,14,9,0,13,9,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 871.0, \"clip_end\": 876.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,4,7,9,12,6,5,14,2,15,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,7,0,10,11,3,8,14,9,0,13,14,8,8,0,14,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,11,3,8,1,0,14,15,11,5,8,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,11,8,14,4,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,2,15,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,0,14,9,0,13,14,8,8,14,8,0,14,14,11,12,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,10,11,3,15,7,7,0,12,4,13,6,5,14,9,0,13,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,4,7,10,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,1,12,4,7,9,12,4,6,5,14,9,0,13,14,8,8,14,8,0,14,14,2,15,11,8,14,7,0,7,5,8,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,6,5,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,4,6,1,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,7,5,8,3,10,4,7,9,12,6,5,14,9,0,13,14,8,8,13,6,5,14,9,12,7,0,10,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,5,4,13,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,0,7,0,7,5,8,0,14,9,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,2,15,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,15,11,3,8,14,9,0,13,14,8,8,14,8,4,13,6,5,14,9,0,13,9,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 835.0, \"clip_end\": 838.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,4,7,9,12,6,5,14,2,15,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,7,0,10,11,3,8,14,9,0,13,14,8,8,0,14,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,11,3,8,1,0,14,15,11,5,8,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,11,8,14,4,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,2,15,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,0,14,9,0,13,14,8,8,14,8,0,14,14,11,12,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,10,11,3,15,7,7,0,12,4,13,6,5,14,9,0,13,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,4,7,10,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,1,12,4,7,9,12,4,6,5,14,9,0,13,14,8,8,14,8,0,14,14,2,15,11,8,14,7,0,7,5,8,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,6,5,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,4,6,1,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,7,5,8,3,10,4,7,9,12,6,5,14,9,0,13,14,8,8,13,6,5,14,9,12,7,0,10,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,5,4,13,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,0,7,0,7,5,8,0,14,9,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,2,15,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,15,11,3,8,14,9,0,13,14,8,8,14,8,4,13,6,5,14,9,0,13,9,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"11\", \"14\", \"14\", \"11\"], \"clip_start\": 696.0, \"clip_end\": 702.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,4,7,9,12,6,5,14,2,15,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,7,0,10,11,3,8,14,9,0,13,14,8,8,0,14,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,11,3,8,1,0,14,15,11,5,8,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,11,8,14,4,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,2,15,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,0,14,9,0,13,14,8,8,14,8,0,14,14,11,12,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,10,11,3,15,7,7,0,12,4,13,6,5,14,9,0,13,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,4,7,10,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,1,12,4,7,9,12,4,6,5,14,9,0,13,14,8,8,14,8,0,14,14,2,15,11,8,14,7,0,7,5,8,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,6,5,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,4,6,1,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,7,5,8,3,10,4,7,9,12,6,5,14,9,0,13,14,8,8,13,6,5,14,9,12,7,0,10,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,5,4,13,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,0,7,0,7,5,8,0,14,9,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,2,15,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,15,11,3,8,14,9,0,13,14,8,8,14,8,4,13,6,5,14,9,0,13,9,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"14\", \"9\"], \"clip_start\": 675.0, \"clip_end\": 679.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,4,7,9,12,6,5,14,2,15,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,7,0,10,11,3,8,14,9,0,13,14,8,8,0,14,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,11,3,8,1,0,14,15,11,5,8,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,11,8,14,4,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,2,15,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,0,14,9,0,13,14,8,8,14,8,0,14,14,11,12,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,10,11,3,15,7,7,0,12,4,13,6,5,14,9,0,13,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,4,7,10,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,1,12,4,7,9,12,4,6,5,14,9,0,13,14,8,8,14,8,0,14,14,2,15,11,8,14,7,0,7,5,8,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,6,5,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,4,6,1,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,7,5,8,3,10,4,7,9,12,6,5,14,9,0,13,14,8,8,13,6,5,14,9,12,7,0,10,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,5,4,13,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,0,7,0,7,5,8,0,14,9,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,2,15,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,15,11,3,8,14,9,0,13,14,8,8,14,8,4,13,6,5,14,9,0,13,9,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"8\", \"0\", \"14\", \"9\", \"0\"], \"clip_start\": 774.0, \"clip_end\": 780.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,4,7,9,12,6,5,14,2,15,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,7,0,10,11,3,8,14,9,0,13,14,8,8,0,14,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,11,3,8,1,0,14,15,11,5,8,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,11,8,14,4,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,2,15,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,0,14,9,0,13,14,8,8,14,8,0,14,14,11,12,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,10,11,3,15,7,7,0,12,4,13,6,5,14,9,0,13,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,4,7,10,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,1,12,4,7,9,12,4,6,5,14,9,0,13,14,8,8,14,8,0,14,14,2,15,11,8,14,7,0,7,5,8,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,6,5,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,4,6,1,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,7,5,8,3,10,4,7,9,12,6,5,14,9,0,13,14,8,8,13,6,5,14,9,12,7,0,10,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,5,4,13,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,0,7,0,7,5,8,0,14,9,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,2,15,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,15,11,3,8,14,9,0,13,14,8,8,14,8,4,13,6,5,14,9,0,13,9,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"8\", \"14\", \"8\", \"0\", \"14\"], \"clip_start\": 729.0, \"clip_end\": 735.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,4,7,9,12,6,5,14,2,15,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,7,0,10,11,3,8,14,9,0,13,14,8,8,0,14,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,11,3,8,1,0,14,15,11,5,8,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,11,8,14,4,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,2,15,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,0,14,9,0,13,14,8,8,14,8,0,14,14,11,12,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,10,11,3,15,7,7,0,12,4,13,6,5,14,9,0,13,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,4,7,10,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,1,12,4,7,9,12,4,6,5,14,9,0,13,14,8,8,14,8,0,14,14,2,15,11,8,14,7,0,7,5,8,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,6,5,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,4,6,1,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,7,5,8,3,10,4,7,9,12,6,5,14,9,0,13,14,8,8,13,6,5,14,9,12,7,0,10,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,5,4,13,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,0,7,0,7,5,8,0,14,9,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,2,15,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,15,11,3,8,14,9,0,13,14,8,8,14,8,4,13,6,5,14,9,0,13,9,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 480.0, \"clip_end\": 484.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,4,7,9,12,6,5,14,2,15,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,7,0,10,11,3,8,14,9,0,13,14,8,8,0,14,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,11,3,8,1,0,14,15,11,5,8,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,11,8,14,4,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,2,15,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,0,14,9,0,13,14,8,8,14,8,0,14,14,11,12,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,10,11,3,15,7,7,0,12,4,13,6,5,14,9,0,13,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,4,7,10,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,1,12,4,7,9,12,4,6,5,14,9,0,13,14,8,8,14,8,0,14,14,2,15,11,8,14,7,0,7,5,8,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,6,5,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,4,6,1,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,7,5,8,3,10,4,7,9,12,6,5,14,9,0,13,14,8,8,13,6,5,14,9,12,7,0,10,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,5,4,13,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,0,7,0,7,5,8,0,14,9,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,2,15,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,15,11,3,8,14,9,0,13,14,8,8,14,8,4,13,6,5,14,9,0,13,9,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 846.0, \"clip_end\": 850.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,4,7,9,12,6,5,14,2,15,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,7,0,10,11,3,8,14,9,0,13,14,8,8,0,14,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,11,3,8,1,0,14,15,11,5,8,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,11,8,14,4,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,2,15,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,0,14,9,0,13,14,8,8,14,8,0,14,14,11,12,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,10,11,3,15,7,7,0,12,4,13,6,5,14,9,0,13,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,4,7,10,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,1,12,4,7,9,12,4,6,5,14,9,0,13,14,8,8,14,8,0,14,14,2,15,11,8,14,7,0,7,5,8,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,6,5,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,4,6,1,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,7,5,8,3,10,4,7,9,12,6,5,14,9,0,13,14,8,8,13,6,5,14,9,12,7,0,10,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,5,4,13,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,0,7,0,7,5,8,0,14,9,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,2,15,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,15,11,3,8,14,9,0,13,14,8,8,14,8,4,13,6,5,14,9,0,13,9,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"14\", \"9\", \"0\", \"13\"], \"clip_start\": 564.0, \"clip_end\": 570.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,4,7,9,12,6,5,14,2,15,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,7,0,10,11,3,8,14,9,0,13,14,8,8,0,14,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,11,3,8,1,0,14,15,11,5,8,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,11,8,14,4,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,2,15,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,0,14,9,0,13,14,8,8,14,8,0,14,14,11,12,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,10,11,3,15,7,7,0,12,4,13,6,5,14,9,0,13,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,4,7,10,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,1,12,4,7,9,12,4,6,5,14,9,0,13,14,8,8,14,8,0,14,14,2,15,11,8,14,7,0,7,5,8,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,6,5,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,4,6,1,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,7,5,8,3,10,4,7,9,12,6,5,14,9,0,13,14,8,8,13,6,5,14,9,12,7,0,10,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,5,4,13,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,0,7,0,7,5,8,0,14,9,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,2,15,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,15,11,3,8,14,9,0,13,14,8,8,14,8,4,13,6,5,14,9,0,13,9,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"0\", \"13\"], \"clip_start\": 129.0, \"clip_end\": 133.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,4,7,9,12,6,5,14,2,15,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,7,0,10,11,3,8,14,9,0,13,14,8,8,0,14,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,11,3,8,1,0,14,15,11,5,8,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,11,8,14,4,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,2,15,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,0,14,9,0,13,14,8,8,14,8,0,14,14,11,12,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,10,11,3,15,7,7,0,12,4,13,6,5,14,9,0,13,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,4,7,10,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,1,12,4,7,9,12,4,6,5,14,9,0,13,14,8,8,14,8,0,14,14,2,15,11,8,14,7,0,7,5,8,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,6,5,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,4,6,1,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,7,5,8,3,10,4,7,9,12,6,5,14,9,0,13,14,8,8,13,6,5,14,9,12,7,0,10,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,5,4,13,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,0,7,0,7,5,8,0,14,9,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,2,15,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,15,11,3,8,14,9,0,13,14,8,8,14,8,4,13,6,5,14,9,0,13,9,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"14\", \"11\"], \"clip_start\": 324.0, \"clip_end\": 328.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,4,7,9,12,6,5,14,2,15,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,7,0,10,11,3,8,14,9,0,13,14,8,8,0,14,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,11,3,8,1,0,14,15,11,5,8,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,11,8,14,4,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,2,15,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,0,14,9,0,13,14,8,8,14,8,0,14,14,11,12,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,10,11,3,15,7,7,0,12,4,13,6,5,14,9,0,13,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,4,7,10,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,1,12,4,7,9,12,4,6,5,14,9,0,13,14,8,8,14,8,0,14,14,2,15,11,8,14,7,0,7,5,8,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,6,5,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,4,6,1,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,7,5,8,3,10,4,7,9,12,6,5,14,9,0,13,14,8,8,13,6,5,14,9,12,7,0,10,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,5,4,13,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,0,7,0,7,5,8,0,14,9,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,2,15,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,15,11,3,8,14,9,0,13,14,8,8,14,8,4,13,6,5,14,9,0,13,9,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"11\", \"14\", \"14\", \"11\"], \"clip_start\": 186.0, \"clip_end\": 192.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,4,7,9,12,6,5,14,2,15,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,7,0,10,11,3,8,14,9,0,13,14,8,8,0,14,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,11,3,8,1,0,14,15,11,5,8,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,11,8,14,4,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,2,15,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,0,14,9,0,13,14,8,8,14,8,0,14,14,11,12,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,10,11,3,15,7,7,0,12,4,13,6,5,14,9,0,13,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,4,7,10,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,1,12,4,7,9,12,4,6,5,14,9,0,13,14,8,8,14,8,0,14,14,2,15,11,8,14,7,0,7,5,8,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,6,5,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,4,6,1,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,7,5,8,3,10,4,7,9,12,6,5,14,9,0,13,14,8,8,13,6,5,14,9,12,7,0,10,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,5,4,13,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,0,7,0,7,5,8,0,14,9,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,2,15,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,15,11,3,8,14,9,0,13,14,8,8,14,8,4,13,6,5,14,9,0,13,9,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"14\", \"14\", \"11\", \"14\"], \"clip_start\": 534.0, \"clip_end\": 540.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,4,7,9,12,6,5,14,2,15,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,7,0,10,11,3,8,14,9,0,13,14,8,8,0,14,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,11,3,8,1,0,14,15,11,5,8,10,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,2,15,11,8,14,4,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,2,15,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,3,13,0,14,9,0,13,14,8,8,14,8,0,14,14,11,12,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,10,11,3,15,7,7,0,12,4,13,6,5,14,9,0,13,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,4,7,10,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,1,12,4,7,9,12,4,6,5,14,9,0,13,14,8,8,14,8,0,14,14,2,15,11,8,14,7,0,7,5,8,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,6,5,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,4,6,1,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,7,5,8,3,10,4,7,9,12,6,5,14,9,0,13,14,8,8,13,6,5,14,9,12,7,0,10,3,13,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,5,4,13,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,2,15,7,0,7,0,7,5,8,0,14,9,0,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,2,15,6,5,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,2,15,11,3,8,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,15,11,3,8,14,9,0,13,14,8,8,14,8,4,13,6,5,14,9,0,13,9,7,14,9,0,13,14,8,8,14,8,0,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11,14,14,11", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"0\", \"7\", \"6\", \"13\"], \"clip_start\": 829.0, \"clip_end\": 835.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,10,15,5,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,10,2,2,9,12,10,2,12,10,15,5,9,12,11,10,2,13,10,13,1,3,6,1,3,7,6,13,3,15,11,0,2,10,10,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,3,7,6,13,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,11,0,14,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,2,2,9,1,3,7,6,13,0,9,12,10,2,12,11,0,2,3,13,10,13,8,11,0,11,0,2,10,10,3,1,13,10,13,1,3,6,1,3,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,13,4,10,2,13,10,13,1,3,6,1,1,3,7,6,13,6,0,7,6,13,6,0,7,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,11,0,2,10,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,11,4,0,0,7,6,13,6,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,6,14,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,15,11,13,10,13,1,3,6,11,4,0,0,7,0,7,6,13,6,0,7,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,6,0,1,5,1,2,9,12,10,2,12,10,2,13,2,14,13,10,13,1,12,10,15,5,4,3,13,10,13,8,11,0,11,0,2,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"10\", \"13\"], \"clip_start\": 505.0, \"clip_end\": 509.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,10,15,5,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,10,2,2,9,12,10,2,12,10,15,5,9,12,11,10,2,13,10,13,1,3,6,1,3,7,6,13,3,15,11,0,2,10,10,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,3,7,6,13,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,11,0,14,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,2,2,9,1,3,7,6,13,0,9,12,10,2,12,11,0,2,3,13,10,13,8,11,0,11,0,2,10,10,3,1,13,10,13,1,3,6,1,3,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,13,4,10,2,13,10,13,1,3,6,1,1,3,7,6,13,6,0,7,6,13,6,0,7,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,11,0,2,10,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,11,4,0,0,7,6,13,6,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,6,14,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,15,11,13,10,13,1,3,6,11,4,0,0,7,0,7,6,13,6,0,7,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,6,0,1,5,1,2,9,12,10,2,12,10,2,13,2,14,13,10,13,1,12,10,15,5,4,3,13,10,13,8,11,0,11,0,2,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"0\", \"1\", \"8\", \"6\"], \"clip_start\": 120.0, \"clip_end\": 126.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,10,15,5,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,10,2,2,9,12,10,2,12,10,15,5,9,12,11,10,2,13,10,13,1,3,6,1,3,7,6,13,3,15,11,0,2,10,10,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,3,7,6,13,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,11,0,14,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,2,2,9,1,3,7,6,13,0,9,12,10,2,12,11,0,2,3,13,10,13,8,11,0,11,0,2,10,10,3,1,13,10,13,1,3,6,1,3,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,13,4,10,2,13,10,13,1,3,6,1,1,3,7,6,13,6,0,7,6,13,6,0,7,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,11,0,2,10,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,11,4,0,0,7,6,13,6,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,6,14,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,15,11,13,10,13,1,3,6,11,4,0,0,7,0,7,6,13,6,0,7,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,6,0,1,5,1,2,9,12,10,2,12,10,2,13,2,14,13,10,13,1,12,10,15,5,4,3,13,10,13,8,11,0,11,0,2,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 147.0, \"clip_end\": 150.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,10,15,5,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,10,2,2,9,12,10,2,12,10,15,5,9,12,11,10,2,13,10,13,1,3,6,1,3,7,6,13,3,15,11,0,2,10,10,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,3,7,6,13,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,11,0,14,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,2,2,9,1,3,7,6,13,0,9,12,10,2,12,11,0,2,3,13,10,13,8,11,0,11,0,2,10,10,3,1,13,10,13,1,3,6,1,3,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,13,4,10,2,13,10,13,1,3,6,1,1,3,7,6,13,6,0,7,6,13,6,0,7,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,11,0,2,10,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,11,4,0,0,7,6,13,6,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,6,14,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,15,11,13,10,13,1,3,6,11,4,0,0,7,0,7,6,13,6,0,7,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,6,0,1,5,1,2,9,12,10,2,12,10,2,13,2,14,13,10,13,1,12,10,15,5,4,3,13,10,13,8,11,0,11,0,2,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"8\", \"6\", \"0\", \"1\"], \"clip_start\": 613.0, \"clip_end\": 618.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,10,15,5,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,10,2,2,9,12,10,2,12,10,15,5,9,12,11,10,2,13,10,13,1,3,6,1,3,7,6,13,3,15,11,0,2,10,10,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,3,7,6,13,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,11,0,14,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,2,2,9,1,3,7,6,13,0,9,12,10,2,12,11,0,2,3,13,10,13,8,11,0,11,0,2,10,10,3,1,13,10,13,1,3,6,1,3,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,13,4,10,2,13,10,13,1,3,6,1,1,3,7,6,13,6,0,7,6,13,6,0,7,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,11,0,2,10,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,11,4,0,0,7,6,13,6,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,6,14,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,15,11,13,10,13,1,3,6,11,4,0,0,7,0,7,6,13,6,0,7,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,6,0,1,5,1,2,9,12,10,2,12,10,2,13,2,14,13,10,13,1,12,10,15,5,4,3,13,10,13,8,11,0,11,0,2,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"8\", \"6\", \"0\", \"1\"], \"clip_start\": 890.0, \"clip_end\": 896.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,10,15,5,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,10,2,2,9,12,10,2,12,10,15,5,9,12,11,10,2,13,10,13,1,3,6,1,3,7,6,13,3,15,11,0,2,10,10,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,3,7,6,13,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,11,0,14,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,2,2,9,1,3,7,6,13,0,9,12,10,2,12,11,0,2,3,13,10,13,8,11,0,11,0,2,10,10,3,1,13,10,13,1,3,6,1,3,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,13,4,10,2,13,10,13,1,3,6,1,1,3,7,6,13,6,0,7,6,13,6,0,7,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,11,0,2,10,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,11,4,0,0,7,6,13,6,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,6,14,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,15,11,13,10,13,1,3,6,11,4,0,0,7,0,7,6,13,6,0,7,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,6,0,1,5,1,2,9,12,10,2,12,10,2,13,2,14,13,10,13,1,12,10,15,5,4,3,13,10,13,8,11,0,11,0,2,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"0\", \"1\", \"8\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q6_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,10,15,5,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,10,2,2,9,12,10,2,12,10,15,5,9,12,11,10,2,13,10,13,1,3,6,1,3,7,6,13,3,15,11,0,2,10,10,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,3,7,6,13,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,11,0,14,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,2,2,9,1,3,7,6,13,0,9,12,10,2,12,11,0,2,3,13,10,13,8,11,0,11,0,2,10,10,3,1,13,10,13,1,3,6,1,3,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,13,4,10,2,13,10,13,1,3,6,1,1,3,7,6,13,6,0,7,6,13,6,0,7,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,11,0,2,10,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,11,4,0,0,7,6,13,6,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,6,14,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,15,11,13,10,13,1,3,6,11,4,0,0,7,0,7,6,13,6,0,7,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,6,0,1,5,1,2,9,12,10,2,12,10,2,13,2,14,13,10,13,1,12,10,15,5,4,3,13,10,13,8,11,0,11,0,2,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"10\", \"2\", \"12\", \"10\", \"15\"], \"clip_start\": 136.0, \"clip_end\": 142.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q7_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,10,15,5,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,10,2,2,9,12,10,2,12,10,15,5,9,12,11,10,2,13,10,13,1,3,6,1,3,7,6,13,3,15,11,0,2,10,10,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,3,7,6,13,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,11,0,14,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,2,2,9,1,3,7,6,13,0,9,12,10,2,12,11,0,2,3,13,10,13,8,11,0,11,0,2,10,10,3,1,13,10,13,1,3,6,1,3,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,13,4,10,2,13,10,13,1,3,6,1,1,3,7,6,13,6,0,7,6,13,6,0,7,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,11,0,2,10,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,11,4,0,0,7,6,13,6,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,6,14,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,15,11,13,10,13,1,3,6,11,4,0,0,7,0,7,6,13,6,0,7,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,6,0,1,5,1,2,9,12,10,2,12,10,2,13,2,14,13,10,13,1,12,10,15,5,4,3,13,10,13,8,11,0,11,0,2,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"8\", \"6\", \"0\", \"1\"], \"clip_start\": 597.0, \"clip_end\": 602.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,10,15,5,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,10,2,2,9,12,10,2,12,10,15,5,9,12,11,10,2,13,10,13,1,3,6,1,3,7,6,13,3,15,11,0,2,10,10,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,3,7,6,13,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,11,0,14,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,2,2,9,1,3,7,6,13,0,9,12,10,2,12,11,0,2,3,13,10,13,8,11,0,11,0,2,10,10,3,1,13,10,13,1,3,6,1,3,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,13,4,10,2,13,10,13,1,3,6,1,1,3,7,6,13,6,0,7,6,13,6,0,7,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,11,0,2,10,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,11,4,0,0,7,6,13,6,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,6,14,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,15,11,13,10,13,1,3,6,11,4,0,0,7,0,7,6,13,6,0,7,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,6,0,1,5,1,2,9,12,10,2,12,10,2,13,2,14,13,10,13,1,12,10,15,5,4,3,13,10,13,8,11,0,11,0,2,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"0\", \"1\"], \"clip_start\": 782.0, \"clip_end\": 786.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q9_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,10,15,5,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,10,2,2,9,12,10,2,12,10,15,5,9,12,11,10,2,13,10,13,1,3,6,1,3,7,6,13,3,15,11,0,2,10,10,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,3,7,6,13,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,11,0,14,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,2,2,9,1,3,7,6,13,0,9,12,10,2,12,11,0,2,3,13,10,13,8,11,0,11,0,2,10,10,3,1,13,10,13,1,3,6,1,3,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,13,4,10,2,13,10,13,1,3,6,1,1,3,7,6,13,6,0,7,6,13,6,0,7,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,11,0,2,10,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,11,4,0,0,7,6,13,6,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,6,14,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,15,11,13,10,13,1,3,6,11,4,0,0,7,0,7,6,13,6,0,7,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,6,0,1,5,1,2,9,12,10,2,12,10,2,13,2,14,13,10,13,1,12,10,15,5,4,3,13,10,13,8,11,0,11,0,2,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"8\", \"6\", \"7\", \"0\"], \"clip_start\": 701.0, \"clip_end\": 706.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q10_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,10,15,5,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,10,2,2,9,12,10,2,12,10,15,5,9,12,11,10,2,13,10,13,1,3,6,1,3,7,6,13,3,15,11,0,2,10,10,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,3,7,6,13,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,11,0,14,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,2,2,9,1,3,7,6,13,0,9,12,10,2,12,11,0,2,3,13,10,13,8,11,0,11,0,2,10,10,3,1,13,10,13,1,3,6,1,3,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,13,4,10,2,13,10,13,1,3,6,1,1,3,7,6,13,6,0,7,6,13,6,0,7,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,11,0,2,10,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,11,4,0,0,7,6,13,6,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,6,14,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,15,11,13,10,13,1,3,6,11,4,0,0,7,0,7,6,13,6,0,7,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,6,0,1,5,1,2,9,12,10,2,12,10,2,13,2,14,13,10,13,1,12,10,15,5,4,3,13,10,13,8,11,0,11,0,2,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"10\", \"15\", \"5\", \"4\", \"3\"], \"clip_start\": 1006.0, \"clip_end\": 1012.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,10,15,5,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,10,2,2,9,12,10,2,12,10,15,5,9,12,11,10,2,13,10,13,1,3,6,1,3,7,6,13,3,15,11,0,2,10,10,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,3,7,6,13,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,11,0,14,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,2,2,9,1,3,7,6,13,0,9,12,10,2,12,11,0,2,3,13,10,13,8,11,0,11,0,2,10,10,3,1,13,10,13,1,3,6,1,3,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,13,4,10,2,13,10,13,1,3,6,1,1,3,7,6,13,6,0,7,6,13,6,0,7,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,11,0,2,10,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,11,4,0,0,7,6,13,6,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,6,14,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,15,11,13,10,13,1,3,6,11,4,0,0,7,0,7,6,13,6,0,7,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,6,0,1,5,1,2,9,12,10,2,12,10,2,13,2,14,13,10,13,1,12,10,15,5,4,3,13,10,13,8,11,0,11,0,2,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"3\", \"15\", \"11\", \"0\"], \"clip_start\": 157.0, \"clip_end\": 163.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,10,15,5,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,10,2,2,9,12,10,2,12,10,15,5,9,12,11,10,2,13,10,13,1,3,6,1,3,7,6,13,3,15,11,0,2,10,10,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,3,7,6,13,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,11,0,14,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,2,2,9,1,3,7,6,13,0,9,12,10,2,12,11,0,2,3,13,10,13,8,11,0,11,0,2,10,10,3,1,13,10,13,1,3,6,1,3,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,13,4,10,2,13,10,13,1,3,6,1,1,3,7,6,13,6,0,7,6,13,6,0,7,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,11,0,2,10,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,11,4,0,0,7,6,13,6,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,6,14,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,15,11,13,10,13,1,3,6,11,4,0,0,7,0,7,6,13,6,0,7,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,6,0,1,5,1,2,9,12,10,2,12,10,2,13,2,14,13,10,13,1,12,10,15,5,4,3,13,10,13,8,11,0,11,0,2,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"8\", \"6\", \"0\"], \"clip_start\": 800.0, \"clip_end\": 805.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q13_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,10,15,5,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,10,2,2,9,12,10,2,12,10,15,5,9,12,11,10,2,13,10,13,1,3,6,1,3,7,6,13,3,15,11,0,2,10,10,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,3,7,6,13,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,11,0,14,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,2,2,9,1,3,7,6,13,0,9,12,10,2,12,11,0,2,3,13,10,13,8,11,0,11,0,2,10,10,3,1,13,10,13,1,3,6,1,3,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,13,4,10,2,13,10,13,1,3,6,1,1,3,7,6,13,6,0,7,6,13,6,0,7,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,11,0,2,10,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,11,4,0,0,7,6,13,6,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,6,14,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,15,11,13,10,13,1,3,6,11,4,0,0,7,0,7,6,13,6,0,7,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,6,0,1,5,1,2,9,12,10,2,12,10,2,13,2,14,13,10,13,1,12,10,15,5,4,3,13,10,13,8,11,0,11,0,2,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\", \"2\", \"15\", \"0\"], \"clip_start\": 916.0, \"clip_end\": 922.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q14_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,10,15,5,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,10,2,2,9,12,10,2,12,10,15,5,9,12,11,10,2,13,10,13,1,3,6,1,3,7,6,13,3,15,11,0,2,10,10,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,3,7,6,13,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,11,0,14,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,2,2,9,1,3,7,6,13,0,9,12,10,2,12,11,0,2,3,13,10,13,8,11,0,11,0,2,10,10,3,1,13,10,13,1,3,6,1,3,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,13,4,10,2,13,10,13,1,3,6,1,1,3,7,6,13,6,0,7,6,13,6,0,7,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,11,0,2,10,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,11,4,0,0,7,6,13,6,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,6,14,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,15,11,13,10,13,1,3,6,11,4,0,0,7,0,7,6,13,6,0,7,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,6,0,1,5,1,2,9,12,10,2,12,10,2,13,2,14,13,10,13,1,12,10,15,5,4,3,13,10,13,8,11,0,11,0,2,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"0\", \"1\"], \"clip_start\": 98.0, \"clip_end\": 102.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q15_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,10,15,5,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,10,2,2,9,12,10,2,12,10,15,5,9,12,11,10,2,13,10,13,1,3,6,1,3,7,6,13,3,15,11,0,2,10,10,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,3,7,6,13,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,8,11,0,7,0,1,8,6,0,1,8,6,0,1,8,6,11,0,14,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,2,2,9,1,3,7,6,13,0,9,12,10,2,12,11,0,2,3,13,10,13,8,11,0,11,0,2,10,10,3,1,13,10,13,1,3,6,1,3,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,13,4,10,2,13,10,13,1,3,6,1,1,3,7,6,13,6,0,7,6,13,6,0,7,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,7,0,8,11,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,12,11,0,2,10,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,11,4,0,0,7,6,13,6,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,6,14,15,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,10,15,6,0,1,8,6,0,1,8,6,0,1,8,6,12,10,15,11,13,10,13,1,3,6,11,4,0,0,7,0,7,6,13,6,0,7,0,7,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,1,8,6,0,6,0,1,5,1,2,9,12,10,2,12,10,2,13,2,14,13,10,13,1,12,10,15,5,4,3,13,10,13,8,11,0,11,0,2,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"6\", \"6\", \"12\"], \"clip_start\": 745.0, \"clip_end\": 750.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,3,9,6,12,12,8,5,15,0,11,2,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,13,8,12,5,9,10,1,6,12,10,11,2,6,14,11,6,12,12,0,11,2,12,5,0,2,5,15,3,9,4,14,11,6,12,13,8,12,5,9,10,1,4,10,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,2,5,15,3,9,5,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,4,14,11,6,12,15,3,9,5,15,0,11,2,6,14,11,6,12,12,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,15,0,9,10,14,11,6,12,12,14,11,6,6,6,12,14,4,14,11,6,12,8,4,4,10,6,12,12,14,11,6,6,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,14,2,5,15,3,9,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,8,5,13,2,14,11,12,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,15,3,9,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,13,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,2,5,15,3,9,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,13,5,13,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,0,15,3,9,4,10,0,9,10,1,6,11,2,7,5,1,12,5,9,10,1,6,12,12,0,2,14,11,6,12,12,14,11,6,6,6,12,14,12,5,9,10,1,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,1,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,3,9,6,12,12,14,11,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,9,10,1,6,12,12,14,11,6,6,6,12,14,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"6\", \"6\"], \"clip_start\": 811.0, \"clip_end\": 815.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,3,9,6,12,12,8,5,15,0,11,2,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,13,8,12,5,9,10,1,6,12,10,11,2,6,14,11,6,12,12,0,11,2,12,5,0,2,5,15,3,9,4,14,11,6,12,13,8,12,5,9,10,1,4,10,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,2,5,15,3,9,5,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,4,14,11,6,12,15,3,9,5,15,0,11,2,6,14,11,6,12,12,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,15,0,9,10,14,11,6,12,12,14,11,6,6,6,12,14,4,14,11,6,12,8,4,4,10,6,12,12,14,11,6,6,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,14,2,5,15,3,9,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,8,5,13,2,14,11,12,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,15,3,9,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,13,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,2,5,15,3,9,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,13,5,13,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,0,15,3,9,4,10,0,9,10,1,6,11,2,7,5,1,12,5,9,10,1,6,12,12,0,2,14,11,6,12,12,14,11,6,6,6,12,14,12,5,9,10,1,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,1,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,3,9,6,12,12,14,11,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,9,10,1,6,12,12,14,11,6,6,6,12,14,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"6\", \"12\"], \"clip_start\": 932.0, \"clip_end\": 936.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,3,9,6,12,12,8,5,15,0,11,2,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,13,8,12,5,9,10,1,6,12,10,11,2,6,14,11,6,12,12,0,11,2,12,5,0,2,5,15,3,9,4,14,11,6,12,13,8,12,5,9,10,1,4,10,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,2,5,15,3,9,5,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,4,14,11,6,12,15,3,9,5,15,0,11,2,6,14,11,6,12,12,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,15,0,9,10,14,11,6,12,12,14,11,6,6,6,12,14,4,14,11,6,12,8,4,4,10,6,12,12,14,11,6,6,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,14,2,5,15,3,9,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,8,5,13,2,14,11,12,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,15,3,9,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,13,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,2,5,15,3,9,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,13,5,13,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,0,15,3,9,4,10,0,9,10,1,6,11,2,7,5,1,12,5,9,10,1,6,12,12,0,2,14,11,6,12,12,14,11,6,6,6,12,14,12,5,9,10,1,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,1,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,3,9,6,12,12,14,11,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,9,10,1,6,12,12,14,11,6,6,6,12,14,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"14\", \"6\", \"6\"], \"clip_start\": 242.0, \"clip_end\": 247.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,3,9,6,12,12,8,5,15,0,11,2,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,13,8,12,5,9,10,1,6,12,10,11,2,6,14,11,6,12,12,0,11,2,12,5,0,2,5,15,3,9,4,14,11,6,12,13,8,12,5,9,10,1,4,10,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,2,5,15,3,9,5,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,4,14,11,6,12,15,3,9,5,15,0,11,2,6,14,11,6,12,12,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,15,0,9,10,14,11,6,12,12,14,11,6,6,6,12,14,4,14,11,6,12,8,4,4,10,6,12,12,14,11,6,6,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,14,2,5,15,3,9,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,8,5,13,2,14,11,12,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,15,3,9,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,13,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,2,5,15,3,9,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,13,5,13,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,0,15,3,9,4,10,0,9,10,1,6,11,2,7,5,1,12,5,9,10,1,6,12,12,0,2,14,11,6,12,12,14,11,6,6,6,12,14,12,5,9,10,1,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,1,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,3,9,6,12,12,14,11,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,9,10,1,6,12,12,14,11,6,6,6,12,14,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 533.0, \"clip_end\": 537.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,3,9,6,12,12,8,5,15,0,11,2,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,13,8,12,5,9,10,1,6,12,10,11,2,6,14,11,6,12,12,0,11,2,12,5,0,2,5,15,3,9,4,14,11,6,12,13,8,12,5,9,10,1,4,10,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,2,5,15,3,9,5,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,4,14,11,6,12,15,3,9,5,15,0,11,2,6,14,11,6,12,12,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,15,0,9,10,14,11,6,12,12,14,11,6,6,6,12,14,4,14,11,6,12,8,4,4,10,6,12,12,14,11,6,6,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,14,2,5,15,3,9,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,8,5,13,2,14,11,12,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,15,3,9,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,13,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,2,5,15,3,9,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,13,5,13,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,0,15,3,9,4,10,0,9,10,1,6,11,2,7,5,1,12,5,9,10,1,6,12,12,0,2,14,11,6,12,12,14,11,6,6,6,12,14,12,5,9,10,1,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,1,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,3,9,6,12,12,14,11,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,9,10,1,6,12,12,14,11,6,6,6,12,14,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"4\", \"10\"], \"clip_start\": 480.0, \"clip_end\": 484.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,3,9,6,12,12,8,5,15,0,11,2,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,13,8,12,5,9,10,1,6,12,10,11,2,6,14,11,6,12,12,0,11,2,12,5,0,2,5,15,3,9,4,14,11,6,12,13,8,12,5,9,10,1,4,10,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,2,5,15,3,9,5,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,4,14,11,6,12,15,3,9,5,15,0,11,2,6,14,11,6,12,12,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,15,0,9,10,14,11,6,12,12,14,11,6,6,6,12,14,4,14,11,6,12,8,4,4,10,6,12,12,14,11,6,6,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,14,2,5,15,3,9,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,8,5,13,2,14,11,12,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,15,3,9,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,13,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,2,5,15,3,9,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,13,5,13,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,0,15,3,9,4,10,0,9,10,1,6,11,2,7,5,1,12,5,9,10,1,6,12,12,0,2,14,11,6,12,12,14,11,6,6,6,12,14,12,5,9,10,1,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,1,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,3,9,6,12,12,14,11,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,9,10,1,6,12,12,14,11,6,6,6,12,14,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"14\", \"6\"], \"clip_start\": 873.0, \"clip_end\": 877.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,3,9,6,12,12,8,5,15,0,11,2,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,13,8,12,5,9,10,1,6,12,10,11,2,6,14,11,6,12,12,0,11,2,12,5,0,2,5,15,3,9,4,14,11,6,12,13,8,12,5,9,10,1,4,10,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,2,5,15,3,9,5,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,4,14,11,6,12,15,3,9,5,15,0,11,2,6,14,11,6,12,12,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,15,0,9,10,14,11,6,12,12,14,11,6,6,6,12,14,4,14,11,6,12,8,4,4,10,6,12,12,14,11,6,6,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,14,2,5,15,3,9,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,8,5,13,2,14,11,12,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,15,3,9,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,13,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,2,5,15,3,9,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,13,5,13,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,0,15,3,9,4,10,0,9,10,1,6,11,2,7,5,1,12,5,9,10,1,6,12,12,0,2,14,11,6,12,12,14,11,6,6,6,12,14,12,5,9,10,1,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,1,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,3,9,6,12,12,14,11,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,9,10,1,6,12,12,14,11,6,6,6,12,14,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 923.0, \"clip_end\": 928.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,3,9,6,12,12,8,5,15,0,11,2,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,13,8,12,5,9,10,1,6,12,10,11,2,6,14,11,6,12,12,0,11,2,12,5,0,2,5,15,3,9,4,14,11,6,12,13,8,12,5,9,10,1,4,10,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,2,5,15,3,9,5,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,4,14,11,6,12,15,3,9,5,15,0,11,2,6,14,11,6,12,12,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,15,0,9,10,14,11,6,12,12,14,11,6,6,6,12,14,4,14,11,6,12,8,4,4,10,6,12,12,14,11,6,6,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,14,2,5,15,3,9,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,8,5,13,2,14,11,12,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,15,3,9,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,13,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,2,5,15,3,9,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,13,5,13,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,0,15,3,9,4,10,0,9,10,1,6,11,2,7,5,1,12,5,9,10,1,6,12,12,0,2,14,11,6,12,12,14,11,6,6,6,12,14,12,5,9,10,1,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,1,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,3,9,6,12,12,14,11,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,9,10,1,6,12,12,14,11,6,6,6,12,14,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"6\", \"6\"], \"clip_start\": 287.0, \"clip_end\": 291.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,3,9,6,12,12,8,5,15,0,11,2,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,13,8,12,5,9,10,1,6,12,10,11,2,6,14,11,6,12,12,0,11,2,12,5,0,2,5,15,3,9,4,14,11,6,12,13,8,12,5,9,10,1,4,10,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,2,5,15,3,9,5,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,4,14,11,6,12,15,3,9,5,15,0,11,2,6,14,11,6,12,12,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,15,0,9,10,14,11,6,12,12,14,11,6,6,6,12,14,4,14,11,6,12,8,4,4,10,6,12,12,14,11,6,6,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,14,2,5,15,3,9,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,8,5,13,2,14,11,12,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,15,3,9,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,13,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,2,5,15,3,9,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,13,5,13,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,0,15,3,9,4,10,0,9,10,1,6,11,2,7,5,1,12,5,9,10,1,6,12,12,0,2,14,11,6,12,12,14,11,6,6,6,12,14,12,5,9,10,1,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,1,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,3,9,6,12,12,14,11,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,9,10,1,6,12,12,14,11,6,6,6,12,14,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"8\"], \"clip_start\": 885.0, \"clip_end\": 888.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,3,9,6,12,12,8,5,15,0,11,2,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,13,8,12,5,9,10,1,6,12,10,11,2,6,14,11,6,12,12,0,11,2,12,5,0,2,5,15,3,9,4,14,11,6,12,13,8,12,5,9,10,1,4,10,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,2,5,15,3,9,5,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,4,14,11,6,12,15,3,9,5,15,0,11,2,6,14,11,6,12,12,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,15,0,9,10,14,11,6,12,12,14,11,6,6,6,12,14,4,14,11,6,12,8,4,4,10,6,12,12,14,11,6,6,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,14,2,5,15,3,9,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,8,5,13,2,14,11,12,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,15,3,9,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,13,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,2,5,15,3,9,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,13,5,13,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,0,15,3,9,4,10,0,9,10,1,6,11,2,7,5,1,12,5,9,10,1,6,12,12,0,2,14,11,6,12,12,14,11,6,6,6,12,14,12,5,9,10,1,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,1,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,3,9,6,12,12,14,11,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,9,10,1,6,12,12,14,11,6,6,6,12,14,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"1\", \"12\", \"5\"], \"clip_start\": 195.0, \"clip_end\": 200.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q10_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,3,9,6,12,12,8,5,15,0,11,2,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,13,8,12,5,9,10,1,6,12,10,11,2,6,14,11,6,12,12,0,11,2,12,5,0,2,5,15,3,9,4,14,11,6,12,13,8,12,5,9,10,1,4,10,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,2,5,15,3,9,5,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,4,14,11,6,12,15,3,9,5,15,0,11,2,6,14,11,6,12,12,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,15,0,9,10,14,11,6,12,12,14,11,6,6,6,12,14,4,14,11,6,12,8,4,4,10,6,12,12,14,11,6,6,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,14,2,5,15,3,9,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,8,5,13,2,14,11,12,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,15,3,9,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,13,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,2,5,15,3,9,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,13,5,13,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,0,15,3,9,4,10,0,9,10,1,6,11,2,7,5,1,12,5,9,10,1,6,12,12,0,2,14,11,6,12,12,14,11,6,6,6,12,14,12,5,9,10,1,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,1,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,3,9,6,12,12,14,11,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,9,10,1,6,12,12,14,11,6,6,6,12,14,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"12\", \"14\"], \"clip_start\": 684.0, \"clip_end\": 688.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q11_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,3,9,6,12,12,8,5,15,0,11,2,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,13,8,12,5,9,10,1,6,12,10,11,2,6,14,11,6,12,12,0,11,2,12,5,0,2,5,15,3,9,4,14,11,6,12,13,8,12,5,9,10,1,4,10,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,2,5,15,3,9,5,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,4,14,11,6,12,15,3,9,5,15,0,11,2,6,14,11,6,12,12,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,15,0,9,10,14,11,6,12,12,14,11,6,6,6,12,14,4,14,11,6,12,8,4,4,10,6,12,12,14,11,6,6,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,14,2,5,15,3,9,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,8,5,13,2,14,11,12,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,15,3,9,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,13,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,2,5,15,3,9,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,13,5,13,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,0,15,3,9,4,10,0,9,10,1,6,11,2,7,5,1,12,5,9,10,1,6,12,12,0,2,14,11,6,12,12,14,11,6,6,6,12,14,12,5,9,10,1,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,1,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,3,9,6,12,12,14,11,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,9,10,1,6,12,12,14,11,6,6,6,12,14,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\"], \"clip_start\": 102.0, \"clip_end\": 105.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q12_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,3,9,6,12,12,8,5,15,0,11,2,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,13,8,12,5,9,10,1,6,12,10,11,2,6,14,11,6,12,12,0,11,2,12,5,0,2,5,15,3,9,4,14,11,6,12,13,8,12,5,9,10,1,4,10,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,2,5,15,3,9,5,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,4,14,11,6,12,15,3,9,5,15,0,11,2,6,14,11,6,12,12,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,15,0,9,10,14,11,6,12,12,14,11,6,6,6,12,14,4,14,11,6,12,8,4,4,10,6,12,12,14,11,6,6,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,14,2,5,15,3,9,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,8,5,13,2,14,11,12,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,15,3,9,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,13,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,2,5,15,3,9,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,13,5,13,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,0,15,3,9,4,10,0,9,10,1,6,11,2,7,5,1,12,5,9,10,1,6,12,12,0,2,14,11,6,12,12,14,11,6,6,6,12,14,12,5,9,10,1,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,1,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,3,9,6,12,12,14,11,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,9,10,1,6,12,12,14,11,6,6,6,12,14,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"14\", \"6\"], \"clip_start\": 782.0, \"clip_end\": 786.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q13_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,3,9,6,12,12,8,5,15,0,11,2,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,13,8,12,5,9,10,1,6,12,10,11,2,6,14,11,6,12,12,0,11,2,12,5,0,2,5,15,3,9,4,14,11,6,12,13,8,12,5,9,10,1,4,10,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,2,5,15,3,9,5,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,4,14,11,6,12,15,3,9,5,15,0,11,2,6,14,11,6,12,12,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,15,0,9,10,14,11,6,12,12,14,11,6,6,6,12,14,4,14,11,6,12,8,4,4,10,6,12,12,14,11,6,6,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,14,2,5,15,3,9,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,8,5,13,2,14,11,12,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,15,3,9,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,13,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,2,5,15,3,9,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,13,5,13,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,0,15,3,9,4,10,0,9,10,1,6,11,2,7,5,1,12,5,9,10,1,6,12,12,0,2,14,11,6,12,12,14,11,6,6,6,12,14,12,5,9,10,1,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,1,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,3,9,6,12,12,14,11,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,9,10,1,6,12,12,14,11,6,6,6,12,14,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"12\", \"14\"], \"clip_start\": 701.0, \"clip_end\": 705.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q14_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,3,9,6,12,12,8,5,15,0,11,2,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,13,8,12,5,9,10,1,6,12,10,11,2,6,14,11,6,12,12,0,11,2,12,5,0,2,5,15,3,9,4,14,11,6,12,13,8,12,5,9,10,1,4,10,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,2,5,15,3,9,5,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,4,14,11,6,12,15,3,9,5,15,0,11,2,6,14,11,6,12,12,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,15,0,9,10,14,11,6,12,12,14,11,6,6,6,12,14,4,14,11,6,12,8,4,4,10,6,12,12,14,11,6,6,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,14,2,5,15,3,9,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,8,5,13,2,14,11,12,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,15,3,9,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,13,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,2,5,15,3,9,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,13,5,13,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,0,15,3,9,4,10,0,9,10,1,6,11,2,7,5,1,12,5,9,10,1,6,12,12,0,2,14,11,6,12,12,14,11,6,6,6,12,14,12,5,9,10,1,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,1,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,3,9,6,12,12,14,11,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,9,10,1,6,12,12,14,11,6,6,6,12,14,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"14\", \"11\", \"6\", \"6\"], \"clip_start\": 108.0, \"clip_end\": 114.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q15_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,3,9,6,12,12,8,5,15,0,11,2,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,13,8,12,5,9,10,1,6,12,10,11,2,6,14,11,6,12,12,0,11,2,12,5,0,2,5,15,3,9,4,14,11,6,12,13,8,12,5,9,10,1,4,10,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,2,5,15,3,9,5,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,4,14,11,6,12,15,3,9,5,15,0,11,2,6,14,11,6,12,12,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,15,0,9,10,14,11,6,12,12,14,11,6,6,6,12,14,4,14,11,6,12,8,4,4,10,6,12,12,14,11,6,6,6,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,14,2,5,15,3,9,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,8,5,13,2,14,11,12,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,15,3,9,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,13,4,10,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,2,5,15,3,9,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,5,13,5,13,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,0,15,3,9,4,10,0,9,10,1,6,11,2,7,5,1,12,5,9,10,1,6,12,12,0,2,14,11,6,12,12,14,11,6,6,6,12,14,12,5,9,10,1,11,2,8,8,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,11,2,6,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,1,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,6,6,12,14,1,12,5,9,10,1,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,3,9,6,12,12,14,11,4,14,11,6,12,12,14,11,6,6,6,12,14,6,6,12,14,6,6,13,9,10,1,6,12,12,14,11,6,6,6,12,14,6", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"15\", \"4\", \"11\"], \"clip_start\": 853.0, \"clip_end\": 858.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,8,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,4,11,11,6,9,15,0,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,15,12,0,6,2,10,4,12,0,6,2,10,4,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,11,6,9,15,4,11,11,6,3,4,7,7,13,3,9,3,2,10,12,2,10,12,13,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,14,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,13,7,10,2,10,12,9,15,3,2,10,12,9,15,0,15,1,11,6,9,15,4,11,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,15,2,10,1,6,9,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,14,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,7,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,12,0,6,2,10,9,5,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,2,10,12,9,15,3,2,10,12,9,15,3,2,10,12,4,13,5,10,12,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,3,0,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,11,2,10,12,9,15,3,2,4,7,7,5,2,9,12,1,8,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,3,4,7,7,5,2,9,12,1,11,2,10,12,9,15,13,3,4,7,7,5,2,9,1,6,9,6,4,1,11,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,3,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,10,12,9,9,5,3,6,9,3,2,10,12,9,15,3,2,10,11,6,9,12,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"9\", \"15\", \"4\", \"11\"], \"clip_start\": 592.0, \"clip_end\": 598.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,8,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,4,11,11,6,9,15,0,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,15,12,0,6,2,10,4,12,0,6,2,10,4,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,11,6,9,15,4,11,11,6,3,4,7,7,13,3,9,3,2,10,12,2,10,12,13,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,14,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,13,7,10,2,10,12,9,15,3,2,10,12,9,15,0,15,1,11,6,9,15,4,11,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,15,2,10,1,6,9,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,14,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,7,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,12,0,6,2,10,9,5,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,2,10,12,9,15,3,2,10,12,9,15,3,2,10,12,4,13,5,10,12,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,3,0,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,11,2,10,12,9,15,3,2,4,7,7,5,2,9,12,1,8,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,3,4,7,7,5,2,9,12,1,11,2,10,12,9,15,13,3,4,7,7,5,2,9,1,6,9,6,4,1,11,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,3,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,10,12,9,9,5,3,6,9,3,2,10,12,9,15,3,2,10,11,6,9,12,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"15\", \"4\", \"11\", \"11\"], \"clip_start\": 158.0, \"clip_end\": 164.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,8,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,4,11,11,6,9,15,0,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,15,12,0,6,2,10,4,12,0,6,2,10,4,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,11,6,9,15,4,11,11,6,3,4,7,7,13,3,9,3,2,10,12,2,10,12,13,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,14,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,13,7,10,2,10,12,9,15,3,2,10,12,9,15,0,15,1,11,6,9,15,4,11,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,15,2,10,1,6,9,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,14,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,7,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,12,0,6,2,10,9,5,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,2,10,12,9,15,3,2,10,12,9,15,3,2,10,12,4,13,5,10,12,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,3,0,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,11,2,10,12,9,15,3,2,4,7,7,5,2,9,12,1,8,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,3,4,7,7,5,2,9,12,1,11,2,10,12,9,15,13,3,4,7,7,5,2,9,1,6,9,6,4,1,11,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,3,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,10,12,9,9,5,3,6,9,3,2,10,12,9,15,3,2,10,11,6,9,12,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"4\"], \"clip_start\": 358.0, \"clip_end\": 361.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,8,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,4,11,11,6,9,15,0,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,15,12,0,6,2,10,4,12,0,6,2,10,4,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,11,6,9,15,4,11,11,6,3,4,7,7,13,3,9,3,2,10,12,2,10,12,13,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,14,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,13,7,10,2,10,12,9,15,3,2,10,12,9,15,0,15,1,11,6,9,15,4,11,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,15,2,10,1,6,9,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,14,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,7,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,12,0,6,2,10,9,5,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,2,10,12,9,15,3,2,10,12,9,15,3,2,10,12,4,13,5,10,12,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,3,0,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,11,2,10,12,9,15,3,2,4,7,7,5,2,9,12,1,8,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,3,4,7,7,5,2,9,12,1,11,2,10,12,9,15,13,3,4,7,7,5,2,9,1,6,9,6,4,1,11,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,3,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,10,12,9,9,5,3,6,9,3,2,10,12,9,15,3,2,10,11,6,9,12,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"9\", \"12\", \"0\"], \"clip_start\": 607.0, \"clip_end\": 612.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,8,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,4,11,11,6,9,15,0,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,15,12,0,6,2,10,4,12,0,6,2,10,4,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,11,6,9,15,4,11,11,6,3,4,7,7,13,3,9,3,2,10,12,2,10,12,13,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,14,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,13,7,10,2,10,12,9,15,3,2,10,12,9,15,0,15,1,11,6,9,15,4,11,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,15,2,10,1,6,9,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,14,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,7,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,12,0,6,2,10,9,5,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,2,10,12,9,15,3,2,10,12,9,15,3,2,10,12,4,13,5,10,12,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,3,0,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,11,2,10,12,9,15,3,2,4,7,7,5,2,9,12,1,8,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,3,4,7,7,5,2,9,12,1,11,2,10,12,9,15,13,3,4,7,7,5,2,9,1,6,9,6,4,1,11,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,3,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,10,12,9,9,5,3,6,9,3,2,10,12,9,15,3,2,10,11,6,9,12,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"1\", \"11\", \"6\"], \"clip_start\": 409.0, \"clip_end\": 414.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,8,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,4,11,11,6,9,15,0,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,15,12,0,6,2,10,4,12,0,6,2,10,4,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,11,6,9,15,4,11,11,6,3,4,7,7,13,3,9,3,2,10,12,2,10,12,13,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,14,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,13,7,10,2,10,12,9,15,3,2,10,12,9,15,0,15,1,11,6,9,15,4,11,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,15,2,10,1,6,9,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,14,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,7,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,12,0,6,2,10,9,5,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,2,10,12,9,15,3,2,10,12,9,15,3,2,10,12,4,13,5,10,12,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,3,0,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,11,2,10,12,9,15,3,2,4,7,7,5,2,9,12,1,8,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,3,4,7,7,5,2,9,12,1,11,2,10,12,9,15,13,3,4,7,7,5,2,9,1,6,9,6,4,1,11,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,3,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,10,12,9,9,5,3,6,9,3,2,10,12,9,15,3,2,10,11,6,9,12,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"4\", \"11\", \"11\", \"6\", \"9\"], \"clip_start\": 879.0, \"clip_end\": 885.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,8,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,4,11,11,6,9,15,0,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,15,12,0,6,2,10,4,12,0,6,2,10,4,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,11,6,9,15,4,11,11,6,3,4,7,7,13,3,9,3,2,10,12,2,10,12,13,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,14,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,13,7,10,2,10,12,9,15,3,2,10,12,9,15,0,15,1,11,6,9,15,4,11,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,15,2,10,1,6,9,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,14,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,7,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,12,0,6,2,10,9,5,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,2,10,12,9,15,3,2,10,12,9,15,3,2,10,12,4,13,5,10,12,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,3,0,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,11,2,10,12,9,15,3,2,4,7,7,5,2,9,12,1,8,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,3,4,7,7,5,2,9,12,1,11,2,10,12,9,15,13,3,4,7,7,5,2,9,1,6,9,6,4,1,11,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,3,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,10,12,9,9,5,3,6,9,3,2,10,12,9,15,3,2,10,11,6,9,12,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"4\", \"11\", \"11\", \"2\", \"10\"], \"clip_start\": 774.0, \"clip_end\": 780.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,8,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,4,11,11,6,9,15,0,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,15,12,0,6,2,10,4,12,0,6,2,10,4,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,11,6,9,15,4,11,11,6,3,4,7,7,13,3,9,3,2,10,12,2,10,12,13,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,14,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,13,7,10,2,10,12,9,15,3,2,10,12,9,15,0,15,1,11,6,9,15,4,11,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,15,2,10,1,6,9,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,14,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,7,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,12,0,6,2,10,9,5,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,2,10,12,9,15,3,2,10,12,9,15,3,2,10,12,4,13,5,10,12,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,3,0,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,11,2,10,12,9,15,3,2,4,7,7,5,2,9,12,1,8,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,3,4,7,7,5,2,9,12,1,11,2,10,12,9,15,13,3,4,7,7,5,2,9,1,6,9,6,4,1,11,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,3,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,10,12,9,9,5,3,6,9,3,2,10,12,9,15,3,2,10,11,6,9,12,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\"], \"clip_start\": 967.0, \"clip_end\": 970.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,8,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,4,11,11,6,9,15,0,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,15,12,0,6,2,10,4,12,0,6,2,10,4,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,11,6,9,15,4,11,11,6,3,4,7,7,13,3,9,3,2,10,12,2,10,12,13,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,14,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,13,7,10,2,10,12,9,15,3,2,10,12,9,15,0,15,1,11,6,9,15,4,11,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,15,2,10,1,6,9,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,14,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,7,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,12,0,6,2,10,9,5,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,2,10,12,9,15,3,2,10,12,9,15,3,2,10,12,4,13,5,10,12,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,3,0,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,11,2,10,12,9,15,3,2,4,7,7,5,2,9,12,1,8,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,3,4,7,7,5,2,9,12,1,11,2,10,12,9,15,13,3,4,7,7,5,2,9,1,6,9,6,4,1,11,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,3,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,10,12,9,9,5,3,6,9,3,2,10,12,9,15,3,2,10,11,6,9,12,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"13\", \"3\"], \"clip_start\": 839.0, \"clip_end\": 844.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q9_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,8,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,4,11,11,6,9,15,0,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,15,12,0,6,2,10,4,12,0,6,2,10,4,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,11,6,9,15,4,11,11,6,3,4,7,7,13,3,9,3,2,10,12,2,10,12,13,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,14,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,13,7,10,2,10,12,9,15,3,2,10,12,9,15,0,15,1,11,6,9,15,4,11,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,15,2,10,1,6,9,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,14,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,7,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,12,0,6,2,10,9,5,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,2,10,12,9,15,3,2,10,12,9,15,3,2,10,12,4,13,5,10,12,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,3,0,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,11,2,10,12,9,15,3,2,4,7,7,5,2,9,12,1,8,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,3,4,7,7,5,2,9,12,1,11,2,10,12,9,15,13,3,4,7,7,5,2,9,1,6,9,6,4,1,11,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,3,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,10,12,9,9,5,3,6,9,3,2,10,12,9,15,3,2,10,11,6,9,12,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"15\", \"4\", \"11\", \"11\"], \"clip_start\": 159.0, \"clip_end\": 164.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q10_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,8,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,4,11,11,6,9,15,0,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,15,12,0,6,2,10,4,12,0,6,2,10,4,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,11,6,9,15,4,11,11,6,3,4,7,7,13,3,9,3,2,10,12,2,10,12,13,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,14,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,13,7,10,2,10,12,9,15,3,2,10,12,9,15,0,15,1,11,6,9,15,4,11,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,15,2,10,1,6,9,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,14,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,7,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,12,0,6,2,10,9,5,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,2,10,12,9,15,3,2,10,12,9,15,3,2,10,12,4,13,5,10,12,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,3,0,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,11,2,10,12,9,15,3,2,4,7,7,5,2,9,12,1,8,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,3,4,7,7,5,2,9,12,1,11,2,10,12,9,15,13,3,4,7,7,5,2,9,1,6,9,6,4,1,11,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,3,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,10,12,9,9,5,3,6,9,3,2,10,12,9,15,3,2,10,11,6,9,12,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"9\", \"15\", \"4\"], \"clip_start\": 412.0, \"clip_end\": 417.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,8,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,4,11,11,6,9,15,0,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,15,12,0,6,2,10,4,12,0,6,2,10,4,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,11,6,9,15,4,11,11,6,3,4,7,7,13,3,9,3,2,10,12,2,10,12,13,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,14,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,13,7,10,2,10,12,9,15,3,2,10,12,9,15,0,15,1,11,6,9,15,4,11,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,15,2,10,1,6,9,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,14,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,7,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,12,0,6,2,10,9,5,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,2,10,12,9,15,3,2,10,12,9,15,3,2,10,12,4,13,5,10,12,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,3,0,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,11,2,10,12,9,15,3,2,4,7,7,5,2,9,12,1,8,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,3,4,7,7,5,2,9,12,1,11,2,10,12,9,15,13,3,4,7,7,5,2,9,1,6,9,6,4,1,11,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,3,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,10,12,9,9,5,3,6,9,3,2,10,12,9,15,3,2,10,11,6,9,12,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"15\", \"9\"], \"clip_start\": 474.0, \"clip_end\": 479.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q12_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,8,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,4,11,11,6,9,15,0,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,15,12,0,6,2,10,4,12,0,6,2,10,4,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,11,6,9,15,4,11,11,6,3,4,7,7,13,3,9,3,2,10,12,2,10,12,13,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,14,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,13,7,10,2,10,12,9,15,3,2,10,12,9,15,0,15,1,11,6,9,15,4,11,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,15,2,10,1,6,9,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,14,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,7,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,12,0,6,2,10,9,5,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,2,10,12,9,15,3,2,10,12,9,15,3,2,10,12,4,13,5,10,12,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,3,0,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,11,2,10,12,9,15,3,2,4,7,7,5,2,9,12,1,8,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,3,4,7,7,5,2,9,12,1,11,2,10,12,9,15,13,3,4,7,7,5,2,9,1,6,9,6,4,1,11,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,3,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,10,12,9,9,5,3,6,9,3,2,10,12,9,15,3,2,10,11,6,9,12,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"9\"], \"clip_start\": 841.0, \"clip_end\": 844.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q13_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,8,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,4,11,11,6,9,15,0,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,15,12,0,6,2,10,4,12,0,6,2,10,4,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,11,6,9,15,4,11,11,6,3,4,7,7,13,3,9,3,2,10,12,2,10,12,13,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,14,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,13,7,10,2,10,12,9,15,3,2,10,12,9,15,0,15,1,11,6,9,15,4,11,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,15,2,10,1,6,9,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,14,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,7,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,12,0,6,2,10,9,5,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,2,10,12,9,15,3,2,10,12,9,15,3,2,10,12,4,13,5,10,12,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,3,0,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,11,2,10,12,9,15,3,2,4,7,7,5,2,9,12,1,8,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,3,4,7,7,5,2,9,12,1,11,2,10,12,9,15,13,3,4,7,7,5,2,9,1,6,9,6,4,1,11,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,3,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,10,12,9,9,5,3,6,9,3,2,10,12,9,15,3,2,10,11,6,9,12,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"15\", \"4\", \"11\", \"11\"], \"clip_start\": 471.0, \"clip_end\": 477.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q14_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,8,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,4,11,11,6,9,15,0,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,15,12,0,6,2,10,4,12,0,6,2,10,4,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,11,6,9,15,4,11,11,6,3,4,7,7,13,3,9,3,2,10,12,2,10,12,13,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,14,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,13,7,10,2,10,12,9,15,3,2,10,12,9,15,0,15,1,11,6,9,15,4,11,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,15,2,10,1,6,9,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,14,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,7,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,12,0,6,2,10,9,5,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,2,10,12,9,15,3,2,10,12,9,15,3,2,10,12,4,13,5,10,12,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,3,0,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,11,2,10,12,9,15,3,2,4,7,7,5,2,9,12,1,8,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,3,4,7,7,5,2,9,12,1,11,2,10,12,9,15,13,3,4,7,7,5,2,9,1,6,9,6,4,1,11,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,3,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,10,12,9,9,5,3,6,9,3,2,10,12,9,15,3,2,10,11,6,9,12,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"11\", \"6\", \"9\", \"15\"], \"clip_start\": 986.0, \"clip_end\": 992.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q15_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,8,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,4,11,11,6,9,15,0,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,15,12,0,6,2,10,4,12,0,6,2,10,4,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,11,6,9,15,4,11,11,6,3,4,7,7,13,3,9,3,2,10,12,2,10,12,13,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,14,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,13,7,10,2,10,12,9,15,3,2,10,12,9,15,0,15,1,11,6,9,15,4,11,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,15,2,10,1,6,9,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,4,7,7,5,2,9,12,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,14,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,7,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,12,0,6,2,10,9,5,0,1,11,6,9,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,2,10,12,9,15,3,2,10,12,9,15,3,2,10,12,4,13,5,10,12,5,10,9,5,0,1,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,3,0,15,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,4,12,0,6,2,10,11,2,10,12,9,15,3,2,4,7,7,5,2,9,12,1,8,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,3,4,7,7,5,2,9,12,1,11,2,10,12,9,15,13,3,4,7,7,5,2,9,1,6,9,6,4,1,11,6,4,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,3,2,10,12,9,15,3,2,10,12,9,15,3,2,10,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,9,15,4,11,11,6,10,12,9,9,5,3,6,9,3,2,10,12,9,15,3,2,10,11,6,9,12,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"12\", \"14\", \"14\"], \"clip_start\": 393.0, \"clip_end\": 398.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,15,14,4,15,12,14,7,6,7,9,0,8,10,12,13,6,7,14,7,5,4,0,8,7,10,12,13,7,10,12,13,7,6,1,11,5,4,12,14,14,7,6,14,4,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,3,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,11,8,2,13,9,12,5,4,12,5,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,0,7,6,11,13,12,14,7,0,10,0,8,10,12,9,11,8,2,10,12,15,5,4,12,14,14,7,6,11,15,6,11,13,9,12,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,6,7,5,4,1,11,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,3,6,4,5,4,12,14,14,14,7,6,14,4,14,7,6,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,9,0,8,2,13,9,12,14,8,7,6,7,14,7,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,2,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,13,9,12,14,5,4,12,14,14,6,7,14,7,14,7,14,7,14,7,14,7,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,12,14,10,12,15,12,14,7,6,14,4,14,8,10,12,5,4,12,14,14,7,6,12,6,11,15,6,11,15,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,3,0,10,12,15,5,4,7,6,11,11,8,10,12,5,4,12,14,14,7,6,2,12,5,4,15,6,11,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,12,14,14,7,6,1,2,0,8,10,12,5,4,12,14,14,13,9,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,8,7,6,11,15,6,11,15,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,6,14,4,14,11,8,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,9,11,8,0,10,12,15,12,14,7,6,14,4,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,9,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"7\", \"6\", \"14\"], \"clip_start\": 342.0, \"clip_end\": 347.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,15,14,4,15,12,14,7,6,7,9,0,8,10,12,13,6,7,14,7,5,4,0,8,7,10,12,13,7,10,12,13,7,6,1,11,5,4,12,14,14,7,6,14,4,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,3,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,11,8,2,13,9,12,5,4,12,5,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,0,7,6,11,13,12,14,7,0,10,0,8,10,12,9,11,8,2,10,12,15,5,4,12,14,14,7,6,11,15,6,11,13,9,12,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,6,7,5,4,1,11,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,3,6,4,5,4,12,14,14,14,7,6,14,4,14,7,6,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,9,0,8,2,13,9,12,14,8,7,6,7,14,7,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,2,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,13,9,12,14,5,4,12,14,14,6,7,14,7,14,7,14,7,14,7,14,7,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,12,14,10,12,15,12,14,7,6,14,4,14,8,10,12,5,4,12,14,14,7,6,12,6,11,15,6,11,15,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,3,0,10,12,15,5,4,7,6,11,11,8,10,12,5,4,12,14,14,7,6,2,12,5,4,15,6,11,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,12,14,14,7,6,1,2,0,8,10,12,5,4,12,14,14,13,9,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,8,7,6,11,15,6,11,15,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,6,14,4,14,11,8,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,9,11,8,0,10,12,15,12,14,7,6,14,4,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,9,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"7\"], \"clip_start\": 917.0, \"clip_end\": 920.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,15,14,4,15,12,14,7,6,7,9,0,8,10,12,13,6,7,14,7,5,4,0,8,7,10,12,13,7,10,12,13,7,6,1,11,5,4,12,14,14,7,6,14,4,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,3,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,11,8,2,13,9,12,5,4,12,5,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,0,7,6,11,13,12,14,7,0,10,0,8,10,12,9,11,8,2,10,12,15,5,4,12,14,14,7,6,11,15,6,11,13,9,12,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,6,7,5,4,1,11,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,3,6,4,5,4,12,14,14,14,7,6,14,4,14,7,6,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,9,0,8,2,13,9,12,14,8,7,6,7,14,7,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,2,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,13,9,12,14,5,4,12,14,14,6,7,14,7,14,7,14,7,14,7,14,7,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,12,14,10,12,15,12,14,7,6,14,4,14,8,10,12,5,4,12,14,14,7,6,12,6,11,15,6,11,15,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,3,0,10,12,15,5,4,7,6,11,11,8,10,12,5,4,12,14,14,7,6,2,12,5,4,15,6,11,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,12,14,14,7,6,1,2,0,8,10,12,5,4,12,14,14,13,9,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,8,7,6,11,15,6,11,15,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,6,14,4,14,11,8,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,9,11,8,0,10,12,15,12,14,7,6,14,4,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,9,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 164.0, \"clip_end\": 170.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,15,14,4,15,12,14,7,6,7,9,0,8,10,12,13,6,7,14,7,5,4,0,8,7,10,12,13,7,10,12,13,7,6,1,11,5,4,12,14,14,7,6,14,4,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,3,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,11,8,2,13,9,12,5,4,12,5,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,0,7,6,11,13,12,14,7,0,10,0,8,10,12,9,11,8,2,10,12,15,5,4,12,14,14,7,6,11,15,6,11,13,9,12,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,6,7,5,4,1,11,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,3,6,4,5,4,12,14,14,14,7,6,14,4,14,7,6,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,9,0,8,2,13,9,12,14,8,7,6,7,14,7,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,2,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,13,9,12,14,5,4,12,14,14,6,7,14,7,14,7,14,7,14,7,14,7,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,12,14,10,12,15,12,14,7,6,14,4,14,8,10,12,5,4,12,14,14,7,6,12,6,11,15,6,11,15,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,3,0,10,12,15,5,4,7,6,11,11,8,10,12,5,4,12,14,14,7,6,2,12,5,4,15,6,11,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,12,14,14,7,6,1,2,0,8,10,12,5,4,12,14,14,13,9,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,8,7,6,11,15,6,11,15,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,6,14,4,14,11,8,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,9,11,8,0,10,12,15,12,14,7,6,14,4,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,9,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"0\", \"8\"], \"clip_start\": 378.0, \"clip_end\": 382.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,15,14,4,15,12,14,7,6,7,9,0,8,10,12,13,6,7,14,7,5,4,0,8,7,10,12,13,7,10,12,13,7,6,1,11,5,4,12,14,14,7,6,14,4,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,3,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,11,8,2,13,9,12,5,4,12,5,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,0,7,6,11,13,12,14,7,0,10,0,8,10,12,9,11,8,2,10,12,15,5,4,12,14,14,7,6,11,15,6,11,13,9,12,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,6,7,5,4,1,11,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,3,6,4,5,4,12,14,14,14,7,6,14,4,14,7,6,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,9,0,8,2,13,9,12,14,8,7,6,7,14,7,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,2,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,13,9,12,14,5,4,12,14,14,6,7,14,7,14,7,14,7,14,7,14,7,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,12,14,10,12,15,12,14,7,6,14,4,14,8,10,12,5,4,12,14,14,7,6,12,6,11,15,6,11,15,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,3,0,10,12,15,5,4,7,6,11,11,8,10,12,5,4,12,14,14,7,6,2,12,5,4,15,6,11,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,12,14,14,7,6,1,2,0,8,10,12,5,4,12,14,14,13,9,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,8,7,6,11,15,6,11,15,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,6,14,4,14,11,8,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,9,11,8,0,10,12,15,12,14,7,6,14,4,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,9,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"14\", \"7\", \"6\"], \"clip_start\": 372.0, \"clip_end\": 376.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,15,14,4,15,12,14,7,6,7,9,0,8,10,12,13,6,7,14,7,5,4,0,8,7,10,12,13,7,10,12,13,7,6,1,11,5,4,12,14,14,7,6,14,4,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,3,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,11,8,2,13,9,12,5,4,12,5,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,0,7,6,11,13,12,14,7,0,10,0,8,10,12,9,11,8,2,10,12,15,5,4,12,14,14,7,6,11,15,6,11,13,9,12,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,6,7,5,4,1,11,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,3,6,4,5,4,12,14,14,14,7,6,14,4,14,7,6,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,9,0,8,2,13,9,12,14,8,7,6,7,14,7,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,2,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,13,9,12,14,5,4,12,14,14,6,7,14,7,14,7,14,7,14,7,14,7,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,12,14,10,12,15,12,14,7,6,14,4,14,8,10,12,5,4,12,14,14,7,6,12,6,11,15,6,11,15,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,3,0,10,12,15,5,4,7,6,11,11,8,10,12,5,4,12,14,14,7,6,2,12,5,4,15,6,11,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,12,14,14,7,6,1,2,0,8,10,12,5,4,12,14,14,13,9,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,8,7,6,11,15,6,11,15,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,6,14,4,14,11,8,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,9,11,8,0,10,12,15,12,14,7,6,14,4,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,9,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 949.0, \"clip_end\": 953.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,15,14,4,15,12,14,7,6,7,9,0,8,10,12,13,6,7,14,7,5,4,0,8,7,10,12,13,7,10,12,13,7,6,1,11,5,4,12,14,14,7,6,14,4,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,3,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,11,8,2,13,9,12,5,4,12,5,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,0,7,6,11,13,12,14,7,0,10,0,8,10,12,9,11,8,2,10,12,15,5,4,12,14,14,7,6,11,15,6,11,13,9,12,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,6,7,5,4,1,11,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,3,6,4,5,4,12,14,14,14,7,6,14,4,14,7,6,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,9,0,8,2,13,9,12,14,8,7,6,7,14,7,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,2,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,13,9,12,14,5,4,12,14,14,6,7,14,7,14,7,14,7,14,7,14,7,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,12,14,10,12,15,12,14,7,6,14,4,14,8,10,12,5,4,12,14,14,7,6,12,6,11,15,6,11,15,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,3,0,10,12,15,5,4,7,6,11,11,8,10,12,5,4,12,14,14,7,6,2,12,5,4,15,6,11,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,12,14,14,7,6,1,2,0,8,10,12,5,4,12,14,14,13,9,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,8,7,6,11,15,6,11,15,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,6,14,4,14,11,8,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,9,11,8,0,10,12,15,12,14,7,6,14,4,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,9,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"4\", \"14\", \"7\"], \"clip_start\": 597.0, \"clip_end\": 602.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,15,14,4,15,12,14,7,6,7,9,0,8,10,12,13,6,7,14,7,5,4,0,8,7,10,12,13,7,10,12,13,7,6,1,11,5,4,12,14,14,7,6,14,4,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,3,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,11,8,2,13,9,12,5,4,12,5,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,0,7,6,11,13,12,14,7,0,10,0,8,10,12,9,11,8,2,10,12,15,5,4,12,14,14,7,6,11,15,6,11,13,9,12,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,6,7,5,4,1,11,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,3,6,4,5,4,12,14,14,14,7,6,14,4,14,7,6,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,9,0,8,2,13,9,12,14,8,7,6,7,14,7,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,2,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,13,9,12,14,5,4,12,14,14,6,7,14,7,14,7,14,7,14,7,14,7,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,12,14,10,12,15,12,14,7,6,14,4,14,8,10,12,5,4,12,14,14,7,6,12,6,11,15,6,11,15,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,3,0,10,12,15,5,4,7,6,11,11,8,10,12,5,4,12,14,14,7,6,2,12,5,4,15,6,11,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,12,14,14,7,6,1,2,0,8,10,12,5,4,12,14,14,13,9,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,8,7,6,11,15,6,11,15,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,6,14,4,14,11,8,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,9,11,8,0,10,12,15,12,14,7,6,14,4,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,9,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"6\", \"14\", \"4\"], \"clip_start\": 123.0, \"clip_end\": 128.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,15,14,4,15,12,14,7,6,7,9,0,8,10,12,13,6,7,14,7,5,4,0,8,7,10,12,13,7,10,12,13,7,6,1,11,5,4,12,14,14,7,6,14,4,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,3,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,11,8,2,13,9,12,5,4,12,5,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,0,7,6,11,13,12,14,7,0,10,0,8,10,12,9,11,8,2,10,12,15,5,4,12,14,14,7,6,11,15,6,11,13,9,12,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,6,7,5,4,1,11,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,3,6,4,5,4,12,14,14,14,7,6,14,4,14,7,6,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,9,0,8,2,13,9,12,14,8,7,6,7,14,7,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,2,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,13,9,12,14,5,4,12,14,14,6,7,14,7,14,7,14,7,14,7,14,7,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,12,14,10,12,15,12,14,7,6,14,4,14,8,10,12,5,4,12,14,14,7,6,12,6,11,15,6,11,15,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,3,0,10,12,15,5,4,7,6,11,11,8,10,12,5,4,12,14,14,7,6,2,12,5,4,15,6,11,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,12,14,14,7,6,1,2,0,8,10,12,5,4,12,14,14,13,9,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,8,7,6,11,15,6,11,15,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,6,14,4,14,11,8,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,9,11,8,0,10,12,15,12,14,7,6,14,4,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,9,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"7\", \"14\", \"7\"], \"clip_start\": 941.0, \"clip_end\": 946.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,15,14,4,15,12,14,7,6,7,9,0,8,10,12,13,6,7,14,7,5,4,0,8,7,10,12,13,7,10,12,13,7,6,1,11,5,4,12,14,14,7,6,14,4,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,3,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,11,8,2,13,9,12,5,4,12,5,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,0,7,6,11,13,12,14,7,0,10,0,8,10,12,9,11,8,2,10,12,15,5,4,12,14,14,7,6,11,15,6,11,13,9,12,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,6,7,5,4,1,11,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,3,6,4,5,4,12,14,14,14,7,6,14,4,14,7,6,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,9,0,8,2,13,9,12,14,8,7,6,7,14,7,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,2,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,13,9,12,14,5,4,12,14,14,6,7,14,7,14,7,14,7,14,7,14,7,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,12,14,10,12,15,12,14,7,6,14,4,14,8,10,12,5,4,12,14,14,7,6,12,6,11,15,6,11,15,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,3,0,10,12,15,5,4,7,6,11,11,8,10,12,5,4,12,14,14,7,6,2,12,5,4,15,6,11,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,12,14,14,7,6,1,2,0,8,10,12,5,4,12,14,14,13,9,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,8,7,6,11,15,6,11,15,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,6,14,4,14,11,8,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,9,11,8,0,10,12,15,12,14,7,6,14,4,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,9,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 382.0, \"clip_end\": 387.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,15,14,4,15,12,14,7,6,7,9,0,8,10,12,13,6,7,14,7,5,4,0,8,7,10,12,13,7,10,12,13,7,6,1,11,5,4,12,14,14,7,6,14,4,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,3,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,11,8,2,13,9,12,5,4,12,5,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,0,7,6,11,13,12,14,7,0,10,0,8,10,12,9,11,8,2,10,12,15,5,4,12,14,14,7,6,11,15,6,11,13,9,12,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,6,7,5,4,1,11,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,3,6,4,5,4,12,14,14,14,7,6,14,4,14,7,6,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,9,0,8,2,13,9,12,14,8,7,6,7,14,7,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,2,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,13,9,12,14,5,4,12,14,14,6,7,14,7,14,7,14,7,14,7,14,7,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,12,14,10,12,15,12,14,7,6,14,4,14,8,10,12,5,4,12,14,14,7,6,12,6,11,15,6,11,15,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,3,0,10,12,15,5,4,7,6,11,11,8,10,12,5,4,12,14,14,7,6,2,12,5,4,15,6,11,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,12,14,14,7,6,1,2,0,8,10,12,5,4,12,14,14,13,9,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,8,7,6,11,15,6,11,15,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,6,14,4,14,11,8,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,9,11,8,0,10,12,15,12,14,7,6,14,4,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,9,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"14\", \"4\", \"14\"], \"clip_start\": 524.0, \"clip_end\": 529.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,15,14,4,15,12,14,7,6,7,9,0,8,10,12,13,6,7,14,7,5,4,0,8,7,10,12,13,7,10,12,13,7,6,1,11,5,4,12,14,14,7,6,14,4,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,3,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,11,8,2,13,9,12,5,4,12,5,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,0,7,6,11,13,12,14,7,0,10,0,8,10,12,9,11,8,2,10,12,15,5,4,12,14,14,7,6,11,15,6,11,13,9,12,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,6,7,5,4,1,11,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,3,6,4,5,4,12,14,14,14,7,6,14,4,14,7,6,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,9,0,8,2,13,9,12,14,8,7,6,7,14,7,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,2,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,13,9,12,14,5,4,12,14,14,6,7,14,7,14,7,14,7,14,7,14,7,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,12,14,10,12,15,12,14,7,6,14,4,14,8,10,12,5,4,12,14,14,7,6,12,6,11,15,6,11,15,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,3,0,10,12,15,5,4,7,6,11,11,8,10,12,5,4,12,14,14,7,6,2,12,5,4,15,6,11,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,12,14,14,7,6,1,2,0,8,10,12,5,4,12,14,14,13,9,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,8,7,6,11,15,6,11,15,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,6,14,4,14,11,8,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,9,11,8,0,10,12,15,12,14,7,6,14,4,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,9,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 243.0, \"clip_end\": 249.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,15,14,4,15,12,14,7,6,7,9,0,8,10,12,13,6,7,14,7,5,4,0,8,7,10,12,13,7,10,12,13,7,6,1,11,5,4,12,14,14,7,6,14,4,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,3,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,11,8,2,13,9,12,5,4,12,5,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,0,7,6,11,13,12,14,7,0,10,0,8,10,12,9,11,8,2,10,12,15,5,4,12,14,14,7,6,11,15,6,11,13,9,12,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,6,7,5,4,1,11,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,3,6,4,5,4,12,14,14,14,7,6,14,4,14,7,6,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,9,0,8,2,13,9,12,14,8,7,6,7,14,7,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,2,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,13,9,12,14,5,4,12,14,14,6,7,14,7,14,7,14,7,14,7,14,7,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,12,14,10,12,15,12,14,7,6,14,4,14,8,10,12,5,4,12,14,14,7,6,12,6,11,15,6,11,15,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,3,0,10,12,15,5,4,7,6,11,11,8,10,12,5,4,12,14,14,7,6,2,12,5,4,15,6,11,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,12,14,14,7,6,1,2,0,8,10,12,5,4,12,14,14,13,9,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,8,7,6,11,15,6,11,15,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,6,14,4,14,11,8,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,9,11,8,0,10,12,15,12,14,7,6,14,4,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,9,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"14\", \"7\", \"14\", \"7\"], \"clip_start\": 888.0, \"clip_end\": 894.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,15,14,4,15,12,14,7,6,7,9,0,8,10,12,13,6,7,14,7,5,4,0,8,7,10,12,13,7,10,12,13,7,6,1,11,5,4,12,14,14,7,6,14,4,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,3,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,11,8,2,13,9,12,5,4,12,5,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,0,7,6,11,13,12,14,7,0,10,0,8,10,12,9,11,8,2,10,12,15,5,4,12,14,14,7,6,11,15,6,11,13,9,12,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,6,7,5,4,1,11,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,3,6,4,5,4,12,14,14,14,7,6,14,4,14,7,6,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,9,0,8,2,13,9,12,14,8,7,6,7,14,7,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,2,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,13,9,12,14,5,4,12,14,14,6,7,14,7,14,7,14,7,14,7,14,7,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,12,14,10,12,15,12,14,7,6,14,4,14,8,10,12,5,4,12,14,14,7,6,12,6,11,15,6,11,15,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,3,0,10,12,15,5,4,7,6,11,11,8,10,12,5,4,12,14,14,7,6,2,12,5,4,15,6,11,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,12,14,14,7,6,1,2,0,8,10,12,5,4,12,14,14,13,9,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,8,7,6,11,15,6,11,15,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,6,14,4,14,11,8,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,9,11,8,0,10,12,15,12,14,7,6,14,4,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,9,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"4\", \"12\"], \"clip_start\": 36.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,15,14,4,15,12,14,7,6,7,9,0,8,10,12,13,6,7,14,7,5,4,0,8,7,10,12,13,7,10,12,13,7,6,1,11,5,4,12,14,14,7,6,14,4,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,3,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,11,8,2,13,9,12,5,4,12,5,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,0,7,6,11,13,12,14,7,0,10,0,8,10,12,9,11,8,2,10,12,15,5,4,12,14,14,7,6,11,15,6,11,13,9,12,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,6,7,5,4,1,11,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,3,6,4,5,4,12,14,14,14,7,6,14,4,14,7,6,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,9,0,8,2,13,9,12,14,8,7,6,7,14,7,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,2,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,13,9,12,14,5,4,12,14,14,6,7,14,7,14,7,14,7,14,7,14,7,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,12,14,10,12,15,12,14,7,6,14,4,14,8,10,12,5,4,12,14,14,7,6,12,6,11,15,6,11,15,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,3,0,10,12,15,5,4,7,6,11,11,8,10,12,5,4,12,14,14,7,6,2,12,5,4,15,6,11,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,12,14,14,7,6,1,2,0,8,10,12,5,4,12,14,14,13,9,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,8,7,6,11,15,6,11,15,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,6,14,4,14,11,8,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,9,11,8,0,10,12,15,12,14,7,6,14,4,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,9,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 552.0, \"clip_end\": 555.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,15,14,4,15,12,14,7,6,7,9,0,8,10,12,13,6,7,14,7,5,4,0,8,7,10,12,13,7,10,12,13,7,6,1,11,5,4,12,14,14,7,6,14,4,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,3,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,11,8,2,13,9,12,5,4,12,5,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,0,7,6,11,13,12,14,7,0,10,0,8,10,12,9,11,8,2,10,12,15,5,4,12,14,14,7,6,11,15,6,11,13,9,12,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,15,6,7,5,4,1,11,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,3,6,4,5,4,12,14,14,14,7,6,14,4,14,7,6,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,9,0,8,2,13,9,12,14,8,7,6,7,14,7,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,2,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,13,9,12,14,5,4,12,14,14,6,7,14,7,14,7,14,7,14,7,14,7,14,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,12,14,10,12,15,12,14,7,6,14,4,14,8,10,12,5,4,12,14,14,7,6,12,6,11,15,6,11,15,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,3,0,10,12,15,5,4,7,6,11,11,8,10,12,5,4,12,14,14,7,6,2,12,5,4,15,6,11,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,5,4,12,14,14,7,6,1,2,0,8,10,12,5,4,12,14,14,13,9,10,12,15,5,4,12,14,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,1,11,10,12,15,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,13,9,12,14,7,6,14,4,14,7,6,14,4,14,8,7,6,11,15,6,11,15,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,6,14,4,14,11,8,7,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,9,11,8,0,10,12,15,12,14,7,6,14,4,6,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,14,7,9,0,8,2,13,9,12,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14,4,14,7,6,14", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,3,14,1,3,1,6,0,12,11,3,6,13,11,8,10,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,15,9,1,1,3,3,4,3,1,3,3,4,3,0,15,9,1,1,3,3,4,3,1,3,3,4,3,10,15,0,11,6,0,12,11,3,6,13,11,13,3,3,14,1,3,12,11,3,6,13,11,13,4,8,13,13,4,8,13,3,3,14,1,3,9,1,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,11,3,6,13,11,13,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,15,9,1,1,3,3,4,3,1,3,3,4,3,5,12,11,3,10,4,5,4,1,3,3,4,3,1,3,3,4,3,2,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,0,10,6,4,4,8,13,3,3,14,1,3,8,8,8,14,6,4,11,3,6,13,11,14,9,10,15,9,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,4,11,6,4,8,13,13,3,3,5,12,6,14,9,15,0,7,15,0,9,10,15,9,1,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,4,3,14,1,3,1,3,3,4,3,1,2,13,2,13,5,6,4,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,11,3,6,13,11,13,3,3,14,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,1,3,4,5,4,1,3,4,3,14,1,3,1,3,3,4,3,1,2,13,5,12,6,4,4,0,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,14,9,10,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,2,13,7,15,9,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,15,9,11,8,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,8,14,9,1,3,4,5,4,1,3,4,3,14,1,3,14,3,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,0,3,11,3,6,13,11,5,12,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,7,15,9,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,13,3,3,14,5,12,6,4,8,13,3,3,4,3,1,3,3,4,11,3,6,13,11,8,15,9,11,3,6,13,11,13,3,3,14,1,3,8,6,4", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"1\", \"3\", \"3\", \"4\"], \"clip_start\": 947.0, \"clip_end\": 953.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,3,14,1,3,1,6,0,12,11,3,6,13,11,8,10,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,15,9,1,1,3,3,4,3,1,3,3,4,3,0,15,9,1,1,3,3,4,3,1,3,3,4,3,10,15,0,11,6,0,12,11,3,6,13,11,13,3,3,14,1,3,12,11,3,6,13,11,13,4,8,13,13,4,8,13,3,3,14,1,3,9,1,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,11,3,6,13,11,13,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,15,9,1,1,3,3,4,3,1,3,3,4,3,5,12,11,3,10,4,5,4,1,3,3,4,3,1,3,3,4,3,2,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,0,10,6,4,4,8,13,3,3,14,1,3,8,8,8,14,6,4,11,3,6,13,11,14,9,10,15,9,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,4,11,6,4,8,13,13,3,3,5,12,6,14,9,15,0,7,15,0,9,10,15,9,1,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,4,3,14,1,3,1,3,3,4,3,1,2,13,2,13,5,6,4,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,11,3,6,13,11,13,3,3,14,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,1,3,4,5,4,1,3,4,3,14,1,3,1,3,3,4,3,1,2,13,5,12,6,4,4,0,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,14,9,10,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,2,13,7,15,9,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,15,9,11,8,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,8,14,9,1,3,4,5,4,1,3,4,3,14,1,3,14,3,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,0,3,11,3,6,13,11,5,12,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,7,15,9,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,13,3,3,14,5,12,6,4,8,13,3,3,4,3,1,3,3,4,11,3,6,13,11,8,15,9,11,3,6,13,11,13,3,3,14,1,3,8,6,4", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"9\"], \"clip_start\": 916.0, \"clip_end\": 919.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,3,14,1,3,1,6,0,12,11,3,6,13,11,8,10,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,15,9,1,1,3,3,4,3,1,3,3,4,3,0,15,9,1,1,3,3,4,3,1,3,3,4,3,10,15,0,11,6,0,12,11,3,6,13,11,13,3,3,14,1,3,12,11,3,6,13,11,13,4,8,13,13,4,8,13,3,3,14,1,3,9,1,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,11,3,6,13,11,13,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,15,9,1,1,3,3,4,3,1,3,3,4,3,5,12,11,3,10,4,5,4,1,3,3,4,3,1,3,3,4,3,2,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,0,10,6,4,4,8,13,3,3,14,1,3,8,8,8,14,6,4,11,3,6,13,11,14,9,10,15,9,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,4,11,6,4,8,13,13,3,3,5,12,6,14,9,15,0,7,15,0,9,10,15,9,1,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,4,3,14,1,3,1,3,3,4,3,1,2,13,2,13,5,6,4,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,11,3,6,13,11,13,3,3,14,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,1,3,4,5,4,1,3,4,3,14,1,3,1,3,3,4,3,1,2,13,5,12,6,4,4,0,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,14,9,10,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,2,13,7,15,9,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,15,9,11,8,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,8,14,9,1,3,4,5,4,1,3,4,3,14,1,3,14,3,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,0,3,11,3,6,13,11,5,12,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,7,15,9,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,13,3,3,14,5,12,6,4,8,13,3,3,4,3,1,3,3,4,11,3,6,13,11,8,15,9,11,3,6,13,11,13,3,3,14,1,3,8,6,4", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"11\"], \"clip_start\": 90.0, \"clip_end\": 93.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,3,14,1,3,1,6,0,12,11,3,6,13,11,8,10,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,15,9,1,1,3,3,4,3,1,3,3,4,3,0,15,9,1,1,3,3,4,3,1,3,3,4,3,10,15,0,11,6,0,12,11,3,6,13,11,13,3,3,14,1,3,12,11,3,6,13,11,13,4,8,13,13,4,8,13,3,3,14,1,3,9,1,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,11,3,6,13,11,13,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,15,9,1,1,3,3,4,3,1,3,3,4,3,5,12,11,3,10,4,5,4,1,3,3,4,3,1,3,3,4,3,2,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,0,10,6,4,4,8,13,3,3,14,1,3,8,8,8,14,6,4,11,3,6,13,11,14,9,10,15,9,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,4,11,6,4,8,13,13,3,3,5,12,6,14,9,15,0,7,15,0,9,10,15,9,1,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,4,3,14,1,3,1,3,3,4,3,1,2,13,2,13,5,6,4,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,11,3,6,13,11,13,3,3,14,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,1,3,4,5,4,1,3,4,3,14,1,3,1,3,3,4,3,1,2,13,5,12,6,4,4,0,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,14,9,10,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,2,13,7,15,9,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,15,9,11,8,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,8,14,9,1,3,4,5,4,1,3,4,3,14,1,3,14,3,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,0,3,11,3,6,13,11,5,12,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,7,15,9,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,13,3,3,14,5,12,6,4,8,13,3,3,4,3,1,3,3,4,11,3,6,13,11,8,15,9,11,3,6,13,11,13,3,3,14,1,3,8,6,4", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"13\"], \"clip_start\": 619.0, \"clip_end\": 622.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,3,14,1,3,1,6,0,12,11,3,6,13,11,8,10,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,15,9,1,1,3,3,4,3,1,3,3,4,3,0,15,9,1,1,3,3,4,3,1,3,3,4,3,10,15,0,11,6,0,12,11,3,6,13,11,13,3,3,14,1,3,12,11,3,6,13,11,13,4,8,13,13,4,8,13,3,3,14,1,3,9,1,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,11,3,6,13,11,13,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,15,9,1,1,3,3,4,3,1,3,3,4,3,5,12,11,3,10,4,5,4,1,3,3,4,3,1,3,3,4,3,2,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,0,10,6,4,4,8,13,3,3,14,1,3,8,8,8,14,6,4,11,3,6,13,11,14,9,10,15,9,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,4,11,6,4,8,13,13,3,3,5,12,6,14,9,15,0,7,15,0,9,10,15,9,1,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,4,3,14,1,3,1,3,3,4,3,1,2,13,2,13,5,6,4,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,11,3,6,13,11,13,3,3,14,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,1,3,4,5,4,1,3,4,3,14,1,3,1,3,3,4,3,1,2,13,5,12,6,4,4,0,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,14,9,10,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,2,13,7,15,9,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,15,9,11,8,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,8,14,9,1,3,4,5,4,1,3,4,3,14,1,3,14,3,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,0,3,11,3,6,13,11,5,12,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,7,15,9,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,13,3,3,14,5,12,6,4,8,13,3,3,4,3,1,3,3,4,11,3,6,13,11,8,15,9,11,3,6,13,11,13,3,3,14,1,3,8,6,4", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"1\", \"3\", \"3\", \"4\"], \"clip_start\": 70.0, \"clip_end\": 75.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,3,14,1,3,1,6,0,12,11,3,6,13,11,8,10,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,15,9,1,1,3,3,4,3,1,3,3,4,3,0,15,9,1,1,3,3,4,3,1,3,3,4,3,10,15,0,11,6,0,12,11,3,6,13,11,13,3,3,14,1,3,12,11,3,6,13,11,13,4,8,13,13,4,8,13,3,3,14,1,3,9,1,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,11,3,6,13,11,13,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,15,9,1,1,3,3,4,3,1,3,3,4,3,5,12,11,3,10,4,5,4,1,3,3,4,3,1,3,3,4,3,2,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,0,10,6,4,4,8,13,3,3,14,1,3,8,8,8,14,6,4,11,3,6,13,11,14,9,10,15,9,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,4,11,6,4,8,13,13,3,3,5,12,6,14,9,15,0,7,15,0,9,10,15,9,1,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,4,3,14,1,3,1,3,3,4,3,1,2,13,2,13,5,6,4,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,11,3,6,13,11,13,3,3,14,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,1,3,4,5,4,1,3,4,3,14,1,3,1,3,3,4,3,1,2,13,5,12,6,4,4,0,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,14,9,10,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,2,13,7,15,9,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,15,9,11,8,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,8,14,9,1,3,4,5,4,1,3,4,3,14,1,3,14,3,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,0,3,11,3,6,13,11,5,12,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,7,15,9,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,13,3,3,14,5,12,6,4,8,13,3,3,4,3,1,3,3,4,11,3,6,13,11,8,15,9,11,3,6,13,11,13,3,3,14,1,3,8,6,4", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"1\", \"1\", \"3\"], \"clip_start\": 428.0, \"clip_end\": 433.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,3,14,1,3,1,6,0,12,11,3,6,13,11,8,10,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,15,9,1,1,3,3,4,3,1,3,3,4,3,0,15,9,1,1,3,3,4,3,1,3,3,4,3,10,15,0,11,6,0,12,11,3,6,13,11,13,3,3,14,1,3,12,11,3,6,13,11,13,4,8,13,13,4,8,13,3,3,14,1,3,9,1,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,11,3,6,13,11,13,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,15,9,1,1,3,3,4,3,1,3,3,4,3,5,12,11,3,10,4,5,4,1,3,3,4,3,1,3,3,4,3,2,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,0,10,6,4,4,8,13,3,3,14,1,3,8,8,8,14,6,4,11,3,6,13,11,14,9,10,15,9,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,4,11,6,4,8,13,13,3,3,5,12,6,14,9,15,0,7,15,0,9,10,15,9,1,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,4,3,14,1,3,1,3,3,4,3,1,2,13,2,13,5,6,4,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,11,3,6,13,11,13,3,3,14,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,1,3,4,5,4,1,3,4,3,14,1,3,1,3,3,4,3,1,2,13,5,12,6,4,4,0,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,14,9,10,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,2,13,7,15,9,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,15,9,11,8,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,8,14,9,1,3,4,5,4,1,3,4,3,14,1,3,14,3,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,0,3,11,3,6,13,11,5,12,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,7,15,9,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,13,3,3,14,5,12,6,4,8,13,3,3,4,3,1,3,3,4,11,3,6,13,11,8,15,9,11,3,6,13,11,13,3,3,14,1,3,8,6,4", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 638.0, \"clip_end\": 642.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,3,14,1,3,1,6,0,12,11,3,6,13,11,8,10,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,15,9,1,1,3,3,4,3,1,3,3,4,3,0,15,9,1,1,3,3,4,3,1,3,3,4,3,10,15,0,11,6,0,12,11,3,6,13,11,13,3,3,14,1,3,12,11,3,6,13,11,13,4,8,13,13,4,8,13,3,3,14,1,3,9,1,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,11,3,6,13,11,13,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,15,9,1,1,3,3,4,3,1,3,3,4,3,5,12,11,3,10,4,5,4,1,3,3,4,3,1,3,3,4,3,2,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,0,10,6,4,4,8,13,3,3,14,1,3,8,8,8,14,6,4,11,3,6,13,11,14,9,10,15,9,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,4,11,6,4,8,13,13,3,3,5,12,6,14,9,15,0,7,15,0,9,10,15,9,1,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,4,3,14,1,3,1,3,3,4,3,1,2,13,2,13,5,6,4,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,11,3,6,13,11,13,3,3,14,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,1,3,4,5,4,1,3,4,3,14,1,3,1,3,3,4,3,1,2,13,5,12,6,4,4,0,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,14,9,10,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,2,13,7,15,9,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,15,9,11,8,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,8,14,9,1,3,4,5,4,1,3,4,3,14,1,3,14,3,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,0,3,11,3,6,13,11,5,12,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,7,15,9,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,13,3,3,14,5,12,6,4,8,13,3,3,4,3,1,3,3,4,11,3,6,13,11,8,15,9,11,3,6,13,11,13,3,3,14,1,3,8,6,4", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"3\", \"15\", \"9\", \"1\"], \"clip_start\": 51.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,3,14,1,3,1,6,0,12,11,3,6,13,11,8,10,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,15,9,1,1,3,3,4,3,1,3,3,4,3,0,15,9,1,1,3,3,4,3,1,3,3,4,3,10,15,0,11,6,0,12,11,3,6,13,11,13,3,3,14,1,3,12,11,3,6,13,11,13,4,8,13,13,4,8,13,3,3,14,1,3,9,1,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,11,3,6,13,11,13,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,15,9,1,1,3,3,4,3,1,3,3,4,3,5,12,11,3,10,4,5,4,1,3,3,4,3,1,3,3,4,3,2,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,0,10,6,4,4,8,13,3,3,14,1,3,8,8,8,14,6,4,11,3,6,13,11,14,9,10,15,9,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,4,11,6,4,8,13,13,3,3,5,12,6,14,9,15,0,7,15,0,9,10,15,9,1,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,4,3,14,1,3,1,3,3,4,3,1,2,13,2,13,5,6,4,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,11,3,6,13,11,13,3,3,14,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,1,3,4,5,4,1,3,4,3,14,1,3,1,3,3,4,3,1,2,13,5,12,6,4,4,0,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,14,9,10,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,2,13,7,15,9,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,15,9,11,8,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,8,14,9,1,3,4,5,4,1,3,4,3,14,1,3,14,3,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,0,3,11,3,6,13,11,5,12,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,7,15,9,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,13,3,3,14,5,12,6,4,8,13,3,3,4,3,1,3,3,4,11,3,6,13,11,8,15,9,11,3,6,13,11,13,3,3,14,1,3,8,6,4", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"5\", \"6\", \"4\"], \"clip_start\": 474.0, \"clip_end\": 479.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,3,14,1,3,1,6,0,12,11,3,6,13,11,8,10,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,15,9,1,1,3,3,4,3,1,3,3,4,3,0,15,9,1,1,3,3,4,3,1,3,3,4,3,10,15,0,11,6,0,12,11,3,6,13,11,13,3,3,14,1,3,12,11,3,6,13,11,13,4,8,13,13,4,8,13,3,3,14,1,3,9,1,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,11,3,6,13,11,13,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,15,9,1,1,3,3,4,3,1,3,3,4,3,5,12,11,3,10,4,5,4,1,3,3,4,3,1,3,3,4,3,2,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,0,10,6,4,4,8,13,3,3,14,1,3,8,8,8,14,6,4,11,3,6,13,11,14,9,10,15,9,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,4,11,6,4,8,13,13,3,3,5,12,6,14,9,15,0,7,15,0,9,10,15,9,1,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,4,3,14,1,3,1,3,3,4,3,1,2,13,2,13,5,6,4,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,11,3,6,13,11,13,3,3,14,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,1,3,4,5,4,1,3,4,3,14,1,3,1,3,3,4,3,1,2,13,5,12,6,4,4,0,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,14,9,10,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,2,13,7,15,9,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,15,9,11,8,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,8,14,9,1,3,4,5,4,1,3,4,3,14,1,3,14,3,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,0,3,11,3,6,13,11,5,12,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,7,15,9,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,13,3,3,14,5,12,6,4,8,13,3,3,4,3,1,3,3,4,11,3,6,13,11,8,15,9,11,3,6,13,11,13,3,3,14,1,3,8,6,4", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 897.0, \"clip_end\": 901.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,3,14,1,3,1,6,0,12,11,3,6,13,11,8,10,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,15,9,1,1,3,3,4,3,1,3,3,4,3,0,15,9,1,1,3,3,4,3,1,3,3,4,3,10,15,0,11,6,0,12,11,3,6,13,11,13,3,3,14,1,3,12,11,3,6,13,11,13,4,8,13,13,4,8,13,3,3,14,1,3,9,1,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,11,3,6,13,11,13,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,15,9,1,1,3,3,4,3,1,3,3,4,3,5,12,11,3,10,4,5,4,1,3,3,4,3,1,3,3,4,3,2,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,0,10,6,4,4,8,13,3,3,14,1,3,8,8,8,14,6,4,11,3,6,13,11,14,9,10,15,9,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,4,11,6,4,8,13,13,3,3,5,12,6,14,9,15,0,7,15,0,9,10,15,9,1,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,4,3,14,1,3,1,3,3,4,3,1,2,13,2,13,5,6,4,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,11,3,6,13,11,13,3,3,14,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,1,3,4,5,4,1,3,4,3,14,1,3,1,3,3,4,3,1,2,13,5,12,6,4,4,0,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,14,9,10,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,2,13,7,15,9,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,15,9,11,8,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,8,14,9,1,3,4,5,4,1,3,4,3,14,1,3,14,3,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,0,3,11,3,6,13,11,5,12,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,7,15,9,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,13,3,3,14,5,12,6,4,8,13,3,3,4,3,1,3,3,4,11,3,6,13,11,8,15,9,11,3,6,13,11,13,3,3,14,1,3,8,6,4", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"11\", \"3\", \"6\"], \"clip_start\": 86.0, \"clip_end\": 91.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,3,14,1,3,1,6,0,12,11,3,6,13,11,8,10,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,15,9,1,1,3,3,4,3,1,3,3,4,3,0,15,9,1,1,3,3,4,3,1,3,3,4,3,10,15,0,11,6,0,12,11,3,6,13,11,13,3,3,14,1,3,12,11,3,6,13,11,13,4,8,13,13,4,8,13,3,3,14,1,3,9,1,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,11,3,6,13,11,13,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,15,9,1,1,3,3,4,3,1,3,3,4,3,5,12,11,3,10,4,5,4,1,3,3,4,3,1,3,3,4,3,2,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,0,10,6,4,4,8,13,3,3,14,1,3,8,8,8,14,6,4,11,3,6,13,11,14,9,10,15,9,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,4,11,6,4,8,13,13,3,3,5,12,6,14,9,15,0,7,15,0,9,10,15,9,1,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,4,3,14,1,3,1,3,3,4,3,1,2,13,2,13,5,6,4,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,11,3,6,13,11,13,3,3,14,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,1,3,4,5,4,1,3,4,3,14,1,3,1,3,3,4,3,1,2,13,5,12,6,4,4,0,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,14,9,10,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,2,13,7,15,9,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,15,9,11,8,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,8,14,9,1,3,4,5,4,1,3,4,3,14,1,3,14,3,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,0,3,11,3,6,13,11,5,12,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,7,15,9,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,13,3,3,14,5,12,6,4,8,13,3,3,4,3,1,3,3,4,11,3,6,13,11,8,15,9,11,3,6,13,11,13,3,3,14,1,3,8,6,4", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"4\", \"3\", \"1\"], \"clip_start\": 555.0, \"clip_end\": 559.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,3,14,1,3,1,6,0,12,11,3,6,13,11,8,10,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,15,9,1,1,3,3,4,3,1,3,3,4,3,0,15,9,1,1,3,3,4,3,1,3,3,4,3,10,15,0,11,6,0,12,11,3,6,13,11,13,3,3,14,1,3,12,11,3,6,13,11,13,4,8,13,13,4,8,13,3,3,14,1,3,9,1,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,11,3,6,13,11,13,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,15,9,1,1,3,3,4,3,1,3,3,4,3,5,12,11,3,10,4,5,4,1,3,3,4,3,1,3,3,4,3,2,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,0,10,6,4,4,8,13,3,3,14,1,3,8,8,8,14,6,4,11,3,6,13,11,14,9,10,15,9,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,4,11,6,4,8,13,13,3,3,5,12,6,14,9,15,0,7,15,0,9,10,15,9,1,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,4,3,14,1,3,1,3,3,4,3,1,2,13,2,13,5,6,4,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,11,3,6,13,11,13,3,3,14,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,1,3,4,5,4,1,3,4,3,14,1,3,1,3,3,4,3,1,2,13,5,12,6,4,4,0,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,14,9,10,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,2,13,7,15,9,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,15,9,11,8,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,8,14,9,1,3,4,5,4,1,3,4,3,14,1,3,14,3,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,0,3,11,3,6,13,11,5,12,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,7,15,9,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,13,3,3,14,5,12,6,4,8,13,3,3,4,3,1,3,3,4,11,3,6,13,11,8,15,9,11,3,6,13,11,13,3,3,14,1,3,8,6,4", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"1\", \"3\", \"3\", \"4\"], \"clip_start\": 536.0, \"clip_end\": 542.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,3,14,1,3,1,6,0,12,11,3,6,13,11,8,10,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,15,9,1,1,3,3,4,3,1,3,3,4,3,0,15,9,1,1,3,3,4,3,1,3,3,4,3,10,15,0,11,6,0,12,11,3,6,13,11,13,3,3,14,1,3,12,11,3,6,13,11,13,4,8,13,13,4,8,13,3,3,14,1,3,9,1,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,11,3,6,13,11,13,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,15,9,1,1,3,3,4,3,1,3,3,4,3,5,12,11,3,10,4,5,4,1,3,3,4,3,1,3,3,4,3,2,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,0,10,6,4,4,8,13,3,3,14,1,3,8,8,8,14,6,4,11,3,6,13,11,14,9,10,15,9,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,4,11,6,4,8,13,13,3,3,5,12,6,14,9,15,0,7,15,0,9,10,15,9,1,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,4,3,14,1,3,1,3,3,4,3,1,2,13,2,13,5,6,4,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,11,3,6,13,11,13,3,3,14,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,1,3,4,5,4,1,3,4,3,14,1,3,1,3,3,4,3,1,2,13,5,12,6,4,4,0,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,14,9,10,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,2,13,7,15,9,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,15,9,11,8,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,8,14,9,1,3,4,5,4,1,3,4,3,14,1,3,14,3,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,0,3,11,3,6,13,11,5,12,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,7,15,9,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,13,3,3,14,5,12,6,4,8,13,3,3,4,3,1,3,3,4,11,3,6,13,11,8,15,9,11,3,6,13,11,13,3,3,14,1,3,8,6,4", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"6\", \"13\", \"11\", \"13\", \"4\"], \"clip_start\": 101.0, \"clip_end\": 107.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,3,14,1,3,1,6,0,12,11,3,6,13,11,8,10,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,15,9,1,1,3,3,4,3,1,3,3,4,3,0,15,9,1,1,3,3,4,3,1,3,3,4,3,10,15,0,11,6,0,12,11,3,6,13,11,13,3,3,14,1,3,12,11,3,6,13,11,13,4,8,13,13,4,8,13,3,3,14,1,3,9,1,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,11,3,6,13,11,13,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,15,9,1,1,3,3,4,3,1,3,3,4,3,5,12,11,3,10,4,5,4,1,3,3,4,3,1,3,3,4,3,2,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,0,10,6,4,4,8,13,3,3,14,1,3,8,8,8,14,6,4,11,3,6,13,11,14,9,10,15,9,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,4,11,6,4,8,13,13,3,3,5,12,6,14,9,15,0,7,15,0,9,10,15,9,1,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,4,3,14,1,3,1,3,3,4,3,1,2,13,2,13,5,6,4,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,11,3,6,13,11,13,3,3,14,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,1,3,4,5,4,1,3,4,3,14,1,3,1,3,3,4,3,1,2,13,5,12,6,4,4,0,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,14,9,10,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,2,13,7,15,9,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,15,9,11,8,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,8,14,9,1,3,4,5,4,1,3,4,3,14,1,3,14,3,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,0,3,11,3,6,13,11,5,12,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,7,15,9,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,13,3,3,14,5,12,6,4,8,13,3,3,4,3,1,3,3,4,11,3,6,13,11,8,15,9,11,3,6,13,11,13,3,3,14,1,3,8,6,4", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"3\", \"14\", \"1\", \"3\"], \"clip_start\": 904.0, \"clip_end\": 910.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,3,14,1,3,1,6,0,12,11,3,6,13,11,8,10,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,15,9,1,1,3,3,4,3,1,3,3,4,3,0,15,9,1,1,3,3,4,3,1,3,3,4,3,10,15,0,11,6,0,12,11,3,6,13,11,13,3,3,14,1,3,12,11,3,6,13,11,13,4,8,13,13,4,8,13,3,3,14,1,3,9,1,3,4,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,11,3,6,13,11,13,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,15,9,1,1,3,3,4,3,1,3,3,4,3,5,12,11,3,10,4,5,4,1,3,3,4,3,1,3,3,4,3,2,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,0,10,6,4,4,8,13,3,3,14,1,3,8,8,8,14,6,4,11,3,6,13,11,14,9,10,15,9,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,4,11,6,4,8,13,13,3,3,5,12,6,14,9,15,0,7,15,0,9,10,15,9,1,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,4,3,14,1,3,1,3,3,4,3,1,2,13,2,13,5,6,4,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,11,3,6,13,11,13,3,3,14,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,1,3,4,5,4,1,3,4,3,14,1,3,1,3,3,4,3,1,2,13,5,12,6,4,4,0,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,0,14,9,10,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,9,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,2,13,7,15,9,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,15,9,11,8,11,3,6,13,11,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,6,4,4,0,3,4,3,14,1,3,1,3,3,4,3,8,14,9,1,3,4,5,4,1,3,4,3,14,1,3,14,3,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,0,3,11,3,6,13,11,5,12,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,7,15,9,11,6,4,8,13,3,3,14,1,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,1,3,3,4,3,13,3,3,14,5,12,6,4,8,13,3,3,4,3,1,3,3,4,11,3,6,13,11,8,15,9,11,3,6,13,11,13,3,3,14,1,3,8,6,4", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"11\", \"0\", \"11\", \"15\", \"1\"], \"clip_start\": 55.0, \"clip_end\": 61.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,13,7,2,13,11,1,0,6,4,2,13,11,1,0,12,11,13,4,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,1,11,2,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,14,12,11,9,15,1,12,11,11,0,12,11,11,0,11,15,1,5,15,0,11,0,0,2,0,11,15,1,5,15,0,11,0,0,8,14,8,12,5,15,0,11,0,0,11,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,1,11,2,13,11,1,0,6,2,13,11,1,0,6,2,13,11,1,0,12,11,13,7,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,3,7,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,1,11,14,14,11,9,15,1,12,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,1,11,14,14,11,9,11,12,11,9,11,5,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,4,0,11,15,1,5,15,0,11,0,0,11,15,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,2,13,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,10,8,14,5,15,5,15,15,1,10,11,9,15,1,12,11,15,1,5,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,4,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,4,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,7,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,5,15,0,11,0,0,11,15,0,11,0,0,13,7,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,13,7,9,7,14,12,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,8,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,3,7,9,7,9,3,3,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 626.0, \"clip_end\": 632.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,13,7,2,13,11,1,0,6,4,2,13,11,1,0,12,11,13,4,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,1,11,2,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,14,12,11,9,15,1,12,11,11,0,12,11,11,0,11,15,1,5,15,0,11,0,0,2,0,11,15,1,5,15,0,11,0,0,8,14,8,12,5,15,0,11,0,0,11,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,1,11,2,13,11,1,0,6,2,13,11,1,0,6,2,13,11,1,0,12,11,13,7,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,3,7,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,1,11,14,14,11,9,15,1,12,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,1,11,14,14,11,9,11,12,11,9,11,5,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,4,0,11,15,1,5,15,0,11,0,0,11,15,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,2,13,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,10,8,14,5,15,5,15,15,1,10,11,9,15,1,12,11,15,1,5,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,4,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,4,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,7,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,5,15,0,11,0,0,11,15,0,11,0,0,13,7,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,13,7,9,7,14,12,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,8,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,3,7,9,7,9,3,3,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"11\", \"1\", \"0\", \"12\"], \"clip_start\": 49.0, \"clip_end\": 55.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,13,7,2,13,11,1,0,6,4,2,13,11,1,0,12,11,13,4,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,1,11,2,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,14,12,11,9,15,1,12,11,11,0,12,11,11,0,11,15,1,5,15,0,11,0,0,2,0,11,15,1,5,15,0,11,0,0,8,14,8,12,5,15,0,11,0,0,11,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,1,11,2,13,11,1,0,6,2,13,11,1,0,6,2,13,11,1,0,12,11,13,7,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,3,7,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,1,11,14,14,11,9,15,1,12,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,1,11,14,14,11,9,11,12,11,9,11,5,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,4,0,11,15,1,5,15,0,11,0,0,11,15,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,2,13,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,10,8,14,5,15,5,15,15,1,10,11,9,15,1,12,11,15,1,5,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,4,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,4,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,7,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,5,15,0,11,0,0,11,15,0,11,0,0,13,7,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,13,7,9,7,14,12,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,8,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,3,7,9,7,9,3,3,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"0\", \"11\", \"0\", \"0\", \"11\"], \"clip_start\": 596.0, \"clip_end\": 602.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,13,7,2,13,11,1,0,6,4,2,13,11,1,0,12,11,13,4,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,1,11,2,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,14,12,11,9,15,1,12,11,11,0,12,11,11,0,11,15,1,5,15,0,11,0,0,2,0,11,15,1,5,15,0,11,0,0,8,14,8,12,5,15,0,11,0,0,11,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,1,11,2,13,11,1,0,6,2,13,11,1,0,6,2,13,11,1,0,12,11,13,7,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,3,7,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,1,11,14,14,11,9,15,1,12,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,1,11,14,14,11,9,11,12,11,9,11,5,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,4,0,11,15,1,5,15,0,11,0,0,11,15,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,2,13,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,10,8,14,5,15,5,15,15,1,10,11,9,15,1,12,11,15,1,5,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,4,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,4,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,7,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,5,15,0,11,0,0,11,15,0,11,0,0,13,7,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,13,7,9,7,14,12,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,8,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,3,7,9,7,9,3,3,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"11\", \"0\", \"11\", \"15\"], \"clip_start\": 662.0, \"clip_end\": 668.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,13,7,2,13,11,1,0,6,4,2,13,11,1,0,12,11,13,4,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,1,11,2,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,14,12,11,9,15,1,12,11,11,0,12,11,11,0,11,15,1,5,15,0,11,0,0,2,0,11,15,1,5,15,0,11,0,0,8,14,8,12,5,15,0,11,0,0,11,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,1,11,2,13,11,1,0,6,2,13,11,1,0,6,2,13,11,1,0,12,11,13,7,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,3,7,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,1,11,14,14,11,9,15,1,12,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,1,11,14,14,11,9,11,12,11,9,11,5,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,4,0,11,15,1,5,15,0,11,0,0,11,15,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,2,13,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,10,8,14,5,15,5,15,15,1,10,11,9,15,1,12,11,15,1,5,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,4,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,4,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,7,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,5,15,0,11,0,0,11,15,0,11,0,0,13,7,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,13,7,9,7,14,12,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,8,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,3,7,9,7,9,3,3,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"0\", \"11\", \"0\", \"0\", \"11\"], \"clip_start\": 512.0, \"clip_end\": 518.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,13,7,2,13,11,1,0,6,4,2,13,11,1,0,12,11,13,4,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,1,11,2,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,14,12,11,9,15,1,12,11,11,0,12,11,11,0,11,15,1,5,15,0,11,0,0,2,0,11,15,1,5,15,0,11,0,0,8,14,8,12,5,15,0,11,0,0,11,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,1,11,2,13,11,1,0,6,2,13,11,1,0,6,2,13,11,1,0,12,11,13,7,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,3,7,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,1,11,14,14,11,9,15,1,12,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,1,11,14,14,11,9,11,12,11,9,11,5,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,4,0,11,15,1,5,15,0,11,0,0,11,15,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,2,13,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,10,8,14,5,15,5,15,15,1,10,11,9,15,1,12,11,15,1,5,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,4,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,4,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,7,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,5,15,0,11,0,0,11,15,0,11,0,0,13,7,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,13,7,9,7,14,12,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,8,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,3,7,9,7,9,3,3,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\", \"14\"], \"clip_start\": 941.0, \"clip_end\": 945.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,13,7,2,13,11,1,0,6,4,2,13,11,1,0,12,11,13,4,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,1,11,2,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,14,12,11,9,15,1,12,11,11,0,12,11,11,0,11,15,1,5,15,0,11,0,0,2,0,11,15,1,5,15,0,11,0,0,8,14,8,12,5,15,0,11,0,0,11,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,1,11,2,13,11,1,0,6,2,13,11,1,0,6,2,13,11,1,0,12,11,13,7,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,3,7,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,1,11,14,14,11,9,15,1,12,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,1,11,14,14,11,9,11,12,11,9,11,5,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,4,0,11,15,1,5,15,0,11,0,0,11,15,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,2,13,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,10,8,14,5,15,5,15,15,1,10,11,9,15,1,12,11,15,1,5,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,4,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,4,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,7,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,5,15,0,11,0,0,11,15,0,11,0,0,13,7,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,13,7,9,7,14,12,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,8,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,3,7,9,7,9,3,3,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"0\", \"11\", \"15\", \"0\", \"11\"], \"clip_start\": 1017.0, \"clip_end\": 1023.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,13,7,2,13,11,1,0,6,4,2,13,11,1,0,12,11,13,4,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,1,11,2,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,14,12,11,9,15,1,12,11,11,0,12,11,11,0,11,15,1,5,15,0,11,0,0,2,0,11,15,1,5,15,0,11,0,0,8,14,8,12,5,15,0,11,0,0,11,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,1,11,2,13,11,1,0,6,2,13,11,1,0,6,2,13,11,1,0,12,11,13,7,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,3,7,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,1,11,14,14,11,9,15,1,12,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,1,11,14,14,11,9,11,12,11,9,11,5,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,4,0,11,15,1,5,15,0,11,0,0,11,15,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,2,13,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,10,8,14,5,15,5,15,15,1,10,11,9,15,1,12,11,15,1,5,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,4,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,4,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,7,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,5,15,0,11,0,0,11,15,0,11,0,0,13,7,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,13,7,9,7,14,12,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,8,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,3,7,9,7,9,3,3,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"1\", \"0\", \"12\"], \"clip_start\": 393.0, \"clip_end\": 397.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,13,7,2,13,11,1,0,6,4,2,13,11,1,0,12,11,13,4,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,1,11,2,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,14,12,11,9,15,1,12,11,11,0,12,11,11,0,11,15,1,5,15,0,11,0,0,2,0,11,15,1,5,15,0,11,0,0,8,14,8,12,5,15,0,11,0,0,11,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,1,11,2,13,11,1,0,6,2,13,11,1,0,6,2,13,11,1,0,12,11,13,7,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,3,7,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,1,11,14,14,11,9,15,1,12,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,1,11,14,14,11,9,11,12,11,9,11,5,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,4,0,11,15,1,5,15,0,11,0,0,11,15,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,2,13,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,10,8,14,5,15,5,15,15,1,10,11,9,15,1,12,11,15,1,5,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,4,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,4,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,7,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,5,15,0,11,0,0,11,15,0,11,0,0,13,7,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,13,7,9,7,14,12,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,8,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,3,7,9,7,9,3,3,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 1015.0, \"clip_end\": 1018.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,13,7,2,13,11,1,0,6,4,2,13,11,1,0,12,11,13,4,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,1,11,2,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,14,12,11,9,15,1,12,11,11,0,12,11,11,0,11,15,1,5,15,0,11,0,0,2,0,11,15,1,5,15,0,11,0,0,8,14,8,12,5,15,0,11,0,0,11,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,1,11,2,13,11,1,0,6,2,13,11,1,0,6,2,13,11,1,0,12,11,13,7,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,3,7,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,1,11,14,14,11,9,15,1,12,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,1,11,14,14,11,9,11,12,11,9,11,5,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,4,0,11,15,1,5,15,0,11,0,0,11,15,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,2,13,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,10,8,14,5,15,5,15,15,1,10,11,9,15,1,12,11,15,1,5,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,4,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,4,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,7,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,5,15,0,11,0,0,11,15,0,11,0,0,13,7,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,13,7,9,7,14,12,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,8,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,3,7,9,7,9,3,3,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"11\", \"15\", \"0\", \"11\"], \"clip_start\": 762.0, \"clip_end\": 767.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,13,7,2,13,11,1,0,6,4,2,13,11,1,0,12,11,13,4,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,1,11,2,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,14,12,11,9,15,1,12,11,11,0,12,11,11,0,11,15,1,5,15,0,11,0,0,2,0,11,15,1,5,15,0,11,0,0,8,14,8,12,5,15,0,11,0,0,11,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,1,11,2,13,11,1,0,6,2,13,11,1,0,6,2,13,11,1,0,12,11,13,7,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,3,7,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,1,11,14,14,11,9,15,1,12,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,1,11,14,14,11,9,11,12,11,9,11,5,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,4,0,11,15,1,5,15,0,11,0,0,11,15,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,2,13,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,10,8,14,5,15,5,15,15,1,10,11,9,15,1,12,11,15,1,5,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,4,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,4,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,7,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,5,15,0,11,0,0,11,15,0,11,0,0,13,7,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,13,7,9,7,14,12,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,8,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,3,7,9,7,9,3,3,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"11\", \"9\"], \"clip_start\": 943.0, \"clip_end\": 947.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,13,7,2,13,11,1,0,6,4,2,13,11,1,0,12,11,13,4,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,1,11,2,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,14,12,11,9,15,1,12,11,11,0,12,11,11,0,11,15,1,5,15,0,11,0,0,2,0,11,15,1,5,15,0,11,0,0,8,14,8,12,5,15,0,11,0,0,11,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,1,11,2,13,11,1,0,6,2,13,11,1,0,6,2,13,11,1,0,12,11,13,7,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,3,7,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,1,11,14,14,11,9,15,1,12,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,1,11,14,14,11,9,11,12,11,9,11,5,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,4,0,11,15,1,5,15,0,11,0,0,11,15,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,2,13,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,10,8,14,5,15,5,15,15,1,10,11,9,15,1,12,11,15,1,5,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,4,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,4,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,7,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,5,15,0,11,0,0,11,15,0,11,0,0,13,7,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,13,7,9,7,14,12,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,8,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,3,7,9,7,9,3,3,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"11\", \"0\", \"0\", \"11\"], \"clip_start\": 695.0, \"clip_end\": 700.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,13,7,2,13,11,1,0,6,4,2,13,11,1,0,12,11,13,4,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,1,11,2,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,14,12,11,9,15,1,12,11,11,0,12,11,11,0,11,15,1,5,15,0,11,0,0,2,0,11,15,1,5,15,0,11,0,0,8,14,8,12,5,15,0,11,0,0,11,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,1,11,2,13,11,1,0,6,2,13,11,1,0,6,2,13,11,1,0,12,11,13,7,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,3,7,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,1,11,14,14,11,9,15,1,12,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,1,11,14,14,11,9,11,12,11,9,11,5,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,4,0,11,15,1,5,15,0,11,0,0,11,15,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,2,13,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,10,8,14,5,15,5,15,15,1,10,11,9,15,1,12,11,15,1,5,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,4,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,4,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,7,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,5,15,0,11,0,0,11,15,0,11,0,0,13,7,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,13,7,9,7,14,12,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,8,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,3,7,9,7,9,3,3,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 536.0, \"clip_end\": 542.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,13,7,2,13,11,1,0,6,4,2,13,11,1,0,12,11,13,4,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,1,11,2,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,14,12,11,9,15,1,12,11,11,0,12,11,11,0,11,15,1,5,15,0,11,0,0,2,0,11,15,1,5,15,0,11,0,0,8,14,8,12,5,15,0,11,0,0,11,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,1,11,2,13,11,1,0,6,2,13,11,1,0,6,2,13,11,1,0,12,11,13,7,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,3,7,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,1,11,14,14,11,9,15,1,12,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,1,11,14,14,11,9,11,12,11,9,11,5,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,4,0,11,15,1,5,15,0,11,0,0,11,15,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,2,13,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,10,8,14,5,15,5,15,15,1,10,11,9,15,1,12,11,15,1,5,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,4,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,4,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,7,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,5,15,0,11,0,0,11,15,0,11,0,0,13,7,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,13,7,9,7,14,12,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,8,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,3,7,9,7,9,3,3,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"0\", \"11\", \"0\"], \"clip_start\": 74.0, \"clip_end\": 78.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,13,7,2,13,11,1,0,6,4,2,13,11,1,0,12,11,13,4,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,1,11,2,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,14,12,11,9,15,1,12,11,11,0,12,11,11,0,11,15,1,5,15,0,11,0,0,2,0,11,15,1,5,15,0,11,0,0,8,14,8,12,5,15,0,11,0,0,11,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,1,11,2,13,11,1,0,6,2,13,11,1,0,6,2,13,11,1,0,12,11,13,7,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,3,7,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,1,11,14,14,11,9,15,1,12,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,1,11,14,14,11,9,11,12,11,9,11,5,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,4,0,11,15,1,5,15,0,11,0,0,11,15,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,2,13,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,10,8,14,5,15,5,15,15,1,10,11,9,15,1,12,11,15,1,5,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,4,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,4,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,7,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,5,15,0,11,0,0,11,15,0,11,0,0,13,7,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,13,7,9,7,14,12,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,8,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,3,7,9,7,9,3,3,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"11\", \"0\", \"0\", \"11\"], \"clip_start\": 753.0, \"clip_end\": 758.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,13,7,2,13,11,1,0,6,4,2,13,11,1,0,12,11,13,4,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,1,11,2,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,14,12,11,9,15,1,12,11,11,0,12,11,11,0,11,15,1,5,15,0,11,0,0,2,0,11,15,1,5,15,0,11,0,0,8,14,8,12,5,15,0,11,0,0,11,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,1,11,2,13,11,1,0,6,2,13,11,1,0,6,2,13,11,1,0,12,11,13,7,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,3,7,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,1,11,14,14,11,9,15,1,12,10,8,14,5,15,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,1,11,14,14,11,9,11,12,11,9,11,5,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,4,0,11,15,1,5,15,0,11,0,0,11,15,0,2,13,11,1,0,12,11,11,0,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,2,13,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,10,8,14,5,15,5,15,15,1,10,11,9,15,1,12,11,15,1,5,15,0,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,4,9,7,14,11,9,15,1,12,11,15,1,5,15,0,11,4,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,7,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,5,15,0,11,0,0,11,15,0,11,0,0,13,7,8,14,8,12,5,15,0,11,0,0,11,15,0,11,0,0,13,7,9,7,14,12,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,8,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,3,7,9,7,9,3,3,14,11,9,15,1,12,11,15,1,5,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0,0,11,15,0,11,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"12\", \"11\", \"14\", \"11\"], \"clip_start\": 869.0, \"clip_end\": 875.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,4,12,11,14,0,5,12,0,5,2,12,9,11,10,2,12,2,2,5,12,1,11,14,2,0,5,2,12,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,12,2,2,12,11,15,15,0,14,11,7,5,1,11,4,2,7,5,5,10,15,11,3,12,1,11,14,2,0,5,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,5,4,12,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,9,11,10,12,1,11,14,2,0,5,2,12,9,4,0,14,11,15,13,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,8,15,0,5,4,9,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,11,14,11,7,5,2,12,9,2,5,9,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,5,12,1,11,14,2,0,5,2,12,9,9,15,0,5,4,9,2,12,9,11,10,2,12,2,2,12,2,9,14,11,5,7,5,5,12,1,11,14,2,0,5,2,9,11,10,2,9,11,10,9,4,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,3,12,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,14,2,12,9,2,10,15,11,12,1,11,5,4,12,1,4,5,10,15,10,5,9,5,3,3,12,11,4,7,5,5,10,15,11,3,6,3,2,9,11,10,2,12,2,2,12,2,12,9,4,0,15,0,5,4,9,4,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,15,0,5,4,9,4,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,0,11,1,11,5,4,12,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,12,1,11,3,12,11,7,5,3,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,4,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,15,0,5,4,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,10,15,11,2,12,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,15,7,5,8,15,0,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,1,7,5,5,10,15,10,15,11,3,12,11,14,11,7,5,1,11,5,4,12,1,11,14,2,15,0,5,4,14,14,11,5,7,5,5,3,9,11,10,0,5,2,12,9,4,0,0,3,11,1,11,4,2,7,5,5,12,11,14,11,7,5,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,2,12,14,11,7,5,1,11,5,4,12,11,5,12,11,14,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,2,0,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,13,12,1,11,14,2", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"12\"], \"clip_start\": 183.0, \"clip_end\": 186.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,4,12,11,14,0,5,12,0,5,2,12,9,11,10,2,12,2,2,5,12,1,11,14,2,0,5,2,12,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,12,2,2,12,11,15,15,0,14,11,7,5,1,11,4,2,7,5,5,10,15,11,3,12,1,11,14,2,0,5,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,5,4,12,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,9,11,10,12,1,11,14,2,0,5,2,12,9,4,0,14,11,15,13,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,8,15,0,5,4,9,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,11,14,11,7,5,2,12,9,2,5,9,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,5,12,1,11,14,2,0,5,2,12,9,9,15,0,5,4,9,2,12,9,11,10,2,12,2,2,12,2,9,14,11,5,7,5,5,12,1,11,14,2,0,5,2,9,11,10,2,9,11,10,9,4,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,3,12,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,14,2,12,9,2,10,15,11,12,1,11,5,4,12,1,4,5,10,15,10,5,9,5,3,3,12,11,4,7,5,5,10,15,11,3,6,3,2,9,11,10,2,12,2,2,12,2,12,9,4,0,15,0,5,4,9,4,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,15,0,5,4,9,4,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,0,11,1,11,5,4,12,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,12,1,11,3,12,11,7,5,3,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,4,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,15,0,5,4,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,10,15,11,2,12,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,15,7,5,8,15,0,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,1,7,5,5,10,15,10,15,11,3,12,11,14,11,7,5,1,11,5,4,12,1,11,14,2,15,0,5,4,14,14,11,5,7,5,5,3,9,11,10,0,5,2,12,9,4,0,0,3,11,1,11,4,2,7,5,5,12,11,14,11,7,5,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,2,12,14,11,7,5,1,11,5,4,12,11,5,12,11,14,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,2,0,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,13,12,1,11,14,2", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"7\", \"5\"], \"clip_start\": 872.0, \"clip_end\": 877.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,4,12,11,14,0,5,12,0,5,2,12,9,11,10,2,12,2,2,5,12,1,11,14,2,0,5,2,12,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,12,2,2,12,11,15,15,0,14,11,7,5,1,11,4,2,7,5,5,10,15,11,3,12,1,11,14,2,0,5,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,5,4,12,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,9,11,10,12,1,11,14,2,0,5,2,12,9,4,0,14,11,15,13,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,8,15,0,5,4,9,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,11,14,11,7,5,2,12,9,2,5,9,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,5,12,1,11,14,2,0,5,2,12,9,9,15,0,5,4,9,2,12,9,11,10,2,12,2,2,12,2,9,14,11,5,7,5,5,12,1,11,14,2,0,5,2,9,11,10,2,9,11,10,9,4,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,3,12,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,14,2,12,9,2,10,15,11,12,1,11,5,4,12,1,4,5,10,15,10,5,9,5,3,3,12,11,4,7,5,5,10,15,11,3,6,3,2,9,11,10,2,12,2,2,12,2,12,9,4,0,15,0,5,4,9,4,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,15,0,5,4,9,4,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,0,11,1,11,5,4,12,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,12,1,11,3,12,11,7,5,3,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,4,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,15,0,5,4,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,10,15,11,2,12,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,15,7,5,8,15,0,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,1,7,5,5,10,15,10,15,11,3,12,11,14,11,7,5,1,11,5,4,12,1,11,14,2,15,0,5,4,14,14,11,5,7,5,5,3,9,11,10,0,5,2,12,9,4,0,0,3,11,1,11,4,2,7,5,5,12,11,14,11,7,5,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,2,12,14,11,7,5,1,11,5,4,12,11,5,12,11,14,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,2,0,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,13,12,1,11,14,2", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"10\", \"2\"], \"clip_start\": 722.0, \"clip_end\": 726.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,4,12,11,14,0,5,12,0,5,2,12,9,11,10,2,12,2,2,5,12,1,11,14,2,0,5,2,12,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,12,2,2,12,11,15,15,0,14,11,7,5,1,11,4,2,7,5,5,10,15,11,3,12,1,11,14,2,0,5,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,5,4,12,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,9,11,10,12,1,11,14,2,0,5,2,12,9,4,0,14,11,15,13,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,8,15,0,5,4,9,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,11,14,11,7,5,2,12,9,2,5,9,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,5,12,1,11,14,2,0,5,2,12,9,9,15,0,5,4,9,2,12,9,11,10,2,12,2,2,12,2,9,14,11,5,7,5,5,12,1,11,14,2,0,5,2,9,11,10,2,9,11,10,9,4,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,3,12,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,14,2,12,9,2,10,15,11,12,1,11,5,4,12,1,4,5,10,15,10,5,9,5,3,3,12,11,4,7,5,5,10,15,11,3,6,3,2,9,11,10,2,12,2,2,12,2,12,9,4,0,15,0,5,4,9,4,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,15,0,5,4,9,4,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,0,11,1,11,5,4,12,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,12,1,11,3,12,11,7,5,3,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,4,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,15,0,5,4,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,10,15,11,2,12,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,15,7,5,8,15,0,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,1,7,5,5,10,15,10,15,11,3,12,11,14,11,7,5,1,11,5,4,12,1,11,14,2,15,0,5,4,14,14,11,5,7,5,5,3,9,11,10,0,5,2,12,9,4,0,0,3,11,1,11,4,2,7,5,5,12,11,14,11,7,5,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,2,12,14,11,7,5,1,11,5,4,12,11,5,12,11,14,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,2,0,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,13,12,1,11,14,2", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 138.0, \"clip_end\": 141.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,4,12,11,14,0,5,12,0,5,2,12,9,11,10,2,12,2,2,5,12,1,11,14,2,0,5,2,12,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,12,2,2,12,11,15,15,0,14,11,7,5,1,11,4,2,7,5,5,10,15,11,3,12,1,11,14,2,0,5,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,5,4,12,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,9,11,10,12,1,11,14,2,0,5,2,12,9,4,0,14,11,15,13,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,8,15,0,5,4,9,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,11,14,11,7,5,2,12,9,2,5,9,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,5,12,1,11,14,2,0,5,2,12,9,9,15,0,5,4,9,2,12,9,11,10,2,12,2,2,12,2,9,14,11,5,7,5,5,12,1,11,14,2,0,5,2,9,11,10,2,9,11,10,9,4,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,3,12,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,14,2,12,9,2,10,15,11,12,1,11,5,4,12,1,4,5,10,15,10,5,9,5,3,3,12,11,4,7,5,5,10,15,11,3,6,3,2,9,11,10,2,12,2,2,12,2,12,9,4,0,15,0,5,4,9,4,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,15,0,5,4,9,4,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,0,11,1,11,5,4,12,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,12,1,11,3,12,11,7,5,3,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,4,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,15,0,5,4,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,10,15,11,2,12,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,15,7,5,8,15,0,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,1,7,5,5,10,15,10,15,11,3,12,11,14,11,7,5,1,11,5,4,12,1,11,14,2,15,0,5,4,14,14,11,5,7,5,5,3,9,11,10,0,5,2,12,9,4,0,0,3,11,1,11,4,2,7,5,5,12,11,14,11,7,5,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,2,12,14,11,7,5,1,11,5,4,12,11,5,12,11,14,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,2,0,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,13,12,1,11,14,2", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"12\", \"2\", \"5\", \"12\"], \"clip_start\": 316.0, \"clip_end\": 322.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,4,12,11,14,0,5,12,0,5,2,12,9,11,10,2,12,2,2,5,12,1,11,14,2,0,5,2,12,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,12,2,2,12,11,15,15,0,14,11,7,5,1,11,4,2,7,5,5,10,15,11,3,12,1,11,14,2,0,5,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,5,4,12,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,9,11,10,12,1,11,14,2,0,5,2,12,9,4,0,14,11,15,13,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,8,15,0,5,4,9,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,11,14,11,7,5,2,12,9,2,5,9,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,5,12,1,11,14,2,0,5,2,12,9,9,15,0,5,4,9,2,12,9,11,10,2,12,2,2,12,2,9,14,11,5,7,5,5,12,1,11,14,2,0,5,2,9,11,10,2,9,11,10,9,4,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,3,12,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,14,2,12,9,2,10,15,11,12,1,11,5,4,12,1,4,5,10,15,10,5,9,5,3,3,12,11,4,7,5,5,10,15,11,3,6,3,2,9,11,10,2,12,2,2,12,2,12,9,4,0,15,0,5,4,9,4,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,15,0,5,4,9,4,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,0,11,1,11,5,4,12,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,12,1,11,3,12,11,7,5,3,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,4,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,15,0,5,4,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,10,15,11,2,12,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,15,7,5,8,15,0,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,1,7,5,5,10,15,10,15,11,3,12,11,14,11,7,5,1,11,5,4,12,1,11,14,2,15,0,5,4,14,14,11,5,7,5,5,3,9,11,10,0,5,2,12,9,4,0,0,3,11,1,11,4,2,7,5,5,12,11,14,11,7,5,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,2,12,14,11,7,5,1,11,5,4,12,11,5,12,11,14,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,2,0,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,13,12,1,11,14,2", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"2\", \"9\"], \"clip_start\": 661.0, \"clip_end\": 665.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,4,12,11,14,0,5,12,0,5,2,12,9,11,10,2,12,2,2,5,12,1,11,14,2,0,5,2,12,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,12,2,2,12,11,15,15,0,14,11,7,5,1,11,4,2,7,5,5,10,15,11,3,12,1,11,14,2,0,5,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,5,4,12,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,9,11,10,12,1,11,14,2,0,5,2,12,9,4,0,14,11,15,13,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,8,15,0,5,4,9,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,11,14,11,7,5,2,12,9,2,5,9,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,5,12,1,11,14,2,0,5,2,12,9,9,15,0,5,4,9,2,12,9,11,10,2,12,2,2,12,2,9,14,11,5,7,5,5,12,1,11,14,2,0,5,2,9,11,10,2,9,11,10,9,4,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,3,12,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,14,2,12,9,2,10,15,11,12,1,11,5,4,12,1,4,5,10,15,10,5,9,5,3,3,12,11,4,7,5,5,10,15,11,3,6,3,2,9,11,10,2,12,2,2,12,2,12,9,4,0,15,0,5,4,9,4,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,15,0,5,4,9,4,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,0,11,1,11,5,4,12,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,12,1,11,3,12,11,7,5,3,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,4,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,15,0,5,4,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,10,15,11,2,12,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,15,7,5,8,15,0,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,1,7,5,5,10,15,10,15,11,3,12,11,14,11,7,5,1,11,5,4,12,1,11,14,2,15,0,5,4,14,14,11,5,7,5,5,3,9,11,10,0,5,2,12,9,4,0,0,3,11,1,11,4,2,7,5,5,12,11,14,11,7,5,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,2,12,14,11,7,5,1,11,5,4,12,11,5,12,11,14,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,2,0,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,13,12,1,11,14,2", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"4\", \"8\", \"6\", \"0\"], \"clip_start\": 914.0, \"clip_end\": 920.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,4,12,11,14,0,5,12,0,5,2,12,9,11,10,2,12,2,2,5,12,1,11,14,2,0,5,2,12,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,12,2,2,12,11,15,15,0,14,11,7,5,1,11,4,2,7,5,5,10,15,11,3,12,1,11,14,2,0,5,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,5,4,12,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,9,11,10,12,1,11,14,2,0,5,2,12,9,4,0,14,11,15,13,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,8,15,0,5,4,9,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,11,14,11,7,5,2,12,9,2,5,9,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,5,12,1,11,14,2,0,5,2,12,9,9,15,0,5,4,9,2,12,9,11,10,2,12,2,2,12,2,9,14,11,5,7,5,5,12,1,11,14,2,0,5,2,9,11,10,2,9,11,10,9,4,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,3,12,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,14,2,12,9,2,10,15,11,12,1,11,5,4,12,1,4,5,10,15,10,5,9,5,3,3,12,11,4,7,5,5,10,15,11,3,6,3,2,9,11,10,2,12,2,2,12,2,12,9,4,0,15,0,5,4,9,4,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,15,0,5,4,9,4,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,0,11,1,11,5,4,12,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,12,1,11,3,12,11,7,5,3,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,4,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,15,0,5,4,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,10,15,11,2,12,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,15,7,5,8,15,0,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,1,7,5,5,10,15,10,15,11,3,12,11,14,11,7,5,1,11,5,4,12,1,11,14,2,15,0,5,4,14,14,11,5,7,5,5,3,9,11,10,0,5,2,12,9,4,0,0,3,11,1,11,4,2,7,5,5,12,11,14,11,7,5,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,2,12,14,11,7,5,1,11,5,4,12,11,5,12,11,14,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,2,0,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,13,12,1,11,14,2", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"7\"], \"clip_start\": 192.0, \"clip_end\": 195.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q8_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,4,12,11,14,0,5,12,0,5,2,12,9,11,10,2,12,2,2,5,12,1,11,14,2,0,5,2,12,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,12,2,2,12,11,15,15,0,14,11,7,5,1,11,4,2,7,5,5,10,15,11,3,12,1,11,14,2,0,5,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,5,4,12,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,9,11,10,12,1,11,14,2,0,5,2,12,9,4,0,14,11,15,13,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,8,15,0,5,4,9,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,11,14,11,7,5,2,12,9,2,5,9,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,5,12,1,11,14,2,0,5,2,12,9,9,15,0,5,4,9,2,12,9,11,10,2,12,2,2,12,2,9,14,11,5,7,5,5,12,1,11,14,2,0,5,2,9,11,10,2,9,11,10,9,4,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,3,12,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,14,2,12,9,2,10,15,11,12,1,11,5,4,12,1,4,5,10,15,10,5,9,5,3,3,12,11,4,7,5,5,10,15,11,3,6,3,2,9,11,10,2,12,2,2,12,2,12,9,4,0,15,0,5,4,9,4,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,15,0,5,4,9,4,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,0,11,1,11,5,4,12,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,12,1,11,3,12,11,7,5,3,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,4,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,15,0,5,4,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,10,15,11,2,12,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,15,7,5,8,15,0,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,1,7,5,5,10,15,10,15,11,3,12,11,14,11,7,5,1,11,5,4,12,1,11,14,2,15,0,5,4,14,14,11,5,7,5,5,3,9,11,10,0,5,2,12,9,4,0,0,3,11,1,11,4,2,7,5,5,12,11,14,11,7,5,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,2,12,14,11,7,5,1,11,5,4,12,11,5,12,11,14,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,2,0,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,13,12,1,11,14,2", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\", \"15\"], \"clip_start\": 341.0, \"clip_end\": 345.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q9_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,4,12,11,14,0,5,12,0,5,2,12,9,11,10,2,12,2,2,5,12,1,11,14,2,0,5,2,12,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,12,2,2,12,11,15,15,0,14,11,7,5,1,11,4,2,7,5,5,10,15,11,3,12,1,11,14,2,0,5,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,5,4,12,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,9,11,10,12,1,11,14,2,0,5,2,12,9,4,0,14,11,15,13,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,8,15,0,5,4,9,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,11,14,11,7,5,2,12,9,2,5,9,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,5,12,1,11,14,2,0,5,2,12,9,9,15,0,5,4,9,2,12,9,11,10,2,12,2,2,12,2,9,14,11,5,7,5,5,12,1,11,14,2,0,5,2,9,11,10,2,9,11,10,9,4,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,3,12,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,14,2,12,9,2,10,15,11,12,1,11,5,4,12,1,4,5,10,15,10,5,9,5,3,3,12,11,4,7,5,5,10,15,11,3,6,3,2,9,11,10,2,12,2,2,12,2,12,9,4,0,15,0,5,4,9,4,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,15,0,5,4,9,4,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,0,11,1,11,5,4,12,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,12,1,11,3,12,11,7,5,3,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,4,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,15,0,5,4,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,10,15,11,2,12,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,15,7,5,8,15,0,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,1,7,5,5,10,15,10,15,11,3,12,11,14,11,7,5,1,11,5,4,12,1,11,14,2,15,0,5,4,14,14,11,5,7,5,5,3,9,11,10,0,5,2,12,9,4,0,0,3,11,1,11,4,2,7,5,5,12,11,14,11,7,5,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,2,12,14,11,7,5,1,11,5,4,12,11,5,12,11,14,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,2,0,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,13,12,1,11,14,2", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"1\"], \"clip_start\": 197.0, \"clip_end\": 201.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q10_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,4,12,11,14,0,5,12,0,5,2,12,9,11,10,2,12,2,2,5,12,1,11,14,2,0,5,2,12,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,12,2,2,12,11,15,15,0,14,11,7,5,1,11,4,2,7,5,5,10,15,11,3,12,1,11,14,2,0,5,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,5,4,12,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,9,11,10,12,1,11,14,2,0,5,2,12,9,4,0,14,11,15,13,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,8,15,0,5,4,9,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,11,14,11,7,5,2,12,9,2,5,9,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,5,12,1,11,14,2,0,5,2,12,9,9,15,0,5,4,9,2,12,9,11,10,2,12,2,2,12,2,9,14,11,5,7,5,5,12,1,11,14,2,0,5,2,9,11,10,2,9,11,10,9,4,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,3,12,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,14,2,12,9,2,10,15,11,12,1,11,5,4,12,1,4,5,10,15,10,5,9,5,3,3,12,11,4,7,5,5,10,15,11,3,6,3,2,9,11,10,2,12,2,2,12,2,12,9,4,0,15,0,5,4,9,4,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,15,0,5,4,9,4,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,0,11,1,11,5,4,12,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,12,1,11,3,12,11,7,5,3,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,4,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,15,0,5,4,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,10,15,11,2,12,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,15,7,5,8,15,0,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,1,7,5,5,10,15,10,15,11,3,12,11,14,11,7,5,1,11,5,4,12,1,11,14,2,15,0,5,4,14,14,11,5,7,5,5,3,9,11,10,0,5,2,12,9,4,0,0,3,11,1,11,4,2,7,5,5,12,11,14,11,7,5,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,2,12,14,11,7,5,1,11,5,4,12,11,5,12,11,14,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,2,0,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,13,12,1,11,14,2", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"9\", \"11\", \"10\", \"2\"], \"clip_start\": 635.0, \"clip_end\": 641.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q11_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,4,12,11,14,0,5,12,0,5,2,12,9,11,10,2,12,2,2,5,12,1,11,14,2,0,5,2,12,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,12,2,2,12,11,15,15,0,14,11,7,5,1,11,4,2,7,5,5,10,15,11,3,12,1,11,14,2,0,5,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,5,4,12,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,9,11,10,12,1,11,14,2,0,5,2,12,9,4,0,14,11,15,13,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,8,15,0,5,4,9,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,11,14,11,7,5,2,12,9,2,5,9,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,5,12,1,11,14,2,0,5,2,12,9,9,15,0,5,4,9,2,12,9,11,10,2,12,2,2,12,2,9,14,11,5,7,5,5,12,1,11,14,2,0,5,2,9,11,10,2,9,11,10,9,4,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,3,12,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,14,2,12,9,2,10,15,11,12,1,11,5,4,12,1,4,5,10,15,10,5,9,5,3,3,12,11,4,7,5,5,10,15,11,3,6,3,2,9,11,10,2,12,2,2,12,2,12,9,4,0,15,0,5,4,9,4,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,15,0,5,4,9,4,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,0,11,1,11,5,4,12,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,12,1,11,3,12,11,7,5,3,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,4,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,15,0,5,4,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,10,15,11,2,12,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,15,7,5,8,15,0,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,1,7,5,5,10,15,10,15,11,3,12,11,14,11,7,5,1,11,5,4,12,1,11,14,2,15,0,5,4,14,14,11,5,7,5,5,3,9,11,10,0,5,2,12,9,4,0,0,3,11,1,11,4,2,7,5,5,12,11,14,11,7,5,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,2,12,14,11,7,5,1,11,5,4,12,11,5,12,11,14,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,2,0,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,13,12,1,11,14,2", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"8\", \"2\", \"5\"], \"clip_start\": 908.0, \"clip_end\": 914.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q12_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,4,12,11,14,0,5,12,0,5,2,12,9,11,10,2,12,2,2,5,12,1,11,14,2,0,5,2,12,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,12,2,2,12,11,15,15,0,14,11,7,5,1,11,4,2,7,5,5,10,15,11,3,12,1,11,14,2,0,5,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,5,4,12,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,9,11,10,12,1,11,14,2,0,5,2,12,9,4,0,14,11,15,13,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,8,15,0,5,4,9,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,11,14,11,7,5,2,12,9,2,5,9,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,5,12,1,11,14,2,0,5,2,12,9,9,15,0,5,4,9,2,12,9,11,10,2,12,2,2,12,2,9,14,11,5,7,5,5,12,1,11,14,2,0,5,2,9,11,10,2,9,11,10,9,4,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,3,12,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,14,2,12,9,2,10,15,11,12,1,11,5,4,12,1,4,5,10,15,10,5,9,5,3,3,12,11,4,7,5,5,10,15,11,3,6,3,2,9,11,10,2,12,2,2,12,2,12,9,4,0,15,0,5,4,9,4,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,15,0,5,4,9,4,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,0,11,1,11,5,4,12,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,12,1,11,3,12,11,7,5,3,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,4,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,15,0,5,4,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,10,15,11,2,12,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,15,7,5,8,15,0,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,1,7,5,5,10,15,10,15,11,3,12,11,14,11,7,5,1,11,5,4,12,1,11,14,2,15,0,5,4,14,14,11,5,7,5,5,3,9,11,10,0,5,2,12,9,4,0,0,3,11,1,11,4,2,7,5,5,12,11,14,11,7,5,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,2,12,14,11,7,5,1,11,5,4,12,11,5,12,11,14,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,2,0,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,13,12,1,11,14,2", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"2\", \"2\"], \"clip_start\": 658.0, \"clip_end\": 662.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q13_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,4,12,11,14,0,5,12,0,5,2,12,9,11,10,2,12,2,2,5,12,1,11,14,2,0,5,2,12,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,12,2,2,12,11,15,15,0,14,11,7,5,1,11,4,2,7,5,5,10,15,11,3,12,1,11,14,2,0,5,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,5,4,12,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,9,11,10,12,1,11,14,2,0,5,2,12,9,4,0,14,11,15,13,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,8,15,0,5,4,9,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,11,14,11,7,5,2,12,9,2,5,9,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,5,12,1,11,14,2,0,5,2,12,9,9,15,0,5,4,9,2,12,9,11,10,2,12,2,2,12,2,9,14,11,5,7,5,5,12,1,11,14,2,0,5,2,9,11,10,2,9,11,10,9,4,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,3,12,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,14,2,12,9,2,10,15,11,12,1,11,5,4,12,1,4,5,10,15,10,5,9,5,3,3,12,11,4,7,5,5,10,15,11,3,6,3,2,9,11,10,2,12,2,2,12,2,12,9,4,0,15,0,5,4,9,4,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,15,0,5,4,9,4,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,0,11,1,11,5,4,12,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,12,1,11,3,12,11,7,5,3,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,4,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,15,0,5,4,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,10,15,11,2,12,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,15,7,5,8,15,0,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,1,7,5,5,10,15,10,15,11,3,12,11,14,11,7,5,1,11,5,4,12,1,11,14,2,15,0,5,4,14,14,11,5,7,5,5,3,9,11,10,0,5,2,12,9,4,0,0,3,11,1,11,4,2,7,5,5,12,11,14,11,7,5,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,2,12,14,11,7,5,1,11,5,4,12,11,5,12,11,14,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,2,0,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,13,12,1,11,14,2", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"5\", \"2\", \"12\", \"9\", \"2\"], \"clip_start\": 76.0, \"clip_end\": 82.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q14_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,4,12,11,14,0,5,12,0,5,2,12,9,11,10,2,12,2,2,5,12,1,11,14,2,0,5,2,12,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,12,2,2,12,11,15,15,0,14,11,7,5,1,11,4,2,7,5,5,10,15,11,3,12,1,11,14,2,0,5,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,5,4,12,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,9,11,10,12,1,11,14,2,0,5,2,12,9,4,0,14,11,15,13,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,8,15,0,5,4,9,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,11,14,11,7,5,2,12,9,2,5,9,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,5,12,1,11,14,2,0,5,2,12,9,9,15,0,5,4,9,2,12,9,11,10,2,12,2,2,12,2,9,14,11,5,7,5,5,12,1,11,14,2,0,5,2,9,11,10,2,9,11,10,9,4,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,3,12,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,14,2,12,9,2,10,15,11,12,1,11,5,4,12,1,4,5,10,15,10,5,9,5,3,3,12,11,4,7,5,5,10,15,11,3,6,3,2,9,11,10,2,12,2,2,12,2,12,9,4,0,15,0,5,4,9,4,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,15,0,5,4,9,4,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,0,11,1,11,5,4,12,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,12,1,11,3,12,11,7,5,3,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,4,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,15,0,5,4,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,10,15,11,2,12,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,15,7,5,8,15,0,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,1,7,5,5,10,15,10,15,11,3,12,11,14,11,7,5,1,11,5,4,12,1,11,14,2,15,0,5,4,14,14,11,5,7,5,5,3,9,11,10,0,5,2,12,9,4,0,0,3,11,1,11,4,2,7,5,5,12,11,14,11,7,5,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,2,12,14,11,7,5,1,11,5,4,12,11,5,12,11,14,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,2,0,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,13,12,1,11,14,2", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"11\", \"12\"], \"clip_start\": 274.0, \"clip_end\": 279.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q15_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,4,12,11,14,0,5,12,0,5,2,12,9,11,10,2,12,2,2,5,12,1,11,14,2,0,5,2,12,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,12,2,2,12,11,15,15,0,14,11,7,5,1,11,4,2,7,5,5,10,15,11,3,12,1,11,14,2,0,5,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,5,4,12,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,9,11,10,12,1,11,14,2,0,5,2,12,9,4,0,14,11,15,13,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,8,15,0,5,4,9,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,11,14,11,7,5,2,12,9,2,5,9,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,5,12,1,11,14,2,0,5,2,12,9,9,15,0,5,4,9,2,12,9,11,10,2,12,2,2,12,2,9,14,11,5,7,5,5,12,1,11,14,2,0,5,2,9,11,10,2,9,11,10,9,4,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,3,12,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,14,2,12,9,2,10,15,11,12,1,11,5,4,12,1,4,5,10,15,10,5,9,5,3,3,12,11,4,7,5,5,10,15,11,3,6,3,2,9,11,10,2,12,2,2,12,2,12,9,4,0,15,0,5,4,9,4,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,2,12,9,4,0,0,3,12,11,14,11,10,2,9,11,10,2,12,2,2,12,2,12,9,4,0,0,3,15,0,5,4,9,4,2,12,9,4,0,0,3,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,0,11,1,11,5,4,12,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,12,1,11,3,12,11,7,5,3,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,4,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,15,0,5,4,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,10,15,11,2,12,9,11,10,2,9,11,10,2,12,2,2,12,2,9,11,10,2,12,2,2,12,2,12,9,15,7,5,8,15,0,5,4,9,4,5,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,2,9,11,10,2,12,2,2,12,2,12,9,2,12,9,4,0,0,3,2,12,9,4,0,0,3,12,1,7,5,5,10,15,10,15,11,3,12,11,14,11,7,5,1,11,5,4,12,1,11,14,2,15,0,5,4,14,14,11,5,7,5,5,3,9,11,10,0,5,2,12,9,4,0,0,3,11,1,11,4,2,7,5,5,12,11,14,11,7,5,1,11,5,4,12,11,14,11,7,5,2,9,11,10,2,12,2,2,12,2,12,9,11,10,2,12,2,2,12,14,11,7,5,1,11,5,4,12,11,5,12,11,14,2,12,9,2,12,9,2,12,9,4,0,0,3,12,1,11,14,2,0,5,2,9,11,10,2,12,2,2,12,2,9,11,10,2,9,11,10,2,9,11,10,2,9,11,10,2,12,2,2,12,2,13,12,1,11,14,2", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"14\", \"1\", \"9\"], \"clip_start\": 928.0, \"clip_end\": 933.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,9,12,14,15,11,11,15,10,3,1,12,7,10,3,1,6,4,5,12,7,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,13,14,1,1,12,14,1,15,13,14,15,1,6,4,5,12,14,1,15,13,14,15,11,11,15,11,5,10,3,4,5,10,4,10,3,4,5,10,3,14,1,6,4,5,13,14,15,11,11,7,15,4,14,1,9,12,15,11,11,15,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,4,11,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,5,10,3,14,1,9,12,14,1,15,13,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,2,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,10,3,4,5,10,5,10,3,4,5,10,3,4,5,10,3,4,5,6,14,15,11,10,3,4,5,10,3,4,5,10,3,4,5,9,1,6,10,3,7,15,6,8,2,11,1,6,4,5,12,7,10,3,4,5,10,5,10,3,4,5,9,1,12,7,10,3,1,12,14,1,14,1,9,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,15,10,3,1,6,4,5,7,15,4,14,15,11,10,3,4,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,2,4,10,3,4,5,6,0,4,1,12,7,10,3,4,5,10,3,4,5,10,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,3,8,2,1,12,7,10,3,1,12,14,15,11,10,3,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,12,7,10,3,4,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,15,11,10,3,1,6,2,5,10,3,4,5,9,1,12,7,3,8,2,0,6,8,15,5,6,14,1,9,12,14,15,11,11,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,14,15,11,5,6,14,1,9,12,15,11,10,3,1,6,10,3,7,9,1,12,7,10,3,4,5,9,1,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,14,1,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,15,11,11,15,10,3,1,6,10,0,0,15,10,3,1,6,4,5,12,7,10,3,1,12,7,10,3,1,6,4,5,12,14,1,15,13,14,1,9,5,6,14,15,2,3,8,2,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,13,14,1,9,12,6,1,6,10,3,7,11,2,7,9,1,6,4,5,13,14,1,9,12,14,15,11,11,7,9,1,12,3,12,14,1,15,13,14,1,9,12,14,1,15,11,11,12,7,10,3,1,12,14,1,15,13,14,1,0,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,0,14,1,9,12,14,1,15,13,14,1,9,8,15,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,1,12,7,10,3,1,10,3,4,5,6,14,1,9,0,15,11,10,3,1,7,15,4,14,1,9,12,14,1,15,13,14,1,1,6,2,7,2,10,6,8,15,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,11,7,15,4,14,1,9,12,14,15,11,11,7,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"11\", \"12\", \"7\"], \"clip_start\": 800.0, \"clip_end\": 805.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,9,12,14,15,11,11,15,10,3,1,12,7,10,3,1,6,4,5,12,7,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,13,14,1,1,12,14,1,15,13,14,15,1,6,4,5,12,14,1,15,13,14,15,11,11,15,11,5,10,3,4,5,10,4,10,3,4,5,10,3,14,1,6,4,5,13,14,15,11,11,7,15,4,14,1,9,12,15,11,11,15,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,4,11,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,5,10,3,14,1,9,12,14,1,15,13,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,2,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,10,3,4,5,10,5,10,3,4,5,10,3,4,5,10,3,4,5,6,14,15,11,10,3,4,5,10,3,4,5,10,3,4,5,9,1,6,10,3,7,15,6,8,2,11,1,6,4,5,12,7,10,3,4,5,10,5,10,3,4,5,9,1,12,7,10,3,1,12,14,1,14,1,9,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,15,10,3,1,6,4,5,7,15,4,14,15,11,10,3,4,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,2,4,10,3,4,5,6,0,4,1,12,7,10,3,4,5,10,3,4,5,10,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,3,8,2,1,12,7,10,3,1,12,14,15,11,10,3,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,12,7,10,3,4,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,15,11,10,3,1,6,2,5,10,3,4,5,9,1,12,7,3,8,2,0,6,8,15,5,6,14,1,9,12,14,15,11,11,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,14,15,11,5,6,14,1,9,12,15,11,10,3,1,6,10,3,7,9,1,12,7,10,3,4,5,9,1,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,14,1,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,15,11,11,15,10,3,1,6,10,0,0,15,10,3,1,6,4,5,12,7,10,3,1,12,7,10,3,1,6,4,5,12,14,1,15,13,14,1,9,5,6,14,15,2,3,8,2,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,13,14,1,9,12,6,1,6,10,3,7,11,2,7,9,1,6,4,5,13,14,1,9,12,14,15,11,11,7,9,1,12,3,12,14,1,15,13,14,1,9,12,14,1,15,11,11,12,7,10,3,1,12,14,1,15,13,14,1,0,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,0,14,1,9,12,14,1,15,13,14,1,9,8,15,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,1,12,7,10,3,1,10,3,4,5,6,14,1,9,0,15,11,10,3,1,7,15,4,14,1,9,12,14,1,15,13,14,1,1,6,2,7,2,10,6,8,15,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,11,7,15,4,14,1,9,12,14,15,11,11,7,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"1\"], \"clip_start\": 163.0, \"clip_end\": 167.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q2_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,9,12,14,15,11,11,15,10,3,1,12,7,10,3,1,6,4,5,12,7,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,13,14,1,1,12,14,1,15,13,14,15,1,6,4,5,12,14,1,15,13,14,15,11,11,15,11,5,10,3,4,5,10,4,10,3,4,5,10,3,14,1,6,4,5,13,14,15,11,11,7,15,4,14,1,9,12,15,11,11,15,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,4,11,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,5,10,3,14,1,9,12,14,1,15,13,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,2,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,10,3,4,5,10,5,10,3,4,5,10,3,4,5,10,3,4,5,6,14,15,11,10,3,4,5,10,3,4,5,10,3,4,5,9,1,6,10,3,7,15,6,8,2,11,1,6,4,5,12,7,10,3,4,5,10,5,10,3,4,5,9,1,12,7,10,3,1,12,14,1,14,1,9,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,15,10,3,1,6,4,5,7,15,4,14,15,11,10,3,4,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,2,4,10,3,4,5,6,0,4,1,12,7,10,3,4,5,10,3,4,5,10,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,3,8,2,1,12,7,10,3,1,12,14,15,11,10,3,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,12,7,10,3,4,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,15,11,10,3,1,6,2,5,10,3,4,5,9,1,12,7,3,8,2,0,6,8,15,5,6,14,1,9,12,14,15,11,11,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,14,15,11,5,6,14,1,9,12,15,11,10,3,1,6,10,3,7,9,1,12,7,10,3,4,5,9,1,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,14,1,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,15,11,11,15,10,3,1,6,10,0,0,15,10,3,1,6,4,5,12,7,10,3,1,12,7,10,3,1,6,4,5,12,14,1,15,13,14,1,9,5,6,14,15,2,3,8,2,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,13,14,1,9,12,6,1,6,10,3,7,11,2,7,9,1,6,4,5,13,14,1,9,12,14,15,11,11,7,9,1,12,3,12,14,1,15,13,14,1,9,12,14,1,15,11,11,12,7,10,3,1,12,14,1,15,13,14,1,0,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,0,14,1,9,12,14,1,15,13,14,1,9,8,15,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,1,12,7,10,3,1,10,3,4,5,6,14,1,9,0,15,11,10,3,1,7,15,4,14,1,9,12,14,1,15,13,14,1,1,6,2,7,2,10,6,8,15,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,11,7,15,4,14,1,9,12,14,15,11,11,7,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"4\", \"5\", \"10\"], \"clip_start\": 292.0, \"clip_end\": 296.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q3_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,9,12,14,15,11,11,15,10,3,1,12,7,10,3,1,6,4,5,12,7,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,13,14,1,1,12,14,1,15,13,14,15,1,6,4,5,12,14,1,15,13,14,15,11,11,15,11,5,10,3,4,5,10,4,10,3,4,5,10,3,14,1,6,4,5,13,14,15,11,11,7,15,4,14,1,9,12,15,11,11,15,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,4,11,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,5,10,3,14,1,9,12,14,1,15,13,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,2,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,10,3,4,5,10,5,10,3,4,5,10,3,4,5,10,3,4,5,6,14,15,11,10,3,4,5,10,3,4,5,10,3,4,5,9,1,6,10,3,7,15,6,8,2,11,1,6,4,5,12,7,10,3,4,5,10,5,10,3,4,5,9,1,12,7,10,3,1,12,14,1,14,1,9,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,15,10,3,1,6,4,5,7,15,4,14,15,11,10,3,4,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,2,4,10,3,4,5,6,0,4,1,12,7,10,3,4,5,10,3,4,5,10,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,3,8,2,1,12,7,10,3,1,12,14,15,11,10,3,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,12,7,10,3,4,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,15,11,10,3,1,6,2,5,10,3,4,5,9,1,12,7,3,8,2,0,6,8,15,5,6,14,1,9,12,14,15,11,11,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,14,15,11,5,6,14,1,9,12,15,11,10,3,1,6,10,3,7,9,1,12,7,10,3,4,5,9,1,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,14,1,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,15,11,11,15,10,3,1,6,10,0,0,15,10,3,1,6,4,5,12,7,10,3,1,12,7,10,3,1,6,4,5,12,14,1,15,13,14,1,9,5,6,14,15,2,3,8,2,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,13,14,1,9,12,6,1,6,10,3,7,11,2,7,9,1,6,4,5,13,14,1,9,12,14,15,11,11,7,9,1,12,3,12,14,1,15,13,14,1,9,12,14,1,15,11,11,12,7,10,3,1,12,14,1,15,13,14,1,0,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,0,14,1,9,12,14,1,15,13,14,1,9,8,15,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,1,12,7,10,3,1,10,3,4,5,6,14,1,9,0,15,11,10,3,1,7,15,4,14,1,9,12,14,1,15,13,14,1,1,6,2,7,2,10,6,8,15,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,11,7,15,4,14,1,9,12,14,15,11,11,7,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"10\", \"3\", \"14\", \"1\", \"6\"], \"clip_start\": 84.0, \"clip_end\": 90.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q4_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,9,12,14,15,11,11,15,10,3,1,12,7,10,3,1,6,4,5,12,7,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,13,14,1,1,12,14,1,15,13,14,15,1,6,4,5,12,14,1,15,13,14,15,11,11,15,11,5,10,3,4,5,10,4,10,3,4,5,10,3,14,1,6,4,5,13,14,15,11,11,7,15,4,14,1,9,12,15,11,11,15,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,4,11,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,5,10,3,14,1,9,12,14,1,15,13,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,2,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,10,3,4,5,10,5,10,3,4,5,10,3,4,5,10,3,4,5,6,14,15,11,10,3,4,5,10,3,4,5,10,3,4,5,9,1,6,10,3,7,15,6,8,2,11,1,6,4,5,12,7,10,3,4,5,10,5,10,3,4,5,9,1,12,7,10,3,1,12,14,1,14,1,9,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,15,10,3,1,6,4,5,7,15,4,14,15,11,10,3,4,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,2,4,10,3,4,5,6,0,4,1,12,7,10,3,4,5,10,3,4,5,10,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,3,8,2,1,12,7,10,3,1,12,14,15,11,10,3,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,12,7,10,3,4,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,15,11,10,3,1,6,2,5,10,3,4,5,9,1,12,7,3,8,2,0,6,8,15,5,6,14,1,9,12,14,15,11,11,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,14,15,11,5,6,14,1,9,12,15,11,10,3,1,6,10,3,7,9,1,12,7,10,3,4,5,9,1,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,14,1,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,15,11,11,15,10,3,1,6,10,0,0,15,10,3,1,6,4,5,12,7,10,3,1,12,7,10,3,1,6,4,5,12,14,1,15,13,14,1,9,5,6,14,15,2,3,8,2,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,13,14,1,9,12,6,1,6,10,3,7,11,2,7,9,1,6,4,5,13,14,1,9,12,14,15,11,11,7,9,1,12,3,12,14,1,15,13,14,1,9,12,14,1,15,11,11,12,7,10,3,1,12,14,1,15,13,14,1,0,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,0,14,1,9,12,14,1,15,13,14,1,9,8,15,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,1,12,7,10,3,1,10,3,4,5,6,14,1,9,0,15,11,10,3,1,7,15,4,14,1,9,12,14,1,15,13,14,1,1,6,2,7,2,10,6,8,15,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,11,7,15,4,14,1,9,12,14,15,11,11,7,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"12\", \"14\"], \"clip_start\": 915.0, \"clip_end\": 919.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q5_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,9,12,14,15,11,11,15,10,3,1,12,7,10,3,1,6,4,5,12,7,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,13,14,1,1,12,14,1,15,13,14,15,1,6,4,5,12,14,1,15,13,14,15,11,11,15,11,5,10,3,4,5,10,4,10,3,4,5,10,3,14,1,6,4,5,13,14,15,11,11,7,15,4,14,1,9,12,15,11,11,15,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,4,11,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,5,10,3,14,1,9,12,14,1,15,13,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,2,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,10,3,4,5,10,5,10,3,4,5,10,3,4,5,10,3,4,5,6,14,15,11,10,3,4,5,10,3,4,5,10,3,4,5,9,1,6,10,3,7,15,6,8,2,11,1,6,4,5,12,7,10,3,4,5,10,5,10,3,4,5,9,1,12,7,10,3,1,12,14,1,14,1,9,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,15,10,3,1,6,4,5,7,15,4,14,15,11,10,3,4,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,2,4,10,3,4,5,6,0,4,1,12,7,10,3,4,5,10,3,4,5,10,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,3,8,2,1,12,7,10,3,1,12,14,15,11,10,3,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,12,7,10,3,4,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,15,11,10,3,1,6,2,5,10,3,4,5,9,1,12,7,3,8,2,0,6,8,15,5,6,14,1,9,12,14,15,11,11,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,14,15,11,5,6,14,1,9,12,15,11,10,3,1,6,10,3,7,9,1,12,7,10,3,4,5,9,1,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,14,1,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,15,11,11,15,10,3,1,6,10,0,0,15,10,3,1,6,4,5,12,7,10,3,1,12,7,10,3,1,6,4,5,12,14,1,15,13,14,1,9,5,6,14,15,2,3,8,2,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,13,14,1,9,12,6,1,6,10,3,7,11,2,7,9,1,6,4,5,13,14,1,9,12,14,15,11,11,7,9,1,12,3,12,14,1,15,13,14,1,9,12,14,1,15,11,11,12,7,10,3,1,12,14,1,15,13,14,1,0,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,0,14,1,9,12,14,1,15,13,14,1,9,8,15,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,1,12,7,10,3,1,10,3,4,5,6,14,1,9,0,15,11,10,3,1,7,15,4,14,1,9,12,14,1,15,13,14,1,1,6,2,7,2,10,6,8,15,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,11,7,15,4,14,1,9,12,14,15,11,11,7,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"3\", \"15\", \"7\", \"0\"], \"clip_start\": 805.0, \"clip_end\": 811.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q6_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,9,12,14,15,11,11,15,10,3,1,12,7,10,3,1,6,4,5,12,7,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,13,14,1,1,12,14,1,15,13,14,15,1,6,4,5,12,14,1,15,13,14,15,11,11,15,11,5,10,3,4,5,10,4,10,3,4,5,10,3,14,1,6,4,5,13,14,15,11,11,7,15,4,14,1,9,12,15,11,11,15,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,4,11,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,5,10,3,14,1,9,12,14,1,15,13,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,2,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,10,3,4,5,10,5,10,3,4,5,10,3,4,5,10,3,4,5,6,14,15,11,10,3,4,5,10,3,4,5,10,3,4,5,9,1,6,10,3,7,15,6,8,2,11,1,6,4,5,12,7,10,3,4,5,10,5,10,3,4,5,9,1,12,7,10,3,1,12,14,1,14,1,9,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,15,10,3,1,6,4,5,7,15,4,14,15,11,10,3,4,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,2,4,10,3,4,5,6,0,4,1,12,7,10,3,4,5,10,3,4,5,10,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,3,8,2,1,12,7,10,3,1,12,14,15,11,10,3,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,12,7,10,3,4,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,15,11,10,3,1,6,2,5,10,3,4,5,9,1,12,7,3,8,2,0,6,8,15,5,6,14,1,9,12,14,15,11,11,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,14,15,11,5,6,14,1,9,12,15,11,10,3,1,6,10,3,7,9,1,12,7,10,3,4,5,9,1,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,14,1,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,15,11,11,15,10,3,1,6,10,0,0,15,10,3,1,6,4,5,12,7,10,3,1,12,7,10,3,1,6,4,5,12,14,1,15,13,14,1,9,5,6,14,15,2,3,8,2,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,13,14,1,9,12,6,1,6,10,3,7,11,2,7,9,1,6,4,5,13,14,1,9,12,14,15,11,11,7,9,1,12,3,12,14,1,15,13,14,1,9,12,14,1,15,11,11,12,7,10,3,1,12,14,1,15,13,14,1,0,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,0,14,1,9,12,14,1,15,13,14,1,9,8,15,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,1,12,7,10,3,1,10,3,4,5,6,14,1,9,0,15,11,10,3,1,7,15,4,14,1,9,12,14,1,15,13,14,1,1,6,2,7,2,10,6,8,15,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,11,7,15,4,14,1,9,12,14,15,11,11,7,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"1\", \"15\", \"13\"], \"clip_start\": 193.0, \"clip_end\": 197.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q7_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,9,12,14,15,11,11,15,10,3,1,12,7,10,3,1,6,4,5,12,7,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,13,14,1,1,12,14,1,15,13,14,15,1,6,4,5,12,14,1,15,13,14,15,11,11,15,11,5,10,3,4,5,10,4,10,3,4,5,10,3,14,1,6,4,5,13,14,15,11,11,7,15,4,14,1,9,12,15,11,11,15,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,4,11,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,5,10,3,14,1,9,12,14,1,15,13,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,2,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,10,3,4,5,10,5,10,3,4,5,10,3,4,5,10,3,4,5,6,14,15,11,10,3,4,5,10,3,4,5,10,3,4,5,9,1,6,10,3,7,15,6,8,2,11,1,6,4,5,12,7,10,3,4,5,10,5,10,3,4,5,9,1,12,7,10,3,1,12,14,1,14,1,9,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,15,10,3,1,6,4,5,7,15,4,14,15,11,10,3,4,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,2,4,10,3,4,5,6,0,4,1,12,7,10,3,4,5,10,3,4,5,10,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,3,8,2,1,12,7,10,3,1,12,14,15,11,10,3,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,12,7,10,3,4,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,15,11,10,3,1,6,2,5,10,3,4,5,9,1,12,7,3,8,2,0,6,8,15,5,6,14,1,9,12,14,15,11,11,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,14,15,11,5,6,14,1,9,12,15,11,10,3,1,6,10,3,7,9,1,12,7,10,3,4,5,9,1,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,14,1,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,15,11,11,15,10,3,1,6,10,0,0,15,10,3,1,6,4,5,12,7,10,3,1,12,7,10,3,1,6,4,5,12,14,1,15,13,14,1,9,5,6,14,15,2,3,8,2,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,13,14,1,9,12,6,1,6,10,3,7,11,2,7,9,1,6,4,5,13,14,1,9,12,14,15,11,11,7,9,1,12,3,12,14,1,15,13,14,1,9,12,14,1,15,11,11,12,7,10,3,1,12,14,1,15,13,14,1,0,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,0,14,1,9,12,14,1,15,13,14,1,9,8,15,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,1,12,7,10,3,1,10,3,4,5,6,14,1,9,0,15,11,10,3,1,7,15,4,14,1,9,12,14,1,15,13,14,1,1,6,2,7,2,10,6,8,15,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,11,7,15,4,14,1,9,12,14,15,11,11,7,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"1\", \"14\", \"1\", \"9\", \"12\"], \"clip_start\": 338.0, \"clip_end\": 344.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q8_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,9,12,14,15,11,11,15,10,3,1,12,7,10,3,1,6,4,5,12,7,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,13,14,1,1,12,14,1,15,13,14,15,1,6,4,5,12,14,1,15,13,14,15,11,11,15,11,5,10,3,4,5,10,4,10,3,4,5,10,3,14,1,6,4,5,13,14,15,11,11,7,15,4,14,1,9,12,15,11,11,15,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,4,11,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,5,10,3,14,1,9,12,14,1,15,13,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,2,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,10,3,4,5,10,5,10,3,4,5,10,3,4,5,10,3,4,5,6,14,15,11,10,3,4,5,10,3,4,5,10,3,4,5,9,1,6,10,3,7,15,6,8,2,11,1,6,4,5,12,7,10,3,4,5,10,5,10,3,4,5,9,1,12,7,10,3,1,12,14,1,14,1,9,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,15,10,3,1,6,4,5,7,15,4,14,15,11,10,3,4,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,2,4,10,3,4,5,6,0,4,1,12,7,10,3,4,5,10,3,4,5,10,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,3,8,2,1,12,7,10,3,1,12,14,15,11,10,3,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,12,7,10,3,4,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,15,11,10,3,1,6,2,5,10,3,4,5,9,1,12,7,3,8,2,0,6,8,15,5,6,14,1,9,12,14,15,11,11,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,14,15,11,5,6,14,1,9,12,15,11,10,3,1,6,10,3,7,9,1,12,7,10,3,4,5,9,1,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,14,1,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,15,11,11,15,10,3,1,6,10,0,0,15,10,3,1,6,4,5,12,7,10,3,1,12,7,10,3,1,6,4,5,12,14,1,15,13,14,1,9,5,6,14,15,2,3,8,2,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,13,14,1,9,12,6,1,6,10,3,7,11,2,7,9,1,6,4,5,13,14,1,9,12,14,15,11,11,7,9,1,12,3,12,14,1,15,13,14,1,9,12,14,1,15,11,11,12,7,10,3,1,12,14,1,15,13,14,1,0,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,0,14,1,9,12,14,1,15,13,14,1,9,8,15,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,1,12,7,10,3,1,10,3,4,5,6,14,1,9,0,15,11,10,3,1,7,15,4,14,1,9,12,14,1,15,13,14,1,1,6,2,7,2,10,6,8,15,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,11,7,15,4,14,1,9,12,14,15,11,11,7,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"1\"], \"clip_start\": 192.0, \"clip_end\": 195.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q9_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,9,12,14,15,11,11,15,10,3,1,12,7,10,3,1,6,4,5,12,7,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,13,14,1,1,12,14,1,15,13,14,15,1,6,4,5,12,14,1,15,13,14,15,11,11,15,11,5,10,3,4,5,10,4,10,3,4,5,10,3,14,1,6,4,5,13,14,15,11,11,7,15,4,14,1,9,12,15,11,11,15,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,4,11,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,5,10,3,14,1,9,12,14,1,15,13,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,2,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,10,3,4,5,10,5,10,3,4,5,10,3,4,5,10,3,4,5,6,14,15,11,10,3,4,5,10,3,4,5,10,3,4,5,9,1,6,10,3,7,15,6,8,2,11,1,6,4,5,12,7,10,3,4,5,10,5,10,3,4,5,9,1,12,7,10,3,1,12,14,1,14,1,9,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,15,10,3,1,6,4,5,7,15,4,14,15,11,10,3,4,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,2,4,10,3,4,5,6,0,4,1,12,7,10,3,4,5,10,3,4,5,10,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,3,8,2,1,12,7,10,3,1,12,14,15,11,10,3,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,12,7,10,3,4,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,15,11,10,3,1,6,2,5,10,3,4,5,9,1,12,7,3,8,2,0,6,8,15,5,6,14,1,9,12,14,15,11,11,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,14,15,11,5,6,14,1,9,12,15,11,10,3,1,6,10,3,7,9,1,12,7,10,3,4,5,9,1,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,14,1,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,15,11,11,15,10,3,1,6,10,0,0,15,10,3,1,6,4,5,12,7,10,3,1,12,7,10,3,1,6,4,5,12,14,1,15,13,14,1,9,5,6,14,15,2,3,8,2,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,13,14,1,9,12,6,1,6,10,3,7,11,2,7,9,1,6,4,5,13,14,1,9,12,14,15,11,11,7,9,1,12,3,12,14,1,15,13,14,1,9,12,14,1,15,11,11,12,7,10,3,1,12,14,1,15,13,14,1,0,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,0,14,1,9,12,14,1,15,13,14,1,9,8,15,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,1,12,7,10,3,1,10,3,4,5,6,14,1,9,0,15,11,10,3,1,7,15,4,14,1,9,12,14,1,15,13,14,1,1,6,2,7,2,10,6,8,15,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,11,7,15,4,14,1,9,12,14,15,11,11,7,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"9\", \"1\"], \"clip_start\": 552.0, \"clip_end\": 555.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q10_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,9,12,14,15,11,11,15,10,3,1,12,7,10,3,1,6,4,5,12,7,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,13,14,1,1,12,14,1,15,13,14,15,1,6,4,5,12,14,1,15,13,14,15,11,11,15,11,5,10,3,4,5,10,4,10,3,4,5,10,3,14,1,6,4,5,13,14,15,11,11,7,15,4,14,1,9,12,15,11,11,15,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,4,11,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,5,10,3,14,1,9,12,14,1,15,13,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,2,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,10,3,4,5,10,5,10,3,4,5,10,3,4,5,10,3,4,5,6,14,15,11,10,3,4,5,10,3,4,5,10,3,4,5,9,1,6,10,3,7,15,6,8,2,11,1,6,4,5,12,7,10,3,4,5,10,5,10,3,4,5,9,1,12,7,10,3,1,12,14,1,14,1,9,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,15,10,3,1,6,4,5,7,15,4,14,15,11,10,3,4,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,2,4,10,3,4,5,6,0,4,1,12,7,10,3,4,5,10,3,4,5,10,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,3,8,2,1,12,7,10,3,1,12,14,15,11,10,3,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,12,7,10,3,4,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,15,11,10,3,1,6,2,5,10,3,4,5,9,1,12,7,3,8,2,0,6,8,15,5,6,14,1,9,12,14,15,11,11,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,14,15,11,5,6,14,1,9,12,15,11,10,3,1,6,10,3,7,9,1,12,7,10,3,4,5,9,1,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,14,1,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,15,11,11,15,10,3,1,6,10,0,0,15,10,3,1,6,4,5,12,7,10,3,1,12,7,10,3,1,6,4,5,12,14,1,15,13,14,1,9,5,6,14,15,2,3,8,2,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,13,14,1,9,12,6,1,6,10,3,7,11,2,7,9,1,6,4,5,13,14,1,9,12,14,15,11,11,7,9,1,12,3,12,14,1,15,13,14,1,9,12,14,1,15,11,11,12,7,10,3,1,12,14,1,15,13,14,1,0,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,0,14,1,9,12,14,1,15,13,14,1,9,8,15,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,1,12,7,10,3,1,10,3,4,5,6,14,1,9,0,15,11,10,3,1,7,15,4,14,1,9,12,14,1,15,13,14,1,1,6,2,7,2,10,6,8,15,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,11,7,15,4,14,1,9,12,14,15,11,11,7,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"15\", \"11\", \"10\"], \"clip_start\": 598.0, \"clip_end\": 603.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,9,12,14,15,11,11,15,10,3,1,12,7,10,3,1,6,4,5,12,7,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,13,14,1,1,12,14,1,15,13,14,15,1,6,4,5,12,14,1,15,13,14,15,11,11,15,11,5,10,3,4,5,10,4,10,3,4,5,10,3,14,1,6,4,5,13,14,15,11,11,7,15,4,14,1,9,12,15,11,11,15,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,4,11,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,5,10,3,14,1,9,12,14,1,15,13,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,2,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,10,3,4,5,10,5,10,3,4,5,10,3,4,5,10,3,4,5,6,14,15,11,10,3,4,5,10,3,4,5,10,3,4,5,9,1,6,10,3,7,15,6,8,2,11,1,6,4,5,12,7,10,3,4,5,10,5,10,3,4,5,9,1,12,7,10,3,1,12,14,1,14,1,9,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,15,10,3,1,6,4,5,7,15,4,14,15,11,10,3,4,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,2,4,10,3,4,5,6,0,4,1,12,7,10,3,4,5,10,3,4,5,10,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,3,8,2,1,12,7,10,3,1,12,14,15,11,10,3,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,12,7,10,3,4,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,15,11,10,3,1,6,2,5,10,3,4,5,9,1,12,7,3,8,2,0,6,8,15,5,6,14,1,9,12,14,15,11,11,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,14,15,11,5,6,14,1,9,12,15,11,10,3,1,6,10,3,7,9,1,12,7,10,3,4,5,9,1,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,14,1,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,15,11,11,15,10,3,1,6,10,0,0,15,10,3,1,6,4,5,12,7,10,3,1,12,7,10,3,1,6,4,5,12,14,1,15,13,14,1,9,5,6,14,15,2,3,8,2,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,13,14,1,9,12,6,1,6,10,3,7,11,2,7,9,1,6,4,5,13,14,1,9,12,14,15,11,11,7,9,1,12,3,12,14,1,15,13,14,1,9,12,14,1,15,11,11,12,7,10,3,1,12,14,1,15,13,14,1,0,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,0,14,1,9,12,14,1,15,13,14,1,9,8,15,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,1,12,7,10,3,1,10,3,4,5,6,14,1,9,0,15,11,10,3,1,7,15,4,14,1,9,12,14,1,15,13,14,1,1,6,2,7,2,10,6,8,15,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,11,7,15,4,14,1,9,12,14,15,11,11,7,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"1\", \"9\", \"12\", \"14\"], \"clip_start\": 389.0, \"clip_end\": 394.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q12_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,9,12,14,15,11,11,15,10,3,1,12,7,10,3,1,6,4,5,12,7,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,13,14,1,1,12,14,1,15,13,14,15,1,6,4,5,12,14,1,15,13,14,15,11,11,15,11,5,10,3,4,5,10,4,10,3,4,5,10,3,14,1,6,4,5,13,14,15,11,11,7,15,4,14,1,9,12,15,11,11,15,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,4,11,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,5,10,3,14,1,9,12,14,1,15,13,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,2,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,10,3,4,5,10,5,10,3,4,5,10,3,4,5,10,3,4,5,6,14,15,11,10,3,4,5,10,3,4,5,10,3,4,5,9,1,6,10,3,7,15,6,8,2,11,1,6,4,5,12,7,10,3,4,5,10,5,10,3,4,5,9,1,12,7,10,3,1,12,14,1,14,1,9,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,15,10,3,1,6,4,5,7,15,4,14,15,11,10,3,4,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,2,4,10,3,4,5,6,0,4,1,12,7,10,3,4,5,10,3,4,5,10,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,3,8,2,1,12,7,10,3,1,12,14,15,11,10,3,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,12,7,10,3,4,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,15,11,10,3,1,6,2,5,10,3,4,5,9,1,12,7,3,8,2,0,6,8,15,5,6,14,1,9,12,14,15,11,11,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,14,15,11,5,6,14,1,9,12,15,11,10,3,1,6,10,3,7,9,1,12,7,10,3,4,5,9,1,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,14,1,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,15,11,11,15,10,3,1,6,10,0,0,15,10,3,1,6,4,5,12,7,10,3,1,12,7,10,3,1,6,4,5,12,14,1,15,13,14,1,9,5,6,14,15,2,3,8,2,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,13,14,1,9,12,6,1,6,10,3,7,11,2,7,9,1,6,4,5,13,14,1,9,12,14,15,11,11,7,9,1,12,3,12,14,1,15,13,14,1,9,12,14,1,15,11,11,12,7,10,3,1,12,14,1,15,13,14,1,0,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,0,14,1,9,12,14,1,15,13,14,1,9,8,15,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,1,12,7,10,3,1,10,3,4,5,6,14,1,9,0,15,11,10,3,1,7,15,4,14,1,9,12,14,1,15,13,14,1,1,6,2,7,2,10,6,8,15,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,11,7,15,4,14,1,9,12,14,15,11,11,7,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"3\", \"4\"], \"clip_start\": 612.0, \"clip_end\": 616.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q13_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,9,12,14,15,11,11,15,10,3,1,12,7,10,3,1,6,4,5,12,7,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,13,14,1,1,12,14,1,15,13,14,15,1,6,4,5,12,14,1,15,13,14,15,11,11,15,11,5,10,3,4,5,10,4,10,3,4,5,10,3,14,1,6,4,5,13,14,15,11,11,7,15,4,14,1,9,12,15,11,11,15,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,4,11,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,5,10,3,14,1,9,12,14,1,15,13,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,2,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,10,3,4,5,10,5,10,3,4,5,10,3,4,5,10,3,4,5,6,14,15,11,10,3,4,5,10,3,4,5,10,3,4,5,9,1,6,10,3,7,15,6,8,2,11,1,6,4,5,12,7,10,3,4,5,10,5,10,3,4,5,9,1,12,7,10,3,1,12,14,1,14,1,9,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,15,10,3,1,6,4,5,7,15,4,14,15,11,10,3,4,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,2,4,10,3,4,5,6,0,4,1,12,7,10,3,4,5,10,3,4,5,10,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,3,8,2,1,12,7,10,3,1,12,14,15,11,10,3,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,12,7,10,3,4,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,15,11,10,3,1,6,2,5,10,3,4,5,9,1,12,7,3,8,2,0,6,8,15,5,6,14,1,9,12,14,15,11,11,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,14,15,11,5,6,14,1,9,12,15,11,10,3,1,6,10,3,7,9,1,12,7,10,3,4,5,9,1,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,14,1,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,15,11,11,15,10,3,1,6,10,0,0,15,10,3,1,6,4,5,12,7,10,3,1,12,7,10,3,1,6,4,5,12,14,1,15,13,14,1,9,5,6,14,15,2,3,8,2,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,13,14,1,9,12,6,1,6,10,3,7,11,2,7,9,1,6,4,5,13,14,1,9,12,14,15,11,11,7,9,1,12,3,12,14,1,15,13,14,1,9,12,14,1,15,11,11,12,7,10,3,1,12,14,1,15,13,14,1,0,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,0,14,1,9,12,14,1,15,13,14,1,9,8,15,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,1,12,7,10,3,1,10,3,4,5,6,14,1,9,0,15,11,10,3,1,7,15,4,14,1,9,12,14,1,15,13,14,1,1,6,2,7,2,10,6,8,15,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,11,7,15,4,14,1,9,12,14,15,11,11,7,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"7\", \"2\"], \"clip_start\": 973.0, \"clip_end\": 977.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q14_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,9,12,14,15,11,11,15,10,3,1,12,7,10,3,1,6,4,5,12,7,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,13,14,1,1,12,14,1,15,13,14,15,1,6,4,5,12,14,1,15,13,14,15,11,11,15,11,5,10,3,4,5,10,4,10,3,4,5,10,3,14,1,6,4,5,13,14,15,11,11,7,15,4,14,1,9,12,15,11,11,15,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,4,11,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,5,10,3,14,1,9,12,14,1,15,13,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,2,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,10,3,4,5,10,5,10,3,4,5,10,3,4,5,10,3,4,5,6,14,15,11,10,3,4,5,10,3,4,5,10,3,4,5,9,1,6,10,3,7,15,6,8,2,11,1,6,4,5,12,7,10,3,4,5,10,5,10,3,4,5,9,1,12,7,10,3,1,12,14,1,14,1,9,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,15,10,3,1,6,4,5,7,15,4,14,15,11,10,3,4,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,2,4,10,3,4,5,6,0,4,1,12,7,10,3,4,5,10,3,4,5,10,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,3,8,2,1,12,7,10,3,1,12,14,15,11,10,3,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,12,7,10,3,4,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,15,11,10,3,1,6,2,5,10,3,4,5,9,1,12,7,3,8,2,0,6,8,15,5,6,14,1,9,12,14,15,11,11,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,14,15,11,5,6,14,1,9,12,15,11,10,3,1,6,10,3,7,9,1,12,7,10,3,4,5,9,1,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,14,1,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,15,11,11,15,10,3,1,6,10,0,0,15,10,3,1,6,4,5,12,7,10,3,1,12,7,10,3,1,6,4,5,12,14,1,15,13,14,1,9,5,6,14,15,2,3,8,2,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,13,14,1,9,12,6,1,6,10,3,7,11,2,7,9,1,6,4,5,13,14,1,9,12,14,15,11,11,7,9,1,12,3,12,14,1,15,13,14,1,9,12,14,1,15,11,11,12,7,10,3,1,12,14,1,15,13,14,1,0,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,0,14,1,9,12,14,1,15,13,14,1,9,8,15,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,1,12,7,10,3,1,10,3,4,5,6,14,1,9,0,15,11,10,3,1,7,15,4,14,1,9,12,14,1,15,13,14,1,1,6,2,7,2,10,6,8,15,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,11,7,15,4,14,1,9,12,14,15,11,11,7,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"11\", \"15\"], \"clip_start\": 571.0, \"clip_end\": 575.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q15_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,1,9,12,14,15,11,11,15,10,3,1,12,7,10,3,1,6,4,5,12,7,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,13,14,1,1,12,14,1,15,13,14,15,1,6,4,5,12,14,1,15,13,14,15,11,11,15,11,5,10,3,4,5,10,4,10,3,4,5,10,3,14,1,6,4,5,13,14,15,11,11,7,15,4,14,1,9,12,15,11,11,15,10,3,1,6,10,3,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,4,11,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,5,10,3,14,1,9,12,14,1,15,13,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,2,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,10,3,4,5,10,5,10,3,4,5,10,3,4,5,10,3,4,5,6,14,15,11,10,3,4,5,10,3,4,5,10,3,4,5,9,1,6,10,3,7,15,6,8,2,11,1,6,4,5,12,7,10,3,4,5,10,5,10,3,4,5,9,1,12,7,10,3,1,12,14,1,14,1,9,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,15,10,3,1,6,4,5,7,15,4,14,15,11,10,3,4,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,2,4,10,3,4,5,6,0,4,1,12,7,10,3,4,5,10,3,4,5,10,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,3,8,2,1,12,7,10,3,1,12,14,15,11,10,3,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,12,7,10,3,4,5,9,1,6,10,3,7,15,4,13,14,1,9,12,14,1,15,13,14,1,9,15,11,10,3,1,6,2,5,10,3,4,5,9,1,12,7,3,8,2,0,6,8,15,5,6,14,1,9,12,14,15,11,11,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,14,15,11,5,6,14,1,9,12,15,11,10,3,1,6,10,3,7,9,1,12,7,10,3,4,5,9,1,12,15,11,11,7,15,4,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,14,1,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,15,11,11,15,10,3,1,6,10,0,0,15,10,3,1,6,4,5,12,7,10,3,1,12,7,10,3,1,6,4,5,12,14,1,15,13,14,1,9,5,6,14,15,2,3,8,2,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,15,11,11,7,15,4,13,14,1,9,12,6,1,6,10,3,7,11,2,7,9,1,6,4,5,13,14,1,9,12,14,15,11,11,7,9,1,12,3,12,14,1,15,13,14,1,9,12,14,1,15,11,11,12,7,10,3,1,12,14,1,15,13,14,1,0,11,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,0,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,4,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,1,6,4,5,13,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,11,0,14,1,9,12,14,1,15,13,14,1,9,8,15,5,10,3,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,10,3,1,12,7,10,3,1,10,3,4,5,6,14,1,9,0,15,11,10,3,1,7,15,4,14,1,9,12,14,1,15,13,14,1,1,6,2,7,2,10,6,8,15,5,10,3,4,5,6,14,1,9,12,14,1,15,13,14,1,9,12,14,1,15,13,14,1,9,12,14,15,11,11,7,15,4,14,1,9,12,14,15,11,11,7,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"14\", \"4\"], \"clip_start\": 889.0, \"clip_end\": 893.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,2,7,14,5,9,1,9,8,14,1,9,8,14,1,9,14,4,10,11,9,14,11,8,0,8,0,7,9,8,0,8,0,7,9,8,0,7,9,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,12,1,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,12,1,6,2,12,10,11,8,0,8,0,7,9,8,2,2,1,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,12,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,13,10,11,2,14,5,11,8,8,4,3,6,2,12,10,11,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,15,13,10,11,2,14,5,11,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,0,9,8,2,2,4,2,6,2,1,9,3,9,8,2,2,4,3,5,0,0,9,8,2,2,4,3,5,4,2,6,2,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,3,4,3,5,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,10,12,11,4,2,6,2,1,9,14,4,10,11,9,14,4,10,2,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,14,5,11,9,14,4,10,11,9,14,4,10,11,9,14,1,9,14,4,10,11,9,14,4,10,11,9,10,11,2,4,3,5,0,0,9,14,4,10,11,9,14,4,0,7,10,11,2,14,5,11,4,3,13,10,11,2,1,9,8,14,1,9,14,4,10,11,9,14,14,5,10,4,8,6,2,7,4,3,5,0,0,7,4,2,6,0,7,10,11,2,6,2,1,9,8,14,10,11,2,14,5,11,8,8,4,2,6,2,1,7,12,11,8,6,2,7,14,5,9,1,6,0,7,10,11,2,6,2,1,9,4,3,5,0,0,7,10,11,11,8,0,8,0,8,0,7,9,8,0,7,9,8,2,13,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,4,3,5,4,3,5,0,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,12,11,4,3,5,0,0,7,10,11,2,4,2,6,2,1,9,8,14,1,6,2,7,14,8,0,7,9,8,2,2,4,3,5,4,0,9,8,0,7,9,8,2,2,1,6,2,12,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,4,3,5,4,2,6,2,1,9,7,12,1,6,2,7,2,3,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,8,0,7,8,9,14,4,10,11,9,14,5,9,1,6,2,7,14,5,9,1,13,10,11,2,14,5,11,2,3,6,2,7,14,5,10,4,8,0,7,9,9,8,2,2,4,2,6,2,1,9,14,4,10,11,9,14,9,8,2,2,1,6,2,7,4,2,6,2,1,9,8,14,1,9,14,4,10,11,2,6,2,1,9,8,8,0,7,9,8,2,2,1,3,14,5,0,0,7,4,15,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,4,3,5,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,10,11,9,14,4,10,11,9,14,4,10,11,11,8,0,8,0,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"2\", \"4\", \"3\", \"5\"], \"clip_start\": 715.0, \"clip_end\": 720.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,2,7,14,5,9,1,9,8,14,1,9,8,14,1,9,14,4,10,11,9,14,11,8,0,8,0,7,9,8,0,8,0,7,9,8,0,7,9,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,12,1,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,12,1,6,2,12,10,11,8,0,8,0,7,9,8,2,2,1,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,12,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,13,10,11,2,14,5,11,8,8,4,3,6,2,12,10,11,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,15,13,10,11,2,14,5,11,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,0,9,8,2,2,4,2,6,2,1,9,3,9,8,2,2,4,3,5,0,0,9,8,2,2,4,3,5,4,2,6,2,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,3,4,3,5,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,10,12,11,4,2,6,2,1,9,14,4,10,11,9,14,4,10,2,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,14,5,11,9,14,4,10,11,9,14,4,10,11,9,14,1,9,14,4,10,11,9,14,4,10,11,9,10,11,2,4,3,5,0,0,9,14,4,10,11,9,14,4,0,7,10,11,2,14,5,11,4,3,13,10,11,2,1,9,8,14,1,9,14,4,10,11,9,14,14,5,10,4,8,6,2,7,4,3,5,0,0,7,4,2,6,0,7,10,11,2,6,2,1,9,8,14,10,11,2,14,5,11,8,8,4,2,6,2,1,7,12,11,8,6,2,7,14,5,9,1,6,0,7,10,11,2,6,2,1,9,4,3,5,0,0,7,10,11,11,8,0,8,0,8,0,7,9,8,0,7,9,8,2,13,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,4,3,5,4,3,5,0,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,12,11,4,3,5,0,0,7,10,11,2,4,2,6,2,1,9,8,14,1,6,2,7,14,8,0,7,9,8,2,2,4,3,5,4,0,9,8,0,7,9,8,2,2,1,6,2,12,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,4,3,5,4,2,6,2,1,9,7,12,1,6,2,7,2,3,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,8,0,7,8,9,14,4,10,11,9,14,5,9,1,6,2,7,14,5,9,1,13,10,11,2,14,5,11,2,3,6,2,7,14,5,10,4,8,0,7,9,9,8,2,2,4,2,6,2,1,9,14,4,10,11,9,14,9,8,2,2,1,6,2,7,4,2,6,2,1,9,8,14,1,9,14,4,10,11,2,6,2,1,9,8,8,0,7,9,8,2,2,1,3,14,5,0,0,7,4,15,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,4,3,5,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,10,11,9,14,4,10,11,9,14,4,10,11,11,8,0,8,0,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"8\", \"0\", \"7\"], \"clip_start\": 605.0, \"clip_end\": 610.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,2,7,14,5,9,1,9,8,14,1,9,8,14,1,9,14,4,10,11,9,14,11,8,0,8,0,7,9,8,0,8,0,7,9,8,0,7,9,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,12,1,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,12,1,6,2,12,10,11,8,0,8,0,7,9,8,2,2,1,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,12,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,13,10,11,2,14,5,11,8,8,4,3,6,2,12,10,11,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,15,13,10,11,2,14,5,11,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,0,9,8,2,2,4,2,6,2,1,9,3,9,8,2,2,4,3,5,0,0,9,8,2,2,4,3,5,4,2,6,2,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,3,4,3,5,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,10,12,11,4,2,6,2,1,9,14,4,10,11,9,14,4,10,2,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,14,5,11,9,14,4,10,11,9,14,4,10,11,9,14,1,9,14,4,10,11,9,14,4,10,11,9,10,11,2,4,3,5,0,0,9,14,4,10,11,9,14,4,0,7,10,11,2,14,5,11,4,3,13,10,11,2,1,9,8,14,1,9,14,4,10,11,9,14,14,5,10,4,8,6,2,7,4,3,5,0,0,7,4,2,6,0,7,10,11,2,6,2,1,9,8,14,10,11,2,14,5,11,8,8,4,2,6,2,1,7,12,11,8,6,2,7,14,5,9,1,6,0,7,10,11,2,6,2,1,9,4,3,5,0,0,7,10,11,11,8,0,8,0,8,0,7,9,8,0,7,9,8,2,13,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,4,3,5,4,3,5,0,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,12,11,4,3,5,0,0,7,10,11,2,4,2,6,2,1,9,8,14,1,6,2,7,14,8,0,7,9,8,2,2,4,3,5,4,0,9,8,0,7,9,8,2,2,1,6,2,12,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,4,3,5,4,2,6,2,1,9,7,12,1,6,2,7,2,3,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,8,0,7,8,9,14,4,10,11,9,14,5,9,1,6,2,7,14,5,9,1,13,10,11,2,14,5,11,2,3,6,2,7,14,5,10,4,8,0,7,9,9,8,2,2,4,2,6,2,1,9,14,4,10,11,9,14,9,8,2,2,1,6,2,7,4,2,6,2,1,9,8,14,1,9,14,4,10,11,2,6,2,1,9,8,8,0,7,9,8,2,2,1,3,14,5,0,0,7,4,15,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,4,3,5,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,10,11,9,14,4,10,11,9,14,4,10,11,11,8,0,8,0,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"14\", \"4\", \"10\", \"11\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,2,7,14,5,9,1,9,8,14,1,9,8,14,1,9,14,4,10,11,9,14,11,8,0,8,0,7,9,8,0,8,0,7,9,8,0,7,9,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,12,1,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,12,1,6,2,12,10,11,8,0,8,0,7,9,8,2,2,1,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,12,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,13,10,11,2,14,5,11,8,8,4,3,6,2,12,10,11,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,15,13,10,11,2,14,5,11,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,0,9,8,2,2,4,2,6,2,1,9,3,9,8,2,2,4,3,5,0,0,9,8,2,2,4,3,5,4,2,6,2,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,3,4,3,5,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,10,12,11,4,2,6,2,1,9,14,4,10,11,9,14,4,10,2,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,14,5,11,9,14,4,10,11,9,14,4,10,11,9,14,1,9,14,4,10,11,9,14,4,10,11,9,10,11,2,4,3,5,0,0,9,14,4,10,11,9,14,4,0,7,10,11,2,14,5,11,4,3,13,10,11,2,1,9,8,14,1,9,14,4,10,11,9,14,14,5,10,4,8,6,2,7,4,3,5,0,0,7,4,2,6,0,7,10,11,2,6,2,1,9,8,14,10,11,2,14,5,11,8,8,4,2,6,2,1,7,12,11,8,6,2,7,14,5,9,1,6,0,7,10,11,2,6,2,1,9,4,3,5,0,0,7,10,11,11,8,0,8,0,8,0,7,9,8,0,7,9,8,2,13,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,4,3,5,4,3,5,0,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,12,11,4,3,5,0,0,7,10,11,2,4,2,6,2,1,9,8,14,1,6,2,7,14,8,0,7,9,8,2,2,4,3,5,4,0,9,8,0,7,9,8,2,2,1,6,2,12,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,4,3,5,4,2,6,2,1,9,7,12,1,6,2,7,2,3,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,8,0,7,8,9,14,4,10,11,9,14,5,9,1,6,2,7,14,5,9,1,13,10,11,2,14,5,11,2,3,6,2,7,14,5,10,4,8,0,7,9,9,8,2,2,4,2,6,2,1,9,14,4,10,11,9,14,9,8,2,2,1,6,2,7,4,2,6,2,1,9,8,14,1,9,14,4,10,11,2,6,2,1,9,8,8,0,7,9,8,2,2,1,3,14,5,0,0,7,4,15,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,4,3,5,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,10,11,9,14,4,10,11,9,14,4,10,11,11,8,0,8,0,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"4\"], \"clip_start\": 833.0, \"clip_end\": 836.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,2,7,14,5,9,1,9,8,14,1,9,8,14,1,9,14,4,10,11,9,14,11,8,0,8,0,7,9,8,0,8,0,7,9,8,0,7,9,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,12,1,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,12,1,6,2,12,10,11,8,0,8,0,7,9,8,2,2,1,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,12,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,13,10,11,2,14,5,11,8,8,4,3,6,2,12,10,11,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,15,13,10,11,2,14,5,11,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,0,9,8,2,2,4,2,6,2,1,9,3,9,8,2,2,4,3,5,0,0,9,8,2,2,4,3,5,4,2,6,2,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,3,4,3,5,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,10,12,11,4,2,6,2,1,9,14,4,10,11,9,14,4,10,2,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,14,5,11,9,14,4,10,11,9,14,4,10,11,9,14,1,9,14,4,10,11,9,14,4,10,11,9,10,11,2,4,3,5,0,0,9,14,4,10,11,9,14,4,0,7,10,11,2,14,5,11,4,3,13,10,11,2,1,9,8,14,1,9,14,4,10,11,9,14,14,5,10,4,8,6,2,7,4,3,5,0,0,7,4,2,6,0,7,10,11,2,6,2,1,9,8,14,10,11,2,14,5,11,8,8,4,2,6,2,1,7,12,11,8,6,2,7,14,5,9,1,6,0,7,10,11,2,6,2,1,9,4,3,5,0,0,7,10,11,11,8,0,8,0,8,0,7,9,8,0,7,9,8,2,13,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,4,3,5,4,3,5,0,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,12,11,4,3,5,0,0,7,10,11,2,4,2,6,2,1,9,8,14,1,6,2,7,14,8,0,7,9,8,2,2,4,3,5,4,0,9,8,0,7,9,8,2,2,1,6,2,12,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,4,3,5,4,2,6,2,1,9,7,12,1,6,2,7,2,3,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,8,0,7,8,9,14,4,10,11,9,14,5,9,1,6,2,7,14,5,9,1,13,10,11,2,14,5,11,2,3,6,2,7,14,5,10,4,8,0,7,9,9,8,2,2,4,2,6,2,1,9,14,4,10,11,9,14,9,8,2,2,1,6,2,7,4,2,6,2,1,9,8,14,1,9,14,4,10,11,2,6,2,1,9,8,8,0,7,9,8,2,2,1,3,14,5,0,0,7,4,15,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,4,3,5,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,10,11,9,14,4,10,11,9,14,4,10,11,11,8,0,8,0,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\", \"1\"], \"clip_start\": 1017.0, \"clip_end\": 1021.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q5_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,2,7,14,5,9,1,9,8,14,1,9,8,14,1,9,14,4,10,11,9,14,11,8,0,8,0,7,9,8,0,8,0,7,9,8,0,7,9,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,12,1,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,12,1,6,2,12,10,11,8,0,8,0,7,9,8,2,2,1,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,12,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,13,10,11,2,14,5,11,8,8,4,3,6,2,12,10,11,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,15,13,10,11,2,14,5,11,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,0,9,8,2,2,4,2,6,2,1,9,3,9,8,2,2,4,3,5,0,0,9,8,2,2,4,3,5,4,2,6,2,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,3,4,3,5,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,10,12,11,4,2,6,2,1,9,14,4,10,11,9,14,4,10,2,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,14,5,11,9,14,4,10,11,9,14,4,10,11,9,14,1,9,14,4,10,11,9,14,4,10,11,9,10,11,2,4,3,5,0,0,9,14,4,10,11,9,14,4,0,7,10,11,2,14,5,11,4,3,13,10,11,2,1,9,8,14,1,9,14,4,10,11,9,14,14,5,10,4,8,6,2,7,4,3,5,0,0,7,4,2,6,0,7,10,11,2,6,2,1,9,8,14,10,11,2,14,5,11,8,8,4,2,6,2,1,7,12,11,8,6,2,7,14,5,9,1,6,0,7,10,11,2,6,2,1,9,4,3,5,0,0,7,10,11,11,8,0,8,0,8,0,7,9,8,0,7,9,8,2,13,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,4,3,5,4,3,5,0,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,12,11,4,3,5,0,0,7,10,11,2,4,2,6,2,1,9,8,14,1,6,2,7,14,8,0,7,9,8,2,2,4,3,5,4,0,9,8,0,7,9,8,2,2,1,6,2,12,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,4,3,5,4,2,6,2,1,9,7,12,1,6,2,7,2,3,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,8,0,7,8,9,14,4,10,11,9,14,5,9,1,6,2,7,14,5,9,1,13,10,11,2,14,5,11,2,3,6,2,7,14,5,10,4,8,0,7,9,9,8,2,2,4,2,6,2,1,9,14,4,10,11,9,14,9,8,2,2,1,6,2,7,4,2,6,2,1,9,8,14,1,9,14,4,10,11,2,6,2,1,9,8,8,0,7,9,8,2,2,1,3,14,5,0,0,7,4,15,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,4,3,5,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,10,11,9,14,4,10,11,9,14,4,10,11,11,8,0,8,0,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"5\", \"7\", \"3\", \"13\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q6_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,2,7,14,5,9,1,9,8,14,1,9,8,14,1,9,14,4,10,11,9,14,11,8,0,8,0,7,9,8,0,8,0,7,9,8,0,7,9,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,12,1,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,12,1,6,2,12,10,11,8,0,8,0,7,9,8,2,2,1,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,12,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,13,10,11,2,14,5,11,8,8,4,3,6,2,12,10,11,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,15,13,10,11,2,14,5,11,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,0,9,8,2,2,4,2,6,2,1,9,3,9,8,2,2,4,3,5,0,0,9,8,2,2,4,3,5,4,2,6,2,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,3,4,3,5,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,10,12,11,4,2,6,2,1,9,14,4,10,11,9,14,4,10,2,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,14,5,11,9,14,4,10,11,9,14,4,10,11,9,14,1,9,14,4,10,11,9,14,4,10,11,9,10,11,2,4,3,5,0,0,9,14,4,10,11,9,14,4,0,7,10,11,2,14,5,11,4,3,13,10,11,2,1,9,8,14,1,9,14,4,10,11,9,14,14,5,10,4,8,6,2,7,4,3,5,0,0,7,4,2,6,0,7,10,11,2,6,2,1,9,8,14,10,11,2,14,5,11,8,8,4,2,6,2,1,7,12,11,8,6,2,7,14,5,9,1,6,0,7,10,11,2,6,2,1,9,4,3,5,0,0,7,10,11,11,8,0,8,0,8,0,7,9,8,0,7,9,8,2,13,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,4,3,5,4,3,5,0,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,12,11,4,3,5,0,0,7,10,11,2,4,2,6,2,1,9,8,14,1,6,2,7,14,8,0,7,9,8,2,2,4,3,5,4,0,9,8,0,7,9,8,2,2,1,6,2,12,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,4,3,5,4,2,6,2,1,9,7,12,1,6,2,7,2,3,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,8,0,7,8,9,14,4,10,11,9,14,5,9,1,6,2,7,14,5,9,1,13,10,11,2,14,5,11,2,3,6,2,7,14,5,10,4,8,0,7,9,9,8,2,2,4,2,6,2,1,9,14,4,10,11,9,14,9,8,2,2,1,6,2,7,4,2,6,2,1,9,8,14,1,9,14,4,10,11,2,6,2,1,9,8,8,0,7,9,8,2,2,1,3,14,5,0,0,7,4,15,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,4,3,5,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,10,11,9,14,4,10,11,9,14,4,10,11,11,8,0,8,0,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"10\", \"11\", \"9\", \"3\"], \"clip_start\": 954.0, \"clip_end\": 959.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,2,7,14,5,9,1,9,8,14,1,9,8,14,1,9,14,4,10,11,9,14,11,8,0,8,0,7,9,8,0,8,0,7,9,8,0,7,9,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,12,1,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,12,1,6,2,12,10,11,8,0,8,0,7,9,8,2,2,1,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,12,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,13,10,11,2,14,5,11,8,8,4,3,6,2,12,10,11,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,15,13,10,11,2,14,5,11,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,0,9,8,2,2,4,2,6,2,1,9,3,9,8,2,2,4,3,5,0,0,9,8,2,2,4,3,5,4,2,6,2,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,3,4,3,5,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,10,12,11,4,2,6,2,1,9,14,4,10,11,9,14,4,10,2,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,14,5,11,9,14,4,10,11,9,14,4,10,11,9,14,1,9,14,4,10,11,9,14,4,10,11,9,10,11,2,4,3,5,0,0,9,14,4,10,11,9,14,4,0,7,10,11,2,14,5,11,4,3,13,10,11,2,1,9,8,14,1,9,14,4,10,11,9,14,14,5,10,4,8,6,2,7,4,3,5,0,0,7,4,2,6,0,7,10,11,2,6,2,1,9,8,14,10,11,2,14,5,11,8,8,4,2,6,2,1,7,12,11,8,6,2,7,14,5,9,1,6,0,7,10,11,2,6,2,1,9,4,3,5,0,0,7,10,11,11,8,0,8,0,8,0,7,9,8,0,7,9,8,2,13,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,4,3,5,4,3,5,0,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,12,11,4,3,5,0,0,7,10,11,2,4,2,6,2,1,9,8,14,1,6,2,7,14,8,0,7,9,8,2,2,4,3,5,4,0,9,8,0,7,9,8,2,2,1,6,2,12,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,4,3,5,4,2,6,2,1,9,7,12,1,6,2,7,2,3,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,8,0,7,8,9,14,4,10,11,9,14,5,9,1,6,2,7,14,5,9,1,13,10,11,2,14,5,11,2,3,6,2,7,14,5,10,4,8,0,7,9,9,8,2,2,4,2,6,2,1,9,14,4,10,11,9,14,9,8,2,2,1,6,2,7,4,2,6,2,1,9,8,14,1,9,14,4,10,11,2,6,2,1,9,8,8,0,7,9,8,2,2,1,3,14,5,0,0,7,4,15,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,4,3,5,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,10,11,9,14,4,10,11,9,14,4,10,11,11,8,0,8,0,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"10\", \"11\", \"9\", \"14\", \"4\"], \"clip_start\": 418.0, \"clip_end\": 424.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q8_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,2,7,14,5,9,1,9,8,14,1,9,8,14,1,9,14,4,10,11,9,14,11,8,0,8,0,7,9,8,0,8,0,7,9,8,0,7,9,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,12,1,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,12,1,6,2,12,10,11,8,0,8,0,7,9,8,2,2,1,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,12,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,13,10,11,2,14,5,11,8,8,4,3,6,2,12,10,11,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,15,13,10,11,2,14,5,11,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,0,9,8,2,2,4,2,6,2,1,9,3,9,8,2,2,4,3,5,0,0,9,8,2,2,4,3,5,4,2,6,2,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,3,4,3,5,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,10,12,11,4,2,6,2,1,9,14,4,10,11,9,14,4,10,2,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,14,5,11,9,14,4,10,11,9,14,4,10,11,9,14,1,9,14,4,10,11,9,14,4,10,11,9,10,11,2,4,3,5,0,0,9,14,4,10,11,9,14,4,0,7,10,11,2,14,5,11,4,3,13,10,11,2,1,9,8,14,1,9,14,4,10,11,9,14,14,5,10,4,8,6,2,7,4,3,5,0,0,7,4,2,6,0,7,10,11,2,6,2,1,9,8,14,10,11,2,14,5,11,8,8,4,2,6,2,1,7,12,11,8,6,2,7,14,5,9,1,6,0,7,10,11,2,6,2,1,9,4,3,5,0,0,7,10,11,11,8,0,8,0,8,0,7,9,8,0,7,9,8,2,13,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,4,3,5,4,3,5,0,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,12,11,4,3,5,0,0,7,10,11,2,4,2,6,2,1,9,8,14,1,6,2,7,14,8,0,7,9,8,2,2,4,3,5,4,0,9,8,0,7,9,8,2,2,1,6,2,12,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,4,3,5,4,2,6,2,1,9,7,12,1,6,2,7,2,3,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,8,0,7,8,9,14,4,10,11,9,14,5,9,1,6,2,7,14,5,9,1,13,10,11,2,14,5,11,2,3,6,2,7,14,5,10,4,8,0,7,9,9,8,2,2,4,2,6,2,1,9,14,4,10,11,9,14,9,8,2,2,1,6,2,7,4,2,6,2,1,9,8,14,1,9,14,4,10,11,2,6,2,1,9,8,8,0,7,9,8,2,2,1,3,14,5,0,0,7,4,15,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,4,3,5,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,10,11,9,14,4,10,11,9,14,4,10,11,11,8,0,8,0,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"10\"], \"clip_start\": 891.0, \"clip_end\": 894.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,2,7,14,5,9,1,9,8,14,1,9,8,14,1,9,14,4,10,11,9,14,11,8,0,8,0,7,9,8,0,8,0,7,9,8,0,7,9,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,12,1,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,12,1,6,2,12,10,11,8,0,8,0,7,9,8,2,2,1,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,12,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,13,10,11,2,14,5,11,8,8,4,3,6,2,12,10,11,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,15,13,10,11,2,14,5,11,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,0,9,8,2,2,4,2,6,2,1,9,3,9,8,2,2,4,3,5,0,0,9,8,2,2,4,3,5,4,2,6,2,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,3,4,3,5,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,10,12,11,4,2,6,2,1,9,14,4,10,11,9,14,4,10,2,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,14,5,11,9,14,4,10,11,9,14,4,10,11,9,14,1,9,14,4,10,11,9,14,4,10,11,9,10,11,2,4,3,5,0,0,9,14,4,10,11,9,14,4,0,7,10,11,2,14,5,11,4,3,13,10,11,2,1,9,8,14,1,9,14,4,10,11,9,14,14,5,10,4,8,6,2,7,4,3,5,0,0,7,4,2,6,0,7,10,11,2,6,2,1,9,8,14,10,11,2,14,5,11,8,8,4,2,6,2,1,7,12,11,8,6,2,7,14,5,9,1,6,0,7,10,11,2,6,2,1,9,4,3,5,0,0,7,10,11,11,8,0,8,0,8,0,7,9,8,0,7,9,8,2,13,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,4,3,5,4,3,5,0,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,12,11,4,3,5,0,0,7,10,11,2,4,2,6,2,1,9,8,14,1,6,2,7,14,8,0,7,9,8,2,2,4,3,5,4,0,9,8,0,7,9,8,2,2,1,6,2,12,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,4,3,5,4,2,6,2,1,9,7,12,1,6,2,7,2,3,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,8,0,7,8,9,14,4,10,11,9,14,5,9,1,6,2,7,14,5,9,1,13,10,11,2,14,5,11,2,3,6,2,7,14,5,10,4,8,0,7,9,9,8,2,2,4,2,6,2,1,9,14,4,10,11,9,14,9,8,2,2,1,6,2,7,4,2,6,2,1,9,8,14,1,9,14,4,10,11,2,6,2,1,9,8,8,0,7,9,8,2,2,1,3,14,5,0,0,7,4,15,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,4,3,5,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,10,11,9,14,4,10,11,9,14,4,10,11,11,8,0,8,0,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"4\", \"10\", \"11\"], \"clip_start\": 281.0, \"clip_end\": 286.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q10_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,2,7,14,5,9,1,9,8,14,1,9,8,14,1,9,14,4,10,11,9,14,11,8,0,8,0,7,9,8,0,8,0,7,9,8,0,7,9,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,12,1,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,12,1,6,2,12,10,11,8,0,8,0,7,9,8,2,2,1,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,12,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,13,10,11,2,14,5,11,8,8,4,3,6,2,12,10,11,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,15,13,10,11,2,14,5,11,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,0,9,8,2,2,4,2,6,2,1,9,3,9,8,2,2,4,3,5,0,0,9,8,2,2,4,3,5,4,2,6,2,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,3,4,3,5,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,10,12,11,4,2,6,2,1,9,14,4,10,11,9,14,4,10,2,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,14,5,11,9,14,4,10,11,9,14,4,10,11,9,14,1,9,14,4,10,11,9,14,4,10,11,9,10,11,2,4,3,5,0,0,9,14,4,10,11,9,14,4,0,7,10,11,2,14,5,11,4,3,13,10,11,2,1,9,8,14,1,9,14,4,10,11,9,14,14,5,10,4,8,6,2,7,4,3,5,0,0,7,4,2,6,0,7,10,11,2,6,2,1,9,8,14,10,11,2,14,5,11,8,8,4,2,6,2,1,7,12,11,8,6,2,7,14,5,9,1,6,0,7,10,11,2,6,2,1,9,4,3,5,0,0,7,10,11,11,8,0,8,0,8,0,7,9,8,0,7,9,8,2,13,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,4,3,5,4,3,5,0,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,12,11,4,3,5,0,0,7,10,11,2,4,2,6,2,1,9,8,14,1,6,2,7,14,8,0,7,9,8,2,2,4,3,5,4,0,9,8,0,7,9,8,2,2,1,6,2,12,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,4,3,5,4,2,6,2,1,9,7,12,1,6,2,7,2,3,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,8,0,7,8,9,14,4,10,11,9,14,5,9,1,6,2,7,14,5,9,1,13,10,11,2,14,5,11,2,3,6,2,7,14,5,10,4,8,0,7,9,9,8,2,2,4,2,6,2,1,9,14,4,10,11,9,14,9,8,2,2,1,6,2,7,4,2,6,2,1,9,8,14,1,9,14,4,10,11,2,6,2,1,9,8,8,0,7,9,8,2,2,1,3,14,5,0,0,7,4,15,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,4,3,5,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,10,11,9,14,4,10,11,9,14,4,10,11,11,8,0,8,0,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"7\", \"4\", \"3\"], \"clip_start\": 443.0, \"clip_end\": 447.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q11_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,2,7,14,5,9,1,9,8,14,1,9,8,14,1,9,14,4,10,11,9,14,11,8,0,8,0,7,9,8,0,8,0,7,9,8,0,7,9,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,12,1,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,12,1,6,2,12,10,11,8,0,8,0,7,9,8,2,2,1,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,12,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,13,10,11,2,14,5,11,8,8,4,3,6,2,12,10,11,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,15,13,10,11,2,14,5,11,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,0,9,8,2,2,4,2,6,2,1,9,3,9,8,2,2,4,3,5,0,0,9,8,2,2,4,3,5,4,2,6,2,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,3,4,3,5,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,10,12,11,4,2,6,2,1,9,14,4,10,11,9,14,4,10,2,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,14,5,11,9,14,4,10,11,9,14,4,10,11,9,14,1,9,14,4,10,11,9,14,4,10,11,9,10,11,2,4,3,5,0,0,9,14,4,10,11,9,14,4,0,7,10,11,2,14,5,11,4,3,13,10,11,2,1,9,8,14,1,9,14,4,10,11,9,14,14,5,10,4,8,6,2,7,4,3,5,0,0,7,4,2,6,0,7,10,11,2,6,2,1,9,8,14,10,11,2,14,5,11,8,8,4,2,6,2,1,7,12,11,8,6,2,7,14,5,9,1,6,0,7,10,11,2,6,2,1,9,4,3,5,0,0,7,10,11,11,8,0,8,0,8,0,7,9,8,0,7,9,8,2,13,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,4,3,5,4,3,5,0,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,12,11,4,3,5,0,0,7,10,11,2,4,2,6,2,1,9,8,14,1,6,2,7,14,8,0,7,9,8,2,2,4,3,5,4,0,9,8,0,7,9,8,2,2,1,6,2,12,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,4,3,5,4,2,6,2,1,9,7,12,1,6,2,7,2,3,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,8,0,7,8,9,14,4,10,11,9,14,5,9,1,6,2,7,14,5,9,1,13,10,11,2,14,5,11,2,3,6,2,7,14,5,10,4,8,0,7,9,9,8,2,2,4,2,6,2,1,9,14,4,10,11,9,14,9,8,2,2,1,6,2,7,4,2,6,2,1,9,8,14,1,9,14,4,10,11,2,6,2,1,9,8,8,0,7,9,8,2,2,1,3,14,5,0,0,7,4,15,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,4,3,5,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,10,11,9,14,4,10,11,9,14,4,10,11,11,8,0,8,0,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"10\", \"5\", \"10\", \"7\"], \"clip_start\": 893.0, \"clip_end\": 899.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q12_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,2,7,14,5,9,1,9,8,14,1,9,8,14,1,9,14,4,10,11,9,14,11,8,0,8,0,7,9,8,0,8,0,7,9,8,0,7,9,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,12,1,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,12,1,6,2,12,10,11,8,0,8,0,7,9,8,2,2,1,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,12,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,13,10,11,2,14,5,11,8,8,4,3,6,2,12,10,11,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,15,13,10,11,2,14,5,11,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,0,9,8,2,2,4,2,6,2,1,9,3,9,8,2,2,4,3,5,0,0,9,8,2,2,4,3,5,4,2,6,2,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,3,4,3,5,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,10,12,11,4,2,6,2,1,9,14,4,10,11,9,14,4,10,2,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,14,5,11,9,14,4,10,11,9,14,4,10,11,9,14,1,9,14,4,10,11,9,14,4,10,11,9,10,11,2,4,3,5,0,0,9,14,4,10,11,9,14,4,0,7,10,11,2,14,5,11,4,3,13,10,11,2,1,9,8,14,1,9,14,4,10,11,9,14,14,5,10,4,8,6,2,7,4,3,5,0,0,7,4,2,6,0,7,10,11,2,6,2,1,9,8,14,10,11,2,14,5,11,8,8,4,2,6,2,1,7,12,11,8,6,2,7,14,5,9,1,6,0,7,10,11,2,6,2,1,9,4,3,5,0,0,7,10,11,11,8,0,8,0,8,0,7,9,8,0,7,9,8,2,13,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,4,3,5,4,3,5,0,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,12,11,4,3,5,0,0,7,10,11,2,4,2,6,2,1,9,8,14,1,6,2,7,14,8,0,7,9,8,2,2,4,3,5,4,0,9,8,0,7,9,8,2,2,1,6,2,12,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,4,3,5,4,2,6,2,1,9,7,12,1,6,2,7,2,3,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,8,0,7,8,9,14,4,10,11,9,14,5,9,1,6,2,7,14,5,9,1,13,10,11,2,14,5,11,2,3,6,2,7,14,5,10,4,8,0,7,9,9,8,2,2,4,2,6,2,1,9,14,4,10,11,9,14,9,8,2,2,1,6,2,7,4,2,6,2,1,9,8,14,1,9,14,4,10,11,2,6,2,1,9,8,8,0,7,9,8,2,2,1,3,14,5,0,0,7,4,15,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,4,3,5,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,10,11,9,14,4,10,11,9,14,4,10,11,11,8,0,8,0,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"15\", \"0\", \"0\", \"10\"], \"clip_start\": 256.0, \"clip_end\": 262.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q13_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,2,7,14,5,9,1,9,8,14,1,9,8,14,1,9,14,4,10,11,9,14,11,8,0,8,0,7,9,8,0,8,0,7,9,8,0,7,9,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,12,1,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,12,1,6,2,12,10,11,8,0,8,0,7,9,8,2,2,1,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,12,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,13,10,11,2,14,5,11,8,8,4,3,6,2,12,10,11,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,15,13,10,11,2,14,5,11,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,0,9,8,2,2,4,2,6,2,1,9,3,9,8,2,2,4,3,5,0,0,9,8,2,2,4,3,5,4,2,6,2,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,3,4,3,5,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,10,12,11,4,2,6,2,1,9,14,4,10,11,9,14,4,10,2,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,14,5,11,9,14,4,10,11,9,14,4,10,11,9,14,1,9,14,4,10,11,9,14,4,10,11,9,10,11,2,4,3,5,0,0,9,14,4,10,11,9,14,4,0,7,10,11,2,14,5,11,4,3,13,10,11,2,1,9,8,14,1,9,14,4,10,11,9,14,14,5,10,4,8,6,2,7,4,3,5,0,0,7,4,2,6,0,7,10,11,2,6,2,1,9,8,14,10,11,2,14,5,11,8,8,4,2,6,2,1,7,12,11,8,6,2,7,14,5,9,1,6,0,7,10,11,2,6,2,1,9,4,3,5,0,0,7,10,11,11,8,0,8,0,8,0,7,9,8,0,7,9,8,2,13,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,4,3,5,4,3,5,0,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,12,11,4,3,5,0,0,7,10,11,2,4,2,6,2,1,9,8,14,1,6,2,7,14,8,0,7,9,8,2,2,4,3,5,4,0,9,8,0,7,9,8,2,2,1,6,2,12,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,4,3,5,4,2,6,2,1,9,7,12,1,6,2,7,2,3,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,8,0,7,8,9,14,4,10,11,9,14,5,9,1,6,2,7,14,5,9,1,13,10,11,2,14,5,11,2,3,6,2,7,14,5,10,4,8,0,7,9,9,8,2,2,4,2,6,2,1,9,14,4,10,11,9,14,9,8,2,2,1,6,2,7,4,2,6,2,1,9,8,14,1,9,14,4,10,11,2,6,2,1,9,8,8,0,7,9,8,2,2,1,3,14,5,0,0,7,4,15,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,4,3,5,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,10,11,9,14,4,10,11,9,14,4,10,11,11,8,0,8,0,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"2\", \"6\"], \"clip_start\": 353.0, \"clip_end\": 357.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,2,7,14,5,9,1,9,8,14,1,9,8,14,1,9,14,4,10,11,9,14,11,8,0,8,0,7,9,8,0,8,0,7,9,8,0,7,9,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,12,1,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,12,1,6,2,12,10,11,8,0,8,0,7,9,8,2,2,1,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,12,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,13,10,11,2,14,5,11,8,8,4,3,6,2,12,10,11,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,15,13,10,11,2,14,5,11,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,0,9,8,2,2,4,2,6,2,1,9,3,9,8,2,2,4,3,5,0,0,9,8,2,2,4,3,5,4,2,6,2,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,3,4,3,5,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,10,12,11,4,2,6,2,1,9,14,4,10,11,9,14,4,10,2,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,14,5,11,9,14,4,10,11,9,14,4,10,11,9,14,1,9,14,4,10,11,9,14,4,10,11,9,10,11,2,4,3,5,0,0,9,14,4,10,11,9,14,4,0,7,10,11,2,14,5,11,4,3,13,10,11,2,1,9,8,14,1,9,14,4,10,11,9,14,14,5,10,4,8,6,2,7,4,3,5,0,0,7,4,2,6,0,7,10,11,2,6,2,1,9,8,14,10,11,2,14,5,11,8,8,4,2,6,2,1,7,12,11,8,6,2,7,14,5,9,1,6,0,7,10,11,2,6,2,1,9,4,3,5,0,0,7,10,11,11,8,0,8,0,8,0,7,9,8,0,7,9,8,2,13,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,4,3,5,4,3,5,0,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,12,11,4,3,5,0,0,7,10,11,2,4,2,6,2,1,9,8,14,1,6,2,7,14,8,0,7,9,8,2,2,4,3,5,4,0,9,8,0,7,9,8,2,2,1,6,2,12,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,4,3,5,4,2,6,2,1,9,7,12,1,6,2,7,2,3,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,8,0,7,8,9,14,4,10,11,9,14,5,9,1,6,2,7,14,5,9,1,13,10,11,2,14,5,11,2,3,6,2,7,14,5,10,4,8,0,7,9,9,8,2,2,4,2,6,2,1,9,14,4,10,11,9,14,9,8,2,2,1,6,2,7,4,2,6,2,1,9,8,14,1,9,14,4,10,11,2,6,2,1,9,8,8,0,7,9,8,2,2,1,3,14,5,0,0,7,4,15,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,4,3,5,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,10,11,9,14,4,10,11,9,14,4,10,11,11,8,0,8,0,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"8\", \"5\", \"10\"], \"clip_start\": 249.0, \"clip_end\": 255.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q15_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,2,7,14,5,9,1,9,8,14,1,9,8,14,1,9,14,4,10,11,9,14,11,8,0,8,0,7,9,8,0,8,0,7,9,8,0,7,9,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,12,1,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,12,1,6,2,12,10,11,8,0,8,0,7,9,8,2,2,1,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,12,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,13,10,11,2,14,5,11,8,8,4,3,6,2,12,10,11,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,15,13,10,11,2,14,5,11,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,8,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,0,9,8,2,2,4,2,6,2,1,9,3,9,8,2,2,4,3,5,0,0,9,8,2,2,4,3,5,4,2,6,2,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,8,3,4,3,5,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,10,12,11,4,2,6,2,1,9,14,4,10,11,9,14,4,10,2,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,14,5,11,9,14,4,10,11,9,14,4,10,11,9,14,1,9,14,4,10,11,9,14,4,10,11,9,10,11,2,4,3,5,0,0,9,14,4,10,11,9,14,4,0,7,10,11,2,14,5,11,4,3,13,10,11,2,1,9,8,14,1,9,14,4,10,11,9,14,14,5,10,4,8,6,2,7,4,3,5,0,0,7,4,2,6,0,7,10,11,2,6,2,1,9,8,14,10,11,2,14,5,11,8,8,4,2,6,2,1,7,12,11,8,6,2,7,14,5,9,1,6,0,7,10,11,2,6,2,1,9,4,3,5,0,0,7,10,11,11,8,0,8,0,8,0,7,9,8,0,7,9,8,2,13,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,10,11,13,4,3,5,4,3,5,0,0,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,12,11,4,3,5,0,0,7,10,11,2,4,2,6,2,1,9,8,14,1,6,2,7,14,8,0,7,9,8,2,2,4,3,5,4,0,9,8,0,7,9,8,2,2,1,6,2,12,10,11,0,7,4,3,5,4,2,6,2,1,9,8,14,10,11,2,4,3,5,4,2,6,2,1,9,7,12,1,6,2,7,2,3,4,2,6,2,1,9,8,14,10,11,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,8,0,7,8,9,14,4,10,11,9,14,5,9,1,6,2,7,14,5,9,1,13,10,11,2,14,5,11,2,3,6,2,7,14,5,10,4,8,0,7,9,9,8,2,2,4,2,6,2,1,9,14,4,10,11,9,14,9,8,2,2,1,6,2,7,4,2,6,2,1,9,8,14,1,9,14,4,10,11,2,6,2,1,9,8,8,0,7,9,8,2,2,1,3,14,5,0,0,7,4,15,7,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,9,3,4,2,6,2,1,9,14,4,10,11,9,14,4,10,11,10,11,13,10,11,2,14,5,11,4,3,5,4,10,11,9,14,4,10,11,9,14,4,10,11,9,14,4,10,11,9,10,11,9,14,4,10,11,9,14,4,10,11,11,8,0,8,0,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"11\", \"11\"], \"clip_start\": 877.0, \"clip_end\": 880.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,12,14,5,12,5,11,11,1,15,5,11,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,15,5,1,9,7,7,7,7,7,10,11,1,15,10,11,5,1,7,9,7,7,7,7,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,5,11,11,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,4,2,9,7,7,7,7,10,7,9,7,7,7,10,11,1,15,10,3,7,9,7,7,7,10,11,1,1,5,1,1,12,9,11,1,15,5,1,7,10,15,5,1,9,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,9,11,10,11,1,15,10,11,1,15,10,3,12,14,5,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,1,5,12,1,12,9,11,1,15,5,11,11,11,10,9,7,7,7,7,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,7,9,7,7,7,7,7,7,7,10,11,1,15,10,11,1,15,10,11,1,14,12,14,12,6,3,12,14,12,14,12,14,5,12,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,4,2,3,7,9,7,7,7,10,3,7,9,7,7,7,10,3,12,14,5,11,5,11,11,1,9,7,7,12,9,7,7,7,7,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,6,3,12,14,1,5,12,1,5,12,1,5,1,4,2,7,13,0,8,13,8,13,8,6,5,12,5,11,11,1,15,5,1,9,7,7,7,10,11,1,15,10,3,12,9,9,11,1,15,5,1,4,2,7,8,10,11,1,15,10,11,1,15,10,11,1,15,10,3,7,9,7,7,7,7,10,11,11,1,15,5,11,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,13,0,8,9,11,1,15,5,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,5,1,9,7,7,7,5,11,11,10,15,5,1,7,10,15,5,1,7,10,15,5,1,12,14,5,12,1,5,1,1,5,1,1,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,1,12,14,12,14,5,11,11,1,15,5,11,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,5,11,11,1,15,5,1,7,10,15,5,1,4,2,3,7,9,15,5,1,9,7,7,7,10,11,1,15,10,11,1,3,12,14,12,14,5,1,7,9,15,5,1,7,10,15,5,1,4,2,7,13,0,8,0,8,0,8,0,8,14,12,14,5,1,7,9,7,7,7,10,11,1,15,10,11,14,12,14,12,14,12,14,5,12,1,5,1,1,4,2,3,12,14,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,7,10,11,1,15,10,3,7,9,15,5,1,4,2,7,13,0,8,12,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,0,8,7,9,15,5,1,7,10,15,5,1,4,2,7,13,7,9,15,5,1,11,10,11,1,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 325.0, \"clip_end\": 329.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,12,14,5,12,5,11,11,1,15,5,11,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,15,5,1,9,7,7,7,7,7,10,11,1,15,10,11,5,1,7,9,7,7,7,7,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,5,11,11,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,4,2,9,7,7,7,7,10,7,9,7,7,7,10,11,1,15,10,3,7,9,7,7,7,10,11,1,1,5,1,1,12,9,11,1,15,5,1,7,10,15,5,1,9,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,9,11,10,11,1,15,10,11,1,15,10,3,12,14,5,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,1,5,12,1,12,9,11,1,15,5,11,11,11,10,9,7,7,7,7,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,7,9,7,7,7,7,7,7,7,10,11,1,15,10,11,1,15,10,11,1,14,12,14,12,6,3,12,14,12,14,12,14,5,12,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,4,2,3,7,9,7,7,7,10,3,7,9,7,7,7,10,3,12,14,5,11,5,11,11,1,9,7,7,12,9,7,7,7,7,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,6,3,12,14,1,5,12,1,5,12,1,5,1,4,2,7,13,0,8,13,8,13,8,6,5,12,5,11,11,1,15,5,1,9,7,7,7,10,11,1,15,10,3,12,9,9,11,1,15,5,1,4,2,7,8,10,11,1,15,10,11,1,15,10,11,1,15,10,3,7,9,7,7,7,7,10,11,11,1,15,5,11,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,13,0,8,9,11,1,15,5,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,5,1,9,7,7,7,5,11,11,10,15,5,1,7,10,15,5,1,7,10,15,5,1,12,14,5,12,1,5,1,1,5,1,1,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,1,12,14,12,14,5,11,11,1,15,5,11,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,5,11,11,1,15,5,1,7,10,15,5,1,4,2,3,7,9,15,5,1,9,7,7,7,10,11,1,15,10,11,1,3,12,14,12,14,5,1,7,9,15,5,1,7,10,15,5,1,4,2,7,13,0,8,0,8,0,8,0,8,14,12,14,5,1,7,9,7,7,7,10,11,1,15,10,11,14,12,14,12,14,12,14,5,12,1,5,1,1,4,2,3,12,14,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,7,10,11,1,15,10,3,7,9,15,5,1,4,2,7,13,0,8,12,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,0,8,7,9,15,5,1,7,10,15,5,1,4,2,7,13,7,9,15,5,1,11,10,11,1,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"11\", \"1\", \"15\"], \"clip_start\": 744.0, \"clip_end\": 748.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,12,14,5,12,5,11,11,1,15,5,11,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,15,5,1,9,7,7,7,7,7,10,11,1,15,10,11,5,1,7,9,7,7,7,7,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,5,11,11,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,4,2,9,7,7,7,7,10,7,9,7,7,7,10,11,1,15,10,3,7,9,7,7,7,10,11,1,1,5,1,1,12,9,11,1,15,5,1,7,10,15,5,1,9,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,9,11,10,11,1,15,10,11,1,15,10,3,12,14,5,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,1,5,12,1,12,9,11,1,15,5,11,11,11,10,9,7,7,7,7,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,7,9,7,7,7,7,7,7,7,10,11,1,15,10,11,1,15,10,11,1,14,12,14,12,6,3,12,14,12,14,12,14,5,12,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,4,2,3,7,9,7,7,7,10,3,7,9,7,7,7,10,3,12,14,5,11,5,11,11,1,9,7,7,12,9,7,7,7,7,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,6,3,12,14,1,5,12,1,5,12,1,5,1,4,2,7,13,0,8,13,8,13,8,6,5,12,5,11,11,1,15,5,1,9,7,7,7,10,11,1,15,10,3,12,9,9,11,1,15,5,1,4,2,7,8,10,11,1,15,10,11,1,15,10,11,1,15,10,3,7,9,7,7,7,7,10,11,11,1,15,5,11,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,13,0,8,9,11,1,15,5,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,5,1,9,7,7,7,5,11,11,10,15,5,1,7,10,15,5,1,7,10,15,5,1,12,14,5,12,1,5,1,1,5,1,1,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,1,12,14,12,14,5,11,11,1,15,5,11,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,5,11,11,1,15,5,1,7,10,15,5,1,4,2,3,7,9,15,5,1,9,7,7,7,10,11,1,15,10,11,1,3,12,14,12,14,5,1,7,9,15,5,1,7,10,15,5,1,4,2,7,13,0,8,0,8,0,8,0,8,14,12,14,5,1,7,9,7,7,7,10,11,1,15,10,11,14,12,14,12,14,12,14,5,12,1,5,1,1,4,2,3,12,14,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,7,10,11,1,15,10,3,7,9,15,5,1,4,2,7,13,0,8,12,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,0,8,7,9,15,5,1,7,10,15,5,1,4,2,7,13,7,9,15,5,1,11,10,11,1,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"10\", \"11\", \"1\"], \"clip_start\": 723.0, \"clip_end\": 727.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,12,14,5,12,5,11,11,1,15,5,11,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,15,5,1,9,7,7,7,7,7,10,11,1,15,10,11,5,1,7,9,7,7,7,7,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,5,11,11,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,4,2,9,7,7,7,7,10,7,9,7,7,7,10,11,1,15,10,3,7,9,7,7,7,10,11,1,1,5,1,1,12,9,11,1,15,5,1,7,10,15,5,1,9,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,9,11,10,11,1,15,10,11,1,15,10,3,12,14,5,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,1,5,12,1,12,9,11,1,15,5,11,11,11,10,9,7,7,7,7,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,7,9,7,7,7,7,7,7,7,10,11,1,15,10,11,1,15,10,11,1,14,12,14,12,6,3,12,14,12,14,12,14,5,12,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,4,2,3,7,9,7,7,7,10,3,7,9,7,7,7,10,3,12,14,5,11,5,11,11,1,9,7,7,12,9,7,7,7,7,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,6,3,12,14,1,5,12,1,5,12,1,5,1,4,2,7,13,0,8,13,8,13,8,6,5,12,5,11,11,1,15,5,1,9,7,7,7,10,11,1,15,10,3,12,9,9,11,1,15,5,1,4,2,7,8,10,11,1,15,10,11,1,15,10,11,1,15,10,3,7,9,7,7,7,7,10,11,11,1,15,5,11,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,13,0,8,9,11,1,15,5,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,5,1,9,7,7,7,5,11,11,10,15,5,1,7,10,15,5,1,7,10,15,5,1,12,14,5,12,1,5,1,1,5,1,1,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,1,12,14,12,14,5,11,11,1,15,5,11,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,5,11,11,1,15,5,1,7,10,15,5,1,4,2,3,7,9,15,5,1,9,7,7,7,10,11,1,15,10,11,1,3,12,14,12,14,5,1,7,9,15,5,1,7,10,15,5,1,4,2,7,13,0,8,0,8,0,8,0,8,14,12,14,5,1,7,9,7,7,7,10,11,1,15,10,11,14,12,14,12,14,12,14,5,12,1,5,1,1,4,2,3,12,14,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,7,10,11,1,15,10,3,7,9,15,5,1,4,2,7,13,0,8,12,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,0,8,7,9,15,5,1,7,10,15,5,1,4,2,7,13,7,9,15,5,1,11,10,11,1,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"1\", \"15\", \"10\", \"11\"], \"clip_start\": 586.0, \"clip_end\": 592.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,12,14,5,12,5,11,11,1,15,5,11,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,15,5,1,9,7,7,7,7,7,10,11,1,15,10,11,5,1,7,9,7,7,7,7,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,5,11,11,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,4,2,9,7,7,7,7,10,7,9,7,7,7,10,11,1,15,10,3,7,9,7,7,7,10,11,1,1,5,1,1,12,9,11,1,15,5,1,7,10,15,5,1,9,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,9,11,10,11,1,15,10,11,1,15,10,3,12,14,5,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,1,5,12,1,12,9,11,1,15,5,11,11,11,10,9,7,7,7,7,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,7,9,7,7,7,7,7,7,7,10,11,1,15,10,11,1,15,10,11,1,14,12,14,12,6,3,12,14,12,14,12,14,5,12,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,4,2,3,7,9,7,7,7,10,3,7,9,7,7,7,10,3,12,14,5,11,5,11,11,1,9,7,7,12,9,7,7,7,7,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,6,3,12,14,1,5,12,1,5,12,1,5,1,4,2,7,13,0,8,13,8,13,8,6,5,12,5,11,11,1,15,5,1,9,7,7,7,10,11,1,15,10,3,12,9,9,11,1,15,5,1,4,2,7,8,10,11,1,15,10,11,1,15,10,11,1,15,10,3,7,9,7,7,7,7,10,11,11,1,15,5,11,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,13,0,8,9,11,1,15,5,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,5,1,9,7,7,7,5,11,11,10,15,5,1,7,10,15,5,1,7,10,15,5,1,12,14,5,12,1,5,1,1,5,1,1,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,1,12,14,12,14,5,11,11,1,15,5,11,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,5,11,11,1,15,5,1,7,10,15,5,1,4,2,3,7,9,15,5,1,9,7,7,7,10,11,1,15,10,11,1,3,12,14,12,14,5,1,7,9,15,5,1,7,10,15,5,1,4,2,7,13,0,8,0,8,0,8,0,8,14,12,14,5,1,7,9,7,7,7,10,11,1,15,10,11,14,12,14,12,14,12,14,5,12,1,5,1,1,4,2,3,12,14,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,7,10,11,1,15,10,3,7,9,15,5,1,4,2,7,13,0,8,12,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,0,8,7,9,15,5,1,7,10,15,5,1,4,2,7,13,7,9,15,5,1,11,10,11,1,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"15\", \"5\"], \"clip_start\": 713.0, \"clip_end\": 717.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,12,14,5,12,5,11,11,1,15,5,11,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,15,5,1,9,7,7,7,7,7,10,11,1,15,10,11,5,1,7,9,7,7,7,7,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,5,11,11,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,4,2,9,7,7,7,7,10,7,9,7,7,7,10,11,1,15,10,3,7,9,7,7,7,10,11,1,1,5,1,1,12,9,11,1,15,5,1,7,10,15,5,1,9,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,9,11,10,11,1,15,10,11,1,15,10,3,12,14,5,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,1,5,12,1,12,9,11,1,15,5,11,11,11,10,9,7,7,7,7,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,7,9,7,7,7,7,7,7,7,10,11,1,15,10,11,1,15,10,11,1,14,12,14,12,6,3,12,14,12,14,12,14,5,12,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,4,2,3,7,9,7,7,7,10,3,7,9,7,7,7,10,3,12,14,5,11,5,11,11,1,9,7,7,12,9,7,7,7,7,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,6,3,12,14,1,5,12,1,5,12,1,5,1,4,2,7,13,0,8,13,8,13,8,6,5,12,5,11,11,1,15,5,1,9,7,7,7,10,11,1,15,10,3,12,9,9,11,1,15,5,1,4,2,7,8,10,11,1,15,10,11,1,15,10,11,1,15,10,3,7,9,7,7,7,7,10,11,11,1,15,5,11,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,13,0,8,9,11,1,15,5,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,5,1,9,7,7,7,5,11,11,10,15,5,1,7,10,15,5,1,7,10,15,5,1,12,14,5,12,1,5,1,1,5,1,1,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,1,12,14,12,14,5,11,11,1,15,5,11,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,5,11,11,1,15,5,1,7,10,15,5,1,4,2,3,7,9,15,5,1,9,7,7,7,10,11,1,15,10,11,1,3,12,14,12,14,5,1,7,9,15,5,1,7,10,15,5,1,4,2,7,13,0,8,0,8,0,8,0,8,14,12,14,5,1,7,9,7,7,7,10,11,1,15,10,11,14,12,14,12,14,12,14,5,12,1,5,1,1,4,2,3,12,14,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,7,10,11,1,15,10,3,7,9,15,5,1,4,2,7,13,0,8,12,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,0,8,7,9,15,5,1,7,10,15,5,1,4,2,7,13,7,9,15,5,1,11,10,11,1,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"1\", \"15\"], \"clip_start\": 752.0, \"clip_end\": 756.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,12,14,5,12,5,11,11,1,15,5,11,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,15,5,1,9,7,7,7,7,7,10,11,1,15,10,11,5,1,7,9,7,7,7,7,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,5,11,11,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,4,2,9,7,7,7,7,10,7,9,7,7,7,10,11,1,15,10,3,7,9,7,7,7,10,11,1,1,5,1,1,12,9,11,1,15,5,1,7,10,15,5,1,9,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,9,11,10,11,1,15,10,11,1,15,10,3,12,14,5,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,1,5,12,1,12,9,11,1,15,5,11,11,11,10,9,7,7,7,7,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,7,9,7,7,7,7,7,7,7,10,11,1,15,10,11,1,15,10,11,1,14,12,14,12,6,3,12,14,12,14,12,14,5,12,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,4,2,3,7,9,7,7,7,10,3,7,9,7,7,7,10,3,12,14,5,11,5,11,11,1,9,7,7,12,9,7,7,7,7,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,6,3,12,14,1,5,12,1,5,12,1,5,1,4,2,7,13,0,8,13,8,13,8,6,5,12,5,11,11,1,15,5,1,9,7,7,7,10,11,1,15,10,3,12,9,9,11,1,15,5,1,4,2,7,8,10,11,1,15,10,11,1,15,10,11,1,15,10,3,7,9,7,7,7,7,10,11,11,1,15,5,11,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,13,0,8,9,11,1,15,5,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,5,1,9,7,7,7,5,11,11,10,15,5,1,7,10,15,5,1,7,10,15,5,1,12,14,5,12,1,5,1,1,5,1,1,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,1,12,14,12,14,5,11,11,1,15,5,11,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,5,11,11,1,15,5,1,7,10,15,5,1,4,2,3,7,9,15,5,1,9,7,7,7,10,11,1,15,10,11,1,3,12,14,12,14,5,1,7,9,15,5,1,7,10,15,5,1,4,2,7,13,0,8,0,8,0,8,0,8,14,12,14,5,1,7,9,7,7,7,10,11,1,15,10,11,14,12,14,12,14,12,14,5,12,1,5,1,1,4,2,3,12,14,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,7,10,11,1,15,10,3,7,9,15,5,1,4,2,7,13,0,8,12,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,0,8,7,9,15,5,1,7,10,15,5,1,4,2,7,13,7,9,15,5,1,11,10,11,1,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"1\", \"15\", \"10\", \"11\", \"1\"], \"clip_start\": 220.0, \"clip_end\": 226.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,12,14,5,12,5,11,11,1,15,5,11,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,15,5,1,9,7,7,7,7,7,10,11,1,15,10,11,5,1,7,9,7,7,7,7,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,5,11,11,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,4,2,9,7,7,7,7,10,7,9,7,7,7,10,11,1,15,10,3,7,9,7,7,7,10,11,1,1,5,1,1,12,9,11,1,15,5,1,7,10,15,5,1,9,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,9,11,10,11,1,15,10,11,1,15,10,3,12,14,5,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,1,5,12,1,12,9,11,1,15,5,11,11,11,10,9,7,7,7,7,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,7,9,7,7,7,7,7,7,7,10,11,1,15,10,11,1,15,10,11,1,14,12,14,12,6,3,12,14,12,14,12,14,5,12,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,4,2,3,7,9,7,7,7,10,3,7,9,7,7,7,10,3,12,14,5,11,5,11,11,1,9,7,7,12,9,7,7,7,7,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,6,3,12,14,1,5,12,1,5,12,1,5,1,4,2,7,13,0,8,13,8,13,8,6,5,12,5,11,11,1,15,5,1,9,7,7,7,10,11,1,15,10,3,12,9,9,11,1,15,5,1,4,2,7,8,10,11,1,15,10,11,1,15,10,11,1,15,10,3,7,9,7,7,7,7,10,11,11,1,15,5,11,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,13,0,8,9,11,1,15,5,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,5,1,9,7,7,7,5,11,11,10,15,5,1,7,10,15,5,1,7,10,15,5,1,12,14,5,12,1,5,1,1,5,1,1,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,1,12,14,12,14,5,11,11,1,15,5,11,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,5,11,11,1,15,5,1,7,10,15,5,1,4,2,3,7,9,15,5,1,9,7,7,7,10,11,1,15,10,11,1,3,12,14,12,14,5,1,7,9,15,5,1,7,10,15,5,1,4,2,7,13,0,8,0,8,0,8,0,8,14,12,14,5,1,7,9,7,7,7,10,11,1,15,10,11,14,12,14,12,14,12,14,5,12,1,5,1,1,4,2,3,12,14,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,7,10,11,1,15,10,3,7,9,15,5,1,4,2,7,13,0,8,12,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,0,8,7,9,15,5,1,7,10,15,5,1,4,2,7,13,7,9,15,5,1,11,10,11,1,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"1\", \"15\"], \"clip_start\": 621.0, \"clip_end\": 625.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,12,14,5,12,5,11,11,1,15,5,11,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,15,5,1,9,7,7,7,7,7,10,11,1,15,10,11,5,1,7,9,7,7,7,7,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,5,11,11,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,4,2,9,7,7,7,7,10,7,9,7,7,7,10,11,1,15,10,3,7,9,7,7,7,10,11,1,1,5,1,1,12,9,11,1,15,5,1,7,10,15,5,1,9,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,9,11,10,11,1,15,10,11,1,15,10,3,12,14,5,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,1,5,12,1,12,9,11,1,15,5,11,11,11,10,9,7,7,7,7,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,7,9,7,7,7,7,7,7,7,10,11,1,15,10,11,1,15,10,11,1,14,12,14,12,6,3,12,14,12,14,12,14,5,12,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,4,2,3,7,9,7,7,7,10,3,7,9,7,7,7,10,3,12,14,5,11,5,11,11,1,9,7,7,12,9,7,7,7,7,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,6,3,12,14,1,5,12,1,5,12,1,5,1,4,2,7,13,0,8,13,8,13,8,6,5,12,5,11,11,1,15,5,1,9,7,7,7,10,11,1,15,10,3,12,9,9,11,1,15,5,1,4,2,7,8,10,11,1,15,10,11,1,15,10,11,1,15,10,3,7,9,7,7,7,7,10,11,11,1,15,5,11,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,13,0,8,9,11,1,15,5,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,5,1,9,7,7,7,5,11,11,10,15,5,1,7,10,15,5,1,7,10,15,5,1,12,14,5,12,1,5,1,1,5,1,1,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,1,12,14,12,14,5,11,11,1,15,5,11,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,5,11,11,1,15,5,1,7,10,15,5,1,4,2,3,7,9,15,5,1,9,7,7,7,10,11,1,15,10,11,1,3,12,14,12,14,5,1,7,9,15,5,1,7,10,15,5,1,4,2,7,13,0,8,0,8,0,8,0,8,14,12,14,5,1,7,9,7,7,7,10,11,1,15,10,11,14,12,14,12,14,12,14,5,12,1,5,1,1,4,2,3,12,14,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,7,10,11,1,15,10,3,7,9,15,5,1,4,2,7,13,0,8,12,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,0,8,7,9,15,5,1,7,10,15,5,1,4,2,7,13,7,9,15,5,1,11,10,11,1,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"3\"], \"clip_start\": 492.0, \"clip_end\": 495.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,12,14,5,12,5,11,11,1,15,5,11,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,15,5,1,9,7,7,7,7,7,10,11,1,15,10,11,5,1,7,9,7,7,7,7,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,5,11,11,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,4,2,9,7,7,7,7,10,7,9,7,7,7,10,11,1,15,10,3,7,9,7,7,7,10,11,1,1,5,1,1,12,9,11,1,15,5,1,7,10,15,5,1,9,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,9,11,10,11,1,15,10,11,1,15,10,3,12,14,5,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,1,5,12,1,12,9,11,1,15,5,11,11,11,10,9,7,7,7,7,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,7,9,7,7,7,7,7,7,7,10,11,1,15,10,11,1,15,10,11,1,14,12,14,12,6,3,12,14,12,14,12,14,5,12,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,4,2,3,7,9,7,7,7,10,3,7,9,7,7,7,10,3,12,14,5,11,5,11,11,1,9,7,7,12,9,7,7,7,7,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,6,3,12,14,1,5,12,1,5,12,1,5,1,4,2,7,13,0,8,13,8,13,8,6,5,12,5,11,11,1,15,5,1,9,7,7,7,10,11,1,15,10,3,12,9,9,11,1,15,5,1,4,2,7,8,10,11,1,15,10,11,1,15,10,11,1,15,10,3,7,9,7,7,7,7,10,11,11,1,15,5,11,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,13,0,8,9,11,1,15,5,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,5,1,9,7,7,7,5,11,11,10,15,5,1,7,10,15,5,1,7,10,15,5,1,12,14,5,12,1,5,1,1,5,1,1,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,1,12,14,12,14,5,11,11,1,15,5,11,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,5,11,11,1,15,5,1,7,10,15,5,1,4,2,3,7,9,15,5,1,9,7,7,7,10,11,1,15,10,11,1,3,12,14,12,14,5,1,7,9,15,5,1,7,10,15,5,1,4,2,7,13,0,8,0,8,0,8,0,8,14,12,14,5,1,7,9,7,7,7,10,11,1,15,10,11,14,12,14,12,14,12,14,5,12,1,5,1,1,4,2,3,12,14,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,7,10,11,1,15,10,3,7,9,15,5,1,4,2,7,13,0,8,12,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,0,8,7,9,15,5,1,7,10,15,5,1,4,2,7,13,7,9,15,5,1,11,10,11,1,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\"], \"clip_start\": 439.0, \"clip_end\": 442.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,12,14,5,12,5,11,11,1,15,5,11,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,15,5,1,9,7,7,7,7,7,10,11,1,15,10,11,5,1,7,9,7,7,7,7,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,5,11,11,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,4,2,9,7,7,7,7,10,7,9,7,7,7,10,11,1,15,10,3,7,9,7,7,7,10,11,1,1,5,1,1,12,9,11,1,15,5,1,7,10,15,5,1,9,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,9,11,10,11,1,15,10,11,1,15,10,3,12,14,5,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,1,5,12,1,12,9,11,1,15,5,11,11,11,10,9,7,7,7,7,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,7,9,7,7,7,7,7,7,7,10,11,1,15,10,11,1,15,10,11,1,14,12,14,12,6,3,12,14,12,14,12,14,5,12,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,4,2,3,7,9,7,7,7,10,3,7,9,7,7,7,10,3,12,14,5,11,5,11,11,1,9,7,7,12,9,7,7,7,7,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,6,3,12,14,1,5,12,1,5,12,1,5,1,4,2,7,13,0,8,13,8,13,8,6,5,12,5,11,11,1,15,5,1,9,7,7,7,10,11,1,15,10,3,12,9,9,11,1,15,5,1,4,2,7,8,10,11,1,15,10,11,1,15,10,11,1,15,10,3,7,9,7,7,7,7,10,11,11,1,15,5,11,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,13,0,8,9,11,1,15,5,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,5,1,9,7,7,7,5,11,11,10,15,5,1,7,10,15,5,1,7,10,15,5,1,12,14,5,12,1,5,1,1,5,1,1,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,1,12,14,12,14,5,11,11,1,15,5,11,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,5,11,11,1,15,5,1,7,10,15,5,1,4,2,3,7,9,15,5,1,9,7,7,7,10,11,1,15,10,11,1,3,12,14,12,14,5,1,7,9,15,5,1,7,10,15,5,1,4,2,7,13,0,8,0,8,0,8,0,8,14,12,14,5,1,7,9,7,7,7,10,11,1,15,10,11,14,12,14,12,14,12,14,5,12,1,5,1,1,4,2,3,12,14,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,7,10,11,1,15,10,3,7,9,15,5,1,4,2,7,13,0,8,12,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,0,8,7,9,15,5,1,7,10,15,5,1,4,2,7,13,7,9,15,5,1,11,10,11,1,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"11\"], \"clip_start\": 1019.0, \"clip_end\": 1022.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,12,14,5,12,5,11,11,1,15,5,11,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,15,5,1,9,7,7,7,7,7,10,11,1,15,10,11,5,1,7,9,7,7,7,7,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,5,11,11,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,4,2,9,7,7,7,7,10,7,9,7,7,7,10,11,1,15,10,3,7,9,7,7,7,10,11,1,1,5,1,1,12,9,11,1,15,5,1,7,10,15,5,1,9,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,9,11,10,11,1,15,10,11,1,15,10,3,12,14,5,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,1,5,12,1,12,9,11,1,15,5,11,11,11,10,9,7,7,7,7,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,7,9,7,7,7,7,7,7,7,10,11,1,15,10,11,1,15,10,11,1,14,12,14,12,6,3,12,14,12,14,12,14,5,12,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,4,2,3,7,9,7,7,7,10,3,7,9,7,7,7,10,3,12,14,5,11,5,11,11,1,9,7,7,12,9,7,7,7,7,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,6,3,12,14,1,5,12,1,5,12,1,5,1,4,2,7,13,0,8,13,8,13,8,6,5,12,5,11,11,1,15,5,1,9,7,7,7,10,11,1,15,10,3,12,9,9,11,1,15,5,1,4,2,7,8,10,11,1,15,10,11,1,15,10,11,1,15,10,3,7,9,7,7,7,7,10,11,11,1,15,5,11,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,13,0,8,9,11,1,15,5,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,5,1,9,7,7,7,5,11,11,10,15,5,1,7,10,15,5,1,7,10,15,5,1,12,14,5,12,1,5,1,1,5,1,1,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,1,12,14,12,14,5,11,11,1,15,5,11,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,5,11,11,1,15,5,1,7,10,15,5,1,4,2,3,7,9,15,5,1,9,7,7,7,10,11,1,15,10,11,1,3,12,14,12,14,5,1,7,9,15,5,1,7,10,15,5,1,4,2,7,13,0,8,0,8,0,8,0,8,14,12,14,5,1,7,9,7,7,7,10,11,1,15,10,11,14,12,14,12,14,12,14,5,12,1,5,1,1,4,2,3,12,14,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,7,10,11,1,15,10,3,7,9,15,5,1,4,2,7,13,0,8,12,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,0,8,7,9,15,5,1,7,10,15,5,1,4,2,7,13,7,9,15,5,1,11,10,11,1,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"14\", \"12\"], \"clip_start\": 861.0, \"clip_end\": 865.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,12,14,5,12,5,11,11,1,15,5,11,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,15,5,1,9,7,7,7,7,7,10,11,1,15,10,11,5,1,7,9,7,7,7,7,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,5,11,11,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,4,2,9,7,7,7,7,10,7,9,7,7,7,10,11,1,15,10,3,7,9,7,7,7,10,11,1,1,5,1,1,12,9,11,1,15,5,1,7,10,15,5,1,9,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,9,11,10,11,1,15,10,11,1,15,10,3,12,14,5,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,1,5,12,1,12,9,11,1,15,5,11,11,11,10,9,7,7,7,7,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,7,9,7,7,7,7,7,7,7,10,11,1,15,10,11,1,15,10,11,1,14,12,14,12,6,3,12,14,12,14,12,14,5,12,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,4,2,3,7,9,7,7,7,10,3,7,9,7,7,7,10,3,12,14,5,11,5,11,11,1,9,7,7,12,9,7,7,7,7,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,6,3,12,14,1,5,12,1,5,12,1,5,1,4,2,7,13,0,8,13,8,13,8,6,5,12,5,11,11,1,15,5,1,9,7,7,7,10,11,1,15,10,3,12,9,9,11,1,15,5,1,4,2,7,8,10,11,1,15,10,11,1,15,10,11,1,15,10,3,7,9,7,7,7,7,10,11,11,1,15,5,11,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,13,0,8,9,11,1,15,5,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,5,1,9,7,7,7,5,11,11,10,15,5,1,7,10,15,5,1,7,10,15,5,1,12,14,5,12,1,5,1,1,5,1,1,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,1,12,14,12,14,5,11,11,1,15,5,11,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,5,11,11,1,15,5,1,7,10,15,5,1,4,2,3,7,9,15,5,1,9,7,7,7,10,11,1,15,10,11,1,3,12,14,12,14,5,1,7,9,15,5,1,7,10,15,5,1,4,2,7,13,0,8,0,8,0,8,0,8,14,12,14,5,1,7,9,7,7,7,10,11,1,15,10,11,14,12,14,12,14,12,14,5,12,1,5,1,1,4,2,3,12,14,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,7,10,11,1,15,10,3,7,9,15,5,1,4,2,7,13,0,8,12,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,0,8,7,9,15,5,1,7,10,15,5,1,4,2,7,13,7,9,15,5,1,11,10,11,1,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"13\", \"0\", \"8\", \"12\"], \"clip_start\": 925.0, \"clip_end\": 931.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q13_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,12,14,5,12,5,11,11,1,15,5,11,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,15,5,1,9,7,7,7,7,7,10,11,1,15,10,11,5,1,7,9,7,7,7,7,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,5,11,11,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,4,2,9,7,7,7,7,10,7,9,7,7,7,10,11,1,15,10,3,7,9,7,7,7,10,11,1,1,5,1,1,12,9,11,1,15,5,1,7,10,15,5,1,9,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,9,11,10,11,1,15,10,11,1,15,10,3,12,14,5,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,1,5,12,1,12,9,11,1,15,5,11,11,11,10,9,7,7,7,7,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,7,9,7,7,7,7,7,7,7,10,11,1,15,10,11,1,15,10,11,1,14,12,14,12,6,3,12,14,12,14,12,14,5,12,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,4,2,3,7,9,7,7,7,10,3,7,9,7,7,7,10,3,12,14,5,11,5,11,11,1,9,7,7,12,9,7,7,7,7,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,6,3,12,14,1,5,12,1,5,12,1,5,1,4,2,7,13,0,8,13,8,13,8,6,5,12,5,11,11,1,15,5,1,9,7,7,7,10,11,1,15,10,3,12,9,9,11,1,15,5,1,4,2,7,8,10,11,1,15,10,11,1,15,10,11,1,15,10,3,7,9,7,7,7,7,10,11,11,1,15,5,11,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,13,0,8,9,11,1,15,5,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,5,1,9,7,7,7,5,11,11,10,15,5,1,7,10,15,5,1,7,10,15,5,1,12,14,5,12,1,5,1,1,5,1,1,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,1,12,14,12,14,5,11,11,1,15,5,11,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,5,11,11,1,15,5,1,7,10,15,5,1,4,2,3,7,9,15,5,1,9,7,7,7,10,11,1,15,10,11,1,3,12,14,12,14,5,1,7,9,15,5,1,7,10,15,5,1,4,2,7,13,0,8,0,8,0,8,0,8,14,12,14,5,1,7,9,7,7,7,10,11,1,15,10,11,14,12,14,12,14,12,14,5,12,1,5,1,1,4,2,3,12,14,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,7,10,11,1,15,10,3,7,9,15,5,1,4,2,7,13,0,8,12,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,0,8,7,9,15,5,1,7,10,15,5,1,4,2,7,13,7,9,15,5,1,11,10,11,1,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"11\", \"10\"], \"clip_start\": 961.0, \"clip_end\": 965.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q14_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,12,14,5,12,5,11,11,1,15,5,11,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,15,5,1,9,7,7,7,7,7,10,11,1,15,10,11,5,1,7,9,7,7,7,7,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,5,11,11,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,4,2,9,7,7,7,7,10,7,9,7,7,7,10,11,1,15,10,3,7,9,7,7,7,10,11,1,1,5,1,1,12,9,11,1,15,5,1,7,10,15,5,1,9,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,9,11,10,11,1,15,10,11,1,15,10,3,12,14,5,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,1,5,12,1,12,9,11,1,15,5,11,11,11,10,9,7,7,7,7,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,7,9,7,7,7,7,7,7,7,10,11,1,15,10,11,1,15,10,11,1,14,12,14,12,6,3,12,14,12,14,12,14,5,12,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,4,2,3,7,9,7,7,7,10,3,7,9,7,7,7,10,3,12,14,5,11,5,11,11,1,9,7,7,12,9,7,7,7,7,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,6,3,12,14,1,5,12,1,5,12,1,5,1,4,2,7,13,0,8,13,8,13,8,6,5,12,5,11,11,1,15,5,1,9,7,7,7,10,11,1,15,10,3,12,9,9,11,1,15,5,1,4,2,7,8,10,11,1,15,10,11,1,15,10,11,1,15,10,3,7,9,7,7,7,7,10,11,11,1,15,5,11,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,13,0,8,9,11,1,15,5,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,5,1,9,7,7,7,5,11,11,10,15,5,1,7,10,15,5,1,7,10,15,5,1,12,14,5,12,1,5,1,1,5,1,1,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,1,12,14,12,14,5,11,11,1,15,5,11,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,5,11,11,1,15,5,1,7,10,15,5,1,4,2,3,7,9,15,5,1,9,7,7,7,10,11,1,15,10,11,1,3,12,14,12,14,5,1,7,9,15,5,1,7,10,15,5,1,4,2,7,13,0,8,0,8,0,8,0,8,14,12,14,5,1,7,9,7,7,7,10,11,1,15,10,11,14,12,14,12,14,12,14,5,12,1,5,1,1,4,2,3,12,14,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,7,10,11,1,15,10,3,7,9,15,5,1,4,2,7,13,0,8,12,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,0,8,7,9,15,5,1,7,10,15,5,1,4,2,7,13,7,9,15,5,1,11,10,11,1,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"11\", \"10\", \"11\", \"1\"], \"clip_start\": 750.0, \"clip_end\": 755.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q15_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,3,12,14,5,12,5,11,11,1,15,5,11,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,15,5,1,9,7,7,7,7,7,10,11,1,15,10,11,5,1,7,9,7,7,7,7,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,5,11,11,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,4,2,9,7,7,7,7,10,7,9,7,7,7,10,11,1,15,10,3,7,9,7,7,7,10,11,1,1,5,1,1,12,9,11,1,15,5,1,7,10,15,5,1,9,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,9,11,10,11,1,15,10,11,1,15,10,3,12,14,5,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,1,5,12,1,12,9,11,1,15,5,11,11,11,10,9,7,7,7,7,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,7,9,7,7,7,7,7,7,7,10,11,1,15,10,11,1,15,10,11,1,14,12,14,12,6,3,12,14,12,14,12,14,5,12,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,11,11,11,1,15,5,1,7,10,15,5,1,7,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,10,11,1,15,10,11,1,15,10,11,1,15,4,2,3,7,9,7,7,7,10,3,7,9,7,7,7,10,3,12,14,5,11,5,11,11,1,9,7,7,12,9,7,7,7,7,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,6,3,12,14,1,5,12,1,5,12,1,5,1,4,2,7,13,0,8,13,8,13,8,6,5,12,5,11,11,1,15,5,1,9,7,7,7,10,11,1,15,10,3,12,9,9,11,1,15,5,1,4,2,7,8,10,11,1,15,10,11,1,15,10,11,1,15,10,3,7,9,7,7,7,7,10,11,11,1,15,5,11,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,13,0,8,9,11,1,15,5,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,5,1,9,7,7,7,5,11,11,10,15,5,1,7,10,15,5,1,7,10,15,5,1,12,14,5,12,1,5,1,1,5,1,1,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,1,12,14,12,14,5,11,11,1,15,5,11,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,5,11,11,1,15,5,1,7,10,15,5,1,4,2,3,7,9,15,5,1,9,7,7,7,10,11,1,15,10,11,1,3,12,14,12,14,5,1,7,9,15,5,1,7,10,15,5,1,4,2,7,13,0,8,0,8,0,8,0,8,14,12,14,5,1,7,9,7,7,7,10,11,1,15,10,11,14,12,14,12,14,12,14,5,12,1,5,1,1,4,2,3,12,14,5,11,11,10,10,11,1,15,10,11,1,15,10,11,1,15,10,11,15,5,1,7,10,15,5,1,7,10,15,5,1,9,7,7,7,7,10,11,1,15,10,3,7,9,15,5,1,4,2,7,13,0,8,12,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,1,15,5,1,7,10,15,5,1,7,10,15,5,1,9,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,11,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,15,10,11,1,0,8,7,9,15,5,1,7,10,15,5,1,4,2,7,13,7,9,15,5,1,11,10,11,1,13", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"8\", \"4\", \"4\", \"1\"], \"clip_start\": 448.0, \"clip_end\": 454.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,1,15,3,12,11,1,7,8,9,8,6,9,1,13,8,2,8,9,12,1,7,12,5,11,7,12,15,8,15,8,1,15,8,1,15,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,0,10,14,5,0,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,15,0,4,15,3,12,11,1,7,4,1,13,12,7,11,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,8,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,15,8,1,15,8,1,15,0,14,2,10,14,0,6,9,1,13,8,1,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,9,4,1,13,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,5,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,2,2,3,12,11,1,7,8,9,12,7,11,6,10,4,1,13,8,4,4,1,13,8,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,6,10,4,1,13,8,4,4,1,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,7,12,13,8,6,10,4,1,13,8,4,4,1,13,8,8,6,9,1,13,8,1,1,14,11,9,1,11,9,1,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,15,3,12,11,1,7,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,11,9,1,11,7,12,15,8,15,7,12,8,9,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,14,6,9,1,13,9,1,8,6,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"4\", \"4\", \"1\", \"13\"], \"clip_start\": 454.0, \"clip_end\": 460.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,1,15,3,12,11,1,7,8,9,8,6,9,1,13,8,2,8,9,12,1,7,12,5,11,7,12,15,8,15,8,1,15,8,1,15,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,0,10,14,5,0,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,15,0,4,15,3,12,11,1,7,4,1,13,12,7,11,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,8,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,15,8,1,15,8,1,15,0,14,2,10,14,0,6,9,1,13,8,1,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,9,4,1,13,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,5,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,2,2,3,12,11,1,7,8,9,12,7,11,6,10,4,1,13,8,4,4,1,13,8,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,6,10,4,1,13,8,4,4,1,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,7,12,13,8,6,10,4,1,13,8,4,4,1,13,8,8,6,9,1,13,8,1,1,14,11,9,1,11,9,1,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,15,3,12,11,1,7,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,11,9,1,11,7,12,15,8,15,7,12,8,9,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,14,6,9,1,13,9,1,8,6,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"1\", \"13\", \"8\"], \"clip_start\": 646.0, \"clip_end\": 651.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,1,15,3,12,11,1,7,8,9,8,6,9,1,13,8,2,8,9,12,1,7,12,5,11,7,12,15,8,15,8,1,15,8,1,15,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,0,10,14,5,0,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,15,0,4,15,3,12,11,1,7,4,1,13,12,7,11,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,8,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,15,8,1,15,8,1,15,0,14,2,10,14,0,6,9,1,13,8,1,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,9,4,1,13,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,5,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,2,2,3,12,11,1,7,8,9,12,7,11,6,10,4,1,13,8,4,4,1,13,8,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,6,10,4,1,13,8,4,4,1,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,7,12,13,8,6,10,4,1,13,8,4,4,1,13,8,8,6,9,1,13,8,1,1,14,11,9,1,11,9,1,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,15,3,12,11,1,7,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,11,9,1,11,7,12,15,8,15,7,12,8,9,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,14,6,9,1,13,9,1,8,6,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"1\", \"7\", \"8\", \"6\"], \"clip_start\": 414.0, \"clip_end\": 419.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,1,15,3,12,11,1,7,8,9,8,6,9,1,13,8,2,8,9,12,1,7,12,5,11,7,12,15,8,15,8,1,15,8,1,15,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,0,10,14,5,0,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,15,0,4,15,3,12,11,1,7,4,1,13,12,7,11,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,8,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,15,8,1,15,8,1,15,0,14,2,10,14,0,6,9,1,13,8,1,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,9,4,1,13,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,5,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,2,2,3,12,11,1,7,8,9,12,7,11,6,10,4,1,13,8,4,4,1,13,8,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,6,10,4,1,13,8,4,4,1,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,7,12,13,8,6,10,4,1,13,8,4,4,1,13,8,8,6,9,1,13,8,1,1,14,11,9,1,11,9,1,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,15,3,12,11,1,7,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,11,9,1,11,7,12,15,8,15,7,12,8,9,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,14,6,9,1,13,9,1,8,6,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"8\", \"4\", \"4\", \"1\"], \"clip_start\": 823.0, \"clip_end\": 829.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,1,15,3,12,11,1,7,8,9,8,6,9,1,13,8,2,8,9,12,1,7,12,5,11,7,12,15,8,15,8,1,15,8,1,15,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,0,10,14,5,0,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,15,0,4,15,3,12,11,1,7,4,1,13,12,7,11,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,8,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,15,8,1,15,8,1,15,0,14,2,10,14,0,6,9,1,13,8,1,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,9,4,1,13,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,5,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,2,2,3,12,11,1,7,8,9,12,7,11,6,10,4,1,13,8,4,4,1,13,8,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,6,10,4,1,13,8,4,4,1,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,7,12,13,8,6,10,4,1,13,8,4,4,1,13,8,8,6,9,1,13,8,1,1,14,11,9,1,11,9,1,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,15,3,12,11,1,7,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,11,9,1,11,7,12,15,8,15,7,12,8,9,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,14,6,9,1,13,9,1,8,6,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 840.0, \"clip_end\": 846.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,1,15,3,12,11,1,7,8,9,8,6,9,1,13,8,2,8,9,12,1,7,12,5,11,7,12,15,8,15,8,1,15,8,1,15,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,0,10,14,5,0,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,15,0,4,15,3,12,11,1,7,4,1,13,12,7,11,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,8,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,15,8,1,15,8,1,15,0,14,2,10,14,0,6,9,1,13,8,1,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,9,4,1,13,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,5,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,2,2,3,12,11,1,7,8,9,12,7,11,6,10,4,1,13,8,4,4,1,13,8,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,6,10,4,1,13,8,4,4,1,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,7,12,13,8,6,10,4,1,13,8,4,4,1,13,8,8,6,9,1,13,8,1,1,14,11,9,1,11,9,1,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,15,3,12,11,1,7,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,11,9,1,11,7,12,15,8,15,7,12,8,9,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,14,6,9,1,13,9,1,8,6,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"1\", \"13\", \"8\", \"4\", \"4\"], \"clip_start\": 847.0, \"clip_end\": 853.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,1,15,3,12,11,1,7,8,9,8,6,9,1,13,8,2,8,9,12,1,7,12,5,11,7,12,15,8,15,8,1,15,8,1,15,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,0,10,14,5,0,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,15,0,4,15,3,12,11,1,7,4,1,13,12,7,11,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,8,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,15,8,1,15,8,1,15,0,14,2,10,14,0,6,9,1,13,8,1,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,9,4,1,13,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,5,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,2,2,3,12,11,1,7,8,9,12,7,11,6,10,4,1,13,8,4,4,1,13,8,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,6,10,4,1,13,8,4,4,1,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,7,12,13,8,6,10,4,1,13,8,4,4,1,13,8,8,6,9,1,13,8,1,1,14,11,9,1,11,9,1,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,15,3,12,11,1,7,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,11,9,1,11,7,12,15,8,15,7,12,8,9,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,14,6,9,1,13,9,1,8,6,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 318.0, \"clip_end\": 322.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,1,15,3,12,11,1,7,8,9,8,6,9,1,13,8,2,8,9,12,1,7,12,5,11,7,12,15,8,15,8,1,15,8,1,15,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,0,10,14,5,0,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,15,0,4,15,3,12,11,1,7,4,1,13,12,7,11,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,8,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,15,8,1,15,8,1,15,0,14,2,10,14,0,6,9,1,13,8,1,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,9,4,1,13,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,5,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,2,2,3,12,11,1,7,8,9,12,7,11,6,10,4,1,13,8,4,4,1,13,8,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,6,10,4,1,13,8,4,4,1,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,7,12,13,8,6,10,4,1,13,8,4,4,1,13,8,8,6,9,1,13,8,1,1,14,11,9,1,11,9,1,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,15,3,12,11,1,7,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,11,9,1,11,7,12,15,8,15,7,12,8,9,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,14,6,9,1,13,9,1,8,6,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"1\", \"13\", \"8\", \"4\"], \"clip_start\": 110.0, \"clip_end\": 115.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,1,15,3,12,11,1,7,8,9,8,6,9,1,13,8,2,8,9,12,1,7,12,5,11,7,12,15,8,15,8,1,15,8,1,15,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,0,10,14,5,0,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,15,0,4,15,3,12,11,1,7,4,1,13,12,7,11,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,8,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,15,8,1,15,8,1,15,0,14,2,10,14,0,6,9,1,13,8,1,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,9,4,1,13,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,5,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,2,2,3,12,11,1,7,8,9,12,7,11,6,10,4,1,13,8,4,4,1,13,8,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,6,10,4,1,13,8,4,4,1,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,7,12,13,8,6,10,4,1,13,8,4,4,1,13,8,8,6,9,1,13,8,1,1,14,11,9,1,11,9,1,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,15,3,12,11,1,7,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,11,9,1,11,7,12,15,8,15,7,12,8,9,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,14,6,9,1,13,9,1,8,6,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"8\", \"4\", \"4\"], \"clip_start\": 638.0, \"clip_end\": 643.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,1,15,3,12,11,1,7,8,9,8,6,9,1,13,8,2,8,9,12,1,7,12,5,11,7,12,15,8,15,8,1,15,8,1,15,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,0,10,14,5,0,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,15,0,4,15,3,12,11,1,7,4,1,13,12,7,11,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,8,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,15,8,1,15,8,1,15,0,14,2,10,14,0,6,9,1,13,8,1,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,9,4,1,13,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,5,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,2,2,3,12,11,1,7,8,9,12,7,11,6,10,4,1,13,8,4,4,1,13,8,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,6,10,4,1,13,8,4,4,1,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,7,12,13,8,6,10,4,1,13,8,4,4,1,13,8,8,6,9,1,13,8,1,1,14,11,9,1,11,9,1,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,15,3,12,11,1,7,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,11,9,1,11,7,12,15,8,15,7,12,8,9,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,14,6,9,1,13,9,1,8,6,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 378.0, \"clip_end\": 383.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,1,15,3,12,11,1,7,8,9,8,6,9,1,13,8,2,8,9,12,1,7,12,5,11,7,12,15,8,15,8,1,15,8,1,15,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,0,10,14,5,0,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,15,0,4,15,3,12,11,1,7,4,1,13,12,7,11,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,8,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,15,8,1,15,8,1,15,0,14,2,10,14,0,6,9,1,13,8,1,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,9,4,1,13,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,5,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,2,2,3,12,11,1,7,8,9,12,7,11,6,10,4,1,13,8,4,4,1,13,8,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,6,10,4,1,13,8,4,4,1,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,7,12,13,8,6,10,4,1,13,8,4,4,1,13,8,8,6,9,1,13,8,1,1,14,11,9,1,11,9,1,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,15,3,12,11,1,7,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,11,9,1,11,7,12,15,8,15,7,12,8,9,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,14,6,9,1,13,9,1,8,6,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"1\", \"13\"], \"clip_start\": 200.0, \"clip_end\": 204.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,1,15,3,12,11,1,7,8,9,8,6,9,1,13,8,2,8,9,12,1,7,12,5,11,7,12,15,8,15,8,1,15,8,1,15,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,0,10,14,5,0,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,15,0,4,15,3,12,11,1,7,4,1,13,12,7,11,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,8,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,15,8,1,15,8,1,15,0,14,2,10,14,0,6,9,1,13,8,1,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,9,4,1,13,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,5,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,2,2,3,12,11,1,7,8,9,12,7,11,6,10,4,1,13,8,4,4,1,13,8,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,6,10,4,1,13,8,4,4,1,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,7,12,13,8,6,10,4,1,13,8,4,4,1,13,8,8,6,9,1,13,8,1,1,14,11,9,1,11,9,1,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,15,3,12,11,1,7,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,11,9,1,11,7,12,15,8,15,7,12,8,9,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,14,6,9,1,13,9,1,8,6,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"6\", \"10\", \"4\", \"1\"], \"clip_start\": 287.0, \"clip_end\": 292.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,1,15,3,12,11,1,7,8,9,8,6,9,1,13,8,2,8,9,12,1,7,12,5,11,7,12,15,8,15,8,1,15,8,1,15,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,0,10,14,5,0,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,15,0,4,15,3,12,11,1,7,4,1,13,12,7,11,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,8,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,15,8,1,15,8,1,15,0,14,2,10,14,0,6,9,1,13,8,1,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,9,4,1,13,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,5,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,2,2,3,12,11,1,7,8,9,12,7,11,6,10,4,1,13,8,4,4,1,13,8,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,6,10,4,1,13,8,4,4,1,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,7,12,13,8,6,10,4,1,13,8,4,4,1,13,8,8,6,9,1,13,8,1,1,14,11,9,1,11,9,1,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,15,3,12,11,1,7,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,11,9,1,11,7,12,15,8,15,7,12,8,9,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,14,6,9,1,13,9,1,8,6,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"15\", \"8\", \"1\", \"15\"], \"clip_start\": 718.0, \"clip_end\": 723.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,1,15,3,12,11,1,7,8,9,8,6,9,1,13,8,2,8,9,12,1,7,12,5,11,7,12,15,8,15,8,1,15,8,1,15,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,0,10,14,5,0,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,15,0,4,15,3,12,11,1,7,4,1,13,12,7,11,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,8,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,15,8,1,15,8,1,15,0,14,2,10,14,0,6,9,1,13,8,1,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,9,4,1,13,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,5,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,2,2,3,12,11,1,7,8,9,12,7,11,6,10,4,1,13,8,4,4,1,13,8,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,6,10,4,1,13,8,4,4,1,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,7,12,13,8,6,10,4,1,13,8,4,4,1,13,8,8,6,9,1,13,8,1,1,14,11,9,1,11,9,1,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,15,3,12,11,1,7,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,11,9,1,11,7,12,15,8,15,7,12,8,9,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,14,6,9,1,13,9,1,8,6,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 562.0, \"clip_end\": 568.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,1,15,3,12,11,1,7,8,9,8,6,9,1,13,8,2,8,9,12,1,7,12,5,11,7,12,15,8,15,8,1,15,8,1,15,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,0,10,14,5,0,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,15,0,4,15,3,12,11,1,7,4,1,13,12,7,11,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,8,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,15,8,1,15,8,1,15,0,14,2,10,14,0,6,9,1,13,8,1,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,9,4,1,13,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,5,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,2,2,3,12,11,1,7,8,9,12,7,11,6,10,4,1,13,8,4,4,1,13,8,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,6,10,4,1,13,8,4,4,1,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,7,12,13,8,6,10,4,1,13,8,4,4,1,13,8,8,6,9,1,13,8,1,1,14,11,9,1,11,9,1,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,15,3,12,11,1,7,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,11,9,1,11,7,12,15,8,15,7,12,8,9,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,14,6,9,1,13,9,1,8,6,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"1\"], \"clip_start\": 592.0, \"clip_end\": 595.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q15_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,1,15,3,12,11,1,7,8,9,8,6,9,1,13,8,2,8,9,12,1,7,12,5,11,7,12,15,8,15,8,1,15,8,1,15,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,0,10,14,5,0,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,15,0,4,15,3,12,11,1,7,4,1,13,12,7,11,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,8,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,15,8,1,15,8,1,15,0,14,2,10,14,0,6,9,1,13,8,1,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,9,4,1,13,3,12,11,1,7,8,6,10,4,1,13,8,4,4,1,13,5,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,2,2,3,12,11,1,7,8,9,12,7,11,6,10,4,1,13,8,4,4,1,13,8,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,14,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,6,10,4,1,13,8,4,4,1,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,7,12,13,8,6,10,4,1,13,8,4,4,1,13,8,8,6,9,1,13,8,1,1,14,11,9,1,11,9,1,11,7,12,15,8,15,8,1,15,8,1,15,8,1,15,8,1,15,3,12,11,1,7,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,11,9,1,11,7,12,15,8,15,7,12,8,9,8,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,14,6,9,1,13,9,1,8,6,9,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,7,12,6,10,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,4,1,13,8,4,4,1,13,8,4,4,1,13,8,4,4,1,13,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"7\", \"3\"], \"clip_start\": 817.0, \"clip_end\": 821.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,6,7,3,2,6,6,7,3,13,14,1,14,15,14,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,11,7,0,4,2,6,2,6,3,11,7,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,3,11,7,3,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,3,10,10,13,14,15,14,5,12,5,4,2,6,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,13,14,15,8,5,5,4,6,15,14,0,4,15,1,12,5,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,7,8,5,3,4,2,6,2,6,3,0,4,6,7,2,6,15,14,6,7,3,2,6,6,7,8,5,6,3,4,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,15,8,5,6,7,0,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,11,7,3,2,6,6,7,3,2,6,6,7,3,2,6,4,5,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,5,8,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,8,2,6,7,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,0,5,14,15,14,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,13,14,15,8,5,6,7,3,9,9,2,6,7,0,4,2,6,2,6,3,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,9,0,4,2,6,2,6,3,0,1,3,10,10,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,8,2,6,7,0,9,9,11,7,3,2,6,6,7,3,2,6,6,7,3,2,8,5,10,4,2,6,2,6,3,6,7,5,14,1,8,2,6,7,3,2,6,6,7,3,2,6,6,7,3,15,8,5,5,4,2,6,2,6,3,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 985.0, \"clip_end\": 990.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,6,7,3,2,6,6,7,3,13,14,1,14,15,14,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,11,7,0,4,2,6,2,6,3,11,7,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,3,11,7,3,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,3,10,10,13,14,15,14,5,12,5,4,2,6,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,13,14,15,8,5,5,4,6,15,14,0,4,15,1,12,5,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,7,8,5,3,4,2,6,2,6,3,0,4,6,7,2,6,15,14,6,7,3,2,6,6,7,8,5,6,3,4,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,15,8,5,6,7,0,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,11,7,3,2,6,6,7,3,2,6,6,7,3,2,6,4,5,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,5,8,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,8,2,6,7,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,0,5,14,15,14,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,13,14,15,8,5,6,7,3,9,9,2,6,7,0,4,2,6,2,6,3,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,9,0,4,2,6,2,6,3,0,1,3,10,10,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,8,2,6,7,0,9,9,11,7,3,2,6,6,7,3,2,6,6,7,3,2,8,5,10,4,2,6,2,6,3,6,7,5,14,1,8,2,6,7,3,2,6,6,7,3,2,6,6,7,3,15,8,5,5,4,2,6,2,6,3,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 404.0, \"clip_end\": 409.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,6,7,3,2,6,6,7,3,13,14,1,14,15,14,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,11,7,0,4,2,6,2,6,3,11,7,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,3,11,7,3,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,3,10,10,13,14,15,14,5,12,5,4,2,6,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,13,14,15,8,5,5,4,6,15,14,0,4,15,1,12,5,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,7,8,5,3,4,2,6,2,6,3,0,4,6,7,2,6,15,14,6,7,3,2,6,6,7,8,5,6,3,4,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,15,8,5,6,7,0,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,11,7,3,2,6,6,7,3,2,6,6,7,3,2,6,4,5,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,5,8,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,8,2,6,7,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,0,5,14,15,14,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,13,14,15,8,5,6,7,3,9,9,2,6,7,0,4,2,6,2,6,3,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,9,0,4,2,6,2,6,3,0,1,3,10,10,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,8,2,6,7,0,9,9,11,7,3,2,6,6,7,3,2,6,6,7,3,2,8,5,10,4,2,6,2,6,3,6,7,5,14,1,8,2,6,7,3,2,6,6,7,3,2,6,6,7,3,15,8,5,5,4,2,6,2,6,3,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"0\", \"4\", \"6\"], \"clip_start\": 623.0, \"clip_end\": 628.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,6,7,3,2,6,6,7,3,13,14,1,14,15,14,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,11,7,0,4,2,6,2,6,3,11,7,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,3,11,7,3,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,3,10,10,13,14,15,14,5,12,5,4,2,6,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,13,14,15,8,5,5,4,6,15,14,0,4,15,1,12,5,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,7,8,5,3,4,2,6,2,6,3,0,4,6,7,2,6,15,14,6,7,3,2,6,6,7,8,5,6,3,4,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,15,8,5,6,7,0,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,11,7,3,2,6,6,7,3,2,6,6,7,3,2,6,4,5,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,5,8,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,8,2,6,7,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,0,5,14,15,14,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,13,14,15,8,5,6,7,3,9,9,2,6,7,0,4,2,6,2,6,3,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,9,0,4,2,6,2,6,3,0,1,3,10,10,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,8,2,6,7,0,9,9,11,7,3,2,6,6,7,3,2,6,6,7,3,2,8,5,10,4,2,6,2,6,3,6,7,5,14,1,8,2,6,7,3,2,6,6,7,3,2,6,6,7,3,15,8,5,5,4,2,6,2,6,3,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 771.0, \"clip_end\": 775.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,6,7,3,2,6,6,7,3,13,14,1,14,15,14,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,11,7,0,4,2,6,2,6,3,11,7,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,3,11,7,3,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,3,10,10,13,14,15,14,5,12,5,4,2,6,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,13,14,15,8,5,5,4,6,15,14,0,4,15,1,12,5,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,7,8,5,3,4,2,6,2,6,3,0,4,6,7,2,6,15,14,6,7,3,2,6,6,7,8,5,6,3,4,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,15,8,5,6,7,0,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,11,7,3,2,6,6,7,3,2,6,6,7,3,2,6,4,5,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,5,8,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,8,2,6,7,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,0,5,14,15,14,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,13,14,15,8,5,6,7,3,9,9,2,6,7,0,4,2,6,2,6,3,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,9,0,4,2,6,2,6,3,0,1,3,10,10,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,8,2,6,7,0,9,9,11,7,3,2,6,6,7,3,2,6,6,7,3,2,8,5,10,4,2,6,2,6,3,6,7,5,14,1,8,2,6,7,3,2,6,6,7,3,2,6,6,7,3,15,8,5,5,4,2,6,2,6,3,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 961.0, \"clip_end\": 966.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,6,7,3,2,6,6,7,3,13,14,1,14,15,14,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,11,7,0,4,2,6,2,6,3,11,7,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,3,11,7,3,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,3,10,10,13,14,15,14,5,12,5,4,2,6,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,13,14,15,8,5,5,4,6,15,14,0,4,15,1,12,5,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,7,8,5,3,4,2,6,2,6,3,0,4,6,7,2,6,15,14,6,7,3,2,6,6,7,8,5,6,3,4,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,15,8,5,6,7,0,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,11,7,3,2,6,6,7,3,2,6,6,7,3,2,6,4,5,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,5,8,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,8,2,6,7,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,0,5,14,15,14,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,13,14,15,8,5,6,7,3,9,9,2,6,7,0,4,2,6,2,6,3,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,9,0,4,2,6,2,6,3,0,1,3,10,10,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,8,2,6,7,0,9,9,11,7,3,2,6,6,7,3,2,6,6,7,3,2,8,5,10,4,2,6,2,6,3,6,7,5,14,1,8,2,6,7,3,2,6,6,7,3,2,6,6,7,3,15,8,5,5,4,2,6,2,6,3,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"15\"], \"clip_start\": 705.0, \"clip_end\": 708.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,6,7,3,2,6,6,7,3,13,14,1,14,15,14,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,11,7,0,4,2,6,2,6,3,11,7,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,3,11,7,3,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,3,10,10,13,14,15,14,5,12,5,4,2,6,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,13,14,15,8,5,5,4,6,15,14,0,4,15,1,12,5,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,7,8,5,3,4,2,6,2,6,3,0,4,6,7,2,6,15,14,6,7,3,2,6,6,7,8,5,6,3,4,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,15,8,5,6,7,0,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,11,7,3,2,6,6,7,3,2,6,6,7,3,2,6,4,5,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,5,8,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,8,2,6,7,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,0,5,14,15,14,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,13,14,15,8,5,6,7,3,9,9,2,6,7,0,4,2,6,2,6,3,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,9,0,4,2,6,2,6,3,0,1,3,10,10,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,8,2,6,7,0,9,9,11,7,3,2,6,6,7,3,2,6,6,7,3,2,8,5,10,4,2,6,2,6,3,6,7,5,14,1,8,2,6,7,3,2,6,6,7,3,2,6,6,7,3,15,8,5,5,4,2,6,2,6,3,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"6\", \"6\", \"7\"], \"clip_start\": 690.0, \"clip_end\": 695.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,6,7,3,2,6,6,7,3,13,14,1,14,15,14,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,11,7,0,4,2,6,2,6,3,11,7,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,3,11,7,3,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,3,10,10,13,14,15,14,5,12,5,4,2,6,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,13,14,15,8,5,5,4,6,15,14,0,4,15,1,12,5,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,7,8,5,3,4,2,6,2,6,3,0,4,6,7,2,6,15,14,6,7,3,2,6,6,7,8,5,6,3,4,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,15,8,5,6,7,0,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,11,7,3,2,6,6,7,3,2,6,6,7,3,2,6,4,5,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,5,8,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,8,2,6,7,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,0,5,14,15,14,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,13,14,15,8,5,6,7,3,9,9,2,6,7,0,4,2,6,2,6,3,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,9,0,4,2,6,2,6,3,0,1,3,10,10,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,8,2,6,7,0,9,9,11,7,3,2,6,6,7,3,2,6,6,7,3,2,8,5,10,4,2,6,2,6,3,6,7,5,14,1,8,2,6,7,3,2,6,6,7,3,2,6,6,7,3,15,8,5,5,4,2,6,2,6,3,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"3\"], \"clip_start\": 890.0, \"clip_end\": 893.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,6,7,3,2,6,6,7,3,13,14,1,14,15,14,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,11,7,0,4,2,6,2,6,3,11,7,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,3,11,7,3,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,3,10,10,13,14,15,14,5,12,5,4,2,6,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,13,14,15,8,5,5,4,6,15,14,0,4,15,1,12,5,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,7,8,5,3,4,2,6,2,6,3,0,4,6,7,2,6,15,14,6,7,3,2,6,6,7,8,5,6,3,4,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,15,8,5,6,7,0,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,11,7,3,2,6,6,7,3,2,6,6,7,3,2,6,4,5,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,5,8,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,8,2,6,7,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,0,5,14,15,14,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,13,14,15,8,5,6,7,3,9,9,2,6,7,0,4,2,6,2,6,3,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,9,0,4,2,6,2,6,3,0,1,3,10,10,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,8,2,6,7,0,9,9,11,7,3,2,6,6,7,3,2,6,6,7,3,2,8,5,10,4,2,6,2,6,3,6,7,5,14,1,8,2,6,7,3,2,6,6,7,3,2,6,6,7,3,15,8,5,5,4,2,6,2,6,3,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"6\", \"6\"], \"clip_start\": 62.0, \"clip_end\": 66.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q9_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,6,7,3,2,6,6,7,3,13,14,1,14,15,14,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,11,7,0,4,2,6,2,6,3,11,7,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,3,11,7,3,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,3,10,10,13,14,15,14,5,12,5,4,2,6,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,13,14,15,8,5,5,4,6,15,14,0,4,15,1,12,5,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,7,8,5,3,4,2,6,2,6,3,0,4,6,7,2,6,15,14,6,7,3,2,6,6,7,8,5,6,3,4,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,15,8,5,6,7,0,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,11,7,3,2,6,6,7,3,2,6,6,7,3,2,6,4,5,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,5,8,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,8,2,6,7,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,0,5,14,15,14,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,13,14,15,8,5,6,7,3,9,9,2,6,7,0,4,2,6,2,6,3,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,9,0,4,2,6,2,6,3,0,1,3,10,10,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,8,2,6,7,0,9,9,11,7,3,2,6,6,7,3,2,6,6,7,3,2,8,5,10,4,2,6,2,6,3,6,7,5,14,1,8,2,6,7,3,2,6,6,7,3,2,6,6,7,3,15,8,5,5,4,2,6,2,6,3,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"14\", \"6\", \"7\", \"3\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q10_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,6,7,3,2,6,6,7,3,13,14,1,14,15,14,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,11,7,0,4,2,6,2,6,3,11,7,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,3,11,7,3,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,3,10,10,13,14,15,14,5,12,5,4,2,6,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,13,14,15,8,5,5,4,6,15,14,0,4,15,1,12,5,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,7,8,5,3,4,2,6,2,6,3,0,4,6,7,2,6,15,14,6,7,3,2,6,6,7,8,5,6,3,4,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,15,8,5,6,7,0,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,11,7,3,2,6,6,7,3,2,6,6,7,3,2,6,4,5,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,5,8,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,8,2,6,7,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,0,5,14,15,14,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,13,14,15,8,5,6,7,3,9,9,2,6,7,0,4,2,6,2,6,3,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,9,0,4,2,6,2,6,3,0,1,3,10,10,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,8,2,6,7,0,9,9,11,7,3,2,6,6,7,3,2,6,6,7,3,2,8,5,10,4,2,6,2,6,3,6,7,5,14,1,8,2,6,7,3,2,6,6,7,3,2,6,6,7,3,15,8,5,5,4,2,6,2,6,3,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"6\", \"6\"], \"clip_start\": 279.0, \"clip_end\": 283.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q11_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,6,7,3,2,6,6,7,3,13,14,1,14,15,14,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,11,7,0,4,2,6,2,6,3,11,7,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,3,11,7,3,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,3,10,10,13,14,15,14,5,12,5,4,2,6,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,13,14,15,8,5,5,4,6,15,14,0,4,15,1,12,5,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,7,8,5,3,4,2,6,2,6,3,0,4,6,7,2,6,15,14,6,7,3,2,6,6,7,8,5,6,3,4,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,15,8,5,6,7,0,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,11,7,3,2,6,6,7,3,2,6,6,7,3,2,6,4,5,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,5,8,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,8,2,6,7,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,0,5,14,15,14,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,13,14,15,8,5,6,7,3,9,9,2,6,7,0,4,2,6,2,6,3,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,9,0,4,2,6,2,6,3,0,1,3,10,10,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,8,2,6,7,0,9,9,11,7,3,2,6,6,7,3,2,6,6,7,3,2,8,5,10,4,2,6,2,6,3,6,7,5,14,1,8,2,6,7,3,2,6,6,7,3,2,6,6,7,3,15,8,5,5,4,2,6,2,6,3,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"3\", \"2\", \"6\", \"6\"], \"clip_start\": 763.0, \"clip_end\": 769.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q12_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,6,7,3,2,6,6,7,3,13,14,1,14,15,14,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,11,7,0,4,2,6,2,6,3,11,7,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,3,11,7,3,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,3,10,10,13,14,15,14,5,12,5,4,2,6,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,13,14,15,8,5,5,4,6,15,14,0,4,15,1,12,5,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,7,8,5,3,4,2,6,2,6,3,0,4,6,7,2,6,15,14,6,7,3,2,6,6,7,8,5,6,3,4,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,15,8,5,6,7,0,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,11,7,3,2,6,6,7,3,2,6,6,7,3,2,6,4,5,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,5,8,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,8,2,6,7,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,0,5,14,15,14,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,13,14,15,8,5,6,7,3,9,9,2,6,7,0,4,2,6,2,6,3,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,9,0,4,2,6,2,6,3,0,1,3,10,10,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,8,2,6,7,0,9,9,11,7,3,2,6,6,7,3,2,6,6,7,3,2,8,5,10,4,2,6,2,6,3,6,7,5,14,1,8,2,6,7,3,2,6,6,7,3,2,6,6,7,3,15,8,5,5,4,2,6,2,6,3,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"6\", \"6\"], \"clip_start\": 565.0, \"clip_end\": 569.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q13_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,6,7,3,2,6,6,7,3,13,14,1,14,15,14,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,11,7,0,4,2,6,2,6,3,11,7,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,3,11,7,3,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,3,10,10,13,14,15,14,5,12,5,4,2,6,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,13,14,15,8,5,5,4,6,15,14,0,4,15,1,12,5,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,7,8,5,3,4,2,6,2,6,3,0,4,6,7,2,6,15,14,6,7,3,2,6,6,7,8,5,6,3,4,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,15,8,5,6,7,0,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,11,7,3,2,6,6,7,3,2,6,6,7,3,2,6,4,5,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,5,8,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,8,2,6,7,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,0,5,14,15,14,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,13,14,15,8,5,6,7,3,9,9,2,6,7,0,4,2,6,2,6,3,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,9,0,4,2,6,2,6,3,0,1,3,10,10,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,8,2,6,7,0,9,9,11,7,3,2,6,6,7,3,2,6,6,7,3,2,8,5,10,4,2,6,2,6,3,6,7,5,14,1,8,2,6,7,3,2,6,6,7,3,2,6,6,7,3,15,8,5,5,4,2,6,2,6,3,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"11\", \"2\", \"3\"], \"clip_start\": 394.0, \"clip_end\": 399.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q14_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,6,7,3,2,6,6,7,3,13,14,1,14,15,14,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,11,7,0,4,2,6,2,6,3,11,7,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,3,11,7,3,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,3,10,10,13,14,15,14,5,12,5,4,2,6,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,13,14,15,8,5,5,4,6,15,14,0,4,15,1,12,5,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,7,8,5,3,4,2,6,2,6,3,0,4,6,7,2,6,15,14,6,7,3,2,6,6,7,8,5,6,3,4,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,15,8,5,6,7,0,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,11,7,3,2,6,6,7,3,2,6,6,7,3,2,6,4,5,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,5,8,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,8,2,6,7,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,0,5,14,15,14,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,13,14,15,8,5,6,7,3,9,9,2,6,7,0,4,2,6,2,6,3,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,9,0,4,2,6,2,6,3,0,1,3,10,10,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,8,2,6,7,0,9,9,11,7,3,2,6,6,7,3,2,6,6,7,3,2,8,5,10,4,2,6,2,6,3,6,7,5,14,1,8,2,6,7,3,2,6,6,7,3,2,6,6,7,3,15,8,5,5,4,2,6,2,6,3,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"13\", \"9\", \"14\"], \"clip_start\": 125.0, \"clip_end\": 130.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q15_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,6,7,3,2,6,6,7,3,13,14,1,14,15,14,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,11,7,0,4,2,6,2,6,3,11,7,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,3,11,7,3,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,3,10,10,13,14,15,14,5,12,5,4,2,6,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,13,14,15,8,5,5,4,6,15,14,0,4,15,1,12,5,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,7,8,5,3,4,2,6,2,6,3,0,4,6,7,2,6,15,14,6,7,3,2,6,6,7,8,5,6,3,4,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,15,8,5,6,7,0,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,11,7,3,2,6,6,7,3,2,6,6,7,3,2,6,4,5,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,5,8,5,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,1,8,2,6,7,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,2,6,3,0,5,14,15,14,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,13,14,15,8,5,6,7,3,9,9,2,6,7,0,4,2,6,2,6,3,0,4,2,6,2,6,3,0,4,7,3,2,6,6,7,9,0,4,2,6,2,6,3,0,1,3,10,10,4,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,8,2,6,7,0,9,9,11,7,3,2,6,6,7,3,2,6,6,7,3,2,8,5,10,4,2,6,2,6,3,6,7,5,14,1,8,2,6,7,3,2,6,6,7,3,2,6,6,7,3,15,8,5,5,4,2,6,2,6,3,0,4,6,7,2,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3,2,6,6,7,3", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"1\", \"8\", \"4\"], \"clip_start\": 468.0, \"clip_end\": 473.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,5,9,6,9,6,7,15,9,13,0,1,2,13,11,5,10,1,2,14,7,7,10,1,14,6,7,3,2,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,14,11,0,10,10,1,2,8,4,13,0,1,2,13,0,1,8,4,9,12,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,9,12,5,1,2,8,4,15,3,2,10,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,2,4,9,5,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,10,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,0,5,10,1,2,8,4,13,7,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,12,5,0,10,10,1,2,3,14,7,14,10,1,2,14,1,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,15,9,13,0,1,2,3,2,4,9,11,9,6,0,2,5,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,4,9,12,5,1,2,8,4,13,0,1,2,13,0,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,3,14,9,6,7,15,9,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,3,14,9,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,9,3,2,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,5,13,0,1,2,13,0,1,8,4,15,9,13,8,4,13,15,9,13,0,1,2,13,0,1,8,4,13,12,5,9,8,4,13,0,1,2,13,0,1,8,4,13,0,1,9,6,4,9,12,5,1,2,8,4,13,11,5,10,1,2,14,9,8,4,4,9,5,3,14,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,14,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,12,5,9,8,4,15,9,9,6,0,2,5,4,9,5,3,14,10,1,2,8,4,15,9,13,0,1,5,11,13,0,10,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,3,0,5,11,4,9,12,5,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,5,10,1,2,14,14,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,9,6,0,2,5,8,4,13,0,1,2,13,0,1,10,1,2,14,1,2,8,4,13,0,1,2,11,9,1,2,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"13\", \"0\"], \"clip_start\": 306.0, \"clip_end\": 310.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,5,9,6,9,6,7,15,9,13,0,1,2,13,11,5,10,1,2,14,7,7,10,1,14,6,7,3,2,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,14,11,0,10,10,1,2,8,4,13,0,1,2,13,0,1,8,4,9,12,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,9,12,5,1,2,8,4,15,3,2,10,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,2,4,9,5,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,10,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,0,5,10,1,2,8,4,13,7,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,12,5,0,10,10,1,2,3,14,7,14,10,1,2,14,1,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,15,9,13,0,1,2,3,2,4,9,11,9,6,0,2,5,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,4,9,12,5,1,2,8,4,13,0,1,2,13,0,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,3,14,9,6,7,15,9,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,3,14,9,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,9,3,2,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,5,13,0,1,2,13,0,1,8,4,15,9,13,8,4,13,15,9,13,0,1,2,13,0,1,8,4,13,12,5,9,8,4,13,0,1,2,13,0,1,8,4,13,0,1,9,6,4,9,12,5,1,2,8,4,13,11,5,10,1,2,14,9,8,4,4,9,5,3,14,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,14,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,12,5,9,8,4,15,9,9,6,0,2,5,4,9,5,3,14,10,1,2,8,4,15,9,13,0,1,5,11,13,0,10,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,3,0,5,11,4,9,12,5,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,5,10,1,2,14,14,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,9,6,0,2,5,8,4,13,0,1,2,13,0,1,10,1,2,14,1,2,8,4,13,0,1,2,11,9,1,2,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"8\", \"4\", \"13\", \"0\"], \"clip_start\": 770.0, \"clip_end\": 776.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,5,9,6,9,6,7,15,9,13,0,1,2,13,11,5,10,1,2,14,7,7,10,1,14,6,7,3,2,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,14,11,0,10,10,1,2,8,4,13,0,1,2,13,0,1,8,4,9,12,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,9,12,5,1,2,8,4,15,3,2,10,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,2,4,9,5,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,10,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,0,5,10,1,2,8,4,13,7,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,12,5,0,10,10,1,2,3,14,7,14,10,1,2,14,1,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,15,9,13,0,1,2,3,2,4,9,11,9,6,0,2,5,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,4,9,12,5,1,2,8,4,13,0,1,2,13,0,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,3,14,9,6,7,15,9,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,3,14,9,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,9,3,2,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,5,13,0,1,2,13,0,1,8,4,15,9,13,8,4,13,15,9,13,0,1,2,13,0,1,8,4,13,12,5,9,8,4,13,0,1,2,13,0,1,8,4,13,0,1,9,6,4,9,12,5,1,2,8,4,13,11,5,10,1,2,14,9,8,4,4,9,5,3,14,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,14,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,12,5,9,8,4,15,9,9,6,0,2,5,4,9,5,3,14,10,1,2,8,4,15,9,13,0,1,5,11,13,0,10,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,3,0,5,11,4,9,12,5,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,5,10,1,2,14,14,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,9,6,0,2,5,8,4,13,0,1,2,13,0,1,10,1,2,14,1,2,8,4,13,0,1,2,11,9,1,2,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"1\", \"2\", \"13\"], \"clip_start\": 201.0, \"clip_end\": 206.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,5,9,6,9,6,7,15,9,13,0,1,2,13,11,5,10,1,2,14,7,7,10,1,14,6,7,3,2,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,14,11,0,10,10,1,2,8,4,13,0,1,2,13,0,1,8,4,9,12,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,9,12,5,1,2,8,4,15,3,2,10,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,2,4,9,5,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,10,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,0,5,10,1,2,8,4,13,7,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,12,5,0,10,10,1,2,3,14,7,14,10,1,2,14,1,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,15,9,13,0,1,2,3,2,4,9,11,9,6,0,2,5,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,4,9,12,5,1,2,8,4,13,0,1,2,13,0,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,3,14,9,6,7,15,9,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,3,14,9,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,9,3,2,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,5,13,0,1,2,13,0,1,8,4,15,9,13,8,4,13,15,9,13,0,1,2,13,0,1,8,4,13,12,5,9,8,4,13,0,1,2,13,0,1,8,4,13,0,1,9,6,4,9,12,5,1,2,8,4,13,11,5,10,1,2,14,9,8,4,4,9,5,3,14,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,14,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,12,5,9,8,4,15,9,9,6,0,2,5,4,9,5,3,14,10,1,2,8,4,15,9,13,0,1,5,11,13,0,10,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,3,0,5,11,4,9,12,5,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,5,10,1,2,14,14,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,9,6,0,2,5,8,4,13,0,1,2,13,0,1,10,1,2,14,1,2,8,4,13,0,1,2,11,9,1,2,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"2\", \"8\", \"4\", \"15\"], \"clip_start\": 754.0, \"clip_end\": 759.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,5,9,6,9,6,7,15,9,13,0,1,2,13,11,5,10,1,2,14,7,7,10,1,14,6,7,3,2,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,14,11,0,10,10,1,2,8,4,13,0,1,2,13,0,1,8,4,9,12,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,9,12,5,1,2,8,4,15,3,2,10,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,2,4,9,5,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,10,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,0,5,10,1,2,8,4,13,7,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,12,5,0,10,10,1,2,3,14,7,14,10,1,2,14,1,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,15,9,13,0,1,2,3,2,4,9,11,9,6,0,2,5,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,4,9,12,5,1,2,8,4,13,0,1,2,13,0,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,3,14,9,6,7,15,9,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,3,14,9,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,9,3,2,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,5,13,0,1,2,13,0,1,8,4,15,9,13,8,4,13,15,9,13,0,1,2,13,0,1,8,4,13,12,5,9,8,4,13,0,1,2,13,0,1,8,4,13,0,1,9,6,4,9,12,5,1,2,8,4,13,11,5,10,1,2,14,9,8,4,4,9,5,3,14,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,14,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,12,5,9,8,4,15,9,9,6,0,2,5,4,9,5,3,14,10,1,2,8,4,15,9,13,0,1,5,11,13,0,10,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,3,0,5,11,4,9,12,5,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,5,10,1,2,14,14,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,9,6,0,2,5,8,4,13,0,1,2,13,0,1,10,1,2,14,1,2,8,4,13,0,1,2,11,9,1,2,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"0\", \"1\", \"2\", \"13\"], \"clip_start\": 78.0, \"clip_end\": 84.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,5,9,6,9,6,7,15,9,13,0,1,2,13,11,5,10,1,2,14,7,7,10,1,14,6,7,3,2,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,14,11,0,10,10,1,2,8,4,13,0,1,2,13,0,1,8,4,9,12,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,9,12,5,1,2,8,4,15,3,2,10,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,2,4,9,5,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,10,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,0,5,10,1,2,8,4,13,7,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,12,5,0,10,10,1,2,3,14,7,14,10,1,2,14,1,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,15,9,13,0,1,2,3,2,4,9,11,9,6,0,2,5,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,4,9,12,5,1,2,8,4,13,0,1,2,13,0,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,3,14,9,6,7,15,9,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,3,14,9,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,9,3,2,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,5,13,0,1,2,13,0,1,8,4,15,9,13,8,4,13,15,9,13,0,1,2,13,0,1,8,4,13,12,5,9,8,4,13,0,1,2,13,0,1,8,4,13,0,1,9,6,4,9,12,5,1,2,8,4,13,11,5,10,1,2,14,9,8,4,4,9,5,3,14,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,14,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,12,5,9,8,4,15,9,9,6,0,2,5,4,9,5,3,14,10,1,2,8,4,15,9,13,0,1,5,11,13,0,10,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,3,0,5,11,4,9,12,5,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,5,10,1,2,14,14,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,9,6,0,2,5,8,4,13,0,1,2,13,0,1,10,1,2,14,1,2,8,4,13,0,1,2,11,9,1,2,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"10\", \"1\", \"2\"], \"clip_start\": 379.0, \"clip_end\": 384.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,5,9,6,9,6,7,15,9,13,0,1,2,13,11,5,10,1,2,14,7,7,10,1,14,6,7,3,2,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,14,11,0,10,10,1,2,8,4,13,0,1,2,13,0,1,8,4,9,12,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,9,12,5,1,2,8,4,15,3,2,10,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,2,4,9,5,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,10,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,0,5,10,1,2,8,4,13,7,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,12,5,0,10,10,1,2,3,14,7,14,10,1,2,14,1,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,15,9,13,0,1,2,3,2,4,9,11,9,6,0,2,5,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,4,9,12,5,1,2,8,4,13,0,1,2,13,0,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,3,14,9,6,7,15,9,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,3,14,9,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,9,3,2,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,5,13,0,1,2,13,0,1,8,4,15,9,13,8,4,13,15,9,13,0,1,2,13,0,1,8,4,13,12,5,9,8,4,13,0,1,2,13,0,1,8,4,13,0,1,9,6,4,9,12,5,1,2,8,4,13,11,5,10,1,2,14,9,8,4,4,9,5,3,14,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,14,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,12,5,9,8,4,15,9,9,6,0,2,5,4,9,5,3,14,10,1,2,8,4,15,9,13,0,1,5,11,13,0,10,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,3,0,5,11,4,9,12,5,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,5,10,1,2,14,14,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,9,6,0,2,5,8,4,13,0,1,2,13,0,1,10,1,2,14,1,2,8,4,13,0,1,2,11,9,1,2,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"2\", \"13\", \"0\"], \"clip_start\": 887.0, \"clip_end\": 892.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,5,9,6,9,6,7,15,9,13,0,1,2,13,11,5,10,1,2,14,7,7,10,1,14,6,7,3,2,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,14,11,0,10,10,1,2,8,4,13,0,1,2,13,0,1,8,4,9,12,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,9,12,5,1,2,8,4,15,3,2,10,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,2,4,9,5,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,10,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,0,5,10,1,2,8,4,13,7,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,12,5,0,10,10,1,2,3,14,7,14,10,1,2,14,1,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,15,9,13,0,1,2,3,2,4,9,11,9,6,0,2,5,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,4,9,12,5,1,2,8,4,13,0,1,2,13,0,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,3,14,9,6,7,15,9,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,3,14,9,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,9,3,2,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,5,13,0,1,2,13,0,1,8,4,15,9,13,8,4,13,15,9,13,0,1,2,13,0,1,8,4,13,12,5,9,8,4,13,0,1,2,13,0,1,8,4,13,0,1,9,6,4,9,12,5,1,2,8,4,13,11,5,10,1,2,14,9,8,4,4,9,5,3,14,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,14,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,12,5,9,8,4,15,9,9,6,0,2,5,4,9,5,3,14,10,1,2,8,4,15,9,13,0,1,5,11,13,0,10,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,3,0,5,11,4,9,12,5,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,5,10,1,2,14,14,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,9,6,0,2,5,8,4,13,0,1,2,13,0,1,10,1,2,14,1,2,8,4,13,0,1,2,11,9,1,2,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"2\", \"13\"], \"clip_start\": 815.0, \"clip_end\": 818.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,5,9,6,9,6,7,15,9,13,0,1,2,13,11,5,10,1,2,14,7,7,10,1,14,6,7,3,2,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,14,11,0,10,10,1,2,8,4,13,0,1,2,13,0,1,8,4,9,12,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,9,12,5,1,2,8,4,15,3,2,10,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,2,4,9,5,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,10,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,0,5,10,1,2,8,4,13,7,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,12,5,0,10,10,1,2,3,14,7,14,10,1,2,14,1,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,15,9,13,0,1,2,3,2,4,9,11,9,6,0,2,5,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,4,9,12,5,1,2,8,4,13,0,1,2,13,0,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,3,14,9,6,7,15,9,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,3,14,9,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,9,3,2,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,5,13,0,1,2,13,0,1,8,4,15,9,13,8,4,13,15,9,13,0,1,2,13,0,1,8,4,13,12,5,9,8,4,13,0,1,2,13,0,1,8,4,13,0,1,9,6,4,9,12,5,1,2,8,4,13,11,5,10,1,2,14,9,8,4,4,9,5,3,14,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,14,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,12,5,9,8,4,15,9,9,6,0,2,5,4,9,5,3,14,10,1,2,8,4,15,9,13,0,1,5,11,13,0,10,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,3,0,5,11,4,9,12,5,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,5,10,1,2,14,14,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,9,6,0,2,5,8,4,13,0,1,2,13,0,1,10,1,2,14,1,2,8,4,13,0,1,2,11,9,1,2,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"2\", \"8\", \"4\", \"13\"], \"clip_start\": 583.0, \"clip_end\": 589.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,5,9,6,9,6,7,15,9,13,0,1,2,13,11,5,10,1,2,14,7,7,10,1,14,6,7,3,2,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,14,11,0,10,10,1,2,8,4,13,0,1,2,13,0,1,8,4,9,12,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,9,12,5,1,2,8,4,15,3,2,10,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,2,4,9,5,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,10,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,0,5,10,1,2,8,4,13,7,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,12,5,0,10,10,1,2,3,14,7,14,10,1,2,14,1,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,15,9,13,0,1,2,3,2,4,9,11,9,6,0,2,5,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,4,9,12,5,1,2,8,4,13,0,1,2,13,0,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,3,14,9,6,7,15,9,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,3,14,9,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,9,3,2,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,5,13,0,1,2,13,0,1,8,4,15,9,13,8,4,13,15,9,13,0,1,2,13,0,1,8,4,13,12,5,9,8,4,13,0,1,2,13,0,1,8,4,13,0,1,9,6,4,9,12,5,1,2,8,4,13,11,5,10,1,2,14,9,8,4,4,9,5,3,14,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,14,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,12,5,9,8,4,15,9,9,6,0,2,5,4,9,5,3,14,10,1,2,8,4,15,9,13,0,1,5,11,13,0,10,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,3,0,5,11,4,9,12,5,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,5,10,1,2,14,14,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,9,6,0,2,5,8,4,13,0,1,2,13,0,1,10,1,2,14,1,2,8,4,13,0,1,2,11,9,1,2,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"0\"], \"clip_start\": 432.0, \"clip_end\": 435.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,5,9,6,9,6,7,15,9,13,0,1,2,13,11,5,10,1,2,14,7,7,10,1,14,6,7,3,2,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,14,11,0,10,10,1,2,8,4,13,0,1,2,13,0,1,8,4,9,12,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,9,12,5,1,2,8,4,15,3,2,10,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,2,4,9,5,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,10,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,0,5,10,1,2,8,4,13,7,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,12,5,0,10,10,1,2,3,14,7,14,10,1,2,14,1,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,15,9,13,0,1,2,3,2,4,9,11,9,6,0,2,5,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,4,9,12,5,1,2,8,4,13,0,1,2,13,0,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,3,14,9,6,7,15,9,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,3,14,9,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,9,3,2,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,5,13,0,1,2,13,0,1,8,4,15,9,13,8,4,13,15,9,13,0,1,2,13,0,1,8,4,13,12,5,9,8,4,13,0,1,2,13,0,1,8,4,13,0,1,9,6,4,9,12,5,1,2,8,4,13,11,5,10,1,2,14,9,8,4,4,9,5,3,14,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,14,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,12,5,9,8,4,15,9,9,6,0,2,5,4,9,5,3,14,10,1,2,8,4,15,9,13,0,1,5,11,13,0,10,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,3,0,5,11,4,9,12,5,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,5,10,1,2,14,14,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,9,6,0,2,5,8,4,13,0,1,2,13,0,1,10,1,2,14,1,2,8,4,13,0,1,2,11,9,1,2,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"0\", \"10\"], \"clip_start\": 377.0, \"clip_end\": 381.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,5,9,6,9,6,7,15,9,13,0,1,2,13,11,5,10,1,2,14,7,7,10,1,14,6,7,3,2,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,14,11,0,10,10,1,2,8,4,13,0,1,2,13,0,1,8,4,9,12,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,9,12,5,1,2,8,4,15,3,2,10,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,2,4,9,5,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,10,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,0,5,10,1,2,8,4,13,7,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,12,5,0,10,10,1,2,3,14,7,14,10,1,2,14,1,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,15,9,13,0,1,2,3,2,4,9,11,9,6,0,2,5,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,4,9,12,5,1,2,8,4,13,0,1,2,13,0,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,3,14,9,6,7,15,9,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,3,14,9,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,9,3,2,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,5,13,0,1,2,13,0,1,8,4,15,9,13,8,4,13,15,9,13,0,1,2,13,0,1,8,4,13,12,5,9,8,4,13,0,1,2,13,0,1,8,4,13,0,1,9,6,4,9,12,5,1,2,8,4,13,11,5,10,1,2,14,9,8,4,4,9,5,3,14,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,14,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,12,5,9,8,4,15,9,9,6,0,2,5,4,9,5,3,14,10,1,2,8,4,15,9,13,0,1,5,11,13,0,10,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,3,0,5,11,4,9,12,5,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,5,10,1,2,14,14,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,9,6,0,2,5,8,4,13,0,1,2,13,0,1,10,1,2,14,1,2,8,4,13,0,1,2,11,9,1,2,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"8\", \"4\", \"15\", \"3\"], \"clip_start\": 343.0, \"clip_end\": 348.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,5,9,6,9,6,7,15,9,13,0,1,2,13,11,5,10,1,2,14,7,7,10,1,14,6,7,3,2,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,14,11,0,10,10,1,2,8,4,13,0,1,2,13,0,1,8,4,9,12,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,9,12,5,1,2,8,4,15,3,2,10,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,2,4,9,5,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,10,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,0,5,10,1,2,8,4,13,7,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,12,5,0,10,10,1,2,3,14,7,14,10,1,2,14,1,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,15,9,13,0,1,2,3,2,4,9,11,9,6,0,2,5,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,4,9,12,5,1,2,8,4,13,0,1,2,13,0,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,3,14,9,6,7,15,9,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,3,14,9,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,9,3,2,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,5,13,0,1,2,13,0,1,8,4,15,9,13,8,4,13,15,9,13,0,1,2,13,0,1,8,4,13,12,5,9,8,4,13,0,1,2,13,0,1,8,4,13,0,1,9,6,4,9,12,5,1,2,8,4,13,11,5,10,1,2,14,9,8,4,4,9,5,3,14,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,14,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,12,5,9,8,4,15,9,9,6,0,2,5,4,9,5,3,14,10,1,2,8,4,15,9,13,0,1,5,11,13,0,10,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,3,0,5,11,4,9,12,5,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,5,10,1,2,14,14,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,9,6,0,2,5,8,4,13,0,1,2,13,0,1,10,1,2,14,1,2,8,4,13,0,1,2,11,9,1,2,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"2\", \"13\", \"0\", \"8\", \"4\"], \"clip_start\": 458.0, \"clip_end\": 464.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,5,9,6,9,6,7,15,9,13,0,1,2,13,11,5,10,1,2,14,7,7,10,1,14,6,7,3,2,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,14,11,0,10,10,1,2,8,4,13,0,1,2,13,0,1,8,4,9,12,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,9,12,5,1,2,8,4,15,3,2,10,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,2,4,9,5,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,10,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,0,5,10,1,2,8,4,13,7,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,12,5,0,10,10,1,2,3,14,7,14,10,1,2,14,1,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,15,9,13,0,1,2,3,2,4,9,11,9,6,0,2,5,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,4,9,12,5,1,2,8,4,13,0,1,2,13,0,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,3,14,9,6,7,15,9,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,3,14,9,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,9,3,2,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,5,13,0,1,2,13,0,1,8,4,15,9,13,8,4,13,15,9,13,0,1,2,13,0,1,8,4,13,12,5,9,8,4,13,0,1,2,13,0,1,8,4,13,0,1,9,6,4,9,12,5,1,2,8,4,13,11,5,10,1,2,14,9,8,4,4,9,5,3,14,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,14,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,12,5,9,8,4,15,9,9,6,0,2,5,4,9,5,3,14,10,1,2,8,4,15,9,13,0,1,5,11,13,0,10,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,3,0,5,11,4,9,12,5,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,5,10,1,2,14,14,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,9,6,0,2,5,8,4,13,0,1,2,13,0,1,10,1,2,14,1,2,8,4,13,0,1,2,11,9,1,2,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"8\", \"4\", \"13\", \"0\"], \"clip_start\": 325.0, \"clip_end\": 330.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,5,9,6,9,6,7,15,9,13,0,1,2,13,11,5,10,1,2,14,7,7,10,1,14,6,7,3,2,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,14,11,0,10,10,1,2,8,4,13,0,1,2,13,0,1,8,4,9,12,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,9,12,5,1,2,8,4,15,3,2,10,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,2,4,9,5,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,10,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,0,5,10,1,2,8,4,13,7,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,12,5,0,10,10,1,2,3,14,7,14,10,1,2,14,1,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,15,9,13,0,1,2,3,2,4,9,11,9,6,0,2,5,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,4,9,12,5,1,2,8,4,13,0,1,2,13,0,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,3,14,9,6,7,15,9,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,3,14,9,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,9,3,2,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,5,13,0,1,2,13,0,1,8,4,15,9,13,8,4,13,15,9,13,0,1,2,13,0,1,8,4,13,12,5,9,8,4,13,0,1,2,13,0,1,8,4,13,0,1,9,6,4,9,12,5,1,2,8,4,13,11,5,10,1,2,14,9,8,4,4,9,5,3,14,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,14,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,12,5,9,8,4,15,9,9,6,0,2,5,4,9,5,3,14,10,1,2,8,4,15,9,13,0,1,5,11,13,0,10,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,3,0,5,11,4,9,12,5,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,5,10,1,2,14,14,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,9,6,0,2,5,8,4,13,0,1,2,13,0,1,10,1,2,14,1,2,8,4,13,0,1,2,11,9,1,2,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"1\", \"2\", \"13\"], \"clip_start\": 88.0, \"clip_end\": 93.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,5,9,6,9,6,7,15,9,13,0,1,2,13,11,5,10,1,2,14,7,7,10,1,14,6,7,3,2,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,14,11,0,10,10,1,2,8,4,13,0,1,2,13,0,1,8,4,9,12,4,9,5,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,9,12,5,1,2,8,4,15,3,2,10,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,2,4,9,5,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,8,4,13,8,4,13,0,1,2,13,0,1,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,10,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,0,5,10,1,2,8,4,13,7,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,12,5,0,10,10,1,2,3,14,7,14,10,1,2,14,1,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,15,9,13,0,1,2,3,2,4,9,11,9,6,0,2,5,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,4,9,12,5,1,2,8,4,13,0,1,2,13,0,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,3,14,9,6,7,15,9,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,3,14,9,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,9,3,2,4,9,12,5,1,2,8,4,13,0,1,2,13,0,1,8,4,15,3,2,4,9,5,13,0,1,2,13,0,1,8,4,15,9,13,8,4,13,15,9,13,0,1,2,13,0,1,8,4,13,12,5,9,8,4,13,0,1,2,13,0,1,8,4,13,0,1,9,6,4,9,12,5,1,2,8,4,13,11,5,10,1,2,14,9,8,4,4,9,5,3,14,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,14,9,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,12,5,9,8,4,15,9,9,6,0,2,5,4,9,5,3,14,10,1,2,8,4,15,9,13,0,1,5,11,13,0,10,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,8,4,15,9,9,6,7,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,3,0,5,11,4,9,12,5,1,2,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,5,10,1,2,14,14,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,15,9,9,6,0,2,5,8,4,13,0,1,2,13,0,1,10,1,2,14,1,2,8,4,13,0,1,2,11,9,1,2,8,4,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,15,9,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,8,4,13,0,1,2,13,0,1,2,13,0,1,8,4,13,0", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"3\", \"7\", \"4\"], \"clip_start\": 192.0, \"clip_end\": 197.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,13,13,12,6,10,13,12,15,10,8,14,3,4,11,13,14,6,10,13,15,6,4,3,4,12,7,0,4,11,12,6,4,10,12,5,6,15,10,8,15,10,2,10,12,9,3,4,11,13,14,6,10,7,0,4,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,3,15,10,2,10,12,2,12,2,5,10,11,13,5,6,15,10,12,9,6,4,11,0,6,9,6,10,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,15,10,12,11,3,4,11,13,14,6,10,7,0,4,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,9,6,10,7,0,3,7,4,11,14,13,13,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,4,11,0,6,6,10,0,3,7,4,11,0,8,10,0,8,10,0,8,10,0,0,4,11,10,12,13,12,2,5,4,11,0,0,3,7,0,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,11,13,8,10,0,0,3,9,10,12,10,12,12,0,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,10,7,0,3,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,10,0,8,10,0,8,10,0,8,10,0,0,3,8,10,0,0,3,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,12,5,6,15,10,2,10,12,5,6,15,10,12,0,3,11,9,6,10,7,0,4,11,0,6,6,4,11,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,3,4,11,13,14,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,12,6,4,11,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,13,12,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,5,6,15,10,8,10,0,15,10,2,10,11,13,5,14,13,13,12,14,13,13,15,10,2,10,11,13,5,6,0,3,7,0,4,3,5,8,10,0,0,1,15,0,3,11,13,8,14,3,5,8,10,0,0,3,8,10,0,0,3,8,10,0,0,3,8,10,0,8,10,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,4,2,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,11,11,13,5,15,10,2,10,3,5,2,14,13,13,12,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,0,4,11,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,9,6,4,11,10,11,3,4,11,13,14,6,10,7,4,11,0,6,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,6,6,4,11,0,6,9,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,11,13,12,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,14,14,13,13,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,1,15,0,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,14,13,5,6,15,10,12,0,3,3,4,11,13,14,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,0,4", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"14\", \"6\", \"10\"], \"clip_start\": 536.0, \"clip_end\": 541.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,13,13,12,6,10,13,12,15,10,8,14,3,4,11,13,14,6,10,13,15,6,4,3,4,12,7,0,4,11,12,6,4,10,12,5,6,15,10,8,15,10,2,10,12,9,3,4,11,13,14,6,10,7,0,4,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,3,15,10,2,10,12,2,12,2,5,10,11,13,5,6,15,10,12,9,6,4,11,0,6,9,6,10,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,15,10,12,11,3,4,11,13,14,6,10,7,0,4,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,9,6,10,7,0,3,7,4,11,14,13,13,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,4,11,0,6,6,10,0,3,7,4,11,0,8,10,0,8,10,0,8,10,0,0,4,11,10,12,13,12,2,5,4,11,0,0,3,7,0,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,11,13,8,10,0,0,3,9,10,12,10,12,12,0,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,10,7,0,3,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,10,0,8,10,0,8,10,0,8,10,0,0,3,8,10,0,0,3,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,12,5,6,15,10,2,10,12,5,6,15,10,12,0,3,11,9,6,10,7,0,4,11,0,6,6,4,11,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,3,4,11,13,14,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,12,6,4,11,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,13,12,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,5,6,15,10,8,10,0,15,10,2,10,11,13,5,14,13,13,12,14,13,13,15,10,2,10,11,13,5,6,0,3,7,0,4,3,5,8,10,0,0,1,15,0,3,11,13,8,14,3,5,8,10,0,0,3,8,10,0,0,3,8,10,0,0,3,8,10,0,8,10,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,4,2,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,11,11,13,5,15,10,2,10,3,5,2,14,13,13,12,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,0,4,11,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,9,6,4,11,10,11,3,4,11,13,14,6,10,7,4,11,0,6,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,6,6,4,11,0,6,9,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,11,13,12,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,14,14,13,13,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,1,15,0,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,14,13,5,6,15,10,12,0,3,3,4,11,13,14,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,0,4", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"0\", \"3\", \"7\"], \"clip_start\": 922.0, \"clip_end\": 927.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,13,13,12,6,10,13,12,15,10,8,14,3,4,11,13,14,6,10,13,15,6,4,3,4,12,7,0,4,11,12,6,4,10,12,5,6,15,10,8,15,10,2,10,12,9,3,4,11,13,14,6,10,7,0,4,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,3,15,10,2,10,12,2,12,2,5,10,11,13,5,6,15,10,12,9,6,4,11,0,6,9,6,10,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,15,10,12,11,3,4,11,13,14,6,10,7,0,4,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,9,6,10,7,0,3,7,4,11,14,13,13,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,4,11,0,6,6,10,0,3,7,4,11,0,8,10,0,8,10,0,8,10,0,0,4,11,10,12,13,12,2,5,4,11,0,0,3,7,0,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,11,13,8,10,0,0,3,9,10,12,10,12,12,0,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,10,7,0,3,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,10,0,8,10,0,8,10,0,8,10,0,0,3,8,10,0,0,3,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,12,5,6,15,10,2,10,12,5,6,15,10,12,0,3,11,9,6,10,7,0,4,11,0,6,6,4,11,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,3,4,11,13,14,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,12,6,4,11,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,13,12,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,5,6,15,10,8,10,0,15,10,2,10,11,13,5,14,13,13,12,14,13,13,15,10,2,10,11,13,5,6,0,3,7,0,4,3,5,8,10,0,0,1,15,0,3,11,13,8,14,3,5,8,10,0,0,3,8,10,0,0,3,8,10,0,0,3,8,10,0,8,10,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,4,2,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,11,11,13,5,15,10,2,10,3,5,2,14,13,13,12,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,0,4,11,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,9,6,4,11,10,11,3,4,11,13,14,6,10,7,4,11,0,6,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,6,6,4,11,0,6,9,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,11,13,12,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,14,14,13,13,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,1,15,0,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,14,13,5,6,15,10,12,0,3,3,4,11,13,14,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,0,4", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"11\", \"0\", \"6\"], \"clip_start\": 173.0, \"clip_end\": 178.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,13,13,12,6,10,13,12,15,10,8,14,3,4,11,13,14,6,10,13,15,6,4,3,4,12,7,0,4,11,12,6,4,10,12,5,6,15,10,8,15,10,2,10,12,9,3,4,11,13,14,6,10,7,0,4,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,3,15,10,2,10,12,2,12,2,5,10,11,13,5,6,15,10,12,9,6,4,11,0,6,9,6,10,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,15,10,12,11,3,4,11,13,14,6,10,7,0,4,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,9,6,10,7,0,3,7,4,11,14,13,13,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,4,11,0,6,6,10,0,3,7,4,11,0,8,10,0,8,10,0,8,10,0,0,4,11,10,12,13,12,2,5,4,11,0,0,3,7,0,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,11,13,8,10,0,0,3,9,10,12,10,12,12,0,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,10,7,0,3,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,10,0,8,10,0,8,10,0,8,10,0,0,3,8,10,0,0,3,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,12,5,6,15,10,2,10,12,5,6,15,10,12,0,3,11,9,6,10,7,0,4,11,0,6,6,4,11,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,3,4,11,13,14,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,12,6,4,11,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,13,12,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,5,6,15,10,8,10,0,15,10,2,10,11,13,5,14,13,13,12,14,13,13,15,10,2,10,11,13,5,6,0,3,7,0,4,3,5,8,10,0,0,1,15,0,3,11,13,8,14,3,5,8,10,0,0,3,8,10,0,0,3,8,10,0,0,3,8,10,0,8,10,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,4,2,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,11,11,13,5,15,10,2,10,3,5,2,14,13,13,12,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,0,4,11,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,9,6,4,11,10,11,3,4,11,13,14,6,10,7,4,11,0,6,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,6,6,4,11,0,6,9,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,11,13,12,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,14,14,13,13,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,1,15,0,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,14,13,5,6,15,10,12,0,3,3,4,11,13,14,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,0,4", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"0\", \"3\", \"3\"], \"clip_start\": 438.0, \"clip_end\": 443.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,13,13,12,6,10,13,12,15,10,8,14,3,4,11,13,14,6,10,13,15,6,4,3,4,12,7,0,4,11,12,6,4,10,12,5,6,15,10,8,15,10,2,10,12,9,3,4,11,13,14,6,10,7,0,4,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,3,15,10,2,10,12,2,12,2,5,10,11,13,5,6,15,10,12,9,6,4,11,0,6,9,6,10,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,15,10,12,11,3,4,11,13,14,6,10,7,0,4,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,9,6,10,7,0,3,7,4,11,14,13,13,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,4,11,0,6,6,10,0,3,7,4,11,0,8,10,0,8,10,0,8,10,0,0,4,11,10,12,13,12,2,5,4,11,0,0,3,7,0,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,11,13,8,10,0,0,3,9,10,12,10,12,12,0,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,10,7,0,3,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,10,0,8,10,0,8,10,0,8,10,0,0,3,8,10,0,0,3,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,12,5,6,15,10,2,10,12,5,6,15,10,12,0,3,11,9,6,10,7,0,4,11,0,6,6,4,11,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,3,4,11,13,14,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,12,6,4,11,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,13,12,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,5,6,15,10,8,10,0,15,10,2,10,11,13,5,14,13,13,12,14,13,13,15,10,2,10,11,13,5,6,0,3,7,0,4,3,5,8,10,0,0,1,15,0,3,11,13,8,14,3,5,8,10,0,0,3,8,10,0,0,3,8,10,0,0,3,8,10,0,8,10,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,4,2,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,11,11,13,5,15,10,2,10,3,5,2,14,13,13,12,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,0,4,11,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,9,6,4,11,10,11,3,4,11,13,14,6,10,7,4,11,0,6,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,6,6,4,11,0,6,9,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,11,13,12,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,14,14,13,13,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,1,15,0,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,14,13,5,6,15,10,12,0,3,3,4,11,13,14,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,0,4", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"0\", \"6\"], \"clip_start\": 201.0, \"clip_end\": 205.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,13,13,12,6,10,13,12,15,10,8,14,3,4,11,13,14,6,10,13,15,6,4,3,4,12,7,0,4,11,12,6,4,10,12,5,6,15,10,8,15,10,2,10,12,9,3,4,11,13,14,6,10,7,0,4,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,3,15,10,2,10,12,2,12,2,5,10,11,13,5,6,15,10,12,9,6,4,11,0,6,9,6,10,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,15,10,12,11,3,4,11,13,14,6,10,7,0,4,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,9,6,10,7,0,3,7,4,11,14,13,13,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,4,11,0,6,6,10,0,3,7,4,11,0,8,10,0,8,10,0,8,10,0,0,4,11,10,12,13,12,2,5,4,11,0,0,3,7,0,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,11,13,8,10,0,0,3,9,10,12,10,12,12,0,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,10,7,0,3,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,10,0,8,10,0,8,10,0,8,10,0,0,3,8,10,0,0,3,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,12,5,6,15,10,2,10,12,5,6,15,10,12,0,3,11,9,6,10,7,0,4,11,0,6,6,4,11,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,3,4,11,13,14,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,12,6,4,11,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,13,12,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,5,6,15,10,8,10,0,15,10,2,10,11,13,5,14,13,13,12,14,13,13,15,10,2,10,11,13,5,6,0,3,7,0,4,3,5,8,10,0,0,1,15,0,3,11,13,8,14,3,5,8,10,0,0,3,8,10,0,0,3,8,10,0,0,3,8,10,0,8,10,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,4,2,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,11,11,13,5,15,10,2,10,3,5,2,14,13,13,12,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,0,4,11,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,9,6,4,11,10,11,3,4,11,13,14,6,10,7,4,11,0,6,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,6,6,4,11,0,6,9,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,11,13,12,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,14,14,13,13,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,1,15,0,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,14,13,5,6,15,10,12,0,3,3,4,11,13,14,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,0,4", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 863.0, \"clip_end\": 866.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,13,13,12,6,10,13,12,15,10,8,14,3,4,11,13,14,6,10,13,15,6,4,3,4,12,7,0,4,11,12,6,4,10,12,5,6,15,10,8,15,10,2,10,12,9,3,4,11,13,14,6,10,7,0,4,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,3,15,10,2,10,12,2,12,2,5,10,11,13,5,6,15,10,12,9,6,4,11,0,6,9,6,10,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,15,10,12,11,3,4,11,13,14,6,10,7,0,4,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,9,6,10,7,0,3,7,4,11,14,13,13,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,4,11,0,6,6,10,0,3,7,4,11,0,8,10,0,8,10,0,8,10,0,0,4,11,10,12,13,12,2,5,4,11,0,0,3,7,0,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,11,13,8,10,0,0,3,9,10,12,10,12,12,0,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,10,7,0,3,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,10,0,8,10,0,8,10,0,8,10,0,0,3,8,10,0,0,3,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,12,5,6,15,10,2,10,12,5,6,15,10,12,0,3,11,9,6,10,7,0,4,11,0,6,6,4,11,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,3,4,11,13,14,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,12,6,4,11,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,13,12,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,5,6,15,10,8,10,0,15,10,2,10,11,13,5,14,13,13,12,14,13,13,15,10,2,10,11,13,5,6,0,3,7,0,4,3,5,8,10,0,0,1,15,0,3,11,13,8,14,3,5,8,10,0,0,3,8,10,0,0,3,8,10,0,0,3,8,10,0,8,10,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,4,2,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,11,11,13,5,15,10,2,10,3,5,2,14,13,13,12,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,0,4,11,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,9,6,4,11,10,11,3,4,11,13,14,6,10,7,4,11,0,6,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,6,6,4,11,0,6,9,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,11,13,12,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,14,14,13,13,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,1,15,0,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,14,13,5,6,15,10,12,0,3,3,4,11,13,14,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,0,4", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"0\", \"0\"], \"clip_start\": 282.0, \"clip_end\": 286.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,13,13,12,6,10,13,12,15,10,8,14,3,4,11,13,14,6,10,13,15,6,4,3,4,12,7,0,4,11,12,6,4,10,12,5,6,15,10,8,15,10,2,10,12,9,3,4,11,13,14,6,10,7,0,4,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,3,15,10,2,10,12,2,12,2,5,10,11,13,5,6,15,10,12,9,6,4,11,0,6,9,6,10,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,15,10,12,11,3,4,11,13,14,6,10,7,0,4,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,9,6,10,7,0,3,7,4,11,14,13,13,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,4,11,0,6,6,10,0,3,7,4,11,0,8,10,0,8,10,0,8,10,0,0,4,11,10,12,13,12,2,5,4,11,0,0,3,7,0,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,11,13,8,10,0,0,3,9,10,12,10,12,12,0,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,10,7,0,3,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,10,0,8,10,0,8,10,0,8,10,0,0,3,8,10,0,0,3,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,12,5,6,15,10,2,10,12,5,6,15,10,12,0,3,11,9,6,10,7,0,4,11,0,6,6,4,11,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,3,4,11,13,14,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,12,6,4,11,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,13,12,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,5,6,15,10,8,10,0,15,10,2,10,11,13,5,14,13,13,12,14,13,13,15,10,2,10,11,13,5,6,0,3,7,0,4,3,5,8,10,0,0,1,15,0,3,11,13,8,14,3,5,8,10,0,0,3,8,10,0,0,3,8,10,0,0,3,8,10,0,8,10,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,4,2,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,11,11,13,5,15,10,2,10,3,5,2,14,13,13,12,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,0,4,11,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,9,6,4,11,10,11,3,4,11,13,14,6,10,7,4,11,0,6,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,6,6,4,11,0,6,9,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,11,13,12,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,14,14,13,13,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,1,15,0,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,14,13,5,6,15,10,12,0,3,3,4,11,13,14,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,0,4", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"5\", \"4\", \"11\", \"0\"], \"clip_start\": 263.0, \"clip_end\": 268.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,13,13,12,6,10,13,12,15,10,8,14,3,4,11,13,14,6,10,13,15,6,4,3,4,12,7,0,4,11,12,6,4,10,12,5,6,15,10,8,15,10,2,10,12,9,3,4,11,13,14,6,10,7,0,4,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,3,15,10,2,10,12,2,12,2,5,10,11,13,5,6,15,10,12,9,6,4,11,0,6,9,6,10,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,15,10,12,11,3,4,11,13,14,6,10,7,0,4,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,9,6,10,7,0,3,7,4,11,14,13,13,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,4,11,0,6,6,10,0,3,7,4,11,0,8,10,0,8,10,0,8,10,0,0,4,11,10,12,13,12,2,5,4,11,0,0,3,7,0,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,11,13,8,10,0,0,3,9,10,12,10,12,12,0,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,10,7,0,3,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,10,0,8,10,0,8,10,0,8,10,0,0,3,8,10,0,0,3,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,12,5,6,15,10,2,10,12,5,6,15,10,12,0,3,11,9,6,10,7,0,4,11,0,6,6,4,11,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,3,4,11,13,14,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,12,6,4,11,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,13,12,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,5,6,15,10,8,10,0,15,10,2,10,11,13,5,14,13,13,12,14,13,13,15,10,2,10,11,13,5,6,0,3,7,0,4,3,5,8,10,0,0,1,15,0,3,11,13,8,14,3,5,8,10,0,0,3,8,10,0,0,3,8,10,0,0,3,8,10,0,8,10,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,4,2,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,11,11,13,5,15,10,2,10,3,5,2,14,13,13,12,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,0,4,11,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,9,6,4,11,10,11,3,4,11,13,14,6,10,7,4,11,0,6,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,6,6,4,11,0,6,9,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,11,13,12,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,14,14,13,13,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,1,15,0,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,14,13,5,6,15,10,12,0,3,3,4,11,13,14,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,0,4", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"14\", \"6\"], \"clip_start\": 444.0, \"clip_end\": 448.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,13,13,12,6,10,13,12,15,10,8,14,3,4,11,13,14,6,10,13,15,6,4,3,4,12,7,0,4,11,12,6,4,10,12,5,6,15,10,8,15,10,2,10,12,9,3,4,11,13,14,6,10,7,0,4,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,3,15,10,2,10,12,2,12,2,5,10,11,13,5,6,15,10,12,9,6,4,11,0,6,9,6,10,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,15,10,12,11,3,4,11,13,14,6,10,7,0,4,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,9,6,10,7,0,3,7,4,11,14,13,13,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,4,11,0,6,6,10,0,3,7,4,11,0,8,10,0,8,10,0,8,10,0,0,4,11,10,12,13,12,2,5,4,11,0,0,3,7,0,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,11,13,8,10,0,0,3,9,10,12,10,12,12,0,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,10,7,0,3,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,10,0,8,10,0,8,10,0,8,10,0,0,3,8,10,0,0,3,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,12,5,6,15,10,2,10,12,5,6,15,10,12,0,3,11,9,6,10,7,0,4,11,0,6,6,4,11,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,3,4,11,13,14,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,12,6,4,11,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,13,12,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,5,6,15,10,8,10,0,15,10,2,10,11,13,5,14,13,13,12,14,13,13,15,10,2,10,11,13,5,6,0,3,7,0,4,3,5,8,10,0,0,1,15,0,3,11,13,8,14,3,5,8,10,0,0,3,8,10,0,0,3,8,10,0,0,3,8,10,0,8,10,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,4,2,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,11,11,13,5,15,10,2,10,3,5,2,14,13,13,12,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,0,4,11,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,9,6,4,11,10,11,3,4,11,13,14,6,10,7,4,11,0,6,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,6,6,4,11,0,6,9,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,11,13,12,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,14,14,13,13,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,1,15,0,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,14,13,5,6,15,10,12,0,3,3,4,11,13,14,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,0,4", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"11\", \"0\", \"0\"], \"clip_start\": 471.0, \"clip_end\": 476.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,13,13,12,6,10,13,12,15,10,8,14,3,4,11,13,14,6,10,13,15,6,4,3,4,12,7,0,4,11,12,6,4,10,12,5,6,15,10,8,15,10,2,10,12,9,3,4,11,13,14,6,10,7,0,4,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,3,15,10,2,10,12,2,12,2,5,10,11,13,5,6,15,10,12,9,6,4,11,0,6,9,6,10,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,15,10,12,11,3,4,11,13,14,6,10,7,0,4,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,9,6,10,7,0,3,7,4,11,14,13,13,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,4,11,0,6,6,10,0,3,7,4,11,0,8,10,0,8,10,0,8,10,0,0,4,11,10,12,13,12,2,5,4,11,0,0,3,7,0,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,11,13,8,10,0,0,3,9,10,12,10,12,12,0,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,10,7,0,3,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,10,0,8,10,0,8,10,0,8,10,0,0,3,8,10,0,0,3,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,12,5,6,15,10,2,10,12,5,6,15,10,12,0,3,11,9,6,10,7,0,4,11,0,6,6,4,11,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,3,4,11,13,14,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,12,6,4,11,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,13,12,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,5,6,15,10,8,10,0,15,10,2,10,11,13,5,14,13,13,12,14,13,13,15,10,2,10,11,13,5,6,0,3,7,0,4,3,5,8,10,0,0,1,15,0,3,11,13,8,14,3,5,8,10,0,0,3,8,10,0,0,3,8,10,0,0,3,8,10,0,8,10,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,4,2,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,11,11,13,5,15,10,2,10,3,5,2,14,13,13,12,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,0,4,11,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,9,6,4,11,10,11,3,4,11,13,14,6,10,7,4,11,0,6,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,6,6,4,11,0,6,9,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,11,13,12,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,14,14,13,13,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,1,15,0,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,14,13,5,6,15,10,12,0,3,3,4,11,13,14,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,0,4", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"0\", \"6\"], \"clip_start\": 670.0, \"clip_end\": 674.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,13,13,12,6,10,13,12,15,10,8,14,3,4,11,13,14,6,10,13,15,6,4,3,4,12,7,0,4,11,12,6,4,10,12,5,6,15,10,8,15,10,2,10,12,9,3,4,11,13,14,6,10,7,0,4,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,3,15,10,2,10,12,2,12,2,5,10,11,13,5,6,15,10,12,9,6,4,11,0,6,9,6,10,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,15,10,12,11,3,4,11,13,14,6,10,7,0,4,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,9,6,10,7,0,3,7,4,11,14,13,13,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,4,11,0,6,6,10,0,3,7,4,11,0,8,10,0,8,10,0,8,10,0,0,4,11,10,12,13,12,2,5,4,11,0,0,3,7,0,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,11,13,8,10,0,0,3,9,10,12,10,12,12,0,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,10,7,0,3,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,10,0,8,10,0,8,10,0,8,10,0,0,3,8,10,0,0,3,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,12,5,6,15,10,2,10,12,5,6,15,10,12,0,3,11,9,6,10,7,0,4,11,0,6,6,4,11,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,3,4,11,13,14,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,12,6,4,11,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,13,12,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,5,6,15,10,8,10,0,15,10,2,10,11,13,5,14,13,13,12,14,13,13,15,10,2,10,11,13,5,6,0,3,7,0,4,3,5,8,10,0,0,1,15,0,3,11,13,8,14,3,5,8,10,0,0,3,8,10,0,0,3,8,10,0,0,3,8,10,0,8,10,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,4,2,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,11,11,13,5,15,10,2,10,3,5,2,14,13,13,12,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,0,4,11,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,9,6,4,11,10,11,3,4,11,13,14,6,10,7,4,11,0,6,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,6,6,4,11,0,6,9,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,11,13,12,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,14,14,13,13,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,1,15,0,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,14,13,5,6,15,10,12,0,3,3,4,11,13,14,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,0,4", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\"], \"clip_start\": 326.0, \"clip_end\": 329.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,13,13,12,6,10,13,12,15,10,8,14,3,4,11,13,14,6,10,13,15,6,4,3,4,12,7,0,4,11,12,6,4,10,12,5,6,15,10,8,15,10,2,10,12,9,3,4,11,13,14,6,10,7,0,4,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,3,15,10,2,10,12,2,12,2,5,10,11,13,5,6,15,10,12,9,6,4,11,0,6,9,6,10,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,15,10,12,11,3,4,11,13,14,6,10,7,0,4,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,9,6,10,7,0,3,7,4,11,14,13,13,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,4,11,0,6,6,10,0,3,7,4,11,0,8,10,0,8,10,0,8,10,0,0,4,11,10,12,13,12,2,5,4,11,0,0,3,7,0,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,11,13,8,10,0,0,3,9,10,12,10,12,12,0,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,10,7,0,3,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,10,0,8,10,0,8,10,0,8,10,0,0,3,8,10,0,0,3,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,12,5,6,15,10,2,10,12,5,6,15,10,12,0,3,11,9,6,10,7,0,4,11,0,6,6,4,11,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,3,4,11,13,14,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,12,6,4,11,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,13,12,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,5,6,15,10,8,10,0,15,10,2,10,11,13,5,14,13,13,12,14,13,13,15,10,2,10,11,13,5,6,0,3,7,0,4,3,5,8,10,0,0,1,15,0,3,11,13,8,14,3,5,8,10,0,0,3,8,10,0,0,3,8,10,0,0,3,8,10,0,8,10,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,4,2,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,11,11,13,5,15,10,2,10,3,5,2,14,13,13,12,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,0,4,11,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,9,6,4,11,10,11,3,4,11,13,14,6,10,7,4,11,0,6,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,6,6,4,11,0,6,9,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,11,13,12,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,14,14,13,13,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,1,15,0,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,14,13,5,6,15,10,12,0,3,3,4,11,13,14,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,0,4", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"0\", \"3\", \"7\", \"0\"], \"clip_start\": 310.0, \"clip_end\": 316.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q13_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,13,13,12,6,10,13,12,15,10,8,14,3,4,11,13,14,6,10,13,15,6,4,3,4,12,7,0,4,11,12,6,4,10,12,5,6,15,10,8,15,10,2,10,12,9,3,4,11,13,14,6,10,7,0,4,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,3,15,10,2,10,12,2,12,2,5,10,11,13,5,6,15,10,12,9,6,4,11,0,6,9,6,10,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,15,10,12,11,3,4,11,13,14,6,10,7,0,4,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,9,6,10,7,0,3,7,4,11,14,13,13,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,4,11,0,6,6,10,0,3,7,4,11,0,8,10,0,8,10,0,8,10,0,0,4,11,10,12,13,12,2,5,4,11,0,0,3,7,0,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,11,13,8,10,0,0,3,9,10,12,10,12,12,0,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,10,7,0,3,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,10,0,8,10,0,8,10,0,8,10,0,0,3,8,10,0,0,3,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,12,5,6,15,10,2,10,12,5,6,15,10,12,0,3,11,9,6,10,7,0,4,11,0,6,6,4,11,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,3,4,11,13,14,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,12,6,4,11,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,13,12,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,5,6,15,10,8,10,0,15,10,2,10,11,13,5,14,13,13,12,14,13,13,15,10,2,10,11,13,5,6,0,3,7,0,4,3,5,8,10,0,0,1,15,0,3,11,13,8,14,3,5,8,10,0,0,3,8,10,0,0,3,8,10,0,0,3,8,10,0,8,10,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,4,2,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,11,11,13,5,15,10,2,10,3,5,2,14,13,13,12,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,0,4,11,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,9,6,4,11,10,11,3,4,11,13,14,6,10,7,4,11,0,6,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,6,6,4,11,0,6,9,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,11,13,12,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,14,14,13,13,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,1,15,0,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,14,13,5,6,15,10,12,0,3,3,4,11,13,14,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,0,4", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"0\", \"6\", \"6\", \"10\", \"0\"], \"clip_start\": 1003.0, \"clip_end\": 1009.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,13,13,12,6,10,13,12,15,10,8,14,3,4,11,13,14,6,10,13,15,6,4,3,4,12,7,0,4,11,12,6,4,10,12,5,6,15,10,8,15,10,2,10,12,9,3,4,11,13,14,6,10,7,0,4,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,3,15,10,2,10,12,2,12,2,5,10,11,13,5,6,15,10,12,9,6,4,11,0,6,9,6,10,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,15,10,12,11,3,4,11,13,14,6,10,7,0,4,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,9,6,10,7,0,3,7,4,11,14,13,13,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,4,11,0,6,6,10,0,3,7,4,11,0,8,10,0,8,10,0,8,10,0,0,4,11,10,12,13,12,2,5,4,11,0,0,3,7,0,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,11,13,8,10,0,0,3,9,10,12,10,12,12,0,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,10,7,0,3,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,10,0,8,10,0,8,10,0,8,10,0,0,3,8,10,0,0,3,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,12,5,6,15,10,2,10,12,5,6,15,10,12,0,3,11,9,6,10,7,0,4,11,0,6,6,4,11,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,3,4,11,13,14,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,12,6,4,11,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,13,12,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,5,6,15,10,8,10,0,15,10,2,10,11,13,5,14,13,13,12,14,13,13,15,10,2,10,11,13,5,6,0,3,7,0,4,3,5,8,10,0,0,1,15,0,3,11,13,8,14,3,5,8,10,0,0,3,8,10,0,0,3,8,10,0,0,3,8,10,0,8,10,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,4,2,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,11,11,13,5,15,10,2,10,3,5,2,14,13,13,12,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,0,4,11,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,9,6,4,11,10,11,3,4,11,13,14,6,10,7,4,11,0,6,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,6,6,4,11,0,6,9,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,11,13,12,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,14,14,13,13,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,1,15,0,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,14,13,5,6,15,10,12,0,3,3,4,11,13,14,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,0,4", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"0\", \"6\", \"6\", \"4\"], \"clip_start\": 150.0, \"clip_end\": 155.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,13,13,12,6,10,13,12,15,10,8,14,3,4,11,13,14,6,10,13,15,6,4,3,4,12,7,0,4,11,12,6,4,10,12,5,6,15,10,8,15,10,2,10,12,9,3,4,11,13,14,6,10,7,0,4,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,3,15,10,2,10,12,2,12,2,5,10,11,13,5,6,15,10,12,9,6,4,11,0,6,9,6,10,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,15,10,12,11,3,4,11,13,14,6,10,7,0,4,6,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,9,6,10,7,0,3,7,4,11,14,13,13,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,4,11,0,6,6,10,0,3,7,4,11,0,8,10,0,8,10,0,8,10,0,0,4,11,10,12,13,12,2,5,4,11,0,0,3,7,0,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,11,13,8,10,0,0,3,9,10,12,10,12,12,0,4,11,0,6,6,4,11,0,6,6,10,0,3,7,0,3,3,4,11,13,14,6,10,7,0,3,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,10,0,8,10,0,8,10,0,8,10,0,0,3,8,10,0,0,3,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,14,8,12,5,6,15,10,2,10,12,5,6,15,10,12,0,3,11,9,6,10,7,0,4,11,0,6,6,4,11,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,3,4,11,13,14,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,12,6,4,11,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,13,12,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,5,6,15,10,8,10,0,15,10,2,10,11,13,5,14,13,13,12,14,13,13,15,10,2,10,11,13,5,6,0,3,7,0,4,3,5,8,10,0,0,1,15,0,3,11,13,8,14,3,5,8,10,0,0,3,8,10,0,0,3,8,10,0,0,3,8,10,0,8,10,0,0,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,4,2,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,4,11,0,6,6,4,11,0,6,6,4,11,0,0,3,3,4,11,13,14,6,4,11,0,6,6,10,0,3,11,11,13,5,15,10,2,10,3,5,2,14,13,13,12,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,0,4,11,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,9,6,4,11,10,11,3,4,11,13,14,6,10,7,4,11,0,6,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,6,6,4,11,0,6,9,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,4,11,0,6,6,10,0,4,11,0,6,6,10,0,3,11,13,12,7,0,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,8,10,0,0,3,9,6,10,7,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,3,11,13,14,14,13,13,4,11,0,6,6,10,0,3,7,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,1,15,0,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,4,11,0,6,6,10,0,3,11,13,12,14,13,5,6,15,10,12,0,3,3,4,11,13,14,6,10,7,0,3,11,13,8,10,0,0,4,11,0,6,6,4,11,0,6,6,10,0,3,3,4,11,13,14,6,10,7,0,4,11,0,0,4", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 658.0, \"clip_end\": 662.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,9,13,4,7,11,7,12,9,15,9,1,14,0,13,13,7,12,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,4,15,9,1,14,12,2,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,13,4,11,7,12,9,15,9,1,4,15,9,1,6,3,15,6,3,15,6,14,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,4,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,5,7,12,9,15,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,11,13,4,7,15,9,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,12,9,3,6,3,15,6,3,15,6,3,15,6,6,3,15,6,3,15,6,3,8,13,7,12,9,3,6,10,11,2,7,12,9,15,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,11,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,10,11,2,7,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,4,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,4,7,12,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,1,14,12,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,9,0,13,13,7,12,9,3,6,10,11,2,7,12,9,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,7,12,9,15,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,7,12,9,3,6,3,15,6,3,15,6,7,12,9,13,4,7,9,0,13,13,4,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"9\", \"12\", \"9\"], \"clip_start\": 611.0, \"clip_end\": 615.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,9,13,4,7,11,7,12,9,15,9,1,14,0,13,13,7,12,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,4,15,9,1,14,12,2,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,13,4,11,7,12,9,15,9,1,4,15,9,1,6,3,15,6,3,15,6,14,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,4,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,5,7,12,9,15,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,11,13,4,7,15,9,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,12,9,3,6,3,15,6,3,15,6,3,15,6,6,3,15,6,3,15,6,3,8,13,7,12,9,3,6,10,11,2,7,12,9,15,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,11,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,10,11,2,7,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,4,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,4,7,12,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,1,14,12,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,9,0,13,13,7,12,9,3,6,10,11,2,7,12,9,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,7,12,9,15,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,7,12,9,3,6,3,15,6,3,15,6,7,12,9,13,4,7,9,0,13,13,4,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 41.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,9,13,4,7,11,7,12,9,15,9,1,14,0,13,13,7,12,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,4,15,9,1,14,12,2,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,13,4,11,7,12,9,15,9,1,4,15,9,1,6,3,15,6,3,15,6,14,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,4,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,5,7,12,9,15,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,11,13,4,7,15,9,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,12,9,3,6,3,15,6,3,15,6,3,15,6,6,3,15,6,3,15,6,3,8,13,7,12,9,3,6,10,11,2,7,12,9,15,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,11,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,10,11,2,7,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,4,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,4,7,12,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,1,14,12,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,9,0,13,13,7,12,9,3,6,10,11,2,7,12,9,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,7,12,9,15,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,7,12,9,3,6,3,15,6,3,15,6,7,12,9,13,4,7,9,0,13,13,4,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"6\", \"3\"], \"clip_start\": 595.0, \"clip_end\": 599.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,9,13,4,7,11,7,12,9,15,9,1,14,0,13,13,7,12,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,4,15,9,1,14,12,2,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,13,4,11,7,12,9,15,9,1,4,15,9,1,6,3,15,6,3,15,6,14,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,4,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,5,7,12,9,15,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,11,13,4,7,15,9,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,12,9,3,6,3,15,6,3,15,6,3,15,6,6,3,15,6,3,15,6,3,8,13,7,12,9,3,6,10,11,2,7,12,9,15,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,11,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,10,11,2,7,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,4,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,4,7,12,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,1,14,12,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,9,0,13,13,7,12,9,3,6,10,11,2,7,12,9,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,7,12,9,15,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,7,12,9,3,6,3,15,6,3,15,6,7,12,9,13,4,7,9,0,13,13,4,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"6\", \"3\"], \"clip_start\": 783.0, \"clip_end\": 787.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,9,13,4,7,11,7,12,9,15,9,1,14,0,13,13,7,12,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,4,15,9,1,14,12,2,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,13,4,11,7,12,9,15,9,1,4,15,9,1,6,3,15,6,3,15,6,14,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,4,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,5,7,12,9,15,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,11,13,4,7,15,9,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,12,9,3,6,3,15,6,3,15,6,3,15,6,6,3,15,6,3,15,6,3,8,13,7,12,9,3,6,10,11,2,7,12,9,15,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,11,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,10,11,2,7,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,4,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,4,7,12,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,1,14,12,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,9,0,13,13,7,12,9,3,6,10,11,2,7,12,9,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,7,12,9,15,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,7,12,9,3,6,3,15,6,3,15,6,7,12,9,13,4,7,9,0,13,13,4,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"15\", \"6\", \"3\"], \"clip_start\": 537.0, \"clip_end\": 542.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,9,13,4,7,11,7,12,9,15,9,1,14,0,13,13,7,12,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,4,15,9,1,14,12,2,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,13,4,11,7,12,9,15,9,1,4,15,9,1,6,3,15,6,3,15,6,14,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,4,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,5,7,12,9,15,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,11,13,4,7,15,9,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,12,9,3,6,3,15,6,3,15,6,3,15,6,6,3,15,6,3,15,6,3,8,13,7,12,9,3,6,10,11,2,7,12,9,15,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,11,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,10,11,2,7,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,4,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,4,7,12,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,1,14,12,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,9,0,13,13,7,12,9,3,6,10,11,2,7,12,9,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,7,12,9,15,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,7,12,9,3,6,3,15,6,3,15,6,7,12,9,13,4,7,9,0,13,13,4,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\", \"12\", \"9\"], \"clip_start\": 118.0, \"clip_end\": 123.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,9,13,4,7,11,7,12,9,15,9,1,14,0,13,13,7,12,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,4,15,9,1,14,12,2,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,13,4,11,7,12,9,15,9,1,4,15,9,1,6,3,15,6,3,15,6,14,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,4,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,5,7,12,9,15,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,11,13,4,7,15,9,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,12,9,3,6,3,15,6,3,15,6,3,15,6,6,3,15,6,3,15,6,3,8,13,7,12,9,3,6,10,11,2,7,12,9,15,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,11,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,10,11,2,7,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,4,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,4,7,12,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,1,14,12,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,9,0,13,13,7,12,9,3,6,10,11,2,7,12,9,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,7,12,9,15,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,7,12,9,3,6,3,15,6,3,15,6,7,12,9,13,4,7,9,0,13,13,4,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"15\", \"6\", \"3\"], \"clip_start\": 49.0, \"clip_end\": 54.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,9,13,4,7,11,7,12,9,15,9,1,14,0,13,13,7,12,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,4,15,9,1,14,12,2,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,13,4,11,7,12,9,15,9,1,4,15,9,1,6,3,15,6,3,15,6,14,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,4,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,5,7,12,9,15,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,11,13,4,7,15,9,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,12,9,3,6,3,15,6,3,15,6,3,15,6,6,3,15,6,3,15,6,3,8,13,7,12,9,3,6,10,11,2,7,12,9,15,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,11,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,10,11,2,7,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,4,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,4,7,12,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,1,14,12,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,9,0,13,13,7,12,9,3,6,10,11,2,7,12,9,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,7,12,9,15,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,7,12,9,3,6,3,15,6,3,15,6,7,12,9,13,4,7,9,0,13,13,4,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"9\", \"12\", \"9\", \"9\", \"12\"], \"clip_start\": 893.0, \"clip_end\": 899.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,9,13,4,7,11,7,12,9,15,9,1,14,0,13,13,7,12,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,4,15,9,1,14,12,2,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,13,4,11,7,12,9,15,9,1,4,15,9,1,6,3,15,6,3,15,6,14,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,4,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,5,7,12,9,15,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,11,13,4,7,15,9,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,12,9,3,6,3,15,6,3,15,6,3,15,6,6,3,15,6,3,15,6,3,8,13,7,12,9,3,6,10,11,2,7,12,9,15,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,11,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,10,11,2,7,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,4,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,4,7,12,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,1,14,12,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,9,0,13,13,7,12,9,3,6,10,11,2,7,12,9,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,7,12,9,15,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,7,12,9,3,6,3,15,6,3,15,6,7,12,9,13,4,7,9,0,13,13,4,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"15\", \"6\", \"3\"], \"clip_start\": 814.0, \"clip_end\": 819.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,9,13,4,7,11,7,12,9,15,9,1,14,0,13,13,7,12,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,4,15,9,1,14,12,2,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,13,4,11,7,12,9,15,9,1,4,15,9,1,6,3,15,6,3,15,6,14,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,4,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,5,7,12,9,15,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,11,13,4,7,15,9,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,12,9,3,6,3,15,6,3,15,6,3,15,6,6,3,15,6,3,15,6,3,8,13,7,12,9,3,6,10,11,2,7,12,9,15,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,11,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,10,11,2,7,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,4,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,4,7,12,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,1,14,12,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,9,0,13,13,7,12,9,3,6,10,11,2,7,12,9,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,7,12,9,15,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,7,12,9,3,6,3,15,6,3,15,6,7,12,9,13,4,7,9,0,13,13,4,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"9\", \"12\", \"9\"], \"clip_start\": 893.0, \"clip_end\": 897.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,9,13,4,7,11,7,12,9,15,9,1,14,0,13,13,7,12,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,4,15,9,1,14,12,2,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,13,4,11,7,12,9,15,9,1,4,15,9,1,6,3,15,6,3,15,6,14,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,4,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,5,7,12,9,15,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,11,13,4,7,15,9,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,12,9,3,6,3,15,6,3,15,6,3,15,6,6,3,15,6,3,15,6,3,8,13,7,12,9,3,6,10,11,2,7,12,9,15,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,11,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,10,11,2,7,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,4,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,4,7,12,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,1,14,12,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,9,0,13,13,7,12,9,3,6,10,11,2,7,12,9,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,7,12,9,15,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,7,12,9,3,6,3,15,6,3,15,6,7,12,9,13,4,7,9,0,13,13,4,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 48.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,9,13,4,7,11,7,12,9,15,9,1,14,0,13,13,7,12,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,4,15,9,1,14,12,2,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,13,4,11,7,12,9,15,9,1,4,15,9,1,6,3,15,6,3,15,6,14,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,4,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,5,7,12,9,15,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,11,13,4,7,15,9,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,12,9,3,6,3,15,6,3,15,6,3,15,6,6,3,15,6,3,15,6,3,8,13,7,12,9,3,6,10,11,2,7,12,9,15,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,11,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,10,11,2,7,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,4,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,4,7,12,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,1,14,12,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,9,0,13,13,7,12,9,3,6,10,11,2,7,12,9,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,7,12,9,15,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,7,12,9,3,6,3,15,6,3,15,6,7,12,9,13,4,7,9,0,13,13,4,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"15\", \"9\"], \"clip_start\": 908.0, \"clip_end\": 912.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,9,13,4,7,11,7,12,9,15,9,1,14,0,13,13,7,12,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,4,15,9,1,14,12,2,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,13,4,11,7,12,9,15,9,1,4,15,9,1,6,3,15,6,3,15,6,14,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,4,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,5,7,12,9,15,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,11,13,4,7,15,9,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,12,9,3,6,3,15,6,3,15,6,3,15,6,6,3,15,6,3,15,6,3,8,13,7,12,9,3,6,10,11,2,7,12,9,15,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,11,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,10,11,2,7,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,4,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,4,7,12,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,1,14,12,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,9,0,13,13,7,12,9,3,6,10,11,2,7,12,9,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,7,12,9,15,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,7,12,9,3,6,3,15,6,3,15,6,7,12,9,13,4,7,9,0,13,13,4,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"12\"], \"clip_start\": 958.0, \"clip_end\": 961.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,9,13,4,7,11,7,12,9,15,9,1,14,0,13,13,7,12,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,4,15,9,1,14,12,2,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,13,4,11,7,12,9,15,9,1,4,15,9,1,6,3,15,6,3,15,6,14,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,4,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,5,7,12,9,15,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,11,13,4,7,15,9,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,12,9,3,6,3,15,6,3,15,6,3,15,6,6,3,15,6,3,15,6,3,8,13,7,12,9,3,6,10,11,2,7,12,9,15,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,11,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,10,11,2,7,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,4,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,4,7,12,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,1,14,12,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,9,0,13,13,7,12,9,3,6,10,11,2,7,12,9,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,7,12,9,15,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,7,12,9,3,6,3,15,6,3,15,6,7,12,9,13,4,7,9,0,13,13,4,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"9\", \"12\", \"9\", \"9\"], \"clip_start\": 378.0, \"clip_end\": 383.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q14_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,9,13,4,7,11,7,12,9,15,9,1,14,0,13,13,7,12,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,4,15,9,1,14,12,2,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,13,4,11,7,12,9,15,9,1,4,15,9,1,6,3,15,6,3,15,6,14,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,4,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,5,7,12,9,15,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,11,13,4,7,15,9,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,12,9,3,6,3,15,6,3,15,6,3,15,6,6,3,15,6,3,15,6,3,8,13,7,12,9,3,6,10,11,2,7,12,9,15,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,11,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,10,11,2,7,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,4,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,4,7,12,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,1,14,12,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,9,0,13,13,7,12,9,3,6,10,11,2,7,12,9,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,7,12,9,15,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,7,12,9,3,6,3,15,6,3,15,6,7,12,9,13,4,7,9,0,13,13,4,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_ELOW", "source_split": "substream_video", "length_L": 1024, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"13\", \"4\", \"7\", \"9\"], \"clip_start\": 182.0, \"clip_end\": 187.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q15_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,9,13,4,7,11,7,12,9,15,9,1,14,0,13,13,7,12,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,4,15,9,1,14,12,2,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,13,4,11,7,12,9,15,9,1,4,15,9,1,6,3,15,6,3,15,6,14,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,4,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,5,7,12,9,15,9,1,14,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,11,13,4,7,15,9,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,12,9,3,6,3,15,6,3,15,6,3,15,6,6,3,15,6,3,15,6,3,8,13,7,12,9,3,6,10,11,2,7,12,9,15,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,11,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,10,11,2,7,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,3,15,9,0,13,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,4,10,11,2,7,12,9,13,4,7,9,9,0,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,4,7,12,1,14,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,1,14,12,1,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,1,9,0,13,13,7,12,9,3,6,10,11,2,7,12,9,13,4,7,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,12,9,9,7,12,9,15,9,3,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,3,15,6,0,13,7,15,3,15,9,0,13,7,15,3,15,9,0,13,13,7,12,9,3,6,3,15,6,3,15,6,7,12,9,13,4,7,9,0,13,13,4,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 1011.0, \"clip_end\": 1017.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,12,4,15,11,0,1,10,13,2,6,15,12,8,15,8,2,13,13,3,4,7,0,6,0,9,9,10,11,4,15,0,12,11,15,4,1,7,0,0,4,13,1,15,5,11,1,2,0,15,5,6,6,6,3,9,11,15,15,5,4,4,3,13,8,14,4,14,5,6,9,7,12,14,5,5,1,13,1,3,5,15,14,6,10,0,8,2,0,4,0,0,14,14,13,9,0,8,12,9,0,8,5,3,5,1,15,4,0,15,10,5,0,13,13,7,8,9,7,1,13,11,7,11,6,14,14,8,7,5,6,5,0,1,10,4,2,1,12,4,15,13,1,2,4,15,1,12,8,15,6,7,14,1,1,1,2,5,4,1,0,14,6,7,6,0,4,13,11,8,13,12,0,9,6,8,14,0,0,11,2,0,0,2,4,15,7,12,6,3,1,10,13,15,4,15,5,0,6,10,14,8,0,15,0,2,10,12,10,10,11,12,7,8,10,13,0,6,14,6,10,7,0,10,4,8,12,2,5,15,12,8,8,9,13,6,8,11,14,14,10,1,4,4,2,0,6,7,11,8,15,6,9,2,4,14,6,6,7,10,14,12,7,2,4,7,13,12,11,15,13,5,6,0,15,5,3,7,6,11,9,13,1,13,3,5,8,11,5,12,6,0,2,6,13,15,13,3,6,3,9,1,13,11,9,15,15,9,7,10,14,10,4,4,1,15,15,10,13,14,4,0,2,12,10,4,3,0,2,14,9,8,10,11,13,8,6,0,11,14,12,10,12,9,2,10,0,4,15,15,0,14,4,10,13,15,11,4,4,6,1,11,15,15,14,9,10,4,13,12,3,9,6,4,8,5,2,7,5,13,4,8,0,14,1,13,7,0,13,1,9,5,15,11,7,4,13,2,5,2,6,3,6,7,11,4,3,9,9,14,12,7,5,6,6,15,11,11,14,11,1,1,7,1,7,0,5,6,12,15,8,2,8,12,6,8,11,3,8,11,8,1,6,6,4,11,9,1,6,10,11,1,8,0,5,0,9,9,4,3,9,11,8,9,11,15,5,4,3,7,15,14,11,12,13,12,12,0,5,5,6,3,3,4,4,5,9,6,14,9,13,12,3,7,11,1,8,2,15,1,9,2,15,5,13,10,8,10,8,11,10,2,1,12,1,6,11,0,4,9,13,1,8,8,6,0,11,6,2,9,6,3,10,3,5,2,6,10,7,9,0,12,5,2,6,15,6,2,2,14,10,15,0,7,9,12,11,13,5,2,11,2,3,14,10,7,3,14,12,6,8,3,12,11,11,15,2,8,12,11,11,10,12,5,0,3,15,8,9,1,3,12,10,5,5,15,12,7,12,0,3,6,11,12,3,8,7,4,4,11,9,8,4,4,12,10,11,0,3,10,1,11,14,1,3,10,11,12,8,0,6,11,7,13,7,7,13,5,13,12,15,13,2,11,11,2,9,8,4,3,0,1,6,0,15,13,12,12,0,0,15,12,14,8,9,9,6,2,1,6,14,11,12,1,3,7,2,12,14,2,5,8,10,1,7,9,2,11,15,15,4,15,3,6,11,15,15,8,3,9,5,15,13,14,5,4,10,11,10,3,1,11,8,2,0,6,0,4,11,2,13,7,15,10,10,9,7,2,13,9,5,10,6,10,14,15,4,8,1,11,5,1,2,10,2,9,9,9,10,0,1,12,11,13,1,13,0,9,4,12,1,15,3,14,9,8,12,9,3,3,4,12,13,0,13,10,6,9,3,0,5,8,6,10,7,15,15,10,3,13,15,15,7,3,1,15,8,10,0,0,7,4,15,10,10,10,12,7,1,5,13,7,4,10,7,0,8,2,14,1,11,6,3,4,9,12,10,7,9,8,12,0,13,12,1,9,9,5,13,12,10,1,2,2,3,14,11,15,14,8,13,11,6,4,9,4,8,12,9,3,3,2,7,15,6,7,3,14,2,14,0,8,1,10,15,2,12,6,12,4,5,7,4,4,7,15,4,10,9,1,14,13,13,1,10,14,10,8,8,11,10,10,8,2,13,11,10,10,5,11,1,11,9,3,7,2,1,11,0,13,3,3,11,11,11,1,11,1,14,5,6,1,5,5,0,7,4,12,4,12,6,6,13,1,8,5,11,4,15,9,10,8,13,14,1,8,6,13,0,0,12,0,2,2,0,12,5,8,3,0,5,8,15,12,3,14,8,7,1,9,2,13,6,8,1,7,12,7,12,9,14,5,11,4,10,15,12,2,11,13,14,1,3,13,7,14,1,8,4,14,9,3,9,1,13,10,6,15,8,1,2,0,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"4\", \"10\", \"9\"], \"clip_start\": 886.0, \"clip_end\": 890.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,12,4,15,11,0,1,10,13,2,6,15,12,8,15,8,2,13,13,3,4,7,0,6,0,9,9,10,11,4,15,0,12,11,15,4,1,7,0,0,4,13,1,15,5,11,1,2,0,15,5,6,6,6,3,9,11,15,15,5,4,4,3,13,8,14,4,14,5,6,9,7,12,14,5,5,1,13,1,3,5,15,14,6,10,0,8,2,0,4,0,0,14,14,13,9,0,8,12,9,0,8,5,3,5,1,15,4,0,15,10,5,0,13,13,7,8,9,7,1,13,11,7,11,6,14,14,8,7,5,6,5,0,1,10,4,2,1,12,4,15,13,1,2,4,15,1,12,8,15,6,7,14,1,1,1,2,5,4,1,0,14,6,7,6,0,4,13,11,8,13,12,0,9,6,8,14,0,0,11,2,0,0,2,4,15,7,12,6,3,1,10,13,15,4,15,5,0,6,10,14,8,0,15,0,2,10,12,10,10,11,12,7,8,10,13,0,6,14,6,10,7,0,10,4,8,12,2,5,15,12,8,8,9,13,6,8,11,14,14,10,1,4,4,2,0,6,7,11,8,15,6,9,2,4,14,6,6,7,10,14,12,7,2,4,7,13,12,11,15,13,5,6,0,15,5,3,7,6,11,9,13,1,13,3,5,8,11,5,12,6,0,2,6,13,15,13,3,6,3,9,1,13,11,9,15,15,9,7,10,14,10,4,4,1,15,15,10,13,14,4,0,2,12,10,4,3,0,2,14,9,8,10,11,13,8,6,0,11,14,12,10,12,9,2,10,0,4,15,15,0,14,4,10,13,15,11,4,4,6,1,11,15,15,14,9,10,4,13,12,3,9,6,4,8,5,2,7,5,13,4,8,0,14,1,13,7,0,13,1,9,5,15,11,7,4,13,2,5,2,6,3,6,7,11,4,3,9,9,14,12,7,5,6,6,15,11,11,14,11,1,1,7,1,7,0,5,6,12,15,8,2,8,12,6,8,11,3,8,11,8,1,6,6,4,11,9,1,6,10,11,1,8,0,5,0,9,9,4,3,9,11,8,9,11,15,5,4,3,7,15,14,11,12,13,12,12,0,5,5,6,3,3,4,4,5,9,6,14,9,13,12,3,7,11,1,8,2,15,1,9,2,15,5,13,10,8,10,8,11,10,2,1,12,1,6,11,0,4,9,13,1,8,8,6,0,11,6,2,9,6,3,10,3,5,2,6,10,7,9,0,12,5,2,6,15,6,2,2,14,10,15,0,7,9,12,11,13,5,2,11,2,3,14,10,7,3,14,12,6,8,3,12,11,11,15,2,8,12,11,11,10,12,5,0,3,15,8,9,1,3,12,10,5,5,15,12,7,12,0,3,6,11,12,3,8,7,4,4,11,9,8,4,4,12,10,11,0,3,10,1,11,14,1,3,10,11,12,8,0,6,11,7,13,7,7,13,5,13,12,15,13,2,11,11,2,9,8,4,3,0,1,6,0,15,13,12,12,0,0,15,12,14,8,9,9,6,2,1,6,14,11,12,1,3,7,2,12,14,2,5,8,10,1,7,9,2,11,15,15,4,15,3,6,11,15,15,8,3,9,5,15,13,14,5,4,10,11,10,3,1,11,8,2,0,6,0,4,11,2,13,7,15,10,10,9,7,2,13,9,5,10,6,10,14,15,4,8,1,11,5,1,2,10,2,9,9,9,10,0,1,12,11,13,1,13,0,9,4,12,1,15,3,14,9,8,12,9,3,3,4,12,13,0,13,10,6,9,3,0,5,8,6,10,7,15,15,10,3,13,15,15,7,3,1,15,8,10,0,0,7,4,15,10,10,10,12,7,1,5,13,7,4,10,7,0,8,2,14,1,11,6,3,4,9,12,10,7,9,8,12,0,13,12,1,9,9,5,13,12,10,1,2,2,3,14,11,15,14,8,13,11,6,4,9,4,8,12,9,3,3,2,7,15,6,7,3,14,2,14,0,8,1,10,15,2,12,6,12,4,5,7,4,4,7,15,4,10,9,1,14,13,13,1,10,14,10,8,8,11,10,10,8,2,13,11,10,10,5,11,1,11,9,3,7,2,1,11,0,13,3,3,11,11,11,1,11,1,14,5,6,1,5,5,0,7,4,12,4,12,6,6,13,1,8,5,11,4,15,9,10,8,13,14,1,8,6,13,0,0,12,0,2,2,0,12,5,8,3,0,5,8,15,12,3,14,8,7,1,9,2,13,6,8,1,7,12,7,12,9,14,5,11,4,10,15,12,2,11,13,14,1,3,13,7,14,1,8,4,14,9,3,9,1,13,10,6,15,8,1,2,0,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"0\", \"4\"], \"clip_start\": 39.0, \"clip_end\": 42.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,12,4,15,11,0,1,10,13,2,6,15,12,8,15,8,2,13,13,3,4,7,0,6,0,9,9,10,11,4,15,0,12,11,15,4,1,7,0,0,4,13,1,15,5,11,1,2,0,15,5,6,6,6,3,9,11,15,15,5,4,4,3,13,8,14,4,14,5,6,9,7,12,14,5,5,1,13,1,3,5,15,14,6,10,0,8,2,0,4,0,0,14,14,13,9,0,8,12,9,0,8,5,3,5,1,15,4,0,15,10,5,0,13,13,7,8,9,7,1,13,11,7,11,6,14,14,8,7,5,6,5,0,1,10,4,2,1,12,4,15,13,1,2,4,15,1,12,8,15,6,7,14,1,1,1,2,5,4,1,0,14,6,7,6,0,4,13,11,8,13,12,0,9,6,8,14,0,0,11,2,0,0,2,4,15,7,12,6,3,1,10,13,15,4,15,5,0,6,10,14,8,0,15,0,2,10,12,10,10,11,12,7,8,10,13,0,6,14,6,10,7,0,10,4,8,12,2,5,15,12,8,8,9,13,6,8,11,14,14,10,1,4,4,2,0,6,7,11,8,15,6,9,2,4,14,6,6,7,10,14,12,7,2,4,7,13,12,11,15,13,5,6,0,15,5,3,7,6,11,9,13,1,13,3,5,8,11,5,12,6,0,2,6,13,15,13,3,6,3,9,1,13,11,9,15,15,9,7,10,14,10,4,4,1,15,15,10,13,14,4,0,2,12,10,4,3,0,2,14,9,8,10,11,13,8,6,0,11,14,12,10,12,9,2,10,0,4,15,15,0,14,4,10,13,15,11,4,4,6,1,11,15,15,14,9,10,4,13,12,3,9,6,4,8,5,2,7,5,13,4,8,0,14,1,13,7,0,13,1,9,5,15,11,7,4,13,2,5,2,6,3,6,7,11,4,3,9,9,14,12,7,5,6,6,15,11,11,14,11,1,1,7,1,7,0,5,6,12,15,8,2,8,12,6,8,11,3,8,11,8,1,6,6,4,11,9,1,6,10,11,1,8,0,5,0,9,9,4,3,9,11,8,9,11,15,5,4,3,7,15,14,11,12,13,12,12,0,5,5,6,3,3,4,4,5,9,6,14,9,13,12,3,7,11,1,8,2,15,1,9,2,15,5,13,10,8,10,8,11,10,2,1,12,1,6,11,0,4,9,13,1,8,8,6,0,11,6,2,9,6,3,10,3,5,2,6,10,7,9,0,12,5,2,6,15,6,2,2,14,10,15,0,7,9,12,11,13,5,2,11,2,3,14,10,7,3,14,12,6,8,3,12,11,11,15,2,8,12,11,11,10,12,5,0,3,15,8,9,1,3,12,10,5,5,15,12,7,12,0,3,6,11,12,3,8,7,4,4,11,9,8,4,4,12,10,11,0,3,10,1,11,14,1,3,10,11,12,8,0,6,11,7,13,7,7,13,5,13,12,15,13,2,11,11,2,9,8,4,3,0,1,6,0,15,13,12,12,0,0,15,12,14,8,9,9,6,2,1,6,14,11,12,1,3,7,2,12,14,2,5,8,10,1,7,9,2,11,15,15,4,15,3,6,11,15,15,8,3,9,5,15,13,14,5,4,10,11,10,3,1,11,8,2,0,6,0,4,11,2,13,7,15,10,10,9,7,2,13,9,5,10,6,10,14,15,4,8,1,11,5,1,2,10,2,9,9,9,10,0,1,12,11,13,1,13,0,9,4,12,1,15,3,14,9,8,12,9,3,3,4,12,13,0,13,10,6,9,3,0,5,8,6,10,7,15,15,10,3,13,15,15,7,3,1,15,8,10,0,0,7,4,15,10,10,10,12,7,1,5,13,7,4,10,7,0,8,2,14,1,11,6,3,4,9,12,10,7,9,8,12,0,13,12,1,9,9,5,13,12,10,1,2,2,3,14,11,15,14,8,13,11,6,4,9,4,8,12,9,3,3,2,7,15,6,7,3,14,2,14,0,8,1,10,15,2,12,6,12,4,5,7,4,4,7,15,4,10,9,1,14,13,13,1,10,14,10,8,8,11,10,10,8,2,13,11,10,10,5,11,1,11,9,3,7,2,1,11,0,13,3,3,11,11,11,1,11,1,14,5,6,1,5,5,0,7,4,12,4,12,6,6,13,1,8,5,11,4,15,9,10,8,13,14,1,8,6,13,0,0,12,0,2,2,0,12,5,8,3,0,5,8,15,12,3,14,8,7,1,9,2,13,6,8,1,7,12,7,12,9,14,5,11,4,10,15,12,2,11,13,14,1,3,13,7,14,1,8,4,14,9,3,9,1,13,10,6,15,8,1,2,0,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"12\", \"8\", \"15\", \"6\"], \"clip_start\": 147.0, \"clip_end\": 152.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q3_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,12,4,15,11,0,1,10,13,2,6,15,12,8,15,8,2,13,13,3,4,7,0,6,0,9,9,10,11,4,15,0,12,11,15,4,1,7,0,0,4,13,1,15,5,11,1,2,0,15,5,6,6,6,3,9,11,15,15,5,4,4,3,13,8,14,4,14,5,6,9,7,12,14,5,5,1,13,1,3,5,15,14,6,10,0,8,2,0,4,0,0,14,14,13,9,0,8,12,9,0,8,5,3,5,1,15,4,0,15,10,5,0,13,13,7,8,9,7,1,13,11,7,11,6,14,14,8,7,5,6,5,0,1,10,4,2,1,12,4,15,13,1,2,4,15,1,12,8,15,6,7,14,1,1,1,2,5,4,1,0,14,6,7,6,0,4,13,11,8,13,12,0,9,6,8,14,0,0,11,2,0,0,2,4,15,7,12,6,3,1,10,13,15,4,15,5,0,6,10,14,8,0,15,0,2,10,12,10,10,11,12,7,8,10,13,0,6,14,6,10,7,0,10,4,8,12,2,5,15,12,8,8,9,13,6,8,11,14,14,10,1,4,4,2,0,6,7,11,8,15,6,9,2,4,14,6,6,7,10,14,12,7,2,4,7,13,12,11,15,13,5,6,0,15,5,3,7,6,11,9,13,1,13,3,5,8,11,5,12,6,0,2,6,13,15,13,3,6,3,9,1,13,11,9,15,15,9,7,10,14,10,4,4,1,15,15,10,13,14,4,0,2,12,10,4,3,0,2,14,9,8,10,11,13,8,6,0,11,14,12,10,12,9,2,10,0,4,15,15,0,14,4,10,13,15,11,4,4,6,1,11,15,15,14,9,10,4,13,12,3,9,6,4,8,5,2,7,5,13,4,8,0,14,1,13,7,0,13,1,9,5,15,11,7,4,13,2,5,2,6,3,6,7,11,4,3,9,9,14,12,7,5,6,6,15,11,11,14,11,1,1,7,1,7,0,5,6,12,15,8,2,8,12,6,8,11,3,8,11,8,1,6,6,4,11,9,1,6,10,11,1,8,0,5,0,9,9,4,3,9,11,8,9,11,15,5,4,3,7,15,14,11,12,13,12,12,0,5,5,6,3,3,4,4,5,9,6,14,9,13,12,3,7,11,1,8,2,15,1,9,2,15,5,13,10,8,10,8,11,10,2,1,12,1,6,11,0,4,9,13,1,8,8,6,0,11,6,2,9,6,3,10,3,5,2,6,10,7,9,0,12,5,2,6,15,6,2,2,14,10,15,0,7,9,12,11,13,5,2,11,2,3,14,10,7,3,14,12,6,8,3,12,11,11,15,2,8,12,11,11,10,12,5,0,3,15,8,9,1,3,12,10,5,5,15,12,7,12,0,3,6,11,12,3,8,7,4,4,11,9,8,4,4,12,10,11,0,3,10,1,11,14,1,3,10,11,12,8,0,6,11,7,13,7,7,13,5,13,12,15,13,2,11,11,2,9,8,4,3,0,1,6,0,15,13,12,12,0,0,15,12,14,8,9,9,6,2,1,6,14,11,12,1,3,7,2,12,14,2,5,8,10,1,7,9,2,11,15,15,4,15,3,6,11,15,15,8,3,9,5,15,13,14,5,4,10,11,10,3,1,11,8,2,0,6,0,4,11,2,13,7,15,10,10,9,7,2,13,9,5,10,6,10,14,15,4,8,1,11,5,1,2,10,2,9,9,9,10,0,1,12,11,13,1,13,0,9,4,12,1,15,3,14,9,8,12,9,3,3,4,12,13,0,13,10,6,9,3,0,5,8,6,10,7,15,15,10,3,13,15,15,7,3,1,15,8,10,0,0,7,4,15,10,10,10,12,7,1,5,13,7,4,10,7,0,8,2,14,1,11,6,3,4,9,12,10,7,9,8,12,0,13,12,1,9,9,5,13,12,10,1,2,2,3,14,11,15,14,8,13,11,6,4,9,4,8,12,9,3,3,2,7,15,6,7,3,14,2,14,0,8,1,10,15,2,12,6,12,4,5,7,4,4,7,15,4,10,9,1,14,13,13,1,10,14,10,8,8,11,10,10,8,2,13,11,10,10,5,11,1,11,9,3,7,2,1,11,0,13,3,3,11,11,11,1,11,1,14,5,6,1,5,5,0,7,4,12,4,12,6,6,13,1,8,5,11,4,15,9,10,8,13,14,1,8,6,13,0,0,12,0,2,2,0,12,5,8,3,0,5,8,15,12,3,14,8,7,1,9,2,13,6,8,1,7,12,7,12,9,14,5,11,4,10,15,12,2,11,13,14,1,3,13,7,14,1,8,4,14,9,3,9,1,13,10,6,15,8,1,2,0,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"15\", \"4\", \"1\", \"7\"], \"clip_start\": 33.0, \"clip_end\": 39.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q4_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,12,4,15,11,0,1,10,13,2,6,15,12,8,15,8,2,13,13,3,4,7,0,6,0,9,9,10,11,4,15,0,12,11,15,4,1,7,0,0,4,13,1,15,5,11,1,2,0,15,5,6,6,6,3,9,11,15,15,5,4,4,3,13,8,14,4,14,5,6,9,7,12,14,5,5,1,13,1,3,5,15,14,6,10,0,8,2,0,4,0,0,14,14,13,9,0,8,12,9,0,8,5,3,5,1,15,4,0,15,10,5,0,13,13,7,8,9,7,1,13,11,7,11,6,14,14,8,7,5,6,5,0,1,10,4,2,1,12,4,15,13,1,2,4,15,1,12,8,15,6,7,14,1,1,1,2,5,4,1,0,14,6,7,6,0,4,13,11,8,13,12,0,9,6,8,14,0,0,11,2,0,0,2,4,15,7,12,6,3,1,10,13,15,4,15,5,0,6,10,14,8,0,15,0,2,10,12,10,10,11,12,7,8,10,13,0,6,14,6,10,7,0,10,4,8,12,2,5,15,12,8,8,9,13,6,8,11,14,14,10,1,4,4,2,0,6,7,11,8,15,6,9,2,4,14,6,6,7,10,14,12,7,2,4,7,13,12,11,15,13,5,6,0,15,5,3,7,6,11,9,13,1,13,3,5,8,11,5,12,6,0,2,6,13,15,13,3,6,3,9,1,13,11,9,15,15,9,7,10,14,10,4,4,1,15,15,10,13,14,4,0,2,12,10,4,3,0,2,14,9,8,10,11,13,8,6,0,11,14,12,10,12,9,2,10,0,4,15,15,0,14,4,10,13,15,11,4,4,6,1,11,15,15,14,9,10,4,13,12,3,9,6,4,8,5,2,7,5,13,4,8,0,14,1,13,7,0,13,1,9,5,15,11,7,4,13,2,5,2,6,3,6,7,11,4,3,9,9,14,12,7,5,6,6,15,11,11,14,11,1,1,7,1,7,0,5,6,12,15,8,2,8,12,6,8,11,3,8,11,8,1,6,6,4,11,9,1,6,10,11,1,8,0,5,0,9,9,4,3,9,11,8,9,11,15,5,4,3,7,15,14,11,12,13,12,12,0,5,5,6,3,3,4,4,5,9,6,14,9,13,12,3,7,11,1,8,2,15,1,9,2,15,5,13,10,8,10,8,11,10,2,1,12,1,6,11,0,4,9,13,1,8,8,6,0,11,6,2,9,6,3,10,3,5,2,6,10,7,9,0,12,5,2,6,15,6,2,2,14,10,15,0,7,9,12,11,13,5,2,11,2,3,14,10,7,3,14,12,6,8,3,12,11,11,15,2,8,12,11,11,10,12,5,0,3,15,8,9,1,3,12,10,5,5,15,12,7,12,0,3,6,11,12,3,8,7,4,4,11,9,8,4,4,12,10,11,0,3,10,1,11,14,1,3,10,11,12,8,0,6,11,7,13,7,7,13,5,13,12,15,13,2,11,11,2,9,8,4,3,0,1,6,0,15,13,12,12,0,0,15,12,14,8,9,9,6,2,1,6,14,11,12,1,3,7,2,12,14,2,5,8,10,1,7,9,2,11,15,15,4,15,3,6,11,15,15,8,3,9,5,15,13,14,5,4,10,11,10,3,1,11,8,2,0,6,0,4,11,2,13,7,15,10,10,9,7,2,13,9,5,10,6,10,14,15,4,8,1,11,5,1,2,10,2,9,9,9,10,0,1,12,11,13,1,13,0,9,4,12,1,15,3,14,9,8,12,9,3,3,4,12,13,0,13,10,6,9,3,0,5,8,6,10,7,15,15,10,3,13,15,15,7,3,1,15,8,10,0,0,7,4,15,10,10,10,12,7,1,5,13,7,4,10,7,0,8,2,14,1,11,6,3,4,9,12,10,7,9,8,12,0,13,12,1,9,9,5,13,12,10,1,2,2,3,14,11,15,14,8,13,11,6,4,9,4,8,12,9,3,3,2,7,15,6,7,3,14,2,14,0,8,1,10,15,2,12,6,12,4,5,7,4,4,7,15,4,10,9,1,14,13,13,1,10,14,10,8,8,11,10,10,8,2,13,11,10,10,5,11,1,11,9,3,7,2,1,11,0,13,3,3,11,11,11,1,11,1,14,5,6,1,5,5,0,7,4,12,4,12,6,6,13,1,8,5,11,4,15,9,10,8,13,14,1,8,6,13,0,0,12,0,2,2,0,12,5,8,3,0,5,8,15,12,3,14,8,7,1,9,2,13,6,8,1,7,12,7,12,9,14,5,11,4,10,15,12,2,11,13,14,1,3,13,7,14,1,8,4,14,9,3,9,1,13,10,6,15,8,1,2,0,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"1\"], \"clip_start\": 300.0, \"clip_end\": 303.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,12,4,15,11,0,1,10,13,2,6,15,12,8,15,8,2,13,13,3,4,7,0,6,0,9,9,10,11,4,15,0,12,11,15,4,1,7,0,0,4,13,1,15,5,11,1,2,0,15,5,6,6,6,3,9,11,15,15,5,4,4,3,13,8,14,4,14,5,6,9,7,12,14,5,5,1,13,1,3,5,15,14,6,10,0,8,2,0,4,0,0,14,14,13,9,0,8,12,9,0,8,5,3,5,1,15,4,0,15,10,5,0,13,13,7,8,9,7,1,13,11,7,11,6,14,14,8,7,5,6,5,0,1,10,4,2,1,12,4,15,13,1,2,4,15,1,12,8,15,6,7,14,1,1,1,2,5,4,1,0,14,6,7,6,0,4,13,11,8,13,12,0,9,6,8,14,0,0,11,2,0,0,2,4,15,7,12,6,3,1,10,13,15,4,15,5,0,6,10,14,8,0,15,0,2,10,12,10,10,11,12,7,8,10,13,0,6,14,6,10,7,0,10,4,8,12,2,5,15,12,8,8,9,13,6,8,11,14,14,10,1,4,4,2,0,6,7,11,8,15,6,9,2,4,14,6,6,7,10,14,12,7,2,4,7,13,12,11,15,13,5,6,0,15,5,3,7,6,11,9,13,1,13,3,5,8,11,5,12,6,0,2,6,13,15,13,3,6,3,9,1,13,11,9,15,15,9,7,10,14,10,4,4,1,15,15,10,13,14,4,0,2,12,10,4,3,0,2,14,9,8,10,11,13,8,6,0,11,14,12,10,12,9,2,10,0,4,15,15,0,14,4,10,13,15,11,4,4,6,1,11,15,15,14,9,10,4,13,12,3,9,6,4,8,5,2,7,5,13,4,8,0,14,1,13,7,0,13,1,9,5,15,11,7,4,13,2,5,2,6,3,6,7,11,4,3,9,9,14,12,7,5,6,6,15,11,11,14,11,1,1,7,1,7,0,5,6,12,15,8,2,8,12,6,8,11,3,8,11,8,1,6,6,4,11,9,1,6,10,11,1,8,0,5,0,9,9,4,3,9,11,8,9,11,15,5,4,3,7,15,14,11,12,13,12,12,0,5,5,6,3,3,4,4,5,9,6,14,9,13,12,3,7,11,1,8,2,15,1,9,2,15,5,13,10,8,10,8,11,10,2,1,12,1,6,11,0,4,9,13,1,8,8,6,0,11,6,2,9,6,3,10,3,5,2,6,10,7,9,0,12,5,2,6,15,6,2,2,14,10,15,0,7,9,12,11,13,5,2,11,2,3,14,10,7,3,14,12,6,8,3,12,11,11,15,2,8,12,11,11,10,12,5,0,3,15,8,9,1,3,12,10,5,5,15,12,7,12,0,3,6,11,12,3,8,7,4,4,11,9,8,4,4,12,10,11,0,3,10,1,11,14,1,3,10,11,12,8,0,6,11,7,13,7,7,13,5,13,12,15,13,2,11,11,2,9,8,4,3,0,1,6,0,15,13,12,12,0,0,15,12,14,8,9,9,6,2,1,6,14,11,12,1,3,7,2,12,14,2,5,8,10,1,7,9,2,11,15,15,4,15,3,6,11,15,15,8,3,9,5,15,13,14,5,4,10,11,10,3,1,11,8,2,0,6,0,4,11,2,13,7,15,10,10,9,7,2,13,9,5,10,6,10,14,15,4,8,1,11,5,1,2,10,2,9,9,9,10,0,1,12,11,13,1,13,0,9,4,12,1,15,3,14,9,8,12,9,3,3,4,12,13,0,13,10,6,9,3,0,5,8,6,10,7,15,15,10,3,13,15,15,7,3,1,15,8,10,0,0,7,4,15,10,10,10,12,7,1,5,13,7,4,10,7,0,8,2,14,1,11,6,3,4,9,12,10,7,9,8,12,0,13,12,1,9,9,5,13,12,10,1,2,2,3,14,11,15,14,8,13,11,6,4,9,4,8,12,9,3,3,2,7,15,6,7,3,14,2,14,0,8,1,10,15,2,12,6,12,4,5,7,4,4,7,15,4,10,9,1,14,13,13,1,10,14,10,8,8,11,10,10,8,2,13,11,10,10,5,11,1,11,9,3,7,2,1,11,0,13,3,3,11,11,11,1,11,1,14,5,6,1,5,5,0,7,4,12,4,12,6,6,13,1,8,5,11,4,15,9,10,8,13,14,1,8,6,13,0,0,12,0,2,2,0,12,5,8,3,0,5,8,15,12,3,14,8,7,1,9,2,13,6,8,1,7,12,7,12,9,14,5,11,4,10,15,12,2,11,13,14,1,3,13,7,14,1,8,4,14,9,3,9,1,13,10,6,15,8,1,2,0,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"1\", \"12\", \"1\", \"6\"], \"clip_start\": 511.0, \"clip_end\": 517.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,12,4,15,11,0,1,10,13,2,6,15,12,8,15,8,2,13,13,3,4,7,0,6,0,9,9,10,11,4,15,0,12,11,15,4,1,7,0,0,4,13,1,15,5,11,1,2,0,15,5,6,6,6,3,9,11,15,15,5,4,4,3,13,8,14,4,14,5,6,9,7,12,14,5,5,1,13,1,3,5,15,14,6,10,0,8,2,0,4,0,0,14,14,13,9,0,8,12,9,0,8,5,3,5,1,15,4,0,15,10,5,0,13,13,7,8,9,7,1,13,11,7,11,6,14,14,8,7,5,6,5,0,1,10,4,2,1,12,4,15,13,1,2,4,15,1,12,8,15,6,7,14,1,1,1,2,5,4,1,0,14,6,7,6,0,4,13,11,8,13,12,0,9,6,8,14,0,0,11,2,0,0,2,4,15,7,12,6,3,1,10,13,15,4,15,5,0,6,10,14,8,0,15,0,2,10,12,10,10,11,12,7,8,10,13,0,6,14,6,10,7,0,10,4,8,12,2,5,15,12,8,8,9,13,6,8,11,14,14,10,1,4,4,2,0,6,7,11,8,15,6,9,2,4,14,6,6,7,10,14,12,7,2,4,7,13,12,11,15,13,5,6,0,15,5,3,7,6,11,9,13,1,13,3,5,8,11,5,12,6,0,2,6,13,15,13,3,6,3,9,1,13,11,9,15,15,9,7,10,14,10,4,4,1,15,15,10,13,14,4,0,2,12,10,4,3,0,2,14,9,8,10,11,13,8,6,0,11,14,12,10,12,9,2,10,0,4,15,15,0,14,4,10,13,15,11,4,4,6,1,11,15,15,14,9,10,4,13,12,3,9,6,4,8,5,2,7,5,13,4,8,0,14,1,13,7,0,13,1,9,5,15,11,7,4,13,2,5,2,6,3,6,7,11,4,3,9,9,14,12,7,5,6,6,15,11,11,14,11,1,1,7,1,7,0,5,6,12,15,8,2,8,12,6,8,11,3,8,11,8,1,6,6,4,11,9,1,6,10,11,1,8,0,5,0,9,9,4,3,9,11,8,9,11,15,5,4,3,7,15,14,11,12,13,12,12,0,5,5,6,3,3,4,4,5,9,6,14,9,13,12,3,7,11,1,8,2,15,1,9,2,15,5,13,10,8,10,8,11,10,2,1,12,1,6,11,0,4,9,13,1,8,8,6,0,11,6,2,9,6,3,10,3,5,2,6,10,7,9,0,12,5,2,6,15,6,2,2,14,10,15,0,7,9,12,11,13,5,2,11,2,3,14,10,7,3,14,12,6,8,3,12,11,11,15,2,8,12,11,11,10,12,5,0,3,15,8,9,1,3,12,10,5,5,15,12,7,12,0,3,6,11,12,3,8,7,4,4,11,9,8,4,4,12,10,11,0,3,10,1,11,14,1,3,10,11,12,8,0,6,11,7,13,7,7,13,5,13,12,15,13,2,11,11,2,9,8,4,3,0,1,6,0,15,13,12,12,0,0,15,12,14,8,9,9,6,2,1,6,14,11,12,1,3,7,2,12,14,2,5,8,10,1,7,9,2,11,15,15,4,15,3,6,11,15,15,8,3,9,5,15,13,14,5,4,10,11,10,3,1,11,8,2,0,6,0,4,11,2,13,7,15,10,10,9,7,2,13,9,5,10,6,10,14,15,4,8,1,11,5,1,2,10,2,9,9,9,10,0,1,12,11,13,1,13,0,9,4,12,1,15,3,14,9,8,12,9,3,3,4,12,13,0,13,10,6,9,3,0,5,8,6,10,7,15,15,10,3,13,15,15,7,3,1,15,8,10,0,0,7,4,15,10,10,10,12,7,1,5,13,7,4,10,7,0,8,2,14,1,11,6,3,4,9,12,10,7,9,8,12,0,13,12,1,9,9,5,13,12,10,1,2,2,3,14,11,15,14,8,13,11,6,4,9,4,8,12,9,3,3,2,7,15,6,7,3,14,2,14,0,8,1,10,15,2,12,6,12,4,5,7,4,4,7,15,4,10,9,1,14,13,13,1,10,14,10,8,8,11,10,10,8,2,13,11,10,10,5,11,1,11,9,3,7,2,1,11,0,13,3,3,11,11,11,1,11,1,14,5,6,1,5,5,0,7,4,12,4,12,6,6,13,1,8,5,11,4,15,9,10,8,13,14,1,8,6,13,0,0,12,0,2,2,0,12,5,8,3,0,5,8,15,12,3,14,8,7,1,9,2,13,6,8,1,7,12,7,12,9,14,5,11,4,10,15,12,2,11,13,14,1,3,13,7,14,1,8,4,14,9,3,9,1,13,10,6,15,8,1,2,0,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"13\", \"2\", \"6\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q7_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,12,4,15,11,0,1,10,13,2,6,15,12,8,15,8,2,13,13,3,4,7,0,6,0,9,9,10,11,4,15,0,12,11,15,4,1,7,0,0,4,13,1,15,5,11,1,2,0,15,5,6,6,6,3,9,11,15,15,5,4,4,3,13,8,14,4,14,5,6,9,7,12,14,5,5,1,13,1,3,5,15,14,6,10,0,8,2,0,4,0,0,14,14,13,9,0,8,12,9,0,8,5,3,5,1,15,4,0,15,10,5,0,13,13,7,8,9,7,1,13,11,7,11,6,14,14,8,7,5,6,5,0,1,10,4,2,1,12,4,15,13,1,2,4,15,1,12,8,15,6,7,14,1,1,1,2,5,4,1,0,14,6,7,6,0,4,13,11,8,13,12,0,9,6,8,14,0,0,11,2,0,0,2,4,15,7,12,6,3,1,10,13,15,4,15,5,0,6,10,14,8,0,15,0,2,10,12,10,10,11,12,7,8,10,13,0,6,14,6,10,7,0,10,4,8,12,2,5,15,12,8,8,9,13,6,8,11,14,14,10,1,4,4,2,0,6,7,11,8,15,6,9,2,4,14,6,6,7,10,14,12,7,2,4,7,13,12,11,15,13,5,6,0,15,5,3,7,6,11,9,13,1,13,3,5,8,11,5,12,6,0,2,6,13,15,13,3,6,3,9,1,13,11,9,15,15,9,7,10,14,10,4,4,1,15,15,10,13,14,4,0,2,12,10,4,3,0,2,14,9,8,10,11,13,8,6,0,11,14,12,10,12,9,2,10,0,4,15,15,0,14,4,10,13,15,11,4,4,6,1,11,15,15,14,9,10,4,13,12,3,9,6,4,8,5,2,7,5,13,4,8,0,14,1,13,7,0,13,1,9,5,15,11,7,4,13,2,5,2,6,3,6,7,11,4,3,9,9,14,12,7,5,6,6,15,11,11,14,11,1,1,7,1,7,0,5,6,12,15,8,2,8,12,6,8,11,3,8,11,8,1,6,6,4,11,9,1,6,10,11,1,8,0,5,0,9,9,4,3,9,11,8,9,11,15,5,4,3,7,15,14,11,12,13,12,12,0,5,5,6,3,3,4,4,5,9,6,14,9,13,12,3,7,11,1,8,2,15,1,9,2,15,5,13,10,8,10,8,11,10,2,1,12,1,6,11,0,4,9,13,1,8,8,6,0,11,6,2,9,6,3,10,3,5,2,6,10,7,9,0,12,5,2,6,15,6,2,2,14,10,15,0,7,9,12,11,13,5,2,11,2,3,14,10,7,3,14,12,6,8,3,12,11,11,15,2,8,12,11,11,10,12,5,0,3,15,8,9,1,3,12,10,5,5,15,12,7,12,0,3,6,11,12,3,8,7,4,4,11,9,8,4,4,12,10,11,0,3,10,1,11,14,1,3,10,11,12,8,0,6,11,7,13,7,7,13,5,13,12,15,13,2,11,11,2,9,8,4,3,0,1,6,0,15,13,12,12,0,0,15,12,14,8,9,9,6,2,1,6,14,11,12,1,3,7,2,12,14,2,5,8,10,1,7,9,2,11,15,15,4,15,3,6,11,15,15,8,3,9,5,15,13,14,5,4,10,11,10,3,1,11,8,2,0,6,0,4,11,2,13,7,15,10,10,9,7,2,13,9,5,10,6,10,14,15,4,8,1,11,5,1,2,10,2,9,9,9,10,0,1,12,11,13,1,13,0,9,4,12,1,15,3,14,9,8,12,9,3,3,4,12,13,0,13,10,6,9,3,0,5,8,6,10,7,15,15,10,3,13,15,15,7,3,1,15,8,10,0,0,7,4,15,10,10,10,12,7,1,5,13,7,4,10,7,0,8,2,14,1,11,6,3,4,9,12,10,7,9,8,12,0,13,12,1,9,9,5,13,12,10,1,2,2,3,14,11,15,14,8,13,11,6,4,9,4,8,12,9,3,3,2,7,15,6,7,3,14,2,14,0,8,1,10,15,2,12,6,12,4,5,7,4,4,7,15,4,10,9,1,14,13,13,1,10,14,10,8,8,11,10,10,8,2,13,11,10,10,5,11,1,11,9,3,7,2,1,11,0,13,3,3,11,11,11,1,11,1,14,5,6,1,5,5,0,7,4,12,4,12,6,6,13,1,8,5,11,4,15,9,10,8,13,14,1,8,6,13,0,0,12,0,2,2,0,12,5,8,3,0,5,8,15,12,3,14,8,7,1,9,2,13,6,8,1,7,12,7,12,9,14,5,11,4,10,15,12,2,11,13,14,1,3,13,7,14,1,8,4,14,9,3,9,1,13,10,6,15,8,1,2,0,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"0\"], \"clip_start\": 830.0, \"clip_end\": 833.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,12,4,15,11,0,1,10,13,2,6,15,12,8,15,8,2,13,13,3,4,7,0,6,0,9,9,10,11,4,15,0,12,11,15,4,1,7,0,0,4,13,1,15,5,11,1,2,0,15,5,6,6,6,3,9,11,15,15,5,4,4,3,13,8,14,4,14,5,6,9,7,12,14,5,5,1,13,1,3,5,15,14,6,10,0,8,2,0,4,0,0,14,14,13,9,0,8,12,9,0,8,5,3,5,1,15,4,0,15,10,5,0,13,13,7,8,9,7,1,13,11,7,11,6,14,14,8,7,5,6,5,0,1,10,4,2,1,12,4,15,13,1,2,4,15,1,12,8,15,6,7,14,1,1,1,2,5,4,1,0,14,6,7,6,0,4,13,11,8,13,12,0,9,6,8,14,0,0,11,2,0,0,2,4,15,7,12,6,3,1,10,13,15,4,15,5,0,6,10,14,8,0,15,0,2,10,12,10,10,11,12,7,8,10,13,0,6,14,6,10,7,0,10,4,8,12,2,5,15,12,8,8,9,13,6,8,11,14,14,10,1,4,4,2,0,6,7,11,8,15,6,9,2,4,14,6,6,7,10,14,12,7,2,4,7,13,12,11,15,13,5,6,0,15,5,3,7,6,11,9,13,1,13,3,5,8,11,5,12,6,0,2,6,13,15,13,3,6,3,9,1,13,11,9,15,15,9,7,10,14,10,4,4,1,15,15,10,13,14,4,0,2,12,10,4,3,0,2,14,9,8,10,11,13,8,6,0,11,14,12,10,12,9,2,10,0,4,15,15,0,14,4,10,13,15,11,4,4,6,1,11,15,15,14,9,10,4,13,12,3,9,6,4,8,5,2,7,5,13,4,8,0,14,1,13,7,0,13,1,9,5,15,11,7,4,13,2,5,2,6,3,6,7,11,4,3,9,9,14,12,7,5,6,6,15,11,11,14,11,1,1,7,1,7,0,5,6,12,15,8,2,8,12,6,8,11,3,8,11,8,1,6,6,4,11,9,1,6,10,11,1,8,0,5,0,9,9,4,3,9,11,8,9,11,15,5,4,3,7,15,14,11,12,13,12,12,0,5,5,6,3,3,4,4,5,9,6,14,9,13,12,3,7,11,1,8,2,15,1,9,2,15,5,13,10,8,10,8,11,10,2,1,12,1,6,11,0,4,9,13,1,8,8,6,0,11,6,2,9,6,3,10,3,5,2,6,10,7,9,0,12,5,2,6,15,6,2,2,14,10,15,0,7,9,12,11,13,5,2,11,2,3,14,10,7,3,14,12,6,8,3,12,11,11,15,2,8,12,11,11,10,12,5,0,3,15,8,9,1,3,12,10,5,5,15,12,7,12,0,3,6,11,12,3,8,7,4,4,11,9,8,4,4,12,10,11,0,3,10,1,11,14,1,3,10,11,12,8,0,6,11,7,13,7,7,13,5,13,12,15,13,2,11,11,2,9,8,4,3,0,1,6,0,15,13,12,12,0,0,15,12,14,8,9,9,6,2,1,6,14,11,12,1,3,7,2,12,14,2,5,8,10,1,7,9,2,11,15,15,4,15,3,6,11,15,15,8,3,9,5,15,13,14,5,4,10,11,10,3,1,11,8,2,0,6,0,4,11,2,13,7,15,10,10,9,7,2,13,9,5,10,6,10,14,15,4,8,1,11,5,1,2,10,2,9,9,9,10,0,1,12,11,13,1,13,0,9,4,12,1,15,3,14,9,8,12,9,3,3,4,12,13,0,13,10,6,9,3,0,5,8,6,10,7,15,15,10,3,13,15,15,7,3,1,15,8,10,0,0,7,4,15,10,10,10,12,7,1,5,13,7,4,10,7,0,8,2,14,1,11,6,3,4,9,12,10,7,9,8,12,0,13,12,1,9,9,5,13,12,10,1,2,2,3,14,11,15,14,8,13,11,6,4,9,4,8,12,9,3,3,2,7,15,6,7,3,14,2,14,0,8,1,10,15,2,12,6,12,4,5,7,4,4,7,15,4,10,9,1,14,13,13,1,10,14,10,8,8,11,10,10,8,2,13,11,10,10,5,11,1,11,9,3,7,2,1,11,0,13,3,3,11,11,11,1,11,1,14,5,6,1,5,5,0,7,4,12,4,12,6,6,13,1,8,5,11,4,15,9,10,8,13,14,1,8,6,13,0,0,12,0,2,2,0,12,5,8,3,0,5,8,15,12,3,14,8,7,1,9,2,13,6,8,1,7,12,7,12,9,14,5,11,4,10,15,12,2,11,13,14,1,3,13,7,14,1,8,4,14,9,3,9,1,13,10,6,15,8,1,2,0,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"10\"], \"clip_start\": 40.0, \"clip_end\": 43.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,12,4,15,11,0,1,10,13,2,6,15,12,8,15,8,2,13,13,3,4,7,0,6,0,9,9,10,11,4,15,0,12,11,15,4,1,7,0,0,4,13,1,15,5,11,1,2,0,15,5,6,6,6,3,9,11,15,15,5,4,4,3,13,8,14,4,14,5,6,9,7,12,14,5,5,1,13,1,3,5,15,14,6,10,0,8,2,0,4,0,0,14,14,13,9,0,8,12,9,0,8,5,3,5,1,15,4,0,15,10,5,0,13,13,7,8,9,7,1,13,11,7,11,6,14,14,8,7,5,6,5,0,1,10,4,2,1,12,4,15,13,1,2,4,15,1,12,8,15,6,7,14,1,1,1,2,5,4,1,0,14,6,7,6,0,4,13,11,8,13,12,0,9,6,8,14,0,0,11,2,0,0,2,4,15,7,12,6,3,1,10,13,15,4,15,5,0,6,10,14,8,0,15,0,2,10,12,10,10,11,12,7,8,10,13,0,6,14,6,10,7,0,10,4,8,12,2,5,15,12,8,8,9,13,6,8,11,14,14,10,1,4,4,2,0,6,7,11,8,15,6,9,2,4,14,6,6,7,10,14,12,7,2,4,7,13,12,11,15,13,5,6,0,15,5,3,7,6,11,9,13,1,13,3,5,8,11,5,12,6,0,2,6,13,15,13,3,6,3,9,1,13,11,9,15,15,9,7,10,14,10,4,4,1,15,15,10,13,14,4,0,2,12,10,4,3,0,2,14,9,8,10,11,13,8,6,0,11,14,12,10,12,9,2,10,0,4,15,15,0,14,4,10,13,15,11,4,4,6,1,11,15,15,14,9,10,4,13,12,3,9,6,4,8,5,2,7,5,13,4,8,0,14,1,13,7,0,13,1,9,5,15,11,7,4,13,2,5,2,6,3,6,7,11,4,3,9,9,14,12,7,5,6,6,15,11,11,14,11,1,1,7,1,7,0,5,6,12,15,8,2,8,12,6,8,11,3,8,11,8,1,6,6,4,11,9,1,6,10,11,1,8,0,5,0,9,9,4,3,9,11,8,9,11,15,5,4,3,7,15,14,11,12,13,12,12,0,5,5,6,3,3,4,4,5,9,6,14,9,13,12,3,7,11,1,8,2,15,1,9,2,15,5,13,10,8,10,8,11,10,2,1,12,1,6,11,0,4,9,13,1,8,8,6,0,11,6,2,9,6,3,10,3,5,2,6,10,7,9,0,12,5,2,6,15,6,2,2,14,10,15,0,7,9,12,11,13,5,2,11,2,3,14,10,7,3,14,12,6,8,3,12,11,11,15,2,8,12,11,11,10,12,5,0,3,15,8,9,1,3,12,10,5,5,15,12,7,12,0,3,6,11,12,3,8,7,4,4,11,9,8,4,4,12,10,11,0,3,10,1,11,14,1,3,10,11,12,8,0,6,11,7,13,7,7,13,5,13,12,15,13,2,11,11,2,9,8,4,3,0,1,6,0,15,13,12,12,0,0,15,12,14,8,9,9,6,2,1,6,14,11,12,1,3,7,2,12,14,2,5,8,10,1,7,9,2,11,15,15,4,15,3,6,11,15,15,8,3,9,5,15,13,14,5,4,10,11,10,3,1,11,8,2,0,6,0,4,11,2,13,7,15,10,10,9,7,2,13,9,5,10,6,10,14,15,4,8,1,11,5,1,2,10,2,9,9,9,10,0,1,12,11,13,1,13,0,9,4,12,1,15,3,14,9,8,12,9,3,3,4,12,13,0,13,10,6,9,3,0,5,8,6,10,7,15,15,10,3,13,15,15,7,3,1,15,8,10,0,0,7,4,15,10,10,10,12,7,1,5,13,7,4,10,7,0,8,2,14,1,11,6,3,4,9,12,10,7,9,8,12,0,13,12,1,9,9,5,13,12,10,1,2,2,3,14,11,15,14,8,13,11,6,4,9,4,8,12,9,3,3,2,7,15,6,7,3,14,2,14,0,8,1,10,15,2,12,6,12,4,5,7,4,4,7,15,4,10,9,1,14,13,13,1,10,14,10,8,8,11,10,10,8,2,13,11,10,10,5,11,1,11,9,3,7,2,1,11,0,13,3,3,11,11,11,1,11,1,14,5,6,1,5,5,0,7,4,12,4,12,6,6,13,1,8,5,11,4,15,9,10,8,13,14,1,8,6,13,0,0,12,0,2,2,0,12,5,8,3,0,5,8,15,12,3,14,8,7,1,9,2,13,6,8,1,7,12,7,12,9,14,5,11,4,10,15,12,2,11,13,14,1,3,13,7,14,1,8,4,14,9,3,9,1,13,10,6,15,8,1,2,0,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"10\", \"2\", \"4\"], \"clip_start\": 839.0, \"clip_end\": 843.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q10_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,12,4,15,11,0,1,10,13,2,6,15,12,8,15,8,2,13,13,3,4,7,0,6,0,9,9,10,11,4,15,0,12,11,15,4,1,7,0,0,4,13,1,15,5,11,1,2,0,15,5,6,6,6,3,9,11,15,15,5,4,4,3,13,8,14,4,14,5,6,9,7,12,14,5,5,1,13,1,3,5,15,14,6,10,0,8,2,0,4,0,0,14,14,13,9,0,8,12,9,0,8,5,3,5,1,15,4,0,15,10,5,0,13,13,7,8,9,7,1,13,11,7,11,6,14,14,8,7,5,6,5,0,1,10,4,2,1,12,4,15,13,1,2,4,15,1,12,8,15,6,7,14,1,1,1,2,5,4,1,0,14,6,7,6,0,4,13,11,8,13,12,0,9,6,8,14,0,0,11,2,0,0,2,4,15,7,12,6,3,1,10,13,15,4,15,5,0,6,10,14,8,0,15,0,2,10,12,10,10,11,12,7,8,10,13,0,6,14,6,10,7,0,10,4,8,12,2,5,15,12,8,8,9,13,6,8,11,14,14,10,1,4,4,2,0,6,7,11,8,15,6,9,2,4,14,6,6,7,10,14,12,7,2,4,7,13,12,11,15,13,5,6,0,15,5,3,7,6,11,9,13,1,13,3,5,8,11,5,12,6,0,2,6,13,15,13,3,6,3,9,1,13,11,9,15,15,9,7,10,14,10,4,4,1,15,15,10,13,14,4,0,2,12,10,4,3,0,2,14,9,8,10,11,13,8,6,0,11,14,12,10,12,9,2,10,0,4,15,15,0,14,4,10,13,15,11,4,4,6,1,11,15,15,14,9,10,4,13,12,3,9,6,4,8,5,2,7,5,13,4,8,0,14,1,13,7,0,13,1,9,5,15,11,7,4,13,2,5,2,6,3,6,7,11,4,3,9,9,14,12,7,5,6,6,15,11,11,14,11,1,1,7,1,7,0,5,6,12,15,8,2,8,12,6,8,11,3,8,11,8,1,6,6,4,11,9,1,6,10,11,1,8,0,5,0,9,9,4,3,9,11,8,9,11,15,5,4,3,7,15,14,11,12,13,12,12,0,5,5,6,3,3,4,4,5,9,6,14,9,13,12,3,7,11,1,8,2,15,1,9,2,15,5,13,10,8,10,8,11,10,2,1,12,1,6,11,0,4,9,13,1,8,8,6,0,11,6,2,9,6,3,10,3,5,2,6,10,7,9,0,12,5,2,6,15,6,2,2,14,10,15,0,7,9,12,11,13,5,2,11,2,3,14,10,7,3,14,12,6,8,3,12,11,11,15,2,8,12,11,11,10,12,5,0,3,15,8,9,1,3,12,10,5,5,15,12,7,12,0,3,6,11,12,3,8,7,4,4,11,9,8,4,4,12,10,11,0,3,10,1,11,14,1,3,10,11,12,8,0,6,11,7,13,7,7,13,5,13,12,15,13,2,11,11,2,9,8,4,3,0,1,6,0,15,13,12,12,0,0,15,12,14,8,9,9,6,2,1,6,14,11,12,1,3,7,2,12,14,2,5,8,10,1,7,9,2,11,15,15,4,15,3,6,11,15,15,8,3,9,5,15,13,14,5,4,10,11,10,3,1,11,8,2,0,6,0,4,11,2,13,7,15,10,10,9,7,2,13,9,5,10,6,10,14,15,4,8,1,11,5,1,2,10,2,9,9,9,10,0,1,12,11,13,1,13,0,9,4,12,1,15,3,14,9,8,12,9,3,3,4,12,13,0,13,10,6,9,3,0,5,8,6,10,7,15,15,10,3,13,15,15,7,3,1,15,8,10,0,0,7,4,15,10,10,10,12,7,1,5,13,7,4,10,7,0,8,2,14,1,11,6,3,4,9,12,10,7,9,8,12,0,13,12,1,9,9,5,13,12,10,1,2,2,3,14,11,15,14,8,13,11,6,4,9,4,8,12,9,3,3,2,7,15,6,7,3,14,2,14,0,8,1,10,15,2,12,6,12,4,5,7,4,4,7,15,4,10,9,1,14,13,13,1,10,14,10,8,8,11,10,10,8,2,13,11,10,10,5,11,1,11,9,3,7,2,1,11,0,13,3,3,11,11,11,1,11,1,14,5,6,1,5,5,0,7,4,12,4,12,6,6,13,1,8,5,11,4,15,9,10,8,13,14,1,8,6,13,0,0,12,0,2,2,0,12,5,8,3,0,5,8,15,12,3,14,8,7,1,9,2,13,6,8,1,7,12,7,12,9,14,5,11,4,10,15,12,2,11,13,14,1,3,13,7,14,1,8,4,14,9,3,9,1,13,10,6,15,8,1,2,0,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"4\", \"12\", \"4\", \"12\"], \"clip_start\": 936.0, \"clip_end\": 941.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q11_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,12,4,15,11,0,1,10,13,2,6,15,12,8,15,8,2,13,13,3,4,7,0,6,0,9,9,10,11,4,15,0,12,11,15,4,1,7,0,0,4,13,1,15,5,11,1,2,0,15,5,6,6,6,3,9,11,15,15,5,4,4,3,13,8,14,4,14,5,6,9,7,12,14,5,5,1,13,1,3,5,15,14,6,10,0,8,2,0,4,0,0,14,14,13,9,0,8,12,9,0,8,5,3,5,1,15,4,0,15,10,5,0,13,13,7,8,9,7,1,13,11,7,11,6,14,14,8,7,5,6,5,0,1,10,4,2,1,12,4,15,13,1,2,4,15,1,12,8,15,6,7,14,1,1,1,2,5,4,1,0,14,6,7,6,0,4,13,11,8,13,12,0,9,6,8,14,0,0,11,2,0,0,2,4,15,7,12,6,3,1,10,13,15,4,15,5,0,6,10,14,8,0,15,0,2,10,12,10,10,11,12,7,8,10,13,0,6,14,6,10,7,0,10,4,8,12,2,5,15,12,8,8,9,13,6,8,11,14,14,10,1,4,4,2,0,6,7,11,8,15,6,9,2,4,14,6,6,7,10,14,12,7,2,4,7,13,12,11,15,13,5,6,0,15,5,3,7,6,11,9,13,1,13,3,5,8,11,5,12,6,0,2,6,13,15,13,3,6,3,9,1,13,11,9,15,15,9,7,10,14,10,4,4,1,15,15,10,13,14,4,0,2,12,10,4,3,0,2,14,9,8,10,11,13,8,6,0,11,14,12,10,12,9,2,10,0,4,15,15,0,14,4,10,13,15,11,4,4,6,1,11,15,15,14,9,10,4,13,12,3,9,6,4,8,5,2,7,5,13,4,8,0,14,1,13,7,0,13,1,9,5,15,11,7,4,13,2,5,2,6,3,6,7,11,4,3,9,9,14,12,7,5,6,6,15,11,11,14,11,1,1,7,1,7,0,5,6,12,15,8,2,8,12,6,8,11,3,8,11,8,1,6,6,4,11,9,1,6,10,11,1,8,0,5,0,9,9,4,3,9,11,8,9,11,15,5,4,3,7,15,14,11,12,13,12,12,0,5,5,6,3,3,4,4,5,9,6,14,9,13,12,3,7,11,1,8,2,15,1,9,2,15,5,13,10,8,10,8,11,10,2,1,12,1,6,11,0,4,9,13,1,8,8,6,0,11,6,2,9,6,3,10,3,5,2,6,10,7,9,0,12,5,2,6,15,6,2,2,14,10,15,0,7,9,12,11,13,5,2,11,2,3,14,10,7,3,14,12,6,8,3,12,11,11,15,2,8,12,11,11,10,12,5,0,3,15,8,9,1,3,12,10,5,5,15,12,7,12,0,3,6,11,12,3,8,7,4,4,11,9,8,4,4,12,10,11,0,3,10,1,11,14,1,3,10,11,12,8,0,6,11,7,13,7,7,13,5,13,12,15,13,2,11,11,2,9,8,4,3,0,1,6,0,15,13,12,12,0,0,15,12,14,8,9,9,6,2,1,6,14,11,12,1,3,7,2,12,14,2,5,8,10,1,7,9,2,11,15,15,4,15,3,6,11,15,15,8,3,9,5,15,13,14,5,4,10,11,10,3,1,11,8,2,0,6,0,4,11,2,13,7,15,10,10,9,7,2,13,9,5,10,6,10,14,15,4,8,1,11,5,1,2,10,2,9,9,9,10,0,1,12,11,13,1,13,0,9,4,12,1,15,3,14,9,8,12,9,3,3,4,12,13,0,13,10,6,9,3,0,5,8,6,10,7,15,15,10,3,13,15,15,7,3,1,15,8,10,0,0,7,4,15,10,10,10,12,7,1,5,13,7,4,10,7,0,8,2,14,1,11,6,3,4,9,12,10,7,9,8,12,0,13,12,1,9,9,5,13,12,10,1,2,2,3,14,11,15,14,8,13,11,6,4,9,4,8,12,9,3,3,2,7,15,6,7,3,14,2,14,0,8,1,10,15,2,12,6,12,4,5,7,4,4,7,15,4,10,9,1,14,13,13,1,10,14,10,8,8,11,10,10,8,2,13,11,10,10,5,11,1,11,9,3,7,2,1,11,0,13,3,3,11,11,11,1,11,1,14,5,6,1,5,5,0,7,4,12,4,12,6,6,13,1,8,5,11,4,15,9,10,8,13,14,1,8,6,13,0,0,12,0,2,2,0,12,5,8,3,0,5,8,15,12,3,14,8,7,1,9,2,13,6,8,1,7,12,7,12,9,14,5,11,4,10,15,12,2,11,13,14,1,3,13,7,14,1,8,4,14,9,3,9,1,13,10,6,15,8,1,2,0,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"14\", \"6\"], \"clip_start\": 81.0, \"clip_end\": 85.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q12_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,12,4,15,11,0,1,10,13,2,6,15,12,8,15,8,2,13,13,3,4,7,0,6,0,9,9,10,11,4,15,0,12,11,15,4,1,7,0,0,4,13,1,15,5,11,1,2,0,15,5,6,6,6,3,9,11,15,15,5,4,4,3,13,8,14,4,14,5,6,9,7,12,14,5,5,1,13,1,3,5,15,14,6,10,0,8,2,0,4,0,0,14,14,13,9,0,8,12,9,0,8,5,3,5,1,15,4,0,15,10,5,0,13,13,7,8,9,7,1,13,11,7,11,6,14,14,8,7,5,6,5,0,1,10,4,2,1,12,4,15,13,1,2,4,15,1,12,8,15,6,7,14,1,1,1,2,5,4,1,0,14,6,7,6,0,4,13,11,8,13,12,0,9,6,8,14,0,0,11,2,0,0,2,4,15,7,12,6,3,1,10,13,15,4,15,5,0,6,10,14,8,0,15,0,2,10,12,10,10,11,12,7,8,10,13,0,6,14,6,10,7,0,10,4,8,12,2,5,15,12,8,8,9,13,6,8,11,14,14,10,1,4,4,2,0,6,7,11,8,15,6,9,2,4,14,6,6,7,10,14,12,7,2,4,7,13,12,11,15,13,5,6,0,15,5,3,7,6,11,9,13,1,13,3,5,8,11,5,12,6,0,2,6,13,15,13,3,6,3,9,1,13,11,9,15,15,9,7,10,14,10,4,4,1,15,15,10,13,14,4,0,2,12,10,4,3,0,2,14,9,8,10,11,13,8,6,0,11,14,12,10,12,9,2,10,0,4,15,15,0,14,4,10,13,15,11,4,4,6,1,11,15,15,14,9,10,4,13,12,3,9,6,4,8,5,2,7,5,13,4,8,0,14,1,13,7,0,13,1,9,5,15,11,7,4,13,2,5,2,6,3,6,7,11,4,3,9,9,14,12,7,5,6,6,15,11,11,14,11,1,1,7,1,7,0,5,6,12,15,8,2,8,12,6,8,11,3,8,11,8,1,6,6,4,11,9,1,6,10,11,1,8,0,5,0,9,9,4,3,9,11,8,9,11,15,5,4,3,7,15,14,11,12,13,12,12,0,5,5,6,3,3,4,4,5,9,6,14,9,13,12,3,7,11,1,8,2,15,1,9,2,15,5,13,10,8,10,8,11,10,2,1,12,1,6,11,0,4,9,13,1,8,8,6,0,11,6,2,9,6,3,10,3,5,2,6,10,7,9,0,12,5,2,6,15,6,2,2,14,10,15,0,7,9,12,11,13,5,2,11,2,3,14,10,7,3,14,12,6,8,3,12,11,11,15,2,8,12,11,11,10,12,5,0,3,15,8,9,1,3,12,10,5,5,15,12,7,12,0,3,6,11,12,3,8,7,4,4,11,9,8,4,4,12,10,11,0,3,10,1,11,14,1,3,10,11,12,8,0,6,11,7,13,7,7,13,5,13,12,15,13,2,11,11,2,9,8,4,3,0,1,6,0,15,13,12,12,0,0,15,12,14,8,9,9,6,2,1,6,14,11,12,1,3,7,2,12,14,2,5,8,10,1,7,9,2,11,15,15,4,15,3,6,11,15,15,8,3,9,5,15,13,14,5,4,10,11,10,3,1,11,8,2,0,6,0,4,11,2,13,7,15,10,10,9,7,2,13,9,5,10,6,10,14,15,4,8,1,11,5,1,2,10,2,9,9,9,10,0,1,12,11,13,1,13,0,9,4,12,1,15,3,14,9,8,12,9,3,3,4,12,13,0,13,10,6,9,3,0,5,8,6,10,7,15,15,10,3,13,15,15,7,3,1,15,8,10,0,0,7,4,15,10,10,10,12,7,1,5,13,7,4,10,7,0,8,2,14,1,11,6,3,4,9,12,10,7,9,8,12,0,13,12,1,9,9,5,13,12,10,1,2,2,3,14,11,15,14,8,13,11,6,4,9,4,8,12,9,3,3,2,7,15,6,7,3,14,2,14,0,8,1,10,15,2,12,6,12,4,5,7,4,4,7,15,4,10,9,1,14,13,13,1,10,14,10,8,8,11,10,10,8,2,13,11,10,10,5,11,1,11,9,3,7,2,1,11,0,13,3,3,11,11,11,1,11,1,14,5,6,1,5,5,0,7,4,12,4,12,6,6,13,1,8,5,11,4,15,9,10,8,13,14,1,8,6,13,0,0,12,0,2,2,0,12,5,8,3,0,5,8,15,12,3,14,8,7,1,9,2,13,6,8,1,7,12,7,12,9,14,5,11,4,10,15,12,2,11,13,14,1,3,13,7,14,1,8,4,14,9,3,9,1,13,10,6,15,8,1,2,0,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"3\", \"14\", \"7\"], \"clip_start\": 246.0, \"clip_end\": 251.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q13_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,12,4,15,11,0,1,10,13,2,6,15,12,8,15,8,2,13,13,3,4,7,0,6,0,9,9,10,11,4,15,0,12,11,15,4,1,7,0,0,4,13,1,15,5,11,1,2,0,15,5,6,6,6,3,9,11,15,15,5,4,4,3,13,8,14,4,14,5,6,9,7,12,14,5,5,1,13,1,3,5,15,14,6,10,0,8,2,0,4,0,0,14,14,13,9,0,8,12,9,0,8,5,3,5,1,15,4,0,15,10,5,0,13,13,7,8,9,7,1,13,11,7,11,6,14,14,8,7,5,6,5,0,1,10,4,2,1,12,4,15,13,1,2,4,15,1,12,8,15,6,7,14,1,1,1,2,5,4,1,0,14,6,7,6,0,4,13,11,8,13,12,0,9,6,8,14,0,0,11,2,0,0,2,4,15,7,12,6,3,1,10,13,15,4,15,5,0,6,10,14,8,0,15,0,2,10,12,10,10,11,12,7,8,10,13,0,6,14,6,10,7,0,10,4,8,12,2,5,15,12,8,8,9,13,6,8,11,14,14,10,1,4,4,2,0,6,7,11,8,15,6,9,2,4,14,6,6,7,10,14,12,7,2,4,7,13,12,11,15,13,5,6,0,15,5,3,7,6,11,9,13,1,13,3,5,8,11,5,12,6,0,2,6,13,15,13,3,6,3,9,1,13,11,9,15,15,9,7,10,14,10,4,4,1,15,15,10,13,14,4,0,2,12,10,4,3,0,2,14,9,8,10,11,13,8,6,0,11,14,12,10,12,9,2,10,0,4,15,15,0,14,4,10,13,15,11,4,4,6,1,11,15,15,14,9,10,4,13,12,3,9,6,4,8,5,2,7,5,13,4,8,0,14,1,13,7,0,13,1,9,5,15,11,7,4,13,2,5,2,6,3,6,7,11,4,3,9,9,14,12,7,5,6,6,15,11,11,14,11,1,1,7,1,7,0,5,6,12,15,8,2,8,12,6,8,11,3,8,11,8,1,6,6,4,11,9,1,6,10,11,1,8,0,5,0,9,9,4,3,9,11,8,9,11,15,5,4,3,7,15,14,11,12,13,12,12,0,5,5,6,3,3,4,4,5,9,6,14,9,13,12,3,7,11,1,8,2,15,1,9,2,15,5,13,10,8,10,8,11,10,2,1,12,1,6,11,0,4,9,13,1,8,8,6,0,11,6,2,9,6,3,10,3,5,2,6,10,7,9,0,12,5,2,6,15,6,2,2,14,10,15,0,7,9,12,11,13,5,2,11,2,3,14,10,7,3,14,12,6,8,3,12,11,11,15,2,8,12,11,11,10,12,5,0,3,15,8,9,1,3,12,10,5,5,15,12,7,12,0,3,6,11,12,3,8,7,4,4,11,9,8,4,4,12,10,11,0,3,10,1,11,14,1,3,10,11,12,8,0,6,11,7,13,7,7,13,5,13,12,15,13,2,11,11,2,9,8,4,3,0,1,6,0,15,13,12,12,0,0,15,12,14,8,9,9,6,2,1,6,14,11,12,1,3,7,2,12,14,2,5,8,10,1,7,9,2,11,15,15,4,15,3,6,11,15,15,8,3,9,5,15,13,14,5,4,10,11,10,3,1,11,8,2,0,6,0,4,11,2,13,7,15,10,10,9,7,2,13,9,5,10,6,10,14,15,4,8,1,11,5,1,2,10,2,9,9,9,10,0,1,12,11,13,1,13,0,9,4,12,1,15,3,14,9,8,12,9,3,3,4,12,13,0,13,10,6,9,3,0,5,8,6,10,7,15,15,10,3,13,15,15,7,3,1,15,8,10,0,0,7,4,15,10,10,10,12,7,1,5,13,7,4,10,7,0,8,2,14,1,11,6,3,4,9,12,10,7,9,8,12,0,13,12,1,9,9,5,13,12,10,1,2,2,3,14,11,15,14,8,13,11,6,4,9,4,8,12,9,3,3,2,7,15,6,7,3,14,2,14,0,8,1,10,15,2,12,6,12,4,5,7,4,4,7,15,4,10,9,1,14,13,13,1,10,14,10,8,8,11,10,10,8,2,13,11,10,10,5,11,1,11,9,3,7,2,1,11,0,13,3,3,11,11,11,1,11,1,14,5,6,1,5,5,0,7,4,12,4,12,6,6,13,1,8,5,11,4,15,9,10,8,13,14,1,8,6,13,0,0,12,0,2,2,0,12,5,8,3,0,5,8,15,12,3,14,8,7,1,9,2,13,6,8,1,7,12,7,12,9,14,5,11,4,10,15,12,2,11,13,14,1,3,13,7,14,1,8,4,14,9,3,9,1,13,10,6,15,8,1,2,0,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"15\"], \"clip_start\": 784.0, \"clip_end\": 788.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q14_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,12,4,15,11,0,1,10,13,2,6,15,12,8,15,8,2,13,13,3,4,7,0,6,0,9,9,10,11,4,15,0,12,11,15,4,1,7,0,0,4,13,1,15,5,11,1,2,0,15,5,6,6,6,3,9,11,15,15,5,4,4,3,13,8,14,4,14,5,6,9,7,12,14,5,5,1,13,1,3,5,15,14,6,10,0,8,2,0,4,0,0,14,14,13,9,0,8,12,9,0,8,5,3,5,1,15,4,0,15,10,5,0,13,13,7,8,9,7,1,13,11,7,11,6,14,14,8,7,5,6,5,0,1,10,4,2,1,12,4,15,13,1,2,4,15,1,12,8,15,6,7,14,1,1,1,2,5,4,1,0,14,6,7,6,0,4,13,11,8,13,12,0,9,6,8,14,0,0,11,2,0,0,2,4,15,7,12,6,3,1,10,13,15,4,15,5,0,6,10,14,8,0,15,0,2,10,12,10,10,11,12,7,8,10,13,0,6,14,6,10,7,0,10,4,8,12,2,5,15,12,8,8,9,13,6,8,11,14,14,10,1,4,4,2,0,6,7,11,8,15,6,9,2,4,14,6,6,7,10,14,12,7,2,4,7,13,12,11,15,13,5,6,0,15,5,3,7,6,11,9,13,1,13,3,5,8,11,5,12,6,0,2,6,13,15,13,3,6,3,9,1,13,11,9,15,15,9,7,10,14,10,4,4,1,15,15,10,13,14,4,0,2,12,10,4,3,0,2,14,9,8,10,11,13,8,6,0,11,14,12,10,12,9,2,10,0,4,15,15,0,14,4,10,13,15,11,4,4,6,1,11,15,15,14,9,10,4,13,12,3,9,6,4,8,5,2,7,5,13,4,8,0,14,1,13,7,0,13,1,9,5,15,11,7,4,13,2,5,2,6,3,6,7,11,4,3,9,9,14,12,7,5,6,6,15,11,11,14,11,1,1,7,1,7,0,5,6,12,15,8,2,8,12,6,8,11,3,8,11,8,1,6,6,4,11,9,1,6,10,11,1,8,0,5,0,9,9,4,3,9,11,8,9,11,15,5,4,3,7,15,14,11,12,13,12,12,0,5,5,6,3,3,4,4,5,9,6,14,9,13,12,3,7,11,1,8,2,15,1,9,2,15,5,13,10,8,10,8,11,10,2,1,12,1,6,11,0,4,9,13,1,8,8,6,0,11,6,2,9,6,3,10,3,5,2,6,10,7,9,0,12,5,2,6,15,6,2,2,14,10,15,0,7,9,12,11,13,5,2,11,2,3,14,10,7,3,14,12,6,8,3,12,11,11,15,2,8,12,11,11,10,12,5,0,3,15,8,9,1,3,12,10,5,5,15,12,7,12,0,3,6,11,12,3,8,7,4,4,11,9,8,4,4,12,10,11,0,3,10,1,11,14,1,3,10,11,12,8,0,6,11,7,13,7,7,13,5,13,12,15,13,2,11,11,2,9,8,4,3,0,1,6,0,15,13,12,12,0,0,15,12,14,8,9,9,6,2,1,6,14,11,12,1,3,7,2,12,14,2,5,8,10,1,7,9,2,11,15,15,4,15,3,6,11,15,15,8,3,9,5,15,13,14,5,4,10,11,10,3,1,11,8,2,0,6,0,4,11,2,13,7,15,10,10,9,7,2,13,9,5,10,6,10,14,15,4,8,1,11,5,1,2,10,2,9,9,9,10,0,1,12,11,13,1,13,0,9,4,12,1,15,3,14,9,8,12,9,3,3,4,12,13,0,13,10,6,9,3,0,5,8,6,10,7,15,15,10,3,13,15,15,7,3,1,15,8,10,0,0,7,4,15,10,10,10,12,7,1,5,13,7,4,10,7,0,8,2,14,1,11,6,3,4,9,12,10,7,9,8,12,0,13,12,1,9,9,5,13,12,10,1,2,2,3,14,11,15,14,8,13,11,6,4,9,4,8,12,9,3,3,2,7,15,6,7,3,14,2,14,0,8,1,10,15,2,12,6,12,4,5,7,4,4,7,15,4,10,9,1,14,13,13,1,10,14,10,8,8,11,10,10,8,2,13,11,10,10,5,11,1,11,9,3,7,2,1,11,0,13,3,3,11,11,11,1,11,1,14,5,6,1,5,5,0,7,4,12,4,12,6,6,13,1,8,5,11,4,15,9,10,8,13,14,1,8,6,13,0,0,12,0,2,2,0,12,5,8,3,0,5,8,15,12,3,14,8,7,1,9,2,13,6,8,1,7,12,7,12,9,14,5,11,4,10,15,12,2,11,13,14,1,3,13,7,14,1,8,4,14,9,3,9,1,13,10,6,15,8,1,2,0,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"13\", \"7\", \"4\"], \"clip_start\": 809.0, \"clip_end\": 814.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q15_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,12,4,15,11,0,1,10,13,2,6,15,12,8,15,8,2,13,13,3,4,7,0,6,0,9,9,10,11,4,15,0,12,11,15,4,1,7,0,0,4,13,1,15,5,11,1,2,0,15,5,6,6,6,3,9,11,15,15,5,4,4,3,13,8,14,4,14,5,6,9,7,12,14,5,5,1,13,1,3,5,15,14,6,10,0,8,2,0,4,0,0,14,14,13,9,0,8,12,9,0,8,5,3,5,1,15,4,0,15,10,5,0,13,13,7,8,9,7,1,13,11,7,11,6,14,14,8,7,5,6,5,0,1,10,4,2,1,12,4,15,13,1,2,4,15,1,12,8,15,6,7,14,1,1,1,2,5,4,1,0,14,6,7,6,0,4,13,11,8,13,12,0,9,6,8,14,0,0,11,2,0,0,2,4,15,7,12,6,3,1,10,13,15,4,15,5,0,6,10,14,8,0,15,0,2,10,12,10,10,11,12,7,8,10,13,0,6,14,6,10,7,0,10,4,8,12,2,5,15,12,8,8,9,13,6,8,11,14,14,10,1,4,4,2,0,6,7,11,8,15,6,9,2,4,14,6,6,7,10,14,12,7,2,4,7,13,12,11,15,13,5,6,0,15,5,3,7,6,11,9,13,1,13,3,5,8,11,5,12,6,0,2,6,13,15,13,3,6,3,9,1,13,11,9,15,15,9,7,10,14,10,4,4,1,15,15,10,13,14,4,0,2,12,10,4,3,0,2,14,9,8,10,11,13,8,6,0,11,14,12,10,12,9,2,10,0,4,15,15,0,14,4,10,13,15,11,4,4,6,1,11,15,15,14,9,10,4,13,12,3,9,6,4,8,5,2,7,5,13,4,8,0,14,1,13,7,0,13,1,9,5,15,11,7,4,13,2,5,2,6,3,6,7,11,4,3,9,9,14,12,7,5,6,6,15,11,11,14,11,1,1,7,1,7,0,5,6,12,15,8,2,8,12,6,8,11,3,8,11,8,1,6,6,4,11,9,1,6,10,11,1,8,0,5,0,9,9,4,3,9,11,8,9,11,15,5,4,3,7,15,14,11,12,13,12,12,0,5,5,6,3,3,4,4,5,9,6,14,9,13,12,3,7,11,1,8,2,15,1,9,2,15,5,13,10,8,10,8,11,10,2,1,12,1,6,11,0,4,9,13,1,8,8,6,0,11,6,2,9,6,3,10,3,5,2,6,10,7,9,0,12,5,2,6,15,6,2,2,14,10,15,0,7,9,12,11,13,5,2,11,2,3,14,10,7,3,14,12,6,8,3,12,11,11,15,2,8,12,11,11,10,12,5,0,3,15,8,9,1,3,12,10,5,5,15,12,7,12,0,3,6,11,12,3,8,7,4,4,11,9,8,4,4,12,10,11,0,3,10,1,11,14,1,3,10,11,12,8,0,6,11,7,13,7,7,13,5,13,12,15,13,2,11,11,2,9,8,4,3,0,1,6,0,15,13,12,12,0,0,15,12,14,8,9,9,6,2,1,6,14,11,12,1,3,7,2,12,14,2,5,8,10,1,7,9,2,11,15,15,4,15,3,6,11,15,15,8,3,9,5,15,13,14,5,4,10,11,10,3,1,11,8,2,0,6,0,4,11,2,13,7,15,10,10,9,7,2,13,9,5,10,6,10,14,15,4,8,1,11,5,1,2,10,2,9,9,9,10,0,1,12,11,13,1,13,0,9,4,12,1,15,3,14,9,8,12,9,3,3,4,12,13,0,13,10,6,9,3,0,5,8,6,10,7,15,15,10,3,13,15,15,7,3,1,15,8,10,0,0,7,4,15,10,10,10,12,7,1,5,13,7,4,10,7,0,8,2,14,1,11,6,3,4,9,12,10,7,9,8,12,0,13,12,1,9,9,5,13,12,10,1,2,2,3,14,11,15,14,8,13,11,6,4,9,4,8,12,9,3,3,2,7,15,6,7,3,14,2,14,0,8,1,10,15,2,12,6,12,4,5,7,4,4,7,15,4,10,9,1,14,13,13,1,10,14,10,8,8,11,10,10,8,2,13,11,10,10,5,11,1,11,9,3,7,2,1,11,0,13,3,3,11,11,11,1,11,1,14,5,6,1,5,5,0,7,4,12,4,12,6,6,13,1,8,5,11,4,15,9,10,8,13,14,1,8,6,13,0,0,12,0,2,2,0,12,5,8,3,0,5,8,15,12,3,14,8,7,1,9,2,13,6,8,1,7,12,7,12,9,14,5,11,4,10,15,12,2,11,13,14,1,3,13,7,14,1,8,4,14,9,3,9,1,13,10,6,15,8,1,2,0,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"12\", \"5\", \"5\"], \"clip_start\": 433.0, \"clip_end\": 438.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,6,9,11,3,3,0,0,14,10,1,14,2,12,11,6,10,8,2,8,8,11,7,13,12,10,7,8,2,14,9,5,14,6,11,15,8,9,10,3,11,8,1,1,6,2,2,2,0,0,9,3,15,10,0,0,0,6,8,15,12,12,8,3,12,8,8,3,9,4,5,3,0,12,15,6,13,8,6,2,15,12,2,11,6,8,7,11,4,4,13,2,3,9,8,11,4,2,6,13,10,4,2,1,10,3,12,15,10,4,10,8,2,8,13,13,4,9,2,8,10,9,2,2,9,2,11,9,12,12,7,15,12,13,14,12,5,13,15,8,1,0,12,0,4,6,10,12,14,2,15,9,14,13,12,5,6,15,9,14,1,5,0,11,9,15,3,15,14,10,6,5,10,15,15,1,12,3,7,13,14,1,11,4,10,8,3,14,12,6,8,8,12,11,8,15,4,0,5,3,5,15,13,15,8,8,1,10,0,11,15,8,12,5,9,5,12,14,2,14,15,6,14,8,7,14,12,13,12,10,5,6,13,13,15,11,4,2,2,5,3,12,1,5,1,8,4,10,1,5,9,13,4,4,8,1,4,14,2,12,2,6,2,2,3,8,9,9,4,6,15,8,5,4,13,12,9,9,8,6,7,10,3,9,15,1,10,5,15,4,4,10,7,6,1,14,15,4,13,3,9,4,6,15,5,3,14,4,6,11,7,14,10,5,0,11,11,13,15,0,1,15,5,12,6,1,1,8,14,13,7,0,10,12,0,15,2,8,1,6,4,2,5,7,0,11,6,2,11,12,8,8,14,13,9,4,0,0,13,15,4,1,1,12,3,9,11,14,12,4,1,0,6,2,4,10,8,13,2,7,5,6,2,15,9,8,8,10,8,3,11,1,14,11,6,11,10,7,4,8,1,7,14,10,7,14,0,12,5,4,9,9,6,15,11,15,0,10,12,4,2,13,3,13,3,11,0,10,7,3,15,13,15,15,5,12,5,5,7,8,4,0,13,13,8,3,14,2,3,12,2,5,0,2,12,0,15,15,4,0,2,13,2,11,10,10,2,3,2,7,8,13,7,7,1,12,1,13,4,2,14,1,5,4,10,2,3,10,2,13,5,4,14,5,15,14,14,2,15,1,13,3,11,8,4,11,2,15,9,15,11,1,8,0,0,7,2,8,1,7,5,11,0,5,2,6,6,12,2,14,5,6,15,15,9,14,13,8,3,8,1,5,14,11,1,7,10,13,6,15,13,5,14,6,3,5,4,0,0,15,0,8,8,13,11,4,4,11,15,7,7,6,9,0,15,3,10,14,12,12,11,1,10,0,9,0,2,10,0,3,6,15,5,13,13,11,5,14,3,7,11,6,14,15,13,2,5,2,12,5,15,1,7,8,5,13,1,1,2,3,15,15,13,10,6,1,11,8,2,0,5,0,13,15,1,14,1,2,14,1,0,6,4,3,3,6,4,8,4,14,8,12,6,5,8,0,14,1,14,1,14,5,8,6,4,2,11,7,10,10,0,7,6,14,10,12,15,2,15,3,11,13,2,3,9,9,8,10,11,9,4,15,8,15,2,6,3,13,1,1,2,2,13,10,12,13,5,7,1,11,0,15,12,11,7,4,14,13,15,15,11,15,3,9,1,8,2,3,0,6,4,15,6,7,12,6,15,1,7,4,4,0,6,1,0,11,0,0,10,10,0,8,5,9,12,14,5,5,4,6,4,1,0,13,7,3,8,1,5,3,11,3,5,0,14,14,9,4,13,3,15,15,14,14,5,7,7,14,14,6,5,14,0,13,4,12,10,7,4,9,6,14,5,3,11,0,3,14,4,5,11,3,4,6,4,14,1,9,14,7,6,2,1,13,15,9,12,5,1,6,1,7,10,13,11,2,3,11,8,7,8,4,8,13,4,1,1,3,7,4,15,9,9,14,4,2,7,10,7,8,13,15,1,3,9,7,13,1,12,14,12,12,12,12,15,2,10,14,6,13,7,2,0,0,10,6,0,2,5,6,11,4,7,3,5,15,7,4,14,11,9,12,2,2,9,10,3,1,10,12,7,12,9,12,15,0,0,13,3,14,13,1,6,10,4,13,3,2,1,8,0,2,1,6,2,9,4,0,13,12,8,1,11,3,4,14,8,13,6,9,13,5,6,3,7,0,2,1,5,5,1,0,15,10,6,1,11,8,5,2,12,6,14,8,11,14,6,10,1,1,12,5,11,13,8,15,5,2,9,11,0,6,6,15,7,13,9,4,8,1,6,14,14,6,1,15,0,13,5,0,1,13,3,15,13,11,8,11,9,11,7,13,0,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"0\", \"11\", \"11\", \"13\"], \"clip_start\": 312.0, \"clip_end\": 318.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,6,9,11,3,3,0,0,14,10,1,14,2,12,11,6,10,8,2,8,8,11,7,13,12,10,7,8,2,14,9,5,14,6,11,15,8,9,10,3,11,8,1,1,6,2,2,2,0,0,9,3,15,10,0,0,0,6,8,15,12,12,8,3,12,8,8,3,9,4,5,3,0,12,15,6,13,8,6,2,15,12,2,11,6,8,7,11,4,4,13,2,3,9,8,11,4,2,6,13,10,4,2,1,10,3,12,15,10,4,10,8,2,8,13,13,4,9,2,8,10,9,2,2,9,2,11,9,12,12,7,15,12,13,14,12,5,13,15,8,1,0,12,0,4,6,10,12,14,2,15,9,14,13,12,5,6,15,9,14,1,5,0,11,9,15,3,15,14,10,6,5,10,15,15,1,12,3,7,13,14,1,11,4,10,8,3,14,12,6,8,8,12,11,8,15,4,0,5,3,5,15,13,15,8,8,1,10,0,11,15,8,12,5,9,5,12,14,2,14,15,6,14,8,7,14,12,13,12,10,5,6,13,13,15,11,4,2,2,5,3,12,1,5,1,8,4,10,1,5,9,13,4,4,8,1,4,14,2,12,2,6,2,2,3,8,9,9,4,6,15,8,5,4,13,12,9,9,8,6,7,10,3,9,15,1,10,5,15,4,4,10,7,6,1,14,15,4,13,3,9,4,6,15,5,3,14,4,6,11,7,14,10,5,0,11,11,13,15,0,1,15,5,12,6,1,1,8,14,13,7,0,10,12,0,15,2,8,1,6,4,2,5,7,0,11,6,2,11,12,8,8,14,13,9,4,0,0,13,15,4,1,1,12,3,9,11,14,12,4,1,0,6,2,4,10,8,13,2,7,5,6,2,15,9,8,8,10,8,3,11,1,14,11,6,11,10,7,4,8,1,7,14,10,7,14,0,12,5,4,9,9,6,15,11,15,0,10,12,4,2,13,3,13,3,11,0,10,7,3,15,13,15,15,5,12,5,5,7,8,4,0,13,13,8,3,14,2,3,12,2,5,0,2,12,0,15,15,4,0,2,13,2,11,10,10,2,3,2,7,8,13,7,7,1,12,1,13,4,2,14,1,5,4,10,2,3,10,2,13,5,4,14,5,15,14,14,2,15,1,13,3,11,8,4,11,2,15,9,15,11,1,8,0,0,7,2,8,1,7,5,11,0,5,2,6,6,12,2,14,5,6,15,15,9,14,13,8,3,8,1,5,14,11,1,7,10,13,6,15,13,5,14,6,3,5,4,0,0,15,0,8,8,13,11,4,4,11,15,7,7,6,9,0,15,3,10,14,12,12,11,1,10,0,9,0,2,10,0,3,6,15,5,13,13,11,5,14,3,7,11,6,14,15,13,2,5,2,12,5,15,1,7,8,5,13,1,1,2,3,15,15,13,10,6,1,11,8,2,0,5,0,13,15,1,14,1,2,14,1,0,6,4,3,3,6,4,8,4,14,8,12,6,5,8,0,14,1,14,1,14,5,8,6,4,2,11,7,10,10,0,7,6,14,10,12,15,2,15,3,11,13,2,3,9,9,8,10,11,9,4,15,8,15,2,6,3,13,1,1,2,2,13,10,12,13,5,7,1,11,0,15,12,11,7,4,14,13,15,15,11,15,3,9,1,8,2,3,0,6,4,15,6,7,12,6,15,1,7,4,4,0,6,1,0,11,0,0,10,10,0,8,5,9,12,14,5,5,4,6,4,1,0,13,7,3,8,1,5,3,11,3,5,0,14,14,9,4,13,3,15,15,14,14,5,7,7,14,14,6,5,14,0,13,4,12,10,7,4,9,6,14,5,3,11,0,3,14,4,5,11,3,4,6,4,14,1,9,14,7,6,2,1,13,15,9,12,5,1,6,1,7,10,13,11,2,3,11,8,7,8,4,8,13,4,1,1,3,7,4,15,9,9,14,4,2,7,10,7,8,13,15,1,3,9,7,13,1,12,14,12,12,12,12,15,2,10,14,6,13,7,2,0,0,10,6,0,2,5,6,11,4,7,3,5,15,7,4,14,11,9,12,2,2,9,10,3,1,10,12,7,12,9,12,15,0,0,13,3,14,13,1,6,10,4,13,3,2,1,8,0,2,1,6,2,9,4,0,13,12,8,1,11,3,4,14,8,13,6,9,13,5,6,3,7,0,2,1,5,5,1,0,15,10,6,1,11,8,5,2,12,6,14,8,11,14,6,10,1,1,12,5,11,13,8,15,5,2,9,11,0,6,6,15,7,13,9,4,8,1,6,14,14,6,1,15,0,13,5,0,1,13,3,15,13,11,8,11,9,11,7,13,0,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 992.0, \"clip_end\": 998.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,6,9,11,3,3,0,0,14,10,1,14,2,12,11,6,10,8,2,8,8,11,7,13,12,10,7,8,2,14,9,5,14,6,11,15,8,9,10,3,11,8,1,1,6,2,2,2,0,0,9,3,15,10,0,0,0,6,8,15,12,12,8,3,12,8,8,3,9,4,5,3,0,12,15,6,13,8,6,2,15,12,2,11,6,8,7,11,4,4,13,2,3,9,8,11,4,2,6,13,10,4,2,1,10,3,12,15,10,4,10,8,2,8,13,13,4,9,2,8,10,9,2,2,9,2,11,9,12,12,7,15,12,13,14,12,5,13,15,8,1,0,12,0,4,6,10,12,14,2,15,9,14,13,12,5,6,15,9,14,1,5,0,11,9,15,3,15,14,10,6,5,10,15,15,1,12,3,7,13,14,1,11,4,10,8,3,14,12,6,8,8,12,11,8,15,4,0,5,3,5,15,13,15,8,8,1,10,0,11,15,8,12,5,9,5,12,14,2,14,15,6,14,8,7,14,12,13,12,10,5,6,13,13,15,11,4,2,2,5,3,12,1,5,1,8,4,10,1,5,9,13,4,4,8,1,4,14,2,12,2,6,2,2,3,8,9,9,4,6,15,8,5,4,13,12,9,9,8,6,7,10,3,9,15,1,10,5,15,4,4,10,7,6,1,14,15,4,13,3,9,4,6,15,5,3,14,4,6,11,7,14,10,5,0,11,11,13,15,0,1,15,5,12,6,1,1,8,14,13,7,0,10,12,0,15,2,8,1,6,4,2,5,7,0,11,6,2,11,12,8,8,14,13,9,4,0,0,13,15,4,1,1,12,3,9,11,14,12,4,1,0,6,2,4,10,8,13,2,7,5,6,2,15,9,8,8,10,8,3,11,1,14,11,6,11,10,7,4,8,1,7,14,10,7,14,0,12,5,4,9,9,6,15,11,15,0,10,12,4,2,13,3,13,3,11,0,10,7,3,15,13,15,15,5,12,5,5,7,8,4,0,13,13,8,3,14,2,3,12,2,5,0,2,12,0,15,15,4,0,2,13,2,11,10,10,2,3,2,7,8,13,7,7,1,12,1,13,4,2,14,1,5,4,10,2,3,10,2,13,5,4,14,5,15,14,14,2,15,1,13,3,11,8,4,11,2,15,9,15,11,1,8,0,0,7,2,8,1,7,5,11,0,5,2,6,6,12,2,14,5,6,15,15,9,14,13,8,3,8,1,5,14,11,1,7,10,13,6,15,13,5,14,6,3,5,4,0,0,15,0,8,8,13,11,4,4,11,15,7,7,6,9,0,15,3,10,14,12,12,11,1,10,0,9,0,2,10,0,3,6,15,5,13,13,11,5,14,3,7,11,6,14,15,13,2,5,2,12,5,15,1,7,8,5,13,1,1,2,3,15,15,13,10,6,1,11,8,2,0,5,0,13,15,1,14,1,2,14,1,0,6,4,3,3,6,4,8,4,14,8,12,6,5,8,0,14,1,14,1,14,5,8,6,4,2,11,7,10,10,0,7,6,14,10,12,15,2,15,3,11,13,2,3,9,9,8,10,11,9,4,15,8,15,2,6,3,13,1,1,2,2,13,10,12,13,5,7,1,11,0,15,12,11,7,4,14,13,15,15,11,15,3,9,1,8,2,3,0,6,4,15,6,7,12,6,15,1,7,4,4,0,6,1,0,11,0,0,10,10,0,8,5,9,12,14,5,5,4,6,4,1,0,13,7,3,8,1,5,3,11,3,5,0,14,14,9,4,13,3,15,15,14,14,5,7,7,14,14,6,5,14,0,13,4,12,10,7,4,9,6,14,5,3,11,0,3,14,4,5,11,3,4,6,4,14,1,9,14,7,6,2,1,13,15,9,12,5,1,6,1,7,10,13,11,2,3,11,8,7,8,4,8,13,4,1,1,3,7,4,15,9,9,14,4,2,7,10,7,8,13,15,1,3,9,7,13,1,12,14,12,12,12,12,15,2,10,14,6,13,7,2,0,0,10,6,0,2,5,6,11,4,7,3,5,15,7,4,14,11,9,12,2,2,9,10,3,1,10,12,7,12,9,12,15,0,0,13,3,14,13,1,6,10,4,13,3,2,1,8,0,2,1,6,2,9,4,0,13,12,8,1,11,3,4,14,8,13,6,9,13,5,6,3,7,0,2,1,5,5,1,0,15,10,6,1,11,8,5,2,12,6,14,8,11,14,6,10,1,1,12,5,11,13,8,15,5,2,9,11,0,6,6,15,7,13,9,4,8,1,6,14,14,6,1,15,0,13,5,0,1,13,3,15,13,11,8,11,9,11,7,13,0,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"4\", \"12\", \"10\", \"7\"], \"clip_start\": 792.0, \"clip_end\": 798.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,6,9,11,3,3,0,0,14,10,1,14,2,12,11,6,10,8,2,8,8,11,7,13,12,10,7,8,2,14,9,5,14,6,11,15,8,9,10,3,11,8,1,1,6,2,2,2,0,0,9,3,15,10,0,0,0,6,8,15,12,12,8,3,12,8,8,3,9,4,5,3,0,12,15,6,13,8,6,2,15,12,2,11,6,8,7,11,4,4,13,2,3,9,8,11,4,2,6,13,10,4,2,1,10,3,12,15,10,4,10,8,2,8,13,13,4,9,2,8,10,9,2,2,9,2,11,9,12,12,7,15,12,13,14,12,5,13,15,8,1,0,12,0,4,6,10,12,14,2,15,9,14,13,12,5,6,15,9,14,1,5,0,11,9,15,3,15,14,10,6,5,10,15,15,1,12,3,7,13,14,1,11,4,10,8,3,14,12,6,8,8,12,11,8,15,4,0,5,3,5,15,13,15,8,8,1,10,0,11,15,8,12,5,9,5,12,14,2,14,15,6,14,8,7,14,12,13,12,10,5,6,13,13,15,11,4,2,2,5,3,12,1,5,1,8,4,10,1,5,9,13,4,4,8,1,4,14,2,12,2,6,2,2,3,8,9,9,4,6,15,8,5,4,13,12,9,9,8,6,7,10,3,9,15,1,10,5,15,4,4,10,7,6,1,14,15,4,13,3,9,4,6,15,5,3,14,4,6,11,7,14,10,5,0,11,11,13,15,0,1,15,5,12,6,1,1,8,14,13,7,0,10,12,0,15,2,8,1,6,4,2,5,7,0,11,6,2,11,12,8,8,14,13,9,4,0,0,13,15,4,1,1,12,3,9,11,14,12,4,1,0,6,2,4,10,8,13,2,7,5,6,2,15,9,8,8,10,8,3,11,1,14,11,6,11,10,7,4,8,1,7,14,10,7,14,0,12,5,4,9,9,6,15,11,15,0,10,12,4,2,13,3,13,3,11,0,10,7,3,15,13,15,15,5,12,5,5,7,8,4,0,13,13,8,3,14,2,3,12,2,5,0,2,12,0,15,15,4,0,2,13,2,11,10,10,2,3,2,7,8,13,7,7,1,12,1,13,4,2,14,1,5,4,10,2,3,10,2,13,5,4,14,5,15,14,14,2,15,1,13,3,11,8,4,11,2,15,9,15,11,1,8,0,0,7,2,8,1,7,5,11,0,5,2,6,6,12,2,14,5,6,15,15,9,14,13,8,3,8,1,5,14,11,1,7,10,13,6,15,13,5,14,6,3,5,4,0,0,15,0,8,8,13,11,4,4,11,15,7,7,6,9,0,15,3,10,14,12,12,11,1,10,0,9,0,2,10,0,3,6,15,5,13,13,11,5,14,3,7,11,6,14,15,13,2,5,2,12,5,15,1,7,8,5,13,1,1,2,3,15,15,13,10,6,1,11,8,2,0,5,0,13,15,1,14,1,2,14,1,0,6,4,3,3,6,4,8,4,14,8,12,6,5,8,0,14,1,14,1,14,5,8,6,4,2,11,7,10,10,0,7,6,14,10,12,15,2,15,3,11,13,2,3,9,9,8,10,11,9,4,15,8,15,2,6,3,13,1,1,2,2,13,10,12,13,5,7,1,11,0,15,12,11,7,4,14,13,15,15,11,15,3,9,1,8,2,3,0,6,4,15,6,7,12,6,15,1,7,4,4,0,6,1,0,11,0,0,10,10,0,8,5,9,12,14,5,5,4,6,4,1,0,13,7,3,8,1,5,3,11,3,5,0,14,14,9,4,13,3,15,15,14,14,5,7,7,14,14,6,5,14,0,13,4,12,10,7,4,9,6,14,5,3,11,0,3,14,4,5,11,3,4,6,4,14,1,9,14,7,6,2,1,13,15,9,12,5,1,6,1,7,10,13,11,2,3,11,8,7,8,4,8,13,4,1,1,3,7,4,15,9,9,14,4,2,7,10,7,8,13,15,1,3,9,7,13,1,12,14,12,12,12,12,15,2,10,14,6,13,7,2,0,0,10,6,0,2,5,6,11,4,7,3,5,15,7,4,14,11,9,12,2,2,9,10,3,1,10,12,7,12,9,12,15,0,0,13,3,14,13,1,6,10,4,13,3,2,1,8,0,2,1,6,2,9,4,0,13,12,8,1,11,3,4,14,8,13,6,9,13,5,6,3,7,0,2,1,5,5,1,0,15,10,6,1,11,8,5,2,12,6,14,8,11,14,6,10,1,1,12,5,11,13,8,15,5,2,9,11,0,6,6,15,7,13,9,4,8,1,6,14,14,6,1,15,0,13,5,0,1,13,3,15,13,11,8,11,9,11,7,13,0,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"11\", \"8\", \"1\", \"1\"], \"clip_start\": 38.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,6,9,11,3,3,0,0,14,10,1,14,2,12,11,6,10,8,2,8,8,11,7,13,12,10,7,8,2,14,9,5,14,6,11,15,8,9,10,3,11,8,1,1,6,2,2,2,0,0,9,3,15,10,0,0,0,6,8,15,12,12,8,3,12,8,8,3,9,4,5,3,0,12,15,6,13,8,6,2,15,12,2,11,6,8,7,11,4,4,13,2,3,9,8,11,4,2,6,13,10,4,2,1,10,3,12,15,10,4,10,8,2,8,13,13,4,9,2,8,10,9,2,2,9,2,11,9,12,12,7,15,12,13,14,12,5,13,15,8,1,0,12,0,4,6,10,12,14,2,15,9,14,13,12,5,6,15,9,14,1,5,0,11,9,15,3,15,14,10,6,5,10,15,15,1,12,3,7,13,14,1,11,4,10,8,3,14,12,6,8,8,12,11,8,15,4,0,5,3,5,15,13,15,8,8,1,10,0,11,15,8,12,5,9,5,12,14,2,14,15,6,14,8,7,14,12,13,12,10,5,6,13,13,15,11,4,2,2,5,3,12,1,5,1,8,4,10,1,5,9,13,4,4,8,1,4,14,2,12,2,6,2,2,3,8,9,9,4,6,15,8,5,4,13,12,9,9,8,6,7,10,3,9,15,1,10,5,15,4,4,10,7,6,1,14,15,4,13,3,9,4,6,15,5,3,14,4,6,11,7,14,10,5,0,11,11,13,15,0,1,15,5,12,6,1,1,8,14,13,7,0,10,12,0,15,2,8,1,6,4,2,5,7,0,11,6,2,11,12,8,8,14,13,9,4,0,0,13,15,4,1,1,12,3,9,11,14,12,4,1,0,6,2,4,10,8,13,2,7,5,6,2,15,9,8,8,10,8,3,11,1,14,11,6,11,10,7,4,8,1,7,14,10,7,14,0,12,5,4,9,9,6,15,11,15,0,10,12,4,2,13,3,13,3,11,0,10,7,3,15,13,15,15,5,12,5,5,7,8,4,0,13,13,8,3,14,2,3,12,2,5,0,2,12,0,15,15,4,0,2,13,2,11,10,10,2,3,2,7,8,13,7,7,1,12,1,13,4,2,14,1,5,4,10,2,3,10,2,13,5,4,14,5,15,14,14,2,15,1,13,3,11,8,4,11,2,15,9,15,11,1,8,0,0,7,2,8,1,7,5,11,0,5,2,6,6,12,2,14,5,6,15,15,9,14,13,8,3,8,1,5,14,11,1,7,10,13,6,15,13,5,14,6,3,5,4,0,0,15,0,8,8,13,11,4,4,11,15,7,7,6,9,0,15,3,10,14,12,12,11,1,10,0,9,0,2,10,0,3,6,15,5,13,13,11,5,14,3,7,11,6,14,15,13,2,5,2,12,5,15,1,7,8,5,13,1,1,2,3,15,15,13,10,6,1,11,8,2,0,5,0,13,15,1,14,1,2,14,1,0,6,4,3,3,6,4,8,4,14,8,12,6,5,8,0,14,1,14,1,14,5,8,6,4,2,11,7,10,10,0,7,6,14,10,12,15,2,15,3,11,13,2,3,9,9,8,10,11,9,4,15,8,15,2,6,3,13,1,1,2,2,13,10,12,13,5,7,1,11,0,15,12,11,7,4,14,13,15,15,11,15,3,9,1,8,2,3,0,6,4,15,6,7,12,6,15,1,7,4,4,0,6,1,0,11,0,0,10,10,0,8,5,9,12,14,5,5,4,6,4,1,0,13,7,3,8,1,5,3,11,3,5,0,14,14,9,4,13,3,15,15,14,14,5,7,7,14,14,6,5,14,0,13,4,12,10,7,4,9,6,14,5,3,11,0,3,14,4,5,11,3,4,6,4,14,1,9,14,7,6,2,1,13,15,9,12,5,1,6,1,7,10,13,11,2,3,11,8,7,8,4,8,13,4,1,1,3,7,4,15,9,9,14,4,2,7,10,7,8,13,15,1,3,9,7,13,1,12,14,12,12,12,12,15,2,10,14,6,13,7,2,0,0,10,6,0,2,5,6,11,4,7,3,5,15,7,4,14,11,9,12,2,2,9,10,3,1,10,12,7,12,9,12,15,0,0,13,3,14,13,1,6,10,4,13,3,2,1,8,0,2,1,6,2,9,4,0,13,12,8,1,11,3,4,14,8,13,6,9,13,5,6,3,7,0,2,1,5,5,1,0,15,10,6,1,11,8,5,2,12,6,14,8,11,14,6,10,1,1,12,5,11,13,8,15,5,2,9,11,0,6,6,15,7,13,9,4,8,1,6,14,14,6,1,15,0,13,5,0,1,13,3,15,13,11,8,11,9,11,7,13,0,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"2\", \"14\", \"1\"], \"clip_start\": 636.0, \"clip_end\": 640.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,6,9,11,3,3,0,0,14,10,1,14,2,12,11,6,10,8,2,8,8,11,7,13,12,10,7,8,2,14,9,5,14,6,11,15,8,9,10,3,11,8,1,1,6,2,2,2,0,0,9,3,15,10,0,0,0,6,8,15,12,12,8,3,12,8,8,3,9,4,5,3,0,12,15,6,13,8,6,2,15,12,2,11,6,8,7,11,4,4,13,2,3,9,8,11,4,2,6,13,10,4,2,1,10,3,12,15,10,4,10,8,2,8,13,13,4,9,2,8,10,9,2,2,9,2,11,9,12,12,7,15,12,13,14,12,5,13,15,8,1,0,12,0,4,6,10,12,14,2,15,9,14,13,12,5,6,15,9,14,1,5,0,11,9,15,3,15,14,10,6,5,10,15,15,1,12,3,7,13,14,1,11,4,10,8,3,14,12,6,8,8,12,11,8,15,4,0,5,3,5,15,13,15,8,8,1,10,0,11,15,8,12,5,9,5,12,14,2,14,15,6,14,8,7,14,12,13,12,10,5,6,13,13,15,11,4,2,2,5,3,12,1,5,1,8,4,10,1,5,9,13,4,4,8,1,4,14,2,12,2,6,2,2,3,8,9,9,4,6,15,8,5,4,13,12,9,9,8,6,7,10,3,9,15,1,10,5,15,4,4,10,7,6,1,14,15,4,13,3,9,4,6,15,5,3,14,4,6,11,7,14,10,5,0,11,11,13,15,0,1,15,5,12,6,1,1,8,14,13,7,0,10,12,0,15,2,8,1,6,4,2,5,7,0,11,6,2,11,12,8,8,14,13,9,4,0,0,13,15,4,1,1,12,3,9,11,14,12,4,1,0,6,2,4,10,8,13,2,7,5,6,2,15,9,8,8,10,8,3,11,1,14,11,6,11,10,7,4,8,1,7,14,10,7,14,0,12,5,4,9,9,6,15,11,15,0,10,12,4,2,13,3,13,3,11,0,10,7,3,15,13,15,15,5,12,5,5,7,8,4,0,13,13,8,3,14,2,3,12,2,5,0,2,12,0,15,15,4,0,2,13,2,11,10,10,2,3,2,7,8,13,7,7,1,12,1,13,4,2,14,1,5,4,10,2,3,10,2,13,5,4,14,5,15,14,14,2,15,1,13,3,11,8,4,11,2,15,9,15,11,1,8,0,0,7,2,8,1,7,5,11,0,5,2,6,6,12,2,14,5,6,15,15,9,14,13,8,3,8,1,5,14,11,1,7,10,13,6,15,13,5,14,6,3,5,4,0,0,15,0,8,8,13,11,4,4,11,15,7,7,6,9,0,15,3,10,14,12,12,11,1,10,0,9,0,2,10,0,3,6,15,5,13,13,11,5,14,3,7,11,6,14,15,13,2,5,2,12,5,15,1,7,8,5,13,1,1,2,3,15,15,13,10,6,1,11,8,2,0,5,0,13,15,1,14,1,2,14,1,0,6,4,3,3,6,4,8,4,14,8,12,6,5,8,0,14,1,14,1,14,5,8,6,4,2,11,7,10,10,0,7,6,14,10,12,15,2,15,3,11,13,2,3,9,9,8,10,11,9,4,15,8,15,2,6,3,13,1,1,2,2,13,10,12,13,5,7,1,11,0,15,12,11,7,4,14,13,15,15,11,15,3,9,1,8,2,3,0,6,4,15,6,7,12,6,15,1,7,4,4,0,6,1,0,11,0,0,10,10,0,8,5,9,12,14,5,5,4,6,4,1,0,13,7,3,8,1,5,3,11,3,5,0,14,14,9,4,13,3,15,15,14,14,5,7,7,14,14,6,5,14,0,13,4,12,10,7,4,9,6,14,5,3,11,0,3,14,4,5,11,3,4,6,4,14,1,9,14,7,6,2,1,13,15,9,12,5,1,6,1,7,10,13,11,2,3,11,8,7,8,4,8,13,4,1,1,3,7,4,15,9,9,14,4,2,7,10,7,8,13,15,1,3,9,7,13,1,12,14,12,12,12,12,15,2,10,14,6,13,7,2,0,0,10,6,0,2,5,6,11,4,7,3,5,15,7,4,14,11,9,12,2,2,9,10,3,1,10,12,7,12,9,12,15,0,0,13,3,14,13,1,6,10,4,13,3,2,1,8,0,2,1,6,2,9,4,0,13,12,8,1,11,3,4,14,8,13,6,9,13,5,6,3,7,0,2,1,5,5,1,0,15,10,6,1,11,8,5,2,12,6,14,8,11,14,6,10,1,1,12,5,11,13,8,15,5,2,9,11,0,6,6,15,7,13,9,4,8,1,6,14,14,6,1,15,0,13,5,0,1,13,3,15,13,11,8,11,9,11,7,13,0,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"1\", \"11\", \"8\"], \"clip_start\": 964.0, \"clip_end\": 968.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,6,9,11,3,3,0,0,14,10,1,14,2,12,11,6,10,8,2,8,8,11,7,13,12,10,7,8,2,14,9,5,14,6,11,15,8,9,10,3,11,8,1,1,6,2,2,2,0,0,9,3,15,10,0,0,0,6,8,15,12,12,8,3,12,8,8,3,9,4,5,3,0,12,15,6,13,8,6,2,15,12,2,11,6,8,7,11,4,4,13,2,3,9,8,11,4,2,6,13,10,4,2,1,10,3,12,15,10,4,10,8,2,8,13,13,4,9,2,8,10,9,2,2,9,2,11,9,12,12,7,15,12,13,14,12,5,13,15,8,1,0,12,0,4,6,10,12,14,2,15,9,14,13,12,5,6,15,9,14,1,5,0,11,9,15,3,15,14,10,6,5,10,15,15,1,12,3,7,13,14,1,11,4,10,8,3,14,12,6,8,8,12,11,8,15,4,0,5,3,5,15,13,15,8,8,1,10,0,11,15,8,12,5,9,5,12,14,2,14,15,6,14,8,7,14,12,13,12,10,5,6,13,13,15,11,4,2,2,5,3,12,1,5,1,8,4,10,1,5,9,13,4,4,8,1,4,14,2,12,2,6,2,2,3,8,9,9,4,6,15,8,5,4,13,12,9,9,8,6,7,10,3,9,15,1,10,5,15,4,4,10,7,6,1,14,15,4,13,3,9,4,6,15,5,3,14,4,6,11,7,14,10,5,0,11,11,13,15,0,1,15,5,12,6,1,1,8,14,13,7,0,10,12,0,15,2,8,1,6,4,2,5,7,0,11,6,2,11,12,8,8,14,13,9,4,0,0,13,15,4,1,1,12,3,9,11,14,12,4,1,0,6,2,4,10,8,13,2,7,5,6,2,15,9,8,8,10,8,3,11,1,14,11,6,11,10,7,4,8,1,7,14,10,7,14,0,12,5,4,9,9,6,15,11,15,0,10,12,4,2,13,3,13,3,11,0,10,7,3,15,13,15,15,5,12,5,5,7,8,4,0,13,13,8,3,14,2,3,12,2,5,0,2,12,0,15,15,4,0,2,13,2,11,10,10,2,3,2,7,8,13,7,7,1,12,1,13,4,2,14,1,5,4,10,2,3,10,2,13,5,4,14,5,15,14,14,2,15,1,13,3,11,8,4,11,2,15,9,15,11,1,8,0,0,7,2,8,1,7,5,11,0,5,2,6,6,12,2,14,5,6,15,15,9,14,13,8,3,8,1,5,14,11,1,7,10,13,6,15,13,5,14,6,3,5,4,0,0,15,0,8,8,13,11,4,4,11,15,7,7,6,9,0,15,3,10,14,12,12,11,1,10,0,9,0,2,10,0,3,6,15,5,13,13,11,5,14,3,7,11,6,14,15,13,2,5,2,12,5,15,1,7,8,5,13,1,1,2,3,15,15,13,10,6,1,11,8,2,0,5,0,13,15,1,14,1,2,14,1,0,6,4,3,3,6,4,8,4,14,8,12,6,5,8,0,14,1,14,1,14,5,8,6,4,2,11,7,10,10,0,7,6,14,10,12,15,2,15,3,11,13,2,3,9,9,8,10,11,9,4,15,8,15,2,6,3,13,1,1,2,2,13,10,12,13,5,7,1,11,0,15,12,11,7,4,14,13,15,15,11,15,3,9,1,8,2,3,0,6,4,15,6,7,12,6,15,1,7,4,4,0,6,1,0,11,0,0,10,10,0,8,5,9,12,14,5,5,4,6,4,1,0,13,7,3,8,1,5,3,11,3,5,0,14,14,9,4,13,3,15,15,14,14,5,7,7,14,14,6,5,14,0,13,4,12,10,7,4,9,6,14,5,3,11,0,3,14,4,5,11,3,4,6,4,14,1,9,14,7,6,2,1,13,15,9,12,5,1,6,1,7,10,13,11,2,3,11,8,7,8,4,8,13,4,1,1,3,7,4,15,9,9,14,4,2,7,10,7,8,13,15,1,3,9,7,13,1,12,14,12,12,12,12,15,2,10,14,6,13,7,2,0,0,10,6,0,2,5,6,11,4,7,3,5,15,7,4,14,11,9,12,2,2,9,10,3,1,10,12,7,12,9,12,15,0,0,13,3,14,13,1,6,10,4,13,3,2,1,8,0,2,1,6,2,9,4,0,13,12,8,1,11,3,4,14,8,13,6,9,13,5,6,3,7,0,2,1,5,5,1,0,15,10,6,1,11,8,5,2,12,6,14,8,11,14,6,10,1,1,12,5,11,13,8,15,5,2,9,11,0,6,6,15,7,13,9,4,8,1,6,14,14,6,1,15,0,13,5,0,1,13,3,15,13,11,8,11,9,11,7,13,0,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 331.0, \"clip_end\": 337.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,6,9,11,3,3,0,0,14,10,1,14,2,12,11,6,10,8,2,8,8,11,7,13,12,10,7,8,2,14,9,5,14,6,11,15,8,9,10,3,11,8,1,1,6,2,2,2,0,0,9,3,15,10,0,0,0,6,8,15,12,12,8,3,12,8,8,3,9,4,5,3,0,12,15,6,13,8,6,2,15,12,2,11,6,8,7,11,4,4,13,2,3,9,8,11,4,2,6,13,10,4,2,1,10,3,12,15,10,4,10,8,2,8,13,13,4,9,2,8,10,9,2,2,9,2,11,9,12,12,7,15,12,13,14,12,5,13,15,8,1,0,12,0,4,6,10,12,14,2,15,9,14,13,12,5,6,15,9,14,1,5,0,11,9,15,3,15,14,10,6,5,10,15,15,1,12,3,7,13,14,1,11,4,10,8,3,14,12,6,8,8,12,11,8,15,4,0,5,3,5,15,13,15,8,8,1,10,0,11,15,8,12,5,9,5,12,14,2,14,15,6,14,8,7,14,12,13,12,10,5,6,13,13,15,11,4,2,2,5,3,12,1,5,1,8,4,10,1,5,9,13,4,4,8,1,4,14,2,12,2,6,2,2,3,8,9,9,4,6,15,8,5,4,13,12,9,9,8,6,7,10,3,9,15,1,10,5,15,4,4,10,7,6,1,14,15,4,13,3,9,4,6,15,5,3,14,4,6,11,7,14,10,5,0,11,11,13,15,0,1,15,5,12,6,1,1,8,14,13,7,0,10,12,0,15,2,8,1,6,4,2,5,7,0,11,6,2,11,12,8,8,14,13,9,4,0,0,13,15,4,1,1,12,3,9,11,14,12,4,1,0,6,2,4,10,8,13,2,7,5,6,2,15,9,8,8,10,8,3,11,1,14,11,6,11,10,7,4,8,1,7,14,10,7,14,0,12,5,4,9,9,6,15,11,15,0,10,12,4,2,13,3,13,3,11,0,10,7,3,15,13,15,15,5,12,5,5,7,8,4,0,13,13,8,3,14,2,3,12,2,5,0,2,12,0,15,15,4,0,2,13,2,11,10,10,2,3,2,7,8,13,7,7,1,12,1,13,4,2,14,1,5,4,10,2,3,10,2,13,5,4,14,5,15,14,14,2,15,1,13,3,11,8,4,11,2,15,9,15,11,1,8,0,0,7,2,8,1,7,5,11,0,5,2,6,6,12,2,14,5,6,15,15,9,14,13,8,3,8,1,5,14,11,1,7,10,13,6,15,13,5,14,6,3,5,4,0,0,15,0,8,8,13,11,4,4,11,15,7,7,6,9,0,15,3,10,14,12,12,11,1,10,0,9,0,2,10,0,3,6,15,5,13,13,11,5,14,3,7,11,6,14,15,13,2,5,2,12,5,15,1,7,8,5,13,1,1,2,3,15,15,13,10,6,1,11,8,2,0,5,0,13,15,1,14,1,2,14,1,0,6,4,3,3,6,4,8,4,14,8,12,6,5,8,0,14,1,14,1,14,5,8,6,4,2,11,7,10,10,0,7,6,14,10,12,15,2,15,3,11,13,2,3,9,9,8,10,11,9,4,15,8,15,2,6,3,13,1,1,2,2,13,10,12,13,5,7,1,11,0,15,12,11,7,4,14,13,15,15,11,15,3,9,1,8,2,3,0,6,4,15,6,7,12,6,15,1,7,4,4,0,6,1,0,11,0,0,10,10,0,8,5,9,12,14,5,5,4,6,4,1,0,13,7,3,8,1,5,3,11,3,5,0,14,14,9,4,13,3,15,15,14,14,5,7,7,14,14,6,5,14,0,13,4,12,10,7,4,9,6,14,5,3,11,0,3,14,4,5,11,3,4,6,4,14,1,9,14,7,6,2,1,13,15,9,12,5,1,6,1,7,10,13,11,2,3,11,8,7,8,4,8,13,4,1,1,3,7,4,15,9,9,14,4,2,7,10,7,8,13,15,1,3,9,7,13,1,12,14,12,12,12,12,15,2,10,14,6,13,7,2,0,0,10,6,0,2,5,6,11,4,7,3,5,15,7,4,14,11,9,12,2,2,9,10,3,1,10,12,7,12,9,12,15,0,0,13,3,14,13,1,6,10,4,13,3,2,1,8,0,2,1,6,2,9,4,0,13,12,8,1,11,3,4,14,8,13,6,9,13,5,6,3,7,0,2,1,5,5,1,0,15,10,6,1,11,8,5,2,12,6,14,8,11,14,6,10,1,1,12,5,11,13,8,15,5,2,9,11,0,6,6,15,7,13,9,4,8,1,6,14,14,6,1,15,0,13,5,0,1,13,3,15,13,11,8,11,9,11,7,13,0,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 785.0, \"clip_end\": 789.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,6,9,11,3,3,0,0,14,10,1,14,2,12,11,6,10,8,2,8,8,11,7,13,12,10,7,8,2,14,9,5,14,6,11,15,8,9,10,3,11,8,1,1,6,2,2,2,0,0,9,3,15,10,0,0,0,6,8,15,12,12,8,3,12,8,8,3,9,4,5,3,0,12,15,6,13,8,6,2,15,12,2,11,6,8,7,11,4,4,13,2,3,9,8,11,4,2,6,13,10,4,2,1,10,3,12,15,10,4,10,8,2,8,13,13,4,9,2,8,10,9,2,2,9,2,11,9,12,12,7,15,12,13,14,12,5,13,15,8,1,0,12,0,4,6,10,12,14,2,15,9,14,13,12,5,6,15,9,14,1,5,0,11,9,15,3,15,14,10,6,5,10,15,15,1,12,3,7,13,14,1,11,4,10,8,3,14,12,6,8,8,12,11,8,15,4,0,5,3,5,15,13,15,8,8,1,10,0,11,15,8,12,5,9,5,12,14,2,14,15,6,14,8,7,14,12,13,12,10,5,6,13,13,15,11,4,2,2,5,3,12,1,5,1,8,4,10,1,5,9,13,4,4,8,1,4,14,2,12,2,6,2,2,3,8,9,9,4,6,15,8,5,4,13,12,9,9,8,6,7,10,3,9,15,1,10,5,15,4,4,10,7,6,1,14,15,4,13,3,9,4,6,15,5,3,14,4,6,11,7,14,10,5,0,11,11,13,15,0,1,15,5,12,6,1,1,8,14,13,7,0,10,12,0,15,2,8,1,6,4,2,5,7,0,11,6,2,11,12,8,8,14,13,9,4,0,0,13,15,4,1,1,12,3,9,11,14,12,4,1,0,6,2,4,10,8,13,2,7,5,6,2,15,9,8,8,10,8,3,11,1,14,11,6,11,10,7,4,8,1,7,14,10,7,14,0,12,5,4,9,9,6,15,11,15,0,10,12,4,2,13,3,13,3,11,0,10,7,3,15,13,15,15,5,12,5,5,7,8,4,0,13,13,8,3,14,2,3,12,2,5,0,2,12,0,15,15,4,0,2,13,2,11,10,10,2,3,2,7,8,13,7,7,1,12,1,13,4,2,14,1,5,4,10,2,3,10,2,13,5,4,14,5,15,14,14,2,15,1,13,3,11,8,4,11,2,15,9,15,11,1,8,0,0,7,2,8,1,7,5,11,0,5,2,6,6,12,2,14,5,6,15,15,9,14,13,8,3,8,1,5,14,11,1,7,10,13,6,15,13,5,14,6,3,5,4,0,0,15,0,8,8,13,11,4,4,11,15,7,7,6,9,0,15,3,10,14,12,12,11,1,10,0,9,0,2,10,0,3,6,15,5,13,13,11,5,14,3,7,11,6,14,15,13,2,5,2,12,5,15,1,7,8,5,13,1,1,2,3,15,15,13,10,6,1,11,8,2,0,5,0,13,15,1,14,1,2,14,1,0,6,4,3,3,6,4,8,4,14,8,12,6,5,8,0,14,1,14,1,14,5,8,6,4,2,11,7,10,10,0,7,6,14,10,12,15,2,15,3,11,13,2,3,9,9,8,10,11,9,4,15,8,15,2,6,3,13,1,1,2,2,13,10,12,13,5,7,1,11,0,15,12,11,7,4,14,13,15,15,11,15,3,9,1,8,2,3,0,6,4,15,6,7,12,6,15,1,7,4,4,0,6,1,0,11,0,0,10,10,0,8,5,9,12,14,5,5,4,6,4,1,0,13,7,3,8,1,5,3,11,3,5,0,14,14,9,4,13,3,15,15,14,14,5,7,7,14,14,6,5,14,0,13,4,12,10,7,4,9,6,14,5,3,11,0,3,14,4,5,11,3,4,6,4,14,1,9,14,7,6,2,1,13,15,9,12,5,1,6,1,7,10,13,11,2,3,11,8,7,8,4,8,13,4,1,1,3,7,4,15,9,9,14,4,2,7,10,7,8,13,15,1,3,9,7,13,1,12,14,12,12,12,12,15,2,10,14,6,13,7,2,0,0,10,6,0,2,5,6,11,4,7,3,5,15,7,4,14,11,9,12,2,2,9,10,3,1,10,12,7,12,9,12,15,0,0,13,3,14,13,1,6,10,4,13,3,2,1,8,0,2,1,6,2,9,4,0,13,12,8,1,11,3,4,14,8,13,6,9,13,5,6,3,7,0,2,1,5,5,1,0,15,10,6,1,11,8,5,2,12,6,14,8,11,14,6,10,1,1,12,5,11,13,8,15,5,2,9,11,0,6,6,15,7,13,9,4,8,1,6,14,14,6,1,15,0,13,5,0,1,13,3,15,13,11,8,11,9,11,7,13,0,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"15\", \"4\", \"1\"], \"clip_start\": 357.0, \"clip_end\": 362.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,6,9,11,3,3,0,0,14,10,1,14,2,12,11,6,10,8,2,8,8,11,7,13,12,10,7,8,2,14,9,5,14,6,11,15,8,9,10,3,11,8,1,1,6,2,2,2,0,0,9,3,15,10,0,0,0,6,8,15,12,12,8,3,12,8,8,3,9,4,5,3,0,12,15,6,13,8,6,2,15,12,2,11,6,8,7,11,4,4,13,2,3,9,8,11,4,2,6,13,10,4,2,1,10,3,12,15,10,4,10,8,2,8,13,13,4,9,2,8,10,9,2,2,9,2,11,9,12,12,7,15,12,13,14,12,5,13,15,8,1,0,12,0,4,6,10,12,14,2,15,9,14,13,12,5,6,15,9,14,1,5,0,11,9,15,3,15,14,10,6,5,10,15,15,1,12,3,7,13,14,1,11,4,10,8,3,14,12,6,8,8,12,11,8,15,4,0,5,3,5,15,13,15,8,8,1,10,0,11,15,8,12,5,9,5,12,14,2,14,15,6,14,8,7,14,12,13,12,10,5,6,13,13,15,11,4,2,2,5,3,12,1,5,1,8,4,10,1,5,9,13,4,4,8,1,4,14,2,12,2,6,2,2,3,8,9,9,4,6,15,8,5,4,13,12,9,9,8,6,7,10,3,9,15,1,10,5,15,4,4,10,7,6,1,14,15,4,13,3,9,4,6,15,5,3,14,4,6,11,7,14,10,5,0,11,11,13,15,0,1,15,5,12,6,1,1,8,14,13,7,0,10,12,0,15,2,8,1,6,4,2,5,7,0,11,6,2,11,12,8,8,14,13,9,4,0,0,13,15,4,1,1,12,3,9,11,14,12,4,1,0,6,2,4,10,8,13,2,7,5,6,2,15,9,8,8,10,8,3,11,1,14,11,6,11,10,7,4,8,1,7,14,10,7,14,0,12,5,4,9,9,6,15,11,15,0,10,12,4,2,13,3,13,3,11,0,10,7,3,15,13,15,15,5,12,5,5,7,8,4,0,13,13,8,3,14,2,3,12,2,5,0,2,12,0,15,15,4,0,2,13,2,11,10,10,2,3,2,7,8,13,7,7,1,12,1,13,4,2,14,1,5,4,10,2,3,10,2,13,5,4,14,5,15,14,14,2,15,1,13,3,11,8,4,11,2,15,9,15,11,1,8,0,0,7,2,8,1,7,5,11,0,5,2,6,6,12,2,14,5,6,15,15,9,14,13,8,3,8,1,5,14,11,1,7,10,13,6,15,13,5,14,6,3,5,4,0,0,15,0,8,8,13,11,4,4,11,15,7,7,6,9,0,15,3,10,14,12,12,11,1,10,0,9,0,2,10,0,3,6,15,5,13,13,11,5,14,3,7,11,6,14,15,13,2,5,2,12,5,15,1,7,8,5,13,1,1,2,3,15,15,13,10,6,1,11,8,2,0,5,0,13,15,1,14,1,2,14,1,0,6,4,3,3,6,4,8,4,14,8,12,6,5,8,0,14,1,14,1,14,5,8,6,4,2,11,7,10,10,0,7,6,14,10,12,15,2,15,3,11,13,2,3,9,9,8,10,11,9,4,15,8,15,2,6,3,13,1,1,2,2,13,10,12,13,5,7,1,11,0,15,12,11,7,4,14,13,15,15,11,15,3,9,1,8,2,3,0,6,4,15,6,7,12,6,15,1,7,4,4,0,6,1,0,11,0,0,10,10,0,8,5,9,12,14,5,5,4,6,4,1,0,13,7,3,8,1,5,3,11,3,5,0,14,14,9,4,13,3,15,15,14,14,5,7,7,14,14,6,5,14,0,13,4,12,10,7,4,9,6,14,5,3,11,0,3,14,4,5,11,3,4,6,4,14,1,9,14,7,6,2,1,13,15,9,12,5,1,6,1,7,10,13,11,2,3,11,8,7,8,4,8,13,4,1,1,3,7,4,15,9,9,14,4,2,7,10,7,8,13,15,1,3,9,7,13,1,12,14,12,12,12,12,15,2,10,14,6,13,7,2,0,0,10,6,0,2,5,6,11,4,7,3,5,15,7,4,14,11,9,12,2,2,9,10,3,1,10,12,7,12,9,12,15,0,0,13,3,14,13,1,6,10,4,13,3,2,1,8,0,2,1,6,2,9,4,0,13,12,8,1,11,3,4,14,8,13,6,9,13,5,6,3,7,0,2,1,5,5,1,0,15,10,6,1,11,8,5,2,12,6,14,8,11,14,6,10,1,1,12,5,11,13,8,15,5,2,9,11,0,6,6,15,7,13,9,4,8,1,6,14,14,6,1,15,0,13,5,0,1,13,3,15,13,11,8,11,9,11,7,13,0,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"2\", \"3\", \"8\", \"9\"], \"clip_start\": 261.0, \"clip_end\": 267.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,6,9,11,3,3,0,0,14,10,1,14,2,12,11,6,10,8,2,8,8,11,7,13,12,10,7,8,2,14,9,5,14,6,11,15,8,9,10,3,11,8,1,1,6,2,2,2,0,0,9,3,15,10,0,0,0,6,8,15,12,12,8,3,12,8,8,3,9,4,5,3,0,12,15,6,13,8,6,2,15,12,2,11,6,8,7,11,4,4,13,2,3,9,8,11,4,2,6,13,10,4,2,1,10,3,12,15,10,4,10,8,2,8,13,13,4,9,2,8,10,9,2,2,9,2,11,9,12,12,7,15,12,13,14,12,5,13,15,8,1,0,12,0,4,6,10,12,14,2,15,9,14,13,12,5,6,15,9,14,1,5,0,11,9,15,3,15,14,10,6,5,10,15,15,1,12,3,7,13,14,1,11,4,10,8,3,14,12,6,8,8,12,11,8,15,4,0,5,3,5,15,13,15,8,8,1,10,0,11,15,8,12,5,9,5,12,14,2,14,15,6,14,8,7,14,12,13,12,10,5,6,13,13,15,11,4,2,2,5,3,12,1,5,1,8,4,10,1,5,9,13,4,4,8,1,4,14,2,12,2,6,2,2,3,8,9,9,4,6,15,8,5,4,13,12,9,9,8,6,7,10,3,9,15,1,10,5,15,4,4,10,7,6,1,14,15,4,13,3,9,4,6,15,5,3,14,4,6,11,7,14,10,5,0,11,11,13,15,0,1,15,5,12,6,1,1,8,14,13,7,0,10,12,0,15,2,8,1,6,4,2,5,7,0,11,6,2,11,12,8,8,14,13,9,4,0,0,13,15,4,1,1,12,3,9,11,14,12,4,1,0,6,2,4,10,8,13,2,7,5,6,2,15,9,8,8,10,8,3,11,1,14,11,6,11,10,7,4,8,1,7,14,10,7,14,0,12,5,4,9,9,6,15,11,15,0,10,12,4,2,13,3,13,3,11,0,10,7,3,15,13,15,15,5,12,5,5,7,8,4,0,13,13,8,3,14,2,3,12,2,5,0,2,12,0,15,15,4,0,2,13,2,11,10,10,2,3,2,7,8,13,7,7,1,12,1,13,4,2,14,1,5,4,10,2,3,10,2,13,5,4,14,5,15,14,14,2,15,1,13,3,11,8,4,11,2,15,9,15,11,1,8,0,0,7,2,8,1,7,5,11,0,5,2,6,6,12,2,14,5,6,15,15,9,14,13,8,3,8,1,5,14,11,1,7,10,13,6,15,13,5,14,6,3,5,4,0,0,15,0,8,8,13,11,4,4,11,15,7,7,6,9,0,15,3,10,14,12,12,11,1,10,0,9,0,2,10,0,3,6,15,5,13,13,11,5,14,3,7,11,6,14,15,13,2,5,2,12,5,15,1,7,8,5,13,1,1,2,3,15,15,13,10,6,1,11,8,2,0,5,0,13,15,1,14,1,2,14,1,0,6,4,3,3,6,4,8,4,14,8,12,6,5,8,0,14,1,14,1,14,5,8,6,4,2,11,7,10,10,0,7,6,14,10,12,15,2,15,3,11,13,2,3,9,9,8,10,11,9,4,15,8,15,2,6,3,13,1,1,2,2,13,10,12,13,5,7,1,11,0,15,12,11,7,4,14,13,15,15,11,15,3,9,1,8,2,3,0,6,4,15,6,7,12,6,15,1,7,4,4,0,6,1,0,11,0,0,10,10,0,8,5,9,12,14,5,5,4,6,4,1,0,13,7,3,8,1,5,3,11,3,5,0,14,14,9,4,13,3,15,15,14,14,5,7,7,14,14,6,5,14,0,13,4,12,10,7,4,9,6,14,5,3,11,0,3,14,4,5,11,3,4,6,4,14,1,9,14,7,6,2,1,13,15,9,12,5,1,6,1,7,10,13,11,2,3,11,8,7,8,4,8,13,4,1,1,3,7,4,15,9,9,14,4,2,7,10,7,8,13,15,1,3,9,7,13,1,12,14,12,12,12,12,15,2,10,14,6,13,7,2,0,0,10,6,0,2,5,6,11,4,7,3,5,15,7,4,14,11,9,12,2,2,9,10,3,1,10,12,7,12,9,12,15,0,0,13,3,14,13,1,6,10,4,13,3,2,1,8,0,2,1,6,2,9,4,0,13,12,8,1,11,3,4,14,8,13,6,9,13,5,6,3,7,0,2,1,5,5,1,0,15,10,6,1,11,8,5,2,12,6,14,8,11,14,6,10,1,1,12,5,11,13,8,15,5,2,9,11,0,6,6,15,7,13,9,4,8,1,6,14,14,6,1,15,0,13,5,0,1,13,3,15,13,11,8,11,9,11,7,13,0,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"3\"], \"clip_start\": 427.0, \"clip_end\": 430.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q11_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,6,9,11,3,3,0,0,14,10,1,14,2,12,11,6,10,8,2,8,8,11,7,13,12,10,7,8,2,14,9,5,14,6,11,15,8,9,10,3,11,8,1,1,6,2,2,2,0,0,9,3,15,10,0,0,0,6,8,15,12,12,8,3,12,8,8,3,9,4,5,3,0,12,15,6,13,8,6,2,15,12,2,11,6,8,7,11,4,4,13,2,3,9,8,11,4,2,6,13,10,4,2,1,10,3,12,15,10,4,10,8,2,8,13,13,4,9,2,8,10,9,2,2,9,2,11,9,12,12,7,15,12,13,14,12,5,13,15,8,1,0,12,0,4,6,10,12,14,2,15,9,14,13,12,5,6,15,9,14,1,5,0,11,9,15,3,15,14,10,6,5,10,15,15,1,12,3,7,13,14,1,11,4,10,8,3,14,12,6,8,8,12,11,8,15,4,0,5,3,5,15,13,15,8,8,1,10,0,11,15,8,12,5,9,5,12,14,2,14,15,6,14,8,7,14,12,13,12,10,5,6,13,13,15,11,4,2,2,5,3,12,1,5,1,8,4,10,1,5,9,13,4,4,8,1,4,14,2,12,2,6,2,2,3,8,9,9,4,6,15,8,5,4,13,12,9,9,8,6,7,10,3,9,15,1,10,5,15,4,4,10,7,6,1,14,15,4,13,3,9,4,6,15,5,3,14,4,6,11,7,14,10,5,0,11,11,13,15,0,1,15,5,12,6,1,1,8,14,13,7,0,10,12,0,15,2,8,1,6,4,2,5,7,0,11,6,2,11,12,8,8,14,13,9,4,0,0,13,15,4,1,1,12,3,9,11,14,12,4,1,0,6,2,4,10,8,13,2,7,5,6,2,15,9,8,8,10,8,3,11,1,14,11,6,11,10,7,4,8,1,7,14,10,7,14,0,12,5,4,9,9,6,15,11,15,0,10,12,4,2,13,3,13,3,11,0,10,7,3,15,13,15,15,5,12,5,5,7,8,4,0,13,13,8,3,14,2,3,12,2,5,0,2,12,0,15,15,4,0,2,13,2,11,10,10,2,3,2,7,8,13,7,7,1,12,1,13,4,2,14,1,5,4,10,2,3,10,2,13,5,4,14,5,15,14,14,2,15,1,13,3,11,8,4,11,2,15,9,15,11,1,8,0,0,7,2,8,1,7,5,11,0,5,2,6,6,12,2,14,5,6,15,15,9,14,13,8,3,8,1,5,14,11,1,7,10,13,6,15,13,5,14,6,3,5,4,0,0,15,0,8,8,13,11,4,4,11,15,7,7,6,9,0,15,3,10,14,12,12,11,1,10,0,9,0,2,10,0,3,6,15,5,13,13,11,5,14,3,7,11,6,14,15,13,2,5,2,12,5,15,1,7,8,5,13,1,1,2,3,15,15,13,10,6,1,11,8,2,0,5,0,13,15,1,14,1,2,14,1,0,6,4,3,3,6,4,8,4,14,8,12,6,5,8,0,14,1,14,1,14,5,8,6,4,2,11,7,10,10,0,7,6,14,10,12,15,2,15,3,11,13,2,3,9,9,8,10,11,9,4,15,8,15,2,6,3,13,1,1,2,2,13,10,12,13,5,7,1,11,0,15,12,11,7,4,14,13,15,15,11,15,3,9,1,8,2,3,0,6,4,15,6,7,12,6,15,1,7,4,4,0,6,1,0,11,0,0,10,10,0,8,5,9,12,14,5,5,4,6,4,1,0,13,7,3,8,1,5,3,11,3,5,0,14,14,9,4,13,3,15,15,14,14,5,7,7,14,14,6,5,14,0,13,4,12,10,7,4,9,6,14,5,3,11,0,3,14,4,5,11,3,4,6,4,14,1,9,14,7,6,2,1,13,15,9,12,5,1,6,1,7,10,13,11,2,3,11,8,7,8,4,8,13,4,1,1,3,7,4,15,9,9,14,4,2,7,10,7,8,13,15,1,3,9,7,13,1,12,14,12,12,12,12,15,2,10,14,6,13,7,2,0,0,10,6,0,2,5,6,11,4,7,3,5,15,7,4,14,11,9,12,2,2,9,10,3,1,10,12,7,12,9,12,15,0,0,13,3,14,13,1,6,10,4,13,3,2,1,8,0,2,1,6,2,9,4,0,13,12,8,1,11,3,4,14,8,13,6,9,13,5,6,3,7,0,2,1,5,5,1,0,15,10,6,1,11,8,5,2,12,6,14,8,11,14,6,10,1,1,12,5,11,13,8,15,5,2,9,11,0,6,6,15,7,13,9,4,8,1,6,14,14,6,1,15,0,13,5,0,1,13,3,15,13,11,8,11,9,11,7,13,0,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"11\", \"2\", \"15\"], \"clip_start\": 503.0, \"clip_end\": 508.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,6,9,11,3,3,0,0,14,10,1,14,2,12,11,6,10,8,2,8,8,11,7,13,12,10,7,8,2,14,9,5,14,6,11,15,8,9,10,3,11,8,1,1,6,2,2,2,0,0,9,3,15,10,0,0,0,6,8,15,12,12,8,3,12,8,8,3,9,4,5,3,0,12,15,6,13,8,6,2,15,12,2,11,6,8,7,11,4,4,13,2,3,9,8,11,4,2,6,13,10,4,2,1,10,3,12,15,10,4,10,8,2,8,13,13,4,9,2,8,10,9,2,2,9,2,11,9,12,12,7,15,12,13,14,12,5,13,15,8,1,0,12,0,4,6,10,12,14,2,15,9,14,13,12,5,6,15,9,14,1,5,0,11,9,15,3,15,14,10,6,5,10,15,15,1,12,3,7,13,14,1,11,4,10,8,3,14,12,6,8,8,12,11,8,15,4,0,5,3,5,15,13,15,8,8,1,10,0,11,15,8,12,5,9,5,12,14,2,14,15,6,14,8,7,14,12,13,12,10,5,6,13,13,15,11,4,2,2,5,3,12,1,5,1,8,4,10,1,5,9,13,4,4,8,1,4,14,2,12,2,6,2,2,3,8,9,9,4,6,15,8,5,4,13,12,9,9,8,6,7,10,3,9,15,1,10,5,15,4,4,10,7,6,1,14,15,4,13,3,9,4,6,15,5,3,14,4,6,11,7,14,10,5,0,11,11,13,15,0,1,15,5,12,6,1,1,8,14,13,7,0,10,12,0,15,2,8,1,6,4,2,5,7,0,11,6,2,11,12,8,8,14,13,9,4,0,0,13,15,4,1,1,12,3,9,11,14,12,4,1,0,6,2,4,10,8,13,2,7,5,6,2,15,9,8,8,10,8,3,11,1,14,11,6,11,10,7,4,8,1,7,14,10,7,14,0,12,5,4,9,9,6,15,11,15,0,10,12,4,2,13,3,13,3,11,0,10,7,3,15,13,15,15,5,12,5,5,7,8,4,0,13,13,8,3,14,2,3,12,2,5,0,2,12,0,15,15,4,0,2,13,2,11,10,10,2,3,2,7,8,13,7,7,1,12,1,13,4,2,14,1,5,4,10,2,3,10,2,13,5,4,14,5,15,14,14,2,15,1,13,3,11,8,4,11,2,15,9,15,11,1,8,0,0,7,2,8,1,7,5,11,0,5,2,6,6,12,2,14,5,6,15,15,9,14,13,8,3,8,1,5,14,11,1,7,10,13,6,15,13,5,14,6,3,5,4,0,0,15,0,8,8,13,11,4,4,11,15,7,7,6,9,0,15,3,10,14,12,12,11,1,10,0,9,0,2,10,0,3,6,15,5,13,13,11,5,14,3,7,11,6,14,15,13,2,5,2,12,5,15,1,7,8,5,13,1,1,2,3,15,15,13,10,6,1,11,8,2,0,5,0,13,15,1,14,1,2,14,1,0,6,4,3,3,6,4,8,4,14,8,12,6,5,8,0,14,1,14,1,14,5,8,6,4,2,11,7,10,10,0,7,6,14,10,12,15,2,15,3,11,13,2,3,9,9,8,10,11,9,4,15,8,15,2,6,3,13,1,1,2,2,13,10,12,13,5,7,1,11,0,15,12,11,7,4,14,13,15,15,11,15,3,9,1,8,2,3,0,6,4,15,6,7,12,6,15,1,7,4,4,0,6,1,0,11,0,0,10,10,0,8,5,9,12,14,5,5,4,6,4,1,0,13,7,3,8,1,5,3,11,3,5,0,14,14,9,4,13,3,15,15,14,14,5,7,7,14,14,6,5,14,0,13,4,12,10,7,4,9,6,14,5,3,11,0,3,14,4,5,11,3,4,6,4,14,1,9,14,7,6,2,1,13,15,9,12,5,1,6,1,7,10,13,11,2,3,11,8,7,8,4,8,13,4,1,1,3,7,4,15,9,9,14,4,2,7,10,7,8,13,15,1,3,9,7,13,1,12,14,12,12,12,12,15,2,10,14,6,13,7,2,0,0,10,6,0,2,5,6,11,4,7,3,5,15,7,4,14,11,9,12,2,2,9,10,3,1,10,12,7,12,9,12,15,0,0,13,3,14,13,1,6,10,4,13,3,2,1,8,0,2,1,6,2,9,4,0,13,12,8,1,11,3,4,14,8,13,6,9,13,5,6,3,7,0,2,1,5,5,1,0,15,10,6,1,11,8,5,2,12,6,14,8,11,14,6,10,1,1,12,5,11,13,8,15,5,2,9,11,0,6,6,15,7,13,9,4,8,1,6,14,14,6,1,15,0,13,5,0,1,13,3,15,13,11,8,11,9,11,7,13,0,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"11\", \"9\", \"15\"], \"clip_start\": 516.0, \"clip_end\": 521.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q13_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,6,9,11,3,3,0,0,14,10,1,14,2,12,11,6,10,8,2,8,8,11,7,13,12,10,7,8,2,14,9,5,14,6,11,15,8,9,10,3,11,8,1,1,6,2,2,2,0,0,9,3,15,10,0,0,0,6,8,15,12,12,8,3,12,8,8,3,9,4,5,3,0,12,15,6,13,8,6,2,15,12,2,11,6,8,7,11,4,4,13,2,3,9,8,11,4,2,6,13,10,4,2,1,10,3,12,15,10,4,10,8,2,8,13,13,4,9,2,8,10,9,2,2,9,2,11,9,12,12,7,15,12,13,14,12,5,13,15,8,1,0,12,0,4,6,10,12,14,2,15,9,14,13,12,5,6,15,9,14,1,5,0,11,9,15,3,15,14,10,6,5,10,15,15,1,12,3,7,13,14,1,11,4,10,8,3,14,12,6,8,8,12,11,8,15,4,0,5,3,5,15,13,15,8,8,1,10,0,11,15,8,12,5,9,5,12,14,2,14,15,6,14,8,7,14,12,13,12,10,5,6,13,13,15,11,4,2,2,5,3,12,1,5,1,8,4,10,1,5,9,13,4,4,8,1,4,14,2,12,2,6,2,2,3,8,9,9,4,6,15,8,5,4,13,12,9,9,8,6,7,10,3,9,15,1,10,5,15,4,4,10,7,6,1,14,15,4,13,3,9,4,6,15,5,3,14,4,6,11,7,14,10,5,0,11,11,13,15,0,1,15,5,12,6,1,1,8,14,13,7,0,10,12,0,15,2,8,1,6,4,2,5,7,0,11,6,2,11,12,8,8,14,13,9,4,0,0,13,15,4,1,1,12,3,9,11,14,12,4,1,0,6,2,4,10,8,13,2,7,5,6,2,15,9,8,8,10,8,3,11,1,14,11,6,11,10,7,4,8,1,7,14,10,7,14,0,12,5,4,9,9,6,15,11,15,0,10,12,4,2,13,3,13,3,11,0,10,7,3,15,13,15,15,5,12,5,5,7,8,4,0,13,13,8,3,14,2,3,12,2,5,0,2,12,0,15,15,4,0,2,13,2,11,10,10,2,3,2,7,8,13,7,7,1,12,1,13,4,2,14,1,5,4,10,2,3,10,2,13,5,4,14,5,15,14,14,2,15,1,13,3,11,8,4,11,2,15,9,15,11,1,8,0,0,7,2,8,1,7,5,11,0,5,2,6,6,12,2,14,5,6,15,15,9,14,13,8,3,8,1,5,14,11,1,7,10,13,6,15,13,5,14,6,3,5,4,0,0,15,0,8,8,13,11,4,4,11,15,7,7,6,9,0,15,3,10,14,12,12,11,1,10,0,9,0,2,10,0,3,6,15,5,13,13,11,5,14,3,7,11,6,14,15,13,2,5,2,12,5,15,1,7,8,5,13,1,1,2,3,15,15,13,10,6,1,11,8,2,0,5,0,13,15,1,14,1,2,14,1,0,6,4,3,3,6,4,8,4,14,8,12,6,5,8,0,14,1,14,1,14,5,8,6,4,2,11,7,10,10,0,7,6,14,10,12,15,2,15,3,11,13,2,3,9,9,8,10,11,9,4,15,8,15,2,6,3,13,1,1,2,2,13,10,12,13,5,7,1,11,0,15,12,11,7,4,14,13,15,15,11,15,3,9,1,8,2,3,0,6,4,15,6,7,12,6,15,1,7,4,4,0,6,1,0,11,0,0,10,10,0,8,5,9,12,14,5,5,4,6,4,1,0,13,7,3,8,1,5,3,11,3,5,0,14,14,9,4,13,3,15,15,14,14,5,7,7,14,14,6,5,14,0,13,4,12,10,7,4,9,6,14,5,3,11,0,3,14,4,5,11,3,4,6,4,14,1,9,14,7,6,2,1,13,15,9,12,5,1,6,1,7,10,13,11,2,3,11,8,7,8,4,8,13,4,1,1,3,7,4,15,9,9,14,4,2,7,10,7,8,13,15,1,3,9,7,13,1,12,14,12,12,12,12,15,2,10,14,6,13,7,2,0,0,10,6,0,2,5,6,11,4,7,3,5,15,7,4,14,11,9,12,2,2,9,10,3,1,10,12,7,12,9,12,15,0,0,13,3,14,13,1,6,10,4,13,3,2,1,8,0,2,1,6,2,9,4,0,13,12,8,1,11,3,4,14,8,13,6,9,13,5,6,3,7,0,2,1,5,5,1,0,15,10,6,1,11,8,5,2,12,6,14,8,11,14,6,10,1,1,12,5,11,13,8,15,5,2,9,11,0,6,6,15,7,13,9,4,8,1,6,14,14,6,1,15,0,13,5,0,1,13,3,15,13,11,8,11,9,11,7,13,0,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"12\", \"6\", \"7\"], \"clip_start\": 209.0, \"clip_end\": 214.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,6,9,11,3,3,0,0,14,10,1,14,2,12,11,6,10,8,2,8,8,11,7,13,12,10,7,8,2,14,9,5,14,6,11,15,8,9,10,3,11,8,1,1,6,2,2,2,0,0,9,3,15,10,0,0,0,6,8,15,12,12,8,3,12,8,8,3,9,4,5,3,0,12,15,6,13,8,6,2,15,12,2,11,6,8,7,11,4,4,13,2,3,9,8,11,4,2,6,13,10,4,2,1,10,3,12,15,10,4,10,8,2,8,13,13,4,9,2,8,10,9,2,2,9,2,11,9,12,12,7,15,12,13,14,12,5,13,15,8,1,0,12,0,4,6,10,12,14,2,15,9,14,13,12,5,6,15,9,14,1,5,0,11,9,15,3,15,14,10,6,5,10,15,15,1,12,3,7,13,14,1,11,4,10,8,3,14,12,6,8,8,12,11,8,15,4,0,5,3,5,15,13,15,8,8,1,10,0,11,15,8,12,5,9,5,12,14,2,14,15,6,14,8,7,14,12,13,12,10,5,6,13,13,15,11,4,2,2,5,3,12,1,5,1,8,4,10,1,5,9,13,4,4,8,1,4,14,2,12,2,6,2,2,3,8,9,9,4,6,15,8,5,4,13,12,9,9,8,6,7,10,3,9,15,1,10,5,15,4,4,10,7,6,1,14,15,4,13,3,9,4,6,15,5,3,14,4,6,11,7,14,10,5,0,11,11,13,15,0,1,15,5,12,6,1,1,8,14,13,7,0,10,12,0,15,2,8,1,6,4,2,5,7,0,11,6,2,11,12,8,8,14,13,9,4,0,0,13,15,4,1,1,12,3,9,11,14,12,4,1,0,6,2,4,10,8,13,2,7,5,6,2,15,9,8,8,10,8,3,11,1,14,11,6,11,10,7,4,8,1,7,14,10,7,14,0,12,5,4,9,9,6,15,11,15,0,10,12,4,2,13,3,13,3,11,0,10,7,3,15,13,15,15,5,12,5,5,7,8,4,0,13,13,8,3,14,2,3,12,2,5,0,2,12,0,15,15,4,0,2,13,2,11,10,10,2,3,2,7,8,13,7,7,1,12,1,13,4,2,14,1,5,4,10,2,3,10,2,13,5,4,14,5,15,14,14,2,15,1,13,3,11,8,4,11,2,15,9,15,11,1,8,0,0,7,2,8,1,7,5,11,0,5,2,6,6,12,2,14,5,6,15,15,9,14,13,8,3,8,1,5,14,11,1,7,10,13,6,15,13,5,14,6,3,5,4,0,0,15,0,8,8,13,11,4,4,11,15,7,7,6,9,0,15,3,10,14,12,12,11,1,10,0,9,0,2,10,0,3,6,15,5,13,13,11,5,14,3,7,11,6,14,15,13,2,5,2,12,5,15,1,7,8,5,13,1,1,2,3,15,15,13,10,6,1,11,8,2,0,5,0,13,15,1,14,1,2,14,1,0,6,4,3,3,6,4,8,4,14,8,12,6,5,8,0,14,1,14,1,14,5,8,6,4,2,11,7,10,10,0,7,6,14,10,12,15,2,15,3,11,13,2,3,9,9,8,10,11,9,4,15,8,15,2,6,3,13,1,1,2,2,13,10,12,13,5,7,1,11,0,15,12,11,7,4,14,13,15,15,11,15,3,9,1,8,2,3,0,6,4,15,6,7,12,6,15,1,7,4,4,0,6,1,0,11,0,0,10,10,0,8,5,9,12,14,5,5,4,6,4,1,0,13,7,3,8,1,5,3,11,3,5,0,14,14,9,4,13,3,15,15,14,14,5,7,7,14,14,6,5,14,0,13,4,12,10,7,4,9,6,14,5,3,11,0,3,14,4,5,11,3,4,6,4,14,1,9,14,7,6,2,1,13,15,9,12,5,1,6,1,7,10,13,11,2,3,11,8,7,8,4,8,13,4,1,1,3,7,4,15,9,9,14,4,2,7,10,7,8,13,15,1,3,9,7,13,1,12,14,12,12,12,12,15,2,10,14,6,13,7,2,0,0,10,6,0,2,5,6,11,4,7,3,5,15,7,4,14,11,9,12,2,2,9,10,3,1,10,12,7,12,9,12,15,0,0,13,3,14,13,1,6,10,4,13,3,2,1,8,0,2,1,6,2,9,4,0,13,12,8,1,11,3,4,14,8,13,6,9,13,5,6,3,7,0,2,1,5,5,1,0,15,10,6,1,11,8,5,2,12,6,14,8,11,14,6,10,1,1,12,5,11,13,8,15,5,2,9,11,0,6,6,15,7,13,9,4,8,1,6,14,14,6,1,15,0,13,5,0,1,13,3,15,13,11,8,11,9,11,7,13,0,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"2\", \"1\", \"9\"], \"clip_start\": 39.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q15_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,6,9,11,3,3,0,0,14,10,1,14,2,12,11,6,10,8,2,8,8,11,7,13,12,10,7,8,2,14,9,5,14,6,11,15,8,9,10,3,11,8,1,1,6,2,2,2,0,0,9,3,15,10,0,0,0,6,8,15,12,12,8,3,12,8,8,3,9,4,5,3,0,12,15,6,13,8,6,2,15,12,2,11,6,8,7,11,4,4,13,2,3,9,8,11,4,2,6,13,10,4,2,1,10,3,12,15,10,4,10,8,2,8,13,13,4,9,2,8,10,9,2,2,9,2,11,9,12,12,7,15,12,13,14,12,5,13,15,8,1,0,12,0,4,6,10,12,14,2,15,9,14,13,12,5,6,15,9,14,1,5,0,11,9,15,3,15,14,10,6,5,10,15,15,1,12,3,7,13,14,1,11,4,10,8,3,14,12,6,8,8,12,11,8,15,4,0,5,3,5,15,13,15,8,8,1,10,0,11,15,8,12,5,9,5,12,14,2,14,15,6,14,8,7,14,12,13,12,10,5,6,13,13,15,11,4,2,2,5,3,12,1,5,1,8,4,10,1,5,9,13,4,4,8,1,4,14,2,12,2,6,2,2,3,8,9,9,4,6,15,8,5,4,13,12,9,9,8,6,7,10,3,9,15,1,10,5,15,4,4,10,7,6,1,14,15,4,13,3,9,4,6,15,5,3,14,4,6,11,7,14,10,5,0,11,11,13,15,0,1,15,5,12,6,1,1,8,14,13,7,0,10,12,0,15,2,8,1,6,4,2,5,7,0,11,6,2,11,12,8,8,14,13,9,4,0,0,13,15,4,1,1,12,3,9,11,14,12,4,1,0,6,2,4,10,8,13,2,7,5,6,2,15,9,8,8,10,8,3,11,1,14,11,6,11,10,7,4,8,1,7,14,10,7,14,0,12,5,4,9,9,6,15,11,15,0,10,12,4,2,13,3,13,3,11,0,10,7,3,15,13,15,15,5,12,5,5,7,8,4,0,13,13,8,3,14,2,3,12,2,5,0,2,12,0,15,15,4,0,2,13,2,11,10,10,2,3,2,7,8,13,7,7,1,12,1,13,4,2,14,1,5,4,10,2,3,10,2,13,5,4,14,5,15,14,14,2,15,1,13,3,11,8,4,11,2,15,9,15,11,1,8,0,0,7,2,8,1,7,5,11,0,5,2,6,6,12,2,14,5,6,15,15,9,14,13,8,3,8,1,5,14,11,1,7,10,13,6,15,13,5,14,6,3,5,4,0,0,15,0,8,8,13,11,4,4,11,15,7,7,6,9,0,15,3,10,14,12,12,11,1,10,0,9,0,2,10,0,3,6,15,5,13,13,11,5,14,3,7,11,6,14,15,13,2,5,2,12,5,15,1,7,8,5,13,1,1,2,3,15,15,13,10,6,1,11,8,2,0,5,0,13,15,1,14,1,2,14,1,0,6,4,3,3,6,4,8,4,14,8,12,6,5,8,0,14,1,14,1,14,5,8,6,4,2,11,7,10,10,0,7,6,14,10,12,15,2,15,3,11,13,2,3,9,9,8,10,11,9,4,15,8,15,2,6,3,13,1,1,2,2,13,10,12,13,5,7,1,11,0,15,12,11,7,4,14,13,15,15,11,15,3,9,1,8,2,3,0,6,4,15,6,7,12,6,15,1,7,4,4,0,6,1,0,11,0,0,10,10,0,8,5,9,12,14,5,5,4,6,4,1,0,13,7,3,8,1,5,3,11,3,5,0,14,14,9,4,13,3,15,15,14,14,5,7,7,14,14,6,5,14,0,13,4,12,10,7,4,9,6,14,5,3,11,0,3,14,4,5,11,3,4,6,4,14,1,9,14,7,6,2,1,13,15,9,12,5,1,6,1,7,10,13,11,2,3,11,8,7,8,4,8,13,4,1,1,3,7,4,15,9,9,14,4,2,7,10,7,8,13,15,1,3,9,7,13,1,12,14,12,12,12,12,15,2,10,14,6,13,7,2,0,0,10,6,0,2,5,6,11,4,7,3,5,15,7,4,14,11,9,12,2,2,9,10,3,1,10,12,7,12,9,12,15,0,0,13,3,14,13,1,6,10,4,13,3,2,1,8,0,2,1,6,2,9,4,0,13,12,8,1,11,3,4,14,8,13,6,9,13,5,6,3,7,0,2,1,5,5,1,0,15,10,6,1,11,8,5,2,12,6,14,8,11,14,6,10,1,1,12,5,11,13,8,15,5,2,9,11,0,6,6,15,7,13,9,4,8,1,6,14,14,6,1,15,0,13,5,0,1,13,3,15,13,11,8,11,9,11,7,13,0,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"10\", \"10\", \"7\", \"3\", \"6\"], \"clip_start\": 222.0, \"clip_end\": 228.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,13,9,0,0,8,15,5,13,9,10,15,7,5,0,11,4,15,14,12,6,0,6,12,15,1,7,4,10,12,13,11,8,8,14,14,3,8,8,10,15,3,6,15,11,14,14,13,6,9,8,12,6,15,8,6,12,15,0,10,9,8,14,5,2,3,9,13,4,13,1,2,14,9,7,2,1,8,2,12,11,0,15,10,13,10,15,1,8,15,13,10,0,2,0,14,3,4,14,7,3,6,10,2,5,10,0,5,2,7,3,12,14,8,9,3,4,5,6,3,4,12,7,4,9,14,15,4,10,4,4,6,1,6,5,15,1,14,14,0,2,4,11,15,4,5,15,15,8,11,6,3,12,1,1,6,14,5,12,8,3,12,5,7,7,0,12,12,15,7,1,11,4,15,8,10,13,15,7,4,2,3,9,8,0,1,11,10,7,10,14,14,12,0,10,5,2,5,3,12,3,14,10,6,3,14,1,12,0,9,6,8,3,1,0,8,5,12,7,15,5,14,8,10,10,7,3,6,13,14,13,12,1,5,8,9,12,11,14,0,7,0,11,15,3,6,3,2,5,13,13,0,9,5,8,3,9,12,12,6,4,10,5,9,12,8,5,8,14,2,14,12,8,0,8,15,13,14,8,5,5,14,14,9,7,10,11,4,13,8,8,8,10,10,10,9,5,2,3,6,9,9,4,7,0,0,8,15,0,7,9,13,11,2,6,9,10,7,3,6,6,9,10,0,15,4,9,3,7,10,13,1,13,3,8,6,3,3,0,1,5,7,7,5,0,4,3,0,9,13,4,6,0,6,7,15,11,14,9,6,2,13,3,15,12,2,11,6,2,12,9,6,11,1,15,12,15,9,4,0,6,9,5,8,9,0,13,4,2,14,3,11,5,12,13,9,13,3,7,5,14,13,6,8,6,10,12,1,5,14,7,14,4,11,1,8,0,0,15,14,1,12,8,0,11,2,9,9,5,13,5,6,7,6,7,5,14,6,2,4,13,7,11,3,0,11,9,2,11,9,7,7,14,14,5,15,15,12,15,12,9,5,2,0,11,10,2,8,8,3,7,9,1,7,1,2,9,11,1,11,14,4,6,1,6,3,6,15,7,15,9,13,11,11,1,8,1,14,1,7,7,8,15,3,5,13,14,14,8,5,11,6,6,13,7,2,1,0,2,3,12,2,10,13,13,5,15,5,3,6,13,15,13,4,7,7,12,12,7,11,11,2,14,12,3,5,2,1,10,5,8,7,12,11,8,10,9,3,6,11,14,1,6,7,13,15,12,1,12,9,1,11,0,7,9,4,6,6,0,6,8,13,15,1,15,9,0,12,14,15,2,1,15,13,7,1,0,14,10,8,0,9,4,4,7,11,0,13,6,5,1,13,3,10,2,13,13,9,12,0,15,12,4,9,13,12,0,8,4,13,7,7,6,8,5,7,13,3,10,13,6,0,7,2,11,5,5,10,0,15,12,7,12,8,6,13,3,5,1,4,7,15,1,4,13,14,14,15,12,2,9,0,7,6,11,6,5,9,1,4,7,0,4,11,0,0,10,0,14,14,10,14,1,6,2,0,15,15,4,8,4,12,3,9,4,5,11,9,1,10,6,14,2,10,10,2,10,9,1,3,1,1,11,4,14,3,0,0,3,7,15,13,6,14,15,0,10,0,15,6,12,5,10,9,13,11,7,7,5,9,12,15,6,7,13,8,4,14,1,12,1,3,11,13,11,6,5,1,11,6,7,10,15,7,0,7,1,14,10,10,2,4,15,6,14,6,1,5,10,9,7,10,1,8,5,4,0,0,9,3,14,12,14,14,13,6,13,13,12,6,10,7,13,7,14,1,2,8,0,0,15,4,7,9,14,9,7,4,12,4,3,6,5,6,15,2,4,4,15,8,9,13,0,3,4,7,3,5,15,4,9,0,15,6,3,14,15,2,6,1,5,10,12,13,14,12,10,13,3,12,2,10,9,12,7,12,9,8,9,14,14,14,2,7,9,10,2,1,7,4,3,14,11,1,15,3,11,12,4,9,0,11,2,5,10,0,1,15,3,6,9,4,13,12,2,11,11,3,7,9,12,3,8,3,1,7,11,3,4,10,10,4,6,12,11,1,3,14,2,12,4,9,12,4,2,12,5,12,10,0,3,9,3,15,2,9,7,14,6,8,8,4,11,2,13,2,15,4,5,3,6,1,10,14,15,8,1,11,4,6,6,7,13,15,14,2,12,7,12,5,3,0,1,8,10,14,7,1,3,2,9,12,2,12,13,11,14,5,8,3,14,4,11,8,6,14,3,6,13,9,11,9,7,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"0\", \"9\", \"4\", \"4\"], \"clip_start\": 599.0, \"clip_end\": 604.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,13,9,0,0,8,15,5,13,9,10,15,7,5,0,11,4,15,14,12,6,0,6,12,15,1,7,4,10,12,13,11,8,8,14,14,3,8,8,10,15,3,6,15,11,14,14,13,6,9,8,12,6,15,8,6,12,15,0,10,9,8,14,5,2,3,9,13,4,13,1,2,14,9,7,2,1,8,2,12,11,0,15,10,13,10,15,1,8,15,13,10,0,2,0,14,3,4,14,7,3,6,10,2,5,10,0,5,2,7,3,12,14,8,9,3,4,5,6,3,4,12,7,4,9,14,15,4,10,4,4,6,1,6,5,15,1,14,14,0,2,4,11,15,4,5,15,15,8,11,6,3,12,1,1,6,14,5,12,8,3,12,5,7,7,0,12,12,15,7,1,11,4,15,8,10,13,15,7,4,2,3,9,8,0,1,11,10,7,10,14,14,12,0,10,5,2,5,3,12,3,14,10,6,3,14,1,12,0,9,6,8,3,1,0,8,5,12,7,15,5,14,8,10,10,7,3,6,13,14,13,12,1,5,8,9,12,11,14,0,7,0,11,15,3,6,3,2,5,13,13,0,9,5,8,3,9,12,12,6,4,10,5,9,12,8,5,8,14,2,14,12,8,0,8,15,13,14,8,5,5,14,14,9,7,10,11,4,13,8,8,8,10,10,10,9,5,2,3,6,9,9,4,7,0,0,8,15,0,7,9,13,11,2,6,9,10,7,3,6,6,9,10,0,15,4,9,3,7,10,13,1,13,3,8,6,3,3,0,1,5,7,7,5,0,4,3,0,9,13,4,6,0,6,7,15,11,14,9,6,2,13,3,15,12,2,11,6,2,12,9,6,11,1,15,12,15,9,4,0,6,9,5,8,9,0,13,4,2,14,3,11,5,12,13,9,13,3,7,5,14,13,6,8,6,10,12,1,5,14,7,14,4,11,1,8,0,0,15,14,1,12,8,0,11,2,9,9,5,13,5,6,7,6,7,5,14,6,2,4,13,7,11,3,0,11,9,2,11,9,7,7,14,14,5,15,15,12,15,12,9,5,2,0,11,10,2,8,8,3,7,9,1,7,1,2,9,11,1,11,14,4,6,1,6,3,6,15,7,15,9,13,11,11,1,8,1,14,1,7,7,8,15,3,5,13,14,14,8,5,11,6,6,13,7,2,1,0,2,3,12,2,10,13,13,5,15,5,3,6,13,15,13,4,7,7,12,12,7,11,11,2,14,12,3,5,2,1,10,5,8,7,12,11,8,10,9,3,6,11,14,1,6,7,13,15,12,1,12,9,1,11,0,7,9,4,6,6,0,6,8,13,15,1,15,9,0,12,14,15,2,1,15,13,7,1,0,14,10,8,0,9,4,4,7,11,0,13,6,5,1,13,3,10,2,13,13,9,12,0,15,12,4,9,13,12,0,8,4,13,7,7,6,8,5,7,13,3,10,13,6,0,7,2,11,5,5,10,0,15,12,7,12,8,6,13,3,5,1,4,7,15,1,4,13,14,14,15,12,2,9,0,7,6,11,6,5,9,1,4,7,0,4,11,0,0,10,0,14,14,10,14,1,6,2,0,15,15,4,8,4,12,3,9,4,5,11,9,1,10,6,14,2,10,10,2,10,9,1,3,1,1,11,4,14,3,0,0,3,7,15,13,6,14,15,0,10,0,15,6,12,5,10,9,13,11,7,7,5,9,12,15,6,7,13,8,4,14,1,12,1,3,11,13,11,6,5,1,11,6,7,10,15,7,0,7,1,14,10,10,2,4,15,6,14,6,1,5,10,9,7,10,1,8,5,4,0,0,9,3,14,12,14,14,13,6,13,13,12,6,10,7,13,7,14,1,2,8,0,0,15,4,7,9,14,9,7,4,12,4,3,6,5,6,15,2,4,4,15,8,9,13,0,3,4,7,3,5,15,4,9,0,15,6,3,14,15,2,6,1,5,10,12,13,14,12,10,13,3,12,2,10,9,12,7,12,9,8,9,14,14,14,2,7,9,10,2,1,7,4,3,14,11,1,15,3,11,12,4,9,0,11,2,5,10,0,1,15,3,6,9,4,13,12,2,11,11,3,7,9,12,3,8,3,1,7,11,3,4,10,10,4,6,12,11,1,3,14,2,12,4,9,12,4,2,12,5,12,10,0,3,9,3,15,2,9,7,14,6,8,8,4,11,2,13,2,15,4,5,3,6,1,10,14,15,8,1,11,4,6,6,7,13,15,14,2,12,7,12,5,3,0,1,8,10,14,7,1,3,2,9,12,2,12,13,11,14,5,8,3,14,4,11,8,6,14,3,6,13,9,11,9,7,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"15\", \"5\", \"13\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,13,9,0,0,8,15,5,13,9,10,15,7,5,0,11,4,15,14,12,6,0,6,12,15,1,7,4,10,12,13,11,8,8,14,14,3,8,8,10,15,3,6,15,11,14,14,13,6,9,8,12,6,15,8,6,12,15,0,10,9,8,14,5,2,3,9,13,4,13,1,2,14,9,7,2,1,8,2,12,11,0,15,10,13,10,15,1,8,15,13,10,0,2,0,14,3,4,14,7,3,6,10,2,5,10,0,5,2,7,3,12,14,8,9,3,4,5,6,3,4,12,7,4,9,14,15,4,10,4,4,6,1,6,5,15,1,14,14,0,2,4,11,15,4,5,15,15,8,11,6,3,12,1,1,6,14,5,12,8,3,12,5,7,7,0,12,12,15,7,1,11,4,15,8,10,13,15,7,4,2,3,9,8,0,1,11,10,7,10,14,14,12,0,10,5,2,5,3,12,3,14,10,6,3,14,1,12,0,9,6,8,3,1,0,8,5,12,7,15,5,14,8,10,10,7,3,6,13,14,13,12,1,5,8,9,12,11,14,0,7,0,11,15,3,6,3,2,5,13,13,0,9,5,8,3,9,12,12,6,4,10,5,9,12,8,5,8,14,2,14,12,8,0,8,15,13,14,8,5,5,14,14,9,7,10,11,4,13,8,8,8,10,10,10,9,5,2,3,6,9,9,4,7,0,0,8,15,0,7,9,13,11,2,6,9,10,7,3,6,6,9,10,0,15,4,9,3,7,10,13,1,13,3,8,6,3,3,0,1,5,7,7,5,0,4,3,0,9,13,4,6,0,6,7,15,11,14,9,6,2,13,3,15,12,2,11,6,2,12,9,6,11,1,15,12,15,9,4,0,6,9,5,8,9,0,13,4,2,14,3,11,5,12,13,9,13,3,7,5,14,13,6,8,6,10,12,1,5,14,7,14,4,11,1,8,0,0,15,14,1,12,8,0,11,2,9,9,5,13,5,6,7,6,7,5,14,6,2,4,13,7,11,3,0,11,9,2,11,9,7,7,14,14,5,15,15,12,15,12,9,5,2,0,11,10,2,8,8,3,7,9,1,7,1,2,9,11,1,11,14,4,6,1,6,3,6,15,7,15,9,13,11,11,1,8,1,14,1,7,7,8,15,3,5,13,14,14,8,5,11,6,6,13,7,2,1,0,2,3,12,2,10,13,13,5,15,5,3,6,13,15,13,4,7,7,12,12,7,11,11,2,14,12,3,5,2,1,10,5,8,7,12,11,8,10,9,3,6,11,14,1,6,7,13,15,12,1,12,9,1,11,0,7,9,4,6,6,0,6,8,13,15,1,15,9,0,12,14,15,2,1,15,13,7,1,0,14,10,8,0,9,4,4,7,11,0,13,6,5,1,13,3,10,2,13,13,9,12,0,15,12,4,9,13,12,0,8,4,13,7,7,6,8,5,7,13,3,10,13,6,0,7,2,11,5,5,10,0,15,12,7,12,8,6,13,3,5,1,4,7,15,1,4,13,14,14,15,12,2,9,0,7,6,11,6,5,9,1,4,7,0,4,11,0,0,10,0,14,14,10,14,1,6,2,0,15,15,4,8,4,12,3,9,4,5,11,9,1,10,6,14,2,10,10,2,10,9,1,3,1,1,11,4,14,3,0,0,3,7,15,13,6,14,15,0,10,0,15,6,12,5,10,9,13,11,7,7,5,9,12,15,6,7,13,8,4,14,1,12,1,3,11,13,11,6,5,1,11,6,7,10,15,7,0,7,1,14,10,10,2,4,15,6,14,6,1,5,10,9,7,10,1,8,5,4,0,0,9,3,14,12,14,14,13,6,13,13,12,6,10,7,13,7,14,1,2,8,0,0,15,4,7,9,14,9,7,4,12,4,3,6,5,6,15,2,4,4,15,8,9,13,0,3,4,7,3,5,15,4,9,0,15,6,3,14,15,2,6,1,5,10,12,13,14,12,10,13,3,12,2,10,9,12,7,12,9,8,9,14,14,14,2,7,9,10,2,1,7,4,3,14,11,1,15,3,11,12,4,9,0,11,2,5,10,0,1,15,3,6,9,4,13,12,2,11,11,3,7,9,12,3,8,3,1,7,11,3,4,10,10,4,6,12,11,1,3,14,2,12,4,9,12,4,2,12,5,12,10,0,3,9,3,15,2,9,7,14,6,8,8,4,11,2,13,2,15,4,5,3,6,1,10,14,15,8,1,11,4,6,6,7,13,15,14,2,12,7,12,5,3,0,1,8,10,14,7,1,3,2,9,12,2,12,13,11,14,5,8,3,14,4,11,8,6,14,3,6,13,9,11,9,7,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"3\", \"9\", \"3\", \"15\"], \"clip_start\": 949.0, \"clip_end\": 954.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,13,9,0,0,8,15,5,13,9,10,15,7,5,0,11,4,15,14,12,6,0,6,12,15,1,7,4,10,12,13,11,8,8,14,14,3,8,8,10,15,3,6,15,11,14,14,13,6,9,8,12,6,15,8,6,12,15,0,10,9,8,14,5,2,3,9,13,4,13,1,2,14,9,7,2,1,8,2,12,11,0,15,10,13,10,15,1,8,15,13,10,0,2,0,14,3,4,14,7,3,6,10,2,5,10,0,5,2,7,3,12,14,8,9,3,4,5,6,3,4,12,7,4,9,14,15,4,10,4,4,6,1,6,5,15,1,14,14,0,2,4,11,15,4,5,15,15,8,11,6,3,12,1,1,6,14,5,12,8,3,12,5,7,7,0,12,12,15,7,1,11,4,15,8,10,13,15,7,4,2,3,9,8,0,1,11,10,7,10,14,14,12,0,10,5,2,5,3,12,3,14,10,6,3,14,1,12,0,9,6,8,3,1,0,8,5,12,7,15,5,14,8,10,10,7,3,6,13,14,13,12,1,5,8,9,12,11,14,0,7,0,11,15,3,6,3,2,5,13,13,0,9,5,8,3,9,12,12,6,4,10,5,9,12,8,5,8,14,2,14,12,8,0,8,15,13,14,8,5,5,14,14,9,7,10,11,4,13,8,8,8,10,10,10,9,5,2,3,6,9,9,4,7,0,0,8,15,0,7,9,13,11,2,6,9,10,7,3,6,6,9,10,0,15,4,9,3,7,10,13,1,13,3,8,6,3,3,0,1,5,7,7,5,0,4,3,0,9,13,4,6,0,6,7,15,11,14,9,6,2,13,3,15,12,2,11,6,2,12,9,6,11,1,15,12,15,9,4,0,6,9,5,8,9,0,13,4,2,14,3,11,5,12,13,9,13,3,7,5,14,13,6,8,6,10,12,1,5,14,7,14,4,11,1,8,0,0,15,14,1,12,8,0,11,2,9,9,5,13,5,6,7,6,7,5,14,6,2,4,13,7,11,3,0,11,9,2,11,9,7,7,14,14,5,15,15,12,15,12,9,5,2,0,11,10,2,8,8,3,7,9,1,7,1,2,9,11,1,11,14,4,6,1,6,3,6,15,7,15,9,13,11,11,1,8,1,14,1,7,7,8,15,3,5,13,14,14,8,5,11,6,6,13,7,2,1,0,2,3,12,2,10,13,13,5,15,5,3,6,13,15,13,4,7,7,12,12,7,11,11,2,14,12,3,5,2,1,10,5,8,7,12,11,8,10,9,3,6,11,14,1,6,7,13,15,12,1,12,9,1,11,0,7,9,4,6,6,0,6,8,13,15,1,15,9,0,12,14,15,2,1,15,13,7,1,0,14,10,8,0,9,4,4,7,11,0,13,6,5,1,13,3,10,2,13,13,9,12,0,15,12,4,9,13,12,0,8,4,13,7,7,6,8,5,7,13,3,10,13,6,0,7,2,11,5,5,10,0,15,12,7,12,8,6,13,3,5,1,4,7,15,1,4,13,14,14,15,12,2,9,0,7,6,11,6,5,9,1,4,7,0,4,11,0,0,10,0,14,14,10,14,1,6,2,0,15,15,4,8,4,12,3,9,4,5,11,9,1,10,6,14,2,10,10,2,10,9,1,3,1,1,11,4,14,3,0,0,3,7,15,13,6,14,15,0,10,0,15,6,12,5,10,9,13,11,7,7,5,9,12,15,6,7,13,8,4,14,1,12,1,3,11,13,11,6,5,1,11,6,7,10,15,7,0,7,1,14,10,10,2,4,15,6,14,6,1,5,10,9,7,10,1,8,5,4,0,0,9,3,14,12,14,14,13,6,13,13,12,6,10,7,13,7,14,1,2,8,0,0,15,4,7,9,14,9,7,4,12,4,3,6,5,6,15,2,4,4,15,8,9,13,0,3,4,7,3,5,15,4,9,0,15,6,3,14,15,2,6,1,5,10,12,13,14,12,10,13,3,12,2,10,9,12,7,12,9,8,9,14,14,14,2,7,9,10,2,1,7,4,3,14,11,1,15,3,11,12,4,9,0,11,2,5,10,0,1,15,3,6,9,4,13,12,2,11,11,3,7,9,12,3,8,3,1,7,11,3,4,10,10,4,6,12,11,1,3,14,2,12,4,9,12,4,2,12,5,12,10,0,3,9,3,15,2,9,7,14,6,8,8,4,11,2,13,2,15,4,5,3,6,1,10,14,15,8,1,11,4,6,6,7,13,15,14,2,12,7,12,5,3,0,1,8,10,14,7,1,3,2,9,12,2,12,13,11,14,5,8,3,14,4,11,8,6,14,3,6,13,9,11,9,7,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"15\", \"15\"], \"clip_start\": 694.0, \"clip_end\": 698.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,13,9,0,0,8,15,5,13,9,10,15,7,5,0,11,4,15,14,12,6,0,6,12,15,1,7,4,10,12,13,11,8,8,14,14,3,8,8,10,15,3,6,15,11,14,14,13,6,9,8,12,6,15,8,6,12,15,0,10,9,8,14,5,2,3,9,13,4,13,1,2,14,9,7,2,1,8,2,12,11,0,15,10,13,10,15,1,8,15,13,10,0,2,0,14,3,4,14,7,3,6,10,2,5,10,0,5,2,7,3,12,14,8,9,3,4,5,6,3,4,12,7,4,9,14,15,4,10,4,4,6,1,6,5,15,1,14,14,0,2,4,11,15,4,5,15,15,8,11,6,3,12,1,1,6,14,5,12,8,3,12,5,7,7,0,12,12,15,7,1,11,4,15,8,10,13,15,7,4,2,3,9,8,0,1,11,10,7,10,14,14,12,0,10,5,2,5,3,12,3,14,10,6,3,14,1,12,0,9,6,8,3,1,0,8,5,12,7,15,5,14,8,10,10,7,3,6,13,14,13,12,1,5,8,9,12,11,14,0,7,0,11,15,3,6,3,2,5,13,13,0,9,5,8,3,9,12,12,6,4,10,5,9,12,8,5,8,14,2,14,12,8,0,8,15,13,14,8,5,5,14,14,9,7,10,11,4,13,8,8,8,10,10,10,9,5,2,3,6,9,9,4,7,0,0,8,15,0,7,9,13,11,2,6,9,10,7,3,6,6,9,10,0,15,4,9,3,7,10,13,1,13,3,8,6,3,3,0,1,5,7,7,5,0,4,3,0,9,13,4,6,0,6,7,15,11,14,9,6,2,13,3,15,12,2,11,6,2,12,9,6,11,1,15,12,15,9,4,0,6,9,5,8,9,0,13,4,2,14,3,11,5,12,13,9,13,3,7,5,14,13,6,8,6,10,12,1,5,14,7,14,4,11,1,8,0,0,15,14,1,12,8,0,11,2,9,9,5,13,5,6,7,6,7,5,14,6,2,4,13,7,11,3,0,11,9,2,11,9,7,7,14,14,5,15,15,12,15,12,9,5,2,0,11,10,2,8,8,3,7,9,1,7,1,2,9,11,1,11,14,4,6,1,6,3,6,15,7,15,9,13,11,11,1,8,1,14,1,7,7,8,15,3,5,13,14,14,8,5,11,6,6,13,7,2,1,0,2,3,12,2,10,13,13,5,15,5,3,6,13,15,13,4,7,7,12,12,7,11,11,2,14,12,3,5,2,1,10,5,8,7,12,11,8,10,9,3,6,11,14,1,6,7,13,15,12,1,12,9,1,11,0,7,9,4,6,6,0,6,8,13,15,1,15,9,0,12,14,15,2,1,15,13,7,1,0,14,10,8,0,9,4,4,7,11,0,13,6,5,1,13,3,10,2,13,13,9,12,0,15,12,4,9,13,12,0,8,4,13,7,7,6,8,5,7,13,3,10,13,6,0,7,2,11,5,5,10,0,15,12,7,12,8,6,13,3,5,1,4,7,15,1,4,13,14,14,15,12,2,9,0,7,6,11,6,5,9,1,4,7,0,4,11,0,0,10,0,14,14,10,14,1,6,2,0,15,15,4,8,4,12,3,9,4,5,11,9,1,10,6,14,2,10,10,2,10,9,1,3,1,1,11,4,14,3,0,0,3,7,15,13,6,14,15,0,10,0,15,6,12,5,10,9,13,11,7,7,5,9,12,15,6,7,13,8,4,14,1,12,1,3,11,13,11,6,5,1,11,6,7,10,15,7,0,7,1,14,10,10,2,4,15,6,14,6,1,5,10,9,7,10,1,8,5,4,0,0,9,3,14,12,14,14,13,6,13,13,12,6,10,7,13,7,14,1,2,8,0,0,15,4,7,9,14,9,7,4,12,4,3,6,5,6,15,2,4,4,15,8,9,13,0,3,4,7,3,5,15,4,9,0,15,6,3,14,15,2,6,1,5,10,12,13,14,12,10,13,3,12,2,10,9,12,7,12,9,8,9,14,14,14,2,7,9,10,2,1,7,4,3,14,11,1,15,3,11,12,4,9,0,11,2,5,10,0,1,15,3,6,9,4,13,12,2,11,11,3,7,9,12,3,8,3,1,7,11,3,4,10,10,4,6,12,11,1,3,14,2,12,4,9,12,4,2,12,5,12,10,0,3,9,3,15,2,9,7,14,6,8,8,4,11,2,13,2,15,4,5,3,6,1,10,14,15,8,1,11,4,6,6,7,13,15,14,2,12,7,12,5,3,0,1,8,10,14,7,1,3,2,9,12,2,12,13,11,14,5,8,3,14,4,11,8,6,14,3,6,13,9,11,9,7,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"4\", \"10\", \"12\"], \"clip_start\": 25.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q5_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,13,9,0,0,8,15,5,13,9,10,15,7,5,0,11,4,15,14,12,6,0,6,12,15,1,7,4,10,12,13,11,8,8,14,14,3,8,8,10,15,3,6,15,11,14,14,13,6,9,8,12,6,15,8,6,12,15,0,10,9,8,14,5,2,3,9,13,4,13,1,2,14,9,7,2,1,8,2,12,11,0,15,10,13,10,15,1,8,15,13,10,0,2,0,14,3,4,14,7,3,6,10,2,5,10,0,5,2,7,3,12,14,8,9,3,4,5,6,3,4,12,7,4,9,14,15,4,10,4,4,6,1,6,5,15,1,14,14,0,2,4,11,15,4,5,15,15,8,11,6,3,12,1,1,6,14,5,12,8,3,12,5,7,7,0,12,12,15,7,1,11,4,15,8,10,13,15,7,4,2,3,9,8,0,1,11,10,7,10,14,14,12,0,10,5,2,5,3,12,3,14,10,6,3,14,1,12,0,9,6,8,3,1,0,8,5,12,7,15,5,14,8,10,10,7,3,6,13,14,13,12,1,5,8,9,12,11,14,0,7,0,11,15,3,6,3,2,5,13,13,0,9,5,8,3,9,12,12,6,4,10,5,9,12,8,5,8,14,2,14,12,8,0,8,15,13,14,8,5,5,14,14,9,7,10,11,4,13,8,8,8,10,10,10,9,5,2,3,6,9,9,4,7,0,0,8,15,0,7,9,13,11,2,6,9,10,7,3,6,6,9,10,0,15,4,9,3,7,10,13,1,13,3,8,6,3,3,0,1,5,7,7,5,0,4,3,0,9,13,4,6,0,6,7,15,11,14,9,6,2,13,3,15,12,2,11,6,2,12,9,6,11,1,15,12,15,9,4,0,6,9,5,8,9,0,13,4,2,14,3,11,5,12,13,9,13,3,7,5,14,13,6,8,6,10,12,1,5,14,7,14,4,11,1,8,0,0,15,14,1,12,8,0,11,2,9,9,5,13,5,6,7,6,7,5,14,6,2,4,13,7,11,3,0,11,9,2,11,9,7,7,14,14,5,15,15,12,15,12,9,5,2,0,11,10,2,8,8,3,7,9,1,7,1,2,9,11,1,11,14,4,6,1,6,3,6,15,7,15,9,13,11,11,1,8,1,14,1,7,7,8,15,3,5,13,14,14,8,5,11,6,6,13,7,2,1,0,2,3,12,2,10,13,13,5,15,5,3,6,13,15,13,4,7,7,12,12,7,11,11,2,14,12,3,5,2,1,10,5,8,7,12,11,8,10,9,3,6,11,14,1,6,7,13,15,12,1,12,9,1,11,0,7,9,4,6,6,0,6,8,13,15,1,15,9,0,12,14,15,2,1,15,13,7,1,0,14,10,8,0,9,4,4,7,11,0,13,6,5,1,13,3,10,2,13,13,9,12,0,15,12,4,9,13,12,0,8,4,13,7,7,6,8,5,7,13,3,10,13,6,0,7,2,11,5,5,10,0,15,12,7,12,8,6,13,3,5,1,4,7,15,1,4,13,14,14,15,12,2,9,0,7,6,11,6,5,9,1,4,7,0,4,11,0,0,10,0,14,14,10,14,1,6,2,0,15,15,4,8,4,12,3,9,4,5,11,9,1,10,6,14,2,10,10,2,10,9,1,3,1,1,11,4,14,3,0,0,3,7,15,13,6,14,15,0,10,0,15,6,12,5,10,9,13,11,7,7,5,9,12,15,6,7,13,8,4,14,1,12,1,3,11,13,11,6,5,1,11,6,7,10,15,7,0,7,1,14,10,10,2,4,15,6,14,6,1,5,10,9,7,10,1,8,5,4,0,0,9,3,14,12,14,14,13,6,13,13,12,6,10,7,13,7,14,1,2,8,0,0,15,4,7,9,14,9,7,4,12,4,3,6,5,6,15,2,4,4,15,8,9,13,0,3,4,7,3,5,15,4,9,0,15,6,3,14,15,2,6,1,5,10,12,13,14,12,10,13,3,12,2,10,9,12,7,12,9,8,9,14,14,14,2,7,9,10,2,1,7,4,3,14,11,1,15,3,11,12,4,9,0,11,2,5,10,0,1,15,3,6,9,4,13,12,2,11,11,3,7,9,12,3,8,3,1,7,11,3,4,10,10,4,6,12,11,1,3,14,2,12,4,9,12,4,2,12,5,12,10,0,3,9,3,15,2,9,7,14,6,8,8,4,11,2,13,2,15,4,5,3,6,1,10,14,15,8,1,11,4,6,6,7,13,15,14,2,12,7,12,5,3,0,1,8,10,14,7,1,3,2,9,12,2,12,13,11,14,5,8,3,14,4,11,8,6,14,3,6,13,9,11,9,7,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"2\", \"8\", \"8\"], \"clip_start\": 464.0, \"clip_end\": 469.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,13,9,0,0,8,15,5,13,9,10,15,7,5,0,11,4,15,14,12,6,0,6,12,15,1,7,4,10,12,13,11,8,8,14,14,3,8,8,10,15,3,6,15,11,14,14,13,6,9,8,12,6,15,8,6,12,15,0,10,9,8,14,5,2,3,9,13,4,13,1,2,14,9,7,2,1,8,2,12,11,0,15,10,13,10,15,1,8,15,13,10,0,2,0,14,3,4,14,7,3,6,10,2,5,10,0,5,2,7,3,12,14,8,9,3,4,5,6,3,4,12,7,4,9,14,15,4,10,4,4,6,1,6,5,15,1,14,14,0,2,4,11,15,4,5,15,15,8,11,6,3,12,1,1,6,14,5,12,8,3,12,5,7,7,0,12,12,15,7,1,11,4,15,8,10,13,15,7,4,2,3,9,8,0,1,11,10,7,10,14,14,12,0,10,5,2,5,3,12,3,14,10,6,3,14,1,12,0,9,6,8,3,1,0,8,5,12,7,15,5,14,8,10,10,7,3,6,13,14,13,12,1,5,8,9,12,11,14,0,7,0,11,15,3,6,3,2,5,13,13,0,9,5,8,3,9,12,12,6,4,10,5,9,12,8,5,8,14,2,14,12,8,0,8,15,13,14,8,5,5,14,14,9,7,10,11,4,13,8,8,8,10,10,10,9,5,2,3,6,9,9,4,7,0,0,8,15,0,7,9,13,11,2,6,9,10,7,3,6,6,9,10,0,15,4,9,3,7,10,13,1,13,3,8,6,3,3,0,1,5,7,7,5,0,4,3,0,9,13,4,6,0,6,7,15,11,14,9,6,2,13,3,15,12,2,11,6,2,12,9,6,11,1,15,12,15,9,4,0,6,9,5,8,9,0,13,4,2,14,3,11,5,12,13,9,13,3,7,5,14,13,6,8,6,10,12,1,5,14,7,14,4,11,1,8,0,0,15,14,1,12,8,0,11,2,9,9,5,13,5,6,7,6,7,5,14,6,2,4,13,7,11,3,0,11,9,2,11,9,7,7,14,14,5,15,15,12,15,12,9,5,2,0,11,10,2,8,8,3,7,9,1,7,1,2,9,11,1,11,14,4,6,1,6,3,6,15,7,15,9,13,11,11,1,8,1,14,1,7,7,8,15,3,5,13,14,14,8,5,11,6,6,13,7,2,1,0,2,3,12,2,10,13,13,5,15,5,3,6,13,15,13,4,7,7,12,12,7,11,11,2,14,12,3,5,2,1,10,5,8,7,12,11,8,10,9,3,6,11,14,1,6,7,13,15,12,1,12,9,1,11,0,7,9,4,6,6,0,6,8,13,15,1,15,9,0,12,14,15,2,1,15,13,7,1,0,14,10,8,0,9,4,4,7,11,0,13,6,5,1,13,3,10,2,13,13,9,12,0,15,12,4,9,13,12,0,8,4,13,7,7,6,8,5,7,13,3,10,13,6,0,7,2,11,5,5,10,0,15,12,7,12,8,6,13,3,5,1,4,7,15,1,4,13,14,14,15,12,2,9,0,7,6,11,6,5,9,1,4,7,0,4,11,0,0,10,0,14,14,10,14,1,6,2,0,15,15,4,8,4,12,3,9,4,5,11,9,1,10,6,14,2,10,10,2,10,9,1,3,1,1,11,4,14,3,0,0,3,7,15,13,6,14,15,0,10,0,15,6,12,5,10,9,13,11,7,7,5,9,12,15,6,7,13,8,4,14,1,12,1,3,11,13,11,6,5,1,11,6,7,10,15,7,0,7,1,14,10,10,2,4,15,6,14,6,1,5,10,9,7,10,1,8,5,4,0,0,9,3,14,12,14,14,13,6,13,13,12,6,10,7,13,7,14,1,2,8,0,0,15,4,7,9,14,9,7,4,12,4,3,6,5,6,15,2,4,4,15,8,9,13,0,3,4,7,3,5,15,4,9,0,15,6,3,14,15,2,6,1,5,10,12,13,14,12,10,13,3,12,2,10,9,12,7,12,9,8,9,14,14,14,2,7,9,10,2,1,7,4,3,14,11,1,15,3,11,12,4,9,0,11,2,5,10,0,1,15,3,6,9,4,13,12,2,11,11,3,7,9,12,3,8,3,1,7,11,3,4,10,10,4,6,12,11,1,3,14,2,12,4,9,12,4,2,12,5,12,10,0,3,9,3,15,2,9,7,14,6,8,8,4,11,2,13,2,15,4,5,3,6,1,10,14,15,8,1,11,4,6,6,7,13,15,14,2,12,7,12,5,3,0,1,8,10,14,7,1,3,2,9,12,2,12,13,11,14,5,8,3,14,4,11,8,6,14,3,6,13,9,11,9,7,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"6\", \"15\", \"8\", \"6\"], \"clip_start\": 50.0, \"clip_end\": 56.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,13,9,0,0,8,15,5,13,9,10,15,7,5,0,11,4,15,14,12,6,0,6,12,15,1,7,4,10,12,13,11,8,8,14,14,3,8,8,10,15,3,6,15,11,14,14,13,6,9,8,12,6,15,8,6,12,15,0,10,9,8,14,5,2,3,9,13,4,13,1,2,14,9,7,2,1,8,2,12,11,0,15,10,13,10,15,1,8,15,13,10,0,2,0,14,3,4,14,7,3,6,10,2,5,10,0,5,2,7,3,12,14,8,9,3,4,5,6,3,4,12,7,4,9,14,15,4,10,4,4,6,1,6,5,15,1,14,14,0,2,4,11,15,4,5,15,15,8,11,6,3,12,1,1,6,14,5,12,8,3,12,5,7,7,0,12,12,15,7,1,11,4,15,8,10,13,15,7,4,2,3,9,8,0,1,11,10,7,10,14,14,12,0,10,5,2,5,3,12,3,14,10,6,3,14,1,12,0,9,6,8,3,1,0,8,5,12,7,15,5,14,8,10,10,7,3,6,13,14,13,12,1,5,8,9,12,11,14,0,7,0,11,15,3,6,3,2,5,13,13,0,9,5,8,3,9,12,12,6,4,10,5,9,12,8,5,8,14,2,14,12,8,0,8,15,13,14,8,5,5,14,14,9,7,10,11,4,13,8,8,8,10,10,10,9,5,2,3,6,9,9,4,7,0,0,8,15,0,7,9,13,11,2,6,9,10,7,3,6,6,9,10,0,15,4,9,3,7,10,13,1,13,3,8,6,3,3,0,1,5,7,7,5,0,4,3,0,9,13,4,6,0,6,7,15,11,14,9,6,2,13,3,15,12,2,11,6,2,12,9,6,11,1,15,12,15,9,4,0,6,9,5,8,9,0,13,4,2,14,3,11,5,12,13,9,13,3,7,5,14,13,6,8,6,10,12,1,5,14,7,14,4,11,1,8,0,0,15,14,1,12,8,0,11,2,9,9,5,13,5,6,7,6,7,5,14,6,2,4,13,7,11,3,0,11,9,2,11,9,7,7,14,14,5,15,15,12,15,12,9,5,2,0,11,10,2,8,8,3,7,9,1,7,1,2,9,11,1,11,14,4,6,1,6,3,6,15,7,15,9,13,11,11,1,8,1,14,1,7,7,8,15,3,5,13,14,14,8,5,11,6,6,13,7,2,1,0,2,3,12,2,10,13,13,5,15,5,3,6,13,15,13,4,7,7,12,12,7,11,11,2,14,12,3,5,2,1,10,5,8,7,12,11,8,10,9,3,6,11,14,1,6,7,13,15,12,1,12,9,1,11,0,7,9,4,6,6,0,6,8,13,15,1,15,9,0,12,14,15,2,1,15,13,7,1,0,14,10,8,0,9,4,4,7,11,0,13,6,5,1,13,3,10,2,13,13,9,12,0,15,12,4,9,13,12,0,8,4,13,7,7,6,8,5,7,13,3,10,13,6,0,7,2,11,5,5,10,0,15,12,7,12,8,6,13,3,5,1,4,7,15,1,4,13,14,14,15,12,2,9,0,7,6,11,6,5,9,1,4,7,0,4,11,0,0,10,0,14,14,10,14,1,6,2,0,15,15,4,8,4,12,3,9,4,5,11,9,1,10,6,14,2,10,10,2,10,9,1,3,1,1,11,4,14,3,0,0,3,7,15,13,6,14,15,0,10,0,15,6,12,5,10,9,13,11,7,7,5,9,12,15,6,7,13,8,4,14,1,12,1,3,11,13,11,6,5,1,11,6,7,10,15,7,0,7,1,14,10,10,2,4,15,6,14,6,1,5,10,9,7,10,1,8,5,4,0,0,9,3,14,12,14,14,13,6,13,13,12,6,10,7,13,7,14,1,2,8,0,0,15,4,7,9,14,9,7,4,12,4,3,6,5,6,15,2,4,4,15,8,9,13,0,3,4,7,3,5,15,4,9,0,15,6,3,14,15,2,6,1,5,10,12,13,14,12,10,13,3,12,2,10,9,12,7,12,9,8,9,14,14,14,2,7,9,10,2,1,7,4,3,14,11,1,15,3,11,12,4,9,0,11,2,5,10,0,1,15,3,6,9,4,13,12,2,11,11,3,7,9,12,3,8,3,1,7,11,3,4,10,10,4,6,12,11,1,3,14,2,12,4,9,12,4,2,12,5,12,10,0,3,9,3,15,2,9,7,14,6,8,8,4,11,2,13,2,15,4,5,3,6,1,10,14,15,8,1,11,4,6,6,7,13,15,14,2,12,7,12,5,3,0,1,8,10,14,7,1,3,2,9,12,2,12,13,11,14,5,8,3,14,4,11,8,6,14,3,6,13,9,11,9,7,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"7\", \"14\", \"14\"], \"clip_start\": 450.0, \"clip_end\": 454.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q8_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,13,9,0,0,8,15,5,13,9,10,15,7,5,0,11,4,15,14,12,6,0,6,12,15,1,7,4,10,12,13,11,8,8,14,14,3,8,8,10,15,3,6,15,11,14,14,13,6,9,8,12,6,15,8,6,12,15,0,10,9,8,14,5,2,3,9,13,4,13,1,2,14,9,7,2,1,8,2,12,11,0,15,10,13,10,15,1,8,15,13,10,0,2,0,14,3,4,14,7,3,6,10,2,5,10,0,5,2,7,3,12,14,8,9,3,4,5,6,3,4,12,7,4,9,14,15,4,10,4,4,6,1,6,5,15,1,14,14,0,2,4,11,15,4,5,15,15,8,11,6,3,12,1,1,6,14,5,12,8,3,12,5,7,7,0,12,12,15,7,1,11,4,15,8,10,13,15,7,4,2,3,9,8,0,1,11,10,7,10,14,14,12,0,10,5,2,5,3,12,3,14,10,6,3,14,1,12,0,9,6,8,3,1,0,8,5,12,7,15,5,14,8,10,10,7,3,6,13,14,13,12,1,5,8,9,12,11,14,0,7,0,11,15,3,6,3,2,5,13,13,0,9,5,8,3,9,12,12,6,4,10,5,9,12,8,5,8,14,2,14,12,8,0,8,15,13,14,8,5,5,14,14,9,7,10,11,4,13,8,8,8,10,10,10,9,5,2,3,6,9,9,4,7,0,0,8,15,0,7,9,13,11,2,6,9,10,7,3,6,6,9,10,0,15,4,9,3,7,10,13,1,13,3,8,6,3,3,0,1,5,7,7,5,0,4,3,0,9,13,4,6,0,6,7,15,11,14,9,6,2,13,3,15,12,2,11,6,2,12,9,6,11,1,15,12,15,9,4,0,6,9,5,8,9,0,13,4,2,14,3,11,5,12,13,9,13,3,7,5,14,13,6,8,6,10,12,1,5,14,7,14,4,11,1,8,0,0,15,14,1,12,8,0,11,2,9,9,5,13,5,6,7,6,7,5,14,6,2,4,13,7,11,3,0,11,9,2,11,9,7,7,14,14,5,15,15,12,15,12,9,5,2,0,11,10,2,8,8,3,7,9,1,7,1,2,9,11,1,11,14,4,6,1,6,3,6,15,7,15,9,13,11,11,1,8,1,14,1,7,7,8,15,3,5,13,14,14,8,5,11,6,6,13,7,2,1,0,2,3,12,2,10,13,13,5,15,5,3,6,13,15,13,4,7,7,12,12,7,11,11,2,14,12,3,5,2,1,10,5,8,7,12,11,8,10,9,3,6,11,14,1,6,7,13,15,12,1,12,9,1,11,0,7,9,4,6,6,0,6,8,13,15,1,15,9,0,12,14,15,2,1,15,13,7,1,0,14,10,8,0,9,4,4,7,11,0,13,6,5,1,13,3,10,2,13,13,9,12,0,15,12,4,9,13,12,0,8,4,13,7,7,6,8,5,7,13,3,10,13,6,0,7,2,11,5,5,10,0,15,12,7,12,8,6,13,3,5,1,4,7,15,1,4,13,14,14,15,12,2,9,0,7,6,11,6,5,9,1,4,7,0,4,11,0,0,10,0,14,14,10,14,1,6,2,0,15,15,4,8,4,12,3,9,4,5,11,9,1,10,6,14,2,10,10,2,10,9,1,3,1,1,11,4,14,3,0,0,3,7,15,13,6,14,15,0,10,0,15,6,12,5,10,9,13,11,7,7,5,9,12,15,6,7,13,8,4,14,1,12,1,3,11,13,11,6,5,1,11,6,7,10,15,7,0,7,1,14,10,10,2,4,15,6,14,6,1,5,10,9,7,10,1,8,5,4,0,0,9,3,14,12,14,14,13,6,13,13,12,6,10,7,13,7,14,1,2,8,0,0,15,4,7,9,14,9,7,4,12,4,3,6,5,6,15,2,4,4,15,8,9,13,0,3,4,7,3,5,15,4,9,0,15,6,3,14,15,2,6,1,5,10,12,13,14,12,10,13,3,12,2,10,9,12,7,12,9,8,9,14,14,14,2,7,9,10,2,1,7,4,3,14,11,1,15,3,11,12,4,9,0,11,2,5,10,0,1,15,3,6,9,4,13,12,2,11,11,3,7,9,12,3,8,3,1,7,11,3,4,10,10,4,6,12,11,1,3,14,2,12,4,9,12,4,2,12,5,12,10,0,3,9,3,15,2,9,7,14,6,8,8,4,11,2,13,2,15,4,5,3,6,1,10,14,15,8,1,11,4,6,6,7,13,15,14,2,12,7,12,5,3,0,1,8,10,14,7,1,3,2,9,12,2,12,13,11,14,5,8,3,14,4,11,8,6,14,3,6,13,9,11,9,7,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"3\", \"14\", \"1\"], \"clip_start\": 202.0, \"clip_end\": 207.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q9_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,13,9,0,0,8,15,5,13,9,10,15,7,5,0,11,4,15,14,12,6,0,6,12,15,1,7,4,10,12,13,11,8,8,14,14,3,8,8,10,15,3,6,15,11,14,14,13,6,9,8,12,6,15,8,6,12,15,0,10,9,8,14,5,2,3,9,13,4,13,1,2,14,9,7,2,1,8,2,12,11,0,15,10,13,10,15,1,8,15,13,10,0,2,0,14,3,4,14,7,3,6,10,2,5,10,0,5,2,7,3,12,14,8,9,3,4,5,6,3,4,12,7,4,9,14,15,4,10,4,4,6,1,6,5,15,1,14,14,0,2,4,11,15,4,5,15,15,8,11,6,3,12,1,1,6,14,5,12,8,3,12,5,7,7,0,12,12,15,7,1,11,4,15,8,10,13,15,7,4,2,3,9,8,0,1,11,10,7,10,14,14,12,0,10,5,2,5,3,12,3,14,10,6,3,14,1,12,0,9,6,8,3,1,0,8,5,12,7,15,5,14,8,10,10,7,3,6,13,14,13,12,1,5,8,9,12,11,14,0,7,0,11,15,3,6,3,2,5,13,13,0,9,5,8,3,9,12,12,6,4,10,5,9,12,8,5,8,14,2,14,12,8,0,8,15,13,14,8,5,5,14,14,9,7,10,11,4,13,8,8,8,10,10,10,9,5,2,3,6,9,9,4,7,0,0,8,15,0,7,9,13,11,2,6,9,10,7,3,6,6,9,10,0,15,4,9,3,7,10,13,1,13,3,8,6,3,3,0,1,5,7,7,5,0,4,3,0,9,13,4,6,0,6,7,15,11,14,9,6,2,13,3,15,12,2,11,6,2,12,9,6,11,1,15,12,15,9,4,0,6,9,5,8,9,0,13,4,2,14,3,11,5,12,13,9,13,3,7,5,14,13,6,8,6,10,12,1,5,14,7,14,4,11,1,8,0,0,15,14,1,12,8,0,11,2,9,9,5,13,5,6,7,6,7,5,14,6,2,4,13,7,11,3,0,11,9,2,11,9,7,7,14,14,5,15,15,12,15,12,9,5,2,0,11,10,2,8,8,3,7,9,1,7,1,2,9,11,1,11,14,4,6,1,6,3,6,15,7,15,9,13,11,11,1,8,1,14,1,7,7,8,15,3,5,13,14,14,8,5,11,6,6,13,7,2,1,0,2,3,12,2,10,13,13,5,15,5,3,6,13,15,13,4,7,7,12,12,7,11,11,2,14,12,3,5,2,1,10,5,8,7,12,11,8,10,9,3,6,11,14,1,6,7,13,15,12,1,12,9,1,11,0,7,9,4,6,6,0,6,8,13,15,1,15,9,0,12,14,15,2,1,15,13,7,1,0,14,10,8,0,9,4,4,7,11,0,13,6,5,1,13,3,10,2,13,13,9,12,0,15,12,4,9,13,12,0,8,4,13,7,7,6,8,5,7,13,3,10,13,6,0,7,2,11,5,5,10,0,15,12,7,12,8,6,13,3,5,1,4,7,15,1,4,13,14,14,15,12,2,9,0,7,6,11,6,5,9,1,4,7,0,4,11,0,0,10,0,14,14,10,14,1,6,2,0,15,15,4,8,4,12,3,9,4,5,11,9,1,10,6,14,2,10,10,2,10,9,1,3,1,1,11,4,14,3,0,0,3,7,15,13,6,14,15,0,10,0,15,6,12,5,10,9,13,11,7,7,5,9,12,15,6,7,13,8,4,14,1,12,1,3,11,13,11,6,5,1,11,6,7,10,15,7,0,7,1,14,10,10,2,4,15,6,14,6,1,5,10,9,7,10,1,8,5,4,0,0,9,3,14,12,14,14,13,6,13,13,12,6,10,7,13,7,14,1,2,8,0,0,15,4,7,9,14,9,7,4,12,4,3,6,5,6,15,2,4,4,15,8,9,13,0,3,4,7,3,5,15,4,9,0,15,6,3,14,15,2,6,1,5,10,12,13,14,12,10,13,3,12,2,10,9,12,7,12,9,8,9,14,14,14,2,7,9,10,2,1,7,4,3,14,11,1,15,3,11,12,4,9,0,11,2,5,10,0,1,15,3,6,9,4,13,12,2,11,11,3,7,9,12,3,8,3,1,7,11,3,4,10,10,4,6,12,11,1,3,14,2,12,4,9,12,4,2,12,5,12,10,0,3,9,3,15,2,9,7,14,6,8,8,4,11,2,13,2,15,4,5,3,6,1,10,14,15,8,1,11,4,6,6,7,13,15,14,2,12,7,12,5,3,0,1,8,10,14,7,1,3,2,9,12,2,12,13,11,14,5,8,3,14,4,11,8,6,14,3,6,13,9,11,9,7,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"13\", \"6\", \"14\", \"15\"], \"clip_start\": 729.0, \"clip_end\": 735.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q10_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,13,9,0,0,8,15,5,13,9,10,15,7,5,0,11,4,15,14,12,6,0,6,12,15,1,7,4,10,12,13,11,8,8,14,14,3,8,8,10,15,3,6,15,11,14,14,13,6,9,8,12,6,15,8,6,12,15,0,10,9,8,14,5,2,3,9,13,4,13,1,2,14,9,7,2,1,8,2,12,11,0,15,10,13,10,15,1,8,15,13,10,0,2,0,14,3,4,14,7,3,6,10,2,5,10,0,5,2,7,3,12,14,8,9,3,4,5,6,3,4,12,7,4,9,14,15,4,10,4,4,6,1,6,5,15,1,14,14,0,2,4,11,15,4,5,15,15,8,11,6,3,12,1,1,6,14,5,12,8,3,12,5,7,7,0,12,12,15,7,1,11,4,15,8,10,13,15,7,4,2,3,9,8,0,1,11,10,7,10,14,14,12,0,10,5,2,5,3,12,3,14,10,6,3,14,1,12,0,9,6,8,3,1,0,8,5,12,7,15,5,14,8,10,10,7,3,6,13,14,13,12,1,5,8,9,12,11,14,0,7,0,11,15,3,6,3,2,5,13,13,0,9,5,8,3,9,12,12,6,4,10,5,9,12,8,5,8,14,2,14,12,8,0,8,15,13,14,8,5,5,14,14,9,7,10,11,4,13,8,8,8,10,10,10,9,5,2,3,6,9,9,4,7,0,0,8,15,0,7,9,13,11,2,6,9,10,7,3,6,6,9,10,0,15,4,9,3,7,10,13,1,13,3,8,6,3,3,0,1,5,7,7,5,0,4,3,0,9,13,4,6,0,6,7,15,11,14,9,6,2,13,3,15,12,2,11,6,2,12,9,6,11,1,15,12,15,9,4,0,6,9,5,8,9,0,13,4,2,14,3,11,5,12,13,9,13,3,7,5,14,13,6,8,6,10,12,1,5,14,7,14,4,11,1,8,0,0,15,14,1,12,8,0,11,2,9,9,5,13,5,6,7,6,7,5,14,6,2,4,13,7,11,3,0,11,9,2,11,9,7,7,14,14,5,15,15,12,15,12,9,5,2,0,11,10,2,8,8,3,7,9,1,7,1,2,9,11,1,11,14,4,6,1,6,3,6,15,7,15,9,13,11,11,1,8,1,14,1,7,7,8,15,3,5,13,14,14,8,5,11,6,6,13,7,2,1,0,2,3,12,2,10,13,13,5,15,5,3,6,13,15,13,4,7,7,12,12,7,11,11,2,14,12,3,5,2,1,10,5,8,7,12,11,8,10,9,3,6,11,14,1,6,7,13,15,12,1,12,9,1,11,0,7,9,4,6,6,0,6,8,13,15,1,15,9,0,12,14,15,2,1,15,13,7,1,0,14,10,8,0,9,4,4,7,11,0,13,6,5,1,13,3,10,2,13,13,9,12,0,15,12,4,9,13,12,0,8,4,13,7,7,6,8,5,7,13,3,10,13,6,0,7,2,11,5,5,10,0,15,12,7,12,8,6,13,3,5,1,4,7,15,1,4,13,14,14,15,12,2,9,0,7,6,11,6,5,9,1,4,7,0,4,11,0,0,10,0,14,14,10,14,1,6,2,0,15,15,4,8,4,12,3,9,4,5,11,9,1,10,6,14,2,10,10,2,10,9,1,3,1,1,11,4,14,3,0,0,3,7,15,13,6,14,15,0,10,0,15,6,12,5,10,9,13,11,7,7,5,9,12,15,6,7,13,8,4,14,1,12,1,3,11,13,11,6,5,1,11,6,7,10,15,7,0,7,1,14,10,10,2,4,15,6,14,6,1,5,10,9,7,10,1,8,5,4,0,0,9,3,14,12,14,14,13,6,13,13,12,6,10,7,13,7,14,1,2,8,0,0,15,4,7,9,14,9,7,4,12,4,3,6,5,6,15,2,4,4,15,8,9,13,0,3,4,7,3,5,15,4,9,0,15,6,3,14,15,2,6,1,5,10,12,13,14,12,10,13,3,12,2,10,9,12,7,12,9,8,9,14,14,14,2,7,9,10,2,1,7,4,3,14,11,1,15,3,11,12,4,9,0,11,2,5,10,0,1,15,3,6,9,4,13,12,2,11,11,3,7,9,12,3,8,3,1,7,11,3,4,10,10,4,6,12,11,1,3,14,2,12,4,9,12,4,2,12,5,12,10,0,3,9,3,15,2,9,7,14,6,8,8,4,11,2,13,2,15,4,5,3,6,1,10,14,15,8,1,11,4,6,6,7,13,15,14,2,12,7,12,5,3,0,1,8,10,14,7,1,3,2,9,12,2,12,13,11,14,5,8,3,14,4,11,8,6,14,3,6,13,9,11,9,7,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"4\", \"7\", \"7\", \"12\"], \"clip_start\": 531.0, \"clip_end\": 537.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q11_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,13,9,0,0,8,15,5,13,9,10,15,7,5,0,11,4,15,14,12,6,0,6,12,15,1,7,4,10,12,13,11,8,8,14,14,3,8,8,10,15,3,6,15,11,14,14,13,6,9,8,12,6,15,8,6,12,15,0,10,9,8,14,5,2,3,9,13,4,13,1,2,14,9,7,2,1,8,2,12,11,0,15,10,13,10,15,1,8,15,13,10,0,2,0,14,3,4,14,7,3,6,10,2,5,10,0,5,2,7,3,12,14,8,9,3,4,5,6,3,4,12,7,4,9,14,15,4,10,4,4,6,1,6,5,15,1,14,14,0,2,4,11,15,4,5,15,15,8,11,6,3,12,1,1,6,14,5,12,8,3,12,5,7,7,0,12,12,15,7,1,11,4,15,8,10,13,15,7,4,2,3,9,8,0,1,11,10,7,10,14,14,12,0,10,5,2,5,3,12,3,14,10,6,3,14,1,12,0,9,6,8,3,1,0,8,5,12,7,15,5,14,8,10,10,7,3,6,13,14,13,12,1,5,8,9,12,11,14,0,7,0,11,15,3,6,3,2,5,13,13,0,9,5,8,3,9,12,12,6,4,10,5,9,12,8,5,8,14,2,14,12,8,0,8,15,13,14,8,5,5,14,14,9,7,10,11,4,13,8,8,8,10,10,10,9,5,2,3,6,9,9,4,7,0,0,8,15,0,7,9,13,11,2,6,9,10,7,3,6,6,9,10,0,15,4,9,3,7,10,13,1,13,3,8,6,3,3,0,1,5,7,7,5,0,4,3,0,9,13,4,6,0,6,7,15,11,14,9,6,2,13,3,15,12,2,11,6,2,12,9,6,11,1,15,12,15,9,4,0,6,9,5,8,9,0,13,4,2,14,3,11,5,12,13,9,13,3,7,5,14,13,6,8,6,10,12,1,5,14,7,14,4,11,1,8,0,0,15,14,1,12,8,0,11,2,9,9,5,13,5,6,7,6,7,5,14,6,2,4,13,7,11,3,0,11,9,2,11,9,7,7,14,14,5,15,15,12,15,12,9,5,2,0,11,10,2,8,8,3,7,9,1,7,1,2,9,11,1,11,14,4,6,1,6,3,6,15,7,15,9,13,11,11,1,8,1,14,1,7,7,8,15,3,5,13,14,14,8,5,11,6,6,13,7,2,1,0,2,3,12,2,10,13,13,5,15,5,3,6,13,15,13,4,7,7,12,12,7,11,11,2,14,12,3,5,2,1,10,5,8,7,12,11,8,10,9,3,6,11,14,1,6,7,13,15,12,1,12,9,1,11,0,7,9,4,6,6,0,6,8,13,15,1,15,9,0,12,14,15,2,1,15,13,7,1,0,14,10,8,0,9,4,4,7,11,0,13,6,5,1,13,3,10,2,13,13,9,12,0,15,12,4,9,13,12,0,8,4,13,7,7,6,8,5,7,13,3,10,13,6,0,7,2,11,5,5,10,0,15,12,7,12,8,6,13,3,5,1,4,7,15,1,4,13,14,14,15,12,2,9,0,7,6,11,6,5,9,1,4,7,0,4,11,0,0,10,0,14,14,10,14,1,6,2,0,15,15,4,8,4,12,3,9,4,5,11,9,1,10,6,14,2,10,10,2,10,9,1,3,1,1,11,4,14,3,0,0,3,7,15,13,6,14,15,0,10,0,15,6,12,5,10,9,13,11,7,7,5,9,12,15,6,7,13,8,4,14,1,12,1,3,11,13,11,6,5,1,11,6,7,10,15,7,0,7,1,14,10,10,2,4,15,6,14,6,1,5,10,9,7,10,1,8,5,4,0,0,9,3,14,12,14,14,13,6,13,13,12,6,10,7,13,7,14,1,2,8,0,0,15,4,7,9,14,9,7,4,12,4,3,6,5,6,15,2,4,4,15,8,9,13,0,3,4,7,3,5,15,4,9,0,15,6,3,14,15,2,6,1,5,10,12,13,14,12,10,13,3,12,2,10,9,12,7,12,9,8,9,14,14,14,2,7,9,10,2,1,7,4,3,14,11,1,15,3,11,12,4,9,0,11,2,5,10,0,1,15,3,6,9,4,13,12,2,11,11,3,7,9,12,3,8,3,1,7,11,3,4,10,10,4,6,12,11,1,3,14,2,12,4,9,12,4,2,12,5,12,10,0,3,9,3,15,2,9,7,14,6,8,8,4,11,2,13,2,15,4,5,3,6,1,10,14,15,8,1,11,4,6,6,7,13,15,14,2,12,7,12,5,3,0,1,8,10,14,7,1,3,2,9,12,2,12,13,11,14,5,8,3,14,4,11,8,6,14,3,6,13,9,11,9,7,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"14\", \"13\", \"6\", \"8\"], \"clip_start\": 398.0, \"clip_end\": 404.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q12_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,13,9,0,0,8,15,5,13,9,10,15,7,5,0,11,4,15,14,12,6,0,6,12,15,1,7,4,10,12,13,11,8,8,14,14,3,8,8,10,15,3,6,15,11,14,14,13,6,9,8,12,6,15,8,6,12,15,0,10,9,8,14,5,2,3,9,13,4,13,1,2,14,9,7,2,1,8,2,12,11,0,15,10,13,10,15,1,8,15,13,10,0,2,0,14,3,4,14,7,3,6,10,2,5,10,0,5,2,7,3,12,14,8,9,3,4,5,6,3,4,12,7,4,9,14,15,4,10,4,4,6,1,6,5,15,1,14,14,0,2,4,11,15,4,5,15,15,8,11,6,3,12,1,1,6,14,5,12,8,3,12,5,7,7,0,12,12,15,7,1,11,4,15,8,10,13,15,7,4,2,3,9,8,0,1,11,10,7,10,14,14,12,0,10,5,2,5,3,12,3,14,10,6,3,14,1,12,0,9,6,8,3,1,0,8,5,12,7,15,5,14,8,10,10,7,3,6,13,14,13,12,1,5,8,9,12,11,14,0,7,0,11,15,3,6,3,2,5,13,13,0,9,5,8,3,9,12,12,6,4,10,5,9,12,8,5,8,14,2,14,12,8,0,8,15,13,14,8,5,5,14,14,9,7,10,11,4,13,8,8,8,10,10,10,9,5,2,3,6,9,9,4,7,0,0,8,15,0,7,9,13,11,2,6,9,10,7,3,6,6,9,10,0,15,4,9,3,7,10,13,1,13,3,8,6,3,3,0,1,5,7,7,5,0,4,3,0,9,13,4,6,0,6,7,15,11,14,9,6,2,13,3,15,12,2,11,6,2,12,9,6,11,1,15,12,15,9,4,0,6,9,5,8,9,0,13,4,2,14,3,11,5,12,13,9,13,3,7,5,14,13,6,8,6,10,12,1,5,14,7,14,4,11,1,8,0,0,15,14,1,12,8,0,11,2,9,9,5,13,5,6,7,6,7,5,14,6,2,4,13,7,11,3,0,11,9,2,11,9,7,7,14,14,5,15,15,12,15,12,9,5,2,0,11,10,2,8,8,3,7,9,1,7,1,2,9,11,1,11,14,4,6,1,6,3,6,15,7,15,9,13,11,11,1,8,1,14,1,7,7,8,15,3,5,13,14,14,8,5,11,6,6,13,7,2,1,0,2,3,12,2,10,13,13,5,15,5,3,6,13,15,13,4,7,7,12,12,7,11,11,2,14,12,3,5,2,1,10,5,8,7,12,11,8,10,9,3,6,11,14,1,6,7,13,15,12,1,12,9,1,11,0,7,9,4,6,6,0,6,8,13,15,1,15,9,0,12,14,15,2,1,15,13,7,1,0,14,10,8,0,9,4,4,7,11,0,13,6,5,1,13,3,10,2,13,13,9,12,0,15,12,4,9,13,12,0,8,4,13,7,7,6,8,5,7,13,3,10,13,6,0,7,2,11,5,5,10,0,15,12,7,12,8,6,13,3,5,1,4,7,15,1,4,13,14,14,15,12,2,9,0,7,6,11,6,5,9,1,4,7,0,4,11,0,0,10,0,14,14,10,14,1,6,2,0,15,15,4,8,4,12,3,9,4,5,11,9,1,10,6,14,2,10,10,2,10,9,1,3,1,1,11,4,14,3,0,0,3,7,15,13,6,14,15,0,10,0,15,6,12,5,10,9,13,11,7,7,5,9,12,15,6,7,13,8,4,14,1,12,1,3,11,13,11,6,5,1,11,6,7,10,15,7,0,7,1,14,10,10,2,4,15,6,14,6,1,5,10,9,7,10,1,8,5,4,0,0,9,3,14,12,14,14,13,6,13,13,12,6,10,7,13,7,14,1,2,8,0,0,15,4,7,9,14,9,7,4,12,4,3,6,5,6,15,2,4,4,15,8,9,13,0,3,4,7,3,5,15,4,9,0,15,6,3,14,15,2,6,1,5,10,12,13,14,12,10,13,3,12,2,10,9,12,7,12,9,8,9,14,14,14,2,7,9,10,2,1,7,4,3,14,11,1,15,3,11,12,4,9,0,11,2,5,10,0,1,15,3,6,9,4,13,12,2,11,11,3,7,9,12,3,8,3,1,7,11,3,4,10,10,4,6,12,11,1,3,14,2,12,4,9,12,4,2,12,5,12,10,0,3,9,3,15,2,9,7,14,6,8,8,4,11,2,13,2,15,4,5,3,6,1,10,14,15,8,1,11,4,6,6,7,13,15,14,2,12,7,12,5,3,0,1,8,10,14,7,1,3,2,9,12,2,12,13,11,14,5,8,3,14,4,11,8,6,14,3,6,13,9,11,9,7,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"9\", \"1\", \"6\"], \"clip_start\": 409.0, \"clip_end\": 414.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q13_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,13,9,0,0,8,15,5,13,9,10,15,7,5,0,11,4,15,14,12,6,0,6,12,15,1,7,4,10,12,13,11,8,8,14,14,3,8,8,10,15,3,6,15,11,14,14,13,6,9,8,12,6,15,8,6,12,15,0,10,9,8,14,5,2,3,9,13,4,13,1,2,14,9,7,2,1,8,2,12,11,0,15,10,13,10,15,1,8,15,13,10,0,2,0,14,3,4,14,7,3,6,10,2,5,10,0,5,2,7,3,12,14,8,9,3,4,5,6,3,4,12,7,4,9,14,15,4,10,4,4,6,1,6,5,15,1,14,14,0,2,4,11,15,4,5,15,15,8,11,6,3,12,1,1,6,14,5,12,8,3,12,5,7,7,0,12,12,15,7,1,11,4,15,8,10,13,15,7,4,2,3,9,8,0,1,11,10,7,10,14,14,12,0,10,5,2,5,3,12,3,14,10,6,3,14,1,12,0,9,6,8,3,1,0,8,5,12,7,15,5,14,8,10,10,7,3,6,13,14,13,12,1,5,8,9,12,11,14,0,7,0,11,15,3,6,3,2,5,13,13,0,9,5,8,3,9,12,12,6,4,10,5,9,12,8,5,8,14,2,14,12,8,0,8,15,13,14,8,5,5,14,14,9,7,10,11,4,13,8,8,8,10,10,10,9,5,2,3,6,9,9,4,7,0,0,8,15,0,7,9,13,11,2,6,9,10,7,3,6,6,9,10,0,15,4,9,3,7,10,13,1,13,3,8,6,3,3,0,1,5,7,7,5,0,4,3,0,9,13,4,6,0,6,7,15,11,14,9,6,2,13,3,15,12,2,11,6,2,12,9,6,11,1,15,12,15,9,4,0,6,9,5,8,9,0,13,4,2,14,3,11,5,12,13,9,13,3,7,5,14,13,6,8,6,10,12,1,5,14,7,14,4,11,1,8,0,0,15,14,1,12,8,0,11,2,9,9,5,13,5,6,7,6,7,5,14,6,2,4,13,7,11,3,0,11,9,2,11,9,7,7,14,14,5,15,15,12,15,12,9,5,2,0,11,10,2,8,8,3,7,9,1,7,1,2,9,11,1,11,14,4,6,1,6,3,6,15,7,15,9,13,11,11,1,8,1,14,1,7,7,8,15,3,5,13,14,14,8,5,11,6,6,13,7,2,1,0,2,3,12,2,10,13,13,5,15,5,3,6,13,15,13,4,7,7,12,12,7,11,11,2,14,12,3,5,2,1,10,5,8,7,12,11,8,10,9,3,6,11,14,1,6,7,13,15,12,1,12,9,1,11,0,7,9,4,6,6,0,6,8,13,15,1,15,9,0,12,14,15,2,1,15,13,7,1,0,14,10,8,0,9,4,4,7,11,0,13,6,5,1,13,3,10,2,13,13,9,12,0,15,12,4,9,13,12,0,8,4,13,7,7,6,8,5,7,13,3,10,13,6,0,7,2,11,5,5,10,0,15,12,7,12,8,6,13,3,5,1,4,7,15,1,4,13,14,14,15,12,2,9,0,7,6,11,6,5,9,1,4,7,0,4,11,0,0,10,0,14,14,10,14,1,6,2,0,15,15,4,8,4,12,3,9,4,5,11,9,1,10,6,14,2,10,10,2,10,9,1,3,1,1,11,4,14,3,0,0,3,7,15,13,6,14,15,0,10,0,15,6,12,5,10,9,13,11,7,7,5,9,12,15,6,7,13,8,4,14,1,12,1,3,11,13,11,6,5,1,11,6,7,10,15,7,0,7,1,14,10,10,2,4,15,6,14,6,1,5,10,9,7,10,1,8,5,4,0,0,9,3,14,12,14,14,13,6,13,13,12,6,10,7,13,7,14,1,2,8,0,0,15,4,7,9,14,9,7,4,12,4,3,6,5,6,15,2,4,4,15,8,9,13,0,3,4,7,3,5,15,4,9,0,15,6,3,14,15,2,6,1,5,10,12,13,14,12,10,13,3,12,2,10,9,12,7,12,9,8,9,14,14,14,2,7,9,10,2,1,7,4,3,14,11,1,15,3,11,12,4,9,0,11,2,5,10,0,1,15,3,6,9,4,13,12,2,11,11,3,7,9,12,3,8,3,1,7,11,3,4,10,10,4,6,12,11,1,3,14,2,12,4,9,12,4,2,12,5,12,10,0,3,9,3,15,2,9,7,14,6,8,8,4,11,2,13,2,15,4,5,3,6,1,10,14,15,8,1,11,4,6,6,7,13,15,14,2,12,7,12,5,3,0,1,8,10,14,7,1,3,2,9,12,2,12,13,11,14,5,8,3,14,4,11,8,6,14,3,6,13,9,11,9,7,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"1\", \"15\", \"12\"], \"clip_start\": 371.0, \"clip_end\": 376.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q14_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,13,9,0,0,8,15,5,13,9,10,15,7,5,0,11,4,15,14,12,6,0,6,12,15,1,7,4,10,12,13,11,8,8,14,14,3,8,8,10,15,3,6,15,11,14,14,13,6,9,8,12,6,15,8,6,12,15,0,10,9,8,14,5,2,3,9,13,4,13,1,2,14,9,7,2,1,8,2,12,11,0,15,10,13,10,15,1,8,15,13,10,0,2,0,14,3,4,14,7,3,6,10,2,5,10,0,5,2,7,3,12,14,8,9,3,4,5,6,3,4,12,7,4,9,14,15,4,10,4,4,6,1,6,5,15,1,14,14,0,2,4,11,15,4,5,15,15,8,11,6,3,12,1,1,6,14,5,12,8,3,12,5,7,7,0,12,12,15,7,1,11,4,15,8,10,13,15,7,4,2,3,9,8,0,1,11,10,7,10,14,14,12,0,10,5,2,5,3,12,3,14,10,6,3,14,1,12,0,9,6,8,3,1,0,8,5,12,7,15,5,14,8,10,10,7,3,6,13,14,13,12,1,5,8,9,12,11,14,0,7,0,11,15,3,6,3,2,5,13,13,0,9,5,8,3,9,12,12,6,4,10,5,9,12,8,5,8,14,2,14,12,8,0,8,15,13,14,8,5,5,14,14,9,7,10,11,4,13,8,8,8,10,10,10,9,5,2,3,6,9,9,4,7,0,0,8,15,0,7,9,13,11,2,6,9,10,7,3,6,6,9,10,0,15,4,9,3,7,10,13,1,13,3,8,6,3,3,0,1,5,7,7,5,0,4,3,0,9,13,4,6,0,6,7,15,11,14,9,6,2,13,3,15,12,2,11,6,2,12,9,6,11,1,15,12,15,9,4,0,6,9,5,8,9,0,13,4,2,14,3,11,5,12,13,9,13,3,7,5,14,13,6,8,6,10,12,1,5,14,7,14,4,11,1,8,0,0,15,14,1,12,8,0,11,2,9,9,5,13,5,6,7,6,7,5,14,6,2,4,13,7,11,3,0,11,9,2,11,9,7,7,14,14,5,15,15,12,15,12,9,5,2,0,11,10,2,8,8,3,7,9,1,7,1,2,9,11,1,11,14,4,6,1,6,3,6,15,7,15,9,13,11,11,1,8,1,14,1,7,7,8,15,3,5,13,14,14,8,5,11,6,6,13,7,2,1,0,2,3,12,2,10,13,13,5,15,5,3,6,13,15,13,4,7,7,12,12,7,11,11,2,14,12,3,5,2,1,10,5,8,7,12,11,8,10,9,3,6,11,14,1,6,7,13,15,12,1,12,9,1,11,0,7,9,4,6,6,0,6,8,13,15,1,15,9,0,12,14,15,2,1,15,13,7,1,0,14,10,8,0,9,4,4,7,11,0,13,6,5,1,13,3,10,2,13,13,9,12,0,15,12,4,9,13,12,0,8,4,13,7,7,6,8,5,7,13,3,10,13,6,0,7,2,11,5,5,10,0,15,12,7,12,8,6,13,3,5,1,4,7,15,1,4,13,14,14,15,12,2,9,0,7,6,11,6,5,9,1,4,7,0,4,11,0,0,10,0,14,14,10,14,1,6,2,0,15,15,4,8,4,12,3,9,4,5,11,9,1,10,6,14,2,10,10,2,10,9,1,3,1,1,11,4,14,3,0,0,3,7,15,13,6,14,15,0,10,0,15,6,12,5,10,9,13,11,7,7,5,9,12,15,6,7,13,8,4,14,1,12,1,3,11,13,11,6,5,1,11,6,7,10,15,7,0,7,1,14,10,10,2,4,15,6,14,6,1,5,10,9,7,10,1,8,5,4,0,0,9,3,14,12,14,14,13,6,13,13,12,6,10,7,13,7,14,1,2,8,0,0,15,4,7,9,14,9,7,4,12,4,3,6,5,6,15,2,4,4,15,8,9,13,0,3,4,7,3,5,15,4,9,0,15,6,3,14,15,2,6,1,5,10,12,13,14,12,10,13,3,12,2,10,9,12,7,12,9,8,9,14,14,14,2,7,9,10,2,1,7,4,3,14,11,1,15,3,11,12,4,9,0,11,2,5,10,0,1,15,3,6,9,4,13,12,2,11,11,3,7,9,12,3,8,3,1,7,11,3,4,10,10,4,6,12,11,1,3,14,2,12,4,9,12,4,2,12,5,12,10,0,3,9,3,15,2,9,7,14,6,8,8,4,11,2,13,2,15,4,5,3,6,1,10,14,15,8,1,11,4,6,6,7,13,15,14,2,12,7,12,5,3,0,1,8,10,14,7,1,3,2,9,12,2,12,13,11,14,5,8,3,14,4,11,8,6,14,3,6,13,9,11,9,7,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"0\"], \"clip_start\": 433.0, \"clip_end\": 437.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q15_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,13,9,0,0,8,15,5,13,9,10,15,7,5,0,11,4,15,14,12,6,0,6,12,15,1,7,4,10,12,13,11,8,8,14,14,3,8,8,10,15,3,6,15,11,14,14,13,6,9,8,12,6,15,8,6,12,15,0,10,9,8,14,5,2,3,9,13,4,13,1,2,14,9,7,2,1,8,2,12,11,0,15,10,13,10,15,1,8,15,13,10,0,2,0,14,3,4,14,7,3,6,10,2,5,10,0,5,2,7,3,12,14,8,9,3,4,5,6,3,4,12,7,4,9,14,15,4,10,4,4,6,1,6,5,15,1,14,14,0,2,4,11,15,4,5,15,15,8,11,6,3,12,1,1,6,14,5,12,8,3,12,5,7,7,0,12,12,15,7,1,11,4,15,8,10,13,15,7,4,2,3,9,8,0,1,11,10,7,10,14,14,12,0,10,5,2,5,3,12,3,14,10,6,3,14,1,12,0,9,6,8,3,1,0,8,5,12,7,15,5,14,8,10,10,7,3,6,13,14,13,12,1,5,8,9,12,11,14,0,7,0,11,15,3,6,3,2,5,13,13,0,9,5,8,3,9,12,12,6,4,10,5,9,12,8,5,8,14,2,14,12,8,0,8,15,13,14,8,5,5,14,14,9,7,10,11,4,13,8,8,8,10,10,10,9,5,2,3,6,9,9,4,7,0,0,8,15,0,7,9,13,11,2,6,9,10,7,3,6,6,9,10,0,15,4,9,3,7,10,13,1,13,3,8,6,3,3,0,1,5,7,7,5,0,4,3,0,9,13,4,6,0,6,7,15,11,14,9,6,2,13,3,15,12,2,11,6,2,12,9,6,11,1,15,12,15,9,4,0,6,9,5,8,9,0,13,4,2,14,3,11,5,12,13,9,13,3,7,5,14,13,6,8,6,10,12,1,5,14,7,14,4,11,1,8,0,0,15,14,1,12,8,0,11,2,9,9,5,13,5,6,7,6,7,5,14,6,2,4,13,7,11,3,0,11,9,2,11,9,7,7,14,14,5,15,15,12,15,12,9,5,2,0,11,10,2,8,8,3,7,9,1,7,1,2,9,11,1,11,14,4,6,1,6,3,6,15,7,15,9,13,11,11,1,8,1,14,1,7,7,8,15,3,5,13,14,14,8,5,11,6,6,13,7,2,1,0,2,3,12,2,10,13,13,5,15,5,3,6,13,15,13,4,7,7,12,12,7,11,11,2,14,12,3,5,2,1,10,5,8,7,12,11,8,10,9,3,6,11,14,1,6,7,13,15,12,1,12,9,1,11,0,7,9,4,6,6,0,6,8,13,15,1,15,9,0,12,14,15,2,1,15,13,7,1,0,14,10,8,0,9,4,4,7,11,0,13,6,5,1,13,3,10,2,13,13,9,12,0,15,12,4,9,13,12,0,8,4,13,7,7,6,8,5,7,13,3,10,13,6,0,7,2,11,5,5,10,0,15,12,7,12,8,6,13,3,5,1,4,7,15,1,4,13,14,14,15,12,2,9,0,7,6,11,6,5,9,1,4,7,0,4,11,0,0,10,0,14,14,10,14,1,6,2,0,15,15,4,8,4,12,3,9,4,5,11,9,1,10,6,14,2,10,10,2,10,9,1,3,1,1,11,4,14,3,0,0,3,7,15,13,6,14,15,0,10,0,15,6,12,5,10,9,13,11,7,7,5,9,12,15,6,7,13,8,4,14,1,12,1,3,11,13,11,6,5,1,11,6,7,10,15,7,0,7,1,14,10,10,2,4,15,6,14,6,1,5,10,9,7,10,1,8,5,4,0,0,9,3,14,12,14,14,13,6,13,13,12,6,10,7,13,7,14,1,2,8,0,0,15,4,7,9,14,9,7,4,12,4,3,6,5,6,15,2,4,4,15,8,9,13,0,3,4,7,3,5,15,4,9,0,15,6,3,14,15,2,6,1,5,10,12,13,14,12,10,13,3,12,2,10,9,12,7,12,9,8,9,14,14,14,2,7,9,10,2,1,7,4,3,14,11,1,15,3,11,12,4,9,0,11,2,5,10,0,1,15,3,6,9,4,13,12,2,11,11,3,7,9,12,3,8,3,1,7,11,3,4,10,10,4,6,12,11,1,3,14,2,12,4,9,12,4,2,12,5,12,10,0,3,9,3,15,2,9,7,14,6,8,8,4,11,2,13,2,15,4,5,3,6,1,10,14,15,8,1,11,4,6,6,7,13,15,14,2,12,7,12,5,3,0,1,8,10,14,7,1,3,2,9,12,2,12,13,11,14,5,8,3,14,4,11,8,6,14,3,6,13,9,11,9,7,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"3\", \"8\", \"11\", \"6\"], \"clip_start\": 701.0, \"clip_end\": 707.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,5,3,1,9,4,12,2,5,7,13,12,3,11,8,9,13,1,8,10,12,15,3,7,14,14,6,15,11,14,14,7,12,7,2,7,10,2,2,0,6,11,14,6,7,6,9,12,1,13,5,10,3,10,13,10,11,9,14,1,11,4,2,13,0,13,8,2,3,13,7,3,1,13,14,13,9,1,2,5,14,8,3,10,6,14,15,8,9,14,4,1,8,14,15,14,7,2,11,10,3,1,9,13,3,5,1,7,0,4,4,0,15,10,4,8,4,0,10,15,3,8,1,12,7,14,0,8,6,11,1,7,2,2,3,8,0,1,10,15,2,7,4,11,6,2,6,15,6,10,1,1,7,9,0,11,12,11,5,4,15,14,8,15,13,1,15,0,10,6,15,1,9,10,13,3,1,13,6,13,7,8,2,5,15,14,2,2,11,15,13,7,13,9,9,2,9,15,4,15,10,1,6,5,3,0,7,6,4,13,13,1,13,2,8,15,8,8,12,12,13,15,5,3,6,8,0,1,8,13,13,11,5,6,3,7,12,9,9,1,10,5,9,15,12,1,3,0,12,6,3,15,9,14,8,4,9,15,13,11,2,6,14,13,0,10,0,14,10,15,2,11,3,5,12,12,3,9,3,11,4,14,6,9,15,3,4,12,3,12,1,10,11,1,15,9,4,8,4,5,11,7,15,10,14,6,1,14,10,13,9,4,13,15,3,12,5,4,8,15,15,1,14,15,6,1,11,4,15,8,5,6,8,2,5,6,12,3,7,8,6,9,11,5,10,11,1,7,10,11,9,10,7,15,14,8,5,3,1,6,6,0,6,5,1,10,6,15,1,8,5,3,1,4,0,13,7,9,0,3,10,0,12,13,7,4,0,3,9,5,4,1,4,1,0,12,7,13,8,15,2,14,14,9,11,7,10,2,15,11,11,6,7,12,5,1,14,10,7,12,13,13,13,2,0,12,10,11,8,3,10,0,0,2,2,7,15,1,15,10,8,15,9,15,1,8,13,7,9,15,2,5,6,7,8,9,1,6,7,9,6,9,3,0,15,2,12,15,15,3,15,10,2,14,12,8,15,15,11,8,5,13,7,10,11,8,8,6,10,10,9,2,3,13,8,10,8,3,8,1,15,8,9,14,1,12,4,1,13,8,10,10,13,15,6,14,10,3,6,8,2,15,4,13,5,15,15,15,15,13,13,7,6,6,6,13,11,2,6,3,1,6,9,3,0,13,9,12,2,1,10,3,15,10,2,7,9,1,13,14,6,12,2,7,11,1,0,14,7,11,8,13,11,3,7,7,14,8,10,10,15,12,10,10,4,11,8,3,15,11,9,11,3,12,3,3,15,10,3,14,13,1,8,12,14,14,1,10,7,10,1,9,8,7,14,15,9,14,11,8,15,12,13,11,6,13,3,11,10,15,7,13,15,13,7,1,15,1,7,14,8,2,9,10,14,1,9,14,0,10,8,2,13,3,13,15,11,13,4,1,8,14,12,15,2,4,5,14,14,10,2,12,0,13,2,10,10,7,13,1,14,4,8,2,3,9,8,7,0,7,13,13,5,4,0,13,14,10,3,12,9,12,3,8,11,6,8,6,7,3,0,13,7,3,0,2,7,4,8,10,0,0,4,7,2,6,9,11,10,10,13,7,11,15,14,11,7,12,12,11,5,13,6,14,7,4,7,5,12,14,14,10,5,9,5,7,1,12,0,5,0,6,11,3,11,14,3,8,10,2,14,0,4,10,10,14,6,1,13,8,15,0,5,6,9,15,0,3,13,11,9,12,8,3,15,1,5,7,4,11,15,10,6,12,10,4,15,8,9,10,6,14,5,10,13,7,11,5,14,6,13,14,6,14,8,4,9,6,1,8,2,3,5,5,5,14,7,2,9,5,5,4,11,8,9,14,12,3,3,0,3,5,11,12,4,7,2,14,4,4,11,4,15,15,6,1,11,15,8,1,7,4,5,8,12,9,4,3,1,11,0,6,11,6,9,9,6,11,12,2,4,7,5,12,3,5,6,12,15,10,10,1,11,0,12,2,14,10,7,8,9,5,14,1,9,14,13,10,12,5,15,13,4,12,1,1,1,11,10,12,3,2,3,10,10,0,1,1,0,5,14,10,6,10,7,5,2,0,0,10,8,14,1,3,6,0,10,14,8,5,14,13,11,6,9,3,15,1,13,8,10,2,15,15,14,0,12,15,6,6,12,1,13,3,3,7,13,5,7,10,9,9,7,0,5,12,15,4,13,15,6,14,0,0,15,13,2,12,7,10,12,8,12,1,12,8,13,2,4,10,13,7,7", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"1\", \"9\", \"14\", \"0\"], \"clip_start\": 645.0, \"clip_end\": 650.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,5,3,1,9,4,12,2,5,7,13,12,3,11,8,9,13,1,8,10,12,15,3,7,14,14,6,15,11,14,14,7,12,7,2,7,10,2,2,0,6,11,14,6,7,6,9,12,1,13,5,10,3,10,13,10,11,9,14,1,11,4,2,13,0,13,8,2,3,13,7,3,1,13,14,13,9,1,2,5,14,8,3,10,6,14,15,8,9,14,4,1,8,14,15,14,7,2,11,10,3,1,9,13,3,5,1,7,0,4,4,0,15,10,4,8,4,0,10,15,3,8,1,12,7,14,0,8,6,11,1,7,2,2,3,8,0,1,10,15,2,7,4,11,6,2,6,15,6,10,1,1,7,9,0,11,12,11,5,4,15,14,8,15,13,1,15,0,10,6,15,1,9,10,13,3,1,13,6,13,7,8,2,5,15,14,2,2,11,15,13,7,13,9,9,2,9,15,4,15,10,1,6,5,3,0,7,6,4,13,13,1,13,2,8,15,8,8,12,12,13,15,5,3,6,8,0,1,8,13,13,11,5,6,3,7,12,9,9,1,10,5,9,15,12,1,3,0,12,6,3,15,9,14,8,4,9,15,13,11,2,6,14,13,0,10,0,14,10,15,2,11,3,5,12,12,3,9,3,11,4,14,6,9,15,3,4,12,3,12,1,10,11,1,15,9,4,8,4,5,11,7,15,10,14,6,1,14,10,13,9,4,13,15,3,12,5,4,8,15,15,1,14,15,6,1,11,4,15,8,5,6,8,2,5,6,12,3,7,8,6,9,11,5,10,11,1,7,10,11,9,10,7,15,14,8,5,3,1,6,6,0,6,5,1,10,6,15,1,8,5,3,1,4,0,13,7,9,0,3,10,0,12,13,7,4,0,3,9,5,4,1,4,1,0,12,7,13,8,15,2,14,14,9,11,7,10,2,15,11,11,6,7,12,5,1,14,10,7,12,13,13,13,2,0,12,10,11,8,3,10,0,0,2,2,7,15,1,15,10,8,15,9,15,1,8,13,7,9,15,2,5,6,7,8,9,1,6,7,9,6,9,3,0,15,2,12,15,15,3,15,10,2,14,12,8,15,15,11,8,5,13,7,10,11,8,8,6,10,10,9,2,3,13,8,10,8,3,8,1,15,8,9,14,1,12,4,1,13,8,10,10,13,15,6,14,10,3,6,8,2,15,4,13,5,15,15,15,15,13,13,7,6,6,6,13,11,2,6,3,1,6,9,3,0,13,9,12,2,1,10,3,15,10,2,7,9,1,13,14,6,12,2,7,11,1,0,14,7,11,8,13,11,3,7,7,14,8,10,10,15,12,10,10,4,11,8,3,15,11,9,11,3,12,3,3,15,10,3,14,13,1,8,12,14,14,1,10,7,10,1,9,8,7,14,15,9,14,11,8,15,12,13,11,6,13,3,11,10,15,7,13,15,13,7,1,15,1,7,14,8,2,9,10,14,1,9,14,0,10,8,2,13,3,13,15,11,13,4,1,8,14,12,15,2,4,5,14,14,10,2,12,0,13,2,10,10,7,13,1,14,4,8,2,3,9,8,7,0,7,13,13,5,4,0,13,14,10,3,12,9,12,3,8,11,6,8,6,7,3,0,13,7,3,0,2,7,4,8,10,0,0,4,7,2,6,9,11,10,10,13,7,11,15,14,11,7,12,12,11,5,13,6,14,7,4,7,5,12,14,14,10,5,9,5,7,1,12,0,5,0,6,11,3,11,14,3,8,10,2,14,0,4,10,10,14,6,1,13,8,15,0,5,6,9,15,0,3,13,11,9,12,8,3,15,1,5,7,4,11,15,10,6,12,10,4,15,8,9,10,6,14,5,10,13,7,11,5,14,6,13,14,6,14,8,4,9,6,1,8,2,3,5,5,5,14,7,2,9,5,5,4,11,8,9,14,12,3,3,0,3,5,11,12,4,7,2,14,4,4,11,4,15,15,6,1,11,15,8,1,7,4,5,8,12,9,4,3,1,11,0,6,11,6,9,9,6,11,12,2,4,7,5,12,3,5,6,12,15,10,10,1,11,0,12,2,14,10,7,8,9,5,14,1,9,14,13,10,12,5,15,13,4,12,1,1,1,11,10,12,3,2,3,10,10,0,1,1,0,5,14,10,6,10,7,5,2,0,0,10,8,14,1,3,6,0,10,14,8,5,14,13,11,6,9,3,15,1,13,8,10,2,15,15,14,0,12,15,6,6,12,1,13,3,3,7,13,5,7,10,9,9,7,0,5,12,15,4,13,15,6,14,0,0,15,13,2,12,7,10,12,8,12,1,12,8,13,2,4,10,13,7,7", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"0\", \"10\", \"8\", \"14\"], \"clip_start\": 948.0, \"clip_end\": 953.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,5,3,1,9,4,12,2,5,7,13,12,3,11,8,9,13,1,8,10,12,15,3,7,14,14,6,15,11,14,14,7,12,7,2,7,10,2,2,0,6,11,14,6,7,6,9,12,1,13,5,10,3,10,13,10,11,9,14,1,11,4,2,13,0,13,8,2,3,13,7,3,1,13,14,13,9,1,2,5,14,8,3,10,6,14,15,8,9,14,4,1,8,14,15,14,7,2,11,10,3,1,9,13,3,5,1,7,0,4,4,0,15,10,4,8,4,0,10,15,3,8,1,12,7,14,0,8,6,11,1,7,2,2,3,8,0,1,10,15,2,7,4,11,6,2,6,15,6,10,1,1,7,9,0,11,12,11,5,4,15,14,8,15,13,1,15,0,10,6,15,1,9,10,13,3,1,13,6,13,7,8,2,5,15,14,2,2,11,15,13,7,13,9,9,2,9,15,4,15,10,1,6,5,3,0,7,6,4,13,13,1,13,2,8,15,8,8,12,12,13,15,5,3,6,8,0,1,8,13,13,11,5,6,3,7,12,9,9,1,10,5,9,15,12,1,3,0,12,6,3,15,9,14,8,4,9,15,13,11,2,6,14,13,0,10,0,14,10,15,2,11,3,5,12,12,3,9,3,11,4,14,6,9,15,3,4,12,3,12,1,10,11,1,15,9,4,8,4,5,11,7,15,10,14,6,1,14,10,13,9,4,13,15,3,12,5,4,8,15,15,1,14,15,6,1,11,4,15,8,5,6,8,2,5,6,12,3,7,8,6,9,11,5,10,11,1,7,10,11,9,10,7,15,14,8,5,3,1,6,6,0,6,5,1,10,6,15,1,8,5,3,1,4,0,13,7,9,0,3,10,0,12,13,7,4,0,3,9,5,4,1,4,1,0,12,7,13,8,15,2,14,14,9,11,7,10,2,15,11,11,6,7,12,5,1,14,10,7,12,13,13,13,2,0,12,10,11,8,3,10,0,0,2,2,7,15,1,15,10,8,15,9,15,1,8,13,7,9,15,2,5,6,7,8,9,1,6,7,9,6,9,3,0,15,2,12,15,15,3,15,10,2,14,12,8,15,15,11,8,5,13,7,10,11,8,8,6,10,10,9,2,3,13,8,10,8,3,8,1,15,8,9,14,1,12,4,1,13,8,10,10,13,15,6,14,10,3,6,8,2,15,4,13,5,15,15,15,15,13,13,7,6,6,6,13,11,2,6,3,1,6,9,3,0,13,9,12,2,1,10,3,15,10,2,7,9,1,13,14,6,12,2,7,11,1,0,14,7,11,8,13,11,3,7,7,14,8,10,10,15,12,10,10,4,11,8,3,15,11,9,11,3,12,3,3,15,10,3,14,13,1,8,12,14,14,1,10,7,10,1,9,8,7,14,15,9,14,11,8,15,12,13,11,6,13,3,11,10,15,7,13,15,13,7,1,15,1,7,14,8,2,9,10,14,1,9,14,0,10,8,2,13,3,13,15,11,13,4,1,8,14,12,15,2,4,5,14,14,10,2,12,0,13,2,10,10,7,13,1,14,4,8,2,3,9,8,7,0,7,13,13,5,4,0,13,14,10,3,12,9,12,3,8,11,6,8,6,7,3,0,13,7,3,0,2,7,4,8,10,0,0,4,7,2,6,9,11,10,10,13,7,11,15,14,11,7,12,12,11,5,13,6,14,7,4,7,5,12,14,14,10,5,9,5,7,1,12,0,5,0,6,11,3,11,14,3,8,10,2,14,0,4,10,10,14,6,1,13,8,15,0,5,6,9,15,0,3,13,11,9,12,8,3,15,1,5,7,4,11,15,10,6,12,10,4,15,8,9,10,6,14,5,10,13,7,11,5,14,6,13,14,6,14,8,4,9,6,1,8,2,3,5,5,5,14,7,2,9,5,5,4,11,8,9,14,12,3,3,0,3,5,11,12,4,7,2,14,4,4,11,4,15,15,6,1,11,15,8,1,7,4,5,8,12,9,4,3,1,11,0,6,11,6,9,9,6,11,12,2,4,7,5,12,3,5,6,12,15,10,10,1,11,0,12,2,14,10,7,8,9,5,14,1,9,14,13,10,12,5,15,13,4,12,1,1,1,11,10,12,3,2,3,10,10,0,1,1,0,5,14,10,6,10,7,5,2,0,0,10,8,14,1,3,6,0,10,14,8,5,14,13,11,6,9,3,15,1,13,8,10,2,15,15,14,0,12,15,6,6,12,1,13,3,3,7,13,5,7,10,9,9,7,0,5,12,15,4,13,15,6,14,0,0,15,13,2,12,7,10,12,8,12,1,12,8,13,2,4,10,13,7,7", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"12\", \"7\", \"14\", \"0\"], \"clip_start\": 123.0, \"clip_end\": 128.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,5,3,1,9,4,12,2,5,7,13,12,3,11,8,9,13,1,8,10,12,15,3,7,14,14,6,15,11,14,14,7,12,7,2,7,10,2,2,0,6,11,14,6,7,6,9,12,1,13,5,10,3,10,13,10,11,9,14,1,11,4,2,13,0,13,8,2,3,13,7,3,1,13,14,13,9,1,2,5,14,8,3,10,6,14,15,8,9,14,4,1,8,14,15,14,7,2,11,10,3,1,9,13,3,5,1,7,0,4,4,0,15,10,4,8,4,0,10,15,3,8,1,12,7,14,0,8,6,11,1,7,2,2,3,8,0,1,10,15,2,7,4,11,6,2,6,15,6,10,1,1,7,9,0,11,12,11,5,4,15,14,8,15,13,1,15,0,10,6,15,1,9,10,13,3,1,13,6,13,7,8,2,5,15,14,2,2,11,15,13,7,13,9,9,2,9,15,4,15,10,1,6,5,3,0,7,6,4,13,13,1,13,2,8,15,8,8,12,12,13,15,5,3,6,8,0,1,8,13,13,11,5,6,3,7,12,9,9,1,10,5,9,15,12,1,3,0,12,6,3,15,9,14,8,4,9,15,13,11,2,6,14,13,0,10,0,14,10,15,2,11,3,5,12,12,3,9,3,11,4,14,6,9,15,3,4,12,3,12,1,10,11,1,15,9,4,8,4,5,11,7,15,10,14,6,1,14,10,13,9,4,13,15,3,12,5,4,8,15,15,1,14,15,6,1,11,4,15,8,5,6,8,2,5,6,12,3,7,8,6,9,11,5,10,11,1,7,10,11,9,10,7,15,14,8,5,3,1,6,6,0,6,5,1,10,6,15,1,8,5,3,1,4,0,13,7,9,0,3,10,0,12,13,7,4,0,3,9,5,4,1,4,1,0,12,7,13,8,15,2,14,14,9,11,7,10,2,15,11,11,6,7,12,5,1,14,10,7,12,13,13,13,2,0,12,10,11,8,3,10,0,0,2,2,7,15,1,15,10,8,15,9,15,1,8,13,7,9,15,2,5,6,7,8,9,1,6,7,9,6,9,3,0,15,2,12,15,15,3,15,10,2,14,12,8,15,15,11,8,5,13,7,10,11,8,8,6,10,10,9,2,3,13,8,10,8,3,8,1,15,8,9,14,1,12,4,1,13,8,10,10,13,15,6,14,10,3,6,8,2,15,4,13,5,15,15,15,15,13,13,7,6,6,6,13,11,2,6,3,1,6,9,3,0,13,9,12,2,1,10,3,15,10,2,7,9,1,13,14,6,12,2,7,11,1,0,14,7,11,8,13,11,3,7,7,14,8,10,10,15,12,10,10,4,11,8,3,15,11,9,11,3,12,3,3,15,10,3,14,13,1,8,12,14,14,1,10,7,10,1,9,8,7,14,15,9,14,11,8,15,12,13,11,6,13,3,11,10,15,7,13,15,13,7,1,15,1,7,14,8,2,9,10,14,1,9,14,0,10,8,2,13,3,13,15,11,13,4,1,8,14,12,15,2,4,5,14,14,10,2,12,0,13,2,10,10,7,13,1,14,4,8,2,3,9,8,7,0,7,13,13,5,4,0,13,14,10,3,12,9,12,3,8,11,6,8,6,7,3,0,13,7,3,0,2,7,4,8,10,0,0,4,7,2,6,9,11,10,10,13,7,11,15,14,11,7,12,12,11,5,13,6,14,7,4,7,5,12,14,14,10,5,9,5,7,1,12,0,5,0,6,11,3,11,14,3,8,10,2,14,0,4,10,10,14,6,1,13,8,15,0,5,6,9,15,0,3,13,11,9,12,8,3,15,1,5,7,4,11,15,10,6,12,10,4,15,8,9,10,6,14,5,10,13,7,11,5,14,6,13,14,6,14,8,4,9,6,1,8,2,3,5,5,5,14,7,2,9,5,5,4,11,8,9,14,12,3,3,0,3,5,11,12,4,7,2,14,4,4,11,4,15,15,6,1,11,15,8,1,7,4,5,8,12,9,4,3,1,11,0,6,11,6,9,9,6,11,12,2,4,7,5,12,3,5,6,12,15,10,10,1,11,0,12,2,14,10,7,8,9,5,14,1,9,14,13,10,12,5,15,13,4,12,1,1,1,11,10,12,3,2,3,10,10,0,1,1,0,5,14,10,6,10,7,5,2,0,0,10,8,14,1,3,6,0,10,14,8,5,14,13,11,6,9,3,15,1,13,8,10,2,15,15,14,0,12,15,6,6,12,1,13,3,3,7,13,5,7,10,9,9,7,0,5,12,15,4,13,15,6,14,0,0,15,13,2,12,7,10,12,8,12,1,12,8,13,2,4,10,13,7,7", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"4\"], \"clip_start\": 141.0, \"clip_end\": 144.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,5,3,1,9,4,12,2,5,7,13,12,3,11,8,9,13,1,8,10,12,15,3,7,14,14,6,15,11,14,14,7,12,7,2,7,10,2,2,0,6,11,14,6,7,6,9,12,1,13,5,10,3,10,13,10,11,9,14,1,11,4,2,13,0,13,8,2,3,13,7,3,1,13,14,13,9,1,2,5,14,8,3,10,6,14,15,8,9,14,4,1,8,14,15,14,7,2,11,10,3,1,9,13,3,5,1,7,0,4,4,0,15,10,4,8,4,0,10,15,3,8,1,12,7,14,0,8,6,11,1,7,2,2,3,8,0,1,10,15,2,7,4,11,6,2,6,15,6,10,1,1,7,9,0,11,12,11,5,4,15,14,8,15,13,1,15,0,10,6,15,1,9,10,13,3,1,13,6,13,7,8,2,5,15,14,2,2,11,15,13,7,13,9,9,2,9,15,4,15,10,1,6,5,3,0,7,6,4,13,13,1,13,2,8,15,8,8,12,12,13,15,5,3,6,8,0,1,8,13,13,11,5,6,3,7,12,9,9,1,10,5,9,15,12,1,3,0,12,6,3,15,9,14,8,4,9,15,13,11,2,6,14,13,0,10,0,14,10,15,2,11,3,5,12,12,3,9,3,11,4,14,6,9,15,3,4,12,3,12,1,10,11,1,15,9,4,8,4,5,11,7,15,10,14,6,1,14,10,13,9,4,13,15,3,12,5,4,8,15,15,1,14,15,6,1,11,4,15,8,5,6,8,2,5,6,12,3,7,8,6,9,11,5,10,11,1,7,10,11,9,10,7,15,14,8,5,3,1,6,6,0,6,5,1,10,6,15,1,8,5,3,1,4,0,13,7,9,0,3,10,0,12,13,7,4,0,3,9,5,4,1,4,1,0,12,7,13,8,15,2,14,14,9,11,7,10,2,15,11,11,6,7,12,5,1,14,10,7,12,13,13,13,2,0,12,10,11,8,3,10,0,0,2,2,7,15,1,15,10,8,15,9,15,1,8,13,7,9,15,2,5,6,7,8,9,1,6,7,9,6,9,3,0,15,2,12,15,15,3,15,10,2,14,12,8,15,15,11,8,5,13,7,10,11,8,8,6,10,10,9,2,3,13,8,10,8,3,8,1,15,8,9,14,1,12,4,1,13,8,10,10,13,15,6,14,10,3,6,8,2,15,4,13,5,15,15,15,15,13,13,7,6,6,6,13,11,2,6,3,1,6,9,3,0,13,9,12,2,1,10,3,15,10,2,7,9,1,13,14,6,12,2,7,11,1,0,14,7,11,8,13,11,3,7,7,14,8,10,10,15,12,10,10,4,11,8,3,15,11,9,11,3,12,3,3,15,10,3,14,13,1,8,12,14,14,1,10,7,10,1,9,8,7,14,15,9,14,11,8,15,12,13,11,6,13,3,11,10,15,7,13,15,13,7,1,15,1,7,14,8,2,9,10,14,1,9,14,0,10,8,2,13,3,13,15,11,13,4,1,8,14,12,15,2,4,5,14,14,10,2,12,0,13,2,10,10,7,13,1,14,4,8,2,3,9,8,7,0,7,13,13,5,4,0,13,14,10,3,12,9,12,3,8,11,6,8,6,7,3,0,13,7,3,0,2,7,4,8,10,0,0,4,7,2,6,9,11,10,10,13,7,11,15,14,11,7,12,12,11,5,13,6,14,7,4,7,5,12,14,14,10,5,9,5,7,1,12,0,5,0,6,11,3,11,14,3,8,10,2,14,0,4,10,10,14,6,1,13,8,15,0,5,6,9,15,0,3,13,11,9,12,8,3,15,1,5,7,4,11,15,10,6,12,10,4,15,8,9,10,6,14,5,10,13,7,11,5,14,6,13,14,6,14,8,4,9,6,1,8,2,3,5,5,5,14,7,2,9,5,5,4,11,8,9,14,12,3,3,0,3,5,11,12,4,7,2,14,4,4,11,4,15,15,6,1,11,15,8,1,7,4,5,8,12,9,4,3,1,11,0,6,11,6,9,9,6,11,12,2,4,7,5,12,3,5,6,12,15,10,10,1,11,0,12,2,14,10,7,8,9,5,14,1,9,14,13,10,12,5,15,13,4,12,1,1,1,11,10,12,3,2,3,10,10,0,1,1,0,5,14,10,6,10,7,5,2,0,0,10,8,14,1,3,6,0,10,14,8,5,14,13,11,6,9,3,15,1,13,8,10,2,15,15,14,0,12,15,6,6,12,1,13,3,3,7,13,5,7,10,9,9,7,0,5,12,15,4,13,15,6,14,0,0,15,13,2,12,7,10,12,8,12,1,12,8,13,2,4,10,13,7,7", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"11\", \"5\", \"13\", \"6\"], \"clip_start\": 738.0, \"clip_end\": 744.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,5,3,1,9,4,12,2,5,7,13,12,3,11,8,9,13,1,8,10,12,15,3,7,14,14,6,15,11,14,14,7,12,7,2,7,10,2,2,0,6,11,14,6,7,6,9,12,1,13,5,10,3,10,13,10,11,9,14,1,11,4,2,13,0,13,8,2,3,13,7,3,1,13,14,13,9,1,2,5,14,8,3,10,6,14,15,8,9,14,4,1,8,14,15,14,7,2,11,10,3,1,9,13,3,5,1,7,0,4,4,0,15,10,4,8,4,0,10,15,3,8,1,12,7,14,0,8,6,11,1,7,2,2,3,8,0,1,10,15,2,7,4,11,6,2,6,15,6,10,1,1,7,9,0,11,12,11,5,4,15,14,8,15,13,1,15,0,10,6,15,1,9,10,13,3,1,13,6,13,7,8,2,5,15,14,2,2,11,15,13,7,13,9,9,2,9,15,4,15,10,1,6,5,3,0,7,6,4,13,13,1,13,2,8,15,8,8,12,12,13,15,5,3,6,8,0,1,8,13,13,11,5,6,3,7,12,9,9,1,10,5,9,15,12,1,3,0,12,6,3,15,9,14,8,4,9,15,13,11,2,6,14,13,0,10,0,14,10,15,2,11,3,5,12,12,3,9,3,11,4,14,6,9,15,3,4,12,3,12,1,10,11,1,15,9,4,8,4,5,11,7,15,10,14,6,1,14,10,13,9,4,13,15,3,12,5,4,8,15,15,1,14,15,6,1,11,4,15,8,5,6,8,2,5,6,12,3,7,8,6,9,11,5,10,11,1,7,10,11,9,10,7,15,14,8,5,3,1,6,6,0,6,5,1,10,6,15,1,8,5,3,1,4,0,13,7,9,0,3,10,0,12,13,7,4,0,3,9,5,4,1,4,1,0,12,7,13,8,15,2,14,14,9,11,7,10,2,15,11,11,6,7,12,5,1,14,10,7,12,13,13,13,2,0,12,10,11,8,3,10,0,0,2,2,7,15,1,15,10,8,15,9,15,1,8,13,7,9,15,2,5,6,7,8,9,1,6,7,9,6,9,3,0,15,2,12,15,15,3,15,10,2,14,12,8,15,15,11,8,5,13,7,10,11,8,8,6,10,10,9,2,3,13,8,10,8,3,8,1,15,8,9,14,1,12,4,1,13,8,10,10,13,15,6,14,10,3,6,8,2,15,4,13,5,15,15,15,15,13,13,7,6,6,6,13,11,2,6,3,1,6,9,3,0,13,9,12,2,1,10,3,15,10,2,7,9,1,13,14,6,12,2,7,11,1,0,14,7,11,8,13,11,3,7,7,14,8,10,10,15,12,10,10,4,11,8,3,15,11,9,11,3,12,3,3,15,10,3,14,13,1,8,12,14,14,1,10,7,10,1,9,8,7,14,15,9,14,11,8,15,12,13,11,6,13,3,11,10,15,7,13,15,13,7,1,15,1,7,14,8,2,9,10,14,1,9,14,0,10,8,2,13,3,13,15,11,13,4,1,8,14,12,15,2,4,5,14,14,10,2,12,0,13,2,10,10,7,13,1,14,4,8,2,3,9,8,7,0,7,13,13,5,4,0,13,14,10,3,12,9,12,3,8,11,6,8,6,7,3,0,13,7,3,0,2,7,4,8,10,0,0,4,7,2,6,9,11,10,10,13,7,11,15,14,11,7,12,12,11,5,13,6,14,7,4,7,5,12,14,14,10,5,9,5,7,1,12,0,5,0,6,11,3,11,14,3,8,10,2,14,0,4,10,10,14,6,1,13,8,15,0,5,6,9,15,0,3,13,11,9,12,8,3,15,1,5,7,4,11,15,10,6,12,10,4,15,8,9,10,6,14,5,10,13,7,11,5,14,6,13,14,6,14,8,4,9,6,1,8,2,3,5,5,5,14,7,2,9,5,5,4,11,8,9,14,12,3,3,0,3,5,11,12,4,7,2,14,4,4,11,4,15,15,6,1,11,15,8,1,7,4,5,8,12,9,4,3,1,11,0,6,11,6,9,9,6,11,12,2,4,7,5,12,3,5,6,12,15,10,10,1,11,0,12,2,14,10,7,8,9,5,14,1,9,14,13,10,12,5,15,13,4,12,1,1,1,11,10,12,3,2,3,10,10,0,1,1,0,5,14,10,6,10,7,5,2,0,0,10,8,14,1,3,6,0,10,14,8,5,14,13,11,6,9,3,15,1,13,8,10,2,15,15,14,0,12,15,6,6,12,1,13,3,3,7,13,5,7,10,9,9,7,0,5,12,15,4,13,15,6,14,0,0,15,13,2,12,7,10,12,8,12,1,12,8,13,2,4,10,13,7,7", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 533.0, \"clip_end\": 536.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,5,3,1,9,4,12,2,5,7,13,12,3,11,8,9,13,1,8,10,12,15,3,7,14,14,6,15,11,14,14,7,12,7,2,7,10,2,2,0,6,11,14,6,7,6,9,12,1,13,5,10,3,10,13,10,11,9,14,1,11,4,2,13,0,13,8,2,3,13,7,3,1,13,14,13,9,1,2,5,14,8,3,10,6,14,15,8,9,14,4,1,8,14,15,14,7,2,11,10,3,1,9,13,3,5,1,7,0,4,4,0,15,10,4,8,4,0,10,15,3,8,1,12,7,14,0,8,6,11,1,7,2,2,3,8,0,1,10,15,2,7,4,11,6,2,6,15,6,10,1,1,7,9,0,11,12,11,5,4,15,14,8,15,13,1,15,0,10,6,15,1,9,10,13,3,1,13,6,13,7,8,2,5,15,14,2,2,11,15,13,7,13,9,9,2,9,15,4,15,10,1,6,5,3,0,7,6,4,13,13,1,13,2,8,15,8,8,12,12,13,15,5,3,6,8,0,1,8,13,13,11,5,6,3,7,12,9,9,1,10,5,9,15,12,1,3,0,12,6,3,15,9,14,8,4,9,15,13,11,2,6,14,13,0,10,0,14,10,15,2,11,3,5,12,12,3,9,3,11,4,14,6,9,15,3,4,12,3,12,1,10,11,1,15,9,4,8,4,5,11,7,15,10,14,6,1,14,10,13,9,4,13,15,3,12,5,4,8,15,15,1,14,15,6,1,11,4,15,8,5,6,8,2,5,6,12,3,7,8,6,9,11,5,10,11,1,7,10,11,9,10,7,15,14,8,5,3,1,6,6,0,6,5,1,10,6,15,1,8,5,3,1,4,0,13,7,9,0,3,10,0,12,13,7,4,0,3,9,5,4,1,4,1,0,12,7,13,8,15,2,14,14,9,11,7,10,2,15,11,11,6,7,12,5,1,14,10,7,12,13,13,13,2,0,12,10,11,8,3,10,0,0,2,2,7,15,1,15,10,8,15,9,15,1,8,13,7,9,15,2,5,6,7,8,9,1,6,7,9,6,9,3,0,15,2,12,15,15,3,15,10,2,14,12,8,15,15,11,8,5,13,7,10,11,8,8,6,10,10,9,2,3,13,8,10,8,3,8,1,15,8,9,14,1,12,4,1,13,8,10,10,13,15,6,14,10,3,6,8,2,15,4,13,5,15,15,15,15,13,13,7,6,6,6,13,11,2,6,3,1,6,9,3,0,13,9,12,2,1,10,3,15,10,2,7,9,1,13,14,6,12,2,7,11,1,0,14,7,11,8,13,11,3,7,7,14,8,10,10,15,12,10,10,4,11,8,3,15,11,9,11,3,12,3,3,15,10,3,14,13,1,8,12,14,14,1,10,7,10,1,9,8,7,14,15,9,14,11,8,15,12,13,11,6,13,3,11,10,15,7,13,15,13,7,1,15,1,7,14,8,2,9,10,14,1,9,14,0,10,8,2,13,3,13,15,11,13,4,1,8,14,12,15,2,4,5,14,14,10,2,12,0,13,2,10,10,7,13,1,14,4,8,2,3,9,8,7,0,7,13,13,5,4,0,13,14,10,3,12,9,12,3,8,11,6,8,6,7,3,0,13,7,3,0,2,7,4,8,10,0,0,4,7,2,6,9,11,10,10,13,7,11,15,14,11,7,12,12,11,5,13,6,14,7,4,7,5,12,14,14,10,5,9,5,7,1,12,0,5,0,6,11,3,11,14,3,8,10,2,14,0,4,10,10,14,6,1,13,8,15,0,5,6,9,15,0,3,13,11,9,12,8,3,15,1,5,7,4,11,15,10,6,12,10,4,15,8,9,10,6,14,5,10,13,7,11,5,14,6,13,14,6,14,8,4,9,6,1,8,2,3,5,5,5,14,7,2,9,5,5,4,11,8,9,14,12,3,3,0,3,5,11,12,4,7,2,14,4,4,11,4,15,15,6,1,11,15,8,1,7,4,5,8,12,9,4,3,1,11,0,6,11,6,9,9,6,11,12,2,4,7,5,12,3,5,6,12,15,10,10,1,11,0,12,2,14,10,7,8,9,5,14,1,9,14,13,10,12,5,15,13,4,12,1,1,1,11,10,12,3,2,3,10,10,0,1,1,0,5,14,10,6,10,7,5,2,0,0,10,8,14,1,3,6,0,10,14,8,5,14,13,11,6,9,3,15,1,13,8,10,2,15,15,14,0,12,15,6,6,12,1,13,3,3,7,13,5,7,10,9,9,7,0,5,12,15,4,13,15,6,14,0,0,15,13,2,12,7,10,12,8,12,1,12,8,13,2,4,10,13,7,7", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"4\", \"9\", \"15\", \"13\"], \"clip_start\": 254.0, \"clip_end\": 260.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,5,3,1,9,4,12,2,5,7,13,12,3,11,8,9,13,1,8,10,12,15,3,7,14,14,6,15,11,14,14,7,12,7,2,7,10,2,2,0,6,11,14,6,7,6,9,12,1,13,5,10,3,10,13,10,11,9,14,1,11,4,2,13,0,13,8,2,3,13,7,3,1,13,14,13,9,1,2,5,14,8,3,10,6,14,15,8,9,14,4,1,8,14,15,14,7,2,11,10,3,1,9,13,3,5,1,7,0,4,4,0,15,10,4,8,4,0,10,15,3,8,1,12,7,14,0,8,6,11,1,7,2,2,3,8,0,1,10,15,2,7,4,11,6,2,6,15,6,10,1,1,7,9,0,11,12,11,5,4,15,14,8,15,13,1,15,0,10,6,15,1,9,10,13,3,1,13,6,13,7,8,2,5,15,14,2,2,11,15,13,7,13,9,9,2,9,15,4,15,10,1,6,5,3,0,7,6,4,13,13,1,13,2,8,15,8,8,12,12,13,15,5,3,6,8,0,1,8,13,13,11,5,6,3,7,12,9,9,1,10,5,9,15,12,1,3,0,12,6,3,15,9,14,8,4,9,15,13,11,2,6,14,13,0,10,0,14,10,15,2,11,3,5,12,12,3,9,3,11,4,14,6,9,15,3,4,12,3,12,1,10,11,1,15,9,4,8,4,5,11,7,15,10,14,6,1,14,10,13,9,4,13,15,3,12,5,4,8,15,15,1,14,15,6,1,11,4,15,8,5,6,8,2,5,6,12,3,7,8,6,9,11,5,10,11,1,7,10,11,9,10,7,15,14,8,5,3,1,6,6,0,6,5,1,10,6,15,1,8,5,3,1,4,0,13,7,9,0,3,10,0,12,13,7,4,0,3,9,5,4,1,4,1,0,12,7,13,8,15,2,14,14,9,11,7,10,2,15,11,11,6,7,12,5,1,14,10,7,12,13,13,13,2,0,12,10,11,8,3,10,0,0,2,2,7,15,1,15,10,8,15,9,15,1,8,13,7,9,15,2,5,6,7,8,9,1,6,7,9,6,9,3,0,15,2,12,15,15,3,15,10,2,14,12,8,15,15,11,8,5,13,7,10,11,8,8,6,10,10,9,2,3,13,8,10,8,3,8,1,15,8,9,14,1,12,4,1,13,8,10,10,13,15,6,14,10,3,6,8,2,15,4,13,5,15,15,15,15,13,13,7,6,6,6,13,11,2,6,3,1,6,9,3,0,13,9,12,2,1,10,3,15,10,2,7,9,1,13,14,6,12,2,7,11,1,0,14,7,11,8,13,11,3,7,7,14,8,10,10,15,12,10,10,4,11,8,3,15,11,9,11,3,12,3,3,15,10,3,14,13,1,8,12,14,14,1,10,7,10,1,9,8,7,14,15,9,14,11,8,15,12,13,11,6,13,3,11,10,15,7,13,15,13,7,1,15,1,7,14,8,2,9,10,14,1,9,14,0,10,8,2,13,3,13,15,11,13,4,1,8,14,12,15,2,4,5,14,14,10,2,12,0,13,2,10,10,7,13,1,14,4,8,2,3,9,8,7,0,7,13,13,5,4,0,13,14,10,3,12,9,12,3,8,11,6,8,6,7,3,0,13,7,3,0,2,7,4,8,10,0,0,4,7,2,6,9,11,10,10,13,7,11,15,14,11,7,12,12,11,5,13,6,14,7,4,7,5,12,14,14,10,5,9,5,7,1,12,0,5,0,6,11,3,11,14,3,8,10,2,14,0,4,10,10,14,6,1,13,8,15,0,5,6,9,15,0,3,13,11,9,12,8,3,15,1,5,7,4,11,15,10,6,12,10,4,15,8,9,10,6,14,5,10,13,7,11,5,14,6,13,14,6,14,8,4,9,6,1,8,2,3,5,5,5,14,7,2,9,5,5,4,11,8,9,14,12,3,3,0,3,5,11,12,4,7,2,14,4,4,11,4,15,15,6,1,11,15,8,1,7,4,5,8,12,9,4,3,1,11,0,6,11,6,9,9,6,11,12,2,4,7,5,12,3,5,6,12,15,10,10,1,11,0,12,2,14,10,7,8,9,5,14,1,9,14,13,10,12,5,15,13,4,12,1,1,1,11,10,12,3,2,3,10,10,0,1,1,0,5,14,10,6,10,7,5,2,0,0,10,8,14,1,3,6,0,10,14,8,5,14,13,11,6,9,3,15,1,13,8,10,2,15,15,14,0,12,15,6,6,12,1,13,3,3,7,13,5,7,10,9,9,7,0,5,12,15,4,13,15,6,14,0,0,15,13,2,12,7,10,12,8,12,1,12,8,13,2,4,10,13,7,7", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"5\", \"10\"], \"clip_start\": 811.0, \"clip_end\": 815.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,5,3,1,9,4,12,2,5,7,13,12,3,11,8,9,13,1,8,10,12,15,3,7,14,14,6,15,11,14,14,7,12,7,2,7,10,2,2,0,6,11,14,6,7,6,9,12,1,13,5,10,3,10,13,10,11,9,14,1,11,4,2,13,0,13,8,2,3,13,7,3,1,13,14,13,9,1,2,5,14,8,3,10,6,14,15,8,9,14,4,1,8,14,15,14,7,2,11,10,3,1,9,13,3,5,1,7,0,4,4,0,15,10,4,8,4,0,10,15,3,8,1,12,7,14,0,8,6,11,1,7,2,2,3,8,0,1,10,15,2,7,4,11,6,2,6,15,6,10,1,1,7,9,0,11,12,11,5,4,15,14,8,15,13,1,15,0,10,6,15,1,9,10,13,3,1,13,6,13,7,8,2,5,15,14,2,2,11,15,13,7,13,9,9,2,9,15,4,15,10,1,6,5,3,0,7,6,4,13,13,1,13,2,8,15,8,8,12,12,13,15,5,3,6,8,0,1,8,13,13,11,5,6,3,7,12,9,9,1,10,5,9,15,12,1,3,0,12,6,3,15,9,14,8,4,9,15,13,11,2,6,14,13,0,10,0,14,10,15,2,11,3,5,12,12,3,9,3,11,4,14,6,9,15,3,4,12,3,12,1,10,11,1,15,9,4,8,4,5,11,7,15,10,14,6,1,14,10,13,9,4,13,15,3,12,5,4,8,15,15,1,14,15,6,1,11,4,15,8,5,6,8,2,5,6,12,3,7,8,6,9,11,5,10,11,1,7,10,11,9,10,7,15,14,8,5,3,1,6,6,0,6,5,1,10,6,15,1,8,5,3,1,4,0,13,7,9,0,3,10,0,12,13,7,4,0,3,9,5,4,1,4,1,0,12,7,13,8,15,2,14,14,9,11,7,10,2,15,11,11,6,7,12,5,1,14,10,7,12,13,13,13,2,0,12,10,11,8,3,10,0,0,2,2,7,15,1,15,10,8,15,9,15,1,8,13,7,9,15,2,5,6,7,8,9,1,6,7,9,6,9,3,0,15,2,12,15,15,3,15,10,2,14,12,8,15,15,11,8,5,13,7,10,11,8,8,6,10,10,9,2,3,13,8,10,8,3,8,1,15,8,9,14,1,12,4,1,13,8,10,10,13,15,6,14,10,3,6,8,2,15,4,13,5,15,15,15,15,13,13,7,6,6,6,13,11,2,6,3,1,6,9,3,0,13,9,12,2,1,10,3,15,10,2,7,9,1,13,14,6,12,2,7,11,1,0,14,7,11,8,13,11,3,7,7,14,8,10,10,15,12,10,10,4,11,8,3,15,11,9,11,3,12,3,3,15,10,3,14,13,1,8,12,14,14,1,10,7,10,1,9,8,7,14,15,9,14,11,8,15,12,13,11,6,13,3,11,10,15,7,13,15,13,7,1,15,1,7,14,8,2,9,10,14,1,9,14,0,10,8,2,13,3,13,15,11,13,4,1,8,14,12,15,2,4,5,14,14,10,2,12,0,13,2,10,10,7,13,1,14,4,8,2,3,9,8,7,0,7,13,13,5,4,0,13,14,10,3,12,9,12,3,8,11,6,8,6,7,3,0,13,7,3,0,2,7,4,8,10,0,0,4,7,2,6,9,11,10,10,13,7,11,15,14,11,7,12,12,11,5,13,6,14,7,4,7,5,12,14,14,10,5,9,5,7,1,12,0,5,0,6,11,3,11,14,3,8,10,2,14,0,4,10,10,14,6,1,13,8,15,0,5,6,9,15,0,3,13,11,9,12,8,3,15,1,5,7,4,11,15,10,6,12,10,4,15,8,9,10,6,14,5,10,13,7,11,5,14,6,13,14,6,14,8,4,9,6,1,8,2,3,5,5,5,14,7,2,9,5,5,4,11,8,9,14,12,3,3,0,3,5,11,12,4,7,2,14,4,4,11,4,15,15,6,1,11,15,8,1,7,4,5,8,12,9,4,3,1,11,0,6,11,6,9,9,6,11,12,2,4,7,5,12,3,5,6,12,15,10,10,1,11,0,12,2,14,10,7,8,9,5,14,1,9,14,13,10,12,5,15,13,4,12,1,1,1,11,10,12,3,2,3,10,10,0,1,1,0,5,14,10,6,10,7,5,2,0,0,10,8,14,1,3,6,0,10,14,8,5,14,13,11,6,9,3,15,1,13,8,10,2,15,15,14,0,12,15,6,6,12,1,13,3,3,7,13,5,7,10,9,9,7,0,5,12,15,4,13,15,6,14,0,0,15,13,2,12,7,10,12,8,12,1,12,8,13,2,4,10,13,7,7", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"9\", \"1\"], \"clip_start\": 237.0, \"clip_end\": 241.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,5,3,1,9,4,12,2,5,7,13,12,3,11,8,9,13,1,8,10,12,15,3,7,14,14,6,15,11,14,14,7,12,7,2,7,10,2,2,0,6,11,14,6,7,6,9,12,1,13,5,10,3,10,13,10,11,9,14,1,11,4,2,13,0,13,8,2,3,13,7,3,1,13,14,13,9,1,2,5,14,8,3,10,6,14,15,8,9,14,4,1,8,14,15,14,7,2,11,10,3,1,9,13,3,5,1,7,0,4,4,0,15,10,4,8,4,0,10,15,3,8,1,12,7,14,0,8,6,11,1,7,2,2,3,8,0,1,10,15,2,7,4,11,6,2,6,15,6,10,1,1,7,9,0,11,12,11,5,4,15,14,8,15,13,1,15,0,10,6,15,1,9,10,13,3,1,13,6,13,7,8,2,5,15,14,2,2,11,15,13,7,13,9,9,2,9,15,4,15,10,1,6,5,3,0,7,6,4,13,13,1,13,2,8,15,8,8,12,12,13,15,5,3,6,8,0,1,8,13,13,11,5,6,3,7,12,9,9,1,10,5,9,15,12,1,3,0,12,6,3,15,9,14,8,4,9,15,13,11,2,6,14,13,0,10,0,14,10,15,2,11,3,5,12,12,3,9,3,11,4,14,6,9,15,3,4,12,3,12,1,10,11,1,15,9,4,8,4,5,11,7,15,10,14,6,1,14,10,13,9,4,13,15,3,12,5,4,8,15,15,1,14,15,6,1,11,4,15,8,5,6,8,2,5,6,12,3,7,8,6,9,11,5,10,11,1,7,10,11,9,10,7,15,14,8,5,3,1,6,6,0,6,5,1,10,6,15,1,8,5,3,1,4,0,13,7,9,0,3,10,0,12,13,7,4,0,3,9,5,4,1,4,1,0,12,7,13,8,15,2,14,14,9,11,7,10,2,15,11,11,6,7,12,5,1,14,10,7,12,13,13,13,2,0,12,10,11,8,3,10,0,0,2,2,7,15,1,15,10,8,15,9,15,1,8,13,7,9,15,2,5,6,7,8,9,1,6,7,9,6,9,3,0,15,2,12,15,15,3,15,10,2,14,12,8,15,15,11,8,5,13,7,10,11,8,8,6,10,10,9,2,3,13,8,10,8,3,8,1,15,8,9,14,1,12,4,1,13,8,10,10,13,15,6,14,10,3,6,8,2,15,4,13,5,15,15,15,15,13,13,7,6,6,6,13,11,2,6,3,1,6,9,3,0,13,9,12,2,1,10,3,15,10,2,7,9,1,13,14,6,12,2,7,11,1,0,14,7,11,8,13,11,3,7,7,14,8,10,10,15,12,10,10,4,11,8,3,15,11,9,11,3,12,3,3,15,10,3,14,13,1,8,12,14,14,1,10,7,10,1,9,8,7,14,15,9,14,11,8,15,12,13,11,6,13,3,11,10,15,7,13,15,13,7,1,15,1,7,14,8,2,9,10,14,1,9,14,0,10,8,2,13,3,13,15,11,13,4,1,8,14,12,15,2,4,5,14,14,10,2,12,0,13,2,10,10,7,13,1,14,4,8,2,3,9,8,7,0,7,13,13,5,4,0,13,14,10,3,12,9,12,3,8,11,6,8,6,7,3,0,13,7,3,0,2,7,4,8,10,0,0,4,7,2,6,9,11,10,10,13,7,11,15,14,11,7,12,12,11,5,13,6,14,7,4,7,5,12,14,14,10,5,9,5,7,1,12,0,5,0,6,11,3,11,14,3,8,10,2,14,0,4,10,10,14,6,1,13,8,15,0,5,6,9,15,0,3,13,11,9,12,8,3,15,1,5,7,4,11,15,10,6,12,10,4,15,8,9,10,6,14,5,10,13,7,11,5,14,6,13,14,6,14,8,4,9,6,1,8,2,3,5,5,5,14,7,2,9,5,5,4,11,8,9,14,12,3,3,0,3,5,11,12,4,7,2,14,4,4,11,4,15,15,6,1,11,15,8,1,7,4,5,8,12,9,4,3,1,11,0,6,11,6,9,9,6,11,12,2,4,7,5,12,3,5,6,12,15,10,10,1,11,0,12,2,14,10,7,8,9,5,14,1,9,14,13,10,12,5,15,13,4,12,1,1,1,11,10,12,3,2,3,10,10,0,1,1,0,5,14,10,6,10,7,5,2,0,0,10,8,14,1,3,6,0,10,14,8,5,14,13,11,6,9,3,15,1,13,8,10,2,15,15,14,0,12,15,6,6,12,1,13,3,3,7,13,5,7,10,9,9,7,0,5,12,15,4,13,15,6,14,0,0,15,13,2,12,7,10,12,8,12,1,12,8,13,2,4,10,13,7,7", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"11\", \"6\"], \"clip_start\": 961.0, \"clip_end\": 965.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,5,3,1,9,4,12,2,5,7,13,12,3,11,8,9,13,1,8,10,12,15,3,7,14,14,6,15,11,14,14,7,12,7,2,7,10,2,2,0,6,11,14,6,7,6,9,12,1,13,5,10,3,10,13,10,11,9,14,1,11,4,2,13,0,13,8,2,3,13,7,3,1,13,14,13,9,1,2,5,14,8,3,10,6,14,15,8,9,14,4,1,8,14,15,14,7,2,11,10,3,1,9,13,3,5,1,7,0,4,4,0,15,10,4,8,4,0,10,15,3,8,1,12,7,14,0,8,6,11,1,7,2,2,3,8,0,1,10,15,2,7,4,11,6,2,6,15,6,10,1,1,7,9,0,11,12,11,5,4,15,14,8,15,13,1,15,0,10,6,15,1,9,10,13,3,1,13,6,13,7,8,2,5,15,14,2,2,11,15,13,7,13,9,9,2,9,15,4,15,10,1,6,5,3,0,7,6,4,13,13,1,13,2,8,15,8,8,12,12,13,15,5,3,6,8,0,1,8,13,13,11,5,6,3,7,12,9,9,1,10,5,9,15,12,1,3,0,12,6,3,15,9,14,8,4,9,15,13,11,2,6,14,13,0,10,0,14,10,15,2,11,3,5,12,12,3,9,3,11,4,14,6,9,15,3,4,12,3,12,1,10,11,1,15,9,4,8,4,5,11,7,15,10,14,6,1,14,10,13,9,4,13,15,3,12,5,4,8,15,15,1,14,15,6,1,11,4,15,8,5,6,8,2,5,6,12,3,7,8,6,9,11,5,10,11,1,7,10,11,9,10,7,15,14,8,5,3,1,6,6,0,6,5,1,10,6,15,1,8,5,3,1,4,0,13,7,9,0,3,10,0,12,13,7,4,0,3,9,5,4,1,4,1,0,12,7,13,8,15,2,14,14,9,11,7,10,2,15,11,11,6,7,12,5,1,14,10,7,12,13,13,13,2,0,12,10,11,8,3,10,0,0,2,2,7,15,1,15,10,8,15,9,15,1,8,13,7,9,15,2,5,6,7,8,9,1,6,7,9,6,9,3,0,15,2,12,15,15,3,15,10,2,14,12,8,15,15,11,8,5,13,7,10,11,8,8,6,10,10,9,2,3,13,8,10,8,3,8,1,15,8,9,14,1,12,4,1,13,8,10,10,13,15,6,14,10,3,6,8,2,15,4,13,5,15,15,15,15,13,13,7,6,6,6,13,11,2,6,3,1,6,9,3,0,13,9,12,2,1,10,3,15,10,2,7,9,1,13,14,6,12,2,7,11,1,0,14,7,11,8,13,11,3,7,7,14,8,10,10,15,12,10,10,4,11,8,3,15,11,9,11,3,12,3,3,15,10,3,14,13,1,8,12,14,14,1,10,7,10,1,9,8,7,14,15,9,14,11,8,15,12,13,11,6,13,3,11,10,15,7,13,15,13,7,1,15,1,7,14,8,2,9,10,14,1,9,14,0,10,8,2,13,3,13,15,11,13,4,1,8,14,12,15,2,4,5,14,14,10,2,12,0,13,2,10,10,7,13,1,14,4,8,2,3,9,8,7,0,7,13,13,5,4,0,13,14,10,3,12,9,12,3,8,11,6,8,6,7,3,0,13,7,3,0,2,7,4,8,10,0,0,4,7,2,6,9,11,10,10,13,7,11,15,14,11,7,12,12,11,5,13,6,14,7,4,7,5,12,14,14,10,5,9,5,7,1,12,0,5,0,6,11,3,11,14,3,8,10,2,14,0,4,10,10,14,6,1,13,8,15,0,5,6,9,15,0,3,13,11,9,12,8,3,15,1,5,7,4,11,15,10,6,12,10,4,15,8,9,10,6,14,5,10,13,7,11,5,14,6,13,14,6,14,8,4,9,6,1,8,2,3,5,5,5,14,7,2,9,5,5,4,11,8,9,14,12,3,3,0,3,5,11,12,4,7,2,14,4,4,11,4,15,15,6,1,11,15,8,1,7,4,5,8,12,9,4,3,1,11,0,6,11,6,9,9,6,11,12,2,4,7,5,12,3,5,6,12,15,10,10,1,11,0,12,2,14,10,7,8,9,5,14,1,9,14,13,10,12,5,15,13,4,12,1,1,1,11,10,12,3,2,3,10,10,0,1,1,0,5,14,10,6,10,7,5,2,0,0,10,8,14,1,3,6,0,10,14,8,5,14,13,11,6,9,3,15,1,13,8,10,2,15,15,14,0,12,15,6,6,12,1,13,3,3,7,13,5,7,10,9,9,7,0,5,12,15,4,13,15,6,14,0,0,15,13,2,12,7,10,12,8,12,1,12,8,13,2,4,10,13,7,7", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 68.0, \"clip_end\": 74.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,5,3,1,9,4,12,2,5,7,13,12,3,11,8,9,13,1,8,10,12,15,3,7,14,14,6,15,11,14,14,7,12,7,2,7,10,2,2,0,6,11,14,6,7,6,9,12,1,13,5,10,3,10,13,10,11,9,14,1,11,4,2,13,0,13,8,2,3,13,7,3,1,13,14,13,9,1,2,5,14,8,3,10,6,14,15,8,9,14,4,1,8,14,15,14,7,2,11,10,3,1,9,13,3,5,1,7,0,4,4,0,15,10,4,8,4,0,10,15,3,8,1,12,7,14,0,8,6,11,1,7,2,2,3,8,0,1,10,15,2,7,4,11,6,2,6,15,6,10,1,1,7,9,0,11,12,11,5,4,15,14,8,15,13,1,15,0,10,6,15,1,9,10,13,3,1,13,6,13,7,8,2,5,15,14,2,2,11,15,13,7,13,9,9,2,9,15,4,15,10,1,6,5,3,0,7,6,4,13,13,1,13,2,8,15,8,8,12,12,13,15,5,3,6,8,0,1,8,13,13,11,5,6,3,7,12,9,9,1,10,5,9,15,12,1,3,0,12,6,3,15,9,14,8,4,9,15,13,11,2,6,14,13,0,10,0,14,10,15,2,11,3,5,12,12,3,9,3,11,4,14,6,9,15,3,4,12,3,12,1,10,11,1,15,9,4,8,4,5,11,7,15,10,14,6,1,14,10,13,9,4,13,15,3,12,5,4,8,15,15,1,14,15,6,1,11,4,15,8,5,6,8,2,5,6,12,3,7,8,6,9,11,5,10,11,1,7,10,11,9,10,7,15,14,8,5,3,1,6,6,0,6,5,1,10,6,15,1,8,5,3,1,4,0,13,7,9,0,3,10,0,12,13,7,4,0,3,9,5,4,1,4,1,0,12,7,13,8,15,2,14,14,9,11,7,10,2,15,11,11,6,7,12,5,1,14,10,7,12,13,13,13,2,0,12,10,11,8,3,10,0,0,2,2,7,15,1,15,10,8,15,9,15,1,8,13,7,9,15,2,5,6,7,8,9,1,6,7,9,6,9,3,0,15,2,12,15,15,3,15,10,2,14,12,8,15,15,11,8,5,13,7,10,11,8,8,6,10,10,9,2,3,13,8,10,8,3,8,1,15,8,9,14,1,12,4,1,13,8,10,10,13,15,6,14,10,3,6,8,2,15,4,13,5,15,15,15,15,13,13,7,6,6,6,13,11,2,6,3,1,6,9,3,0,13,9,12,2,1,10,3,15,10,2,7,9,1,13,14,6,12,2,7,11,1,0,14,7,11,8,13,11,3,7,7,14,8,10,10,15,12,10,10,4,11,8,3,15,11,9,11,3,12,3,3,15,10,3,14,13,1,8,12,14,14,1,10,7,10,1,9,8,7,14,15,9,14,11,8,15,12,13,11,6,13,3,11,10,15,7,13,15,13,7,1,15,1,7,14,8,2,9,10,14,1,9,14,0,10,8,2,13,3,13,15,11,13,4,1,8,14,12,15,2,4,5,14,14,10,2,12,0,13,2,10,10,7,13,1,14,4,8,2,3,9,8,7,0,7,13,13,5,4,0,13,14,10,3,12,9,12,3,8,11,6,8,6,7,3,0,13,7,3,0,2,7,4,8,10,0,0,4,7,2,6,9,11,10,10,13,7,11,15,14,11,7,12,12,11,5,13,6,14,7,4,7,5,12,14,14,10,5,9,5,7,1,12,0,5,0,6,11,3,11,14,3,8,10,2,14,0,4,10,10,14,6,1,13,8,15,0,5,6,9,15,0,3,13,11,9,12,8,3,15,1,5,7,4,11,15,10,6,12,10,4,15,8,9,10,6,14,5,10,13,7,11,5,14,6,13,14,6,14,8,4,9,6,1,8,2,3,5,5,5,14,7,2,9,5,5,4,11,8,9,14,12,3,3,0,3,5,11,12,4,7,2,14,4,4,11,4,15,15,6,1,11,15,8,1,7,4,5,8,12,9,4,3,1,11,0,6,11,6,9,9,6,11,12,2,4,7,5,12,3,5,6,12,15,10,10,1,11,0,12,2,14,10,7,8,9,5,14,1,9,14,13,10,12,5,15,13,4,12,1,1,1,11,10,12,3,2,3,10,10,0,1,1,0,5,14,10,6,10,7,5,2,0,0,10,8,14,1,3,6,0,10,14,8,5,14,13,11,6,9,3,15,1,13,8,10,2,15,15,14,0,12,15,6,6,12,1,13,3,3,7,13,5,7,10,9,9,7,0,5,12,15,4,13,15,6,14,0,0,15,13,2,12,7,10,12,8,12,1,12,8,13,2,4,10,13,7,7", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"13\", \"10\"], \"clip_start\": 53.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,5,3,1,9,4,12,2,5,7,13,12,3,11,8,9,13,1,8,10,12,15,3,7,14,14,6,15,11,14,14,7,12,7,2,7,10,2,2,0,6,11,14,6,7,6,9,12,1,13,5,10,3,10,13,10,11,9,14,1,11,4,2,13,0,13,8,2,3,13,7,3,1,13,14,13,9,1,2,5,14,8,3,10,6,14,15,8,9,14,4,1,8,14,15,14,7,2,11,10,3,1,9,13,3,5,1,7,0,4,4,0,15,10,4,8,4,0,10,15,3,8,1,12,7,14,0,8,6,11,1,7,2,2,3,8,0,1,10,15,2,7,4,11,6,2,6,15,6,10,1,1,7,9,0,11,12,11,5,4,15,14,8,15,13,1,15,0,10,6,15,1,9,10,13,3,1,13,6,13,7,8,2,5,15,14,2,2,11,15,13,7,13,9,9,2,9,15,4,15,10,1,6,5,3,0,7,6,4,13,13,1,13,2,8,15,8,8,12,12,13,15,5,3,6,8,0,1,8,13,13,11,5,6,3,7,12,9,9,1,10,5,9,15,12,1,3,0,12,6,3,15,9,14,8,4,9,15,13,11,2,6,14,13,0,10,0,14,10,15,2,11,3,5,12,12,3,9,3,11,4,14,6,9,15,3,4,12,3,12,1,10,11,1,15,9,4,8,4,5,11,7,15,10,14,6,1,14,10,13,9,4,13,15,3,12,5,4,8,15,15,1,14,15,6,1,11,4,15,8,5,6,8,2,5,6,12,3,7,8,6,9,11,5,10,11,1,7,10,11,9,10,7,15,14,8,5,3,1,6,6,0,6,5,1,10,6,15,1,8,5,3,1,4,0,13,7,9,0,3,10,0,12,13,7,4,0,3,9,5,4,1,4,1,0,12,7,13,8,15,2,14,14,9,11,7,10,2,15,11,11,6,7,12,5,1,14,10,7,12,13,13,13,2,0,12,10,11,8,3,10,0,0,2,2,7,15,1,15,10,8,15,9,15,1,8,13,7,9,15,2,5,6,7,8,9,1,6,7,9,6,9,3,0,15,2,12,15,15,3,15,10,2,14,12,8,15,15,11,8,5,13,7,10,11,8,8,6,10,10,9,2,3,13,8,10,8,3,8,1,15,8,9,14,1,12,4,1,13,8,10,10,13,15,6,14,10,3,6,8,2,15,4,13,5,15,15,15,15,13,13,7,6,6,6,13,11,2,6,3,1,6,9,3,0,13,9,12,2,1,10,3,15,10,2,7,9,1,13,14,6,12,2,7,11,1,0,14,7,11,8,13,11,3,7,7,14,8,10,10,15,12,10,10,4,11,8,3,15,11,9,11,3,12,3,3,15,10,3,14,13,1,8,12,14,14,1,10,7,10,1,9,8,7,14,15,9,14,11,8,15,12,13,11,6,13,3,11,10,15,7,13,15,13,7,1,15,1,7,14,8,2,9,10,14,1,9,14,0,10,8,2,13,3,13,15,11,13,4,1,8,14,12,15,2,4,5,14,14,10,2,12,0,13,2,10,10,7,13,1,14,4,8,2,3,9,8,7,0,7,13,13,5,4,0,13,14,10,3,12,9,12,3,8,11,6,8,6,7,3,0,13,7,3,0,2,7,4,8,10,0,0,4,7,2,6,9,11,10,10,13,7,11,15,14,11,7,12,12,11,5,13,6,14,7,4,7,5,12,14,14,10,5,9,5,7,1,12,0,5,0,6,11,3,11,14,3,8,10,2,14,0,4,10,10,14,6,1,13,8,15,0,5,6,9,15,0,3,13,11,9,12,8,3,15,1,5,7,4,11,15,10,6,12,10,4,15,8,9,10,6,14,5,10,13,7,11,5,14,6,13,14,6,14,8,4,9,6,1,8,2,3,5,5,5,14,7,2,9,5,5,4,11,8,9,14,12,3,3,0,3,5,11,12,4,7,2,14,4,4,11,4,15,15,6,1,11,15,8,1,7,4,5,8,12,9,4,3,1,11,0,6,11,6,9,9,6,11,12,2,4,7,5,12,3,5,6,12,15,10,10,1,11,0,12,2,14,10,7,8,9,5,14,1,9,14,13,10,12,5,15,13,4,12,1,1,1,11,10,12,3,2,3,10,10,0,1,1,0,5,14,10,6,10,7,5,2,0,0,10,8,14,1,3,6,0,10,14,8,5,14,13,11,6,9,3,15,1,13,8,10,2,15,15,14,0,12,15,6,6,12,1,13,3,3,7,13,5,7,10,9,9,7,0,5,12,15,4,13,15,6,14,0,0,15,13,2,12,7,10,12,8,12,1,12,8,13,2,4,10,13,7,7", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 1010.0, \"clip_end\": 1013.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,5,3,1,9,4,12,2,5,7,13,12,3,11,8,9,13,1,8,10,12,15,3,7,14,14,6,15,11,14,14,7,12,7,2,7,10,2,2,0,6,11,14,6,7,6,9,12,1,13,5,10,3,10,13,10,11,9,14,1,11,4,2,13,0,13,8,2,3,13,7,3,1,13,14,13,9,1,2,5,14,8,3,10,6,14,15,8,9,14,4,1,8,14,15,14,7,2,11,10,3,1,9,13,3,5,1,7,0,4,4,0,15,10,4,8,4,0,10,15,3,8,1,12,7,14,0,8,6,11,1,7,2,2,3,8,0,1,10,15,2,7,4,11,6,2,6,15,6,10,1,1,7,9,0,11,12,11,5,4,15,14,8,15,13,1,15,0,10,6,15,1,9,10,13,3,1,13,6,13,7,8,2,5,15,14,2,2,11,15,13,7,13,9,9,2,9,15,4,15,10,1,6,5,3,0,7,6,4,13,13,1,13,2,8,15,8,8,12,12,13,15,5,3,6,8,0,1,8,13,13,11,5,6,3,7,12,9,9,1,10,5,9,15,12,1,3,0,12,6,3,15,9,14,8,4,9,15,13,11,2,6,14,13,0,10,0,14,10,15,2,11,3,5,12,12,3,9,3,11,4,14,6,9,15,3,4,12,3,12,1,10,11,1,15,9,4,8,4,5,11,7,15,10,14,6,1,14,10,13,9,4,13,15,3,12,5,4,8,15,15,1,14,15,6,1,11,4,15,8,5,6,8,2,5,6,12,3,7,8,6,9,11,5,10,11,1,7,10,11,9,10,7,15,14,8,5,3,1,6,6,0,6,5,1,10,6,15,1,8,5,3,1,4,0,13,7,9,0,3,10,0,12,13,7,4,0,3,9,5,4,1,4,1,0,12,7,13,8,15,2,14,14,9,11,7,10,2,15,11,11,6,7,12,5,1,14,10,7,12,13,13,13,2,0,12,10,11,8,3,10,0,0,2,2,7,15,1,15,10,8,15,9,15,1,8,13,7,9,15,2,5,6,7,8,9,1,6,7,9,6,9,3,0,15,2,12,15,15,3,15,10,2,14,12,8,15,15,11,8,5,13,7,10,11,8,8,6,10,10,9,2,3,13,8,10,8,3,8,1,15,8,9,14,1,12,4,1,13,8,10,10,13,15,6,14,10,3,6,8,2,15,4,13,5,15,15,15,15,13,13,7,6,6,6,13,11,2,6,3,1,6,9,3,0,13,9,12,2,1,10,3,15,10,2,7,9,1,13,14,6,12,2,7,11,1,0,14,7,11,8,13,11,3,7,7,14,8,10,10,15,12,10,10,4,11,8,3,15,11,9,11,3,12,3,3,15,10,3,14,13,1,8,12,14,14,1,10,7,10,1,9,8,7,14,15,9,14,11,8,15,12,13,11,6,13,3,11,10,15,7,13,15,13,7,1,15,1,7,14,8,2,9,10,14,1,9,14,0,10,8,2,13,3,13,15,11,13,4,1,8,14,12,15,2,4,5,14,14,10,2,12,0,13,2,10,10,7,13,1,14,4,8,2,3,9,8,7,0,7,13,13,5,4,0,13,14,10,3,12,9,12,3,8,11,6,8,6,7,3,0,13,7,3,0,2,7,4,8,10,0,0,4,7,2,6,9,11,10,10,13,7,11,15,14,11,7,12,12,11,5,13,6,14,7,4,7,5,12,14,14,10,5,9,5,7,1,12,0,5,0,6,11,3,11,14,3,8,10,2,14,0,4,10,10,14,6,1,13,8,15,0,5,6,9,15,0,3,13,11,9,12,8,3,15,1,5,7,4,11,15,10,6,12,10,4,15,8,9,10,6,14,5,10,13,7,11,5,14,6,13,14,6,14,8,4,9,6,1,8,2,3,5,5,5,14,7,2,9,5,5,4,11,8,9,14,12,3,3,0,3,5,11,12,4,7,2,14,4,4,11,4,15,15,6,1,11,15,8,1,7,4,5,8,12,9,4,3,1,11,0,6,11,6,9,9,6,11,12,2,4,7,5,12,3,5,6,12,15,10,10,1,11,0,12,2,14,10,7,8,9,5,14,1,9,14,13,10,12,5,15,13,4,12,1,1,1,11,10,12,3,2,3,10,10,0,1,1,0,5,14,10,6,10,7,5,2,0,0,10,8,14,1,3,6,0,10,14,8,5,14,13,11,6,9,3,15,1,13,8,10,2,15,15,14,0,12,15,6,6,12,1,13,3,3,7,13,5,7,10,9,9,7,0,5,12,15,4,13,15,6,14,0,0,15,13,2,12,7,10,12,8,12,1,12,8,13,2,4,10,13,7,7", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"0\", \"5\"], \"clip_start\": 992.0, \"clip_end\": 996.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,5,3,1,9,4,12,2,5,7,13,12,3,11,8,9,13,1,8,10,12,15,3,7,14,14,6,15,11,14,14,7,12,7,2,7,10,2,2,0,6,11,14,6,7,6,9,12,1,13,5,10,3,10,13,10,11,9,14,1,11,4,2,13,0,13,8,2,3,13,7,3,1,13,14,13,9,1,2,5,14,8,3,10,6,14,15,8,9,14,4,1,8,14,15,14,7,2,11,10,3,1,9,13,3,5,1,7,0,4,4,0,15,10,4,8,4,0,10,15,3,8,1,12,7,14,0,8,6,11,1,7,2,2,3,8,0,1,10,15,2,7,4,11,6,2,6,15,6,10,1,1,7,9,0,11,12,11,5,4,15,14,8,15,13,1,15,0,10,6,15,1,9,10,13,3,1,13,6,13,7,8,2,5,15,14,2,2,11,15,13,7,13,9,9,2,9,15,4,15,10,1,6,5,3,0,7,6,4,13,13,1,13,2,8,15,8,8,12,12,13,15,5,3,6,8,0,1,8,13,13,11,5,6,3,7,12,9,9,1,10,5,9,15,12,1,3,0,12,6,3,15,9,14,8,4,9,15,13,11,2,6,14,13,0,10,0,14,10,15,2,11,3,5,12,12,3,9,3,11,4,14,6,9,15,3,4,12,3,12,1,10,11,1,15,9,4,8,4,5,11,7,15,10,14,6,1,14,10,13,9,4,13,15,3,12,5,4,8,15,15,1,14,15,6,1,11,4,15,8,5,6,8,2,5,6,12,3,7,8,6,9,11,5,10,11,1,7,10,11,9,10,7,15,14,8,5,3,1,6,6,0,6,5,1,10,6,15,1,8,5,3,1,4,0,13,7,9,0,3,10,0,12,13,7,4,0,3,9,5,4,1,4,1,0,12,7,13,8,15,2,14,14,9,11,7,10,2,15,11,11,6,7,12,5,1,14,10,7,12,13,13,13,2,0,12,10,11,8,3,10,0,0,2,2,7,15,1,15,10,8,15,9,15,1,8,13,7,9,15,2,5,6,7,8,9,1,6,7,9,6,9,3,0,15,2,12,15,15,3,15,10,2,14,12,8,15,15,11,8,5,13,7,10,11,8,8,6,10,10,9,2,3,13,8,10,8,3,8,1,15,8,9,14,1,12,4,1,13,8,10,10,13,15,6,14,10,3,6,8,2,15,4,13,5,15,15,15,15,13,13,7,6,6,6,13,11,2,6,3,1,6,9,3,0,13,9,12,2,1,10,3,15,10,2,7,9,1,13,14,6,12,2,7,11,1,0,14,7,11,8,13,11,3,7,7,14,8,10,10,15,12,10,10,4,11,8,3,15,11,9,11,3,12,3,3,15,10,3,14,13,1,8,12,14,14,1,10,7,10,1,9,8,7,14,15,9,14,11,8,15,12,13,11,6,13,3,11,10,15,7,13,15,13,7,1,15,1,7,14,8,2,9,10,14,1,9,14,0,10,8,2,13,3,13,15,11,13,4,1,8,14,12,15,2,4,5,14,14,10,2,12,0,13,2,10,10,7,13,1,14,4,8,2,3,9,8,7,0,7,13,13,5,4,0,13,14,10,3,12,9,12,3,8,11,6,8,6,7,3,0,13,7,3,0,2,7,4,8,10,0,0,4,7,2,6,9,11,10,10,13,7,11,15,14,11,7,12,12,11,5,13,6,14,7,4,7,5,12,14,14,10,5,9,5,7,1,12,0,5,0,6,11,3,11,14,3,8,10,2,14,0,4,10,10,14,6,1,13,8,15,0,5,6,9,15,0,3,13,11,9,12,8,3,15,1,5,7,4,11,15,10,6,12,10,4,15,8,9,10,6,14,5,10,13,7,11,5,14,6,13,14,6,14,8,4,9,6,1,8,2,3,5,5,5,14,7,2,9,5,5,4,11,8,9,14,12,3,3,0,3,5,11,12,4,7,2,14,4,4,11,4,15,15,6,1,11,15,8,1,7,4,5,8,12,9,4,3,1,11,0,6,11,6,9,9,6,11,12,2,4,7,5,12,3,5,6,12,15,10,10,1,11,0,12,2,14,10,7,8,9,5,14,1,9,14,13,10,12,5,15,13,4,12,1,1,1,11,10,12,3,2,3,10,10,0,1,1,0,5,14,10,6,10,7,5,2,0,0,10,8,14,1,3,6,0,10,14,8,5,14,13,11,6,9,3,15,1,13,8,10,2,15,15,14,0,12,15,6,6,12,1,13,3,3,7,13,5,7,10,9,9,7,0,5,12,15,4,13,15,6,14,0,0,15,13,2,12,7,10,12,8,12,1,12,8,13,2,4,10,13,7,7", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 321.0, \"clip_end\": 327.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,9,5,3,1,9,4,12,2,5,7,13,12,3,11,8,9,13,1,8,10,12,15,3,7,14,14,6,15,11,14,14,7,12,7,2,7,10,2,2,0,6,11,14,6,7,6,9,12,1,13,5,10,3,10,13,10,11,9,14,1,11,4,2,13,0,13,8,2,3,13,7,3,1,13,14,13,9,1,2,5,14,8,3,10,6,14,15,8,9,14,4,1,8,14,15,14,7,2,11,10,3,1,9,13,3,5,1,7,0,4,4,0,15,10,4,8,4,0,10,15,3,8,1,12,7,14,0,8,6,11,1,7,2,2,3,8,0,1,10,15,2,7,4,11,6,2,6,15,6,10,1,1,7,9,0,11,12,11,5,4,15,14,8,15,13,1,15,0,10,6,15,1,9,10,13,3,1,13,6,13,7,8,2,5,15,14,2,2,11,15,13,7,13,9,9,2,9,15,4,15,10,1,6,5,3,0,7,6,4,13,13,1,13,2,8,15,8,8,12,12,13,15,5,3,6,8,0,1,8,13,13,11,5,6,3,7,12,9,9,1,10,5,9,15,12,1,3,0,12,6,3,15,9,14,8,4,9,15,13,11,2,6,14,13,0,10,0,14,10,15,2,11,3,5,12,12,3,9,3,11,4,14,6,9,15,3,4,12,3,12,1,10,11,1,15,9,4,8,4,5,11,7,15,10,14,6,1,14,10,13,9,4,13,15,3,12,5,4,8,15,15,1,14,15,6,1,11,4,15,8,5,6,8,2,5,6,12,3,7,8,6,9,11,5,10,11,1,7,10,11,9,10,7,15,14,8,5,3,1,6,6,0,6,5,1,10,6,15,1,8,5,3,1,4,0,13,7,9,0,3,10,0,12,13,7,4,0,3,9,5,4,1,4,1,0,12,7,13,8,15,2,14,14,9,11,7,10,2,15,11,11,6,7,12,5,1,14,10,7,12,13,13,13,2,0,12,10,11,8,3,10,0,0,2,2,7,15,1,15,10,8,15,9,15,1,8,13,7,9,15,2,5,6,7,8,9,1,6,7,9,6,9,3,0,15,2,12,15,15,3,15,10,2,14,12,8,15,15,11,8,5,13,7,10,11,8,8,6,10,10,9,2,3,13,8,10,8,3,8,1,15,8,9,14,1,12,4,1,13,8,10,10,13,15,6,14,10,3,6,8,2,15,4,13,5,15,15,15,15,13,13,7,6,6,6,13,11,2,6,3,1,6,9,3,0,13,9,12,2,1,10,3,15,10,2,7,9,1,13,14,6,12,2,7,11,1,0,14,7,11,8,13,11,3,7,7,14,8,10,10,15,12,10,10,4,11,8,3,15,11,9,11,3,12,3,3,15,10,3,14,13,1,8,12,14,14,1,10,7,10,1,9,8,7,14,15,9,14,11,8,15,12,13,11,6,13,3,11,10,15,7,13,15,13,7,1,15,1,7,14,8,2,9,10,14,1,9,14,0,10,8,2,13,3,13,15,11,13,4,1,8,14,12,15,2,4,5,14,14,10,2,12,0,13,2,10,10,7,13,1,14,4,8,2,3,9,8,7,0,7,13,13,5,4,0,13,14,10,3,12,9,12,3,8,11,6,8,6,7,3,0,13,7,3,0,2,7,4,8,10,0,0,4,7,2,6,9,11,10,10,13,7,11,15,14,11,7,12,12,11,5,13,6,14,7,4,7,5,12,14,14,10,5,9,5,7,1,12,0,5,0,6,11,3,11,14,3,8,10,2,14,0,4,10,10,14,6,1,13,8,15,0,5,6,9,15,0,3,13,11,9,12,8,3,15,1,5,7,4,11,15,10,6,12,10,4,15,8,9,10,6,14,5,10,13,7,11,5,14,6,13,14,6,14,8,4,9,6,1,8,2,3,5,5,5,14,7,2,9,5,5,4,11,8,9,14,12,3,3,0,3,5,11,12,4,7,2,14,4,4,11,4,15,15,6,1,11,15,8,1,7,4,5,8,12,9,4,3,1,11,0,6,11,6,9,9,6,11,12,2,4,7,5,12,3,5,6,12,15,10,10,1,11,0,12,2,14,10,7,8,9,5,14,1,9,14,13,10,12,5,15,13,4,12,1,1,1,11,10,12,3,2,3,10,10,0,1,1,0,5,14,10,6,10,7,5,2,0,0,10,8,14,1,3,6,0,10,14,8,5,14,13,11,6,9,3,15,1,13,8,10,2,15,15,14,0,12,15,6,6,12,1,13,3,3,7,13,5,7,10,9,9,7,0,5,12,15,4,13,15,6,14,0,0,15,13,2,12,7,10,12,8,12,1,12,8,13,2,4,10,13,7,7", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"15\", \"1\", \"5\", \"12\", \"15\"], \"clip_start\": 443.0, \"clip_end\": 449.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,7,2,12,2,1,2,0,7,9,1,7,5,12,10,5,4,14,9,13,9,1,6,4,4,14,1,2,7,14,6,14,9,6,15,13,3,6,4,7,8,11,1,7,13,9,2,1,2,3,1,13,13,7,8,14,14,11,8,0,5,11,4,11,9,0,3,7,14,11,5,13,7,7,11,8,5,11,4,7,0,3,14,3,1,14,1,15,12,12,7,0,13,13,12,10,1,0,15,12,7,1,5,11,10,11,5,7,10,2,11,12,11,13,5,9,10,0,1,2,1,1,4,1,7,10,1,9,7,1,11,7,1,6,9,13,4,5,12,4,10,1,5,13,0,12,2,12,11,4,2,7,4,14,10,10,7,11,13,12,4,8,0,5,11,12,13,2,7,11,15,13,0,14,14,5,12,2,0,14,11,8,0,14,6,8,15,0,12,9,2,12,9,4,1,1,8,9,14,3,2,8,9,15,5,11,5,14,11,3,14,11,11,12,7,4,12,4,14,7,5,9,10,9,9,8,14,0,5,12,2,5,14,5,0,3,10,12,9,1,7,0,4,3,7,10,12,2,12,9,14,4,1,15,12,15,4,7,4,10,10,14,1,15,1,4,1,14,13,4,4,15,12,6,2,14,9,3,7,3,6,8,7,9,9,8,4,3,2,1,14,5,6,7,5,8,7,10,4,5,5,11,7,4,6,14,8,8,6,9,13,3,7,0,6,10,9,14,0,4,11,11,1,8,7,7,12,15,0,5,7,1,6,11,5,13,13,1,10,0,7,8,0,4,14,1,9,9,10,14,6,10,3,15,12,6,6,0,7,3,5,0,7,11,7,12,7,0,14,9,5,13,10,10,9,2,13,1,10,7,1,13,3,1,10,2,9,8,3,6,9,8,1,13,12,1,12,15,10,9,0,14,15,0,6,13,0,6,2,2,9,2,4,0,2,12,15,14,5,1,15,2,2,1,5,0,2,15,12,7,6,2,2,9,15,15,2,0,8,4,12,8,9,15,1,5,12,15,4,7,11,10,3,13,3,7,7,2,11,9,2,5,5,15,10,3,10,9,5,1,9,8,2,14,0,0,5,7,9,3,0,14,9,11,3,12,15,1,1,0,13,1,6,5,8,12,14,4,0,2,2,7,13,9,4,0,15,12,3,14,5,12,12,8,4,13,9,8,14,10,8,12,14,13,12,5,4,15,5,6,7,1,8,9,10,2,1,5,7,6,12,5,0,3,11,4,6,4,8,6,0,1,13,4,10,9,2,13,14,11,8,0,15,6,7,11,5,0,11,6,6,13,0,0,15,13,9,0,5,15,9,11,6,14,8,4,5,9,4,2,8,5,1,4,11,15,13,4,3,10,3,6,5,12,10,4,7,14,6,0,8,3,0,10,11,1,12,2,8,2,11,9,1,4,14,12,1,6,4,12,5,13,14,15,4,4,11,6,9,4,3,11,6,1,3,11,8,2,1,1,12,7,13,12,8,3,9,1,5,2,5,2,3,4,3,7,6,0,1,13,1,9,13,13,12,1,3,13,11,12,5,1,15,0,11,12,15,15,14,14,15,10,6,0,6,0,1,10,0,13,1,8,1,6,15,7,0,10,2,1,9,3,15,15,11,13,12,0,6,11,9,4,1,7,15,9,14,15,10,3,13,7,14,3,11,4,8,14,6,13,8,0,0,4,6,7,15,7,11,8,5,10,12,3,4,9,2,8,1,5,3,15,15,5,10,7,1,1,10,12,2,12,10,3,14,0,5,12,9,12,9,11,10,15,3,14,8,11,9,14,7,6,2,15,14,10,14,12,8,11,1,9,9,13,1,3,0,15,4,15,6,12,13,3,7,6,2,5,6,0,3,1,11,6,1,9,1,6,15,7,6,7,9,5,4,12,15,12,3,15,11,1,8,10,2,13,12,15,3,1,8,1,14,10,7,3,15,10,9,14,11,13,7,12,12,5,11,6,2,8,11,12,12,9,5,14,14,9,13,6,10,1,13,3,4,15,7,5,14,6,4,5,2,3,8,11,0,3,10,5,9,2,1,5,5,9,13,5,14,5,12,14,1,15,12,8,5,11,15,2,13,5,9,7,7,11,0,8,13,9,1,15,1,8,13,4,4,11,13,11,8,10,3,11,7,7,2,0,13,7,8,8,15,7,10,2,6,1,6,3,7,8,2,8,2,4,2,1,11,8,13,3,3,2,10,8,5,5,3,5,10,5,3,13,8,9,2,6,2,3,0,11,11,11,2,3,3,12,12,0,7,15,2,6,8,9,15,3,13,13,12,7,13,10,12,11,9,0,8,7,8,0,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"11\", \"10\", \"11\"], \"clip_start\": 103.0, \"clip_end\": 107.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,7,2,12,2,1,2,0,7,9,1,7,5,12,10,5,4,14,9,13,9,1,6,4,4,14,1,2,7,14,6,14,9,6,15,13,3,6,4,7,8,11,1,7,13,9,2,1,2,3,1,13,13,7,8,14,14,11,8,0,5,11,4,11,9,0,3,7,14,11,5,13,7,7,11,8,5,11,4,7,0,3,14,3,1,14,1,15,12,12,7,0,13,13,12,10,1,0,15,12,7,1,5,11,10,11,5,7,10,2,11,12,11,13,5,9,10,0,1,2,1,1,4,1,7,10,1,9,7,1,11,7,1,6,9,13,4,5,12,4,10,1,5,13,0,12,2,12,11,4,2,7,4,14,10,10,7,11,13,12,4,8,0,5,11,12,13,2,7,11,15,13,0,14,14,5,12,2,0,14,11,8,0,14,6,8,15,0,12,9,2,12,9,4,1,1,8,9,14,3,2,8,9,15,5,11,5,14,11,3,14,11,11,12,7,4,12,4,14,7,5,9,10,9,9,8,14,0,5,12,2,5,14,5,0,3,10,12,9,1,7,0,4,3,7,10,12,2,12,9,14,4,1,15,12,15,4,7,4,10,10,14,1,15,1,4,1,14,13,4,4,15,12,6,2,14,9,3,7,3,6,8,7,9,9,8,4,3,2,1,14,5,6,7,5,8,7,10,4,5,5,11,7,4,6,14,8,8,6,9,13,3,7,0,6,10,9,14,0,4,11,11,1,8,7,7,12,15,0,5,7,1,6,11,5,13,13,1,10,0,7,8,0,4,14,1,9,9,10,14,6,10,3,15,12,6,6,0,7,3,5,0,7,11,7,12,7,0,14,9,5,13,10,10,9,2,13,1,10,7,1,13,3,1,10,2,9,8,3,6,9,8,1,13,12,1,12,15,10,9,0,14,15,0,6,13,0,6,2,2,9,2,4,0,2,12,15,14,5,1,15,2,2,1,5,0,2,15,12,7,6,2,2,9,15,15,2,0,8,4,12,8,9,15,1,5,12,15,4,7,11,10,3,13,3,7,7,2,11,9,2,5,5,15,10,3,10,9,5,1,9,8,2,14,0,0,5,7,9,3,0,14,9,11,3,12,15,1,1,0,13,1,6,5,8,12,14,4,0,2,2,7,13,9,4,0,15,12,3,14,5,12,12,8,4,13,9,8,14,10,8,12,14,13,12,5,4,15,5,6,7,1,8,9,10,2,1,5,7,6,12,5,0,3,11,4,6,4,8,6,0,1,13,4,10,9,2,13,14,11,8,0,15,6,7,11,5,0,11,6,6,13,0,0,15,13,9,0,5,15,9,11,6,14,8,4,5,9,4,2,8,5,1,4,11,15,13,4,3,10,3,6,5,12,10,4,7,14,6,0,8,3,0,10,11,1,12,2,8,2,11,9,1,4,14,12,1,6,4,12,5,13,14,15,4,4,11,6,9,4,3,11,6,1,3,11,8,2,1,1,12,7,13,12,8,3,9,1,5,2,5,2,3,4,3,7,6,0,1,13,1,9,13,13,12,1,3,13,11,12,5,1,15,0,11,12,15,15,14,14,15,10,6,0,6,0,1,10,0,13,1,8,1,6,15,7,0,10,2,1,9,3,15,15,11,13,12,0,6,11,9,4,1,7,15,9,14,15,10,3,13,7,14,3,11,4,8,14,6,13,8,0,0,4,6,7,15,7,11,8,5,10,12,3,4,9,2,8,1,5,3,15,15,5,10,7,1,1,10,12,2,12,10,3,14,0,5,12,9,12,9,11,10,15,3,14,8,11,9,14,7,6,2,15,14,10,14,12,8,11,1,9,9,13,1,3,0,15,4,15,6,12,13,3,7,6,2,5,6,0,3,1,11,6,1,9,1,6,15,7,6,7,9,5,4,12,15,12,3,15,11,1,8,10,2,13,12,15,3,1,8,1,14,10,7,3,15,10,9,14,11,13,7,12,12,5,11,6,2,8,11,12,12,9,5,14,14,9,13,6,10,1,13,3,4,15,7,5,14,6,4,5,2,3,8,11,0,3,10,5,9,2,1,5,5,9,13,5,14,5,12,14,1,15,12,8,5,11,15,2,13,5,9,7,7,11,0,8,13,9,1,15,1,8,13,4,4,11,13,11,8,10,3,11,7,7,2,0,13,7,8,8,15,7,10,2,6,1,6,3,7,8,2,8,2,4,2,1,11,8,13,3,3,2,10,8,5,5,3,5,10,5,3,13,8,9,2,6,2,3,0,11,11,11,2,3,3,12,12,0,7,15,2,6,8,9,15,3,13,13,12,7,13,10,12,11,9,0,8,7,8,0,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"10\", \"2\", \"9\"], \"clip_start\": 383.0, \"clip_end\": 388.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,7,2,12,2,1,2,0,7,9,1,7,5,12,10,5,4,14,9,13,9,1,6,4,4,14,1,2,7,14,6,14,9,6,15,13,3,6,4,7,8,11,1,7,13,9,2,1,2,3,1,13,13,7,8,14,14,11,8,0,5,11,4,11,9,0,3,7,14,11,5,13,7,7,11,8,5,11,4,7,0,3,14,3,1,14,1,15,12,12,7,0,13,13,12,10,1,0,15,12,7,1,5,11,10,11,5,7,10,2,11,12,11,13,5,9,10,0,1,2,1,1,4,1,7,10,1,9,7,1,11,7,1,6,9,13,4,5,12,4,10,1,5,13,0,12,2,12,11,4,2,7,4,14,10,10,7,11,13,12,4,8,0,5,11,12,13,2,7,11,15,13,0,14,14,5,12,2,0,14,11,8,0,14,6,8,15,0,12,9,2,12,9,4,1,1,8,9,14,3,2,8,9,15,5,11,5,14,11,3,14,11,11,12,7,4,12,4,14,7,5,9,10,9,9,8,14,0,5,12,2,5,14,5,0,3,10,12,9,1,7,0,4,3,7,10,12,2,12,9,14,4,1,15,12,15,4,7,4,10,10,14,1,15,1,4,1,14,13,4,4,15,12,6,2,14,9,3,7,3,6,8,7,9,9,8,4,3,2,1,14,5,6,7,5,8,7,10,4,5,5,11,7,4,6,14,8,8,6,9,13,3,7,0,6,10,9,14,0,4,11,11,1,8,7,7,12,15,0,5,7,1,6,11,5,13,13,1,10,0,7,8,0,4,14,1,9,9,10,14,6,10,3,15,12,6,6,0,7,3,5,0,7,11,7,12,7,0,14,9,5,13,10,10,9,2,13,1,10,7,1,13,3,1,10,2,9,8,3,6,9,8,1,13,12,1,12,15,10,9,0,14,15,0,6,13,0,6,2,2,9,2,4,0,2,12,15,14,5,1,15,2,2,1,5,0,2,15,12,7,6,2,2,9,15,15,2,0,8,4,12,8,9,15,1,5,12,15,4,7,11,10,3,13,3,7,7,2,11,9,2,5,5,15,10,3,10,9,5,1,9,8,2,14,0,0,5,7,9,3,0,14,9,11,3,12,15,1,1,0,13,1,6,5,8,12,14,4,0,2,2,7,13,9,4,0,15,12,3,14,5,12,12,8,4,13,9,8,14,10,8,12,14,13,12,5,4,15,5,6,7,1,8,9,10,2,1,5,7,6,12,5,0,3,11,4,6,4,8,6,0,1,13,4,10,9,2,13,14,11,8,0,15,6,7,11,5,0,11,6,6,13,0,0,15,13,9,0,5,15,9,11,6,14,8,4,5,9,4,2,8,5,1,4,11,15,13,4,3,10,3,6,5,12,10,4,7,14,6,0,8,3,0,10,11,1,12,2,8,2,11,9,1,4,14,12,1,6,4,12,5,13,14,15,4,4,11,6,9,4,3,11,6,1,3,11,8,2,1,1,12,7,13,12,8,3,9,1,5,2,5,2,3,4,3,7,6,0,1,13,1,9,13,13,12,1,3,13,11,12,5,1,15,0,11,12,15,15,14,14,15,10,6,0,6,0,1,10,0,13,1,8,1,6,15,7,0,10,2,1,9,3,15,15,11,13,12,0,6,11,9,4,1,7,15,9,14,15,10,3,13,7,14,3,11,4,8,14,6,13,8,0,0,4,6,7,15,7,11,8,5,10,12,3,4,9,2,8,1,5,3,15,15,5,10,7,1,1,10,12,2,12,10,3,14,0,5,12,9,12,9,11,10,15,3,14,8,11,9,14,7,6,2,15,14,10,14,12,8,11,1,9,9,13,1,3,0,15,4,15,6,12,13,3,7,6,2,5,6,0,3,1,11,6,1,9,1,6,15,7,6,7,9,5,4,12,15,12,3,15,11,1,8,10,2,13,12,15,3,1,8,1,14,10,7,3,15,10,9,14,11,13,7,12,12,5,11,6,2,8,11,12,12,9,5,14,14,9,13,6,10,1,13,3,4,15,7,5,14,6,4,5,2,3,8,11,0,3,10,5,9,2,1,5,5,9,13,5,14,5,12,14,1,15,12,8,5,11,15,2,13,5,9,7,7,11,0,8,13,9,1,15,1,8,13,4,4,11,13,11,8,10,3,11,7,7,2,0,13,7,8,8,15,7,10,2,6,1,6,3,7,8,2,8,2,4,2,1,11,8,13,3,3,2,10,8,5,5,3,5,10,5,3,13,8,9,2,6,2,3,0,11,11,11,2,3,3,12,12,0,7,15,2,6,8,9,15,3,13,13,12,7,13,10,12,11,9,0,8,7,8,0,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 871.0, \"clip_end\": 876.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,7,2,12,2,1,2,0,7,9,1,7,5,12,10,5,4,14,9,13,9,1,6,4,4,14,1,2,7,14,6,14,9,6,15,13,3,6,4,7,8,11,1,7,13,9,2,1,2,3,1,13,13,7,8,14,14,11,8,0,5,11,4,11,9,0,3,7,14,11,5,13,7,7,11,8,5,11,4,7,0,3,14,3,1,14,1,15,12,12,7,0,13,13,12,10,1,0,15,12,7,1,5,11,10,11,5,7,10,2,11,12,11,13,5,9,10,0,1,2,1,1,4,1,7,10,1,9,7,1,11,7,1,6,9,13,4,5,12,4,10,1,5,13,0,12,2,12,11,4,2,7,4,14,10,10,7,11,13,12,4,8,0,5,11,12,13,2,7,11,15,13,0,14,14,5,12,2,0,14,11,8,0,14,6,8,15,0,12,9,2,12,9,4,1,1,8,9,14,3,2,8,9,15,5,11,5,14,11,3,14,11,11,12,7,4,12,4,14,7,5,9,10,9,9,8,14,0,5,12,2,5,14,5,0,3,10,12,9,1,7,0,4,3,7,10,12,2,12,9,14,4,1,15,12,15,4,7,4,10,10,14,1,15,1,4,1,14,13,4,4,15,12,6,2,14,9,3,7,3,6,8,7,9,9,8,4,3,2,1,14,5,6,7,5,8,7,10,4,5,5,11,7,4,6,14,8,8,6,9,13,3,7,0,6,10,9,14,0,4,11,11,1,8,7,7,12,15,0,5,7,1,6,11,5,13,13,1,10,0,7,8,0,4,14,1,9,9,10,14,6,10,3,15,12,6,6,0,7,3,5,0,7,11,7,12,7,0,14,9,5,13,10,10,9,2,13,1,10,7,1,13,3,1,10,2,9,8,3,6,9,8,1,13,12,1,12,15,10,9,0,14,15,0,6,13,0,6,2,2,9,2,4,0,2,12,15,14,5,1,15,2,2,1,5,0,2,15,12,7,6,2,2,9,15,15,2,0,8,4,12,8,9,15,1,5,12,15,4,7,11,10,3,13,3,7,7,2,11,9,2,5,5,15,10,3,10,9,5,1,9,8,2,14,0,0,5,7,9,3,0,14,9,11,3,12,15,1,1,0,13,1,6,5,8,12,14,4,0,2,2,7,13,9,4,0,15,12,3,14,5,12,12,8,4,13,9,8,14,10,8,12,14,13,12,5,4,15,5,6,7,1,8,9,10,2,1,5,7,6,12,5,0,3,11,4,6,4,8,6,0,1,13,4,10,9,2,13,14,11,8,0,15,6,7,11,5,0,11,6,6,13,0,0,15,13,9,0,5,15,9,11,6,14,8,4,5,9,4,2,8,5,1,4,11,15,13,4,3,10,3,6,5,12,10,4,7,14,6,0,8,3,0,10,11,1,12,2,8,2,11,9,1,4,14,12,1,6,4,12,5,13,14,15,4,4,11,6,9,4,3,11,6,1,3,11,8,2,1,1,12,7,13,12,8,3,9,1,5,2,5,2,3,4,3,7,6,0,1,13,1,9,13,13,12,1,3,13,11,12,5,1,15,0,11,12,15,15,14,14,15,10,6,0,6,0,1,10,0,13,1,8,1,6,15,7,0,10,2,1,9,3,15,15,11,13,12,0,6,11,9,4,1,7,15,9,14,15,10,3,13,7,14,3,11,4,8,14,6,13,8,0,0,4,6,7,15,7,11,8,5,10,12,3,4,9,2,8,1,5,3,15,15,5,10,7,1,1,10,12,2,12,10,3,14,0,5,12,9,12,9,11,10,15,3,14,8,11,9,14,7,6,2,15,14,10,14,12,8,11,1,9,9,13,1,3,0,15,4,15,6,12,13,3,7,6,2,5,6,0,3,1,11,6,1,9,1,6,15,7,6,7,9,5,4,12,15,12,3,15,11,1,8,10,2,13,12,15,3,1,8,1,14,10,7,3,15,10,9,14,11,13,7,12,12,5,11,6,2,8,11,12,12,9,5,14,14,9,13,6,10,1,13,3,4,15,7,5,14,6,4,5,2,3,8,11,0,3,10,5,9,2,1,5,5,9,13,5,14,5,12,14,1,15,12,8,5,11,15,2,13,5,9,7,7,11,0,8,13,9,1,15,1,8,13,4,4,11,13,11,8,10,3,11,7,7,2,0,13,7,8,8,15,7,10,2,6,1,6,3,7,8,2,8,2,4,2,1,11,8,13,3,3,2,10,8,5,5,3,5,10,5,3,13,8,9,2,6,2,3,0,11,11,11,2,3,3,12,12,0,7,15,2,6,8,9,15,3,13,13,12,7,13,10,12,11,9,0,8,7,8,0,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 835.0, \"clip_end\": 838.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,7,2,12,2,1,2,0,7,9,1,7,5,12,10,5,4,14,9,13,9,1,6,4,4,14,1,2,7,14,6,14,9,6,15,13,3,6,4,7,8,11,1,7,13,9,2,1,2,3,1,13,13,7,8,14,14,11,8,0,5,11,4,11,9,0,3,7,14,11,5,13,7,7,11,8,5,11,4,7,0,3,14,3,1,14,1,15,12,12,7,0,13,13,12,10,1,0,15,12,7,1,5,11,10,11,5,7,10,2,11,12,11,13,5,9,10,0,1,2,1,1,4,1,7,10,1,9,7,1,11,7,1,6,9,13,4,5,12,4,10,1,5,13,0,12,2,12,11,4,2,7,4,14,10,10,7,11,13,12,4,8,0,5,11,12,13,2,7,11,15,13,0,14,14,5,12,2,0,14,11,8,0,14,6,8,15,0,12,9,2,12,9,4,1,1,8,9,14,3,2,8,9,15,5,11,5,14,11,3,14,11,11,12,7,4,12,4,14,7,5,9,10,9,9,8,14,0,5,12,2,5,14,5,0,3,10,12,9,1,7,0,4,3,7,10,12,2,12,9,14,4,1,15,12,15,4,7,4,10,10,14,1,15,1,4,1,14,13,4,4,15,12,6,2,14,9,3,7,3,6,8,7,9,9,8,4,3,2,1,14,5,6,7,5,8,7,10,4,5,5,11,7,4,6,14,8,8,6,9,13,3,7,0,6,10,9,14,0,4,11,11,1,8,7,7,12,15,0,5,7,1,6,11,5,13,13,1,10,0,7,8,0,4,14,1,9,9,10,14,6,10,3,15,12,6,6,0,7,3,5,0,7,11,7,12,7,0,14,9,5,13,10,10,9,2,13,1,10,7,1,13,3,1,10,2,9,8,3,6,9,8,1,13,12,1,12,15,10,9,0,14,15,0,6,13,0,6,2,2,9,2,4,0,2,12,15,14,5,1,15,2,2,1,5,0,2,15,12,7,6,2,2,9,15,15,2,0,8,4,12,8,9,15,1,5,12,15,4,7,11,10,3,13,3,7,7,2,11,9,2,5,5,15,10,3,10,9,5,1,9,8,2,14,0,0,5,7,9,3,0,14,9,11,3,12,15,1,1,0,13,1,6,5,8,12,14,4,0,2,2,7,13,9,4,0,15,12,3,14,5,12,12,8,4,13,9,8,14,10,8,12,14,13,12,5,4,15,5,6,7,1,8,9,10,2,1,5,7,6,12,5,0,3,11,4,6,4,8,6,0,1,13,4,10,9,2,13,14,11,8,0,15,6,7,11,5,0,11,6,6,13,0,0,15,13,9,0,5,15,9,11,6,14,8,4,5,9,4,2,8,5,1,4,11,15,13,4,3,10,3,6,5,12,10,4,7,14,6,0,8,3,0,10,11,1,12,2,8,2,11,9,1,4,14,12,1,6,4,12,5,13,14,15,4,4,11,6,9,4,3,11,6,1,3,11,8,2,1,1,12,7,13,12,8,3,9,1,5,2,5,2,3,4,3,7,6,0,1,13,1,9,13,13,12,1,3,13,11,12,5,1,15,0,11,12,15,15,14,14,15,10,6,0,6,0,1,10,0,13,1,8,1,6,15,7,0,10,2,1,9,3,15,15,11,13,12,0,6,11,9,4,1,7,15,9,14,15,10,3,13,7,14,3,11,4,8,14,6,13,8,0,0,4,6,7,15,7,11,8,5,10,12,3,4,9,2,8,1,5,3,15,15,5,10,7,1,1,10,12,2,12,10,3,14,0,5,12,9,12,9,11,10,15,3,14,8,11,9,14,7,6,2,15,14,10,14,12,8,11,1,9,9,13,1,3,0,15,4,15,6,12,13,3,7,6,2,5,6,0,3,1,11,6,1,9,1,6,15,7,6,7,9,5,4,12,15,12,3,15,11,1,8,10,2,13,12,15,3,1,8,1,14,10,7,3,15,10,9,14,11,13,7,12,12,5,11,6,2,8,11,12,12,9,5,14,14,9,13,6,10,1,13,3,4,15,7,5,14,6,4,5,2,3,8,11,0,3,10,5,9,2,1,5,5,9,13,5,14,5,12,14,1,15,12,8,5,11,15,2,13,5,9,7,7,11,0,8,13,9,1,15,1,8,13,4,4,11,13,11,8,10,3,11,7,7,2,0,13,7,8,8,15,7,10,2,6,1,6,3,7,8,2,8,2,4,2,1,11,8,13,3,3,2,10,8,5,5,3,5,10,5,3,13,8,9,2,6,2,3,0,11,11,11,2,3,3,12,12,0,7,15,2,6,8,9,15,3,13,13,12,7,13,10,12,11,9,0,8,7,8,0,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"10\", \"0\", \"13\", \"1\"], \"clip_start\": 696.0, \"clip_end\": 702.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,7,2,12,2,1,2,0,7,9,1,7,5,12,10,5,4,14,9,13,9,1,6,4,4,14,1,2,7,14,6,14,9,6,15,13,3,6,4,7,8,11,1,7,13,9,2,1,2,3,1,13,13,7,8,14,14,11,8,0,5,11,4,11,9,0,3,7,14,11,5,13,7,7,11,8,5,11,4,7,0,3,14,3,1,14,1,15,12,12,7,0,13,13,12,10,1,0,15,12,7,1,5,11,10,11,5,7,10,2,11,12,11,13,5,9,10,0,1,2,1,1,4,1,7,10,1,9,7,1,11,7,1,6,9,13,4,5,12,4,10,1,5,13,0,12,2,12,11,4,2,7,4,14,10,10,7,11,13,12,4,8,0,5,11,12,13,2,7,11,15,13,0,14,14,5,12,2,0,14,11,8,0,14,6,8,15,0,12,9,2,12,9,4,1,1,8,9,14,3,2,8,9,15,5,11,5,14,11,3,14,11,11,12,7,4,12,4,14,7,5,9,10,9,9,8,14,0,5,12,2,5,14,5,0,3,10,12,9,1,7,0,4,3,7,10,12,2,12,9,14,4,1,15,12,15,4,7,4,10,10,14,1,15,1,4,1,14,13,4,4,15,12,6,2,14,9,3,7,3,6,8,7,9,9,8,4,3,2,1,14,5,6,7,5,8,7,10,4,5,5,11,7,4,6,14,8,8,6,9,13,3,7,0,6,10,9,14,0,4,11,11,1,8,7,7,12,15,0,5,7,1,6,11,5,13,13,1,10,0,7,8,0,4,14,1,9,9,10,14,6,10,3,15,12,6,6,0,7,3,5,0,7,11,7,12,7,0,14,9,5,13,10,10,9,2,13,1,10,7,1,13,3,1,10,2,9,8,3,6,9,8,1,13,12,1,12,15,10,9,0,14,15,0,6,13,0,6,2,2,9,2,4,0,2,12,15,14,5,1,15,2,2,1,5,0,2,15,12,7,6,2,2,9,15,15,2,0,8,4,12,8,9,15,1,5,12,15,4,7,11,10,3,13,3,7,7,2,11,9,2,5,5,15,10,3,10,9,5,1,9,8,2,14,0,0,5,7,9,3,0,14,9,11,3,12,15,1,1,0,13,1,6,5,8,12,14,4,0,2,2,7,13,9,4,0,15,12,3,14,5,12,12,8,4,13,9,8,14,10,8,12,14,13,12,5,4,15,5,6,7,1,8,9,10,2,1,5,7,6,12,5,0,3,11,4,6,4,8,6,0,1,13,4,10,9,2,13,14,11,8,0,15,6,7,11,5,0,11,6,6,13,0,0,15,13,9,0,5,15,9,11,6,14,8,4,5,9,4,2,8,5,1,4,11,15,13,4,3,10,3,6,5,12,10,4,7,14,6,0,8,3,0,10,11,1,12,2,8,2,11,9,1,4,14,12,1,6,4,12,5,13,14,15,4,4,11,6,9,4,3,11,6,1,3,11,8,2,1,1,12,7,13,12,8,3,9,1,5,2,5,2,3,4,3,7,6,0,1,13,1,9,13,13,12,1,3,13,11,12,5,1,15,0,11,12,15,15,14,14,15,10,6,0,6,0,1,10,0,13,1,8,1,6,15,7,0,10,2,1,9,3,15,15,11,13,12,0,6,11,9,4,1,7,15,9,14,15,10,3,13,7,14,3,11,4,8,14,6,13,8,0,0,4,6,7,15,7,11,8,5,10,12,3,4,9,2,8,1,5,3,15,15,5,10,7,1,1,10,12,2,12,10,3,14,0,5,12,9,12,9,11,10,15,3,14,8,11,9,14,7,6,2,15,14,10,14,12,8,11,1,9,9,13,1,3,0,15,4,15,6,12,13,3,7,6,2,5,6,0,3,1,11,6,1,9,1,6,15,7,6,7,9,5,4,12,15,12,3,15,11,1,8,10,2,13,12,15,3,1,8,1,14,10,7,3,15,10,9,14,11,13,7,12,12,5,11,6,2,8,11,12,12,9,5,14,14,9,13,6,10,1,13,3,4,15,7,5,14,6,4,5,2,3,8,11,0,3,10,5,9,2,1,5,5,9,13,5,14,5,12,14,1,15,12,8,5,11,15,2,13,5,9,7,7,11,0,8,13,9,1,15,1,8,13,4,4,11,13,11,8,10,3,11,7,7,2,0,13,7,8,8,15,7,10,2,6,1,6,3,7,8,2,8,2,4,2,1,11,8,13,3,3,2,10,8,5,5,3,5,10,5,3,13,8,9,2,6,2,3,0,11,11,11,2,3,3,12,12,0,7,15,2,6,8,9,15,3,13,13,12,7,13,10,12,11,9,0,8,7,8,0,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"1\", \"3\", \"13\"], \"clip_start\": 675.0, \"clip_end\": 679.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,7,2,12,2,1,2,0,7,9,1,7,5,12,10,5,4,14,9,13,9,1,6,4,4,14,1,2,7,14,6,14,9,6,15,13,3,6,4,7,8,11,1,7,13,9,2,1,2,3,1,13,13,7,8,14,14,11,8,0,5,11,4,11,9,0,3,7,14,11,5,13,7,7,11,8,5,11,4,7,0,3,14,3,1,14,1,15,12,12,7,0,13,13,12,10,1,0,15,12,7,1,5,11,10,11,5,7,10,2,11,12,11,13,5,9,10,0,1,2,1,1,4,1,7,10,1,9,7,1,11,7,1,6,9,13,4,5,12,4,10,1,5,13,0,12,2,12,11,4,2,7,4,14,10,10,7,11,13,12,4,8,0,5,11,12,13,2,7,11,15,13,0,14,14,5,12,2,0,14,11,8,0,14,6,8,15,0,12,9,2,12,9,4,1,1,8,9,14,3,2,8,9,15,5,11,5,14,11,3,14,11,11,12,7,4,12,4,14,7,5,9,10,9,9,8,14,0,5,12,2,5,14,5,0,3,10,12,9,1,7,0,4,3,7,10,12,2,12,9,14,4,1,15,12,15,4,7,4,10,10,14,1,15,1,4,1,14,13,4,4,15,12,6,2,14,9,3,7,3,6,8,7,9,9,8,4,3,2,1,14,5,6,7,5,8,7,10,4,5,5,11,7,4,6,14,8,8,6,9,13,3,7,0,6,10,9,14,0,4,11,11,1,8,7,7,12,15,0,5,7,1,6,11,5,13,13,1,10,0,7,8,0,4,14,1,9,9,10,14,6,10,3,15,12,6,6,0,7,3,5,0,7,11,7,12,7,0,14,9,5,13,10,10,9,2,13,1,10,7,1,13,3,1,10,2,9,8,3,6,9,8,1,13,12,1,12,15,10,9,0,14,15,0,6,13,0,6,2,2,9,2,4,0,2,12,15,14,5,1,15,2,2,1,5,0,2,15,12,7,6,2,2,9,15,15,2,0,8,4,12,8,9,15,1,5,12,15,4,7,11,10,3,13,3,7,7,2,11,9,2,5,5,15,10,3,10,9,5,1,9,8,2,14,0,0,5,7,9,3,0,14,9,11,3,12,15,1,1,0,13,1,6,5,8,12,14,4,0,2,2,7,13,9,4,0,15,12,3,14,5,12,12,8,4,13,9,8,14,10,8,12,14,13,12,5,4,15,5,6,7,1,8,9,10,2,1,5,7,6,12,5,0,3,11,4,6,4,8,6,0,1,13,4,10,9,2,13,14,11,8,0,15,6,7,11,5,0,11,6,6,13,0,0,15,13,9,0,5,15,9,11,6,14,8,4,5,9,4,2,8,5,1,4,11,15,13,4,3,10,3,6,5,12,10,4,7,14,6,0,8,3,0,10,11,1,12,2,8,2,11,9,1,4,14,12,1,6,4,12,5,13,14,15,4,4,11,6,9,4,3,11,6,1,3,11,8,2,1,1,12,7,13,12,8,3,9,1,5,2,5,2,3,4,3,7,6,0,1,13,1,9,13,13,12,1,3,13,11,12,5,1,15,0,11,12,15,15,14,14,15,10,6,0,6,0,1,10,0,13,1,8,1,6,15,7,0,10,2,1,9,3,15,15,11,13,12,0,6,11,9,4,1,7,15,9,14,15,10,3,13,7,14,3,11,4,8,14,6,13,8,0,0,4,6,7,15,7,11,8,5,10,12,3,4,9,2,8,1,5,3,15,15,5,10,7,1,1,10,12,2,12,10,3,14,0,5,12,9,12,9,11,10,15,3,14,8,11,9,14,7,6,2,15,14,10,14,12,8,11,1,9,9,13,1,3,0,15,4,15,6,12,13,3,7,6,2,5,6,0,3,1,11,6,1,9,1,6,15,7,6,7,9,5,4,12,15,12,3,15,11,1,8,10,2,13,12,15,3,1,8,1,14,10,7,3,15,10,9,14,11,13,7,12,12,5,11,6,2,8,11,12,12,9,5,14,14,9,13,6,10,1,13,3,4,15,7,5,14,6,4,5,2,3,8,11,0,3,10,5,9,2,1,5,5,9,13,5,14,5,12,14,1,15,12,8,5,11,15,2,13,5,9,7,7,11,0,8,13,9,1,15,1,8,13,4,4,11,13,11,8,10,3,11,7,7,2,0,13,7,8,8,15,7,10,2,6,1,6,3,7,8,2,8,2,4,2,1,11,8,13,3,3,2,10,8,5,5,3,5,10,5,3,13,8,9,2,6,2,3,0,11,11,11,2,3,3,12,12,0,7,15,2,6,8,9,15,3,13,13,12,7,13,10,12,11,9,0,8,7,8,0,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"0\", \"5\", \"12\", \"9\"], \"clip_start\": 774.0, \"clip_end\": 780.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,7,2,12,2,1,2,0,7,9,1,7,5,12,10,5,4,14,9,13,9,1,6,4,4,14,1,2,7,14,6,14,9,6,15,13,3,6,4,7,8,11,1,7,13,9,2,1,2,3,1,13,13,7,8,14,14,11,8,0,5,11,4,11,9,0,3,7,14,11,5,13,7,7,11,8,5,11,4,7,0,3,14,3,1,14,1,15,12,12,7,0,13,13,12,10,1,0,15,12,7,1,5,11,10,11,5,7,10,2,11,12,11,13,5,9,10,0,1,2,1,1,4,1,7,10,1,9,7,1,11,7,1,6,9,13,4,5,12,4,10,1,5,13,0,12,2,12,11,4,2,7,4,14,10,10,7,11,13,12,4,8,0,5,11,12,13,2,7,11,15,13,0,14,14,5,12,2,0,14,11,8,0,14,6,8,15,0,12,9,2,12,9,4,1,1,8,9,14,3,2,8,9,15,5,11,5,14,11,3,14,11,11,12,7,4,12,4,14,7,5,9,10,9,9,8,14,0,5,12,2,5,14,5,0,3,10,12,9,1,7,0,4,3,7,10,12,2,12,9,14,4,1,15,12,15,4,7,4,10,10,14,1,15,1,4,1,14,13,4,4,15,12,6,2,14,9,3,7,3,6,8,7,9,9,8,4,3,2,1,14,5,6,7,5,8,7,10,4,5,5,11,7,4,6,14,8,8,6,9,13,3,7,0,6,10,9,14,0,4,11,11,1,8,7,7,12,15,0,5,7,1,6,11,5,13,13,1,10,0,7,8,0,4,14,1,9,9,10,14,6,10,3,15,12,6,6,0,7,3,5,0,7,11,7,12,7,0,14,9,5,13,10,10,9,2,13,1,10,7,1,13,3,1,10,2,9,8,3,6,9,8,1,13,12,1,12,15,10,9,0,14,15,0,6,13,0,6,2,2,9,2,4,0,2,12,15,14,5,1,15,2,2,1,5,0,2,15,12,7,6,2,2,9,15,15,2,0,8,4,12,8,9,15,1,5,12,15,4,7,11,10,3,13,3,7,7,2,11,9,2,5,5,15,10,3,10,9,5,1,9,8,2,14,0,0,5,7,9,3,0,14,9,11,3,12,15,1,1,0,13,1,6,5,8,12,14,4,0,2,2,7,13,9,4,0,15,12,3,14,5,12,12,8,4,13,9,8,14,10,8,12,14,13,12,5,4,15,5,6,7,1,8,9,10,2,1,5,7,6,12,5,0,3,11,4,6,4,8,6,0,1,13,4,10,9,2,13,14,11,8,0,15,6,7,11,5,0,11,6,6,13,0,0,15,13,9,0,5,15,9,11,6,14,8,4,5,9,4,2,8,5,1,4,11,15,13,4,3,10,3,6,5,12,10,4,7,14,6,0,8,3,0,10,11,1,12,2,8,2,11,9,1,4,14,12,1,6,4,12,5,13,14,15,4,4,11,6,9,4,3,11,6,1,3,11,8,2,1,1,12,7,13,12,8,3,9,1,5,2,5,2,3,4,3,7,6,0,1,13,1,9,13,13,12,1,3,13,11,12,5,1,15,0,11,12,15,15,14,14,15,10,6,0,6,0,1,10,0,13,1,8,1,6,15,7,0,10,2,1,9,3,15,15,11,13,12,0,6,11,9,4,1,7,15,9,14,15,10,3,13,7,14,3,11,4,8,14,6,13,8,0,0,4,6,7,15,7,11,8,5,10,12,3,4,9,2,8,1,5,3,15,15,5,10,7,1,1,10,12,2,12,10,3,14,0,5,12,9,12,9,11,10,15,3,14,8,11,9,14,7,6,2,15,14,10,14,12,8,11,1,9,9,13,1,3,0,15,4,15,6,12,13,3,7,6,2,5,6,0,3,1,11,6,1,9,1,6,15,7,6,7,9,5,4,12,15,12,3,15,11,1,8,10,2,13,12,15,3,1,8,1,14,10,7,3,15,10,9,14,11,13,7,12,12,5,11,6,2,8,11,12,12,9,5,14,14,9,13,6,10,1,13,3,4,15,7,5,14,6,4,5,2,3,8,11,0,3,10,5,9,2,1,5,5,9,13,5,14,5,12,14,1,15,12,8,5,11,15,2,13,5,9,7,7,11,0,8,13,9,1,15,1,8,13,4,4,11,13,11,8,10,3,11,7,7,2,0,13,7,8,8,15,7,10,2,6,1,6,3,7,8,2,8,2,4,2,1,11,8,13,3,3,2,10,8,5,5,3,5,10,5,3,13,8,9,2,6,2,3,0,11,11,11,2,3,3,12,12,0,7,15,2,6,8,9,15,3,13,13,12,7,13,10,12,11,9,0,8,7,8,0,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"13\", \"7\", \"14\", \"3\"], \"clip_start\": 729.0, \"clip_end\": 735.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,7,2,12,2,1,2,0,7,9,1,7,5,12,10,5,4,14,9,13,9,1,6,4,4,14,1,2,7,14,6,14,9,6,15,13,3,6,4,7,8,11,1,7,13,9,2,1,2,3,1,13,13,7,8,14,14,11,8,0,5,11,4,11,9,0,3,7,14,11,5,13,7,7,11,8,5,11,4,7,0,3,14,3,1,14,1,15,12,12,7,0,13,13,12,10,1,0,15,12,7,1,5,11,10,11,5,7,10,2,11,12,11,13,5,9,10,0,1,2,1,1,4,1,7,10,1,9,7,1,11,7,1,6,9,13,4,5,12,4,10,1,5,13,0,12,2,12,11,4,2,7,4,14,10,10,7,11,13,12,4,8,0,5,11,12,13,2,7,11,15,13,0,14,14,5,12,2,0,14,11,8,0,14,6,8,15,0,12,9,2,12,9,4,1,1,8,9,14,3,2,8,9,15,5,11,5,14,11,3,14,11,11,12,7,4,12,4,14,7,5,9,10,9,9,8,14,0,5,12,2,5,14,5,0,3,10,12,9,1,7,0,4,3,7,10,12,2,12,9,14,4,1,15,12,15,4,7,4,10,10,14,1,15,1,4,1,14,13,4,4,15,12,6,2,14,9,3,7,3,6,8,7,9,9,8,4,3,2,1,14,5,6,7,5,8,7,10,4,5,5,11,7,4,6,14,8,8,6,9,13,3,7,0,6,10,9,14,0,4,11,11,1,8,7,7,12,15,0,5,7,1,6,11,5,13,13,1,10,0,7,8,0,4,14,1,9,9,10,14,6,10,3,15,12,6,6,0,7,3,5,0,7,11,7,12,7,0,14,9,5,13,10,10,9,2,13,1,10,7,1,13,3,1,10,2,9,8,3,6,9,8,1,13,12,1,12,15,10,9,0,14,15,0,6,13,0,6,2,2,9,2,4,0,2,12,15,14,5,1,15,2,2,1,5,0,2,15,12,7,6,2,2,9,15,15,2,0,8,4,12,8,9,15,1,5,12,15,4,7,11,10,3,13,3,7,7,2,11,9,2,5,5,15,10,3,10,9,5,1,9,8,2,14,0,0,5,7,9,3,0,14,9,11,3,12,15,1,1,0,13,1,6,5,8,12,14,4,0,2,2,7,13,9,4,0,15,12,3,14,5,12,12,8,4,13,9,8,14,10,8,12,14,13,12,5,4,15,5,6,7,1,8,9,10,2,1,5,7,6,12,5,0,3,11,4,6,4,8,6,0,1,13,4,10,9,2,13,14,11,8,0,15,6,7,11,5,0,11,6,6,13,0,0,15,13,9,0,5,15,9,11,6,14,8,4,5,9,4,2,8,5,1,4,11,15,13,4,3,10,3,6,5,12,10,4,7,14,6,0,8,3,0,10,11,1,12,2,8,2,11,9,1,4,14,12,1,6,4,12,5,13,14,15,4,4,11,6,9,4,3,11,6,1,3,11,8,2,1,1,12,7,13,12,8,3,9,1,5,2,5,2,3,4,3,7,6,0,1,13,1,9,13,13,12,1,3,13,11,12,5,1,15,0,11,12,15,15,14,14,15,10,6,0,6,0,1,10,0,13,1,8,1,6,15,7,0,10,2,1,9,3,15,15,11,13,12,0,6,11,9,4,1,7,15,9,14,15,10,3,13,7,14,3,11,4,8,14,6,13,8,0,0,4,6,7,15,7,11,8,5,10,12,3,4,9,2,8,1,5,3,15,15,5,10,7,1,1,10,12,2,12,10,3,14,0,5,12,9,12,9,11,10,15,3,14,8,11,9,14,7,6,2,15,14,10,14,12,8,11,1,9,9,13,1,3,0,15,4,15,6,12,13,3,7,6,2,5,6,0,3,1,11,6,1,9,1,6,15,7,6,7,9,5,4,12,15,12,3,15,11,1,8,10,2,13,12,15,3,1,8,1,14,10,7,3,15,10,9,14,11,13,7,12,12,5,11,6,2,8,11,12,12,9,5,14,14,9,13,6,10,1,13,3,4,15,7,5,14,6,4,5,2,3,8,11,0,3,10,5,9,2,1,5,5,9,13,5,14,5,12,14,1,15,12,8,5,11,15,2,13,5,9,7,7,11,0,8,13,9,1,15,1,8,13,4,4,11,13,11,8,10,3,11,7,7,2,0,13,7,8,8,15,7,10,2,6,1,6,3,7,8,2,8,2,4,2,1,11,8,13,3,3,2,10,8,5,5,3,5,10,5,3,13,8,9,2,6,2,3,0,11,11,11,2,3,3,12,12,0,7,15,2,6,8,9,15,3,13,13,12,7,13,10,12,11,9,0,8,7,8,0,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 480.0, \"clip_end\": 484.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,7,2,12,2,1,2,0,7,9,1,7,5,12,10,5,4,14,9,13,9,1,6,4,4,14,1,2,7,14,6,14,9,6,15,13,3,6,4,7,8,11,1,7,13,9,2,1,2,3,1,13,13,7,8,14,14,11,8,0,5,11,4,11,9,0,3,7,14,11,5,13,7,7,11,8,5,11,4,7,0,3,14,3,1,14,1,15,12,12,7,0,13,13,12,10,1,0,15,12,7,1,5,11,10,11,5,7,10,2,11,12,11,13,5,9,10,0,1,2,1,1,4,1,7,10,1,9,7,1,11,7,1,6,9,13,4,5,12,4,10,1,5,13,0,12,2,12,11,4,2,7,4,14,10,10,7,11,13,12,4,8,0,5,11,12,13,2,7,11,15,13,0,14,14,5,12,2,0,14,11,8,0,14,6,8,15,0,12,9,2,12,9,4,1,1,8,9,14,3,2,8,9,15,5,11,5,14,11,3,14,11,11,12,7,4,12,4,14,7,5,9,10,9,9,8,14,0,5,12,2,5,14,5,0,3,10,12,9,1,7,0,4,3,7,10,12,2,12,9,14,4,1,15,12,15,4,7,4,10,10,14,1,15,1,4,1,14,13,4,4,15,12,6,2,14,9,3,7,3,6,8,7,9,9,8,4,3,2,1,14,5,6,7,5,8,7,10,4,5,5,11,7,4,6,14,8,8,6,9,13,3,7,0,6,10,9,14,0,4,11,11,1,8,7,7,12,15,0,5,7,1,6,11,5,13,13,1,10,0,7,8,0,4,14,1,9,9,10,14,6,10,3,15,12,6,6,0,7,3,5,0,7,11,7,12,7,0,14,9,5,13,10,10,9,2,13,1,10,7,1,13,3,1,10,2,9,8,3,6,9,8,1,13,12,1,12,15,10,9,0,14,15,0,6,13,0,6,2,2,9,2,4,0,2,12,15,14,5,1,15,2,2,1,5,0,2,15,12,7,6,2,2,9,15,15,2,0,8,4,12,8,9,15,1,5,12,15,4,7,11,10,3,13,3,7,7,2,11,9,2,5,5,15,10,3,10,9,5,1,9,8,2,14,0,0,5,7,9,3,0,14,9,11,3,12,15,1,1,0,13,1,6,5,8,12,14,4,0,2,2,7,13,9,4,0,15,12,3,14,5,12,12,8,4,13,9,8,14,10,8,12,14,13,12,5,4,15,5,6,7,1,8,9,10,2,1,5,7,6,12,5,0,3,11,4,6,4,8,6,0,1,13,4,10,9,2,13,14,11,8,0,15,6,7,11,5,0,11,6,6,13,0,0,15,13,9,0,5,15,9,11,6,14,8,4,5,9,4,2,8,5,1,4,11,15,13,4,3,10,3,6,5,12,10,4,7,14,6,0,8,3,0,10,11,1,12,2,8,2,11,9,1,4,14,12,1,6,4,12,5,13,14,15,4,4,11,6,9,4,3,11,6,1,3,11,8,2,1,1,12,7,13,12,8,3,9,1,5,2,5,2,3,4,3,7,6,0,1,13,1,9,13,13,12,1,3,13,11,12,5,1,15,0,11,12,15,15,14,14,15,10,6,0,6,0,1,10,0,13,1,8,1,6,15,7,0,10,2,1,9,3,15,15,11,13,12,0,6,11,9,4,1,7,15,9,14,15,10,3,13,7,14,3,11,4,8,14,6,13,8,0,0,4,6,7,15,7,11,8,5,10,12,3,4,9,2,8,1,5,3,15,15,5,10,7,1,1,10,12,2,12,10,3,14,0,5,12,9,12,9,11,10,15,3,14,8,11,9,14,7,6,2,15,14,10,14,12,8,11,1,9,9,13,1,3,0,15,4,15,6,12,13,3,7,6,2,5,6,0,3,1,11,6,1,9,1,6,15,7,6,7,9,5,4,12,15,12,3,15,11,1,8,10,2,13,12,15,3,1,8,1,14,10,7,3,15,10,9,14,11,13,7,12,12,5,11,6,2,8,11,12,12,9,5,14,14,9,13,6,10,1,13,3,4,15,7,5,14,6,4,5,2,3,8,11,0,3,10,5,9,2,1,5,5,9,13,5,14,5,12,14,1,15,12,8,5,11,15,2,13,5,9,7,7,11,0,8,13,9,1,15,1,8,13,4,4,11,13,11,8,10,3,11,7,7,2,0,13,7,8,8,15,7,10,2,6,1,6,3,7,8,2,8,2,4,2,1,11,8,13,3,3,2,10,8,5,5,3,5,10,5,3,13,8,9,2,6,2,3,0,11,11,11,2,3,3,12,12,0,7,15,2,6,8,9,15,3,13,13,12,7,13,10,12,11,9,0,8,7,8,0,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 846.0, \"clip_end\": 850.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,7,2,12,2,1,2,0,7,9,1,7,5,12,10,5,4,14,9,13,9,1,6,4,4,14,1,2,7,14,6,14,9,6,15,13,3,6,4,7,8,11,1,7,13,9,2,1,2,3,1,13,13,7,8,14,14,11,8,0,5,11,4,11,9,0,3,7,14,11,5,13,7,7,11,8,5,11,4,7,0,3,14,3,1,14,1,15,12,12,7,0,13,13,12,10,1,0,15,12,7,1,5,11,10,11,5,7,10,2,11,12,11,13,5,9,10,0,1,2,1,1,4,1,7,10,1,9,7,1,11,7,1,6,9,13,4,5,12,4,10,1,5,13,0,12,2,12,11,4,2,7,4,14,10,10,7,11,13,12,4,8,0,5,11,12,13,2,7,11,15,13,0,14,14,5,12,2,0,14,11,8,0,14,6,8,15,0,12,9,2,12,9,4,1,1,8,9,14,3,2,8,9,15,5,11,5,14,11,3,14,11,11,12,7,4,12,4,14,7,5,9,10,9,9,8,14,0,5,12,2,5,14,5,0,3,10,12,9,1,7,0,4,3,7,10,12,2,12,9,14,4,1,15,12,15,4,7,4,10,10,14,1,15,1,4,1,14,13,4,4,15,12,6,2,14,9,3,7,3,6,8,7,9,9,8,4,3,2,1,14,5,6,7,5,8,7,10,4,5,5,11,7,4,6,14,8,8,6,9,13,3,7,0,6,10,9,14,0,4,11,11,1,8,7,7,12,15,0,5,7,1,6,11,5,13,13,1,10,0,7,8,0,4,14,1,9,9,10,14,6,10,3,15,12,6,6,0,7,3,5,0,7,11,7,12,7,0,14,9,5,13,10,10,9,2,13,1,10,7,1,13,3,1,10,2,9,8,3,6,9,8,1,13,12,1,12,15,10,9,0,14,15,0,6,13,0,6,2,2,9,2,4,0,2,12,15,14,5,1,15,2,2,1,5,0,2,15,12,7,6,2,2,9,15,15,2,0,8,4,12,8,9,15,1,5,12,15,4,7,11,10,3,13,3,7,7,2,11,9,2,5,5,15,10,3,10,9,5,1,9,8,2,14,0,0,5,7,9,3,0,14,9,11,3,12,15,1,1,0,13,1,6,5,8,12,14,4,0,2,2,7,13,9,4,0,15,12,3,14,5,12,12,8,4,13,9,8,14,10,8,12,14,13,12,5,4,15,5,6,7,1,8,9,10,2,1,5,7,6,12,5,0,3,11,4,6,4,8,6,0,1,13,4,10,9,2,13,14,11,8,0,15,6,7,11,5,0,11,6,6,13,0,0,15,13,9,0,5,15,9,11,6,14,8,4,5,9,4,2,8,5,1,4,11,15,13,4,3,10,3,6,5,12,10,4,7,14,6,0,8,3,0,10,11,1,12,2,8,2,11,9,1,4,14,12,1,6,4,12,5,13,14,15,4,4,11,6,9,4,3,11,6,1,3,11,8,2,1,1,12,7,13,12,8,3,9,1,5,2,5,2,3,4,3,7,6,0,1,13,1,9,13,13,12,1,3,13,11,12,5,1,15,0,11,12,15,15,14,14,15,10,6,0,6,0,1,10,0,13,1,8,1,6,15,7,0,10,2,1,9,3,15,15,11,13,12,0,6,11,9,4,1,7,15,9,14,15,10,3,13,7,14,3,11,4,8,14,6,13,8,0,0,4,6,7,15,7,11,8,5,10,12,3,4,9,2,8,1,5,3,15,15,5,10,7,1,1,10,12,2,12,10,3,14,0,5,12,9,12,9,11,10,15,3,14,8,11,9,14,7,6,2,15,14,10,14,12,8,11,1,9,9,13,1,3,0,15,4,15,6,12,13,3,7,6,2,5,6,0,3,1,11,6,1,9,1,6,15,7,6,7,9,5,4,12,15,12,3,15,11,1,8,10,2,13,12,15,3,1,8,1,14,10,7,3,15,10,9,14,11,13,7,12,12,5,11,6,2,8,11,12,12,9,5,14,14,9,13,6,10,1,13,3,4,15,7,5,14,6,4,5,2,3,8,11,0,3,10,5,9,2,1,5,5,9,13,5,14,5,12,14,1,15,12,8,5,11,15,2,13,5,9,7,7,11,0,8,13,9,1,15,1,8,13,4,4,11,13,11,8,10,3,11,7,7,2,0,13,7,8,8,15,7,10,2,6,1,6,3,7,8,2,8,2,4,2,1,11,8,13,3,3,2,10,8,5,5,3,5,10,5,3,13,8,9,2,6,2,3,0,11,11,11,2,3,3,12,12,0,7,15,2,6,8,9,15,3,13,13,12,7,13,10,12,11,9,0,8,7,8,0,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"11\", \"5\", \"0\", \"11\"], \"clip_start\": 564.0, \"clip_end\": 570.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,7,2,12,2,1,2,0,7,9,1,7,5,12,10,5,4,14,9,13,9,1,6,4,4,14,1,2,7,14,6,14,9,6,15,13,3,6,4,7,8,11,1,7,13,9,2,1,2,3,1,13,13,7,8,14,14,11,8,0,5,11,4,11,9,0,3,7,14,11,5,13,7,7,11,8,5,11,4,7,0,3,14,3,1,14,1,15,12,12,7,0,13,13,12,10,1,0,15,12,7,1,5,11,10,11,5,7,10,2,11,12,11,13,5,9,10,0,1,2,1,1,4,1,7,10,1,9,7,1,11,7,1,6,9,13,4,5,12,4,10,1,5,13,0,12,2,12,11,4,2,7,4,14,10,10,7,11,13,12,4,8,0,5,11,12,13,2,7,11,15,13,0,14,14,5,12,2,0,14,11,8,0,14,6,8,15,0,12,9,2,12,9,4,1,1,8,9,14,3,2,8,9,15,5,11,5,14,11,3,14,11,11,12,7,4,12,4,14,7,5,9,10,9,9,8,14,0,5,12,2,5,14,5,0,3,10,12,9,1,7,0,4,3,7,10,12,2,12,9,14,4,1,15,12,15,4,7,4,10,10,14,1,15,1,4,1,14,13,4,4,15,12,6,2,14,9,3,7,3,6,8,7,9,9,8,4,3,2,1,14,5,6,7,5,8,7,10,4,5,5,11,7,4,6,14,8,8,6,9,13,3,7,0,6,10,9,14,0,4,11,11,1,8,7,7,12,15,0,5,7,1,6,11,5,13,13,1,10,0,7,8,0,4,14,1,9,9,10,14,6,10,3,15,12,6,6,0,7,3,5,0,7,11,7,12,7,0,14,9,5,13,10,10,9,2,13,1,10,7,1,13,3,1,10,2,9,8,3,6,9,8,1,13,12,1,12,15,10,9,0,14,15,0,6,13,0,6,2,2,9,2,4,0,2,12,15,14,5,1,15,2,2,1,5,0,2,15,12,7,6,2,2,9,15,15,2,0,8,4,12,8,9,15,1,5,12,15,4,7,11,10,3,13,3,7,7,2,11,9,2,5,5,15,10,3,10,9,5,1,9,8,2,14,0,0,5,7,9,3,0,14,9,11,3,12,15,1,1,0,13,1,6,5,8,12,14,4,0,2,2,7,13,9,4,0,15,12,3,14,5,12,12,8,4,13,9,8,14,10,8,12,14,13,12,5,4,15,5,6,7,1,8,9,10,2,1,5,7,6,12,5,0,3,11,4,6,4,8,6,0,1,13,4,10,9,2,13,14,11,8,0,15,6,7,11,5,0,11,6,6,13,0,0,15,13,9,0,5,15,9,11,6,14,8,4,5,9,4,2,8,5,1,4,11,15,13,4,3,10,3,6,5,12,10,4,7,14,6,0,8,3,0,10,11,1,12,2,8,2,11,9,1,4,14,12,1,6,4,12,5,13,14,15,4,4,11,6,9,4,3,11,6,1,3,11,8,2,1,1,12,7,13,12,8,3,9,1,5,2,5,2,3,4,3,7,6,0,1,13,1,9,13,13,12,1,3,13,11,12,5,1,15,0,11,12,15,15,14,14,15,10,6,0,6,0,1,10,0,13,1,8,1,6,15,7,0,10,2,1,9,3,15,15,11,13,12,0,6,11,9,4,1,7,15,9,14,15,10,3,13,7,14,3,11,4,8,14,6,13,8,0,0,4,6,7,15,7,11,8,5,10,12,3,4,9,2,8,1,5,3,15,15,5,10,7,1,1,10,12,2,12,10,3,14,0,5,12,9,12,9,11,10,15,3,14,8,11,9,14,7,6,2,15,14,10,14,12,8,11,1,9,9,13,1,3,0,15,4,15,6,12,13,3,7,6,2,5,6,0,3,1,11,6,1,9,1,6,15,7,6,7,9,5,4,12,15,12,3,15,11,1,8,10,2,13,12,15,3,1,8,1,14,10,7,3,15,10,9,14,11,13,7,12,12,5,11,6,2,8,11,12,12,9,5,14,14,9,13,6,10,1,13,3,4,15,7,5,14,6,4,5,2,3,8,11,0,3,10,5,9,2,1,5,5,9,13,5,14,5,12,14,1,15,12,8,5,11,15,2,13,5,9,7,7,11,0,8,13,9,1,15,1,8,13,4,4,11,13,11,8,10,3,11,7,7,2,0,13,7,8,8,15,7,10,2,6,1,6,3,7,8,2,8,2,4,2,1,11,8,13,3,3,2,10,8,5,5,3,5,10,5,3,13,8,9,2,6,2,3,0,11,11,11,2,3,3,12,12,0,7,15,2,6,8,9,15,3,13,13,12,7,13,10,12,11,9,0,8,7,8,0,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"1\", \"11\", \"7\"], \"clip_start\": 129.0, \"clip_end\": 133.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,7,2,12,2,1,2,0,7,9,1,7,5,12,10,5,4,14,9,13,9,1,6,4,4,14,1,2,7,14,6,14,9,6,15,13,3,6,4,7,8,11,1,7,13,9,2,1,2,3,1,13,13,7,8,14,14,11,8,0,5,11,4,11,9,0,3,7,14,11,5,13,7,7,11,8,5,11,4,7,0,3,14,3,1,14,1,15,12,12,7,0,13,13,12,10,1,0,15,12,7,1,5,11,10,11,5,7,10,2,11,12,11,13,5,9,10,0,1,2,1,1,4,1,7,10,1,9,7,1,11,7,1,6,9,13,4,5,12,4,10,1,5,13,0,12,2,12,11,4,2,7,4,14,10,10,7,11,13,12,4,8,0,5,11,12,13,2,7,11,15,13,0,14,14,5,12,2,0,14,11,8,0,14,6,8,15,0,12,9,2,12,9,4,1,1,8,9,14,3,2,8,9,15,5,11,5,14,11,3,14,11,11,12,7,4,12,4,14,7,5,9,10,9,9,8,14,0,5,12,2,5,14,5,0,3,10,12,9,1,7,0,4,3,7,10,12,2,12,9,14,4,1,15,12,15,4,7,4,10,10,14,1,15,1,4,1,14,13,4,4,15,12,6,2,14,9,3,7,3,6,8,7,9,9,8,4,3,2,1,14,5,6,7,5,8,7,10,4,5,5,11,7,4,6,14,8,8,6,9,13,3,7,0,6,10,9,14,0,4,11,11,1,8,7,7,12,15,0,5,7,1,6,11,5,13,13,1,10,0,7,8,0,4,14,1,9,9,10,14,6,10,3,15,12,6,6,0,7,3,5,0,7,11,7,12,7,0,14,9,5,13,10,10,9,2,13,1,10,7,1,13,3,1,10,2,9,8,3,6,9,8,1,13,12,1,12,15,10,9,0,14,15,0,6,13,0,6,2,2,9,2,4,0,2,12,15,14,5,1,15,2,2,1,5,0,2,15,12,7,6,2,2,9,15,15,2,0,8,4,12,8,9,15,1,5,12,15,4,7,11,10,3,13,3,7,7,2,11,9,2,5,5,15,10,3,10,9,5,1,9,8,2,14,0,0,5,7,9,3,0,14,9,11,3,12,15,1,1,0,13,1,6,5,8,12,14,4,0,2,2,7,13,9,4,0,15,12,3,14,5,12,12,8,4,13,9,8,14,10,8,12,14,13,12,5,4,15,5,6,7,1,8,9,10,2,1,5,7,6,12,5,0,3,11,4,6,4,8,6,0,1,13,4,10,9,2,13,14,11,8,0,15,6,7,11,5,0,11,6,6,13,0,0,15,13,9,0,5,15,9,11,6,14,8,4,5,9,4,2,8,5,1,4,11,15,13,4,3,10,3,6,5,12,10,4,7,14,6,0,8,3,0,10,11,1,12,2,8,2,11,9,1,4,14,12,1,6,4,12,5,13,14,15,4,4,11,6,9,4,3,11,6,1,3,11,8,2,1,1,12,7,13,12,8,3,9,1,5,2,5,2,3,4,3,7,6,0,1,13,1,9,13,13,12,1,3,13,11,12,5,1,15,0,11,12,15,15,14,14,15,10,6,0,6,0,1,10,0,13,1,8,1,6,15,7,0,10,2,1,9,3,15,15,11,13,12,0,6,11,9,4,1,7,15,9,14,15,10,3,13,7,14,3,11,4,8,14,6,13,8,0,0,4,6,7,15,7,11,8,5,10,12,3,4,9,2,8,1,5,3,15,15,5,10,7,1,1,10,12,2,12,10,3,14,0,5,12,9,12,9,11,10,15,3,14,8,11,9,14,7,6,2,15,14,10,14,12,8,11,1,9,9,13,1,3,0,15,4,15,6,12,13,3,7,6,2,5,6,0,3,1,11,6,1,9,1,6,15,7,6,7,9,5,4,12,15,12,3,15,11,1,8,10,2,13,12,15,3,1,8,1,14,10,7,3,15,10,9,14,11,13,7,12,12,5,11,6,2,8,11,12,12,9,5,14,14,9,13,6,10,1,13,3,4,15,7,5,14,6,4,5,2,3,8,11,0,3,10,5,9,2,1,5,5,9,13,5,14,5,12,14,1,15,12,8,5,11,15,2,13,5,9,7,7,11,0,8,13,9,1,15,1,8,13,4,4,11,13,11,8,10,3,11,7,7,2,0,13,7,8,8,15,7,10,2,6,1,6,3,7,8,2,8,2,4,2,1,11,8,13,3,3,2,10,8,5,5,3,5,10,5,3,13,8,9,2,6,2,3,0,11,11,11,2,3,3,12,12,0,7,15,2,6,8,9,15,3,13,13,12,7,13,10,12,11,9,0,8,7,8,0,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"7\", \"12\"], \"clip_start\": 324.0, \"clip_end\": 328.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,7,2,12,2,1,2,0,7,9,1,7,5,12,10,5,4,14,9,13,9,1,6,4,4,14,1,2,7,14,6,14,9,6,15,13,3,6,4,7,8,11,1,7,13,9,2,1,2,3,1,13,13,7,8,14,14,11,8,0,5,11,4,11,9,0,3,7,14,11,5,13,7,7,11,8,5,11,4,7,0,3,14,3,1,14,1,15,12,12,7,0,13,13,12,10,1,0,15,12,7,1,5,11,10,11,5,7,10,2,11,12,11,13,5,9,10,0,1,2,1,1,4,1,7,10,1,9,7,1,11,7,1,6,9,13,4,5,12,4,10,1,5,13,0,12,2,12,11,4,2,7,4,14,10,10,7,11,13,12,4,8,0,5,11,12,13,2,7,11,15,13,0,14,14,5,12,2,0,14,11,8,0,14,6,8,15,0,12,9,2,12,9,4,1,1,8,9,14,3,2,8,9,15,5,11,5,14,11,3,14,11,11,12,7,4,12,4,14,7,5,9,10,9,9,8,14,0,5,12,2,5,14,5,0,3,10,12,9,1,7,0,4,3,7,10,12,2,12,9,14,4,1,15,12,15,4,7,4,10,10,14,1,15,1,4,1,14,13,4,4,15,12,6,2,14,9,3,7,3,6,8,7,9,9,8,4,3,2,1,14,5,6,7,5,8,7,10,4,5,5,11,7,4,6,14,8,8,6,9,13,3,7,0,6,10,9,14,0,4,11,11,1,8,7,7,12,15,0,5,7,1,6,11,5,13,13,1,10,0,7,8,0,4,14,1,9,9,10,14,6,10,3,15,12,6,6,0,7,3,5,0,7,11,7,12,7,0,14,9,5,13,10,10,9,2,13,1,10,7,1,13,3,1,10,2,9,8,3,6,9,8,1,13,12,1,12,15,10,9,0,14,15,0,6,13,0,6,2,2,9,2,4,0,2,12,15,14,5,1,15,2,2,1,5,0,2,15,12,7,6,2,2,9,15,15,2,0,8,4,12,8,9,15,1,5,12,15,4,7,11,10,3,13,3,7,7,2,11,9,2,5,5,15,10,3,10,9,5,1,9,8,2,14,0,0,5,7,9,3,0,14,9,11,3,12,15,1,1,0,13,1,6,5,8,12,14,4,0,2,2,7,13,9,4,0,15,12,3,14,5,12,12,8,4,13,9,8,14,10,8,12,14,13,12,5,4,15,5,6,7,1,8,9,10,2,1,5,7,6,12,5,0,3,11,4,6,4,8,6,0,1,13,4,10,9,2,13,14,11,8,0,15,6,7,11,5,0,11,6,6,13,0,0,15,13,9,0,5,15,9,11,6,14,8,4,5,9,4,2,8,5,1,4,11,15,13,4,3,10,3,6,5,12,10,4,7,14,6,0,8,3,0,10,11,1,12,2,8,2,11,9,1,4,14,12,1,6,4,12,5,13,14,15,4,4,11,6,9,4,3,11,6,1,3,11,8,2,1,1,12,7,13,12,8,3,9,1,5,2,5,2,3,4,3,7,6,0,1,13,1,9,13,13,12,1,3,13,11,12,5,1,15,0,11,12,15,15,14,14,15,10,6,0,6,0,1,10,0,13,1,8,1,6,15,7,0,10,2,1,9,3,15,15,11,13,12,0,6,11,9,4,1,7,15,9,14,15,10,3,13,7,14,3,11,4,8,14,6,13,8,0,0,4,6,7,15,7,11,8,5,10,12,3,4,9,2,8,1,5,3,15,15,5,10,7,1,1,10,12,2,12,10,3,14,0,5,12,9,12,9,11,10,15,3,14,8,11,9,14,7,6,2,15,14,10,14,12,8,11,1,9,9,13,1,3,0,15,4,15,6,12,13,3,7,6,2,5,6,0,3,1,11,6,1,9,1,6,15,7,6,7,9,5,4,12,15,12,3,15,11,1,8,10,2,13,12,15,3,1,8,1,14,10,7,3,15,10,9,14,11,13,7,12,12,5,11,6,2,8,11,12,12,9,5,14,14,9,13,6,10,1,13,3,4,15,7,5,14,6,4,5,2,3,8,11,0,3,10,5,9,2,1,5,5,9,13,5,14,5,12,14,1,15,12,8,5,11,15,2,13,5,9,7,7,11,0,8,13,9,1,15,1,8,13,4,4,11,13,11,8,10,3,11,7,7,2,0,13,7,8,8,15,7,10,2,6,1,6,3,7,8,2,8,2,4,2,1,11,8,13,3,3,2,10,8,5,5,3,5,10,5,3,13,8,9,2,6,2,3,0,11,11,11,2,3,3,12,12,0,7,15,2,6,8,9,15,3,13,13,12,7,13,10,12,11,9,0,8,7,8,0,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"15\", \"0\", \"12\", \"9\", \"2\"], \"clip_start\": 186.0, \"clip_end\": 192.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,7,2,12,2,1,2,0,7,9,1,7,5,12,10,5,4,14,9,13,9,1,6,4,4,14,1,2,7,14,6,14,9,6,15,13,3,6,4,7,8,11,1,7,13,9,2,1,2,3,1,13,13,7,8,14,14,11,8,0,5,11,4,11,9,0,3,7,14,11,5,13,7,7,11,8,5,11,4,7,0,3,14,3,1,14,1,15,12,12,7,0,13,13,12,10,1,0,15,12,7,1,5,11,10,11,5,7,10,2,11,12,11,13,5,9,10,0,1,2,1,1,4,1,7,10,1,9,7,1,11,7,1,6,9,13,4,5,12,4,10,1,5,13,0,12,2,12,11,4,2,7,4,14,10,10,7,11,13,12,4,8,0,5,11,12,13,2,7,11,15,13,0,14,14,5,12,2,0,14,11,8,0,14,6,8,15,0,12,9,2,12,9,4,1,1,8,9,14,3,2,8,9,15,5,11,5,14,11,3,14,11,11,12,7,4,12,4,14,7,5,9,10,9,9,8,14,0,5,12,2,5,14,5,0,3,10,12,9,1,7,0,4,3,7,10,12,2,12,9,14,4,1,15,12,15,4,7,4,10,10,14,1,15,1,4,1,14,13,4,4,15,12,6,2,14,9,3,7,3,6,8,7,9,9,8,4,3,2,1,14,5,6,7,5,8,7,10,4,5,5,11,7,4,6,14,8,8,6,9,13,3,7,0,6,10,9,14,0,4,11,11,1,8,7,7,12,15,0,5,7,1,6,11,5,13,13,1,10,0,7,8,0,4,14,1,9,9,10,14,6,10,3,15,12,6,6,0,7,3,5,0,7,11,7,12,7,0,14,9,5,13,10,10,9,2,13,1,10,7,1,13,3,1,10,2,9,8,3,6,9,8,1,13,12,1,12,15,10,9,0,14,15,0,6,13,0,6,2,2,9,2,4,0,2,12,15,14,5,1,15,2,2,1,5,0,2,15,12,7,6,2,2,9,15,15,2,0,8,4,12,8,9,15,1,5,12,15,4,7,11,10,3,13,3,7,7,2,11,9,2,5,5,15,10,3,10,9,5,1,9,8,2,14,0,0,5,7,9,3,0,14,9,11,3,12,15,1,1,0,13,1,6,5,8,12,14,4,0,2,2,7,13,9,4,0,15,12,3,14,5,12,12,8,4,13,9,8,14,10,8,12,14,13,12,5,4,15,5,6,7,1,8,9,10,2,1,5,7,6,12,5,0,3,11,4,6,4,8,6,0,1,13,4,10,9,2,13,14,11,8,0,15,6,7,11,5,0,11,6,6,13,0,0,15,13,9,0,5,15,9,11,6,14,8,4,5,9,4,2,8,5,1,4,11,15,13,4,3,10,3,6,5,12,10,4,7,14,6,0,8,3,0,10,11,1,12,2,8,2,11,9,1,4,14,12,1,6,4,12,5,13,14,15,4,4,11,6,9,4,3,11,6,1,3,11,8,2,1,1,12,7,13,12,8,3,9,1,5,2,5,2,3,4,3,7,6,0,1,13,1,9,13,13,12,1,3,13,11,12,5,1,15,0,11,12,15,15,14,14,15,10,6,0,6,0,1,10,0,13,1,8,1,6,15,7,0,10,2,1,9,3,15,15,11,13,12,0,6,11,9,4,1,7,15,9,14,15,10,3,13,7,14,3,11,4,8,14,6,13,8,0,0,4,6,7,15,7,11,8,5,10,12,3,4,9,2,8,1,5,3,15,15,5,10,7,1,1,10,12,2,12,10,3,14,0,5,12,9,12,9,11,10,15,3,14,8,11,9,14,7,6,2,15,14,10,14,12,8,11,1,9,9,13,1,3,0,15,4,15,6,12,13,3,7,6,2,5,6,0,3,1,11,6,1,9,1,6,15,7,6,7,9,5,4,12,15,12,3,15,11,1,8,10,2,13,12,15,3,1,8,1,14,10,7,3,15,10,9,14,11,13,7,12,12,5,11,6,2,8,11,12,12,9,5,14,14,9,13,6,10,1,13,3,4,15,7,5,14,6,4,5,2,3,8,11,0,3,10,5,9,2,1,5,5,9,13,5,14,5,12,14,1,15,12,8,5,11,15,2,13,5,9,7,7,11,0,8,13,9,1,15,1,8,13,4,4,11,13,11,8,10,3,11,7,7,2,0,13,7,8,8,15,7,10,2,6,1,6,3,7,8,2,8,2,4,2,1,11,8,13,3,3,2,10,8,5,5,3,5,10,5,3,13,8,9,2,6,2,3,0,11,11,11,2,3,3,12,12,0,7,15,2,6,8,9,15,3,13,13,12,7,13,10,12,11,9,0,8,7,8,0,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"10\", \"2\", \"1\", \"5\", \"7\"], \"clip_start\": 534.0, \"clip_end\": 540.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,7,2,12,2,1,2,0,7,9,1,7,5,12,10,5,4,14,9,13,9,1,6,4,4,14,1,2,7,14,6,14,9,6,15,13,3,6,4,7,8,11,1,7,13,9,2,1,2,3,1,13,13,7,8,14,14,11,8,0,5,11,4,11,9,0,3,7,14,11,5,13,7,7,11,8,5,11,4,7,0,3,14,3,1,14,1,15,12,12,7,0,13,13,12,10,1,0,15,12,7,1,5,11,10,11,5,7,10,2,11,12,11,13,5,9,10,0,1,2,1,1,4,1,7,10,1,9,7,1,11,7,1,6,9,13,4,5,12,4,10,1,5,13,0,12,2,12,11,4,2,7,4,14,10,10,7,11,13,12,4,8,0,5,11,12,13,2,7,11,15,13,0,14,14,5,12,2,0,14,11,8,0,14,6,8,15,0,12,9,2,12,9,4,1,1,8,9,14,3,2,8,9,15,5,11,5,14,11,3,14,11,11,12,7,4,12,4,14,7,5,9,10,9,9,8,14,0,5,12,2,5,14,5,0,3,10,12,9,1,7,0,4,3,7,10,12,2,12,9,14,4,1,15,12,15,4,7,4,10,10,14,1,15,1,4,1,14,13,4,4,15,12,6,2,14,9,3,7,3,6,8,7,9,9,8,4,3,2,1,14,5,6,7,5,8,7,10,4,5,5,11,7,4,6,14,8,8,6,9,13,3,7,0,6,10,9,14,0,4,11,11,1,8,7,7,12,15,0,5,7,1,6,11,5,13,13,1,10,0,7,8,0,4,14,1,9,9,10,14,6,10,3,15,12,6,6,0,7,3,5,0,7,11,7,12,7,0,14,9,5,13,10,10,9,2,13,1,10,7,1,13,3,1,10,2,9,8,3,6,9,8,1,13,12,1,12,15,10,9,0,14,15,0,6,13,0,6,2,2,9,2,4,0,2,12,15,14,5,1,15,2,2,1,5,0,2,15,12,7,6,2,2,9,15,15,2,0,8,4,12,8,9,15,1,5,12,15,4,7,11,10,3,13,3,7,7,2,11,9,2,5,5,15,10,3,10,9,5,1,9,8,2,14,0,0,5,7,9,3,0,14,9,11,3,12,15,1,1,0,13,1,6,5,8,12,14,4,0,2,2,7,13,9,4,0,15,12,3,14,5,12,12,8,4,13,9,8,14,10,8,12,14,13,12,5,4,15,5,6,7,1,8,9,10,2,1,5,7,6,12,5,0,3,11,4,6,4,8,6,0,1,13,4,10,9,2,13,14,11,8,0,15,6,7,11,5,0,11,6,6,13,0,0,15,13,9,0,5,15,9,11,6,14,8,4,5,9,4,2,8,5,1,4,11,15,13,4,3,10,3,6,5,12,10,4,7,14,6,0,8,3,0,10,11,1,12,2,8,2,11,9,1,4,14,12,1,6,4,12,5,13,14,15,4,4,11,6,9,4,3,11,6,1,3,11,8,2,1,1,12,7,13,12,8,3,9,1,5,2,5,2,3,4,3,7,6,0,1,13,1,9,13,13,12,1,3,13,11,12,5,1,15,0,11,12,15,15,14,14,15,10,6,0,6,0,1,10,0,13,1,8,1,6,15,7,0,10,2,1,9,3,15,15,11,13,12,0,6,11,9,4,1,7,15,9,14,15,10,3,13,7,14,3,11,4,8,14,6,13,8,0,0,4,6,7,15,7,11,8,5,10,12,3,4,9,2,8,1,5,3,15,15,5,10,7,1,1,10,12,2,12,10,3,14,0,5,12,9,12,9,11,10,15,3,14,8,11,9,14,7,6,2,15,14,10,14,12,8,11,1,9,9,13,1,3,0,15,4,15,6,12,13,3,7,6,2,5,6,0,3,1,11,6,1,9,1,6,15,7,6,7,9,5,4,12,15,12,3,15,11,1,8,10,2,13,12,15,3,1,8,1,14,10,7,3,15,10,9,14,11,13,7,12,12,5,11,6,2,8,11,12,12,9,5,14,14,9,13,6,10,1,13,3,4,15,7,5,14,6,4,5,2,3,8,11,0,3,10,5,9,2,1,5,5,9,13,5,14,5,12,14,1,15,12,8,5,11,15,2,13,5,9,7,7,11,0,8,13,9,1,15,1,8,13,4,4,11,13,11,8,10,3,11,7,7,2,0,13,7,8,8,15,7,10,2,6,1,6,3,7,8,2,8,2,4,2,1,11,8,13,3,3,2,10,8,5,5,3,5,10,5,3,13,8,9,2,6,2,3,0,11,11,11,2,3,3,12,12,0,7,15,2,6,8,9,15,3,13,13,12,7,13,10,12,11,9,0,8,7,8,0,2", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"14\", \"6\", \"6\", \"10\", \"6\"], \"clip_start\": 829.0, \"clip_end\": 835.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,7,6,12,13,15,4,12,2,11,8,12,0,12,14,8,3,2,2,4,3,8,2,15,10,1,7,0,8,1,3,15,15,3,4,11,2,10,7,1,13,8,1,13,8,0,2,5,4,7,7,14,14,7,15,15,3,14,12,3,14,9,10,14,15,4,11,0,8,14,12,15,8,14,13,8,8,13,2,15,9,3,4,6,7,13,0,1,5,4,5,5,7,12,3,9,13,12,13,8,11,0,5,3,2,7,2,12,12,0,6,9,3,12,6,8,10,9,3,2,10,6,8,12,13,13,14,1,1,1,5,8,11,7,13,4,7,8,5,2,5,11,5,0,4,4,14,12,10,2,2,12,15,2,6,10,6,3,3,0,4,14,6,14,13,9,12,6,4,10,14,13,0,7,13,8,11,10,11,6,2,9,10,6,6,9,9,8,0,14,12,13,13,10,2,10,0,7,12,12,1,12,15,5,7,8,9,7,14,7,10,2,11,3,6,8,11,0,1,4,4,1,0,14,6,7,9,6,5,1,6,4,5,14,6,13,12,14,12,15,11,14,9,11,15,2,10,7,11,8,9,8,13,14,6,5,14,3,12,3,3,14,2,14,5,5,0,3,12,1,0,2,7,14,10,6,14,13,5,14,4,0,10,6,15,2,4,14,0,10,15,5,4,4,0,3,6,14,6,0,11,14,15,1,2,7,15,12,5,5,8,14,2,0,2,9,7,4,2,1,14,8,13,12,13,5,4,10,5,0,7,12,6,3,11,9,7,11,2,14,2,1,10,10,10,0,4,3,3,12,3,15,5,12,7,1,11,12,2,5,1,5,2,3,3,4,12,0,1,9,6,13,8,5,9,9,9,9,15,10,13,2,6,13,4,3,7,4,8,1,5,6,0,6,11,9,10,3,12,11,2,6,7,10,8,6,1,1,10,3,3,9,14,8,2,5,7,11,9,0,3,0,2,7,14,6,8,15,0,15,7,2,2,3,10,2,1,0,8,9,5,13,0,0,8,8,14,10,13,5,2,11,9,11,12,9,4,5,5,5,5,15,1,6,8,11,8,5,13,2,1,8,15,8,14,7,13,13,15,4,2,13,15,0,12,5,5,12,4,11,15,2,11,11,7,9,7,11,13,11,10,14,5,3,3,4,10,15,8,2,13,14,1,7,10,6,5,14,13,0,9,10,8,8,10,14,12,2,4,12,1,13,10,14,3,2,5,0,0,2,0,0,8,10,3,10,5,13,7,2,9,3,13,1,9,3,3,15,8,14,13,3,4,6,14,10,11,2,5,10,6,5,14,1,2,11,8,3,14,8,7,4,7,10,11,2,11,8,6,3,12,1,0,1,10,0,12,14,13,3,14,3,9,15,2,2,5,15,1,11,0,12,7,5,12,6,15,13,1,1,0,1,0,7,3,12,4,13,7,2,7,0,1,9,9,13,7,10,11,8,0,2,11,6,11,10,5,5,3,0,15,13,10,11,2,5,13,10,8,7,6,4,11,5,11,6,1,2,10,9,3,8,6,13,7,2,13,11,5,9,1,7,5,10,13,13,4,12,7,13,11,7,7,5,4,1,11,14,8,0,14,10,2,15,13,10,5,12,12,3,6,14,15,1,10,13,14,10,7,8,9,3,5,11,5,0,10,0,14,7,7,11,4,11,7,4,11,7,1,15,3,9,2,13,13,2,5,7,6,5,15,5,0,15,0,13,13,10,11,8,0,8,8,12,8,8,2,4,9,10,11,10,11,3,11,5,2,1,0,9,13,11,0,4,8,14,12,4,5,12,12,14,6,3,13,2,12,12,7,10,10,1,2,10,11,3,9,4,2,0,11,8,6,3,0,5,4,11,3,3,0,9,13,7,3,14,9,7,10,14,6,6,10,6,3,4,2,12,14,10,10,1,11,0,15,3,8,1,14,15,7,12,12,11,0,13,11,1,5,1,13,7,10,11,14,0,1,1,2,14,10,6,12,11,13,12,4,10,7,10,12,10,7,12,10,2,10,14,4,10,12,0,5,13,1,1,10,5,8,15,2,14,10,3,8,13,13,4,7,4,1,13,4,1,0,15,15,12,6,2,10,2,13,6,5,4,1,12,3,5,10,4,2,9,7,15,9,12,10,1,3,8,13,7,15,2,3,12,5,1,4,13,13,9,2,4,11,6,12,3,2,15,2,1,8,10,1,11,4,8,9,7,0,0,12,5,7,11,5,1,2,8,2,14,3,5,13,15,9,15,1,1,5,2,6,13,8,6,2,5,10,9,8,0,13,1,14,8,12,11,4,1,3,2,14,12,8,12,8,10,8,15,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"4\", \"10\", \"15\"], \"clip_start\": 505.0, \"clip_end\": 509.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,7,6,12,13,15,4,12,2,11,8,12,0,12,14,8,3,2,2,4,3,8,2,15,10,1,7,0,8,1,3,15,15,3,4,11,2,10,7,1,13,8,1,13,8,0,2,5,4,7,7,14,14,7,15,15,3,14,12,3,14,9,10,14,15,4,11,0,8,14,12,15,8,14,13,8,8,13,2,15,9,3,4,6,7,13,0,1,5,4,5,5,7,12,3,9,13,12,13,8,11,0,5,3,2,7,2,12,12,0,6,9,3,12,6,8,10,9,3,2,10,6,8,12,13,13,14,1,1,1,5,8,11,7,13,4,7,8,5,2,5,11,5,0,4,4,14,12,10,2,2,12,15,2,6,10,6,3,3,0,4,14,6,14,13,9,12,6,4,10,14,13,0,7,13,8,11,10,11,6,2,9,10,6,6,9,9,8,0,14,12,13,13,10,2,10,0,7,12,12,1,12,15,5,7,8,9,7,14,7,10,2,11,3,6,8,11,0,1,4,4,1,0,14,6,7,9,6,5,1,6,4,5,14,6,13,12,14,12,15,11,14,9,11,15,2,10,7,11,8,9,8,13,14,6,5,14,3,12,3,3,14,2,14,5,5,0,3,12,1,0,2,7,14,10,6,14,13,5,14,4,0,10,6,15,2,4,14,0,10,15,5,4,4,0,3,6,14,6,0,11,14,15,1,2,7,15,12,5,5,8,14,2,0,2,9,7,4,2,1,14,8,13,12,13,5,4,10,5,0,7,12,6,3,11,9,7,11,2,14,2,1,10,10,10,0,4,3,3,12,3,15,5,12,7,1,11,12,2,5,1,5,2,3,3,4,12,0,1,9,6,13,8,5,9,9,9,9,15,10,13,2,6,13,4,3,7,4,8,1,5,6,0,6,11,9,10,3,12,11,2,6,7,10,8,6,1,1,10,3,3,9,14,8,2,5,7,11,9,0,3,0,2,7,14,6,8,15,0,15,7,2,2,3,10,2,1,0,8,9,5,13,0,0,8,8,14,10,13,5,2,11,9,11,12,9,4,5,5,5,5,15,1,6,8,11,8,5,13,2,1,8,15,8,14,7,13,13,15,4,2,13,15,0,12,5,5,12,4,11,15,2,11,11,7,9,7,11,13,11,10,14,5,3,3,4,10,15,8,2,13,14,1,7,10,6,5,14,13,0,9,10,8,8,10,14,12,2,4,12,1,13,10,14,3,2,5,0,0,2,0,0,8,10,3,10,5,13,7,2,9,3,13,1,9,3,3,15,8,14,13,3,4,6,14,10,11,2,5,10,6,5,14,1,2,11,8,3,14,8,7,4,7,10,11,2,11,8,6,3,12,1,0,1,10,0,12,14,13,3,14,3,9,15,2,2,5,15,1,11,0,12,7,5,12,6,15,13,1,1,0,1,0,7,3,12,4,13,7,2,7,0,1,9,9,13,7,10,11,8,0,2,11,6,11,10,5,5,3,0,15,13,10,11,2,5,13,10,8,7,6,4,11,5,11,6,1,2,10,9,3,8,6,13,7,2,13,11,5,9,1,7,5,10,13,13,4,12,7,13,11,7,7,5,4,1,11,14,8,0,14,10,2,15,13,10,5,12,12,3,6,14,15,1,10,13,14,10,7,8,9,3,5,11,5,0,10,0,14,7,7,11,4,11,7,4,11,7,1,15,3,9,2,13,13,2,5,7,6,5,15,5,0,15,0,13,13,10,11,8,0,8,8,12,8,8,2,4,9,10,11,10,11,3,11,5,2,1,0,9,13,11,0,4,8,14,12,4,5,12,12,14,6,3,13,2,12,12,7,10,10,1,2,10,11,3,9,4,2,0,11,8,6,3,0,5,4,11,3,3,0,9,13,7,3,14,9,7,10,14,6,6,10,6,3,4,2,12,14,10,10,1,11,0,15,3,8,1,14,15,7,12,12,11,0,13,11,1,5,1,13,7,10,11,14,0,1,1,2,14,10,6,12,11,13,12,4,10,7,10,12,10,7,12,10,2,10,14,4,10,12,0,5,13,1,1,10,5,8,15,2,14,10,3,8,13,13,4,7,4,1,13,4,1,0,15,15,12,6,2,10,2,13,6,5,4,1,12,3,5,10,4,2,9,7,15,9,12,10,1,3,8,13,7,15,2,3,12,5,1,4,13,13,9,2,4,11,6,12,3,2,15,2,1,8,10,1,11,4,8,9,7,0,0,12,5,7,11,5,1,2,8,2,14,3,5,13,15,9,15,1,1,5,2,6,13,8,6,2,5,10,9,8,0,13,1,14,8,12,11,4,1,3,2,14,12,8,12,8,10,8,15,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"10\", \"6\", \"8\", \"12\", \"13\"], \"clip_start\": 120.0, \"clip_end\": 126.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,7,6,12,13,15,4,12,2,11,8,12,0,12,14,8,3,2,2,4,3,8,2,15,10,1,7,0,8,1,3,15,15,3,4,11,2,10,7,1,13,8,1,13,8,0,2,5,4,7,7,14,14,7,15,15,3,14,12,3,14,9,10,14,15,4,11,0,8,14,12,15,8,14,13,8,8,13,2,15,9,3,4,6,7,13,0,1,5,4,5,5,7,12,3,9,13,12,13,8,11,0,5,3,2,7,2,12,12,0,6,9,3,12,6,8,10,9,3,2,10,6,8,12,13,13,14,1,1,1,5,8,11,7,13,4,7,8,5,2,5,11,5,0,4,4,14,12,10,2,2,12,15,2,6,10,6,3,3,0,4,14,6,14,13,9,12,6,4,10,14,13,0,7,13,8,11,10,11,6,2,9,10,6,6,9,9,8,0,14,12,13,13,10,2,10,0,7,12,12,1,12,15,5,7,8,9,7,14,7,10,2,11,3,6,8,11,0,1,4,4,1,0,14,6,7,9,6,5,1,6,4,5,14,6,13,12,14,12,15,11,14,9,11,15,2,10,7,11,8,9,8,13,14,6,5,14,3,12,3,3,14,2,14,5,5,0,3,12,1,0,2,7,14,10,6,14,13,5,14,4,0,10,6,15,2,4,14,0,10,15,5,4,4,0,3,6,14,6,0,11,14,15,1,2,7,15,12,5,5,8,14,2,0,2,9,7,4,2,1,14,8,13,12,13,5,4,10,5,0,7,12,6,3,11,9,7,11,2,14,2,1,10,10,10,0,4,3,3,12,3,15,5,12,7,1,11,12,2,5,1,5,2,3,3,4,12,0,1,9,6,13,8,5,9,9,9,9,15,10,13,2,6,13,4,3,7,4,8,1,5,6,0,6,11,9,10,3,12,11,2,6,7,10,8,6,1,1,10,3,3,9,14,8,2,5,7,11,9,0,3,0,2,7,14,6,8,15,0,15,7,2,2,3,10,2,1,0,8,9,5,13,0,0,8,8,14,10,13,5,2,11,9,11,12,9,4,5,5,5,5,15,1,6,8,11,8,5,13,2,1,8,15,8,14,7,13,13,15,4,2,13,15,0,12,5,5,12,4,11,15,2,11,11,7,9,7,11,13,11,10,14,5,3,3,4,10,15,8,2,13,14,1,7,10,6,5,14,13,0,9,10,8,8,10,14,12,2,4,12,1,13,10,14,3,2,5,0,0,2,0,0,8,10,3,10,5,13,7,2,9,3,13,1,9,3,3,15,8,14,13,3,4,6,14,10,11,2,5,10,6,5,14,1,2,11,8,3,14,8,7,4,7,10,11,2,11,8,6,3,12,1,0,1,10,0,12,14,13,3,14,3,9,15,2,2,5,15,1,11,0,12,7,5,12,6,15,13,1,1,0,1,0,7,3,12,4,13,7,2,7,0,1,9,9,13,7,10,11,8,0,2,11,6,11,10,5,5,3,0,15,13,10,11,2,5,13,10,8,7,6,4,11,5,11,6,1,2,10,9,3,8,6,13,7,2,13,11,5,9,1,7,5,10,13,13,4,12,7,13,11,7,7,5,4,1,11,14,8,0,14,10,2,15,13,10,5,12,12,3,6,14,15,1,10,13,14,10,7,8,9,3,5,11,5,0,10,0,14,7,7,11,4,11,7,4,11,7,1,15,3,9,2,13,13,2,5,7,6,5,15,5,0,15,0,13,13,10,11,8,0,8,8,12,8,8,2,4,9,10,11,10,11,3,11,5,2,1,0,9,13,11,0,4,8,14,12,4,5,12,12,14,6,3,13,2,12,12,7,10,10,1,2,10,11,3,9,4,2,0,11,8,6,3,0,5,4,11,3,3,0,9,13,7,3,14,9,7,10,14,6,6,10,6,3,4,2,12,14,10,10,1,11,0,15,3,8,1,14,15,7,12,12,11,0,13,11,1,5,1,13,7,10,11,14,0,1,1,2,14,10,6,12,11,13,12,4,10,7,10,12,10,7,12,10,2,10,14,4,10,12,0,5,13,1,1,10,5,8,15,2,14,10,3,8,13,13,4,7,4,1,13,4,1,0,15,15,12,6,2,10,2,13,6,5,4,1,12,3,5,10,4,2,9,7,15,9,12,10,1,3,8,13,7,15,2,3,12,5,1,4,13,13,9,2,4,11,6,12,3,2,15,2,1,8,10,1,11,4,8,9,7,0,0,12,5,7,11,5,1,2,8,2,14,3,5,13,15,9,15,1,1,5,2,6,13,8,6,2,5,10,9,8,0,13,1,14,8,12,11,4,1,3,2,14,12,8,12,8,10,8,15,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"9\", \"12\"], \"clip_start\": 165.0, \"clip_end\": 168.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q3_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,7,6,12,13,15,4,12,2,11,8,12,0,12,14,8,3,2,2,4,3,8,2,15,10,1,7,0,8,1,3,15,15,3,4,11,2,10,7,1,13,8,1,13,8,0,2,5,4,7,7,14,14,7,15,15,3,14,12,3,14,9,10,14,15,4,11,0,8,14,12,15,8,14,13,8,8,13,2,15,9,3,4,6,7,13,0,1,5,4,5,5,7,12,3,9,13,12,13,8,11,0,5,3,2,7,2,12,12,0,6,9,3,12,6,8,10,9,3,2,10,6,8,12,13,13,14,1,1,1,5,8,11,7,13,4,7,8,5,2,5,11,5,0,4,4,14,12,10,2,2,12,15,2,6,10,6,3,3,0,4,14,6,14,13,9,12,6,4,10,14,13,0,7,13,8,11,10,11,6,2,9,10,6,6,9,9,8,0,14,12,13,13,10,2,10,0,7,12,12,1,12,15,5,7,8,9,7,14,7,10,2,11,3,6,8,11,0,1,4,4,1,0,14,6,7,9,6,5,1,6,4,5,14,6,13,12,14,12,15,11,14,9,11,15,2,10,7,11,8,9,8,13,14,6,5,14,3,12,3,3,14,2,14,5,5,0,3,12,1,0,2,7,14,10,6,14,13,5,14,4,0,10,6,15,2,4,14,0,10,15,5,4,4,0,3,6,14,6,0,11,14,15,1,2,7,15,12,5,5,8,14,2,0,2,9,7,4,2,1,14,8,13,12,13,5,4,10,5,0,7,12,6,3,11,9,7,11,2,14,2,1,10,10,10,0,4,3,3,12,3,15,5,12,7,1,11,12,2,5,1,5,2,3,3,4,12,0,1,9,6,13,8,5,9,9,9,9,15,10,13,2,6,13,4,3,7,4,8,1,5,6,0,6,11,9,10,3,12,11,2,6,7,10,8,6,1,1,10,3,3,9,14,8,2,5,7,11,9,0,3,0,2,7,14,6,8,15,0,15,7,2,2,3,10,2,1,0,8,9,5,13,0,0,8,8,14,10,13,5,2,11,9,11,12,9,4,5,5,5,5,15,1,6,8,11,8,5,13,2,1,8,15,8,14,7,13,13,15,4,2,13,15,0,12,5,5,12,4,11,15,2,11,11,7,9,7,11,13,11,10,14,5,3,3,4,10,15,8,2,13,14,1,7,10,6,5,14,13,0,9,10,8,8,10,14,12,2,4,12,1,13,10,14,3,2,5,0,0,2,0,0,8,10,3,10,5,13,7,2,9,3,13,1,9,3,3,15,8,14,13,3,4,6,14,10,11,2,5,10,6,5,14,1,2,11,8,3,14,8,7,4,7,10,11,2,11,8,6,3,12,1,0,1,10,0,12,14,13,3,14,3,9,15,2,2,5,15,1,11,0,12,7,5,12,6,15,13,1,1,0,1,0,7,3,12,4,13,7,2,7,0,1,9,9,13,7,10,11,8,0,2,11,6,11,10,5,5,3,0,15,13,10,11,2,5,13,10,8,7,6,4,11,5,11,6,1,2,10,9,3,8,6,13,7,2,13,11,5,9,1,7,5,10,13,13,4,12,7,13,11,7,7,5,4,1,11,14,8,0,14,10,2,15,13,10,5,12,12,3,6,14,15,1,10,13,14,10,7,8,9,3,5,11,5,0,10,0,14,7,7,11,4,11,7,4,11,7,1,15,3,9,2,13,13,2,5,7,6,5,15,5,0,15,0,13,13,10,11,8,0,8,8,12,8,8,2,4,9,10,11,10,11,3,11,5,2,1,0,9,13,11,0,4,8,14,12,4,5,12,12,14,6,3,13,2,12,12,7,10,10,1,2,10,11,3,9,4,2,0,11,8,6,3,0,5,4,11,3,3,0,9,13,7,3,14,9,7,10,14,6,6,10,6,3,4,2,12,14,10,10,1,11,0,15,3,8,1,14,15,7,12,12,11,0,13,11,1,5,1,13,7,10,11,14,0,1,1,2,14,10,6,12,11,13,12,4,10,7,10,12,10,7,12,10,2,10,14,4,10,12,0,5,13,1,1,10,5,8,15,2,14,10,3,8,13,13,4,7,4,1,13,4,1,0,15,15,12,6,2,10,2,13,6,5,4,1,12,3,5,10,4,2,9,7,15,9,12,10,1,3,8,13,7,15,2,3,12,5,1,4,13,13,9,2,4,11,6,12,3,2,15,2,1,8,10,1,11,4,8,9,7,0,0,12,5,7,11,5,1,2,8,2,14,3,5,13,15,9,15,1,1,5,2,6,13,8,6,2,5,10,9,8,0,13,1,14,8,12,11,4,1,3,2,14,12,8,12,8,10,8,15,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"9\", \"13\"], \"clip_start\": 633.0, \"clip_end\": 637.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,7,6,12,13,15,4,12,2,11,8,12,0,12,14,8,3,2,2,4,3,8,2,15,10,1,7,0,8,1,3,15,15,3,4,11,2,10,7,1,13,8,1,13,8,0,2,5,4,7,7,14,14,7,15,15,3,14,12,3,14,9,10,14,15,4,11,0,8,14,12,15,8,14,13,8,8,13,2,15,9,3,4,6,7,13,0,1,5,4,5,5,7,12,3,9,13,12,13,8,11,0,5,3,2,7,2,12,12,0,6,9,3,12,6,8,10,9,3,2,10,6,8,12,13,13,14,1,1,1,5,8,11,7,13,4,7,8,5,2,5,11,5,0,4,4,14,12,10,2,2,12,15,2,6,10,6,3,3,0,4,14,6,14,13,9,12,6,4,10,14,13,0,7,13,8,11,10,11,6,2,9,10,6,6,9,9,8,0,14,12,13,13,10,2,10,0,7,12,12,1,12,15,5,7,8,9,7,14,7,10,2,11,3,6,8,11,0,1,4,4,1,0,14,6,7,9,6,5,1,6,4,5,14,6,13,12,14,12,15,11,14,9,11,15,2,10,7,11,8,9,8,13,14,6,5,14,3,12,3,3,14,2,14,5,5,0,3,12,1,0,2,7,14,10,6,14,13,5,14,4,0,10,6,15,2,4,14,0,10,15,5,4,4,0,3,6,14,6,0,11,14,15,1,2,7,15,12,5,5,8,14,2,0,2,9,7,4,2,1,14,8,13,12,13,5,4,10,5,0,7,12,6,3,11,9,7,11,2,14,2,1,10,10,10,0,4,3,3,12,3,15,5,12,7,1,11,12,2,5,1,5,2,3,3,4,12,0,1,9,6,13,8,5,9,9,9,9,15,10,13,2,6,13,4,3,7,4,8,1,5,6,0,6,11,9,10,3,12,11,2,6,7,10,8,6,1,1,10,3,3,9,14,8,2,5,7,11,9,0,3,0,2,7,14,6,8,15,0,15,7,2,2,3,10,2,1,0,8,9,5,13,0,0,8,8,14,10,13,5,2,11,9,11,12,9,4,5,5,5,5,15,1,6,8,11,8,5,13,2,1,8,15,8,14,7,13,13,15,4,2,13,15,0,12,5,5,12,4,11,15,2,11,11,7,9,7,11,13,11,10,14,5,3,3,4,10,15,8,2,13,14,1,7,10,6,5,14,13,0,9,10,8,8,10,14,12,2,4,12,1,13,10,14,3,2,5,0,0,2,0,0,8,10,3,10,5,13,7,2,9,3,13,1,9,3,3,15,8,14,13,3,4,6,14,10,11,2,5,10,6,5,14,1,2,11,8,3,14,8,7,4,7,10,11,2,11,8,6,3,12,1,0,1,10,0,12,14,13,3,14,3,9,15,2,2,5,15,1,11,0,12,7,5,12,6,15,13,1,1,0,1,0,7,3,12,4,13,7,2,7,0,1,9,9,13,7,10,11,8,0,2,11,6,11,10,5,5,3,0,15,13,10,11,2,5,13,10,8,7,6,4,11,5,11,6,1,2,10,9,3,8,6,13,7,2,13,11,5,9,1,7,5,10,13,13,4,12,7,13,11,7,7,5,4,1,11,14,8,0,14,10,2,15,13,10,5,12,12,3,6,14,15,1,10,13,14,10,7,8,9,3,5,11,5,0,10,0,14,7,7,11,4,11,7,4,11,7,1,15,3,9,2,13,13,2,5,7,6,5,15,5,0,15,0,13,13,10,11,8,0,8,8,12,8,8,2,4,9,10,11,10,11,3,11,5,2,1,0,9,13,11,0,4,8,14,12,4,5,12,12,14,6,3,13,2,12,12,7,10,10,1,2,10,11,3,9,4,2,0,11,8,6,3,0,5,4,11,3,3,0,9,13,7,3,14,9,7,10,14,6,6,10,6,3,4,2,12,14,10,10,1,11,0,15,3,8,1,14,15,7,12,12,11,0,13,11,1,5,1,13,7,10,11,14,0,1,1,2,14,10,6,12,11,13,12,4,10,7,10,12,10,7,12,10,2,10,14,4,10,12,0,5,13,1,1,10,5,8,15,2,14,10,3,8,13,13,4,7,4,1,13,4,1,0,15,15,12,6,2,10,2,13,6,5,4,1,12,3,5,10,4,2,9,7,15,9,12,10,1,3,8,13,7,15,2,3,12,5,1,4,13,13,9,2,4,11,6,12,3,2,15,2,1,8,10,1,11,4,8,9,7,0,0,12,5,7,11,5,1,2,8,2,14,3,5,13,15,9,15,1,1,5,2,6,13,8,6,2,5,10,9,8,0,13,1,14,8,12,11,4,1,3,2,14,12,8,12,8,10,8,15,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"7\", \"3\", \"7\", \"8\"], \"clip_start\": 117.0, \"clip_end\": 123.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q5_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,7,6,12,13,15,4,12,2,11,8,12,0,12,14,8,3,2,2,4,3,8,2,15,10,1,7,0,8,1,3,15,15,3,4,11,2,10,7,1,13,8,1,13,8,0,2,5,4,7,7,14,14,7,15,15,3,14,12,3,14,9,10,14,15,4,11,0,8,14,12,15,8,14,13,8,8,13,2,15,9,3,4,6,7,13,0,1,5,4,5,5,7,12,3,9,13,12,13,8,11,0,5,3,2,7,2,12,12,0,6,9,3,12,6,8,10,9,3,2,10,6,8,12,13,13,14,1,1,1,5,8,11,7,13,4,7,8,5,2,5,11,5,0,4,4,14,12,10,2,2,12,15,2,6,10,6,3,3,0,4,14,6,14,13,9,12,6,4,10,14,13,0,7,13,8,11,10,11,6,2,9,10,6,6,9,9,8,0,14,12,13,13,10,2,10,0,7,12,12,1,12,15,5,7,8,9,7,14,7,10,2,11,3,6,8,11,0,1,4,4,1,0,14,6,7,9,6,5,1,6,4,5,14,6,13,12,14,12,15,11,14,9,11,15,2,10,7,11,8,9,8,13,14,6,5,14,3,12,3,3,14,2,14,5,5,0,3,12,1,0,2,7,14,10,6,14,13,5,14,4,0,10,6,15,2,4,14,0,10,15,5,4,4,0,3,6,14,6,0,11,14,15,1,2,7,15,12,5,5,8,14,2,0,2,9,7,4,2,1,14,8,13,12,13,5,4,10,5,0,7,12,6,3,11,9,7,11,2,14,2,1,10,10,10,0,4,3,3,12,3,15,5,12,7,1,11,12,2,5,1,5,2,3,3,4,12,0,1,9,6,13,8,5,9,9,9,9,15,10,13,2,6,13,4,3,7,4,8,1,5,6,0,6,11,9,10,3,12,11,2,6,7,10,8,6,1,1,10,3,3,9,14,8,2,5,7,11,9,0,3,0,2,7,14,6,8,15,0,15,7,2,2,3,10,2,1,0,8,9,5,13,0,0,8,8,14,10,13,5,2,11,9,11,12,9,4,5,5,5,5,15,1,6,8,11,8,5,13,2,1,8,15,8,14,7,13,13,15,4,2,13,15,0,12,5,5,12,4,11,15,2,11,11,7,9,7,11,13,11,10,14,5,3,3,4,10,15,8,2,13,14,1,7,10,6,5,14,13,0,9,10,8,8,10,14,12,2,4,12,1,13,10,14,3,2,5,0,0,2,0,0,8,10,3,10,5,13,7,2,9,3,13,1,9,3,3,15,8,14,13,3,4,6,14,10,11,2,5,10,6,5,14,1,2,11,8,3,14,8,7,4,7,10,11,2,11,8,6,3,12,1,0,1,10,0,12,14,13,3,14,3,9,15,2,2,5,15,1,11,0,12,7,5,12,6,15,13,1,1,0,1,0,7,3,12,4,13,7,2,7,0,1,9,9,13,7,10,11,8,0,2,11,6,11,10,5,5,3,0,15,13,10,11,2,5,13,10,8,7,6,4,11,5,11,6,1,2,10,9,3,8,6,13,7,2,13,11,5,9,1,7,5,10,13,13,4,12,7,13,11,7,7,5,4,1,11,14,8,0,14,10,2,15,13,10,5,12,12,3,6,14,15,1,10,13,14,10,7,8,9,3,5,11,5,0,10,0,14,7,7,11,4,11,7,4,11,7,1,15,3,9,2,13,13,2,5,7,6,5,15,5,0,15,0,13,13,10,11,8,0,8,8,12,8,8,2,4,9,10,11,10,11,3,11,5,2,1,0,9,13,11,0,4,8,14,12,4,5,12,12,14,6,3,13,2,12,12,7,10,10,1,2,10,11,3,9,4,2,0,11,8,6,3,0,5,4,11,3,3,0,9,13,7,3,14,9,7,10,14,6,6,10,6,3,4,2,12,14,10,10,1,11,0,15,3,8,1,14,15,7,12,12,11,0,13,11,1,5,1,13,7,10,11,14,0,1,1,2,14,10,6,12,11,13,12,4,10,7,10,12,10,7,12,10,2,10,14,4,10,12,0,5,13,1,1,10,5,8,15,2,14,10,3,8,13,13,4,7,4,1,13,4,1,0,15,15,12,6,2,10,2,13,6,5,4,1,12,3,5,10,4,2,9,7,15,9,12,10,1,3,8,13,7,15,2,3,12,5,1,4,13,13,9,2,4,11,6,12,3,2,15,2,1,8,10,1,11,4,8,9,7,0,0,12,5,7,11,5,1,2,8,2,14,3,5,13,15,9,15,1,1,5,2,6,13,8,6,2,5,10,9,8,0,13,1,14,8,12,11,4,1,3,2,14,12,8,12,8,10,8,15,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"5\", \"9\", \"9\", \"9\"], \"clip_start\": 372.0, \"clip_end\": 378.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q6_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,7,6,12,13,15,4,12,2,11,8,12,0,12,14,8,3,2,2,4,3,8,2,15,10,1,7,0,8,1,3,15,15,3,4,11,2,10,7,1,13,8,1,13,8,0,2,5,4,7,7,14,14,7,15,15,3,14,12,3,14,9,10,14,15,4,11,0,8,14,12,15,8,14,13,8,8,13,2,15,9,3,4,6,7,13,0,1,5,4,5,5,7,12,3,9,13,12,13,8,11,0,5,3,2,7,2,12,12,0,6,9,3,12,6,8,10,9,3,2,10,6,8,12,13,13,14,1,1,1,5,8,11,7,13,4,7,8,5,2,5,11,5,0,4,4,14,12,10,2,2,12,15,2,6,10,6,3,3,0,4,14,6,14,13,9,12,6,4,10,14,13,0,7,13,8,11,10,11,6,2,9,10,6,6,9,9,8,0,14,12,13,13,10,2,10,0,7,12,12,1,12,15,5,7,8,9,7,14,7,10,2,11,3,6,8,11,0,1,4,4,1,0,14,6,7,9,6,5,1,6,4,5,14,6,13,12,14,12,15,11,14,9,11,15,2,10,7,11,8,9,8,13,14,6,5,14,3,12,3,3,14,2,14,5,5,0,3,12,1,0,2,7,14,10,6,14,13,5,14,4,0,10,6,15,2,4,14,0,10,15,5,4,4,0,3,6,14,6,0,11,14,15,1,2,7,15,12,5,5,8,14,2,0,2,9,7,4,2,1,14,8,13,12,13,5,4,10,5,0,7,12,6,3,11,9,7,11,2,14,2,1,10,10,10,0,4,3,3,12,3,15,5,12,7,1,11,12,2,5,1,5,2,3,3,4,12,0,1,9,6,13,8,5,9,9,9,9,15,10,13,2,6,13,4,3,7,4,8,1,5,6,0,6,11,9,10,3,12,11,2,6,7,10,8,6,1,1,10,3,3,9,14,8,2,5,7,11,9,0,3,0,2,7,14,6,8,15,0,15,7,2,2,3,10,2,1,0,8,9,5,13,0,0,8,8,14,10,13,5,2,11,9,11,12,9,4,5,5,5,5,15,1,6,8,11,8,5,13,2,1,8,15,8,14,7,13,13,15,4,2,13,15,0,12,5,5,12,4,11,15,2,11,11,7,9,7,11,13,11,10,14,5,3,3,4,10,15,8,2,13,14,1,7,10,6,5,14,13,0,9,10,8,8,10,14,12,2,4,12,1,13,10,14,3,2,5,0,0,2,0,0,8,10,3,10,5,13,7,2,9,3,13,1,9,3,3,15,8,14,13,3,4,6,14,10,11,2,5,10,6,5,14,1,2,11,8,3,14,8,7,4,7,10,11,2,11,8,6,3,12,1,0,1,10,0,12,14,13,3,14,3,9,15,2,2,5,15,1,11,0,12,7,5,12,6,15,13,1,1,0,1,0,7,3,12,4,13,7,2,7,0,1,9,9,13,7,10,11,8,0,2,11,6,11,10,5,5,3,0,15,13,10,11,2,5,13,10,8,7,6,4,11,5,11,6,1,2,10,9,3,8,6,13,7,2,13,11,5,9,1,7,5,10,13,13,4,12,7,13,11,7,7,5,4,1,11,14,8,0,14,10,2,15,13,10,5,12,12,3,6,14,15,1,10,13,14,10,7,8,9,3,5,11,5,0,10,0,14,7,7,11,4,11,7,4,11,7,1,15,3,9,2,13,13,2,5,7,6,5,15,5,0,15,0,13,13,10,11,8,0,8,8,12,8,8,2,4,9,10,11,10,11,3,11,5,2,1,0,9,13,11,0,4,8,14,12,4,5,12,12,14,6,3,13,2,12,12,7,10,10,1,2,10,11,3,9,4,2,0,11,8,6,3,0,5,4,11,3,3,0,9,13,7,3,14,9,7,10,14,6,6,10,6,3,4,2,12,14,10,10,1,11,0,15,3,8,1,14,15,7,12,12,11,0,13,11,1,5,1,13,7,10,11,14,0,1,1,2,14,10,6,12,11,13,12,4,10,7,10,12,10,7,12,10,2,10,14,4,10,12,0,5,13,1,1,10,5,8,15,2,14,10,3,8,13,13,4,7,4,1,13,4,1,0,15,15,12,6,2,10,2,13,6,5,4,1,12,3,5,10,4,2,9,7,15,9,12,10,1,3,8,13,7,15,2,3,12,5,1,4,13,13,9,2,4,11,6,12,3,2,15,2,1,8,10,1,11,4,8,9,7,0,0,12,5,7,11,5,1,2,8,2,14,3,5,13,15,9,15,1,1,5,2,6,13,8,6,2,5,10,9,8,0,13,1,14,8,12,11,4,1,3,2,14,12,8,12,8,10,8,15,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"1\"], \"clip_start\": 318.0, \"clip_end\": 321.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q7_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,7,6,12,13,15,4,12,2,11,8,12,0,12,14,8,3,2,2,4,3,8,2,15,10,1,7,0,8,1,3,15,15,3,4,11,2,10,7,1,13,8,1,13,8,0,2,5,4,7,7,14,14,7,15,15,3,14,12,3,14,9,10,14,15,4,11,0,8,14,12,15,8,14,13,8,8,13,2,15,9,3,4,6,7,13,0,1,5,4,5,5,7,12,3,9,13,12,13,8,11,0,5,3,2,7,2,12,12,0,6,9,3,12,6,8,10,9,3,2,10,6,8,12,13,13,14,1,1,1,5,8,11,7,13,4,7,8,5,2,5,11,5,0,4,4,14,12,10,2,2,12,15,2,6,10,6,3,3,0,4,14,6,14,13,9,12,6,4,10,14,13,0,7,13,8,11,10,11,6,2,9,10,6,6,9,9,8,0,14,12,13,13,10,2,10,0,7,12,12,1,12,15,5,7,8,9,7,14,7,10,2,11,3,6,8,11,0,1,4,4,1,0,14,6,7,9,6,5,1,6,4,5,14,6,13,12,14,12,15,11,14,9,11,15,2,10,7,11,8,9,8,13,14,6,5,14,3,12,3,3,14,2,14,5,5,0,3,12,1,0,2,7,14,10,6,14,13,5,14,4,0,10,6,15,2,4,14,0,10,15,5,4,4,0,3,6,14,6,0,11,14,15,1,2,7,15,12,5,5,8,14,2,0,2,9,7,4,2,1,14,8,13,12,13,5,4,10,5,0,7,12,6,3,11,9,7,11,2,14,2,1,10,10,10,0,4,3,3,12,3,15,5,12,7,1,11,12,2,5,1,5,2,3,3,4,12,0,1,9,6,13,8,5,9,9,9,9,15,10,13,2,6,13,4,3,7,4,8,1,5,6,0,6,11,9,10,3,12,11,2,6,7,10,8,6,1,1,10,3,3,9,14,8,2,5,7,11,9,0,3,0,2,7,14,6,8,15,0,15,7,2,2,3,10,2,1,0,8,9,5,13,0,0,8,8,14,10,13,5,2,11,9,11,12,9,4,5,5,5,5,15,1,6,8,11,8,5,13,2,1,8,15,8,14,7,13,13,15,4,2,13,15,0,12,5,5,12,4,11,15,2,11,11,7,9,7,11,13,11,10,14,5,3,3,4,10,15,8,2,13,14,1,7,10,6,5,14,13,0,9,10,8,8,10,14,12,2,4,12,1,13,10,14,3,2,5,0,0,2,0,0,8,10,3,10,5,13,7,2,9,3,13,1,9,3,3,15,8,14,13,3,4,6,14,10,11,2,5,10,6,5,14,1,2,11,8,3,14,8,7,4,7,10,11,2,11,8,6,3,12,1,0,1,10,0,12,14,13,3,14,3,9,15,2,2,5,15,1,11,0,12,7,5,12,6,15,13,1,1,0,1,0,7,3,12,4,13,7,2,7,0,1,9,9,13,7,10,11,8,0,2,11,6,11,10,5,5,3,0,15,13,10,11,2,5,13,10,8,7,6,4,11,5,11,6,1,2,10,9,3,8,6,13,7,2,13,11,5,9,1,7,5,10,13,13,4,12,7,13,11,7,7,5,4,1,11,14,8,0,14,10,2,15,13,10,5,12,12,3,6,14,15,1,10,13,14,10,7,8,9,3,5,11,5,0,10,0,14,7,7,11,4,11,7,4,11,7,1,15,3,9,2,13,13,2,5,7,6,5,15,5,0,15,0,13,13,10,11,8,0,8,8,12,8,8,2,4,9,10,11,10,11,3,11,5,2,1,0,9,13,11,0,4,8,14,12,4,5,12,12,14,6,3,13,2,12,12,7,10,10,1,2,10,11,3,9,4,2,0,11,8,6,3,0,5,4,11,3,3,0,9,13,7,3,14,9,7,10,14,6,6,10,6,3,4,2,12,14,10,10,1,11,0,15,3,8,1,14,15,7,12,12,11,0,13,11,1,5,1,13,7,10,11,14,0,1,1,2,14,10,6,12,11,13,12,4,10,7,10,12,10,7,12,10,2,10,14,4,10,12,0,5,13,1,1,10,5,8,15,2,14,10,3,8,13,13,4,7,4,1,13,4,1,0,15,15,12,6,2,10,2,13,6,5,4,1,12,3,5,10,4,2,9,7,15,9,12,10,1,3,8,13,7,15,2,3,12,5,1,4,13,13,9,2,4,11,6,12,3,2,15,2,1,8,10,1,11,4,8,9,7,0,0,12,5,7,11,5,1,2,8,2,14,3,5,13,15,9,15,1,1,5,2,6,13,8,6,2,5,10,9,8,0,13,1,14,8,12,11,4,1,3,2,14,12,8,12,8,10,8,15,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"11\", \"11\", \"0\", \"11\", \"3\"], \"clip_start\": 889.0, \"clip_end\": 895.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q8_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,7,6,12,13,15,4,12,2,11,8,12,0,12,14,8,3,2,2,4,3,8,2,15,10,1,7,0,8,1,3,15,15,3,4,11,2,10,7,1,13,8,1,13,8,0,2,5,4,7,7,14,14,7,15,15,3,14,12,3,14,9,10,14,15,4,11,0,8,14,12,15,8,14,13,8,8,13,2,15,9,3,4,6,7,13,0,1,5,4,5,5,7,12,3,9,13,12,13,8,11,0,5,3,2,7,2,12,12,0,6,9,3,12,6,8,10,9,3,2,10,6,8,12,13,13,14,1,1,1,5,8,11,7,13,4,7,8,5,2,5,11,5,0,4,4,14,12,10,2,2,12,15,2,6,10,6,3,3,0,4,14,6,14,13,9,12,6,4,10,14,13,0,7,13,8,11,10,11,6,2,9,10,6,6,9,9,8,0,14,12,13,13,10,2,10,0,7,12,12,1,12,15,5,7,8,9,7,14,7,10,2,11,3,6,8,11,0,1,4,4,1,0,14,6,7,9,6,5,1,6,4,5,14,6,13,12,14,12,15,11,14,9,11,15,2,10,7,11,8,9,8,13,14,6,5,14,3,12,3,3,14,2,14,5,5,0,3,12,1,0,2,7,14,10,6,14,13,5,14,4,0,10,6,15,2,4,14,0,10,15,5,4,4,0,3,6,14,6,0,11,14,15,1,2,7,15,12,5,5,8,14,2,0,2,9,7,4,2,1,14,8,13,12,13,5,4,10,5,0,7,12,6,3,11,9,7,11,2,14,2,1,10,10,10,0,4,3,3,12,3,15,5,12,7,1,11,12,2,5,1,5,2,3,3,4,12,0,1,9,6,13,8,5,9,9,9,9,15,10,13,2,6,13,4,3,7,4,8,1,5,6,0,6,11,9,10,3,12,11,2,6,7,10,8,6,1,1,10,3,3,9,14,8,2,5,7,11,9,0,3,0,2,7,14,6,8,15,0,15,7,2,2,3,10,2,1,0,8,9,5,13,0,0,8,8,14,10,13,5,2,11,9,11,12,9,4,5,5,5,5,15,1,6,8,11,8,5,13,2,1,8,15,8,14,7,13,13,15,4,2,13,15,0,12,5,5,12,4,11,15,2,11,11,7,9,7,11,13,11,10,14,5,3,3,4,10,15,8,2,13,14,1,7,10,6,5,14,13,0,9,10,8,8,10,14,12,2,4,12,1,13,10,14,3,2,5,0,0,2,0,0,8,10,3,10,5,13,7,2,9,3,13,1,9,3,3,15,8,14,13,3,4,6,14,10,11,2,5,10,6,5,14,1,2,11,8,3,14,8,7,4,7,10,11,2,11,8,6,3,12,1,0,1,10,0,12,14,13,3,14,3,9,15,2,2,5,15,1,11,0,12,7,5,12,6,15,13,1,1,0,1,0,7,3,12,4,13,7,2,7,0,1,9,9,13,7,10,11,8,0,2,11,6,11,10,5,5,3,0,15,13,10,11,2,5,13,10,8,7,6,4,11,5,11,6,1,2,10,9,3,8,6,13,7,2,13,11,5,9,1,7,5,10,13,13,4,12,7,13,11,7,7,5,4,1,11,14,8,0,14,10,2,15,13,10,5,12,12,3,6,14,15,1,10,13,14,10,7,8,9,3,5,11,5,0,10,0,14,7,7,11,4,11,7,4,11,7,1,15,3,9,2,13,13,2,5,7,6,5,15,5,0,15,0,13,13,10,11,8,0,8,8,12,8,8,2,4,9,10,11,10,11,3,11,5,2,1,0,9,13,11,0,4,8,14,12,4,5,12,12,14,6,3,13,2,12,12,7,10,10,1,2,10,11,3,9,4,2,0,11,8,6,3,0,5,4,11,3,3,0,9,13,7,3,14,9,7,10,14,6,6,10,6,3,4,2,12,14,10,10,1,11,0,15,3,8,1,14,15,7,12,12,11,0,13,11,1,5,1,13,7,10,11,14,0,1,1,2,14,10,6,12,11,13,12,4,10,7,10,12,10,7,12,10,2,10,14,4,10,12,0,5,13,1,1,10,5,8,15,2,14,10,3,8,13,13,4,7,4,1,13,4,1,0,15,15,12,6,2,10,2,13,6,5,4,1,12,3,5,10,4,2,9,7,15,9,12,10,1,3,8,13,7,15,2,3,12,5,1,4,13,13,9,2,4,11,6,12,3,2,15,2,1,8,10,1,11,4,8,9,7,0,0,12,5,7,11,5,1,2,8,2,14,3,5,13,15,9,15,1,1,5,2,6,13,8,6,2,5,10,9,8,0,13,1,14,8,12,11,4,1,3,2,14,12,8,12,8,10,8,15,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"12\", \"0\", \"1\"], \"clip_start\": 724.0, \"clip_end\": 729.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q9_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,7,6,12,13,15,4,12,2,11,8,12,0,12,14,8,3,2,2,4,3,8,2,15,10,1,7,0,8,1,3,15,15,3,4,11,2,10,7,1,13,8,1,13,8,0,2,5,4,7,7,14,14,7,15,15,3,14,12,3,14,9,10,14,15,4,11,0,8,14,12,15,8,14,13,8,8,13,2,15,9,3,4,6,7,13,0,1,5,4,5,5,7,12,3,9,13,12,13,8,11,0,5,3,2,7,2,12,12,0,6,9,3,12,6,8,10,9,3,2,10,6,8,12,13,13,14,1,1,1,5,8,11,7,13,4,7,8,5,2,5,11,5,0,4,4,14,12,10,2,2,12,15,2,6,10,6,3,3,0,4,14,6,14,13,9,12,6,4,10,14,13,0,7,13,8,11,10,11,6,2,9,10,6,6,9,9,8,0,14,12,13,13,10,2,10,0,7,12,12,1,12,15,5,7,8,9,7,14,7,10,2,11,3,6,8,11,0,1,4,4,1,0,14,6,7,9,6,5,1,6,4,5,14,6,13,12,14,12,15,11,14,9,11,15,2,10,7,11,8,9,8,13,14,6,5,14,3,12,3,3,14,2,14,5,5,0,3,12,1,0,2,7,14,10,6,14,13,5,14,4,0,10,6,15,2,4,14,0,10,15,5,4,4,0,3,6,14,6,0,11,14,15,1,2,7,15,12,5,5,8,14,2,0,2,9,7,4,2,1,14,8,13,12,13,5,4,10,5,0,7,12,6,3,11,9,7,11,2,14,2,1,10,10,10,0,4,3,3,12,3,15,5,12,7,1,11,12,2,5,1,5,2,3,3,4,12,0,1,9,6,13,8,5,9,9,9,9,15,10,13,2,6,13,4,3,7,4,8,1,5,6,0,6,11,9,10,3,12,11,2,6,7,10,8,6,1,1,10,3,3,9,14,8,2,5,7,11,9,0,3,0,2,7,14,6,8,15,0,15,7,2,2,3,10,2,1,0,8,9,5,13,0,0,8,8,14,10,13,5,2,11,9,11,12,9,4,5,5,5,5,15,1,6,8,11,8,5,13,2,1,8,15,8,14,7,13,13,15,4,2,13,15,0,12,5,5,12,4,11,15,2,11,11,7,9,7,11,13,11,10,14,5,3,3,4,10,15,8,2,13,14,1,7,10,6,5,14,13,0,9,10,8,8,10,14,12,2,4,12,1,13,10,14,3,2,5,0,0,2,0,0,8,10,3,10,5,13,7,2,9,3,13,1,9,3,3,15,8,14,13,3,4,6,14,10,11,2,5,10,6,5,14,1,2,11,8,3,14,8,7,4,7,10,11,2,11,8,6,3,12,1,0,1,10,0,12,14,13,3,14,3,9,15,2,2,5,15,1,11,0,12,7,5,12,6,15,13,1,1,0,1,0,7,3,12,4,13,7,2,7,0,1,9,9,13,7,10,11,8,0,2,11,6,11,10,5,5,3,0,15,13,10,11,2,5,13,10,8,7,6,4,11,5,11,6,1,2,10,9,3,8,6,13,7,2,13,11,5,9,1,7,5,10,13,13,4,12,7,13,11,7,7,5,4,1,11,14,8,0,14,10,2,15,13,10,5,12,12,3,6,14,15,1,10,13,14,10,7,8,9,3,5,11,5,0,10,0,14,7,7,11,4,11,7,4,11,7,1,15,3,9,2,13,13,2,5,7,6,5,15,5,0,15,0,13,13,10,11,8,0,8,8,12,8,8,2,4,9,10,11,10,11,3,11,5,2,1,0,9,13,11,0,4,8,14,12,4,5,12,12,14,6,3,13,2,12,12,7,10,10,1,2,10,11,3,9,4,2,0,11,8,6,3,0,5,4,11,3,3,0,9,13,7,3,14,9,7,10,14,6,6,10,6,3,4,2,12,14,10,10,1,11,0,15,3,8,1,14,15,7,12,12,11,0,13,11,1,5,1,13,7,10,11,14,0,1,1,2,14,10,6,12,11,13,12,4,10,7,10,12,10,7,12,10,2,10,14,4,10,12,0,5,13,1,1,10,5,8,15,2,14,10,3,8,13,13,4,7,4,1,13,4,1,0,15,15,12,6,2,10,2,13,6,5,4,1,12,3,5,10,4,2,9,7,15,9,12,10,1,3,8,13,7,15,2,3,12,5,1,4,13,13,9,2,4,11,6,12,3,2,15,2,1,8,10,1,11,4,8,9,7,0,0,12,5,7,11,5,1,2,8,2,14,3,5,13,15,9,15,1,1,5,2,6,13,8,6,2,5,10,9,8,0,13,1,14,8,12,11,4,1,3,2,14,12,8,12,8,10,8,15,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"7\"], \"clip_start\": 326.0, \"clip_end\": 329.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q10_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,7,6,12,13,15,4,12,2,11,8,12,0,12,14,8,3,2,2,4,3,8,2,15,10,1,7,0,8,1,3,15,15,3,4,11,2,10,7,1,13,8,1,13,8,0,2,5,4,7,7,14,14,7,15,15,3,14,12,3,14,9,10,14,15,4,11,0,8,14,12,15,8,14,13,8,8,13,2,15,9,3,4,6,7,13,0,1,5,4,5,5,7,12,3,9,13,12,13,8,11,0,5,3,2,7,2,12,12,0,6,9,3,12,6,8,10,9,3,2,10,6,8,12,13,13,14,1,1,1,5,8,11,7,13,4,7,8,5,2,5,11,5,0,4,4,14,12,10,2,2,12,15,2,6,10,6,3,3,0,4,14,6,14,13,9,12,6,4,10,14,13,0,7,13,8,11,10,11,6,2,9,10,6,6,9,9,8,0,14,12,13,13,10,2,10,0,7,12,12,1,12,15,5,7,8,9,7,14,7,10,2,11,3,6,8,11,0,1,4,4,1,0,14,6,7,9,6,5,1,6,4,5,14,6,13,12,14,12,15,11,14,9,11,15,2,10,7,11,8,9,8,13,14,6,5,14,3,12,3,3,14,2,14,5,5,0,3,12,1,0,2,7,14,10,6,14,13,5,14,4,0,10,6,15,2,4,14,0,10,15,5,4,4,0,3,6,14,6,0,11,14,15,1,2,7,15,12,5,5,8,14,2,0,2,9,7,4,2,1,14,8,13,12,13,5,4,10,5,0,7,12,6,3,11,9,7,11,2,14,2,1,10,10,10,0,4,3,3,12,3,15,5,12,7,1,11,12,2,5,1,5,2,3,3,4,12,0,1,9,6,13,8,5,9,9,9,9,15,10,13,2,6,13,4,3,7,4,8,1,5,6,0,6,11,9,10,3,12,11,2,6,7,10,8,6,1,1,10,3,3,9,14,8,2,5,7,11,9,0,3,0,2,7,14,6,8,15,0,15,7,2,2,3,10,2,1,0,8,9,5,13,0,0,8,8,14,10,13,5,2,11,9,11,12,9,4,5,5,5,5,15,1,6,8,11,8,5,13,2,1,8,15,8,14,7,13,13,15,4,2,13,15,0,12,5,5,12,4,11,15,2,11,11,7,9,7,11,13,11,10,14,5,3,3,4,10,15,8,2,13,14,1,7,10,6,5,14,13,0,9,10,8,8,10,14,12,2,4,12,1,13,10,14,3,2,5,0,0,2,0,0,8,10,3,10,5,13,7,2,9,3,13,1,9,3,3,15,8,14,13,3,4,6,14,10,11,2,5,10,6,5,14,1,2,11,8,3,14,8,7,4,7,10,11,2,11,8,6,3,12,1,0,1,10,0,12,14,13,3,14,3,9,15,2,2,5,15,1,11,0,12,7,5,12,6,15,13,1,1,0,1,0,7,3,12,4,13,7,2,7,0,1,9,9,13,7,10,11,8,0,2,11,6,11,10,5,5,3,0,15,13,10,11,2,5,13,10,8,7,6,4,11,5,11,6,1,2,10,9,3,8,6,13,7,2,13,11,5,9,1,7,5,10,13,13,4,12,7,13,11,7,7,5,4,1,11,14,8,0,14,10,2,15,13,10,5,12,12,3,6,14,15,1,10,13,14,10,7,8,9,3,5,11,5,0,10,0,14,7,7,11,4,11,7,4,11,7,1,15,3,9,2,13,13,2,5,7,6,5,15,5,0,15,0,13,13,10,11,8,0,8,8,12,8,8,2,4,9,10,11,10,11,3,11,5,2,1,0,9,13,11,0,4,8,14,12,4,5,12,12,14,6,3,13,2,12,12,7,10,10,1,2,10,11,3,9,4,2,0,11,8,6,3,0,5,4,11,3,3,0,9,13,7,3,14,9,7,10,14,6,6,10,6,3,4,2,12,14,10,10,1,11,0,15,3,8,1,14,15,7,12,12,11,0,13,11,1,5,1,13,7,10,11,14,0,1,1,2,14,10,6,12,11,13,12,4,10,7,10,12,10,7,12,10,2,10,14,4,10,12,0,5,13,1,1,10,5,8,15,2,14,10,3,8,13,13,4,7,4,1,13,4,1,0,15,15,12,6,2,10,2,13,6,5,4,1,12,3,5,10,4,2,9,7,15,9,12,10,1,3,8,13,7,15,2,3,12,5,1,4,13,13,9,2,4,11,6,12,3,2,15,2,1,8,10,1,11,4,8,9,7,0,0,12,5,7,11,5,1,2,8,2,14,3,5,13,15,9,15,1,1,5,2,6,13,8,6,2,5,10,9,8,0,13,1,14,8,12,11,4,1,3,2,14,12,8,12,8,10,8,15,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"5\", \"10\", \"9\", \"8\"], \"clip_start\": 998.0, \"clip_end\": 1004.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q11_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,7,6,12,13,15,4,12,2,11,8,12,0,12,14,8,3,2,2,4,3,8,2,15,10,1,7,0,8,1,3,15,15,3,4,11,2,10,7,1,13,8,1,13,8,0,2,5,4,7,7,14,14,7,15,15,3,14,12,3,14,9,10,14,15,4,11,0,8,14,12,15,8,14,13,8,8,13,2,15,9,3,4,6,7,13,0,1,5,4,5,5,7,12,3,9,13,12,13,8,11,0,5,3,2,7,2,12,12,0,6,9,3,12,6,8,10,9,3,2,10,6,8,12,13,13,14,1,1,1,5,8,11,7,13,4,7,8,5,2,5,11,5,0,4,4,14,12,10,2,2,12,15,2,6,10,6,3,3,0,4,14,6,14,13,9,12,6,4,10,14,13,0,7,13,8,11,10,11,6,2,9,10,6,6,9,9,8,0,14,12,13,13,10,2,10,0,7,12,12,1,12,15,5,7,8,9,7,14,7,10,2,11,3,6,8,11,0,1,4,4,1,0,14,6,7,9,6,5,1,6,4,5,14,6,13,12,14,12,15,11,14,9,11,15,2,10,7,11,8,9,8,13,14,6,5,14,3,12,3,3,14,2,14,5,5,0,3,12,1,0,2,7,14,10,6,14,13,5,14,4,0,10,6,15,2,4,14,0,10,15,5,4,4,0,3,6,14,6,0,11,14,15,1,2,7,15,12,5,5,8,14,2,0,2,9,7,4,2,1,14,8,13,12,13,5,4,10,5,0,7,12,6,3,11,9,7,11,2,14,2,1,10,10,10,0,4,3,3,12,3,15,5,12,7,1,11,12,2,5,1,5,2,3,3,4,12,0,1,9,6,13,8,5,9,9,9,9,15,10,13,2,6,13,4,3,7,4,8,1,5,6,0,6,11,9,10,3,12,11,2,6,7,10,8,6,1,1,10,3,3,9,14,8,2,5,7,11,9,0,3,0,2,7,14,6,8,15,0,15,7,2,2,3,10,2,1,0,8,9,5,13,0,0,8,8,14,10,13,5,2,11,9,11,12,9,4,5,5,5,5,15,1,6,8,11,8,5,13,2,1,8,15,8,14,7,13,13,15,4,2,13,15,0,12,5,5,12,4,11,15,2,11,11,7,9,7,11,13,11,10,14,5,3,3,4,10,15,8,2,13,14,1,7,10,6,5,14,13,0,9,10,8,8,10,14,12,2,4,12,1,13,10,14,3,2,5,0,0,2,0,0,8,10,3,10,5,13,7,2,9,3,13,1,9,3,3,15,8,14,13,3,4,6,14,10,11,2,5,10,6,5,14,1,2,11,8,3,14,8,7,4,7,10,11,2,11,8,6,3,12,1,0,1,10,0,12,14,13,3,14,3,9,15,2,2,5,15,1,11,0,12,7,5,12,6,15,13,1,1,0,1,0,7,3,12,4,13,7,2,7,0,1,9,9,13,7,10,11,8,0,2,11,6,11,10,5,5,3,0,15,13,10,11,2,5,13,10,8,7,6,4,11,5,11,6,1,2,10,9,3,8,6,13,7,2,13,11,5,9,1,7,5,10,13,13,4,12,7,13,11,7,7,5,4,1,11,14,8,0,14,10,2,15,13,10,5,12,12,3,6,14,15,1,10,13,14,10,7,8,9,3,5,11,5,0,10,0,14,7,7,11,4,11,7,4,11,7,1,15,3,9,2,13,13,2,5,7,6,5,15,5,0,15,0,13,13,10,11,8,0,8,8,12,8,8,2,4,9,10,11,10,11,3,11,5,2,1,0,9,13,11,0,4,8,14,12,4,5,12,12,14,6,3,13,2,12,12,7,10,10,1,2,10,11,3,9,4,2,0,11,8,6,3,0,5,4,11,3,3,0,9,13,7,3,14,9,7,10,14,6,6,10,6,3,4,2,12,14,10,10,1,11,0,15,3,8,1,14,15,7,12,12,11,0,13,11,1,5,1,13,7,10,11,14,0,1,1,2,14,10,6,12,11,13,12,4,10,7,10,12,10,7,12,10,2,10,14,4,10,12,0,5,13,1,1,10,5,8,15,2,14,10,3,8,13,13,4,7,4,1,13,4,1,0,15,15,12,6,2,10,2,13,6,5,4,1,12,3,5,10,4,2,9,7,15,9,12,10,1,3,8,13,7,15,2,3,12,5,1,4,13,13,9,2,4,11,6,12,3,2,15,2,1,8,10,1,11,4,8,9,7,0,0,12,5,7,11,5,1,2,8,2,14,3,5,13,15,9,15,1,1,5,2,6,13,8,6,2,5,10,9,8,0,13,1,14,8,12,11,4,1,3,2,14,12,8,12,8,10,8,15,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"8\", \"3\", \"14\"], \"clip_start\": 576.0, \"clip_end\": 580.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,7,6,12,13,15,4,12,2,11,8,12,0,12,14,8,3,2,2,4,3,8,2,15,10,1,7,0,8,1,3,15,15,3,4,11,2,10,7,1,13,8,1,13,8,0,2,5,4,7,7,14,14,7,15,15,3,14,12,3,14,9,10,14,15,4,11,0,8,14,12,15,8,14,13,8,8,13,2,15,9,3,4,6,7,13,0,1,5,4,5,5,7,12,3,9,13,12,13,8,11,0,5,3,2,7,2,12,12,0,6,9,3,12,6,8,10,9,3,2,10,6,8,12,13,13,14,1,1,1,5,8,11,7,13,4,7,8,5,2,5,11,5,0,4,4,14,12,10,2,2,12,15,2,6,10,6,3,3,0,4,14,6,14,13,9,12,6,4,10,14,13,0,7,13,8,11,10,11,6,2,9,10,6,6,9,9,8,0,14,12,13,13,10,2,10,0,7,12,12,1,12,15,5,7,8,9,7,14,7,10,2,11,3,6,8,11,0,1,4,4,1,0,14,6,7,9,6,5,1,6,4,5,14,6,13,12,14,12,15,11,14,9,11,15,2,10,7,11,8,9,8,13,14,6,5,14,3,12,3,3,14,2,14,5,5,0,3,12,1,0,2,7,14,10,6,14,13,5,14,4,0,10,6,15,2,4,14,0,10,15,5,4,4,0,3,6,14,6,0,11,14,15,1,2,7,15,12,5,5,8,14,2,0,2,9,7,4,2,1,14,8,13,12,13,5,4,10,5,0,7,12,6,3,11,9,7,11,2,14,2,1,10,10,10,0,4,3,3,12,3,15,5,12,7,1,11,12,2,5,1,5,2,3,3,4,12,0,1,9,6,13,8,5,9,9,9,9,15,10,13,2,6,13,4,3,7,4,8,1,5,6,0,6,11,9,10,3,12,11,2,6,7,10,8,6,1,1,10,3,3,9,14,8,2,5,7,11,9,0,3,0,2,7,14,6,8,15,0,15,7,2,2,3,10,2,1,0,8,9,5,13,0,0,8,8,14,10,13,5,2,11,9,11,12,9,4,5,5,5,5,15,1,6,8,11,8,5,13,2,1,8,15,8,14,7,13,13,15,4,2,13,15,0,12,5,5,12,4,11,15,2,11,11,7,9,7,11,13,11,10,14,5,3,3,4,10,15,8,2,13,14,1,7,10,6,5,14,13,0,9,10,8,8,10,14,12,2,4,12,1,13,10,14,3,2,5,0,0,2,0,0,8,10,3,10,5,13,7,2,9,3,13,1,9,3,3,15,8,14,13,3,4,6,14,10,11,2,5,10,6,5,14,1,2,11,8,3,14,8,7,4,7,10,11,2,11,8,6,3,12,1,0,1,10,0,12,14,13,3,14,3,9,15,2,2,5,15,1,11,0,12,7,5,12,6,15,13,1,1,0,1,0,7,3,12,4,13,7,2,7,0,1,9,9,13,7,10,11,8,0,2,11,6,11,10,5,5,3,0,15,13,10,11,2,5,13,10,8,7,6,4,11,5,11,6,1,2,10,9,3,8,6,13,7,2,13,11,5,9,1,7,5,10,13,13,4,12,7,13,11,7,7,5,4,1,11,14,8,0,14,10,2,15,13,10,5,12,12,3,6,14,15,1,10,13,14,10,7,8,9,3,5,11,5,0,10,0,14,7,7,11,4,11,7,4,11,7,1,15,3,9,2,13,13,2,5,7,6,5,15,5,0,15,0,13,13,10,11,8,0,8,8,12,8,8,2,4,9,10,11,10,11,3,11,5,2,1,0,9,13,11,0,4,8,14,12,4,5,12,12,14,6,3,13,2,12,12,7,10,10,1,2,10,11,3,9,4,2,0,11,8,6,3,0,5,4,11,3,3,0,9,13,7,3,14,9,7,10,14,6,6,10,6,3,4,2,12,14,10,10,1,11,0,15,3,8,1,14,15,7,12,12,11,0,13,11,1,5,1,13,7,10,11,14,0,1,1,2,14,10,6,12,11,13,12,4,10,7,10,12,10,7,12,10,2,10,14,4,10,12,0,5,13,1,1,10,5,8,15,2,14,10,3,8,13,13,4,7,4,1,13,4,1,0,15,15,12,6,2,10,2,13,6,5,4,1,12,3,5,10,4,2,9,7,15,9,12,10,1,3,8,13,7,15,2,3,12,5,1,4,13,13,9,2,4,11,6,12,3,2,15,2,1,8,10,1,11,4,8,9,7,0,0,12,5,7,11,5,1,2,8,2,14,3,5,13,15,9,15,1,1,5,2,6,13,8,6,2,5,10,9,8,0,13,1,14,8,12,11,4,1,3,2,14,12,8,12,8,10,8,15,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"11\", \"1\"], \"clip_start\": 456.0, \"clip_end\": 459.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q13_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,7,6,12,13,15,4,12,2,11,8,12,0,12,14,8,3,2,2,4,3,8,2,15,10,1,7,0,8,1,3,15,15,3,4,11,2,10,7,1,13,8,1,13,8,0,2,5,4,7,7,14,14,7,15,15,3,14,12,3,14,9,10,14,15,4,11,0,8,14,12,15,8,14,13,8,8,13,2,15,9,3,4,6,7,13,0,1,5,4,5,5,7,12,3,9,13,12,13,8,11,0,5,3,2,7,2,12,12,0,6,9,3,12,6,8,10,9,3,2,10,6,8,12,13,13,14,1,1,1,5,8,11,7,13,4,7,8,5,2,5,11,5,0,4,4,14,12,10,2,2,12,15,2,6,10,6,3,3,0,4,14,6,14,13,9,12,6,4,10,14,13,0,7,13,8,11,10,11,6,2,9,10,6,6,9,9,8,0,14,12,13,13,10,2,10,0,7,12,12,1,12,15,5,7,8,9,7,14,7,10,2,11,3,6,8,11,0,1,4,4,1,0,14,6,7,9,6,5,1,6,4,5,14,6,13,12,14,12,15,11,14,9,11,15,2,10,7,11,8,9,8,13,14,6,5,14,3,12,3,3,14,2,14,5,5,0,3,12,1,0,2,7,14,10,6,14,13,5,14,4,0,10,6,15,2,4,14,0,10,15,5,4,4,0,3,6,14,6,0,11,14,15,1,2,7,15,12,5,5,8,14,2,0,2,9,7,4,2,1,14,8,13,12,13,5,4,10,5,0,7,12,6,3,11,9,7,11,2,14,2,1,10,10,10,0,4,3,3,12,3,15,5,12,7,1,11,12,2,5,1,5,2,3,3,4,12,0,1,9,6,13,8,5,9,9,9,9,15,10,13,2,6,13,4,3,7,4,8,1,5,6,0,6,11,9,10,3,12,11,2,6,7,10,8,6,1,1,10,3,3,9,14,8,2,5,7,11,9,0,3,0,2,7,14,6,8,15,0,15,7,2,2,3,10,2,1,0,8,9,5,13,0,0,8,8,14,10,13,5,2,11,9,11,12,9,4,5,5,5,5,15,1,6,8,11,8,5,13,2,1,8,15,8,14,7,13,13,15,4,2,13,15,0,12,5,5,12,4,11,15,2,11,11,7,9,7,11,13,11,10,14,5,3,3,4,10,15,8,2,13,14,1,7,10,6,5,14,13,0,9,10,8,8,10,14,12,2,4,12,1,13,10,14,3,2,5,0,0,2,0,0,8,10,3,10,5,13,7,2,9,3,13,1,9,3,3,15,8,14,13,3,4,6,14,10,11,2,5,10,6,5,14,1,2,11,8,3,14,8,7,4,7,10,11,2,11,8,6,3,12,1,0,1,10,0,12,14,13,3,14,3,9,15,2,2,5,15,1,11,0,12,7,5,12,6,15,13,1,1,0,1,0,7,3,12,4,13,7,2,7,0,1,9,9,13,7,10,11,8,0,2,11,6,11,10,5,5,3,0,15,13,10,11,2,5,13,10,8,7,6,4,11,5,11,6,1,2,10,9,3,8,6,13,7,2,13,11,5,9,1,7,5,10,13,13,4,12,7,13,11,7,7,5,4,1,11,14,8,0,14,10,2,15,13,10,5,12,12,3,6,14,15,1,10,13,14,10,7,8,9,3,5,11,5,0,10,0,14,7,7,11,4,11,7,4,11,7,1,15,3,9,2,13,13,2,5,7,6,5,15,5,0,15,0,13,13,10,11,8,0,8,8,12,8,8,2,4,9,10,11,10,11,3,11,5,2,1,0,9,13,11,0,4,8,14,12,4,5,12,12,14,6,3,13,2,12,12,7,10,10,1,2,10,11,3,9,4,2,0,11,8,6,3,0,5,4,11,3,3,0,9,13,7,3,14,9,7,10,14,6,6,10,6,3,4,2,12,14,10,10,1,11,0,15,3,8,1,14,15,7,12,12,11,0,13,11,1,5,1,13,7,10,11,14,0,1,1,2,14,10,6,12,11,13,12,4,10,7,10,12,10,7,12,10,2,10,14,4,10,12,0,5,13,1,1,10,5,8,15,2,14,10,3,8,13,13,4,7,4,1,13,4,1,0,15,15,12,6,2,10,2,13,6,5,4,1,12,3,5,10,4,2,9,7,15,9,12,10,1,3,8,13,7,15,2,3,12,5,1,4,13,13,9,2,4,11,6,12,3,2,15,2,1,8,10,1,11,4,8,9,7,0,0,12,5,7,11,5,1,2,8,2,14,3,5,13,15,9,15,1,1,5,2,6,13,8,6,2,5,10,9,8,0,13,1,14,8,12,11,4,1,3,2,14,12,8,12,8,10,8,15,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"5\", \"10\", \"4\", \"2\"], \"clip_start\": 928.0, \"clip_end\": 934.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q14_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,7,6,12,13,15,4,12,2,11,8,12,0,12,14,8,3,2,2,4,3,8,2,15,10,1,7,0,8,1,3,15,15,3,4,11,2,10,7,1,13,8,1,13,8,0,2,5,4,7,7,14,14,7,15,15,3,14,12,3,14,9,10,14,15,4,11,0,8,14,12,15,8,14,13,8,8,13,2,15,9,3,4,6,7,13,0,1,5,4,5,5,7,12,3,9,13,12,13,8,11,0,5,3,2,7,2,12,12,0,6,9,3,12,6,8,10,9,3,2,10,6,8,12,13,13,14,1,1,1,5,8,11,7,13,4,7,8,5,2,5,11,5,0,4,4,14,12,10,2,2,12,15,2,6,10,6,3,3,0,4,14,6,14,13,9,12,6,4,10,14,13,0,7,13,8,11,10,11,6,2,9,10,6,6,9,9,8,0,14,12,13,13,10,2,10,0,7,12,12,1,12,15,5,7,8,9,7,14,7,10,2,11,3,6,8,11,0,1,4,4,1,0,14,6,7,9,6,5,1,6,4,5,14,6,13,12,14,12,15,11,14,9,11,15,2,10,7,11,8,9,8,13,14,6,5,14,3,12,3,3,14,2,14,5,5,0,3,12,1,0,2,7,14,10,6,14,13,5,14,4,0,10,6,15,2,4,14,0,10,15,5,4,4,0,3,6,14,6,0,11,14,15,1,2,7,15,12,5,5,8,14,2,0,2,9,7,4,2,1,14,8,13,12,13,5,4,10,5,0,7,12,6,3,11,9,7,11,2,14,2,1,10,10,10,0,4,3,3,12,3,15,5,12,7,1,11,12,2,5,1,5,2,3,3,4,12,0,1,9,6,13,8,5,9,9,9,9,15,10,13,2,6,13,4,3,7,4,8,1,5,6,0,6,11,9,10,3,12,11,2,6,7,10,8,6,1,1,10,3,3,9,14,8,2,5,7,11,9,0,3,0,2,7,14,6,8,15,0,15,7,2,2,3,10,2,1,0,8,9,5,13,0,0,8,8,14,10,13,5,2,11,9,11,12,9,4,5,5,5,5,15,1,6,8,11,8,5,13,2,1,8,15,8,14,7,13,13,15,4,2,13,15,0,12,5,5,12,4,11,15,2,11,11,7,9,7,11,13,11,10,14,5,3,3,4,10,15,8,2,13,14,1,7,10,6,5,14,13,0,9,10,8,8,10,14,12,2,4,12,1,13,10,14,3,2,5,0,0,2,0,0,8,10,3,10,5,13,7,2,9,3,13,1,9,3,3,15,8,14,13,3,4,6,14,10,11,2,5,10,6,5,14,1,2,11,8,3,14,8,7,4,7,10,11,2,11,8,6,3,12,1,0,1,10,0,12,14,13,3,14,3,9,15,2,2,5,15,1,11,0,12,7,5,12,6,15,13,1,1,0,1,0,7,3,12,4,13,7,2,7,0,1,9,9,13,7,10,11,8,0,2,11,6,11,10,5,5,3,0,15,13,10,11,2,5,13,10,8,7,6,4,11,5,11,6,1,2,10,9,3,8,6,13,7,2,13,11,5,9,1,7,5,10,13,13,4,12,7,13,11,7,7,5,4,1,11,14,8,0,14,10,2,15,13,10,5,12,12,3,6,14,15,1,10,13,14,10,7,8,9,3,5,11,5,0,10,0,14,7,7,11,4,11,7,4,11,7,1,15,3,9,2,13,13,2,5,7,6,5,15,5,0,15,0,13,13,10,11,8,0,8,8,12,8,8,2,4,9,10,11,10,11,3,11,5,2,1,0,9,13,11,0,4,8,14,12,4,5,12,12,14,6,3,13,2,12,12,7,10,10,1,2,10,11,3,9,4,2,0,11,8,6,3,0,5,4,11,3,3,0,9,13,7,3,14,9,7,10,14,6,6,10,6,3,4,2,12,14,10,10,1,11,0,15,3,8,1,14,15,7,12,12,11,0,13,11,1,5,1,13,7,10,11,14,0,1,1,2,14,10,6,12,11,13,12,4,10,7,10,12,10,7,12,10,2,10,14,4,10,12,0,5,13,1,1,10,5,8,15,2,14,10,3,8,13,13,4,7,4,1,13,4,1,0,15,15,12,6,2,10,2,13,6,5,4,1,12,3,5,10,4,2,9,7,15,9,12,10,1,3,8,13,7,15,2,3,12,5,1,4,13,13,9,2,4,11,6,12,3,2,15,2,1,8,10,1,11,4,8,9,7,0,0,12,5,7,11,5,1,2,8,2,14,3,5,13,15,9,15,1,1,5,2,6,13,8,6,2,5,10,9,8,0,13,1,14,8,12,11,4,1,3,2,14,12,8,12,8,10,8,15,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"9\", \"0\"], \"clip_start\": 763.0, \"clip_end\": 767.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q15_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,11,7,6,12,13,15,4,12,2,11,8,12,0,12,14,8,3,2,2,4,3,8,2,15,10,1,7,0,8,1,3,15,15,3,4,11,2,10,7,1,13,8,1,13,8,0,2,5,4,7,7,14,14,7,15,15,3,14,12,3,14,9,10,14,15,4,11,0,8,14,12,15,8,14,13,8,8,13,2,15,9,3,4,6,7,13,0,1,5,4,5,5,7,12,3,9,13,12,13,8,11,0,5,3,2,7,2,12,12,0,6,9,3,12,6,8,10,9,3,2,10,6,8,12,13,13,14,1,1,1,5,8,11,7,13,4,7,8,5,2,5,11,5,0,4,4,14,12,10,2,2,12,15,2,6,10,6,3,3,0,4,14,6,14,13,9,12,6,4,10,14,13,0,7,13,8,11,10,11,6,2,9,10,6,6,9,9,8,0,14,12,13,13,10,2,10,0,7,12,12,1,12,15,5,7,8,9,7,14,7,10,2,11,3,6,8,11,0,1,4,4,1,0,14,6,7,9,6,5,1,6,4,5,14,6,13,12,14,12,15,11,14,9,11,15,2,10,7,11,8,9,8,13,14,6,5,14,3,12,3,3,14,2,14,5,5,0,3,12,1,0,2,7,14,10,6,14,13,5,14,4,0,10,6,15,2,4,14,0,10,15,5,4,4,0,3,6,14,6,0,11,14,15,1,2,7,15,12,5,5,8,14,2,0,2,9,7,4,2,1,14,8,13,12,13,5,4,10,5,0,7,12,6,3,11,9,7,11,2,14,2,1,10,10,10,0,4,3,3,12,3,15,5,12,7,1,11,12,2,5,1,5,2,3,3,4,12,0,1,9,6,13,8,5,9,9,9,9,15,10,13,2,6,13,4,3,7,4,8,1,5,6,0,6,11,9,10,3,12,11,2,6,7,10,8,6,1,1,10,3,3,9,14,8,2,5,7,11,9,0,3,0,2,7,14,6,8,15,0,15,7,2,2,3,10,2,1,0,8,9,5,13,0,0,8,8,14,10,13,5,2,11,9,11,12,9,4,5,5,5,5,15,1,6,8,11,8,5,13,2,1,8,15,8,14,7,13,13,15,4,2,13,15,0,12,5,5,12,4,11,15,2,11,11,7,9,7,11,13,11,10,14,5,3,3,4,10,15,8,2,13,14,1,7,10,6,5,14,13,0,9,10,8,8,10,14,12,2,4,12,1,13,10,14,3,2,5,0,0,2,0,0,8,10,3,10,5,13,7,2,9,3,13,1,9,3,3,15,8,14,13,3,4,6,14,10,11,2,5,10,6,5,14,1,2,11,8,3,14,8,7,4,7,10,11,2,11,8,6,3,12,1,0,1,10,0,12,14,13,3,14,3,9,15,2,2,5,15,1,11,0,12,7,5,12,6,15,13,1,1,0,1,0,7,3,12,4,13,7,2,7,0,1,9,9,13,7,10,11,8,0,2,11,6,11,10,5,5,3,0,15,13,10,11,2,5,13,10,8,7,6,4,11,5,11,6,1,2,10,9,3,8,6,13,7,2,13,11,5,9,1,7,5,10,13,13,4,12,7,13,11,7,7,5,4,1,11,14,8,0,14,10,2,15,13,10,5,12,12,3,6,14,15,1,10,13,14,10,7,8,9,3,5,11,5,0,10,0,14,7,7,11,4,11,7,4,11,7,1,15,3,9,2,13,13,2,5,7,6,5,15,5,0,15,0,13,13,10,11,8,0,8,8,12,8,8,2,4,9,10,11,10,11,3,11,5,2,1,0,9,13,11,0,4,8,14,12,4,5,12,12,14,6,3,13,2,12,12,7,10,10,1,2,10,11,3,9,4,2,0,11,8,6,3,0,5,4,11,3,3,0,9,13,7,3,14,9,7,10,14,6,6,10,6,3,4,2,12,14,10,10,1,11,0,15,3,8,1,14,15,7,12,12,11,0,13,11,1,5,1,13,7,10,11,14,0,1,1,2,14,10,6,12,11,13,12,4,10,7,10,12,10,7,12,10,2,10,14,4,10,12,0,5,13,1,1,10,5,8,15,2,14,10,3,8,13,13,4,7,4,1,13,4,1,0,15,15,12,6,2,10,2,13,6,5,4,1,12,3,5,10,4,2,9,7,15,9,12,10,1,3,8,13,7,15,2,3,12,5,1,4,13,13,9,2,4,11,6,12,3,2,15,2,1,8,10,1,11,4,8,9,7,0,0,12,5,7,11,5,1,2,8,2,14,3,5,13,15,9,15,1,1,5,2,6,13,8,6,2,5,10,9,8,0,13,1,14,8,12,11,4,1,3,2,14,12,8,12,8,10,8,15,14", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"3\", \"12\", \"7\"], \"clip_start\": 745.0, \"clip_end\": 750.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,5,13,12,4,15,9,7,2,15,7,15,9,10,13,5,2,10,7,10,1,14,7,8,3,4,13,12,10,6,2,9,8,12,1,9,8,8,3,8,14,12,3,0,9,5,8,9,4,6,9,7,15,14,3,6,2,15,11,13,0,14,11,0,12,12,4,14,9,10,10,14,15,14,13,13,1,3,12,12,7,8,13,7,6,10,13,5,12,15,5,14,2,12,5,13,4,9,4,4,2,12,13,2,6,7,10,10,1,11,12,3,12,10,7,12,12,15,14,10,11,9,12,12,2,3,11,3,10,7,7,2,3,15,15,14,0,3,0,7,6,6,5,4,14,3,7,12,15,7,12,0,10,7,11,2,7,9,12,15,7,4,12,10,5,0,3,13,6,8,9,15,7,7,2,2,12,13,9,10,3,5,11,15,8,15,8,7,13,14,5,8,5,12,14,4,8,0,14,6,4,3,12,13,6,0,5,9,2,2,10,13,1,6,15,8,14,3,1,5,12,11,9,14,14,7,11,10,10,6,4,4,5,14,4,8,1,6,13,4,4,12,9,3,14,15,4,11,0,5,12,4,0,3,8,11,2,12,3,12,15,15,10,13,0,4,8,1,10,5,4,4,2,8,5,2,0,3,1,3,6,3,4,2,1,3,12,6,6,2,15,6,11,7,3,10,9,9,15,12,7,7,6,0,6,4,8,7,15,13,4,0,6,3,4,6,9,11,0,0,12,5,7,6,6,1,7,10,8,11,10,13,12,1,10,11,11,2,8,11,15,7,5,9,12,11,7,10,7,1,13,11,15,14,11,12,15,1,8,13,12,11,5,6,13,13,4,9,9,3,5,8,8,7,11,9,10,6,0,15,8,6,10,15,9,7,4,8,15,12,5,7,0,14,2,15,14,10,1,13,2,4,6,13,1,7,14,4,15,11,14,1,4,13,13,3,8,7,4,15,6,12,0,3,13,10,9,4,13,1,4,14,1,3,7,10,8,8,7,0,14,8,9,1,1,7,6,12,15,6,8,15,0,1,1,2,14,5,7,14,15,6,10,1,6,3,13,8,8,12,7,7,11,11,2,11,8,8,1,5,5,3,9,2,13,4,13,3,15,8,14,8,8,0,1,8,13,12,13,0,6,2,13,7,13,8,0,10,2,10,2,0,9,6,4,0,15,14,0,1,9,6,9,2,2,0,2,13,1,0,12,6,4,2,12,5,12,15,8,15,0,14,0,8,14,4,8,15,8,13,11,5,12,4,14,15,2,0,3,5,5,2,6,8,11,3,10,4,10,0,14,12,0,5,8,11,15,12,10,4,4,13,15,2,2,7,8,13,14,7,4,15,0,11,5,5,0,14,13,9,2,13,12,2,15,3,0,11,2,14,11,7,3,0,14,7,6,7,9,11,4,15,6,15,6,12,0,8,0,10,6,13,14,13,7,11,4,12,4,9,7,10,0,13,1,7,2,6,6,0,2,7,15,12,9,6,5,2,12,7,14,8,10,3,10,15,6,4,0,4,6,1,0,12,3,14,9,15,7,13,8,9,1,0,4,7,11,7,13,5,1,9,9,5,6,12,6,14,5,0,15,6,3,13,10,4,0,7,9,10,11,5,10,0,10,4,15,1,10,6,12,13,11,14,9,1,13,13,11,4,12,13,7,0,13,7,2,15,15,0,1,8,9,6,15,15,3,12,7,3,8,9,0,5,2,11,11,4,4,2,11,1,0,0,3,13,8,5,4,3,7,8,12,2,11,14,15,13,2,13,8,11,14,14,13,1,9,4,8,13,14,13,6,15,12,14,12,12,5,2,8,14,12,8,1,9,12,2,3,13,0,13,2,4,9,7,14,3,1,15,3,5,10,0,8,0,12,9,0,6,14,9,3,2,5,3,10,1,10,14,0,0,5,4,8,1,0,14,13,10,13,11,15,8,9,7,11,13,15,15,15,3,13,11,4,15,1,12,12,1,15,12,15,11,2,12,5,0,11,11,14,1,5,3,1,8,8,2,15,2,5,1,1,15,9,11,0,2,4,2,6,2,7,8,4,0,12,14,13,6,6,15,7,15,15,4,5,6,5,4,6,10,4,1,14,15,0,14,15,6,10,8,13,2,15,3,15,1,7,10,13,3,0,14,10,10,5,11,4,6,9,14,0,6,11,14,15,7,0,3,13,4,13,3,15,12,6,14,13,10,15,8,0,11,1,10,14,12,7,11,10,12,12,4,9,11,2,7,14,5,13,11,8,10,5,11,6,9,11,2,8,2,0,2,2,2,9,8,3,7,3,4,10,9,3,0,8,6,6,3,5,15,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"2\", \"4\"], \"clip_start\": 811.0, \"clip_end\": 815.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,5,13,12,4,15,9,7,2,15,7,15,9,10,13,5,2,10,7,10,1,14,7,8,3,4,13,12,10,6,2,9,8,12,1,9,8,8,3,8,14,12,3,0,9,5,8,9,4,6,9,7,15,14,3,6,2,15,11,13,0,14,11,0,12,12,4,14,9,10,10,14,15,14,13,13,1,3,12,12,7,8,13,7,6,10,13,5,12,15,5,14,2,12,5,13,4,9,4,4,2,12,13,2,6,7,10,10,1,11,12,3,12,10,7,12,12,15,14,10,11,9,12,12,2,3,11,3,10,7,7,2,3,15,15,14,0,3,0,7,6,6,5,4,14,3,7,12,15,7,12,0,10,7,11,2,7,9,12,15,7,4,12,10,5,0,3,13,6,8,9,15,7,7,2,2,12,13,9,10,3,5,11,15,8,15,8,7,13,14,5,8,5,12,14,4,8,0,14,6,4,3,12,13,6,0,5,9,2,2,10,13,1,6,15,8,14,3,1,5,12,11,9,14,14,7,11,10,10,6,4,4,5,14,4,8,1,6,13,4,4,12,9,3,14,15,4,11,0,5,12,4,0,3,8,11,2,12,3,12,15,15,10,13,0,4,8,1,10,5,4,4,2,8,5,2,0,3,1,3,6,3,4,2,1,3,12,6,6,2,15,6,11,7,3,10,9,9,15,12,7,7,6,0,6,4,8,7,15,13,4,0,6,3,4,6,9,11,0,0,12,5,7,6,6,1,7,10,8,11,10,13,12,1,10,11,11,2,8,11,15,7,5,9,12,11,7,10,7,1,13,11,15,14,11,12,15,1,8,13,12,11,5,6,13,13,4,9,9,3,5,8,8,7,11,9,10,6,0,15,8,6,10,15,9,7,4,8,15,12,5,7,0,14,2,15,14,10,1,13,2,4,6,13,1,7,14,4,15,11,14,1,4,13,13,3,8,7,4,15,6,12,0,3,13,10,9,4,13,1,4,14,1,3,7,10,8,8,7,0,14,8,9,1,1,7,6,12,15,6,8,15,0,1,1,2,14,5,7,14,15,6,10,1,6,3,13,8,8,12,7,7,11,11,2,11,8,8,1,5,5,3,9,2,13,4,13,3,15,8,14,8,8,0,1,8,13,12,13,0,6,2,13,7,13,8,0,10,2,10,2,0,9,6,4,0,15,14,0,1,9,6,9,2,2,0,2,13,1,0,12,6,4,2,12,5,12,15,8,15,0,14,0,8,14,4,8,15,8,13,11,5,12,4,14,15,2,0,3,5,5,2,6,8,11,3,10,4,10,0,14,12,0,5,8,11,15,12,10,4,4,13,15,2,2,7,8,13,14,7,4,15,0,11,5,5,0,14,13,9,2,13,12,2,15,3,0,11,2,14,11,7,3,0,14,7,6,7,9,11,4,15,6,15,6,12,0,8,0,10,6,13,14,13,7,11,4,12,4,9,7,10,0,13,1,7,2,6,6,0,2,7,15,12,9,6,5,2,12,7,14,8,10,3,10,15,6,4,0,4,6,1,0,12,3,14,9,15,7,13,8,9,1,0,4,7,11,7,13,5,1,9,9,5,6,12,6,14,5,0,15,6,3,13,10,4,0,7,9,10,11,5,10,0,10,4,15,1,10,6,12,13,11,14,9,1,13,13,11,4,12,13,7,0,13,7,2,15,15,0,1,8,9,6,15,15,3,12,7,3,8,9,0,5,2,11,11,4,4,2,11,1,0,0,3,13,8,5,4,3,7,8,12,2,11,14,15,13,2,13,8,11,14,14,13,1,9,4,8,13,14,13,6,15,12,14,12,12,5,2,8,14,12,8,1,9,12,2,3,13,0,13,2,4,9,7,14,3,1,15,3,5,10,0,8,0,12,9,0,6,14,9,3,2,5,3,10,1,10,14,0,0,5,4,8,1,0,14,13,10,13,11,15,8,9,7,11,13,15,15,15,3,13,11,4,15,1,12,12,1,15,12,15,11,2,12,5,0,11,11,14,1,5,3,1,8,8,2,15,2,5,1,1,15,9,11,0,2,4,2,6,2,7,8,4,0,12,14,13,6,6,15,7,15,15,4,5,6,5,4,6,10,4,1,14,15,0,14,15,6,10,8,13,2,15,3,15,1,7,10,13,3,0,14,10,10,5,11,4,6,9,14,0,6,11,14,15,7,0,3,13,4,13,3,15,12,6,14,13,10,15,8,0,11,1,10,14,12,7,11,10,12,12,4,9,11,2,7,14,5,13,11,8,10,5,11,6,9,11,2,8,2,0,2,2,2,9,8,3,7,3,4,10,9,3,0,8,6,6,3,5,15,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"2\", \"15\"], \"clip_start\": 932.0, \"clip_end\": 936.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,5,13,12,4,15,9,7,2,15,7,15,9,10,13,5,2,10,7,10,1,14,7,8,3,4,13,12,10,6,2,9,8,12,1,9,8,8,3,8,14,12,3,0,9,5,8,9,4,6,9,7,15,14,3,6,2,15,11,13,0,14,11,0,12,12,4,14,9,10,10,14,15,14,13,13,1,3,12,12,7,8,13,7,6,10,13,5,12,15,5,14,2,12,5,13,4,9,4,4,2,12,13,2,6,7,10,10,1,11,12,3,12,10,7,12,12,15,14,10,11,9,12,12,2,3,11,3,10,7,7,2,3,15,15,14,0,3,0,7,6,6,5,4,14,3,7,12,15,7,12,0,10,7,11,2,7,9,12,15,7,4,12,10,5,0,3,13,6,8,9,15,7,7,2,2,12,13,9,10,3,5,11,15,8,15,8,7,13,14,5,8,5,12,14,4,8,0,14,6,4,3,12,13,6,0,5,9,2,2,10,13,1,6,15,8,14,3,1,5,12,11,9,14,14,7,11,10,10,6,4,4,5,14,4,8,1,6,13,4,4,12,9,3,14,15,4,11,0,5,12,4,0,3,8,11,2,12,3,12,15,15,10,13,0,4,8,1,10,5,4,4,2,8,5,2,0,3,1,3,6,3,4,2,1,3,12,6,6,2,15,6,11,7,3,10,9,9,15,12,7,7,6,0,6,4,8,7,15,13,4,0,6,3,4,6,9,11,0,0,12,5,7,6,6,1,7,10,8,11,10,13,12,1,10,11,11,2,8,11,15,7,5,9,12,11,7,10,7,1,13,11,15,14,11,12,15,1,8,13,12,11,5,6,13,13,4,9,9,3,5,8,8,7,11,9,10,6,0,15,8,6,10,15,9,7,4,8,15,12,5,7,0,14,2,15,14,10,1,13,2,4,6,13,1,7,14,4,15,11,14,1,4,13,13,3,8,7,4,15,6,12,0,3,13,10,9,4,13,1,4,14,1,3,7,10,8,8,7,0,14,8,9,1,1,7,6,12,15,6,8,15,0,1,1,2,14,5,7,14,15,6,10,1,6,3,13,8,8,12,7,7,11,11,2,11,8,8,1,5,5,3,9,2,13,4,13,3,15,8,14,8,8,0,1,8,13,12,13,0,6,2,13,7,13,8,0,10,2,10,2,0,9,6,4,0,15,14,0,1,9,6,9,2,2,0,2,13,1,0,12,6,4,2,12,5,12,15,8,15,0,14,0,8,14,4,8,15,8,13,11,5,12,4,14,15,2,0,3,5,5,2,6,8,11,3,10,4,10,0,14,12,0,5,8,11,15,12,10,4,4,13,15,2,2,7,8,13,14,7,4,15,0,11,5,5,0,14,13,9,2,13,12,2,15,3,0,11,2,14,11,7,3,0,14,7,6,7,9,11,4,15,6,15,6,12,0,8,0,10,6,13,14,13,7,11,4,12,4,9,7,10,0,13,1,7,2,6,6,0,2,7,15,12,9,6,5,2,12,7,14,8,10,3,10,15,6,4,0,4,6,1,0,12,3,14,9,15,7,13,8,9,1,0,4,7,11,7,13,5,1,9,9,5,6,12,6,14,5,0,15,6,3,13,10,4,0,7,9,10,11,5,10,0,10,4,15,1,10,6,12,13,11,14,9,1,13,13,11,4,12,13,7,0,13,7,2,15,15,0,1,8,9,6,15,15,3,12,7,3,8,9,0,5,2,11,11,4,4,2,11,1,0,0,3,13,8,5,4,3,7,8,12,2,11,14,15,13,2,13,8,11,14,14,13,1,9,4,8,13,14,13,6,15,12,14,12,12,5,2,8,14,12,8,1,9,12,2,3,13,0,13,2,4,9,7,14,3,1,15,3,5,10,0,8,0,12,9,0,6,14,9,3,2,5,3,10,1,10,14,0,0,5,4,8,1,0,14,13,10,13,11,15,8,9,7,11,13,15,15,15,3,13,11,4,15,1,12,12,1,15,12,15,11,2,12,5,0,11,11,14,1,5,3,1,8,8,2,15,2,5,1,1,15,9,11,0,2,4,2,6,2,7,8,4,0,12,14,13,6,6,15,7,15,15,4,5,6,5,4,6,10,4,1,14,15,0,14,15,6,10,8,13,2,15,3,15,1,7,10,13,3,0,14,10,10,5,11,4,6,9,14,0,6,11,14,15,7,0,3,13,4,13,3,15,12,6,14,13,10,15,8,0,11,1,10,14,12,7,11,10,12,12,4,9,11,2,7,14,5,13,11,8,10,5,11,6,9,11,2,8,2,0,2,2,2,9,8,3,7,3,4,10,9,3,0,8,6,6,3,5,15,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"3\", \"14\", \"15\"], \"clip_start\": 242.0, \"clip_end\": 247.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,5,13,12,4,15,9,7,2,15,7,15,9,10,13,5,2,10,7,10,1,14,7,8,3,4,13,12,10,6,2,9,8,12,1,9,8,8,3,8,14,12,3,0,9,5,8,9,4,6,9,7,15,14,3,6,2,15,11,13,0,14,11,0,12,12,4,14,9,10,10,14,15,14,13,13,1,3,12,12,7,8,13,7,6,10,13,5,12,15,5,14,2,12,5,13,4,9,4,4,2,12,13,2,6,7,10,10,1,11,12,3,12,10,7,12,12,15,14,10,11,9,12,12,2,3,11,3,10,7,7,2,3,15,15,14,0,3,0,7,6,6,5,4,14,3,7,12,15,7,12,0,10,7,11,2,7,9,12,15,7,4,12,10,5,0,3,13,6,8,9,15,7,7,2,2,12,13,9,10,3,5,11,15,8,15,8,7,13,14,5,8,5,12,14,4,8,0,14,6,4,3,12,13,6,0,5,9,2,2,10,13,1,6,15,8,14,3,1,5,12,11,9,14,14,7,11,10,10,6,4,4,5,14,4,8,1,6,13,4,4,12,9,3,14,15,4,11,0,5,12,4,0,3,8,11,2,12,3,12,15,15,10,13,0,4,8,1,10,5,4,4,2,8,5,2,0,3,1,3,6,3,4,2,1,3,12,6,6,2,15,6,11,7,3,10,9,9,15,12,7,7,6,0,6,4,8,7,15,13,4,0,6,3,4,6,9,11,0,0,12,5,7,6,6,1,7,10,8,11,10,13,12,1,10,11,11,2,8,11,15,7,5,9,12,11,7,10,7,1,13,11,15,14,11,12,15,1,8,13,12,11,5,6,13,13,4,9,9,3,5,8,8,7,11,9,10,6,0,15,8,6,10,15,9,7,4,8,15,12,5,7,0,14,2,15,14,10,1,13,2,4,6,13,1,7,14,4,15,11,14,1,4,13,13,3,8,7,4,15,6,12,0,3,13,10,9,4,13,1,4,14,1,3,7,10,8,8,7,0,14,8,9,1,1,7,6,12,15,6,8,15,0,1,1,2,14,5,7,14,15,6,10,1,6,3,13,8,8,12,7,7,11,11,2,11,8,8,1,5,5,3,9,2,13,4,13,3,15,8,14,8,8,0,1,8,13,12,13,0,6,2,13,7,13,8,0,10,2,10,2,0,9,6,4,0,15,14,0,1,9,6,9,2,2,0,2,13,1,0,12,6,4,2,12,5,12,15,8,15,0,14,0,8,14,4,8,15,8,13,11,5,12,4,14,15,2,0,3,5,5,2,6,8,11,3,10,4,10,0,14,12,0,5,8,11,15,12,10,4,4,13,15,2,2,7,8,13,14,7,4,15,0,11,5,5,0,14,13,9,2,13,12,2,15,3,0,11,2,14,11,7,3,0,14,7,6,7,9,11,4,15,6,15,6,12,0,8,0,10,6,13,14,13,7,11,4,12,4,9,7,10,0,13,1,7,2,6,6,0,2,7,15,12,9,6,5,2,12,7,14,8,10,3,10,15,6,4,0,4,6,1,0,12,3,14,9,15,7,13,8,9,1,0,4,7,11,7,13,5,1,9,9,5,6,12,6,14,5,0,15,6,3,13,10,4,0,7,9,10,11,5,10,0,10,4,15,1,10,6,12,13,11,14,9,1,13,13,11,4,12,13,7,0,13,7,2,15,15,0,1,8,9,6,15,15,3,12,7,3,8,9,0,5,2,11,11,4,4,2,11,1,0,0,3,13,8,5,4,3,7,8,12,2,11,14,15,13,2,13,8,11,14,14,13,1,9,4,8,13,14,13,6,15,12,14,12,12,5,2,8,14,12,8,1,9,12,2,3,13,0,13,2,4,9,7,14,3,1,15,3,5,10,0,8,0,12,9,0,6,14,9,3,2,5,3,10,1,10,14,0,0,5,4,8,1,0,14,13,10,13,11,15,8,9,7,11,13,15,15,15,3,13,11,4,15,1,12,12,1,15,12,15,11,2,12,5,0,11,11,14,1,5,3,1,8,8,2,15,2,5,1,1,15,9,11,0,2,4,2,6,2,7,8,4,0,12,14,13,6,6,15,7,15,15,4,5,6,5,4,6,10,4,1,14,15,0,14,15,6,10,8,13,2,15,3,15,1,7,10,13,3,0,14,10,10,5,11,4,6,9,14,0,6,11,14,15,7,0,3,13,4,13,3,15,12,6,14,13,10,15,8,0,11,1,10,14,12,7,11,10,12,12,4,9,11,2,7,14,5,13,11,8,10,5,11,6,9,11,2,8,2,0,2,2,2,9,8,3,7,3,4,10,9,3,0,8,6,6,3,5,15,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 533.0, \"clip_end\": 537.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,5,13,12,4,15,9,7,2,15,7,15,9,10,13,5,2,10,7,10,1,14,7,8,3,4,13,12,10,6,2,9,8,12,1,9,8,8,3,8,14,12,3,0,9,5,8,9,4,6,9,7,15,14,3,6,2,15,11,13,0,14,11,0,12,12,4,14,9,10,10,14,15,14,13,13,1,3,12,12,7,8,13,7,6,10,13,5,12,15,5,14,2,12,5,13,4,9,4,4,2,12,13,2,6,7,10,10,1,11,12,3,12,10,7,12,12,15,14,10,11,9,12,12,2,3,11,3,10,7,7,2,3,15,15,14,0,3,0,7,6,6,5,4,14,3,7,12,15,7,12,0,10,7,11,2,7,9,12,15,7,4,12,10,5,0,3,13,6,8,9,15,7,7,2,2,12,13,9,10,3,5,11,15,8,15,8,7,13,14,5,8,5,12,14,4,8,0,14,6,4,3,12,13,6,0,5,9,2,2,10,13,1,6,15,8,14,3,1,5,12,11,9,14,14,7,11,10,10,6,4,4,5,14,4,8,1,6,13,4,4,12,9,3,14,15,4,11,0,5,12,4,0,3,8,11,2,12,3,12,15,15,10,13,0,4,8,1,10,5,4,4,2,8,5,2,0,3,1,3,6,3,4,2,1,3,12,6,6,2,15,6,11,7,3,10,9,9,15,12,7,7,6,0,6,4,8,7,15,13,4,0,6,3,4,6,9,11,0,0,12,5,7,6,6,1,7,10,8,11,10,13,12,1,10,11,11,2,8,11,15,7,5,9,12,11,7,10,7,1,13,11,15,14,11,12,15,1,8,13,12,11,5,6,13,13,4,9,9,3,5,8,8,7,11,9,10,6,0,15,8,6,10,15,9,7,4,8,15,12,5,7,0,14,2,15,14,10,1,13,2,4,6,13,1,7,14,4,15,11,14,1,4,13,13,3,8,7,4,15,6,12,0,3,13,10,9,4,13,1,4,14,1,3,7,10,8,8,7,0,14,8,9,1,1,7,6,12,15,6,8,15,0,1,1,2,14,5,7,14,15,6,10,1,6,3,13,8,8,12,7,7,11,11,2,11,8,8,1,5,5,3,9,2,13,4,13,3,15,8,14,8,8,0,1,8,13,12,13,0,6,2,13,7,13,8,0,10,2,10,2,0,9,6,4,0,15,14,0,1,9,6,9,2,2,0,2,13,1,0,12,6,4,2,12,5,12,15,8,15,0,14,0,8,14,4,8,15,8,13,11,5,12,4,14,15,2,0,3,5,5,2,6,8,11,3,10,4,10,0,14,12,0,5,8,11,15,12,10,4,4,13,15,2,2,7,8,13,14,7,4,15,0,11,5,5,0,14,13,9,2,13,12,2,15,3,0,11,2,14,11,7,3,0,14,7,6,7,9,11,4,15,6,15,6,12,0,8,0,10,6,13,14,13,7,11,4,12,4,9,7,10,0,13,1,7,2,6,6,0,2,7,15,12,9,6,5,2,12,7,14,8,10,3,10,15,6,4,0,4,6,1,0,12,3,14,9,15,7,13,8,9,1,0,4,7,11,7,13,5,1,9,9,5,6,12,6,14,5,0,15,6,3,13,10,4,0,7,9,10,11,5,10,0,10,4,15,1,10,6,12,13,11,14,9,1,13,13,11,4,12,13,7,0,13,7,2,15,15,0,1,8,9,6,15,15,3,12,7,3,8,9,0,5,2,11,11,4,4,2,11,1,0,0,3,13,8,5,4,3,7,8,12,2,11,14,15,13,2,13,8,11,14,14,13,1,9,4,8,13,14,13,6,15,12,14,12,12,5,2,8,14,12,8,1,9,12,2,3,13,0,13,2,4,9,7,14,3,1,15,3,5,10,0,8,0,12,9,0,6,14,9,3,2,5,3,10,1,10,14,0,0,5,4,8,1,0,14,13,10,13,11,15,8,9,7,11,13,15,15,15,3,13,11,4,15,1,12,12,1,15,12,15,11,2,12,5,0,11,11,14,1,5,3,1,8,8,2,15,2,5,1,1,15,9,11,0,2,4,2,6,2,7,8,4,0,12,14,13,6,6,15,7,15,15,4,5,6,5,4,6,10,4,1,14,15,0,14,15,6,10,8,13,2,15,3,15,1,7,10,13,3,0,14,10,10,5,11,4,6,9,14,0,6,11,14,15,7,0,3,13,4,13,3,15,12,6,14,13,10,15,8,0,11,1,10,14,12,7,11,10,12,12,4,9,11,2,7,14,5,13,11,8,10,5,11,6,9,11,2,8,2,0,2,2,2,9,8,3,7,3,4,10,9,3,0,8,6,6,3,5,15,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"3\", \"9\"], \"clip_start\": 480.0, \"clip_end\": 484.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,5,13,12,4,15,9,7,2,15,7,15,9,10,13,5,2,10,7,10,1,14,7,8,3,4,13,12,10,6,2,9,8,12,1,9,8,8,3,8,14,12,3,0,9,5,8,9,4,6,9,7,15,14,3,6,2,15,11,13,0,14,11,0,12,12,4,14,9,10,10,14,15,14,13,13,1,3,12,12,7,8,13,7,6,10,13,5,12,15,5,14,2,12,5,13,4,9,4,4,2,12,13,2,6,7,10,10,1,11,12,3,12,10,7,12,12,15,14,10,11,9,12,12,2,3,11,3,10,7,7,2,3,15,15,14,0,3,0,7,6,6,5,4,14,3,7,12,15,7,12,0,10,7,11,2,7,9,12,15,7,4,12,10,5,0,3,13,6,8,9,15,7,7,2,2,12,13,9,10,3,5,11,15,8,15,8,7,13,14,5,8,5,12,14,4,8,0,14,6,4,3,12,13,6,0,5,9,2,2,10,13,1,6,15,8,14,3,1,5,12,11,9,14,14,7,11,10,10,6,4,4,5,14,4,8,1,6,13,4,4,12,9,3,14,15,4,11,0,5,12,4,0,3,8,11,2,12,3,12,15,15,10,13,0,4,8,1,10,5,4,4,2,8,5,2,0,3,1,3,6,3,4,2,1,3,12,6,6,2,15,6,11,7,3,10,9,9,15,12,7,7,6,0,6,4,8,7,15,13,4,0,6,3,4,6,9,11,0,0,12,5,7,6,6,1,7,10,8,11,10,13,12,1,10,11,11,2,8,11,15,7,5,9,12,11,7,10,7,1,13,11,15,14,11,12,15,1,8,13,12,11,5,6,13,13,4,9,9,3,5,8,8,7,11,9,10,6,0,15,8,6,10,15,9,7,4,8,15,12,5,7,0,14,2,15,14,10,1,13,2,4,6,13,1,7,14,4,15,11,14,1,4,13,13,3,8,7,4,15,6,12,0,3,13,10,9,4,13,1,4,14,1,3,7,10,8,8,7,0,14,8,9,1,1,7,6,12,15,6,8,15,0,1,1,2,14,5,7,14,15,6,10,1,6,3,13,8,8,12,7,7,11,11,2,11,8,8,1,5,5,3,9,2,13,4,13,3,15,8,14,8,8,0,1,8,13,12,13,0,6,2,13,7,13,8,0,10,2,10,2,0,9,6,4,0,15,14,0,1,9,6,9,2,2,0,2,13,1,0,12,6,4,2,12,5,12,15,8,15,0,14,0,8,14,4,8,15,8,13,11,5,12,4,14,15,2,0,3,5,5,2,6,8,11,3,10,4,10,0,14,12,0,5,8,11,15,12,10,4,4,13,15,2,2,7,8,13,14,7,4,15,0,11,5,5,0,14,13,9,2,13,12,2,15,3,0,11,2,14,11,7,3,0,14,7,6,7,9,11,4,15,6,15,6,12,0,8,0,10,6,13,14,13,7,11,4,12,4,9,7,10,0,13,1,7,2,6,6,0,2,7,15,12,9,6,5,2,12,7,14,8,10,3,10,15,6,4,0,4,6,1,0,12,3,14,9,15,7,13,8,9,1,0,4,7,11,7,13,5,1,9,9,5,6,12,6,14,5,0,15,6,3,13,10,4,0,7,9,10,11,5,10,0,10,4,15,1,10,6,12,13,11,14,9,1,13,13,11,4,12,13,7,0,13,7,2,15,15,0,1,8,9,6,15,15,3,12,7,3,8,9,0,5,2,11,11,4,4,2,11,1,0,0,3,13,8,5,4,3,7,8,12,2,11,14,15,13,2,13,8,11,14,14,13,1,9,4,8,13,14,13,6,15,12,14,12,12,5,2,8,14,12,8,1,9,12,2,3,13,0,13,2,4,9,7,14,3,1,15,3,5,10,0,8,0,12,9,0,6,14,9,3,2,5,3,10,1,10,14,0,0,5,4,8,1,0,14,13,10,13,11,15,8,9,7,11,13,15,15,15,3,13,11,4,15,1,12,12,1,15,12,15,11,2,12,5,0,11,11,14,1,5,3,1,8,8,2,15,2,5,1,1,15,9,11,0,2,4,2,6,2,7,8,4,0,12,14,13,6,6,15,7,15,15,4,5,6,5,4,6,10,4,1,14,15,0,14,15,6,10,8,13,2,15,3,15,1,7,10,13,3,0,14,10,10,5,11,4,6,9,14,0,6,11,14,15,7,0,3,13,4,13,3,15,12,6,14,13,10,15,8,0,11,1,10,14,12,7,11,10,12,12,4,9,11,2,7,14,5,13,11,8,10,5,11,6,9,11,2,8,2,0,2,2,2,9,8,3,7,3,4,10,9,3,0,8,6,6,3,5,15,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"2\", \"12\"], \"clip_start\": 873.0, \"clip_end\": 877.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,5,13,12,4,15,9,7,2,15,7,15,9,10,13,5,2,10,7,10,1,14,7,8,3,4,13,12,10,6,2,9,8,12,1,9,8,8,3,8,14,12,3,0,9,5,8,9,4,6,9,7,15,14,3,6,2,15,11,13,0,14,11,0,12,12,4,14,9,10,10,14,15,14,13,13,1,3,12,12,7,8,13,7,6,10,13,5,12,15,5,14,2,12,5,13,4,9,4,4,2,12,13,2,6,7,10,10,1,11,12,3,12,10,7,12,12,15,14,10,11,9,12,12,2,3,11,3,10,7,7,2,3,15,15,14,0,3,0,7,6,6,5,4,14,3,7,12,15,7,12,0,10,7,11,2,7,9,12,15,7,4,12,10,5,0,3,13,6,8,9,15,7,7,2,2,12,13,9,10,3,5,11,15,8,15,8,7,13,14,5,8,5,12,14,4,8,0,14,6,4,3,12,13,6,0,5,9,2,2,10,13,1,6,15,8,14,3,1,5,12,11,9,14,14,7,11,10,10,6,4,4,5,14,4,8,1,6,13,4,4,12,9,3,14,15,4,11,0,5,12,4,0,3,8,11,2,12,3,12,15,15,10,13,0,4,8,1,10,5,4,4,2,8,5,2,0,3,1,3,6,3,4,2,1,3,12,6,6,2,15,6,11,7,3,10,9,9,15,12,7,7,6,0,6,4,8,7,15,13,4,0,6,3,4,6,9,11,0,0,12,5,7,6,6,1,7,10,8,11,10,13,12,1,10,11,11,2,8,11,15,7,5,9,12,11,7,10,7,1,13,11,15,14,11,12,15,1,8,13,12,11,5,6,13,13,4,9,9,3,5,8,8,7,11,9,10,6,0,15,8,6,10,15,9,7,4,8,15,12,5,7,0,14,2,15,14,10,1,13,2,4,6,13,1,7,14,4,15,11,14,1,4,13,13,3,8,7,4,15,6,12,0,3,13,10,9,4,13,1,4,14,1,3,7,10,8,8,7,0,14,8,9,1,1,7,6,12,15,6,8,15,0,1,1,2,14,5,7,14,15,6,10,1,6,3,13,8,8,12,7,7,11,11,2,11,8,8,1,5,5,3,9,2,13,4,13,3,15,8,14,8,8,0,1,8,13,12,13,0,6,2,13,7,13,8,0,10,2,10,2,0,9,6,4,0,15,14,0,1,9,6,9,2,2,0,2,13,1,0,12,6,4,2,12,5,12,15,8,15,0,14,0,8,14,4,8,15,8,13,11,5,12,4,14,15,2,0,3,5,5,2,6,8,11,3,10,4,10,0,14,12,0,5,8,11,15,12,10,4,4,13,15,2,2,7,8,13,14,7,4,15,0,11,5,5,0,14,13,9,2,13,12,2,15,3,0,11,2,14,11,7,3,0,14,7,6,7,9,11,4,15,6,15,6,12,0,8,0,10,6,13,14,13,7,11,4,12,4,9,7,10,0,13,1,7,2,6,6,0,2,7,15,12,9,6,5,2,12,7,14,8,10,3,10,15,6,4,0,4,6,1,0,12,3,14,9,15,7,13,8,9,1,0,4,7,11,7,13,5,1,9,9,5,6,12,6,14,5,0,15,6,3,13,10,4,0,7,9,10,11,5,10,0,10,4,15,1,10,6,12,13,11,14,9,1,13,13,11,4,12,13,7,0,13,7,2,15,15,0,1,8,9,6,15,15,3,12,7,3,8,9,0,5,2,11,11,4,4,2,11,1,0,0,3,13,8,5,4,3,7,8,12,2,11,14,15,13,2,13,8,11,14,14,13,1,9,4,8,13,14,13,6,15,12,14,12,12,5,2,8,14,12,8,1,9,12,2,3,13,0,13,2,4,9,7,14,3,1,15,3,5,10,0,8,0,12,9,0,6,14,9,3,2,5,3,10,1,10,14,0,0,5,4,8,1,0,14,13,10,13,11,15,8,9,7,11,13,15,15,15,3,13,11,4,15,1,12,12,1,15,12,15,11,2,12,5,0,11,11,14,1,5,3,1,8,8,2,15,2,5,1,1,15,9,11,0,2,4,2,6,2,7,8,4,0,12,14,13,6,6,15,7,15,15,4,5,6,5,4,6,10,4,1,14,15,0,14,15,6,10,8,13,2,15,3,15,1,7,10,13,3,0,14,10,10,5,11,4,6,9,14,0,6,11,14,15,7,0,3,13,4,13,3,15,12,6,14,13,10,15,8,0,11,1,10,14,12,7,11,10,12,12,4,9,11,2,7,14,5,13,11,8,10,5,11,6,9,11,2,8,2,0,2,2,2,9,8,3,7,3,4,10,9,3,0,8,6,6,3,5,15,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 923.0, \"clip_end\": 928.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,5,13,12,4,15,9,7,2,15,7,15,9,10,13,5,2,10,7,10,1,14,7,8,3,4,13,12,10,6,2,9,8,12,1,9,8,8,3,8,14,12,3,0,9,5,8,9,4,6,9,7,15,14,3,6,2,15,11,13,0,14,11,0,12,12,4,14,9,10,10,14,15,14,13,13,1,3,12,12,7,8,13,7,6,10,13,5,12,15,5,14,2,12,5,13,4,9,4,4,2,12,13,2,6,7,10,10,1,11,12,3,12,10,7,12,12,15,14,10,11,9,12,12,2,3,11,3,10,7,7,2,3,15,15,14,0,3,0,7,6,6,5,4,14,3,7,12,15,7,12,0,10,7,11,2,7,9,12,15,7,4,12,10,5,0,3,13,6,8,9,15,7,7,2,2,12,13,9,10,3,5,11,15,8,15,8,7,13,14,5,8,5,12,14,4,8,0,14,6,4,3,12,13,6,0,5,9,2,2,10,13,1,6,15,8,14,3,1,5,12,11,9,14,14,7,11,10,10,6,4,4,5,14,4,8,1,6,13,4,4,12,9,3,14,15,4,11,0,5,12,4,0,3,8,11,2,12,3,12,15,15,10,13,0,4,8,1,10,5,4,4,2,8,5,2,0,3,1,3,6,3,4,2,1,3,12,6,6,2,15,6,11,7,3,10,9,9,15,12,7,7,6,0,6,4,8,7,15,13,4,0,6,3,4,6,9,11,0,0,12,5,7,6,6,1,7,10,8,11,10,13,12,1,10,11,11,2,8,11,15,7,5,9,12,11,7,10,7,1,13,11,15,14,11,12,15,1,8,13,12,11,5,6,13,13,4,9,9,3,5,8,8,7,11,9,10,6,0,15,8,6,10,15,9,7,4,8,15,12,5,7,0,14,2,15,14,10,1,13,2,4,6,13,1,7,14,4,15,11,14,1,4,13,13,3,8,7,4,15,6,12,0,3,13,10,9,4,13,1,4,14,1,3,7,10,8,8,7,0,14,8,9,1,1,7,6,12,15,6,8,15,0,1,1,2,14,5,7,14,15,6,10,1,6,3,13,8,8,12,7,7,11,11,2,11,8,8,1,5,5,3,9,2,13,4,13,3,15,8,14,8,8,0,1,8,13,12,13,0,6,2,13,7,13,8,0,10,2,10,2,0,9,6,4,0,15,14,0,1,9,6,9,2,2,0,2,13,1,0,12,6,4,2,12,5,12,15,8,15,0,14,0,8,14,4,8,15,8,13,11,5,12,4,14,15,2,0,3,5,5,2,6,8,11,3,10,4,10,0,14,12,0,5,8,11,15,12,10,4,4,13,15,2,2,7,8,13,14,7,4,15,0,11,5,5,0,14,13,9,2,13,12,2,15,3,0,11,2,14,11,7,3,0,14,7,6,7,9,11,4,15,6,15,6,12,0,8,0,10,6,13,14,13,7,11,4,12,4,9,7,10,0,13,1,7,2,6,6,0,2,7,15,12,9,6,5,2,12,7,14,8,10,3,10,15,6,4,0,4,6,1,0,12,3,14,9,15,7,13,8,9,1,0,4,7,11,7,13,5,1,9,9,5,6,12,6,14,5,0,15,6,3,13,10,4,0,7,9,10,11,5,10,0,10,4,15,1,10,6,12,13,11,14,9,1,13,13,11,4,12,13,7,0,13,7,2,15,15,0,1,8,9,6,15,15,3,12,7,3,8,9,0,5,2,11,11,4,4,2,11,1,0,0,3,13,8,5,4,3,7,8,12,2,11,14,15,13,2,13,8,11,14,14,13,1,9,4,8,13,14,13,6,15,12,14,12,12,5,2,8,14,12,8,1,9,12,2,3,13,0,13,2,4,9,7,14,3,1,15,3,5,10,0,8,0,12,9,0,6,14,9,3,2,5,3,10,1,10,14,0,0,5,4,8,1,0,14,13,10,13,11,15,8,9,7,11,13,15,15,15,3,13,11,4,15,1,12,12,1,15,12,15,11,2,12,5,0,11,11,14,1,5,3,1,8,8,2,15,2,5,1,1,15,9,11,0,2,4,2,6,2,7,8,4,0,12,14,13,6,6,15,7,15,15,4,5,6,5,4,6,10,4,1,14,15,0,14,15,6,10,8,13,2,15,3,15,1,7,10,13,3,0,14,10,10,5,11,4,6,9,14,0,6,11,14,15,7,0,3,13,4,13,3,15,12,6,14,13,10,15,8,0,11,1,10,14,12,7,11,10,12,12,4,9,11,2,7,14,5,13,11,8,10,5,11,6,9,11,2,8,2,0,2,2,2,9,8,3,7,3,4,10,9,3,0,8,6,6,3,5,15,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"6\", \"2\"], \"clip_start\": 287.0, \"clip_end\": 291.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,5,13,12,4,15,9,7,2,15,7,15,9,10,13,5,2,10,7,10,1,14,7,8,3,4,13,12,10,6,2,9,8,12,1,9,8,8,3,8,14,12,3,0,9,5,8,9,4,6,9,7,15,14,3,6,2,15,11,13,0,14,11,0,12,12,4,14,9,10,10,14,15,14,13,13,1,3,12,12,7,8,13,7,6,10,13,5,12,15,5,14,2,12,5,13,4,9,4,4,2,12,13,2,6,7,10,10,1,11,12,3,12,10,7,12,12,15,14,10,11,9,12,12,2,3,11,3,10,7,7,2,3,15,15,14,0,3,0,7,6,6,5,4,14,3,7,12,15,7,12,0,10,7,11,2,7,9,12,15,7,4,12,10,5,0,3,13,6,8,9,15,7,7,2,2,12,13,9,10,3,5,11,15,8,15,8,7,13,14,5,8,5,12,14,4,8,0,14,6,4,3,12,13,6,0,5,9,2,2,10,13,1,6,15,8,14,3,1,5,12,11,9,14,14,7,11,10,10,6,4,4,5,14,4,8,1,6,13,4,4,12,9,3,14,15,4,11,0,5,12,4,0,3,8,11,2,12,3,12,15,15,10,13,0,4,8,1,10,5,4,4,2,8,5,2,0,3,1,3,6,3,4,2,1,3,12,6,6,2,15,6,11,7,3,10,9,9,15,12,7,7,6,0,6,4,8,7,15,13,4,0,6,3,4,6,9,11,0,0,12,5,7,6,6,1,7,10,8,11,10,13,12,1,10,11,11,2,8,11,15,7,5,9,12,11,7,10,7,1,13,11,15,14,11,12,15,1,8,13,12,11,5,6,13,13,4,9,9,3,5,8,8,7,11,9,10,6,0,15,8,6,10,15,9,7,4,8,15,12,5,7,0,14,2,15,14,10,1,13,2,4,6,13,1,7,14,4,15,11,14,1,4,13,13,3,8,7,4,15,6,12,0,3,13,10,9,4,13,1,4,14,1,3,7,10,8,8,7,0,14,8,9,1,1,7,6,12,15,6,8,15,0,1,1,2,14,5,7,14,15,6,10,1,6,3,13,8,8,12,7,7,11,11,2,11,8,8,1,5,5,3,9,2,13,4,13,3,15,8,14,8,8,0,1,8,13,12,13,0,6,2,13,7,13,8,0,10,2,10,2,0,9,6,4,0,15,14,0,1,9,6,9,2,2,0,2,13,1,0,12,6,4,2,12,5,12,15,8,15,0,14,0,8,14,4,8,15,8,13,11,5,12,4,14,15,2,0,3,5,5,2,6,8,11,3,10,4,10,0,14,12,0,5,8,11,15,12,10,4,4,13,15,2,2,7,8,13,14,7,4,15,0,11,5,5,0,14,13,9,2,13,12,2,15,3,0,11,2,14,11,7,3,0,14,7,6,7,9,11,4,15,6,15,6,12,0,8,0,10,6,13,14,13,7,11,4,12,4,9,7,10,0,13,1,7,2,6,6,0,2,7,15,12,9,6,5,2,12,7,14,8,10,3,10,15,6,4,0,4,6,1,0,12,3,14,9,15,7,13,8,9,1,0,4,7,11,7,13,5,1,9,9,5,6,12,6,14,5,0,15,6,3,13,10,4,0,7,9,10,11,5,10,0,10,4,15,1,10,6,12,13,11,14,9,1,13,13,11,4,12,13,7,0,13,7,2,15,15,0,1,8,9,6,15,15,3,12,7,3,8,9,0,5,2,11,11,4,4,2,11,1,0,0,3,13,8,5,4,3,7,8,12,2,11,14,15,13,2,13,8,11,14,14,13,1,9,4,8,13,14,13,6,15,12,14,12,12,5,2,8,14,12,8,1,9,12,2,3,13,0,13,2,4,9,7,14,3,1,15,3,5,10,0,8,0,12,9,0,6,14,9,3,2,5,3,10,1,10,14,0,0,5,4,8,1,0,14,13,10,13,11,15,8,9,7,11,13,15,15,15,3,13,11,4,15,1,12,12,1,15,12,15,11,2,12,5,0,11,11,14,1,5,3,1,8,8,2,15,2,5,1,1,15,9,11,0,2,4,2,6,2,7,8,4,0,12,14,13,6,6,15,7,15,15,4,5,6,5,4,6,10,4,1,14,15,0,14,15,6,10,8,13,2,15,3,15,1,7,10,13,3,0,14,10,10,5,11,4,6,9,14,0,6,11,14,15,7,0,3,13,4,13,3,15,12,6,14,13,10,15,8,0,11,1,10,14,12,7,11,10,12,12,4,9,11,2,7,14,5,13,11,8,10,5,11,6,9,11,2,8,2,0,2,2,2,9,8,3,7,3,4,10,9,3,0,8,6,6,3,5,15,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"7\"], \"clip_start\": 81.0, \"clip_end\": 84.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,5,13,12,4,15,9,7,2,15,7,15,9,10,13,5,2,10,7,10,1,14,7,8,3,4,13,12,10,6,2,9,8,12,1,9,8,8,3,8,14,12,3,0,9,5,8,9,4,6,9,7,15,14,3,6,2,15,11,13,0,14,11,0,12,12,4,14,9,10,10,14,15,14,13,13,1,3,12,12,7,8,13,7,6,10,13,5,12,15,5,14,2,12,5,13,4,9,4,4,2,12,13,2,6,7,10,10,1,11,12,3,12,10,7,12,12,15,14,10,11,9,12,12,2,3,11,3,10,7,7,2,3,15,15,14,0,3,0,7,6,6,5,4,14,3,7,12,15,7,12,0,10,7,11,2,7,9,12,15,7,4,12,10,5,0,3,13,6,8,9,15,7,7,2,2,12,13,9,10,3,5,11,15,8,15,8,7,13,14,5,8,5,12,14,4,8,0,14,6,4,3,12,13,6,0,5,9,2,2,10,13,1,6,15,8,14,3,1,5,12,11,9,14,14,7,11,10,10,6,4,4,5,14,4,8,1,6,13,4,4,12,9,3,14,15,4,11,0,5,12,4,0,3,8,11,2,12,3,12,15,15,10,13,0,4,8,1,10,5,4,4,2,8,5,2,0,3,1,3,6,3,4,2,1,3,12,6,6,2,15,6,11,7,3,10,9,9,15,12,7,7,6,0,6,4,8,7,15,13,4,0,6,3,4,6,9,11,0,0,12,5,7,6,6,1,7,10,8,11,10,13,12,1,10,11,11,2,8,11,15,7,5,9,12,11,7,10,7,1,13,11,15,14,11,12,15,1,8,13,12,11,5,6,13,13,4,9,9,3,5,8,8,7,11,9,10,6,0,15,8,6,10,15,9,7,4,8,15,12,5,7,0,14,2,15,14,10,1,13,2,4,6,13,1,7,14,4,15,11,14,1,4,13,13,3,8,7,4,15,6,12,0,3,13,10,9,4,13,1,4,14,1,3,7,10,8,8,7,0,14,8,9,1,1,7,6,12,15,6,8,15,0,1,1,2,14,5,7,14,15,6,10,1,6,3,13,8,8,12,7,7,11,11,2,11,8,8,1,5,5,3,9,2,13,4,13,3,15,8,14,8,8,0,1,8,13,12,13,0,6,2,13,7,13,8,0,10,2,10,2,0,9,6,4,0,15,14,0,1,9,6,9,2,2,0,2,13,1,0,12,6,4,2,12,5,12,15,8,15,0,14,0,8,14,4,8,15,8,13,11,5,12,4,14,15,2,0,3,5,5,2,6,8,11,3,10,4,10,0,14,12,0,5,8,11,15,12,10,4,4,13,15,2,2,7,8,13,14,7,4,15,0,11,5,5,0,14,13,9,2,13,12,2,15,3,0,11,2,14,11,7,3,0,14,7,6,7,9,11,4,15,6,15,6,12,0,8,0,10,6,13,14,13,7,11,4,12,4,9,7,10,0,13,1,7,2,6,6,0,2,7,15,12,9,6,5,2,12,7,14,8,10,3,10,15,6,4,0,4,6,1,0,12,3,14,9,15,7,13,8,9,1,0,4,7,11,7,13,5,1,9,9,5,6,12,6,14,5,0,15,6,3,13,10,4,0,7,9,10,11,5,10,0,10,4,15,1,10,6,12,13,11,14,9,1,13,13,11,4,12,13,7,0,13,7,2,15,15,0,1,8,9,6,15,15,3,12,7,3,8,9,0,5,2,11,11,4,4,2,11,1,0,0,3,13,8,5,4,3,7,8,12,2,11,14,15,13,2,13,8,11,14,14,13,1,9,4,8,13,14,13,6,15,12,14,12,12,5,2,8,14,12,8,1,9,12,2,3,13,0,13,2,4,9,7,14,3,1,15,3,5,10,0,8,0,12,9,0,6,14,9,3,2,5,3,10,1,10,14,0,0,5,4,8,1,0,14,13,10,13,11,15,8,9,7,11,13,15,15,15,3,13,11,4,15,1,12,12,1,15,12,15,11,2,12,5,0,11,11,14,1,5,3,1,8,8,2,15,2,5,1,1,15,9,11,0,2,4,2,6,2,7,8,4,0,12,14,13,6,6,15,7,15,15,4,5,6,5,4,6,10,4,1,14,15,0,14,15,6,10,8,13,2,15,3,15,1,7,10,13,3,0,14,10,10,5,11,4,6,9,14,0,6,11,14,15,7,0,3,13,4,13,3,15,12,6,14,13,10,15,8,0,11,1,10,14,12,7,11,10,12,12,4,9,11,2,7,14,5,13,11,8,10,5,11,6,9,11,2,8,2,0,2,2,2,9,8,3,7,3,4,10,9,3,0,8,6,6,3,5,15,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"14\", \"15\", \"2\", \"0\"], \"clip_start\": 554.0, \"clip_end\": 559.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q10_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,5,13,12,4,15,9,7,2,15,7,15,9,10,13,5,2,10,7,10,1,14,7,8,3,4,13,12,10,6,2,9,8,12,1,9,8,8,3,8,14,12,3,0,9,5,8,9,4,6,9,7,15,14,3,6,2,15,11,13,0,14,11,0,12,12,4,14,9,10,10,14,15,14,13,13,1,3,12,12,7,8,13,7,6,10,13,5,12,15,5,14,2,12,5,13,4,9,4,4,2,12,13,2,6,7,10,10,1,11,12,3,12,10,7,12,12,15,14,10,11,9,12,12,2,3,11,3,10,7,7,2,3,15,15,14,0,3,0,7,6,6,5,4,14,3,7,12,15,7,12,0,10,7,11,2,7,9,12,15,7,4,12,10,5,0,3,13,6,8,9,15,7,7,2,2,12,13,9,10,3,5,11,15,8,15,8,7,13,14,5,8,5,12,14,4,8,0,14,6,4,3,12,13,6,0,5,9,2,2,10,13,1,6,15,8,14,3,1,5,12,11,9,14,14,7,11,10,10,6,4,4,5,14,4,8,1,6,13,4,4,12,9,3,14,15,4,11,0,5,12,4,0,3,8,11,2,12,3,12,15,15,10,13,0,4,8,1,10,5,4,4,2,8,5,2,0,3,1,3,6,3,4,2,1,3,12,6,6,2,15,6,11,7,3,10,9,9,15,12,7,7,6,0,6,4,8,7,15,13,4,0,6,3,4,6,9,11,0,0,12,5,7,6,6,1,7,10,8,11,10,13,12,1,10,11,11,2,8,11,15,7,5,9,12,11,7,10,7,1,13,11,15,14,11,12,15,1,8,13,12,11,5,6,13,13,4,9,9,3,5,8,8,7,11,9,10,6,0,15,8,6,10,15,9,7,4,8,15,12,5,7,0,14,2,15,14,10,1,13,2,4,6,13,1,7,14,4,15,11,14,1,4,13,13,3,8,7,4,15,6,12,0,3,13,10,9,4,13,1,4,14,1,3,7,10,8,8,7,0,14,8,9,1,1,7,6,12,15,6,8,15,0,1,1,2,14,5,7,14,15,6,10,1,6,3,13,8,8,12,7,7,11,11,2,11,8,8,1,5,5,3,9,2,13,4,13,3,15,8,14,8,8,0,1,8,13,12,13,0,6,2,13,7,13,8,0,10,2,10,2,0,9,6,4,0,15,14,0,1,9,6,9,2,2,0,2,13,1,0,12,6,4,2,12,5,12,15,8,15,0,14,0,8,14,4,8,15,8,13,11,5,12,4,14,15,2,0,3,5,5,2,6,8,11,3,10,4,10,0,14,12,0,5,8,11,15,12,10,4,4,13,15,2,2,7,8,13,14,7,4,15,0,11,5,5,0,14,13,9,2,13,12,2,15,3,0,11,2,14,11,7,3,0,14,7,6,7,9,11,4,15,6,15,6,12,0,8,0,10,6,13,14,13,7,11,4,12,4,9,7,10,0,13,1,7,2,6,6,0,2,7,15,12,9,6,5,2,12,7,14,8,10,3,10,15,6,4,0,4,6,1,0,12,3,14,9,15,7,13,8,9,1,0,4,7,11,7,13,5,1,9,9,5,6,12,6,14,5,0,15,6,3,13,10,4,0,7,9,10,11,5,10,0,10,4,15,1,10,6,12,13,11,14,9,1,13,13,11,4,12,13,7,0,13,7,2,15,15,0,1,8,9,6,15,15,3,12,7,3,8,9,0,5,2,11,11,4,4,2,11,1,0,0,3,13,8,5,4,3,7,8,12,2,11,14,15,13,2,13,8,11,14,14,13,1,9,4,8,13,14,13,6,15,12,14,12,12,5,2,8,14,12,8,1,9,12,2,3,13,0,13,2,4,9,7,14,3,1,15,3,5,10,0,8,0,12,9,0,6,14,9,3,2,5,3,10,1,10,14,0,0,5,4,8,1,0,14,13,10,13,11,15,8,9,7,11,13,15,15,15,3,13,11,4,15,1,12,12,1,15,12,15,11,2,12,5,0,11,11,14,1,5,3,1,8,8,2,15,2,5,1,1,15,9,11,0,2,4,2,6,2,7,8,4,0,12,14,13,6,6,15,7,15,15,4,5,6,5,4,6,10,4,1,14,15,0,14,15,6,10,8,13,2,15,3,15,1,7,10,13,3,0,14,10,10,5,11,4,6,9,14,0,6,11,14,15,7,0,3,13,4,13,3,15,12,6,14,13,10,15,8,0,11,1,10,14,12,7,11,10,12,12,4,9,11,2,7,14,5,13,11,8,10,5,11,6,9,11,2,8,2,0,2,2,2,9,8,3,7,3,4,10,9,3,0,8,6,6,3,5,15,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"7\", \"6\", \"7\", \"11\"], \"clip_start\": 666.0, \"clip_end\": 672.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q11_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,5,13,12,4,15,9,7,2,15,7,15,9,10,13,5,2,10,7,10,1,14,7,8,3,4,13,12,10,6,2,9,8,12,1,9,8,8,3,8,14,12,3,0,9,5,8,9,4,6,9,7,15,14,3,6,2,15,11,13,0,14,11,0,12,12,4,14,9,10,10,14,15,14,13,13,1,3,12,12,7,8,13,7,6,10,13,5,12,15,5,14,2,12,5,13,4,9,4,4,2,12,13,2,6,7,10,10,1,11,12,3,12,10,7,12,12,15,14,10,11,9,12,12,2,3,11,3,10,7,7,2,3,15,15,14,0,3,0,7,6,6,5,4,14,3,7,12,15,7,12,0,10,7,11,2,7,9,12,15,7,4,12,10,5,0,3,13,6,8,9,15,7,7,2,2,12,13,9,10,3,5,11,15,8,15,8,7,13,14,5,8,5,12,14,4,8,0,14,6,4,3,12,13,6,0,5,9,2,2,10,13,1,6,15,8,14,3,1,5,12,11,9,14,14,7,11,10,10,6,4,4,5,14,4,8,1,6,13,4,4,12,9,3,14,15,4,11,0,5,12,4,0,3,8,11,2,12,3,12,15,15,10,13,0,4,8,1,10,5,4,4,2,8,5,2,0,3,1,3,6,3,4,2,1,3,12,6,6,2,15,6,11,7,3,10,9,9,15,12,7,7,6,0,6,4,8,7,15,13,4,0,6,3,4,6,9,11,0,0,12,5,7,6,6,1,7,10,8,11,10,13,12,1,10,11,11,2,8,11,15,7,5,9,12,11,7,10,7,1,13,11,15,14,11,12,15,1,8,13,12,11,5,6,13,13,4,9,9,3,5,8,8,7,11,9,10,6,0,15,8,6,10,15,9,7,4,8,15,12,5,7,0,14,2,15,14,10,1,13,2,4,6,13,1,7,14,4,15,11,14,1,4,13,13,3,8,7,4,15,6,12,0,3,13,10,9,4,13,1,4,14,1,3,7,10,8,8,7,0,14,8,9,1,1,7,6,12,15,6,8,15,0,1,1,2,14,5,7,14,15,6,10,1,6,3,13,8,8,12,7,7,11,11,2,11,8,8,1,5,5,3,9,2,13,4,13,3,15,8,14,8,8,0,1,8,13,12,13,0,6,2,13,7,13,8,0,10,2,10,2,0,9,6,4,0,15,14,0,1,9,6,9,2,2,0,2,13,1,0,12,6,4,2,12,5,12,15,8,15,0,14,0,8,14,4,8,15,8,13,11,5,12,4,14,15,2,0,3,5,5,2,6,8,11,3,10,4,10,0,14,12,0,5,8,11,15,12,10,4,4,13,15,2,2,7,8,13,14,7,4,15,0,11,5,5,0,14,13,9,2,13,12,2,15,3,0,11,2,14,11,7,3,0,14,7,6,7,9,11,4,15,6,15,6,12,0,8,0,10,6,13,14,13,7,11,4,12,4,9,7,10,0,13,1,7,2,6,6,0,2,7,15,12,9,6,5,2,12,7,14,8,10,3,10,15,6,4,0,4,6,1,0,12,3,14,9,15,7,13,8,9,1,0,4,7,11,7,13,5,1,9,9,5,6,12,6,14,5,0,15,6,3,13,10,4,0,7,9,10,11,5,10,0,10,4,15,1,10,6,12,13,11,14,9,1,13,13,11,4,12,13,7,0,13,7,2,15,15,0,1,8,9,6,15,15,3,12,7,3,8,9,0,5,2,11,11,4,4,2,11,1,0,0,3,13,8,5,4,3,7,8,12,2,11,14,15,13,2,13,8,11,14,14,13,1,9,4,8,13,14,13,6,15,12,14,12,12,5,2,8,14,12,8,1,9,12,2,3,13,0,13,2,4,9,7,14,3,1,15,3,5,10,0,8,0,12,9,0,6,14,9,3,2,5,3,10,1,10,14,0,0,5,4,8,1,0,14,13,10,13,11,15,8,9,7,11,13,15,15,15,3,13,11,4,15,1,12,12,1,15,12,15,11,2,12,5,0,11,11,14,1,5,3,1,8,8,2,15,2,5,1,1,15,9,11,0,2,4,2,6,2,7,8,4,0,12,14,13,6,6,15,7,15,15,4,5,6,5,4,6,10,4,1,14,15,0,14,15,6,10,8,13,2,15,3,15,1,7,10,13,3,0,14,10,10,5,11,4,6,9,14,0,6,11,14,15,7,0,3,13,4,13,3,15,12,6,14,13,10,15,8,0,11,1,10,14,12,7,11,10,12,12,4,9,11,2,7,14,5,13,11,8,10,5,11,6,9,11,2,8,2,0,2,2,2,9,8,3,7,3,4,10,9,3,0,8,6,6,3,5,15,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"14\", \"4\", \"12\", \"13\", \"0\"], \"clip_start\": 589.0, \"clip_end\": 595.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q12_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,5,13,12,4,15,9,7,2,15,7,15,9,10,13,5,2,10,7,10,1,14,7,8,3,4,13,12,10,6,2,9,8,12,1,9,8,8,3,8,14,12,3,0,9,5,8,9,4,6,9,7,15,14,3,6,2,15,11,13,0,14,11,0,12,12,4,14,9,10,10,14,15,14,13,13,1,3,12,12,7,8,13,7,6,10,13,5,12,15,5,14,2,12,5,13,4,9,4,4,2,12,13,2,6,7,10,10,1,11,12,3,12,10,7,12,12,15,14,10,11,9,12,12,2,3,11,3,10,7,7,2,3,15,15,14,0,3,0,7,6,6,5,4,14,3,7,12,15,7,12,0,10,7,11,2,7,9,12,15,7,4,12,10,5,0,3,13,6,8,9,15,7,7,2,2,12,13,9,10,3,5,11,15,8,15,8,7,13,14,5,8,5,12,14,4,8,0,14,6,4,3,12,13,6,0,5,9,2,2,10,13,1,6,15,8,14,3,1,5,12,11,9,14,14,7,11,10,10,6,4,4,5,14,4,8,1,6,13,4,4,12,9,3,14,15,4,11,0,5,12,4,0,3,8,11,2,12,3,12,15,15,10,13,0,4,8,1,10,5,4,4,2,8,5,2,0,3,1,3,6,3,4,2,1,3,12,6,6,2,15,6,11,7,3,10,9,9,15,12,7,7,6,0,6,4,8,7,15,13,4,0,6,3,4,6,9,11,0,0,12,5,7,6,6,1,7,10,8,11,10,13,12,1,10,11,11,2,8,11,15,7,5,9,12,11,7,10,7,1,13,11,15,14,11,12,15,1,8,13,12,11,5,6,13,13,4,9,9,3,5,8,8,7,11,9,10,6,0,15,8,6,10,15,9,7,4,8,15,12,5,7,0,14,2,15,14,10,1,13,2,4,6,13,1,7,14,4,15,11,14,1,4,13,13,3,8,7,4,15,6,12,0,3,13,10,9,4,13,1,4,14,1,3,7,10,8,8,7,0,14,8,9,1,1,7,6,12,15,6,8,15,0,1,1,2,14,5,7,14,15,6,10,1,6,3,13,8,8,12,7,7,11,11,2,11,8,8,1,5,5,3,9,2,13,4,13,3,15,8,14,8,8,0,1,8,13,12,13,0,6,2,13,7,13,8,0,10,2,10,2,0,9,6,4,0,15,14,0,1,9,6,9,2,2,0,2,13,1,0,12,6,4,2,12,5,12,15,8,15,0,14,0,8,14,4,8,15,8,13,11,5,12,4,14,15,2,0,3,5,5,2,6,8,11,3,10,4,10,0,14,12,0,5,8,11,15,12,10,4,4,13,15,2,2,7,8,13,14,7,4,15,0,11,5,5,0,14,13,9,2,13,12,2,15,3,0,11,2,14,11,7,3,0,14,7,6,7,9,11,4,15,6,15,6,12,0,8,0,10,6,13,14,13,7,11,4,12,4,9,7,10,0,13,1,7,2,6,6,0,2,7,15,12,9,6,5,2,12,7,14,8,10,3,10,15,6,4,0,4,6,1,0,12,3,14,9,15,7,13,8,9,1,0,4,7,11,7,13,5,1,9,9,5,6,12,6,14,5,0,15,6,3,13,10,4,0,7,9,10,11,5,10,0,10,4,15,1,10,6,12,13,11,14,9,1,13,13,11,4,12,13,7,0,13,7,2,15,15,0,1,8,9,6,15,15,3,12,7,3,8,9,0,5,2,11,11,4,4,2,11,1,0,0,3,13,8,5,4,3,7,8,12,2,11,14,15,13,2,13,8,11,14,14,13,1,9,4,8,13,14,13,6,15,12,14,12,12,5,2,8,14,12,8,1,9,12,2,3,13,0,13,2,4,9,7,14,3,1,15,3,5,10,0,8,0,12,9,0,6,14,9,3,2,5,3,10,1,10,14,0,0,5,4,8,1,0,14,13,10,13,11,15,8,9,7,11,13,15,15,15,3,13,11,4,15,1,12,12,1,15,12,15,11,2,12,5,0,11,11,14,1,5,3,1,8,8,2,15,2,5,1,1,15,9,11,0,2,4,2,6,2,7,8,4,0,12,14,13,6,6,15,7,15,15,4,5,6,5,4,6,10,4,1,14,15,0,14,15,6,10,8,13,2,15,3,15,1,7,10,13,3,0,14,10,10,5,11,4,6,9,14,0,6,11,14,15,7,0,3,13,4,13,3,15,12,6,14,13,10,15,8,0,11,1,10,14,12,7,11,10,12,12,4,9,11,2,7,14,5,13,11,8,10,5,11,6,9,11,2,8,2,0,2,2,2,9,8,3,7,3,4,10,9,3,0,8,6,6,3,5,15,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"2\", \"7\", \"8\", \"4\"], \"clip_start\": 900.0, \"clip_end\": 906.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q13_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,5,13,12,4,15,9,7,2,15,7,15,9,10,13,5,2,10,7,10,1,14,7,8,3,4,13,12,10,6,2,9,8,12,1,9,8,8,3,8,14,12,3,0,9,5,8,9,4,6,9,7,15,14,3,6,2,15,11,13,0,14,11,0,12,12,4,14,9,10,10,14,15,14,13,13,1,3,12,12,7,8,13,7,6,10,13,5,12,15,5,14,2,12,5,13,4,9,4,4,2,12,13,2,6,7,10,10,1,11,12,3,12,10,7,12,12,15,14,10,11,9,12,12,2,3,11,3,10,7,7,2,3,15,15,14,0,3,0,7,6,6,5,4,14,3,7,12,15,7,12,0,10,7,11,2,7,9,12,15,7,4,12,10,5,0,3,13,6,8,9,15,7,7,2,2,12,13,9,10,3,5,11,15,8,15,8,7,13,14,5,8,5,12,14,4,8,0,14,6,4,3,12,13,6,0,5,9,2,2,10,13,1,6,15,8,14,3,1,5,12,11,9,14,14,7,11,10,10,6,4,4,5,14,4,8,1,6,13,4,4,12,9,3,14,15,4,11,0,5,12,4,0,3,8,11,2,12,3,12,15,15,10,13,0,4,8,1,10,5,4,4,2,8,5,2,0,3,1,3,6,3,4,2,1,3,12,6,6,2,15,6,11,7,3,10,9,9,15,12,7,7,6,0,6,4,8,7,15,13,4,0,6,3,4,6,9,11,0,0,12,5,7,6,6,1,7,10,8,11,10,13,12,1,10,11,11,2,8,11,15,7,5,9,12,11,7,10,7,1,13,11,15,14,11,12,15,1,8,13,12,11,5,6,13,13,4,9,9,3,5,8,8,7,11,9,10,6,0,15,8,6,10,15,9,7,4,8,15,12,5,7,0,14,2,15,14,10,1,13,2,4,6,13,1,7,14,4,15,11,14,1,4,13,13,3,8,7,4,15,6,12,0,3,13,10,9,4,13,1,4,14,1,3,7,10,8,8,7,0,14,8,9,1,1,7,6,12,15,6,8,15,0,1,1,2,14,5,7,14,15,6,10,1,6,3,13,8,8,12,7,7,11,11,2,11,8,8,1,5,5,3,9,2,13,4,13,3,15,8,14,8,8,0,1,8,13,12,13,0,6,2,13,7,13,8,0,10,2,10,2,0,9,6,4,0,15,14,0,1,9,6,9,2,2,0,2,13,1,0,12,6,4,2,12,5,12,15,8,15,0,14,0,8,14,4,8,15,8,13,11,5,12,4,14,15,2,0,3,5,5,2,6,8,11,3,10,4,10,0,14,12,0,5,8,11,15,12,10,4,4,13,15,2,2,7,8,13,14,7,4,15,0,11,5,5,0,14,13,9,2,13,12,2,15,3,0,11,2,14,11,7,3,0,14,7,6,7,9,11,4,15,6,15,6,12,0,8,0,10,6,13,14,13,7,11,4,12,4,9,7,10,0,13,1,7,2,6,6,0,2,7,15,12,9,6,5,2,12,7,14,8,10,3,10,15,6,4,0,4,6,1,0,12,3,14,9,15,7,13,8,9,1,0,4,7,11,7,13,5,1,9,9,5,6,12,6,14,5,0,15,6,3,13,10,4,0,7,9,10,11,5,10,0,10,4,15,1,10,6,12,13,11,14,9,1,13,13,11,4,12,13,7,0,13,7,2,15,15,0,1,8,9,6,15,15,3,12,7,3,8,9,0,5,2,11,11,4,4,2,11,1,0,0,3,13,8,5,4,3,7,8,12,2,11,14,15,13,2,13,8,11,14,14,13,1,9,4,8,13,14,13,6,15,12,14,12,12,5,2,8,14,12,8,1,9,12,2,3,13,0,13,2,4,9,7,14,3,1,15,3,5,10,0,8,0,12,9,0,6,14,9,3,2,5,3,10,1,10,14,0,0,5,4,8,1,0,14,13,10,13,11,15,8,9,7,11,13,15,15,15,3,13,11,4,15,1,12,12,1,15,12,15,11,2,12,5,0,11,11,14,1,5,3,1,8,8,2,15,2,5,1,1,15,9,11,0,2,4,2,6,2,7,8,4,0,12,14,13,6,6,15,7,15,15,4,5,6,5,4,6,10,4,1,14,15,0,14,15,6,10,8,13,2,15,3,15,1,7,10,13,3,0,14,10,10,5,11,4,6,9,14,0,6,11,14,15,7,0,3,13,4,13,3,15,12,6,14,13,10,15,8,0,11,1,10,14,12,7,11,10,12,12,4,9,11,2,7,14,5,13,11,8,10,5,11,6,9,11,2,8,2,0,2,2,2,9,8,3,7,3,4,10,9,3,0,8,6,6,3,5,15,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"2\", \"15\", \"3\", \"15\"], \"clip_start\": 932.0, \"clip_end\": 938.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q14_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,5,13,12,4,15,9,7,2,15,7,15,9,10,13,5,2,10,7,10,1,14,7,8,3,4,13,12,10,6,2,9,8,12,1,9,8,8,3,8,14,12,3,0,9,5,8,9,4,6,9,7,15,14,3,6,2,15,11,13,0,14,11,0,12,12,4,14,9,10,10,14,15,14,13,13,1,3,12,12,7,8,13,7,6,10,13,5,12,15,5,14,2,12,5,13,4,9,4,4,2,12,13,2,6,7,10,10,1,11,12,3,12,10,7,12,12,15,14,10,11,9,12,12,2,3,11,3,10,7,7,2,3,15,15,14,0,3,0,7,6,6,5,4,14,3,7,12,15,7,12,0,10,7,11,2,7,9,12,15,7,4,12,10,5,0,3,13,6,8,9,15,7,7,2,2,12,13,9,10,3,5,11,15,8,15,8,7,13,14,5,8,5,12,14,4,8,0,14,6,4,3,12,13,6,0,5,9,2,2,10,13,1,6,15,8,14,3,1,5,12,11,9,14,14,7,11,10,10,6,4,4,5,14,4,8,1,6,13,4,4,12,9,3,14,15,4,11,0,5,12,4,0,3,8,11,2,12,3,12,15,15,10,13,0,4,8,1,10,5,4,4,2,8,5,2,0,3,1,3,6,3,4,2,1,3,12,6,6,2,15,6,11,7,3,10,9,9,15,12,7,7,6,0,6,4,8,7,15,13,4,0,6,3,4,6,9,11,0,0,12,5,7,6,6,1,7,10,8,11,10,13,12,1,10,11,11,2,8,11,15,7,5,9,12,11,7,10,7,1,13,11,15,14,11,12,15,1,8,13,12,11,5,6,13,13,4,9,9,3,5,8,8,7,11,9,10,6,0,15,8,6,10,15,9,7,4,8,15,12,5,7,0,14,2,15,14,10,1,13,2,4,6,13,1,7,14,4,15,11,14,1,4,13,13,3,8,7,4,15,6,12,0,3,13,10,9,4,13,1,4,14,1,3,7,10,8,8,7,0,14,8,9,1,1,7,6,12,15,6,8,15,0,1,1,2,14,5,7,14,15,6,10,1,6,3,13,8,8,12,7,7,11,11,2,11,8,8,1,5,5,3,9,2,13,4,13,3,15,8,14,8,8,0,1,8,13,12,13,0,6,2,13,7,13,8,0,10,2,10,2,0,9,6,4,0,15,14,0,1,9,6,9,2,2,0,2,13,1,0,12,6,4,2,12,5,12,15,8,15,0,14,0,8,14,4,8,15,8,13,11,5,12,4,14,15,2,0,3,5,5,2,6,8,11,3,10,4,10,0,14,12,0,5,8,11,15,12,10,4,4,13,15,2,2,7,8,13,14,7,4,15,0,11,5,5,0,14,13,9,2,13,12,2,15,3,0,11,2,14,11,7,3,0,14,7,6,7,9,11,4,15,6,15,6,12,0,8,0,10,6,13,14,13,7,11,4,12,4,9,7,10,0,13,1,7,2,6,6,0,2,7,15,12,9,6,5,2,12,7,14,8,10,3,10,15,6,4,0,4,6,1,0,12,3,14,9,15,7,13,8,9,1,0,4,7,11,7,13,5,1,9,9,5,6,12,6,14,5,0,15,6,3,13,10,4,0,7,9,10,11,5,10,0,10,4,15,1,10,6,12,13,11,14,9,1,13,13,11,4,12,13,7,0,13,7,2,15,15,0,1,8,9,6,15,15,3,12,7,3,8,9,0,5,2,11,11,4,4,2,11,1,0,0,3,13,8,5,4,3,7,8,12,2,11,14,15,13,2,13,8,11,14,14,13,1,9,4,8,13,14,13,6,15,12,14,12,12,5,2,8,14,12,8,1,9,12,2,3,13,0,13,2,4,9,7,14,3,1,15,3,5,10,0,8,0,12,9,0,6,14,9,3,2,5,3,10,1,10,14,0,0,5,4,8,1,0,14,13,10,13,11,15,8,9,7,11,13,15,15,15,3,13,11,4,15,1,12,12,1,15,12,15,11,2,12,5,0,11,11,14,1,5,3,1,8,8,2,15,2,5,1,1,15,9,11,0,2,4,2,6,2,7,8,4,0,12,14,13,6,6,15,7,15,15,4,5,6,5,4,6,10,4,1,14,15,0,14,15,6,10,8,13,2,15,3,15,1,7,10,13,3,0,14,10,10,5,11,4,6,9,14,0,6,11,14,15,7,0,3,13,4,13,3,15,12,6,14,13,10,15,8,0,11,1,10,14,12,7,11,10,12,12,4,9,11,2,7,14,5,13,11,8,10,5,11,6,9,11,2,8,2,0,2,2,2,9,8,3,7,3,4,10,9,3,0,8,6,6,3,5,15,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"12\", \"1\", \"10\"], \"clip_start\": 332.0, \"clip_end\": 336.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q15_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,11,5,13,12,4,15,9,7,2,15,7,15,9,10,13,5,2,10,7,10,1,14,7,8,3,4,13,12,10,6,2,9,8,12,1,9,8,8,3,8,14,12,3,0,9,5,8,9,4,6,9,7,15,14,3,6,2,15,11,13,0,14,11,0,12,12,4,14,9,10,10,14,15,14,13,13,1,3,12,12,7,8,13,7,6,10,13,5,12,15,5,14,2,12,5,13,4,9,4,4,2,12,13,2,6,7,10,10,1,11,12,3,12,10,7,12,12,15,14,10,11,9,12,12,2,3,11,3,10,7,7,2,3,15,15,14,0,3,0,7,6,6,5,4,14,3,7,12,15,7,12,0,10,7,11,2,7,9,12,15,7,4,12,10,5,0,3,13,6,8,9,15,7,7,2,2,12,13,9,10,3,5,11,15,8,15,8,7,13,14,5,8,5,12,14,4,8,0,14,6,4,3,12,13,6,0,5,9,2,2,10,13,1,6,15,8,14,3,1,5,12,11,9,14,14,7,11,10,10,6,4,4,5,14,4,8,1,6,13,4,4,12,9,3,14,15,4,11,0,5,12,4,0,3,8,11,2,12,3,12,15,15,10,13,0,4,8,1,10,5,4,4,2,8,5,2,0,3,1,3,6,3,4,2,1,3,12,6,6,2,15,6,11,7,3,10,9,9,15,12,7,7,6,0,6,4,8,7,15,13,4,0,6,3,4,6,9,11,0,0,12,5,7,6,6,1,7,10,8,11,10,13,12,1,10,11,11,2,8,11,15,7,5,9,12,11,7,10,7,1,13,11,15,14,11,12,15,1,8,13,12,11,5,6,13,13,4,9,9,3,5,8,8,7,11,9,10,6,0,15,8,6,10,15,9,7,4,8,15,12,5,7,0,14,2,15,14,10,1,13,2,4,6,13,1,7,14,4,15,11,14,1,4,13,13,3,8,7,4,15,6,12,0,3,13,10,9,4,13,1,4,14,1,3,7,10,8,8,7,0,14,8,9,1,1,7,6,12,15,6,8,15,0,1,1,2,14,5,7,14,15,6,10,1,6,3,13,8,8,12,7,7,11,11,2,11,8,8,1,5,5,3,9,2,13,4,13,3,15,8,14,8,8,0,1,8,13,12,13,0,6,2,13,7,13,8,0,10,2,10,2,0,9,6,4,0,15,14,0,1,9,6,9,2,2,0,2,13,1,0,12,6,4,2,12,5,12,15,8,15,0,14,0,8,14,4,8,15,8,13,11,5,12,4,14,15,2,0,3,5,5,2,6,8,11,3,10,4,10,0,14,12,0,5,8,11,15,12,10,4,4,13,15,2,2,7,8,13,14,7,4,15,0,11,5,5,0,14,13,9,2,13,12,2,15,3,0,11,2,14,11,7,3,0,14,7,6,7,9,11,4,15,6,15,6,12,0,8,0,10,6,13,14,13,7,11,4,12,4,9,7,10,0,13,1,7,2,6,6,0,2,7,15,12,9,6,5,2,12,7,14,8,10,3,10,15,6,4,0,4,6,1,0,12,3,14,9,15,7,13,8,9,1,0,4,7,11,7,13,5,1,9,9,5,6,12,6,14,5,0,15,6,3,13,10,4,0,7,9,10,11,5,10,0,10,4,15,1,10,6,12,13,11,14,9,1,13,13,11,4,12,13,7,0,13,7,2,15,15,0,1,8,9,6,15,15,3,12,7,3,8,9,0,5,2,11,11,4,4,2,11,1,0,0,3,13,8,5,4,3,7,8,12,2,11,14,15,13,2,13,8,11,14,14,13,1,9,4,8,13,14,13,6,15,12,14,12,12,5,2,8,14,12,8,1,9,12,2,3,13,0,13,2,4,9,7,14,3,1,15,3,5,10,0,8,0,12,9,0,6,14,9,3,2,5,3,10,1,10,14,0,0,5,4,8,1,0,14,13,10,13,11,15,8,9,7,11,13,15,15,15,3,13,11,4,15,1,12,12,1,15,12,15,11,2,12,5,0,11,11,14,1,5,3,1,8,8,2,15,2,5,1,1,15,9,11,0,2,4,2,6,2,7,8,4,0,12,14,13,6,6,15,7,15,15,4,5,6,5,4,6,10,4,1,14,15,0,14,15,6,10,8,13,2,15,3,15,1,7,10,13,3,0,14,10,10,5,11,4,6,9,14,0,6,11,14,15,7,0,3,13,4,13,3,15,12,6,14,13,10,15,8,0,11,1,10,14,12,7,11,10,12,12,4,9,11,2,7,14,5,13,11,8,10,5,11,6,9,11,2,8,2,0,2,2,2,9,8,3,7,3,4,10,9,3,0,8,6,6,3,5,15,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"10\", \"12\", \"3\"], \"clip_start\": 853.0, \"clip_end\": 858.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,3,1,5,11,9,8,14,14,1,3,9,6,2,10,1,12,10,8,3,5,4,1,0,5,12,8,6,6,0,1,3,8,9,15,5,14,3,1,13,5,6,0,3,14,15,13,3,12,12,7,13,8,8,14,2,13,13,11,9,13,5,8,9,13,3,10,8,9,13,3,11,12,7,14,13,9,0,4,15,13,10,14,14,2,9,3,3,4,2,1,14,11,15,7,12,10,5,5,0,7,2,9,9,14,2,5,7,14,6,15,5,14,5,15,5,8,3,13,1,0,1,5,5,12,7,11,12,0,6,8,9,12,6,1,15,14,3,9,13,2,4,9,2,12,7,13,8,8,12,4,14,1,2,5,1,10,12,10,3,1,5,6,9,3,5,14,8,9,14,9,3,10,9,11,2,8,13,10,6,11,14,13,11,1,15,8,3,2,13,15,12,6,1,15,4,12,14,8,13,2,7,3,14,9,10,15,5,11,0,10,8,11,5,8,5,0,3,2,5,2,4,5,13,10,2,7,12,6,7,9,6,0,4,2,15,2,10,8,5,1,11,7,3,5,2,10,14,5,9,13,4,1,14,3,14,6,9,1,15,7,15,4,0,15,0,14,5,6,11,12,11,13,6,15,4,7,0,4,0,6,2,15,7,14,7,4,9,8,2,14,3,12,0,13,1,10,15,5,1,11,15,4,3,0,12,2,10,12,1,3,13,3,8,14,0,13,3,14,2,4,13,2,0,0,12,9,8,3,2,8,9,15,14,6,1,13,1,5,3,4,5,8,6,9,0,8,10,4,12,4,2,8,10,0,2,11,15,7,11,9,7,2,5,9,5,14,3,5,13,0,11,1,3,10,3,13,8,9,9,3,4,14,12,14,0,12,15,15,13,3,12,15,14,13,4,14,6,7,1,9,3,6,6,13,8,15,12,11,4,0,13,1,14,9,10,2,2,4,8,7,8,12,13,3,5,12,11,5,10,14,3,3,15,4,3,13,14,11,15,9,4,12,3,15,13,13,1,12,2,2,11,5,14,7,11,8,11,10,7,1,11,11,6,7,3,12,3,2,8,11,0,2,7,12,5,11,8,1,2,3,3,0,8,8,11,6,15,7,1,2,12,15,6,11,7,4,8,1,8,10,1,1,13,3,4,11,9,14,14,1,2,12,0,0,1,4,10,2,14,14,7,9,5,6,6,5,3,9,5,2,14,6,15,4,7,13,8,2,14,12,3,3,3,7,12,4,0,11,6,10,14,11,9,14,13,8,10,13,15,8,2,7,0,2,10,9,0,4,3,2,1,5,0,0,9,7,1,8,15,0,2,5,14,0,14,0,0,10,9,8,15,8,10,6,4,14,14,13,9,13,10,5,2,11,5,2,9,14,14,3,7,9,3,9,1,0,1,1,9,5,6,15,8,7,5,14,11,11,9,2,12,4,14,5,1,6,13,9,9,13,11,3,4,7,9,7,5,14,15,7,8,0,11,2,2,13,15,12,1,3,9,10,13,10,15,9,9,12,14,15,1,3,4,14,14,15,6,5,5,3,12,3,13,0,5,1,0,15,12,1,11,2,5,3,1,10,6,1,3,6,11,8,15,4,9,7,12,6,10,7,10,1,8,0,7,12,10,3,1,6,15,13,9,10,10,9,12,9,7,0,4,15,2,2,10,15,14,12,14,15,8,8,13,13,13,8,15,2,3,8,1,15,11,13,5,4,2,3,11,0,5,6,0,13,0,2,14,0,3,8,15,1,8,2,3,2,6,15,11,9,12,10,8,0,7,12,3,8,5,9,9,5,6,3,11,2,6,3,11,10,3,9,4,6,3,5,13,11,1,2,2,10,3,5,13,6,0,11,11,5,1,9,12,1,6,4,0,10,9,13,13,4,1,13,13,2,9,5,7,9,13,15,6,7,6,9,3,13,5,6,2,5,15,10,12,3,7,1,3,7,9,14,13,1,0,0,4,14,13,11,3,4,9,12,6,2,8,15,3,14,6,15,15,10,13,12,14,4,9,14,3,8,2,9,11,13,5,11,13,13,12,9,12,5,14,11,10,7,9,11,7,4,10,2,12,11,2,5,1,12,8,0,15,6,1,8,6,2,11,6,15,9,4,2,15,0,5,8,3,0,2,11,14,2,5,3,13,10,14,14,11,9,5,11,11,2,1,12,13,6,13,1,8,5,10,13,3,3,11,7,3,12,11,14,4,0,2,3,4,1,7,2,9,5,15,15,13,2,13,12,13,10,4,4,4,13,10,14,10,13,3,7,0,9,8,6,2,7,11,12,1,8,8,6,10,2,7,11,0,12,14,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"8\", \"10\", \"6\", \"4\", \"14\"], \"clip_start\": 592.0, \"clip_end\": 598.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,3,1,5,11,9,8,14,14,1,3,9,6,2,10,1,12,10,8,3,5,4,1,0,5,12,8,6,6,0,1,3,8,9,15,5,14,3,1,13,5,6,0,3,14,15,13,3,12,12,7,13,8,8,14,2,13,13,11,9,13,5,8,9,13,3,10,8,9,13,3,11,12,7,14,13,9,0,4,15,13,10,14,14,2,9,3,3,4,2,1,14,11,15,7,12,10,5,5,0,7,2,9,9,14,2,5,7,14,6,15,5,14,5,15,5,8,3,13,1,0,1,5,5,12,7,11,12,0,6,8,9,12,6,1,15,14,3,9,13,2,4,9,2,12,7,13,8,8,12,4,14,1,2,5,1,10,12,10,3,1,5,6,9,3,5,14,8,9,14,9,3,10,9,11,2,8,13,10,6,11,14,13,11,1,15,8,3,2,13,15,12,6,1,15,4,12,14,8,13,2,7,3,14,9,10,15,5,11,0,10,8,11,5,8,5,0,3,2,5,2,4,5,13,10,2,7,12,6,7,9,6,0,4,2,15,2,10,8,5,1,11,7,3,5,2,10,14,5,9,13,4,1,14,3,14,6,9,1,15,7,15,4,0,15,0,14,5,6,11,12,11,13,6,15,4,7,0,4,0,6,2,15,7,14,7,4,9,8,2,14,3,12,0,13,1,10,15,5,1,11,15,4,3,0,12,2,10,12,1,3,13,3,8,14,0,13,3,14,2,4,13,2,0,0,12,9,8,3,2,8,9,15,14,6,1,13,1,5,3,4,5,8,6,9,0,8,10,4,12,4,2,8,10,0,2,11,15,7,11,9,7,2,5,9,5,14,3,5,13,0,11,1,3,10,3,13,8,9,9,3,4,14,12,14,0,12,15,15,13,3,12,15,14,13,4,14,6,7,1,9,3,6,6,13,8,15,12,11,4,0,13,1,14,9,10,2,2,4,8,7,8,12,13,3,5,12,11,5,10,14,3,3,15,4,3,13,14,11,15,9,4,12,3,15,13,13,1,12,2,2,11,5,14,7,11,8,11,10,7,1,11,11,6,7,3,12,3,2,8,11,0,2,7,12,5,11,8,1,2,3,3,0,8,8,11,6,15,7,1,2,12,15,6,11,7,4,8,1,8,10,1,1,13,3,4,11,9,14,14,1,2,12,0,0,1,4,10,2,14,14,7,9,5,6,6,5,3,9,5,2,14,6,15,4,7,13,8,2,14,12,3,3,3,7,12,4,0,11,6,10,14,11,9,14,13,8,10,13,15,8,2,7,0,2,10,9,0,4,3,2,1,5,0,0,9,7,1,8,15,0,2,5,14,0,14,0,0,10,9,8,15,8,10,6,4,14,14,13,9,13,10,5,2,11,5,2,9,14,14,3,7,9,3,9,1,0,1,1,9,5,6,15,8,7,5,14,11,11,9,2,12,4,14,5,1,6,13,9,9,13,11,3,4,7,9,7,5,14,15,7,8,0,11,2,2,13,15,12,1,3,9,10,13,10,15,9,9,12,14,15,1,3,4,14,14,15,6,5,5,3,12,3,13,0,5,1,0,15,12,1,11,2,5,3,1,10,6,1,3,6,11,8,15,4,9,7,12,6,10,7,10,1,8,0,7,12,10,3,1,6,15,13,9,10,10,9,12,9,7,0,4,15,2,2,10,15,14,12,14,15,8,8,13,13,13,8,15,2,3,8,1,15,11,13,5,4,2,3,11,0,5,6,0,13,0,2,14,0,3,8,15,1,8,2,3,2,6,15,11,9,12,10,8,0,7,12,3,8,5,9,9,5,6,3,11,2,6,3,11,10,3,9,4,6,3,5,13,11,1,2,2,10,3,5,13,6,0,11,11,5,1,9,12,1,6,4,0,10,9,13,13,4,1,13,13,2,9,5,7,9,13,15,6,7,6,9,3,13,5,6,2,5,15,10,12,3,7,1,3,7,9,14,13,1,0,0,4,14,13,11,3,4,9,12,6,2,8,15,3,14,6,15,15,10,13,12,14,4,9,14,3,8,2,9,11,13,5,11,13,13,12,9,12,5,14,11,10,7,9,11,7,4,10,2,12,11,2,5,1,12,8,0,15,6,1,8,6,2,11,6,15,9,4,2,15,0,5,8,3,0,2,11,14,2,5,3,13,10,14,14,11,9,5,11,11,2,1,12,13,6,13,1,8,5,10,13,3,3,11,7,3,12,11,14,4,0,2,3,4,1,7,2,9,5,15,15,13,2,13,12,13,10,4,4,4,13,10,14,10,13,3,7,0,9,8,6,2,7,11,12,1,8,8,6,10,2,7,11,0,12,14,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"10\", \"3\", \"1\", \"5\", \"6\"], \"clip_start\": 158.0, \"clip_end\": 164.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,3,1,5,11,9,8,14,14,1,3,9,6,2,10,1,12,10,8,3,5,4,1,0,5,12,8,6,6,0,1,3,8,9,15,5,14,3,1,13,5,6,0,3,14,15,13,3,12,12,7,13,8,8,14,2,13,13,11,9,13,5,8,9,13,3,10,8,9,13,3,11,12,7,14,13,9,0,4,15,13,10,14,14,2,9,3,3,4,2,1,14,11,15,7,12,10,5,5,0,7,2,9,9,14,2,5,7,14,6,15,5,14,5,15,5,8,3,13,1,0,1,5,5,12,7,11,12,0,6,8,9,12,6,1,15,14,3,9,13,2,4,9,2,12,7,13,8,8,12,4,14,1,2,5,1,10,12,10,3,1,5,6,9,3,5,14,8,9,14,9,3,10,9,11,2,8,13,10,6,11,14,13,11,1,15,8,3,2,13,15,12,6,1,15,4,12,14,8,13,2,7,3,14,9,10,15,5,11,0,10,8,11,5,8,5,0,3,2,5,2,4,5,13,10,2,7,12,6,7,9,6,0,4,2,15,2,10,8,5,1,11,7,3,5,2,10,14,5,9,13,4,1,14,3,14,6,9,1,15,7,15,4,0,15,0,14,5,6,11,12,11,13,6,15,4,7,0,4,0,6,2,15,7,14,7,4,9,8,2,14,3,12,0,13,1,10,15,5,1,11,15,4,3,0,12,2,10,12,1,3,13,3,8,14,0,13,3,14,2,4,13,2,0,0,12,9,8,3,2,8,9,15,14,6,1,13,1,5,3,4,5,8,6,9,0,8,10,4,12,4,2,8,10,0,2,11,15,7,11,9,7,2,5,9,5,14,3,5,13,0,11,1,3,10,3,13,8,9,9,3,4,14,12,14,0,12,15,15,13,3,12,15,14,13,4,14,6,7,1,9,3,6,6,13,8,15,12,11,4,0,13,1,14,9,10,2,2,4,8,7,8,12,13,3,5,12,11,5,10,14,3,3,15,4,3,13,14,11,15,9,4,12,3,15,13,13,1,12,2,2,11,5,14,7,11,8,11,10,7,1,11,11,6,7,3,12,3,2,8,11,0,2,7,12,5,11,8,1,2,3,3,0,8,8,11,6,15,7,1,2,12,15,6,11,7,4,8,1,8,10,1,1,13,3,4,11,9,14,14,1,2,12,0,0,1,4,10,2,14,14,7,9,5,6,6,5,3,9,5,2,14,6,15,4,7,13,8,2,14,12,3,3,3,7,12,4,0,11,6,10,14,11,9,14,13,8,10,13,15,8,2,7,0,2,10,9,0,4,3,2,1,5,0,0,9,7,1,8,15,0,2,5,14,0,14,0,0,10,9,8,15,8,10,6,4,14,14,13,9,13,10,5,2,11,5,2,9,14,14,3,7,9,3,9,1,0,1,1,9,5,6,15,8,7,5,14,11,11,9,2,12,4,14,5,1,6,13,9,9,13,11,3,4,7,9,7,5,14,15,7,8,0,11,2,2,13,15,12,1,3,9,10,13,10,15,9,9,12,14,15,1,3,4,14,14,15,6,5,5,3,12,3,13,0,5,1,0,15,12,1,11,2,5,3,1,10,6,1,3,6,11,8,15,4,9,7,12,6,10,7,10,1,8,0,7,12,10,3,1,6,15,13,9,10,10,9,12,9,7,0,4,15,2,2,10,15,14,12,14,15,8,8,13,13,13,8,15,2,3,8,1,15,11,13,5,4,2,3,11,0,5,6,0,13,0,2,14,0,3,8,15,1,8,2,3,2,6,15,11,9,12,10,8,0,7,12,3,8,5,9,9,5,6,3,11,2,6,3,11,10,3,9,4,6,3,5,13,11,1,2,2,10,3,5,13,6,0,11,11,5,1,9,12,1,6,4,0,10,9,13,13,4,1,13,13,2,9,5,7,9,13,15,6,7,6,9,3,13,5,6,2,5,15,10,12,3,7,1,3,7,9,14,13,1,0,0,4,14,13,11,3,4,9,12,6,2,8,15,3,14,6,15,15,10,13,12,14,4,9,14,3,8,2,9,11,13,5,11,13,13,12,9,12,5,14,11,10,7,9,11,7,4,10,2,12,11,2,5,1,12,8,0,15,6,1,8,6,2,11,6,15,9,4,2,15,0,5,8,3,0,2,11,14,2,5,3,13,10,14,14,11,9,5,11,11,2,1,12,13,6,13,1,8,5,10,13,3,3,11,7,3,12,11,14,4,0,2,3,4,1,7,2,9,5,15,15,13,2,13,12,13,10,4,4,4,13,10,14,10,13,3,7,0,9,8,6,2,7,11,12,1,8,8,6,10,2,7,11,0,12,14,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\"], \"clip_start\": 358.0, \"clip_end\": 361.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,3,1,5,11,9,8,14,14,1,3,9,6,2,10,1,12,10,8,3,5,4,1,0,5,12,8,6,6,0,1,3,8,9,15,5,14,3,1,13,5,6,0,3,14,15,13,3,12,12,7,13,8,8,14,2,13,13,11,9,13,5,8,9,13,3,10,8,9,13,3,11,12,7,14,13,9,0,4,15,13,10,14,14,2,9,3,3,4,2,1,14,11,15,7,12,10,5,5,0,7,2,9,9,14,2,5,7,14,6,15,5,14,5,15,5,8,3,13,1,0,1,5,5,12,7,11,12,0,6,8,9,12,6,1,15,14,3,9,13,2,4,9,2,12,7,13,8,8,12,4,14,1,2,5,1,10,12,10,3,1,5,6,9,3,5,14,8,9,14,9,3,10,9,11,2,8,13,10,6,11,14,13,11,1,15,8,3,2,13,15,12,6,1,15,4,12,14,8,13,2,7,3,14,9,10,15,5,11,0,10,8,11,5,8,5,0,3,2,5,2,4,5,13,10,2,7,12,6,7,9,6,0,4,2,15,2,10,8,5,1,11,7,3,5,2,10,14,5,9,13,4,1,14,3,14,6,9,1,15,7,15,4,0,15,0,14,5,6,11,12,11,13,6,15,4,7,0,4,0,6,2,15,7,14,7,4,9,8,2,14,3,12,0,13,1,10,15,5,1,11,15,4,3,0,12,2,10,12,1,3,13,3,8,14,0,13,3,14,2,4,13,2,0,0,12,9,8,3,2,8,9,15,14,6,1,13,1,5,3,4,5,8,6,9,0,8,10,4,12,4,2,8,10,0,2,11,15,7,11,9,7,2,5,9,5,14,3,5,13,0,11,1,3,10,3,13,8,9,9,3,4,14,12,14,0,12,15,15,13,3,12,15,14,13,4,14,6,7,1,9,3,6,6,13,8,15,12,11,4,0,13,1,14,9,10,2,2,4,8,7,8,12,13,3,5,12,11,5,10,14,3,3,15,4,3,13,14,11,15,9,4,12,3,15,13,13,1,12,2,2,11,5,14,7,11,8,11,10,7,1,11,11,6,7,3,12,3,2,8,11,0,2,7,12,5,11,8,1,2,3,3,0,8,8,11,6,15,7,1,2,12,15,6,11,7,4,8,1,8,10,1,1,13,3,4,11,9,14,14,1,2,12,0,0,1,4,10,2,14,14,7,9,5,6,6,5,3,9,5,2,14,6,15,4,7,13,8,2,14,12,3,3,3,7,12,4,0,11,6,10,14,11,9,14,13,8,10,13,15,8,2,7,0,2,10,9,0,4,3,2,1,5,0,0,9,7,1,8,15,0,2,5,14,0,14,0,0,10,9,8,15,8,10,6,4,14,14,13,9,13,10,5,2,11,5,2,9,14,14,3,7,9,3,9,1,0,1,1,9,5,6,15,8,7,5,14,11,11,9,2,12,4,14,5,1,6,13,9,9,13,11,3,4,7,9,7,5,14,15,7,8,0,11,2,2,13,15,12,1,3,9,10,13,10,15,9,9,12,14,15,1,3,4,14,14,15,6,5,5,3,12,3,13,0,5,1,0,15,12,1,11,2,5,3,1,10,6,1,3,6,11,8,15,4,9,7,12,6,10,7,10,1,8,0,7,12,10,3,1,6,15,13,9,10,10,9,12,9,7,0,4,15,2,2,10,15,14,12,14,15,8,8,13,13,13,8,15,2,3,8,1,15,11,13,5,4,2,3,11,0,5,6,0,13,0,2,14,0,3,8,15,1,8,2,3,2,6,15,11,9,12,10,8,0,7,12,3,8,5,9,9,5,6,3,11,2,6,3,11,10,3,9,4,6,3,5,13,11,1,2,2,10,3,5,13,6,0,11,11,5,1,9,12,1,6,4,0,10,9,13,13,4,1,13,13,2,9,5,7,9,13,15,6,7,6,9,3,13,5,6,2,5,15,10,12,3,7,1,3,7,9,14,13,1,0,0,4,14,13,11,3,4,9,12,6,2,8,15,3,14,6,15,15,10,13,12,14,4,9,14,3,8,2,9,11,13,5,11,13,13,12,9,12,5,14,11,10,7,9,11,7,4,10,2,12,11,2,5,1,12,8,0,15,6,1,8,6,2,11,6,15,9,4,2,15,0,5,8,3,0,2,11,14,2,5,3,13,10,14,14,11,9,5,11,11,2,1,12,13,6,13,1,8,5,10,13,3,3,11,7,3,12,11,14,4,0,2,3,4,1,7,2,9,5,15,15,13,2,13,12,13,10,4,4,4,13,10,14,10,13,3,7,0,9,8,6,2,7,11,12,1,8,8,6,10,2,7,11,0,12,14,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"14\", \"14\", \"3\"], \"clip_start\": 607.0, \"clip_end\": 612.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,3,1,5,11,9,8,14,14,1,3,9,6,2,10,1,12,10,8,3,5,4,1,0,5,12,8,6,6,0,1,3,8,9,15,5,14,3,1,13,5,6,0,3,14,15,13,3,12,12,7,13,8,8,14,2,13,13,11,9,13,5,8,9,13,3,10,8,9,13,3,11,12,7,14,13,9,0,4,15,13,10,14,14,2,9,3,3,4,2,1,14,11,15,7,12,10,5,5,0,7,2,9,9,14,2,5,7,14,6,15,5,14,5,15,5,8,3,13,1,0,1,5,5,12,7,11,12,0,6,8,9,12,6,1,15,14,3,9,13,2,4,9,2,12,7,13,8,8,12,4,14,1,2,5,1,10,12,10,3,1,5,6,9,3,5,14,8,9,14,9,3,10,9,11,2,8,13,10,6,11,14,13,11,1,15,8,3,2,13,15,12,6,1,15,4,12,14,8,13,2,7,3,14,9,10,15,5,11,0,10,8,11,5,8,5,0,3,2,5,2,4,5,13,10,2,7,12,6,7,9,6,0,4,2,15,2,10,8,5,1,11,7,3,5,2,10,14,5,9,13,4,1,14,3,14,6,9,1,15,7,15,4,0,15,0,14,5,6,11,12,11,13,6,15,4,7,0,4,0,6,2,15,7,14,7,4,9,8,2,14,3,12,0,13,1,10,15,5,1,11,15,4,3,0,12,2,10,12,1,3,13,3,8,14,0,13,3,14,2,4,13,2,0,0,12,9,8,3,2,8,9,15,14,6,1,13,1,5,3,4,5,8,6,9,0,8,10,4,12,4,2,8,10,0,2,11,15,7,11,9,7,2,5,9,5,14,3,5,13,0,11,1,3,10,3,13,8,9,9,3,4,14,12,14,0,12,15,15,13,3,12,15,14,13,4,14,6,7,1,9,3,6,6,13,8,15,12,11,4,0,13,1,14,9,10,2,2,4,8,7,8,12,13,3,5,12,11,5,10,14,3,3,15,4,3,13,14,11,15,9,4,12,3,15,13,13,1,12,2,2,11,5,14,7,11,8,11,10,7,1,11,11,6,7,3,12,3,2,8,11,0,2,7,12,5,11,8,1,2,3,3,0,8,8,11,6,15,7,1,2,12,15,6,11,7,4,8,1,8,10,1,1,13,3,4,11,9,14,14,1,2,12,0,0,1,4,10,2,14,14,7,9,5,6,6,5,3,9,5,2,14,6,15,4,7,13,8,2,14,12,3,3,3,7,12,4,0,11,6,10,14,11,9,14,13,8,10,13,15,8,2,7,0,2,10,9,0,4,3,2,1,5,0,0,9,7,1,8,15,0,2,5,14,0,14,0,0,10,9,8,15,8,10,6,4,14,14,13,9,13,10,5,2,11,5,2,9,14,14,3,7,9,3,9,1,0,1,1,9,5,6,15,8,7,5,14,11,11,9,2,12,4,14,5,1,6,13,9,9,13,11,3,4,7,9,7,5,14,15,7,8,0,11,2,2,13,15,12,1,3,9,10,13,10,15,9,9,12,14,15,1,3,4,14,14,15,6,5,5,3,12,3,13,0,5,1,0,15,12,1,11,2,5,3,1,10,6,1,3,6,11,8,15,4,9,7,12,6,10,7,10,1,8,0,7,12,10,3,1,6,15,13,9,10,10,9,12,9,7,0,4,15,2,2,10,15,14,12,14,15,8,8,13,13,13,8,15,2,3,8,1,15,11,13,5,4,2,3,11,0,5,6,0,13,0,2,14,0,3,8,15,1,8,2,3,2,6,15,11,9,12,10,8,0,7,12,3,8,5,9,9,5,6,3,11,2,6,3,11,10,3,9,4,6,3,5,13,11,1,2,2,10,3,5,13,6,0,11,11,5,1,9,12,1,6,4,0,10,9,13,13,4,1,13,13,2,9,5,7,9,13,15,6,7,6,9,3,13,5,6,2,5,15,10,12,3,7,1,3,7,9,14,13,1,0,0,4,14,13,11,3,4,9,12,6,2,8,15,3,14,6,15,15,10,13,12,14,4,9,14,3,8,2,9,11,13,5,11,13,13,12,9,12,5,14,11,10,7,9,11,7,4,10,2,12,11,2,5,1,12,8,0,15,6,1,8,6,2,11,6,15,9,4,2,15,0,5,8,3,0,2,11,14,2,5,3,13,10,14,14,11,9,5,11,11,2,1,12,13,6,13,1,8,5,10,13,3,3,11,7,3,12,11,14,4,0,2,3,4,1,7,2,9,5,15,15,13,2,13,12,13,10,4,4,4,13,10,14,10,13,3,7,0,9,8,6,2,7,11,12,1,8,8,6,10,2,7,11,0,12,14,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"4\", \"0\", \"13\", \"1\"], \"clip_start\": 409.0, \"clip_end\": 414.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,3,1,5,11,9,8,14,14,1,3,9,6,2,10,1,12,10,8,3,5,4,1,0,5,12,8,6,6,0,1,3,8,9,15,5,14,3,1,13,5,6,0,3,14,15,13,3,12,12,7,13,8,8,14,2,13,13,11,9,13,5,8,9,13,3,10,8,9,13,3,11,12,7,14,13,9,0,4,15,13,10,14,14,2,9,3,3,4,2,1,14,11,15,7,12,10,5,5,0,7,2,9,9,14,2,5,7,14,6,15,5,14,5,15,5,8,3,13,1,0,1,5,5,12,7,11,12,0,6,8,9,12,6,1,15,14,3,9,13,2,4,9,2,12,7,13,8,8,12,4,14,1,2,5,1,10,12,10,3,1,5,6,9,3,5,14,8,9,14,9,3,10,9,11,2,8,13,10,6,11,14,13,11,1,15,8,3,2,13,15,12,6,1,15,4,12,14,8,13,2,7,3,14,9,10,15,5,11,0,10,8,11,5,8,5,0,3,2,5,2,4,5,13,10,2,7,12,6,7,9,6,0,4,2,15,2,10,8,5,1,11,7,3,5,2,10,14,5,9,13,4,1,14,3,14,6,9,1,15,7,15,4,0,15,0,14,5,6,11,12,11,13,6,15,4,7,0,4,0,6,2,15,7,14,7,4,9,8,2,14,3,12,0,13,1,10,15,5,1,11,15,4,3,0,12,2,10,12,1,3,13,3,8,14,0,13,3,14,2,4,13,2,0,0,12,9,8,3,2,8,9,15,14,6,1,13,1,5,3,4,5,8,6,9,0,8,10,4,12,4,2,8,10,0,2,11,15,7,11,9,7,2,5,9,5,14,3,5,13,0,11,1,3,10,3,13,8,9,9,3,4,14,12,14,0,12,15,15,13,3,12,15,14,13,4,14,6,7,1,9,3,6,6,13,8,15,12,11,4,0,13,1,14,9,10,2,2,4,8,7,8,12,13,3,5,12,11,5,10,14,3,3,15,4,3,13,14,11,15,9,4,12,3,15,13,13,1,12,2,2,11,5,14,7,11,8,11,10,7,1,11,11,6,7,3,12,3,2,8,11,0,2,7,12,5,11,8,1,2,3,3,0,8,8,11,6,15,7,1,2,12,15,6,11,7,4,8,1,8,10,1,1,13,3,4,11,9,14,14,1,2,12,0,0,1,4,10,2,14,14,7,9,5,6,6,5,3,9,5,2,14,6,15,4,7,13,8,2,14,12,3,3,3,7,12,4,0,11,6,10,14,11,9,14,13,8,10,13,15,8,2,7,0,2,10,9,0,4,3,2,1,5,0,0,9,7,1,8,15,0,2,5,14,0,14,0,0,10,9,8,15,8,10,6,4,14,14,13,9,13,10,5,2,11,5,2,9,14,14,3,7,9,3,9,1,0,1,1,9,5,6,15,8,7,5,14,11,11,9,2,12,4,14,5,1,6,13,9,9,13,11,3,4,7,9,7,5,14,15,7,8,0,11,2,2,13,15,12,1,3,9,10,13,10,15,9,9,12,14,15,1,3,4,14,14,15,6,5,5,3,12,3,13,0,5,1,0,15,12,1,11,2,5,3,1,10,6,1,3,6,11,8,15,4,9,7,12,6,10,7,10,1,8,0,7,12,10,3,1,6,15,13,9,10,10,9,12,9,7,0,4,15,2,2,10,15,14,12,14,15,8,8,13,13,13,8,15,2,3,8,1,15,11,13,5,4,2,3,11,0,5,6,0,13,0,2,14,0,3,8,15,1,8,2,3,2,6,15,11,9,12,10,8,0,7,12,3,8,5,9,9,5,6,3,11,2,6,3,11,10,3,9,4,6,3,5,13,11,1,2,2,10,3,5,13,6,0,11,11,5,1,9,12,1,6,4,0,10,9,13,13,4,1,13,13,2,9,5,7,9,13,15,6,7,6,9,3,13,5,6,2,5,15,10,12,3,7,1,3,7,9,14,13,1,0,0,4,14,13,11,3,4,9,12,6,2,8,15,3,14,6,15,15,10,13,12,14,4,9,14,3,8,2,9,11,13,5,11,13,13,12,9,12,5,14,11,10,7,9,11,7,4,10,2,12,11,2,5,1,12,8,0,15,6,1,8,6,2,11,6,15,9,4,2,15,0,5,8,3,0,2,11,14,2,5,3,13,10,14,14,11,9,5,11,11,2,1,12,13,6,13,1,8,5,10,13,3,3,11,7,3,12,11,14,4,0,2,3,4,1,7,2,9,5,15,15,13,2,13,12,13,10,4,4,4,13,10,14,10,13,3,7,0,9,8,6,2,7,11,12,1,8,8,6,10,2,7,11,0,12,14,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"3\", \"14\", \"6\", \"15\", \"15\"], \"clip_start\": 879.0, \"clip_end\": 885.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,3,1,5,11,9,8,14,14,1,3,9,6,2,10,1,12,10,8,3,5,4,1,0,5,12,8,6,6,0,1,3,8,9,15,5,14,3,1,13,5,6,0,3,14,15,13,3,12,12,7,13,8,8,14,2,13,13,11,9,13,5,8,9,13,3,10,8,9,13,3,11,12,7,14,13,9,0,4,15,13,10,14,14,2,9,3,3,4,2,1,14,11,15,7,12,10,5,5,0,7,2,9,9,14,2,5,7,14,6,15,5,14,5,15,5,8,3,13,1,0,1,5,5,12,7,11,12,0,6,8,9,12,6,1,15,14,3,9,13,2,4,9,2,12,7,13,8,8,12,4,14,1,2,5,1,10,12,10,3,1,5,6,9,3,5,14,8,9,14,9,3,10,9,11,2,8,13,10,6,11,14,13,11,1,15,8,3,2,13,15,12,6,1,15,4,12,14,8,13,2,7,3,14,9,10,15,5,11,0,10,8,11,5,8,5,0,3,2,5,2,4,5,13,10,2,7,12,6,7,9,6,0,4,2,15,2,10,8,5,1,11,7,3,5,2,10,14,5,9,13,4,1,14,3,14,6,9,1,15,7,15,4,0,15,0,14,5,6,11,12,11,13,6,15,4,7,0,4,0,6,2,15,7,14,7,4,9,8,2,14,3,12,0,13,1,10,15,5,1,11,15,4,3,0,12,2,10,12,1,3,13,3,8,14,0,13,3,14,2,4,13,2,0,0,12,9,8,3,2,8,9,15,14,6,1,13,1,5,3,4,5,8,6,9,0,8,10,4,12,4,2,8,10,0,2,11,15,7,11,9,7,2,5,9,5,14,3,5,13,0,11,1,3,10,3,13,8,9,9,3,4,14,12,14,0,12,15,15,13,3,12,15,14,13,4,14,6,7,1,9,3,6,6,13,8,15,12,11,4,0,13,1,14,9,10,2,2,4,8,7,8,12,13,3,5,12,11,5,10,14,3,3,15,4,3,13,14,11,15,9,4,12,3,15,13,13,1,12,2,2,11,5,14,7,11,8,11,10,7,1,11,11,6,7,3,12,3,2,8,11,0,2,7,12,5,11,8,1,2,3,3,0,8,8,11,6,15,7,1,2,12,15,6,11,7,4,8,1,8,10,1,1,13,3,4,11,9,14,14,1,2,12,0,0,1,4,10,2,14,14,7,9,5,6,6,5,3,9,5,2,14,6,15,4,7,13,8,2,14,12,3,3,3,7,12,4,0,11,6,10,14,11,9,14,13,8,10,13,15,8,2,7,0,2,10,9,0,4,3,2,1,5,0,0,9,7,1,8,15,0,2,5,14,0,14,0,0,10,9,8,15,8,10,6,4,14,14,13,9,13,10,5,2,11,5,2,9,14,14,3,7,9,3,9,1,0,1,1,9,5,6,15,8,7,5,14,11,11,9,2,12,4,14,5,1,6,13,9,9,13,11,3,4,7,9,7,5,14,15,7,8,0,11,2,2,13,15,12,1,3,9,10,13,10,15,9,9,12,14,15,1,3,4,14,14,15,6,5,5,3,12,3,13,0,5,1,0,15,12,1,11,2,5,3,1,10,6,1,3,6,11,8,15,4,9,7,12,6,10,7,10,1,8,0,7,12,10,3,1,6,15,13,9,10,10,9,12,9,7,0,4,15,2,2,10,15,14,12,14,15,8,8,13,13,13,8,15,2,3,8,1,15,11,13,5,4,2,3,11,0,5,6,0,13,0,2,14,0,3,8,15,1,8,2,3,2,6,15,11,9,12,10,8,0,7,12,3,8,5,9,9,5,6,3,11,2,6,3,11,10,3,9,4,6,3,5,13,11,1,2,2,10,3,5,13,6,0,11,11,5,1,9,12,1,6,4,0,10,9,13,13,4,1,13,13,2,9,5,7,9,13,15,6,7,6,9,3,13,5,6,2,5,15,10,12,3,7,1,3,7,9,14,13,1,0,0,4,14,13,11,3,4,9,12,6,2,8,15,3,14,6,15,15,10,13,12,14,4,9,14,3,8,2,9,11,13,5,11,13,13,12,9,12,5,14,11,10,7,9,11,7,4,10,2,12,11,2,5,1,12,8,0,15,6,1,8,6,2,11,6,15,9,4,2,15,0,5,8,3,0,2,11,14,2,5,3,13,10,14,14,11,9,5,11,11,2,1,12,13,6,13,1,8,5,10,13,3,3,11,7,3,12,11,14,4,0,2,3,4,1,7,2,9,5,15,15,13,2,13,12,13,10,4,4,4,13,10,14,10,13,3,7,0,9,8,6,2,7,11,12,1,8,8,6,10,2,7,11,0,12,14,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"2\", \"3\", \"2\", \"6\", \"15\"], \"clip_start\": 774.0, \"clip_end\": 780.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,3,1,5,11,9,8,14,14,1,3,9,6,2,10,1,12,10,8,3,5,4,1,0,5,12,8,6,6,0,1,3,8,9,15,5,14,3,1,13,5,6,0,3,14,15,13,3,12,12,7,13,8,8,14,2,13,13,11,9,13,5,8,9,13,3,10,8,9,13,3,11,12,7,14,13,9,0,4,15,13,10,14,14,2,9,3,3,4,2,1,14,11,15,7,12,10,5,5,0,7,2,9,9,14,2,5,7,14,6,15,5,14,5,15,5,8,3,13,1,0,1,5,5,12,7,11,12,0,6,8,9,12,6,1,15,14,3,9,13,2,4,9,2,12,7,13,8,8,12,4,14,1,2,5,1,10,12,10,3,1,5,6,9,3,5,14,8,9,14,9,3,10,9,11,2,8,13,10,6,11,14,13,11,1,15,8,3,2,13,15,12,6,1,15,4,12,14,8,13,2,7,3,14,9,10,15,5,11,0,10,8,11,5,8,5,0,3,2,5,2,4,5,13,10,2,7,12,6,7,9,6,0,4,2,15,2,10,8,5,1,11,7,3,5,2,10,14,5,9,13,4,1,14,3,14,6,9,1,15,7,15,4,0,15,0,14,5,6,11,12,11,13,6,15,4,7,0,4,0,6,2,15,7,14,7,4,9,8,2,14,3,12,0,13,1,10,15,5,1,11,15,4,3,0,12,2,10,12,1,3,13,3,8,14,0,13,3,14,2,4,13,2,0,0,12,9,8,3,2,8,9,15,14,6,1,13,1,5,3,4,5,8,6,9,0,8,10,4,12,4,2,8,10,0,2,11,15,7,11,9,7,2,5,9,5,14,3,5,13,0,11,1,3,10,3,13,8,9,9,3,4,14,12,14,0,12,15,15,13,3,12,15,14,13,4,14,6,7,1,9,3,6,6,13,8,15,12,11,4,0,13,1,14,9,10,2,2,4,8,7,8,12,13,3,5,12,11,5,10,14,3,3,15,4,3,13,14,11,15,9,4,12,3,15,13,13,1,12,2,2,11,5,14,7,11,8,11,10,7,1,11,11,6,7,3,12,3,2,8,11,0,2,7,12,5,11,8,1,2,3,3,0,8,8,11,6,15,7,1,2,12,15,6,11,7,4,8,1,8,10,1,1,13,3,4,11,9,14,14,1,2,12,0,0,1,4,10,2,14,14,7,9,5,6,6,5,3,9,5,2,14,6,15,4,7,13,8,2,14,12,3,3,3,7,12,4,0,11,6,10,14,11,9,14,13,8,10,13,15,8,2,7,0,2,10,9,0,4,3,2,1,5,0,0,9,7,1,8,15,0,2,5,14,0,14,0,0,10,9,8,15,8,10,6,4,14,14,13,9,13,10,5,2,11,5,2,9,14,14,3,7,9,3,9,1,0,1,1,9,5,6,15,8,7,5,14,11,11,9,2,12,4,14,5,1,6,13,9,9,13,11,3,4,7,9,7,5,14,15,7,8,0,11,2,2,13,15,12,1,3,9,10,13,10,15,9,9,12,14,15,1,3,4,14,14,15,6,5,5,3,12,3,13,0,5,1,0,15,12,1,11,2,5,3,1,10,6,1,3,6,11,8,15,4,9,7,12,6,10,7,10,1,8,0,7,12,10,3,1,6,15,13,9,10,10,9,12,9,7,0,4,15,2,2,10,15,14,12,14,15,8,8,13,13,13,8,15,2,3,8,1,15,11,13,5,4,2,3,11,0,5,6,0,13,0,2,14,0,3,8,15,1,8,2,3,2,6,15,11,9,12,10,8,0,7,12,3,8,5,9,9,5,6,3,11,2,6,3,11,10,3,9,4,6,3,5,13,11,1,2,2,10,3,5,13,6,0,11,11,5,1,9,12,1,6,4,0,10,9,13,13,4,1,13,13,2,9,5,7,9,13,15,6,7,6,9,3,13,5,6,2,5,15,10,12,3,7,1,3,7,9,14,13,1,0,0,4,14,13,11,3,4,9,12,6,2,8,15,3,14,6,15,15,10,13,12,14,4,9,14,3,8,2,9,11,13,5,11,13,13,12,9,12,5,14,11,10,7,9,11,7,4,10,2,12,11,2,5,1,12,8,0,15,6,1,8,6,2,11,6,15,9,4,2,15,0,5,8,3,0,2,11,14,2,5,3,13,10,14,14,11,9,5,11,11,2,1,12,13,6,13,1,8,5,10,13,3,3,11,7,3,12,11,14,4,0,2,3,4,1,7,2,9,5,15,15,13,2,13,12,13,10,4,4,4,13,10,14,10,13,3,7,0,9,8,6,2,7,11,12,1,8,8,6,10,2,7,11,0,12,14,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\"], \"clip_start\": 967.0, \"clip_end\": 970.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,3,1,5,11,9,8,14,14,1,3,9,6,2,10,1,12,10,8,3,5,4,1,0,5,12,8,6,6,0,1,3,8,9,15,5,14,3,1,13,5,6,0,3,14,15,13,3,12,12,7,13,8,8,14,2,13,13,11,9,13,5,8,9,13,3,10,8,9,13,3,11,12,7,14,13,9,0,4,15,13,10,14,14,2,9,3,3,4,2,1,14,11,15,7,12,10,5,5,0,7,2,9,9,14,2,5,7,14,6,15,5,14,5,15,5,8,3,13,1,0,1,5,5,12,7,11,12,0,6,8,9,12,6,1,15,14,3,9,13,2,4,9,2,12,7,13,8,8,12,4,14,1,2,5,1,10,12,10,3,1,5,6,9,3,5,14,8,9,14,9,3,10,9,11,2,8,13,10,6,11,14,13,11,1,15,8,3,2,13,15,12,6,1,15,4,12,14,8,13,2,7,3,14,9,10,15,5,11,0,10,8,11,5,8,5,0,3,2,5,2,4,5,13,10,2,7,12,6,7,9,6,0,4,2,15,2,10,8,5,1,11,7,3,5,2,10,14,5,9,13,4,1,14,3,14,6,9,1,15,7,15,4,0,15,0,14,5,6,11,12,11,13,6,15,4,7,0,4,0,6,2,15,7,14,7,4,9,8,2,14,3,12,0,13,1,10,15,5,1,11,15,4,3,0,12,2,10,12,1,3,13,3,8,14,0,13,3,14,2,4,13,2,0,0,12,9,8,3,2,8,9,15,14,6,1,13,1,5,3,4,5,8,6,9,0,8,10,4,12,4,2,8,10,0,2,11,15,7,11,9,7,2,5,9,5,14,3,5,13,0,11,1,3,10,3,13,8,9,9,3,4,14,12,14,0,12,15,15,13,3,12,15,14,13,4,14,6,7,1,9,3,6,6,13,8,15,12,11,4,0,13,1,14,9,10,2,2,4,8,7,8,12,13,3,5,12,11,5,10,14,3,3,15,4,3,13,14,11,15,9,4,12,3,15,13,13,1,12,2,2,11,5,14,7,11,8,11,10,7,1,11,11,6,7,3,12,3,2,8,11,0,2,7,12,5,11,8,1,2,3,3,0,8,8,11,6,15,7,1,2,12,15,6,11,7,4,8,1,8,10,1,1,13,3,4,11,9,14,14,1,2,12,0,0,1,4,10,2,14,14,7,9,5,6,6,5,3,9,5,2,14,6,15,4,7,13,8,2,14,12,3,3,3,7,12,4,0,11,6,10,14,11,9,14,13,8,10,13,15,8,2,7,0,2,10,9,0,4,3,2,1,5,0,0,9,7,1,8,15,0,2,5,14,0,14,0,0,10,9,8,15,8,10,6,4,14,14,13,9,13,10,5,2,11,5,2,9,14,14,3,7,9,3,9,1,0,1,1,9,5,6,15,8,7,5,14,11,11,9,2,12,4,14,5,1,6,13,9,9,13,11,3,4,7,9,7,5,14,15,7,8,0,11,2,2,13,15,12,1,3,9,10,13,10,15,9,9,12,14,15,1,3,4,14,14,15,6,5,5,3,12,3,13,0,5,1,0,15,12,1,11,2,5,3,1,10,6,1,3,6,11,8,15,4,9,7,12,6,10,7,10,1,8,0,7,12,10,3,1,6,15,13,9,10,10,9,12,9,7,0,4,15,2,2,10,15,14,12,14,15,8,8,13,13,13,8,15,2,3,8,1,15,11,13,5,4,2,3,11,0,5,6,0,13,0,2,14,0,3,8,15,1,8,2,3,2,6,15,11,9,12,10,8,0,7,12,3,8,5,9,9,5,6,3,11,2,6,3,11,10,3,9,4,6,3,5,13,11,1,2,2,10,3,5,13,6,0,11,11,5,1,9,12,1,6,4,0,10,9,13,13,4,1,13,13,2,9,5,7,9,13,15,6,7,6,9,3,13,5,6,2,5,15,10,12,3,7,1,3,7,9,14,13,1,0,0,4,14,13,11,3,4,9,12,6,2,8,15,3,14,6,15,15,10,13,12,14,4,9,14,3,8,2,9,11,13,5,11,13,13,12,9,12,5,14,11,10,7,9,11,7,4,10,2,12,11,2,5,1,12,8,0,15,6,1,8,6,2,11,6,15,9,4,2,15,0,5,8,3,0,2,11,14,2,5,3,13,10,14,14,11,9,5,11,11,2,1,12,13,6,13,1,8,5,10,13,3,3,11,7,3,12,11,14,4,0,2,3,4,1,7,2,9,5,15,15,13,2,13,12,13,10,4,4,4,13,10,14,10,13,3,7,0,9,8,6,2,7,11,12,1,8,8,6,10,2,7,11,0,12,14,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"13\", \"3\"], \"clip_start\": 839.0, \"clip_end\": 844.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q9_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,3,1,5,11,9,8,14,14,1,3,9,6,2,10,1,12,10,8,3,5,4,1,0,5,12,8,6,6,0,1,3,8,9,15,5,14,3,1,13,5,6,0,3,14,15,13,3,12,12,7,13,8,8,14,2,13,13,11,9,13,5,8,9,13,3,10,8,9,13,3,11,12,7,14,13,9,0,4,15,13,10,14,14,2,9,3,3,4,2,1,14,11,15,7,12,10,5,5,0,7,2,9,9,14,2,5,7,14,6,15,5,14,5,15,5,8,3,13,1,0,1,5,5,12,7,11,12,0,6,8,9,12,6,1,15,14,3,9,13,2,4,9,2,12,7,13,8,8,12,4,14,1,2,5,1,10,12,10,3,1,5,6,9,3,5,14,8,9,14,9,3,10,9,11,2,8,13,10,6,11,14,13,11,1,15,8,3,2,13,15,12,6,1,15,4,12,14,8,13,2,7,3,14,9,10,15,5,11,0,10,8,11,5,8,5,0,3,2,5,2,4,5,13,10,2,7,12,6,7,9,6,0,4,2,15,2,10,8,5,1,11,7,3,5,2,10,14,5,9,13,4,1,14,3,14,6,9,1,15,7,15,4,0,15,0,14,5,6,11,12,11,13,6,15,4,7,0,4,0,6,2,15,7,14,7,4,9,8,2,14,3,12,0,13,1,10,15,5,1,11,15,4,3,0,12,2,10,12,1,3,13,3,8,14,0,13,3,14,2,4,13,2,0,0,12,9,8,3,2,8,9,15,14,6,1,13,1,5,3,4,5,8,6,9,0,8,10,4,12,4,2,8,10,0,2,11,15,7,11,9,7,2,5,9,5,14,3,5,13,0,11,1,3,10,3,13,8,9,9,3,4,14,12,14,0,12,15,15,13,3,12,15,14,13,4,14,6,7,1,9,3,6,6,13,8,15,12,11,4,0,13,1,14,9,10,2,2,4,8,7,8,12,13,3,5,12,11,5,10,14,3,3,15,4,3,13,14,11,15,9,4,12,3,15,13,13,1,12,2,2,11,5,14,7,11,8,11,10,7,1,11,11,6,7,3,12,3,2,8,11,0,2,7,12,5,11,8,1,2,3,3,0,8,8,11,6,15,7,1,2,12,15,6,11,7,4,8,1,8,10,1,1,13,3,4,11,9,14,14,1,2,12,0,0,1,4,10,2,14,14,7,9,5,6,6,5,3,9,5,2,14,6,15,4,7,13,8,2,14,12,3,3,3,7,12,4,0,11,6,10,14,11,9,14,13,8,10,13,15,8,2,7,0,2,10,9,0,4,3,2,1,5,0,0,9,7,1,8,15,0,2,5,14,0,14,0,0,10,9,8,15,8,10,6,4,14,14,13,9,13,10,5,2,11,5,2,9,14,14,3,7,9,3,9,1,0,1,1,9,5,6,15,8,7,5,14,11,11,9,2,12,4,14,5,1,6,13,9,9,13,11,3,4,7,9,7,5,14,15,7,8,0,11,2,2,13,15,12,1,3,9,10,13,10,15,9,9,12,14,15,1,3,4,14,14,15,6,5,5,3,12,3,13,0,5,1,0,15,12,1,11,2,5,3,1,10,6,1,3,6,11,8,15,4,9,7,12,6,10,7,10,1,8,0,7,12,10,3,1,6,15,13,9,10,10,9,12,9,7,0,4,15,2,2,10,15,14,12,14,15,8,8,13,13,13,8,15,2,3,8,1,15,11,13,5,4,2,3,11,0,5,6,0,13,0,2,14,0,3,8,15,1,8,2,3,2,6,15,11,9,12,10,8,0,7,12,3,8,5,9,9,5,6,3,11,2,6,3,11,10,3,9,4,6,3,5,13,11,1,2,2,10,3,5,13,6,0,11,11,5,1,9,12,1,6,4,0,10,9,13,13,4,1,13,13,2,9,5,7,9,13,15,6,7,6,9,3,13,5,6,2,5,15,10,12,3,7,1,3,7,9,14,13,1,0,0,4,14,13,11,3,4,9,12,6,2,8,15,3,14,6,15,15,10,13,12,14,4,9,14,3,8,2,9,11,13,5,11,13,13,12,9,12,5,14,11,10,7,9,11,7,4,10,2,12,11,2,5,1,12,8,0,15,6,1,8,6,2,11,6,15,9,4,2,15,0,5,8,3,0,2,11,14,2,5,3,13,10,14,14,11,9,5,11,11,2,1,12,13,6,13,1,8,5,10,13,3,3,11,7,3,12,11,14,4,0,2,3,4,1,7,2,9,5,15,15,13,2,13,12,13,10,4,4,4,13,10,14,10,13,3,7,0,9,8,6,2,7,11,12,1,8,8,6,10,2,7,11,0,12,14,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"1\", \"5\", \"6\"], \"clip_start\": 159.0, \"clip_end\": 164.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q10_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,3,1,5,11,9,8,14,14,1,3,9,6,2,10,1,12,10,8,3,5,4,1,0,5,12,8,6,6,0,1,3,8,9,15,5,14,3,1,13,5,6,0,3,14,15,13,3,12,12,7,13,8,8,14,2,13,13,11,9,13,5,8,9,13,3,10,8,9,13,3,11,12,7,14,13,9,0,4,15,13,10,14,14,2,9,3,3,4,2,1,14,11,15,7,12,10,5,5,0,7,2,9,9,14,2,5,7,14,6,15,5,14,5,15,5,8,3,13,1,0,1,5,5,12,7,11,12,0,6,8,9,12,6,1,15,14,3,9,13,2,4,9,2,12,7,13,8,8,12,4,14,1,2,5,1,10,12,10,3,1,5,6,9,3,5,14,8,9,14,9,3,10,9,11,2,8,13,10,6,11,14,13,11,1,15,8,3,2,13,15,12,6,1,15,4,12,14,8,13,2,7,3,14,9,10,15,5,11,0,10,8,11,5,8,5,0,3,2,5,2,4,5,13,10,2,7,12,6,7,9,6,0,4,2,15,2,10,8,5,1,11,7,3,5,2,10,14,5,9,13,4,1,14,3,14,6,9,1,15,7,15,4,0,15,0,14,5,6,11,12,11,13,6,15,4,7,0,4,0,6,2,15,7,14,7,4,9,8,2,14,3,12,0,13,1,10,15,5,1,11,15,4,3,0,12,2,10,12,1,3,13,3,8,14,0,13,3,14,2,4,13,2,0,0,12,9,8,3,2,8,9,15,14,6,1,13,1,5,3,4,5,8,6,9,0,8,10,4,12,4,2,8,10,0,2,11,15,7,11,9,7,2,5,9,5,14,3,5,13,0,11,1,3,10,3,13,8,9,9,3,4,14,12,14,0,12,15,15,13,3,12,15,14,13,4,14,6,7,1,9,3,6,6,13,8,15,12,11,4,0,13,1,14,9,10,2,2,4,8,7,8,12,13,3,5,12,11,5,10,14,3,3,15,4,3,13,14,11,15,9,4,12,3,15,13,13,1,12,2,2,11,5,14,7,11,8,11,10,7,1,11,11,6,7,3,12,3,2,8,11,0,2,7,12,5,11,8,1,2,3,3,0,8,8,11,6,15,7,1,2,12,15,6,11,7,4,8,1,8,10,1,1,13,3,4,11,9,14,14,1,2,12,0,0,1,4,10,2,14,14,7,9,5,6,6,5,3,9,5,2,14,6,15,4,7,13,8,2,14,12,3,3,3,7,12,4,0,11,6,10,14,11,9,14,13,8,10,13,15,8,2,7,0,2,10,9,0,4,3,2,1,5,0,0,9,7,1,8,15,0,2,5,14,0,14,0,0,10,9,8,15,8,10,6,4,14,14,13,9,13,10,5,2,11,5,2,9,14,14,3,7,9,3,9,1,0,1,1,9,5,6,15,8,7,5,14,11,11,9,2,12,4,14,5,1,6,13,9,9,13,11,3,4,7,9,7,5,14,15,7,8,0,11,2,2,13,15,12,1,3,9,10,13,10,15,9,9,12,14,15,1,3,4,14,14,15,6,5,5,3,12,3,13,0,5,1,0,15,12,1,11,2,5,3,1,10,6,1,3,6,11,8,15,4,9,7,12,6,10,7,10,1,8,0,7,12,10,3,1,6,15,13,9,10,10,9,12,9,7,0,4,15,2,2,10,15,14,12,14,15,8,8,13,13,13,8,15,2,3,8,1,15,11,13,5,4,2,3,11,0,5,6,0,13,0,2,14,0,3,8,15,1,8,2,3,2,6,15,11,9,12,10,8,0,7,12,3,8,5,9,9,5,6,3,11,2,6,3,11,10,3,9,4,6,3,5,13,11,1,2,2,10,3,5,13,6,0,11,11,5,1,9,12,1,6,4,0,10,9,13,13,4,1,13,13,2,9,5,7,9,13,15,6,7,6,9,3,13,5,6,2,5,15,10,12,3,7,1,3,7,9,14,13,1,0,0,4,14,13,11,3,4,9,12,6,2,8,15,3,14,6,15,15,10,13,12,14,4,9,14,3,8,2,9,11,13,5,11,13,13,12,9,12,5,14,11,10,7,9,11,7,4,10,2,12,11,2,5,1,12,8,0,15,6,1,8,6,2,11,6,15,9,4,2,15,0,5,8,3,0,2,11,14,2,5,3,13,10,14,14,11,9,5,11,11,2,1,12,13,6,13,1,8,5,10,13,3,3,11,7,3,12,11,14,4,0,2,3,4,1,7,2,9,5,15,15,13,2,13,12,13,10,4,4,4,13,10,14,10,13,3,7,0,9,8,6,2,7,11,12,1,8,8,6,10,2,7,11,0,12,14,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"14\", \"9\", \"10\"], \"clip_start\": 412.0, \"clip_end\": 417.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,3,1,5,11,9,8,14,14,1,3,9,6,2,10,1,12,10,8,3,5,4,1,0,5,12,8,6,6,0,1,3,8,9,15,5,14,3,1,13,5,6,0,3,14,15,13,3,12,12,7,13,8,8,14,2,13,13,11,9,13,5,8,9,13,3,10,8,9,13,3,11,12,7,14,13,9,0,4,15,13,10,14,14,2,9,3,3,4,2,1,14,11,15,7,12,10,5,5,0,7,2,9,9,14,2,5,7,14,6,15,5,14,5,15,5,8,3,13,1,0,1,5,5,12,7,11,12,0,6,8,9,12,6,1,15,14,3,9,13,2,4,9,2,12,7,13,8,8,12,4,14,1,2,5,1,10,12,10,3,1,5,6,9,3,5,14,8,9,14,9,3,10,9,11,2,8,13,10,6,11,14,13,11,1,15,8,3,2,13,15,12,6,1,15,4,12,14,8,13,2,7,3,14,9,10,15,5,11,0,10,8,11,5,8,5,0,3,2,5,2,4,5,13,10,2,7,12,6,7,9,6,0,4,2,15,2,10,8,5,1,11,7,3,5,2,10,14,5,9,13,4,1,14,3,14,6,9,1,15,7,15,4,0,15,0,14,5,6,11,12,11,13,6,15,4,7,0,4,0,6,2,15,7,14,7,4,9,8,2,14,3,12,0,13,1,10,15,5,1,11,15,4,3,0,12,2,10,12,1,3,13,3,8,14,0,13,3,14,2,4,13,2,0,0,12,9,8,3,2,8,9,15,14,6,1,13,1,5,3,4,5,8,6,9,0,8,10,4,12,4,2,8,10,0,2,11,15,7,11,9,7,2,5,9,5,14,3,5,13,0,11,1,3,10,3,13,8,9,9,3,4,14,12,14,0,12,15,15,13,3,12,15,14,13,4,14,6,7,1,9,3,6,6,13,8,15,12,11,4,0,13,1,14,9,10,2,2,4,8,7,8,12,13,3,5,12,11,5,10,14,3,3,15,4,3,13,14,11,15,9,4,12,3,15,13,13,1,12,2,2,11,5,14,7,11,8,11,10,7,1,11,11,6,7,3,12,3,2,8,11,0,2,7,12,5,11,8,1,2,3,3,0,8,8,11,6,15,7,1,2,12,15,6,11,7,4,8,1,8,10,1,1,13,3,4,11,9,14,14,1,2,12,0,0,1,4,10,2,14,14,7,9,5,6,6,5,3,9,5,2,14,6,15,4,7,13,8,2,14,12,3,3,3,7,12,4,0,11,6,10,14,11,9,14,13,8,10,13,15,8,2,7,0,2,10,9,0,4,3,2,1,5,0,0,9,7,1,8,15,0,2,5,14,0,14,0,0,10,9,8,15,8,10,6,4,14,14,13,9,13,10,5,2,11,5,2,9,14,14,3,7,9,3,9,1,0,1,1,9,5,6,15,8,7,5,14,11,11,9,2,12,4,14,5,1,6,13,9,9,13,11,3,4,7,9,7,5,14,15,7,8,0,11,2,2,13,15,12,1,3,9,10,13,10,15,9,9,12,14,15,1,3,4,14,14,15,6,5,5,3,12,3,13,0,5,1,0,15,12,1,11,2,5,3,1,10,6,1,3,6,11,8,15,4,9,7,12,6,10,7,10,1,8,0,7,12,10,3,1,6,15,13,9,10,10,9,12,9,7,0,4,15,2,2,10,15,14,12,14,15,8,8,13,13,13,8,15,2,3,8,1,15,11,13,5,4,2,3,11,0,5,6,0,13,0,2,14,0,3,8,15,1,8,2,3,2,6,15,11,9,12,10,8,0,7,12,3,8,5,9,9,5,6,3,11,2,6,3,11,10,3,9,4,6,3,5,13,11,1,2,2,10,3,5,13,6,0,11,11,5,1,9,12,1,6,4,0,10,9,13,13,4,1,13,13,2,9,5,7,9,13,15,6,7,6,9,3,13,5,6,2,5,15,10,12,3,7,1,3,7,9,14,13,1,0,0,4,14,13,11,3,4,9,12,6,2,8,15,3,14,6,15,15,10,13,12,14,4,9,14,3,8,2,9,11,13,5,11,13,13,12,9,12,5,14,11,10,7,9,11,7,4,10,2,12,11,2,5,1,12,8,0,15,6,1,8,6,2,11,6,15,9,4,2,15,0,5,8,3,0,2,11,14,2,5,3,13,10,14,14,11,9,5,11,11,2,1,12,13,6,13,1,8,5,10,13,3,3,11,7,3,12,11,14,4,0,2,3,4,1,7,2,9,5,15,15,13,2,13,12,13,10,4,4,4,13,10,14,10,13,3,7,0,9,8,6,2,7,11,12,1,8,8,6,10,2,7,11,0,12,14,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"15\", \"9\"], \"clip_start\": 474.0, \"clip_end\": 479.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q12_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,3,1,5,11,9,8,14,14,1,3,9,6,2,10,1,12,10,8,3,5,4,1,0,5,12,8,6,6,0,1,3,8,9,15,5,14,3,1,13,5,6,0,3,14,15,13,3,12,12,7,13,8,8,14,2,13,13,11,9,13,5,8,9,13,3,10,8,9,13,3,11,12,7,14,13,9,0,4,15,13,10,14,14,2,9,3,3,4,2,1,14,11,15,7,12,10,5,5,0,7,2,9,9,14,2,5,7,14,6,15,5,14,5,15,5,8,3,13,1,0,1,5,5,12,7,11,12,0,6,8,9,12,6,1,15,14,3,9,13,2,4,9,2,12,7,13,8,8,12,4,14,1,2,5,1,10,12,10,3,1,5,6,9,3,5,14,8,9,14,9,3,10,9,11,2,8,13,10,6,11,14,13,11,1,15,8,3,2,13,15,12,6,1,15,4,12,14,8,13,2,7,3,14,9,10,15,5,11,0,10,8,11,5,8,5,0,3,2,5,2,4,5,13,10,2,7,12,6,7,9,6,0,4,2,15,2,10,8,5,1,11,7,3,5,2,10,14,5,9,13,4,1,14,3,14,6,9,1,15,7,15,4,0,15,0,14,5,6,11,12,11,13,6,15,4,7,0,4,0,6,2,15,7,14,7,4,9,8,2,14,3,12,0,13,1,10,15,5,1,11,15,4,3,0,12,2,10,12,1,3,13,3,8,14,0,13,3,14,2,4,13,2,0,0,12,9,8,3,2,8,9,15,14,6,1,13,1,5,3,4,5,8,6,9,0,8,10,4,12,4,2,8,10,0,2,11,15,7,11,9,7,2,5,9,5,14,3,5,13,0,11,1,3,10,3,13,8,9,9,3,4,14,12,14,0,12,15,15,13,3,12,15,14,13,4,14,6,7,1,9,3,6,6,13,8,15,12,11,4,0,13,1,14,9,10,2,2,4,8,7,8,12,13,3,5,12,11,5,10,14,3,3,15,4,3,13,14,11,15,9,4,12,3,15,13,13,1,12,2,2,11,5,14,7,11,8,11,10,7,1,11,11,6,7,3,12,3,2,8,11,0,2,7,12,5,11,8,1,2,3,3,0,8,8,11,6,15,7,1,2,12,15,6,11,7,4,8,1,8,10,1,1,13,3,4,11,9,14,14,1,2,12,0,0,1,4,10,2,14,14,7,9,5,6,6,5,3,9,5,2,14,6,15,4,7,13,8,2,14,12,3,3,3,7,12,4,0,11,6,10,14,11,9,14,13,8,10,13,15,8,2,7,0,2,10,9,0,4,3,2,1,5,0,0,9,7,1,8,15,0,2,5,14,0,14,0,0,10,9,8,15,8,10,6,4,14,14,13,9,13,10,5,2,11,5,2,9,14,14,3,7,9,3,9,1,0,1,1,9,5,6,15,8,7,5,14,11,11,9,2,12,4,14,5,1,6,13,9,9,13,11,3,4,7,9,7,5,14,15,7,8,0,11,2,2,13,15,12,1,3,9,10,13,10,15,9,9,12,14,15,1,3,4,14,14,15,6,5,5,3,12,3,13,0,5,1,0,15,12,1,11,2,5,3,1,10,6,1,3,6,11,8,15,4,9,7,12,6,10,7,10,1,8,0,7,12,10,3,1,6,15,13,9,10,10,9,12,9,7,0,4,15,2,2,10,15,14,12,14,15,8,8,13,13,13,8,15,2,3,8,1,15,11,13,5,4,2,3,11,0,5,6,0,13,0,2,14,0,3,8,15,1,8,2,3,2,6,15,11,9,12,10,8,0,7,12,3,8,5,9,9,5,6,3,11,2,6,3,11,10,3,9,4,6,3,5,13,11,1,2,2,10,3,5,13,6,0,11,11,5,1,9,12,1,6,4,0,10,9,13,13,4,1,13,13,2,9,5,7,9,13,15,6,7,6,9,3,13,5,6,2,5,15,10,12,3,7,1,3,7,9,14,13,1,0,0,4,14,13,11,3,4,9,12,6,2,8,15,3,14,6,15,15,10,13,12,14,4,9,14,3,8,2,9,11,13,5,11,13,13,12,9,12,5,14,11,10,7,9,11,7,4,10,2,12,11,2,5,1,12,8,0,15,6,1,8,6,2,11,6,15,9,4,2,15,0,5,8,3,0,2,11,14,2,5,3,13,10,14,14,11,9,5,11,11,2,1,12,13,6,13,1,8,5,10,13,3,3,11,7,3,12,11,14,4,0,2,3,4,1,7,2,9,5,15,15,13,2,13,12,13,10,4,4,4,13,10,14,10,13,3,7,0,9,8,6,2,7,11,12,1,8,8,6,10,2,7,11,0,12,14,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"15\"], \"clip_start\": 841.0, \"clip_end\": 844.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q13_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,3,1,5,11,9,8,14,14,1,3,9,6,2,10,1,12,10,8,3,5,4,1,0,5,12,8,6,6,0,1,3,8,9,15,5,14,3,1,13,5,6,0,3,14,15,13,3,12,12,7,13,8,8,14,2,13,13,11,9,13,5,8,9,13,3,10,8,9,13,3,11,12,7,14,13,9,0,4,15,13,10,14,14,2,9,3,3,4,2,1,14,11,15,7,12,10,5,5,0,7,2,9,9,14,2,5,7,14,6,15,5,14,5,15,5,8,3,13,1,0,1,5,5,12,7,11,12,0,6,8,9,12,6,1,15,14,3,9,13,2,4,9,2,12,7,13,8,8,12,4,14,1,2,5,1,10,12,10,3,1,5,6,9,3,5,14,8,9,14,9,3,10,9,11,2,8,13,10,6,11,14,13,11,1,15,8,3,2,13,15,12,6,1,15,4,12,14,8,13,2,7,3,14,9,10,15,5,11,0,10,8,11,5,8,5,0,3,2,5,2,4,5,13,10,2,7,12,6,7,9,6,0,4,2,15,2,10,8,5,1,11,7,3,5,2,10,14,5,9,13,4,1,14,3,14,6,9,1,15,7,15,4,0,15,0,14,5,6,11,12,11,13,6,15,4,7,0,4,0,6,2,15,7,14,7,4,9,8,2,14,3,12,0,13,1,10,15,5,1,11,15,4,3,0,12,2,10,12,1,3,13,3,8,14,0,13,3,14,2,4,13,2,0,0,12,9,8,3,2,8,9,15,14,6,1,13,1,5,3,4,5,8,6,9,0,8,10,4,12,4,2,8,10,0,2,11,15,7,11,9,7,2,5,9,5,14,3,5,13,0,11,1,3,10,3,13,8,9,9,3,4,14,12,14,0,12,15,15,13,3,12,15,14,13,4,14,6,7,1,9,3,6,6,13,8,15,12,11,4,0,13,1,14,9,10,2,2,4,8,7,8,12,13,3,5,12,11,5,10,14,3,3,15,4,3,13,14,11,15,9,4,12,3,15,13,13,1,12,2,2,11,5,14,7,11,8,11,10,7,1,11,11,6,7,3,12,3,2,8,11,0,2,7,12,5,11,8,1,2,3,3,0,8,8,11,6,15,7,1,2,12,15,6,11,7,4,8,1,8,10,1,1,13,3,4,11,9,14,14,1,2,12,0,0,1,4,10,2,14,14,7,9,5,6,6,5,3,9,5,2,14,6,15,4,7,13,8,2,14,12,3,3,3,7,12,4,0,11,6,10,14,11,9,14,13,8,10,13,15,8,2,7,0,2,10,9,0,4,3,2,1,5,0,0,9,7,1,8,15,0,2,5,14,0,14,0,0,10,9,8,15,8,10,6,4,14,14,13,9,13,10,5,2,11,5,2,9,14,14,3,7,9,3,9,1,0,1,1,9,5,6,15,8,7,5,14,11,11,9,2,12,4,14,5,1,6,13,9,9,13,11,3,4,7,9,7,5,14,15,7,8,0,11,2,2,13,15,12,1,3,9,10,13,10,15,9,9,12,14,15,1,3,4,14,14,15,6,5,5,3,12,3,13,0,5,1,0,15,12,1,11,2,5,3,1,10,6,1,3,6,11,8,15,4,9,7,12,6,10,7,10,1,8,0,7,12,10,3,1,6,15,13,9,10,10,9,12,9,7,0,4,15,2,2,10,15,14,12,14,15,8,8,13,13,13,8,15,2,3,8,1,15,11,13,5,4,2,3,11,0,5,6,0,13,0,2,14,0,3,8,15,1,8,2,3,2,6,15,11,9,12,10,8,0,7,12,3,8,5,9,9,5,6,3,11,2,6,3,11,10,3,9,4,6,3,5,13,11,1,2,2,10,3,5,13,6,0,11,11,5,1,9,12,1,6,4,0,10,9,13,13,4,1,13,13,2,9,5,7,9,13,15,6,7,6,9,3,13,5,6,2,5,15,10,12,3,7,1,3,7,9,14,13,1,0,0,4,14,13,11,3,4,9,12,6,2,8,15,3,14,6,15,15,10,13,12,14,4,9,14,3,8,2,9,11,13,5,11,13,13,12,9,12,5,14,11,10,7,9,11,7,4,10,2,12,11,2,5,1,12,8,0,15,6,1,8,6,2,11,6,15,9,4,2,15,0,5,8,3,0,2,11,14,2,5,3,13,10,14,14,11,9,5,11,11,2,1,12,13,6,13,1,8,5,10,13,3,3,11,7,3,12,11,14,4,0,2,3,4,1,7,2,9,5,15,15,13,2,13,12,13,10,4,4,4,13,10,14,10,13,3,7,0,9,8,6,2,7,11,12,1,8,8,6,10,2,7,11,0,12,14,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"0\", \"2\", \"7\", \"12\", \"5\"], \"clip_start\": 471.0, \"clip_end\": 477.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q14_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,3,1,5,11,9,8,14,14,1,3,9,6,2,10,1,12,10,8,3,5,4,1,0,5,12,8,6,6,0,1,3,8,9,15,5,14,3,1,13,5,6,0,3,14,15,13,3,12,12,7,13,8,8,14,2,13,13,11,9,13,5,8,9,13,3,10,8,9,13,3,11,12,7,14,13,9,0,4,15,13,10,14,14,2,9,3,3,4,2,1,14,11,15,7,12,10,5,5,0,7,2,9,9,14,2,5,7,14,6,15,5,14,5,15,5,8,3,13,1,0,1,5,5,12,7,11,12,0,6,8,9,12,6,1,15,14,3,9,13,2,4,9,2,12,7,13,8,8,12,4,14,1,2,5,1,10,12,10,3,1,5,6,9,3,5,14,8,9,14,9,3,10,9,11,2,8,13,10,6,11,14,13,11,1,15,8,3,2,13,15,12,6,1,15,4,12,14,8,13,2,7,3,14,9,10,15,5,11,0,10,8,11,5,8,5,0,3,2,5,2,4,5,13,10,2,7,12,6,7,9,6,0,4,2,15,2,10,8,5,1,11,7,3,5,2,10,14,5,9,13,4,1,14,3,14,6,9,1,15,7,15,4,0,15,0,14,5,6,11,12,11,13,6,15,4,7,0,4,0,6,2,15,7,14,7,4,9,8,2,14,3,12,0,13,1,10,15,5,1,11,15,4,3,0,12,2,10,12,1,3,13,3,8,14,0,13,3,14,2,4,13,2,0,0,12,9,8,3,2,8,9,15,14,6,1,13,1,5,3,4,5,8,6,9,0,8,10,4,12,4,2,8,10,0,2,11,15,7,11,9,7,2,5,9,5,14,3,5,13,0,11,1,3,10,3,13,8,9,9,3,4,14,12,14,0,12,15,15,13,3,12,15,14,13,4,14,6,7,1,9,3,6,6,13,8,15,12,11,4,0,13,1,14,9,10,2,2,4,8,7,8,12,13,3,5,12,11,5,10,14,3,3,15,4,3,13,14,11,15,9,4,12,3,15,13,13,1,12,2,2,11,5,14,7,11,8,11,10,7,1,11,11,6,7,3,12,3,2,8,11,0,2,7,12,5,11,8,1,2,3,3,0,8,8,11,6,15,7,1,2,12,15,6,11,7,4,8,1,8,10,1,1,13,3,4,11,9,14,14,1,2,12,0,0,1,4,10,2,14,14,7,9,5,6,6,5,3,9,5,2,14,6,15,4,7,13,8,2,14,12,3,3,3,7,12,4,0,11,6,10,14,11,9,14,13,8,10,13,15,8,2,7,0,2,10,9,0,4,3,2,1,5,0,0,9,7,1,8,15,0,2,5,14,0,14,0,0,10,9,8,15,8,10,6,4,14,14,13,9,13,10,5,2,11,5,2,9,14,14,3,7,9,3,9,1,0,1,1,9,5,6,15,8,7,5,14,11,11,9,2,12,4,14,5,1,6,13,9,9,13,11,3,4,7,9,7,5,14,15,7,8,0,11,2,2,13,15,12,1,3,9,10,13,10,15,9,9,12,14,15,1,3,4,14,14,15,6,5,5,3,12,3,13,0,5,1,0,15,12,1,11,2,5,3,1,10,6,1,3,6,11,8,15,4,9,7,12,6,10,7,10,1,8,0,7,12,10,3,1,6,15,13,9,10,10,9,12,9,7,0,4,15,2,2,10,15,14,12,14,15,8,8,13,13,13,8,15,2,3,8,1,15,11,13,5,4,2,3,11,0,5,6,0,13,0,2,14,0,3,8,15,1,8,2,3,2,6,15,11,9,12,10,8,0,7,12,3,8,5,9,9,5,6,3,11,2,6,3,11,10,3,9,4,6,3,5,13,11,1,2,2,10,3,5,13,6,0,11,11,5,1,9,12,1,6,4,0,10,9,13,13,4,1,13,13,2,9,5,7,9,13,15,6,7,6,9,3,13,5,6,2,5,15,10,12,3,7,1,3,7,9,14,13,1,0,0,4,14,13,11,3,4,9,12,6,2,8,15,3,14,6,15,15,10,13,12,14,4,9,14,3,8,2,9,11,13,5,11,13,13,12,9,12,5,14,11,10,7,9,11,7,4,10,2,12,11,2,5,1,12,8,0,15,6,1,8,6,2,11,6,15,9,4,2,15,0,5,8,3,0,2,11,14,2,5,3,13,10,14,14,11,9,5,11,11,2,1,12,13,6,13,1,8,5,10,13,3,3,11,7,3,12,11,14,4,0,2,3,4,1,7,2,9,5,15,15,13,2,13,12,13,10,4,4,4,13,10,14,10,13,3,7,0,9,8,6,2,7,11,12,1,8,8,6,10,2,7,11,0,12,14,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"13\", \"2\", \"13\", \"12\"], \"clip_start\": 986.0, \"clip_end\": 992.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q15_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,3,1,5,11,9,8,14,14,1,3,9,6,2,10,1,12,10,8,3,5,4,1,0,5,12,8,6,6,0,1,3,8,9,15,5,14,3,1,13,5,6,0,3,14,15,13,3,12,12,7,13,8,8,14,2,13,13,11,9,13,5,8,9,13,3,10,8,9,13,3,11,12,7,14,13,9,0,4,15,13,10,14,14,2,9,3,3,4,2,1,14,11,15,7,12,10,5,5,0,7,2,9,9,14,2,5,7,14,6,15,5,14,5,15,5,8,3,13,1,0,1,5,5,12,7,11,12,0,6,8,9,12,6,1,15,14,3,9,13,2,4,9,2,12,7,13,8,8,12,4,14,1,2,5,1,10,12,10,3,1,5,6,9,3,5,14,8,9,14,9,3,10,9,11,2,8,13,10,6,11,14,13,11,1,15,8,3,2,13,15,12,6,1,15,4,12,14,8,13,2,7,3,14,9,10,15,5,11,0,10,8,11,5,8,5,0,3,2,5,2,4,5,13,10,2,7,12,6,7,9,6,0,4,2,15,2,10,8,5,1,11,7,3,5,2,10,14,5,9,13,4,1,14,3,14,6,9,1,15,7,15,4,0,15,0,14,5,6,11,12,11,13,6,15,4,7,0,4,0,6,2,15,7,14,7,4,9,8,2,14,3,12,0,13,1,10,15,5,1,11,15,4,3,0,12,2,10,12,1,3,13,3,8,14,0,13,3,14,2,4,13,2,0,0,12,9,8,3,2,8,9,15,14,6,1,13,1,5,3,4,5,8,6,9,0,8,10,4,12,4,2,8,10,0,2,11,15,7,11,9,7,2,5,9,5,14,3,5,13,0,11,1,3,10,3,13,8,9,9,3,4,14,12,14,0,12,15,15,13,3,12,15,14,13,4,14,6,7,1,9,3,6,6,13,8,15,12,11,4,0,13,1,14,9,10,2,2,4,8,7,8,12,13,3,5,12,11,5,10,14,3,3,15,4,3,13,14,11,15,9,4,12,3,15,13,13,1,12,2,2,11,5,14,7,11,8,11,10,7,1,11,11,6,7,3,12,3,2,8,11,0,2,7,12,5,11,8,1,2,3,3,0,8,8,11,6,15,7,1,2,12,15,6,11,7,4,8,1,8,10,1,1,13,3,4,11,9,14,14,1,2,12,0,0,1,4,10,2,14,14,7,9,5,6,6,5,3,9,5,2,14,6,15,4,7,13,8,2,14,12,3,3,3,7,12,4,0,11,6,10,14,11,9,14,13,8,10,13,15,8,2,7,0,2,10,9,0,4,3,2,1,5,0,0,9,7,1,8,15,0,2,5,14,0,14,0,0,10,9,8,15,8,10,6,4,14,14,13,9,13,10,5,2,11,5,2,9,14,14,3,7,9,3,9,1,0,1,1,9,5,6,15,8,7,5,14,11,11,9,2,12,4,14,5,1,6,13,9,9,13,11,3,4,7,9,7,5,14,15,7,8,0,11,2,2,13,15,12,1,3,9,10,13,10,15,9,9,12,14,15,1,3,4,14,14,15,6,5,5,3,12,3,13,0,5,1,0,15,12,1,11,2,5,3,1,10,6,1,3,6,11,8,15,4,9,7,12,6,10,7,10,1,8,0,7,12,10,3,1,6,15,13,9,10,10,9,12,9,7,0,4,15,2,2,10,15,14,12,14,15,8,8,13,13,13,8,15,2,3,8,1,15,11,13,5,4,2,3,11,0,5,6,0,13,0,2,14,0,3,8,15,1,8,2,3,2,6,15,11,9,12,10,8,0,7,12,3,8,5,9,9,5,6,3,11,2,6,3,11,10,3,9,4,6,3,5,13,11,1,2,2,10,3,5,13,6,0,11,11,5,1,9,12,1,6,4,0,10,9,13,13,4,1,13,13,2,9,5,7,9,13,15,6,7,6,9,3,13,5,6,2,5,15,10,12,3,7,1,3,7,9,14,13,1,0,0,4,14,13,11,3,4,9,12,6,2,8,15,3,14,6,15,15,10,13,12,14,4,9,14,3,8,2,9,11,13,5,11,13,13,12,9,12,5,14,11,10,7,9,11,7,4,10,2,12,11,2,5,1,12,8,0,15,6,1,8,6,2,11,6,15,9,4,2,15,0,5,8,3,0,2,11,14,2,5,3,13,10,14,14,11,9,5,11,11,2,1,12,13,6,13,1,8,5,10,13,3,3,11,7,3,12,11,14,4,0,2,3,4,1,7,2,9,5,15,15,13,2,13,12,13,10,4,4,4,13,10,14,10,13,3,7,0,9,8,6,2,7,11,12,1,8,8,6,10,2,7,11,0,12,14,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"3\", \"9\", \"10\"], \"clip_start\": 393.0, \"clip_end\": 398.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,14,4,1,8,7,14,8,5,2,14,6,0,11,0,9,6,7,14,5,8,1,5,4,5,6,5,1,1,6,1,3,12,3,7,7,5,14,1,1,0,3,9,1,7,7,14,8,13,11,13,2,0,7,4,10,4,13,13,7,13,9,8,0,13,13,1,12,15,1,13,4,10,11,8,0,9,14,7,14,9,0,0,6,9,8,1,13,0,10,1,4,1,15,4,9,11,11,6,9,4,15,0,15,8,0,4,6,6,1,0,14,6,2,9,4,6,3,0,2,11,13,11,12,10,6,13,8,14,10,5,7,14,1,14,1,12,1,10,13,0,12,2,15,4,3,12,6,2,13,14,5,2,8,11,15,0,14,12,2,0,5,14,8,14,0,9,7,15,4,5,0,15,0,0,11,5,0,7,3,0,12,1,4,0,15,8,12,6,9,6,11,3,3,0,15,11,14,7,3,6,12,7,14,1,5,0,8,13,15,10,14,9,12,6,5,10,9,1,2,2,5,11,15,7,12,3,1,9,8,10,13,6,9,4,10,0,2,12,5,6,3,1,3,5,4,1,10,15,15,8,11,14,2,12,4,8,1,11,6,10,13,13,11,2,12,7,6,6,10,6,14,12,10,1,4,8,7,9,13,9,0,14,5,10,14,7,12,11,3,0,8,9,4,15,7,3,8,11,14,8,0,15,2,1,8,14,12,4,3,6,12,11,4,10,8,11,6,5,6,10,9,1,4,3,11,7,9,5,14,9,15,0,15,14,8,11,14,1,3,14,2,7,11,14,5,5,12,9,11,3,9,14,3,9,9,9,11,9,13,10,9,7,3,15,11,9,2,6,0,14,6,9,7,3,9,6,12,5,15,9,15,7,13,9,7,3,13,4,1,2,3,5,14,3,9,10,7,10,7,7,8,5,10,6,12,14,15,6,5,15,9,6,11,8,6,15,8,12,7,8,5,10,10,12,12,6,8,3,14,9,15,1,1,10,4,1,14,10,10,7,14,13,1,4,12,5,7,3,13,2,11,12,12,1,8,10,15,1,8,2,13,8,6,13,11,8,5,1,5,12,15,1,9,0,2,9,11,15,8,4,12,2,2,9,14,15,15,3,14,6,10,7,11,3,1,15,7,3,7,7,2,3,5,15,2,9,4,2,4,3,0,7,5,12,4,15,0,9,7,15,12,8,10,12,13,4,12,11,8,6,0,5,4,3,8,9,10,15,11,1,11,6,12,14,13,9,5,4,6,10,7,4,10,10,1,10,5,14,6,13,9,5,0,9,4,11,1,15,14,10,12,9,0,1,5,12,0,15,2,8,13,9,3,5,1,7,4,11,3,3,7,4,12,14,15,9,0,14,9,2,3,3,12,14,3,8,8,14,2,13,7,5,5,0,3,14,4,10,7,12,10,12,12,13,6,4,10,4,0,6,5,1,7,4,10,3,0,8,9,5,8,10,1,6,0,14,15,1,0,9,6,4,11,10,10,15,8,15,13,1,3,2,4,1,13,11,9,14,6,0,4,14,3,6,15,3,7,1,10,11,6,11,11,15,15,3,13,7,9,1,7,12,5,11,7,11,15,11,13,5,3,8,14,10,2,6,1,3,15,14,4,9,2,14,4,6,1,8,2,6,2,0,14,11,10,15,5,10,6,12,11,6,0,12,11,1,9,10,15,1,12,5,5,11,11,4,13,13,15,0,9,12,13,3,10,11,12,1,0,9,15,10,14,10,0,0,11,15,4,6,3,9,8,14,7,3,3,11,5,12,0,12,10,6,10,8,8,10,14,10,15,0,13,14,2,15,10,5,15,9,4,2,1,7,0,14,8,4,10,14,8,15,7,14,11,8,10,0,0,8,3,4,2,1,10,8,4,6,6,5,3,0,8,5,7,4,7,6,13,14,12,9,15,1,5,3,15,14,1,12,10,13,1,13,2,4,3,1,5,11,15,13,11,12,15,9,9,12,13,10,14,14,1,11,4,11,12,5,1,6,13,13,12,12,6,4,10,0,13,15,13,15,6,1,7,4,1,8,15,14,7,3,11,5,8,12,3,5,3,5,2,6,5,11,1,14,4,6,7,8,4,2,5,7,14,10,13,9,14,15,2,14,12,7,14,0,7,9,14,14,14,4,12,6,12,5,15,14,6,0,2,4,13,4,12,5,3,13,7,0,3,15,11,10,1,4,10,7,6,14,7,11,3,7,1,11,10,3,1,0,2,14,8,9,10,2,10,8,6,4,12,4,1,7,0,10,12,15,6,11,2,11,12,13,10,11,13,8,1,6,4,14,11,5,15,8,8,15,5,15,15,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"11\", \"14\", \"5\"], \"clip_start\": 342.0, \"clip_end\": 347.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,14,4,1,8,7,14,8,5,2,14,6,0,11,0,9,6,7,14,5,8,1,5,4,5,6,5,1,1,6,1,3,12,3,7,7,5,14,1,1,0,3,9,1,7,7,14,8,13,11,13,2,0,7,4,10,4,13,13,7,13,9,8,0,13,13,1,12,15,1,13,4,10,11,8,0,9,14,7,14,9,0,0,6,9,8,1,13,0,10,1,4,1,15,4,9,11,11,6,9,4,15,0,15,8,0,4,6,6,1,0,14,6,2,9,4,6,3,0,2,11,13,11,12,10,6,13,8,14,10,5,7,14,1,14,1,12,1,10,13,0,12,2,15,4,3,12,6,2,13,14,5,2,8,11,15,0,14,12,2,0,5,14,8,14,0,9,7,15,4,5,0,15,0,0,11,5,0,7,3,0,12,1,4,0,15,8,12,6,9,6,11,3,3,0,15,11,14,7,3,6,12,7,14,1,5,0,8,13,15,10,14,9,12,6,5,10,9,1,2,2,5,11,15,7,12,3,1,9,8,10,13,6,9,4,10,0,2,12,5,6,3,1,3,5,4,1,10,15,15,8,11,14,2,12,4,8,1,11,6,10,13,13,11,2,12,7,6,6,10,6,14,12,10,1,4,8,7,9,13,9,0,14,5,10,14,7,12,11,3,0,8,9,4,15,7,3,8,11,14,8,0,15,2,1,8,14,12,4,3,6,12,11,4,10,8,11,6,5,6,10,9,1,4,3,11,7,9,5,14,9,15,0,15,14,8,11,14,1,3,14,2,7,11,14,5,5,12,9,11,3,9,14,3,9,9,9,11,9,13,10,9,7,3,15,11,9,2,6,0,14,6,9,7,3,9,6,12,5,15,9,15,7,13,9,7,3,13,4,1,2,3,5,14,3,9,10,7,10,7,7,8,5,10,6,12,14,15,6,5,15,9,6,11,8,6,15,8,12,7,8,5,10,10,12,12,6,8,3,14,9,15,1,1,10,4,1,14,10,10,7,14,13,1,4,12,5,7,3,13,2,11,12,12,1,8,10,15,1,8,2,13,8,6,13,11,8,5,1,5,12,15,1,9,0,2,9,11,15,8,4,12,2,2,9,14,15,15,3,14,6,10,7,11,3,1,15,7,3,7,7,2,3,5,15,2,9,4,2,4,3,0,7,5,12,4,15,0,9,7,15,12,8,10,12,13,4,12,11,8,6,0,5,4,3,8,9,10,15,11,1,11,6,12,14,13,9,5,4,6,10,7,4,10,10,1,10,5,14,6,13,9,5,0,9,4,11,1,15,14,10,12,9,0,1,5,12,0,15,2,8,13,9,3,5,1,7,4,11,3,3,7,4,12,14,15,9,0,14,9,2,3,3,12,14,3,8,8,14,2,13,7,5,5,0,3,14,4,10,7,12,10,12,12,13,6,4,10,4,0,6,5,1,7,4,10,3,0,8,9,5,8,10,1,6,0,14,15,1,0,9,6,4,11,10,10,15,8,15,13,1,3,2,4,1,13,11,9,14,6,0,4,14,3,6,15,3,7,1,10,11,6,11,11,15,15,3,13,7,9,1,7,12,5,11,7,11,15,11,13,5,3,8,14,10,2,6,1,3,15,14,4,9,2,14,4,6,1,8,2,6,2,0,14,11,10,15,5,10,6,12,11,6,0,12,11,1,9,10,15,1,12,5,5,11,11,4,13,13,15,0,9,12,13,3,10,11,12,1,0,9,15,10,14,10,0,0,11,15,4,6,3,9,8,14,7,3,3,11,5,12,0,12,10,6,10,8,8,10,14,10,15,0,13,14,2,15,10,5,15,9,4,2,1,7,0,14,8,4,10,14,8,15,7,14,11,8,10,0,0,8,3,4,2,1,10,8,4,6,6,5,3,0,8,5,7,4,7,6,13,14,12,9,15,1,5,3,15,14,1,12,10,13,1,13,2,4,3,1,5,11,15,13,11,12,15,9,9,12,13,10,14,14,1,11,4,11,12,5,1,6,13,13,12,12,6,4,10,0,13,15,13,15,6,1,7,4,1,8,15,14,7,3,11,5,8,12,3,5,3,5,2,6,5,11,1,14,4,6,7,8,4,2,5,7,14,10,13,9,14,15,2,14,12,7,14,0,7,9,14,14,14,4,12,6,12,5,15,14,6,0,2,4,13,4,12,5,3,13,7,0,3,15,11,10,1,4,10,7,6,14,7,11,3,7,1,11,10,3,1,0,2,14,8,9,10,2,10,8,6,4,12,4,1,7,0,10,12,15,6,11,2,11,12,13,10,11,13,8,1,6,4,14,11,5,15,8,8,15,5,15,15,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"6\"], \"clip_start\": 917.0, \"clip_end\": 920.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,14,4,1,8,7,14,8,5,2,14,6,0,11,0,9,6,7,14,5,8,1,5,4,5,6,5,1,1,6,1,3,12,3,7,7,5,14,1,1,0,3,9,1,7,7,14,8,13,11,13,2,0,7,4,10,4,13,13,7,13,9,8,0,13,13,1,12,15,1,13,4,10,11,8,0,9,14,7,14,9,0,0,6,9,8,1,13,0,10,1,4,1,15,4,9,11,11,6,9,4,15,0,15,8,0,4,6,6,1,0,14,6,2,9,4,6,3,0,2,11,13,11,12,10,6,13,8,14,10,5,7,14,1,14,1,12,1,10,13,0,12,2,15,4,3,12,6,2,13,14,5,2,8,11,15,0,14,12,2,0,5,14,8,14,0,9,7,15,4,5,0,15,0,0,11,5,0,7,3,0,12,1,4,0,15,8,12,6,9,6,11,3,3,0,15,11,14,7,3,6,12,7,14,1,5,0,8,13,15,10,14,9,12,6,5,10,9,1,2,2,5,11,15,7,12,3,1,9,8,10,13,6,9,4,10,0,2,12,5,6,3,1,3,5,4,1,10,15,15,8,11,14,2,12,4,8,1,11,6,10,13,13,11,2,12,7,6,6,10,6,14,12,10,1,4,8,7,9,13,9,0,14,5,10,14,7,12,11,3,0,8,9,4,15,7,3,8,11,14,8,0,15,2,1,8,14,12,4,3,6,12,11,4,10,8,11,6,5,6,10,9,1,4,3,11,7,9,5,14,9,15,0,15,14,8,11,14,1,3,14,2,7,11,14,5,5,12,9,11,3,9,14,3,9,9,9,11,9,13,10,9,7,3,15,11,9,2,6,0,14,6,9,7,3,9,6,12,5,15,9,15,7,13,9,7,3,13,4,1,2,3,5,14,3,9,10,7,10,7,7,8,5,10,6,12,14,15,6,5,15,9,6,11,8,6,15,8,12,7,8,5,10,10,12,12,6,8,3,14,9,15,1,1,10,4,1,14,10,10,7,14,13,1,4,12,5,7,3,13,2,11,12,12,1,8,10,15,1,8,2,13,8,6,13,11,8,5,1,5,12,15,1,9,0,2,9,11,15,8,4,12,2,2,9,14,15,15,3,14,6,10,7,11,3,1,15,7,3,7,7,2,3,5,15,2,9,4,2,4,3,0,7,5,12,4,15,0,9,7,15,12,8,10,12,13,4,12,11,8,6,0,5,4,3,8,9,10,15,11,1,11,6,12,14,13,9,5,4,6,10,7,4,10,10,1,10,5,14,6,13,9,5,0,9,4,11,1,15,14,10,12,9,0,1,5,12,0,15,2,8,13,9,3,5,1,7,4,11,3,3,7,4,12,14,15,9,0,14,9,2,3,3,12,14,3,8,8,14,2,13,7,5,5,0,3,14,4,10,7,12,10,12,12,13,6,4,10,4,0,6,5,1,7,4,10,3,0,8,9,5,8,10,1,6,0,14,15,1,0,9,6,4,11,10,10,15,8,15,13,1,3,2,4,1,13,11,9,14,6,0,4,14,3,6,15,3,7,1,10,11,6,11,11,15,15,3,13,7,9,1,7,12,5,11,7,11,15,11,13,5,3,8,14,10,2,6,1,3,15,14,4,9,2,14,4,6,1,8,2,6,2,0,14,11,10,15,5,10,6,12,11,6,0,12,11,1,9,10,15,1,12,5,5,11,11,4,13,13,15,0,9,12,13,3,10,11,12,1,0,9,15,10,14,10,0,0,11,15,4,6,3,9,8,14,7,3,3,11,5,12,0,12,10,6,10,8,8,10,14,10,15,0,13,14,2,15,10,5,15,9,4,2,1,7,0,14,8,4,10,14,8,15,7,14,11,8,10,0,0,8,3,4,2,1,10,8,4,6,6,5,3,0,8,5,7,4,7,6,13,14,12,9,15,1,5,3,15,14,1,12,10,13,1,13,2,4,3,1,5,11,15,13,11,12,15,9,9,12,13,10,14,14,1,11,4,11,12,5,1,6,13,13,12,12,6,4,10,0,13,15,13,15,6,1,7,4,1,8,15,14,7,3,11,5,8,12,3,5,3,5,2,6,5,11,1,14,4,6,7,8,4,2,5,7,14,10,13,9,14,15,2,14,12,7,14,0,7,9,14,14,14,4,12,6,12,5,15,14,6,0,2,4,13,4,12,5,3,13,7,0,3,15,11,10,1,4,10,7,6,14,7,11,3,7,1,11,10,3,1,0,2,14,8,9,10,2,10,8,6,4,12,4,1,7,0,10,12,15,6,11,2,11,12,13,10,11,13,8,1,6,4,14,11,5,15,8,8,15,5,15,15,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 164.0, \"clip_end\": 170.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,14,4,1,8,7,14,8,5,2,14,6,0,11,0,9,6,7,14,5,8,1,5,4,5,6,5,1,1,6,1,3,12,3,7,7,5,14,1,1,0,3,9,1,7,7,14,8,13,11,13,2,0,7,4,10,4,13,13,7,13,9,8,0,13,13,1,12,15,1,13,4,10,11,8,0,9,14,7,14,9,0,0,6,9,8,1,13,0,10,1,4,1,15,4,9,11,11,6,9,4,15,0,15,8,0,4,6,6,1,0,14,6,2,9,4,6,3,0,2,11,13,11,12,10,6,13,8,14,10,5,7,14,1,14,1,12,1,10,13,0,12,2,15,4,3,12,6,2,13,14,5,2,8,11,15,0,14,12,2,0,5,14,8,14,0,9,7,15,4,5,0,15,0,0,11,5,0,7,3,0,12,1,4,0,15,8,12,6,9,6,11,3,3,0,15,11,14,7,3,6,12,7,14,1,5,0,8,13,15,10,14,9,12,6,5,10,9,1,2,2,5,11,15,7,12,3,1,9,8,10,13,6,9,4,10,0,2,12,5,6,3,1,3,5,4,1,10,15,15,8,11,14,2,12,4,8,1,11,6,10,13,13,11,2,12,7,6,6,10,6,14,12,10,1,4,8,7,9,13,9,0,14,5,10,14,7,12,11,3,0,8,9,4,15,7,3,8,11,14,8,0,15,2,1,8,14,12,4,3,6,12,11,4,10,8,11,6,5,6,10,9,1,4,3,11,7,9,5,14,9,15,0,15,14,8,11,14,1,3,14,2,7,11,14,5,5,12,9,11,3,9,14,3,9,9,9,11,9,13,10,9,7,3,15,11,9,2,6,0,14,6,9,7,3,9,6,12,5,15,9,15,7,13,9,7,3,13,4,1,2,3,5,14,3,9,10,7,10,7,7,8,5,10,6,12,14,15,6,5,15,9,6,11,8,6,15,8,12,7,8,5,10,10,12,12,6,8,3,14,9,15,1,1,10,4,1,14,10,10,7,14,13,1,4,12,5,7,3,13,2,11,12,12,1,8,10,15,1,8,2,13,8,6,13,11,8,5,1,5,12,15,1,9,0,2,9,11,15,8,4,12,2,2,9,14,15,15,3,14,6,10,7,11,3,1,15,7,3,7,7,2,3,5,15,2,9,4,2,4,3,0,7,5,12,4,15,0,9,7,15,12,8,10,12,13,4,12,11,8,6,0,5,4,3,8,9,10,15,11,1,11,6,12,14,13,9,5,4,6,10,7,4,10,10,1,10,5,14,6,13,9,5,0,9,4,11,1,15,14,10,12,9,0,1,5,12,0,15,2,8,13,9,3,5,1,7,4,11,3,3,7,4,12,14,15,9,0,14,9,2,3,3,12,14,3,8,8,14,2,13,7,5,5,0,3,14,4,10,7,12,10,12,12,13,6,4,10,4,0,6,5,1,7,4,10,3,0,8,9,5,8,10,1,6,0,14,15,1,0,9,6,4,11,10,10,15,8,15,13,1,3,2,4,1,13,11,9,14,6,0,4,14,3,6,15,3,7,1,10,11,6,11,11,15,15,3,13,7,9,1,7,12,5,11,7,11,15,11,13,5,3,8,14,10,2,6,1,3,15,14,4,9,2,14,4,6,1,8,2,6,2,0,14,11,10,15,5,10,6,12,11,6,0,12,11,1,9,10,15,1,12,5,5,11,11,4,13,13,15,0,9,12,13,3,10,11,12,1,0,9,15,10,14,10,0,0,11,15,4,6,3,9,8,14,7,3,3,11,5,12,0,12,10,6,10,8,8,10,14,10,15,0,13,14,2,15,10,5,15,9,4,2,1,7,0,14,8,4,10,14,8,15,7,14,11,8,10,0,0,8,3,4,2,1,10,8,4,6,6,5,3,0,8,5,7,4,7,6,13,14,12,9,15,1,5,3,15,14,1,12,10,13,1,13,2,4,3,1,5,11,15,13,11,12,15,9,9,12,13,10,14,14,1,11,4,11,12,5,1,6,13,13,12,12,6,4,10,0,13,15,13,15,6,1,7,4,1,8,15,14,7,3,11,5,8,12,3,5,3,5,2,6,5,11,1,14,4,6,7,8,4,2,5,7,14,10,13,9,14,15,2,14,12,7,14,0,7,9,14,14,14,4,12,6,12,5,15,14,6,0,2,4,13,4,12,5,3,13,7,0,3,15,11,10,1,4,10,7,6,14,7,11,3,7,1,11,10,3,1,0,2,14,8,9,10,2,10,8,6,4,12,4,1,7,0,10,12,15,6,11,2,11,12,13,10,11,13,8,1,6,4,14,11,5,15,8,8,15,5,15,15,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"15\", \"9\"], \"clip_start\": 378.0, \"clip_end\": 382.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,14,4,1,8,7,14,8,5,2,14,6,0,11,0,9,6,7,14,5,8,1,5,4,5,6,5,1,1,6,1,3,12,3,7,7,5,14,1,1,0,3,9,1,7,7,14,8,13,11,13,2,0,7,4,10,4,13,13,7,13,9,8,0,13,13,1,12,15,1,13,4,10,11,8,0,9,14,7,14,9,0,0,6,9,8,1,13,0,10,1,4,1,15,4,9,11,11,6,9,4,15,0,15,8,0,4,6,6,1,0,14,6,2,9,4,6,3,0,2,11,13,11,12,10,6,13,8,14,10,5,7,14,1,14,1,12,1,10,13,0,12,2,15,4,3,12,6,2,13,14,5,2,8,11,15,0,14,12,2,0,5,14,8,14,0,9,7,15,4,5,0,15,0,0,11,5,0,7,3,0,12,1,4,0,15,8,12,6,9,6,11,3,3,0,15,11,14,7,3,6,12,7,14,1,5,0,8,13,15,10,14,9,12,6,5,10,9,1,2,2,5,11,15,7,12,3,1,9,8,10,13,6,9,4,10,0,2,12,5,6,3,1,3,5,4,1,10,15,15,8,11,14,2,12,4,8,1,11,6,10,13,13,11,2,12,7,6,6,10,6,14,12,10,1,4,8,7,9,13,9,0,14,5,10,14,7,12,11,3,0,8,9,4,15,7,3,8,11,14,8,0,15,2,1,8,14,12,4,3,6,12,11,4,10,8,11,6,5,6,10,9,1,4,3,11,7,9,5,14,9,15,0,15,14,8,11,14,1,3,14,2,7,11,14,5,5,12,9,11,3,9,14,3,9,9,9,11,9,13,10,9,7,3,15,11,9,2,6,0,14,6,9,7,3,9,6,12,5,15,9,15,7,13,9,7,3,13,4,1,2,3,5,14,3,9,10,7,10,7,7,8,5,10,6,12,14,15,6,5,15,9,6,11,8,6,15,8,12,7,8,5,10,10,12,12,6,8,3,14,9,15,1,1,10,4,1,14,10,10,7,14,13,1,4,12,5,7,3,13,2,11,12,12,1,8,10,15,1,8,2,13,8,6,13,11,8,5,1,5,12,15,1,9,0,2,9,11,15,8,4,12,2,2,9,14,15,15,3,14,6,10,7,11,3,1,15,7,3,7,7,2,3,5,15,2,9,4,2,4,3,0,7,5,12,4,15,0,9,7,15,12,8,10,12,13,4,12,11,8,6,0,5,4,3,8,9,10,15,11,1,11,6,12,14,13,9,5,4,6,10,7,4,10,10,1,10,5,14,6,13,9,5,0,9,4,11,1,15,14,10,12,9,0,1,5,12,0,15,2,8,13,9,3,5,1,7,4,11,3,3,7,4,12,14,15,9,0,14,9,2,3,3,12,14,3,8,8,14,2,13,7,5,5,0,3,14,4,10,7,12,10,12,12,13,6,4,10,4,0,6,5,1,7,4,10,3,0,8,9,5,8,10,1,6,0,14,15,1,0,9,6,4,11,10,10,15,8,15,13,1,3,2,4,1,13,11,9,14,6,0,4,14,3,6,15,3,7,1,10,11,6,11,11,15,15,3,13,7,9,1,7,12,5,11,7,11,15,11,13,5,3,8,14,10,2,6,1,3,15,14,4,9,2,14,4,6,1,8,2,6,2,0,14,11,10,15,5,10,6,12,11,6,0,12,11,1,9,10,15,1,12,5,5,11,11,4,13,13,15,0,9,12,13,3,10,11,12,1,0,9,15,10,14,10,0,0,11,15,4,6,3,9,8,14,7,3,3,11,5,12,0,12,10,6,10,8,8,10,14,10,15,0,13,14,2,15,10,5,15,9,4,2,1,7,0,14,8,4,10,14,8,15,7,14,11,8,10,0,0,8,3,4,2,1,10,8,4,6,6,5,3,0,8,5,7,4,7,6,13,14,12,9,15,1,5,3,15,14,1,12,10,13,1,13,2,4,3,1,5,11,15,13,11,12,15,9,9,12,13,10,14,14,1,11,4,11,12,5,1,6,13,13,12,12,6,4,10,0,13,15,13,15,6,1,7,4,1,8,15,14,7,3,11,5,8,12,3,5,3,5,2,6,5,11,1,14,4,6,7,8,4,2,5,7,14,10,13,9,14,15,2,14,12,7,14,0,7,9,14,14,14,4,12,6,12,5,15,14,6,0,2,4,13,4,12,5,3,13,7,0,3,15,11,10,1,4,10,7,6,14,7,11,3,7,1,11,10,3,1,0,2,14,8,9,10,2,10,8,6,4,12,4,1,7,0,10,12,15,6,11,2,11,12,13,10,11,13,8,1,6,4,14,11,5,15,8,8,15,5,15,15,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"7\", \"3\"], \"clip_start\": 372.0, \"clip_end\": 376.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,14,4,1,8,7,14,8,5,2,14,6,0,11,0,9,6,7,14,5,8,1,5,4,5,6,5,1,1,6,1,3,12,3,7,7,5,14,1,1,0,3,9,1,7,7,14,8,13,11,13,2,0,7,4,10,4,13,13,7,13,9,8,0,13,13,1,12,15,1,13,4,10,11,8,0,9,14,7,14,9,0,0,6,9,8,1,13,0,10,1,4,1,15,4,9,11,11,6,9,4,15,0,15,8,0,4,6,6,1,0,14,6,2,9,4,6,3,0,2,11,13,11,12,10,6,13,8,14,10,5,7,14,1,14,1,12,1,10,13,0,12,2,15,4,3,12,6,2,13,14,5,2,8,11,15,0,14,12,2,0,5,14,8,14,0,9,7,15,4,5,0,15,0,0,11,5,0,7,3,0,12,1,4,0,15,8,12,6,9,6,11,3,3,0,15,11,14,7,3,6,12,7,14,1,5,0,8,13,15,10,14,9,12,6,5,10,9,1,2,2,5,11,15,7,12,3,1,9,8,10,13,6,9,4,10,0,2,12,5,6,3,1,3,5,4,1,10,15,15,8,11,14,2,12,4,8,1,11,6,10,13,13,11,2,12,7,6,6,10,6,14,12,10,1,4,8,7,9,13,9,0,14,5,10,14,7,12,11,3,0,8,9,4,15,7,3,8,11,14,8,0,15,2,1,8,14,12,4,3,6,12,11,4,10,8,11,6,5,6,10,9,1,4,3,11,7,9,5,14,9,15,0,15,14,8,11,14,1,3,14,2,7,11,14,5,5,12,9,11,3,9,14,3,9,9,9,11,9,13,10,9,7,3,15,11,9,2,6,0,14,6,9,7,3,9,6,12,5,15,9,15,7,13,9,7,3,13,4,1,2,3,5,14,3,9,10,7,10,7,7,8,5,10,6,12,14,15,6,5,15,9,6,11,8,6,15,8,12,7,8,5,10,10,12,12,6,8,3,14,9,15,1,1,10,4,1,14,10,10,7,14,13,1,4,12,5,7,3,13,2,11,12,12,1,8,10,15,1,8,2,13,8,6,13,11,8,5,1,5,12,15,1,9,0,2,9,11,15,8,4,12,2,2,9,14,15,15,3,14,6,10,7,11,3,1,15,7,3,7,7,2,3,5,15,2,9,4,2,4,3,0,7,5,12,4,15,0,9,7,15,12,8,10,12,13,4,12,11,8,6,0,5,4,3,8,9,10,15,11,1,11,6,12,14,13,9,5,4,6,10,7,4,10,10,1,10,5,14,6,13,9,5,0,9,4,11,1,15,14,10,12,9,0,1,5,12,0,15,2,8,13,9,3,5,1,7,4,11,3,3,7,4,12,14,15,9,0,14,9,2,3,3,12,14,3,8,8,14,2,13,7,5,5,0,3,14,4,10,7,12,10,12,12,13,6,4,10,4,0,6,5,1,7,4,10,3,0,8,9,5,8,10,1,6,0,14,15,1,0,9,6,4,11,10,10,15,8,15,13,1,3,2,4,1,13,11,9,14,6,0,4,14,3,6,15,3,7,1,10,11,6,11,11,15,15,3,13,7,9,1,7,12,5,11,7,11,15,11,13,5,3,8,14,10,2,6,1,3,15,14,4,9,2,14,4,6,1,8,2,6,2,0,14,11,10,15,5,10,6,12,11,6,0,12,11,1,9,10,15,1,12,5,5,11,11,4,13,13,15,0,9,12,13,3,10,11,12,1,0,9,15,10,14,10,0,0,11,15,4,6,3,9,8,14,7,3,3,11,5,12,0,12,10,6,10,8,8,10,14,10,15,0,13,14,2,15,10,5,15,9,4,2,1,7,0,14,8,4,10,14,8,15,7,14,11,8,10,0,0,8,3,4,2,1,10,8,4,6,6,5,3,0,8,5,7,4,7,6,13,14,12,9,15,1,5,3,15,14,1,12,10,13,1,13,2,4,3,1,5,11,15,13,11,12,15,9,9,12,13,10,14,14,1,11,4,11,12,5,1,6,13,13,12,12,6,4,10,0,13,15,13,15,6,1,7,4,1,8,15,14,7,3,11,5,8,12,3,5,3,5,2,6,5,11,1,14,4,6,7,8,4,2,5,7,14,10,13,9,14,15,2,14,12,7,14,0,7,9,14,14,14,4,12,6,12,5,15,14,6,0,2,4,13,4,12,5,3,13,7,0,3,15,11,10,1,4,10,7,6,14,7,11,3,7,1,11,10,3,1,0,2,14,8,9,10,2,10,8,6,4,12,4,1,7,0,10,12,15,6,11,2,11,12,13,10,11,13,8,1,6,4,14,11,5,15,8,8,15,5,15,15,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 949.0, \"clip_end\": 953.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,14,4,1,8,7,14,8,5,2,14,6,0,11,0,9,6,7,14,5,8,1,5,4,5,6,5,1,1,6,1,3,12,3,7,7,5,14,1,1,0,3,9,1,7,7,14,8,13,11,13,2,0,7,4,10,4,13,13,7,13,9,8,0,13,13,1,12,15,1,13,4,10,11,8,0,9,14,7,14,9,0,0,6,9,8,1,13,0,10,1,4,1,15,4,9,11,11,6,9,4,15,0,15,8,0,4,6,6,1,0,14,6,2,9,4,6,3,0,2,11,13,11,12,10,6,13,8,14,10,5,7,14,1,14,1,12,1,10,13,0,12,2,15,4,3,12,6,2,13,14,5,2,8,11,15,0,14,12,2,0,5,14,8,14,0,9,7,15,4,5,0,15,0,0,11,5,0,7,3,0,12,1,4,0,15,8,12,6,9,6,11,3,3,0,15,11,14,7,3,6,12,7,14,1,5,0,8,13,15,10,14,9,12,6,5,10,9,1,2,2,5,11,15,7,12,3,1,9,8,10,13,6,9,4,10,0,2,12,5,6,3,1,3,5,4,1,10,15,15,8,11,14,2,12,4,8,1,11,6,10,13,13,11,2,12,7,6,6,10,6,14,12,10,1,4,8,7,9,13,9,0,14,5,10,14,7,12,11,3,0,8,9,4,15,7,3,8,11,14,8,0,15,2,1,8,14,12,4,3,6,12,11,4,10,8,11,6,5,6,10,9,1,4,3,11,7,9,5,14,9,15,0,15,14,8,11,14,1,3,14,2,7,11,14,5,5,12,9,11,3,9,14,3,9,9,9,11,9,13,10,9,7,3,15,11,9,2,6,0,14,6,9,7,3,9,6,12,5,15,9,15,7,13,9,7,3,13,4,1,2,3,5,14,3,9,10,7,10,7,7,8,5,10,6,12,14,15,6,5,15,9,6,11,8,6,15,8,12,7,8,5,10,10,12,12,6,8,3,14,9,15,1,1,10,4,1,14,10,10,7,14,13,1,4,12,5,7,3,13,2,11,12,12,1,8,10,15,1,8,2,13,8,6,13,11,8,5,1,5,12,15,1,9,0,2,9,11,15,8,4,12,2,2,9,14,15,15,3,14,6,10,7,11,3,1,15,7,3,7,7,2,3,5,15,2,9,4,2,4,3,0,7,5,12,4,15,0,9,7,15,12,8,10,12,13,4,12,11,8,6,0,5,4,3,8,9,10,15,11,1,11,6,12,14,13,9,5,4,6,10,7,4,10,10,1,10,5,14,6,13,9,5,0,9,4,11,1,15,14,10,12,9,0,1,5,12,0,15,2,8,13,9,3,5,1,7,4,11,3,3,7,4,12,14,15,9,0,14,9,2,3,3,12,14,3,8,8,14,2,13,7,5,5,0,3,14,4,10,7,12,10,12,12,13,6,4,10,4,0,6,5,1,7,4,10,3,0,8,9,5,8,10,1,6,0,14,15,1,0,9,6,4,11,10,10,15,8,15,13,1,3,2,4,1,13,11,9,14,6,0,4,14,3,6,15,3,7,1,10,11,6,11,11,15,15,3,13,7,9,1,7,12,5,11,7,11,15,11,13,5,3,8,14,10,2,6,1,3,15,14,4,9,2,14,4,6,1,8,2,6,2,0,14,11,10,15,5,10,6,12,11,6,0,12,11,1,9,10,15,1,12,5,5,11,11,4,13,13,15,0,9,12,13,3,10,11,12,1,0,9,15,10,14,10,0,0,11,15,4,6,3,9,8,14,7,3,3,11,5,12,0,12,10,6,10,8,8,10,14,10,15,0,13,14,2,15,10,5,15,9,4,2,1,7,0,14,8,4,10,14,8,15,7,14,11,8,10,0,0,8,3,4,2,1,10,8,4,6,6,5,3,0,8,5,7,4,7,6,13,14,12,9,15,1,5,3,15,14,1,12,10,13,1,13,2,4,3,1,5,11,15,13,11,12,15,9,9,12,13,10,14,14,1,11,4,11,12,5,1,6,13,13,12,12,6,4,10,0,13,15,13,15,6,1,7,4,1,8,15,14,7,3,11,5,8,12,3,5,3,5,2,6,5,11,1,14,4,6,7,8,4,2,5,7,14,10,13,9,14,15,2,14,12,7,14,0,7,9,14,14,14,4,12,6,12,5,15,14,6,0,2,4,13,4,12,5,3,13,7,0,3,15,11,10,1,4,10,7,6,14,7,11,3,7,1,11,10,3,1,0,2,14,8,9,10,2,10,8,6,4,12,4,1,7,0,10,12,15,6,11,2,11,12,13,10,11,13,8,1,6,4,14,11,5,15,8,8,15,5,15,15,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"0\", \"14\", \"9\", \"2\"], \"clip_start\": 597.0, \"clip_end\": 602.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,14,4,1,8,7,14,8,5,2,14,6,0,11,0,9,6,7,14,5,8,1,5,4,5,6,5,1,1,6,1,3,12,3,7,7,5,14,1,1,0,3,9,1,7,7,14,8,13,11,13,2,0,7,4,10,4,13,13,7,13,9,8,0,13,13,1,12,15,1,13,4,10,11,8,0,9,14,7,14,9,0,0,6,9,8,1,13,0,10,1,4,1,15,4,9,11,11,6,9,4,15,0,15,8,0,4,6,6,1,0,14,6,2,9,4,6,3,0,2,11,13,11,12,10,6,13,8,14,10,5,7,14,1,14,1,12,1,10,13,0,12,2,15,4,3,12,6,2,13,14,5,2,8,11,15,0,14,12,2,0,5,14,8,14,0,9,7,15,4,5,0,15,0,0,11,5,0,7,3,0,12,1,4,0,15,8,12,6,9,6,11,3,3,0,15,11,14,7,3,6,12,7,14,1,5,0,8,13,15,10,14,9,12,6,5,10,9,1,2,2,5,11,15,7,12,3,1,9,8,10,13,6,9,4,10,0,2,12,5,6,3,1,3,5,4,1,10,15,15,8,11,14,2,12,4,8,1,11,6,10,13,13,11,2,12,7,6,6,10,6,14,12,10,1,4,8,7,9,13,9,0,14,5,10,14,7,12,11,3,0,8,9,4,15,7,3,8,11,14,8,0,15,2,1,8,14,12,4,3,6,12,11,4,10,8,11,6,5,6,10,9,1,4,3,11,7,9,5,14,9,15,0,15,14,8,11,14,1,3,14,2,7,11,14,5,5,12,9,11,3,9,14,3,9,9,9,11,9,13,10,9,7,3,15,11,9,2,6,0,14,6,9,7,3,9,6,12,5,15,9,15,7,13,9,7,3,13,4,1,2,3,5,14,3,9,10,7,10,7,7,8,5,10,6,12,14,15,6,5,15,9,6,11,8,6,15,8,12,7,8,5,10,10,12,12,6,8,3,14,9,15,1,1,10,4,1,14,10,10,7,14,13,1,4,12,5,7,3,13,2,11,12,12,1,8,10,15,1,8,2,13,8,6,13,11,8,5,1,5,12,15,1,9,0,2,9,11,15,8,4,12,2,2,9,14,15,15,3,14,6,10,7,11,3,1,15,7,3,7,7,2,3,5,15,2,9,4,2,4,3,0,7,5,12,4,15,0,9,7,15,12,8,10,12,13,4,12,11,8,6,0,5,4,3,8,9,10,15,11,1,11,6,12,14,13,9,5,4,6,10,7,4,10,10,1,10,5,14,6,13,9,5,0,9,4,11,1,15,14,10,12,9,0,1,5,12,0,15,2,8,13,9,3,5,1,7,4,11,3,3,7,4,12,14,15,9,0,14,9,2,3,3,12,14,3,8,8,14,2,13,7,5,5,0,3,14,4,10,7,12,10,12,12,13,6,4,10,4,0,6,5,1,7,4,10,3,0,8,9,5,8,10,1,6,0,14,15,1,0,9,6,4,11,10,10,15,8,15,13,1,3,2,4,1,13,11,9,14,6,0,4,14,3,6,15,3,7,1,10,11,6,11,11,15,15,3,13,7,9,1,7,12,5,11,7,11,15,11,13,5,3,8,14,10,2,6,1,3,15,14,4,9,2,14,4,6,1,8,2,6,2,0,14,11,10,15,5,10,6,12,11,6,0,12,11,1,9,10,15,1,12,5,5,11,11,4,13,13,15,0,9,12,13,3,10,11,12,1,0,9,15,10,14,10,0,0,11,15,4,6,3,9,8,14,7,3,3,11,5,12,0,12,10,6,10,8,8,10,14,10,15,0,13,14,2,15,10,5,15,9,4,2,1,7,0,14,8,4,10,14,8,15,7,14,11,8,10,0,0,8,3,4,2,1,10,8,4,6,6,5,3,0,8,5,7,4,7,6,13,14,12,9,15,1,5,3,15,14,1,12,10,13,1,13,2,4,3,1,5,11,15,13,11,12,15,9,9,12,13,10,14,14,1,11,4,11,12,5,1,6,13,13,12,12,6,4,10,0,13,15,13,15,6,1,7,4,1,8,15,14,7,3,11,5,8,12,3,5,3,5,2,6,5,11,1,14,4,6,7,8,4,2,5,7,14,10,13,9,14,15,2,14,12,7,14,0,7,9,14,14,14,4,12,6,12,5,15,14,6,0,2,4,13,4,12,5,3,13,7,0,3,15,11,10,1,4,10,7,6,14,7,11,3,7,1,11,10,3,1,0,2,14,8,9,10,2,10,8,6,4,12,4,1,7,0,10,12,15,6,11,2,11,12,13,10,11,13,8,1,6,4,14,11,5,15,8,8,15,5,15,15,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"12\", \"10\", \"6\", \"13\"], \"clip_start\": 123.0, \"clip_end\": 128.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,14,4,1,8,7,14,8,5,2,14,6,0,11,0,9,6,7,14,5,8,1,5,4,5,6,5,1,1,6,1,3,12,3,7,7,5,14,1,1,0,3,9,1,7,7,14,8,13,11,13,2,0,7,4,10,4,13,13,7,13,9,8,0,13,13,1,12,15,1,13,4,10,11,8,0,9,14,7,14,9,0,0,6,9,8,1,13,0,10,1,4,1,15,4,9,11,11,6,9,4,15,0,15,8,0,4,6,6,1,0,14,6,2,9,4,6,3,0,2,11,13,11,12,10,6,13,8,14,10,5,7,14,1,14,1,12,1,10,13,0,12,2,15,4,3,12,6,2,13,14,5,2,8,11,15,0,14,12,2,0,5,14,8,14,0,9,7,15,4,5,0,15,0,0,11,5,0,7,3,0,12,1,4,0,15,8,12,6,9,6,11,3,3,0,15,11,14,7,3,6,12,7,14,1,5,0,8,13,15,10,14,9,12,6,5,10,9,1,2,2,5,11,15,7,12,3,1,9,8,10,13,6,9,4,10,0,2,12,5,6,3,1,3,5,4,1,10,15,15,8,11,14,2,12,4,8,1,11,6,10,13,13,11,2,12,7,6,6,10,6,14,12,10,1,4,8,7,9,13,9,0,14,5,10,14,7,12,11,3,0,8,9,4,15,7,3,8,11,14,8,0,15,2,1,8,14,12,4,3,6,12,11,4,10,8,11,6,5,6,10,9,1,4,3,11,7,9,5,14,9,15,0,15,14,8,11,14,1,3,14,2,7,11,14,5,5,12,9,11,3,9,14,3,9,9,9,11,9,13,10,9,7,3,15,11,9,2,6,0,14,6,9,7,3,9,6,12,5,15,9,15,7,13,9,7,3,13,4,1,2,3,5,14,3,9,10,7,10,7,7,8,5,10,6,12,14,15,6,5,15,9,6,11,8,6,15,8,12,7,8,5,10,10,12,12,6,8,3,14,9,15,1,1,10,4,1,14,10,10,7,14,13,1,4,12,5,7,3,13,2,11,12,12,1,8,10,15,1,8,2,13,8,6,13,11,8,5,1,5,12,15,1,9,0,2,9,11,15,8,4,12,2,2,9,14,15,15,3,14,6,10,7,11,3,1,15,7,3,7,7,2,3,5,15,2,9,4,2,4,3,0,7,5,12,4,15,0,9,7,15,12,8,10,12,13,4,12,11,8,6,0,5,4,3,8,9,10,15,11,1,11,6,12,14,13,9,5,4,6,10,7,4,10,10,1,10,5,14,6,13,9,5,0,9,4,11,1,15,14,10,12,9,0,1,5,12,0,15,2,8,13,9,3,5,1,7,4,11,3,3,7,4,12,14,15,9,0,14,9,2,3,3,12,14,3,8,8,14,2,13,7,5,5,0,3,14,4,10,7,12,10,12,12,13,6,4,10,4,0,6,5,1,7,4,10,3,0,8,9,5,8,10,1,6,0,14,15,1,0,9,6,4,11,10,10,15,8,15,13,1,3,2,4,1,13,11,9,14,6,0,4,14,3,6,15,3,7,1,10,11,6,11,11,15,15,3,13,7,9,1,7,12,5,11,7,11,15,11,13,5,3,8,14,10,2,6,1,3,15,14,4,9,2,14,4,6,1,8,2,6,2,0,14,11,10,15,5,10,6,12,11,6,0,12,11,1,9,10,15,1,12,5,5,11,11,4,13,13,15,0,9,12,13,3,10,11,12,1,0,9,15,10,14,10,0,0,11,15,4,6,3,9,8,14,7,3,3,11,5,12,0,12,10,6,10,8,8,10,14,10,15,0,13,14,2,15,10,5,15,9,4,2,1,7,0,14,8,4,10,14,8,15,7,14,11,8,10,0,0,8,3,4,2,1,10,8,4,6,6,5,3,0,8,5,7,4,7,6,13,14,12,9,15,1,5,3,15,14,1,12,10,13,1,13,2,4,3,1,5,11,15,13,11,12,15,9,9,12,13,10,14,14,1,11,4,11,12,5,1,6,13,13,12,12,6,4,10,0,13,15,13,15,6,1,7,4,1,8,15,14,7,3,11,5,8,12,3,5,3,5,2,6,5,11,1,14,4,6,7,8,4,2,5,7,14,10,13,9,14,15,2,14,12,7,14,0,7,9,14,14,14,4,12,6,12,5,15,14,6,0,2,4,13,4,12,5,3,13,7,0,3,15,11,10,1,4,10,7,6,14,7,11,3,7,1,11,10,3,1,0,2,14,8,9,10,2,10,8,6,4,12,4,1,7,0,10,12,15,6,11,2,11,12,13,10,11,13,8,1,6,4,14,11,5,15,8,8,15,5,15,15,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"4\", \"12\", \"6\"], \"clip_start\": 941.0, \"clip_end\": 946.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,14,4,1,8,7,14,8,5,2,14,6,0,11,0,9,6,7,14,5,8,1,5,4,5,6,5,1,1,6,1,3,12,3,7,7,5,14,1,1,0,3,9,1,7,7,14,8,13,11,13,2,0,7,4,10,4,13,13,7,13,9,8,0,13,13,1,12,15,1,13,4,10,11,8,0,9,14,7,14,9,0,0,6,9,8,1,13,0,10,1,4,1,15,4,9,11,11,6,9,4,15,0,15,8,0,4,6,6,1,0,14,6,2,9,4,6,3,0,2,11,13,11,12,10,6,13,8,14,10,5,7,14,1,14,1,12,1,10,13,0,12,2,15,4,3,12,6,2,13,14,5,2,8,11,15,0,14,12,2,0,5,14,8,14,0,9,7,15,4,5,0,15,0,0,11,5,0,7,3,0,12,1,4,0,15,8,12,6,9,6,11,3,3,0,15,11,14,7,3,6,12,7,14,1,5,0,8,13,15,10,14,9,12,6,5,10,9,1,2,2,5,11,15,7,12,3,1,9,8,10,13,6,9,4,10,0,2,12,5,6,3,1,3,5,4,1,10,15,15,8,11,14,2,12,4,8,1,11,6,10,13,13,11,2,12,7,6,6,10,6,14,12,10,1,4,8,7,9,13,9,0,14,5,10,14,7,12,11,3,0,8,9,4,15,7,3,8,11,14,8,0,15,2,1,8,14,12,4,3,6,12,11,4,10,8,11,6,5,6,10,9,1,4,3,11,7,9,5,14,9,15,0,15,14,8,11,14,1,3,14,2,7,11,14,5,5,12,9,11,3,9,14,3,9,9,9,11,9,13,10,9,7,3,15,11,9,2,6,0,14,6,9,7,3,9,6,12,5,15,9,15,7,13,9,7,3,13,4,1,2,3,5,14,3,9,10,7,10,7,7,8,5,10,6,12,14,15,6,5,15,9,6,11,8,6,15,8,12,7,8,5,10,10,12,12,6,8,3,14,9,15,1,1,10,4,1,14,10,10,7,14,13,1,4,12,5,7,3,13,2,11,12,12,1,8,10,15,1,8,2,13,8,6,13,11,8,5,1,5,12,15,1,9,0,2,9,11,15,8,4,12,2,2,9,14,15,15,3,14,6,10,7,11,3,1,15,7,3,7,7,2,3,5,15,2,9,4,2,4,3,0,7,5,12,4,15,0,9,7,15,12,8,10,12,13,4,12,11,8,6,0,5,4,3,8,9,10,15,11,1,11,6,12,14,13,9,5,4,6,10,7,4,10,10,1,10,5,14,6,13,9,5,0,9,4,11,1,15,14,10,12,9,0,1,5,12,0,15,2,8,13,9,3,5,1,7,4,11,3,3,7,4,12,14,15,9,0,14,9,2,3,3,12,14,3,8,8,14,2,13,7,5,5,0,3,14,4,10,7,12,10,12,12,13,6,4,10,4,0,6,5,1,7,4,10,3,0,8,9,5,8,10,1,6,0,14,15,1,0,9,6,4,11,10,10,15,8,15,13,1,3,2,4,1,13,11,9,14,6,0,4,14,3,6,15,3,7,1,10,11,6,11,11,15,15,3,13,7,9,1,7,12,5,11,7,11,15,11,13,5,3,8,14,10,2,6,1,3,15,14,4,9,2,14,4,6,1,8,2,6,2,0,14,11,10,15,5,10,6,12,11,6,0,12,11,1,9,10,15,1,12,5,5,11,11,4,13,13,15,0,9,12,13,3,10,11,12,1,0,9,15,10,14,10,0,0,11,15,4,6,3,9,8,14,7,3,3,11,5,12,0,12,10,6,10,8,8,10,14,10,15,0,13,14,2,15,10,5,15,9,4,2,1,7,0,14,8,4,10,14,8,15,7,14,11,8,10,0,0,8,3,4,2,1,10,8,4,6,6,5,3,0,8,5,7,4,7,6,13,14,12,9,15,1,5,3,15,14,1,12,10,13,1,13,2,4,3,1,5,11,15,13,11,12,15,9,9,12,13,10,14,14,1,11,4,11,12,5,1,6,13,13,12,12,6,4,10,0,13,15,13,15,6,1,7,4,1,8,15,14,7,3,11,5,8,12,3,5,3,5,2,6,5,11,1,14,4,6,7,8,4,2,5,7,14,10,13,9,14,15,2,14,12,7,14,0,7,9,14,14,14,4,12,6,12,5,15,14,6,0,2,4,13,4,12,5,3,13,7,0,3,15,11,10,1,4,10,7,6,14,7,11,3,7,1,11,10,3,1,0,2,14,8,9,10,2,10,8,6,4,12,4,1,7,0,10,12,15,6,11,2,11,12,13,10,11,13,8,1,6,4,14,11,5,15,8,8,15,5,15,15,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 382.0, \"clip_end\": 387.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,14,4,1,8,7,14,8,5,2,14,6,0,11,0,9,6,7,14,5,8,1,5,4,5,6,5,1,1,6,1,3,12,3,7,7,5,14,1,1,0,3,9,1,7,7,14,8,13,11,13,2,0,7,4,10,4,13,13,7,13,9,8,0,13,13,1,12,15,1,13,4,10,11,8,0,9,14,7,14,9,0,0,6,9,8,1,13,0,10,1,4,1,15,4,9,11,11,6,9,4,15,0,15,8,0,4,6,6,1,0,14,6,2,9,4,6,3,0,2,11,13,11,12,10,6,13,8,14,10,5,7,14,1,14,1,12,1,10,13,0,12,2,15,4,3,12,6,2,13,14,5,2,8,11,15,0,14,12,2,0,5,14,8,14,0,9,7,15,4,5,0,15,0,0,11,5,0,7,3,0,12,1,4,0,15,8,12,6,9,6,11,3,3,0,15,11,14,7,3,6,12,7,14,1,5,0,8,13,15,10,14,9,12,6,5,10,9,1,2,2,5,11,15,7,12,3,1,9,8,10,13,6,9,4,10,0,2,12,5,6,3,1,3,5,4,1,10,15,15,8,11,14,2,12,4,8,1,11,6,10,13,13,11,2,12,7,6,6,10,6,14,12,10,1,4,8,7,9,13,9,0,14,5,10,14,7,12,11,3,0,8,9,4,15,7,3,8,11,14,8,0,15,2,1,8,14,12,4,3,6,12,11,4,10,8,11,6,5,6,10,9,1,4,3,11,7,9,5,14,9,15,0,15,14,8,11,14,1,3,14,2,7,11,14,5,5,12,9,11,3,9,14,3,9,9,9,11,9,13,10,9,7,3,15,11,9,2,6,0,14,6,9,7,3,9,6,12,5,15,9,15,7,13,9,7,3,13,4,1,2,3,5,14,3,9,10,7,10,7,7,8,5,10,6,12,14,15,6,5,15,9,6,11,8,6,15,8,12,7,8,5,10,10,12,12,6,8,3,14,9,15,1,1,10,4,1,14,10,10,7,14,13,1,4,12,5,7,3,13,2,11,12,12,1,8,10,15,1,8,2,13,8,6,13,11,8,5,1,5,12,15,1,9,0,2,9,11,15,8,4,12,2,2,9,14,15,15,3,14,6,10,7,11,3,1,15,7,3,7,7,2,3,5,15,2,9,4,2,4,3,0,7,5,12,4,15,0,9,7,15,12,8,10,12,13,4,12,11,8,6,0,5,4,3,8,9,10,15,11,1,11,6,12,14,13,9,5,4,6,10,7,4,10,10,1,10,5,14,6,13,9,5,0,9,4,11,1,15,14,10,12,9,0,1,5,12,0,15,2,8,13,9,3,5,1,7,4,11,3,3,7,4,12,14,15,9,0,14,9,2,3,3,12,14,3,8,8,14,2,13,7,5,5,0,3,14,4,10,7,12,10,12,12,13,6,4,10,4,0,6,5,1,7,4,10,3,0,8,9,5,8,10,1,6,0,14,15,1,0,9,6,4,11,10,10,15,8,15,13,1,3,2,4,1,13,11,9,14,6,0,4,14,3,6,15,3,7,1,10,11,6,11,11,15,15,3,13,7,9,1,7,12,5,11,7,11,15,11,13,5,3,8,14,10,2,6,1,3,15,14,4,9,2,14,4,6,1,8,2,6,2,0,14,11,10,15,5,10,6,12,11,6,0,12,11,1,9,10,15,1,12,5,5,11,11,4,13,13,15,0,9,12,13,3,10,11,12,1,0,9,15,10,14,10,0,0,11,15,4,6,3,9,8,14,7,3,3,11,5,12,0,12,10,6,10,8,8,10,14,10,15,0,13,14,2,15,10,5,15,9,4,2,1,7,0,14,8,4,10,14,8,15,7,14,11,8,10,0,0,8,3,4,2,1,10,8,4,6,6,5,3,0,8,5,7,4,7,6,13,14,12,9,15,1,5,3,15,14,1,12,10,13,1,13,2,4,3,1,5,11,15,13,11,12,15,9,9,12,13,10,14,14,1,11,4,11,12,5,1,6,13,13,12,12,6,4,10,0,13,15,13,15,6,1,7,4,1,8,15,14,7,3,11,5,8,12,3,5,3,5,2,6,5,11,1,14,4,6,7,8,4,2,5,7,14,10,13,9,14,15,2,14,12,7,14,0,7,9,14,14,14,4,12,6,12,5,15,14,6,0,2,4,13,4,12,5,3,13,7,0,3,15,11,10,1,4,10,7,6,14,7,11,3,7,1,11,10,3,1,0,2,14,8,9,10,2,10,8,6,4,12,4,1,7,0,10,12,15,6,11,2,11,12,13,10,11,13,8,1,6,4,14,11,5,15,8,8,15,5,15,15,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"13\", \"4\", \"12\"], \"clip_start\": 524.0, \"clip_end\": 529.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,14,4,1,8,7,14,8,5,2,14,6,0,11,0,9,6,7,14,5,8,1,5,4,5,6,5,1,1,6,1,3,12,3,7,7,5,14,1,1,0,3,9,1,7,7,14,8,13,11,13,2,0,7,4,10,4,13,13,7,13,9,8,0,13,13,1,12,15,1,13,4,10,11,8,0,9,14,7,14,9,0,0,6,9,8,1,13,0,10,1,4,1,15,4,9,11,11,6,9,4,15,0,15,8,0,4,6,6,1,0,14,6,2,9,4,6,3,0,2,11,13,11,12,10,6,13,8,14,10,5,7,14,1,14,1,12,1,10,13,0,12,2,15,4,3,12,6,2,13,14,5,2,8,11,15,0,14,12,2,0,5,14,8,14,0,9,7,15,4,5,0,15,0,0,11,5,0,7,3,0,12,1,4,0,15,8,12,6,9,6,11,3,3,0,15,11,14,7,3,6,12,7,14,1,5,0,8,13,15,10,14,9,12,6,5,10,9,1,2,2,5,11,15,7,12,3,1,9,8,10,13,6,9,4,10,0,2,12,5,6,3,1,3,5,4,1,10,15,15,8,11,14,2,12,4,8,1,11,6,10,13,13,11,2,12,7,6,6,10,6,14,12,10,1,4,8,7,9,13,9,0,14,5,10,14,7,12,11,3,0,8,9,4,15,7,3,8,11,14,8,0,15,2,1,8,14,12,4,3,6,12,11,4,10,8,11,6,5,6,10,9,1,4,3,11,7,9,5,14,9,15,0,15,14,8,11,14,1,3,14,2,7,11,14,5,5,12,9,11,3,9,14,3,9,9,9,11,9,13,10,9,7,3,15,11,9,2,6,0,14,6,9,7,3,9,6,12,5,15,9,15,7,13,9,7,3,13,4,1,2,3,5,14,3,9,10,7,10,7,7,8,5,10,6,12,14,15,6,5,15,9,6,11,8,6,15,8,12,7,8,5,10,10,12,12,6,8,3,14,9,15,1,1,10,4,1,14,10,10,7,14,13,1,4,12,5,7,3,13,2,11,12,12,1,8,10,15,1,8,2,13,8,6,13,11,8,5,1,5,12,15,1,9,0,2,9,11,15,8,4,12,2,2,9,14,15,15,3,14,6,10,7,11,3,1,15,7,3,7,7,2,3,5,15,2,9,4,2,4,3,0,7,5,12,4,15,0,9,7,15,12,8,10,12,13,4,12,11,8,6,0,5,4,3,8,9,10,15,11,1,11,6,12,14,13,9,5,4,6,10,7,4,10,10,1,10,5,14,6,13,9,5,0,9,4,11,1,15,14,10,12,9,0,1,5,12,0,15,2,8,13,9,3,5,1,7,4,11,3,3,7,4,12,14,15,9,0,14,9,2,3,3,12,14,3,8,8,14,2,13,7,5,5,0,3,14,4,10,7,12,10,12,12,13,6,4,10,4,0,6,5,1,7,4,10,3,0,8,9,5,8,10,1,6,0,14,15,1,0,9,6,4,11,10,10,15,8,15,13,1,3,2,4,1,13,11,9,14,6,0,4,14,3,6,15,3,7,1,10,11,6,11,11,15,15,3,13,7,9,1,7,12,5,11,7,11,15,11,13,5,3,8,14,10,2,6,1,3,15,14,4,9,2,14,4,6,1,8,2,6,2,0,14,11,10,15,5,10,6,12,11,6,0,12,11,1,9,10,15,1,12,5,5,11,11,4,13,13,15,0,9,12,13,3,10,11,12,1,0,9,15,10,14,10,0,0,11,15,4,6,3,9,8,14,7,3,3,11,5,12,0,12,10,6,10,8,8,10,14,10,15,0,13,14,2,15,10,5,15,9,4,2,1,7,0,14,8,4,10,14,8,15,7,14,11,8,10,0,0,8,3,4,2,1,10,8,4,6,6,5,3,0,8,5,7,4,7,6,13,14,12,9,15,1,5,3,15,14,1,12,10,13,1,13,2,4,3,1,5,11,15,13,11,12,15,9,9,12,13,10,14,14,1,11,4,11,12,5,1,6,13,13,12,12,6,4,10,0,13,15,13,15,6,1,7,4,1,8,15,14,7,3,11,5,8,12,3,5,3,5,2,6,5,11,1,14,4,6,7,8,4,2,5,7,14,10,13,9,14,15,2,14,12,7,14,0,7,9,14,14,14,4,12,6,12,5,15,14,6,0,2,4,13,4,12,5,3,13,7,0,3,15,11,10,1,4,10,7,6,14,7,11,3,7,1,11,10,3,1,0,2,14,8,9,10,2,10,8,6,4,12,4,1,7,0,10,12,15,6,11,2,11,12,13,10,11,13,8,1,6,4,14,11,5,15,8,8,15,5,15,15,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 243.0, \"clip_end\": 249.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,14,4,1,8,7,14,8,5,2,14,6,0,11,0,9,6,7,14,5,8,1,5,4,5,6,5,1,1,6,1,3,12,3,7,7,5,14,1,1,0,3,9,1,7,7,14,8,13,11,13,2,0,7,4,10,4,13,13,7,13,9,8,0,13,13,1,12,15,1,13,4,10,11,8,0,9,14,7,14,9,0,0,6,9,8,1,13,0,10,1,4,1,15,4,9,11,11,6,9,4,15,0,15,8,0,4,6,6,1,0,14,6,2,9,4,6,3,0,2,11,13,11,12,10,6,13,8,14,10,5,7,14,1,14,1,12,1,10,13,0,12,2,15,4,3,12,6,2,13,14,5,2,8,11,15,0,14,12,2,0,5,14,8,14,0,9,7,15,4,5,0,15,0,0,11,5,0,7,3,0,12,1,4,0,15,8,12,6,9,6,11,3,3,0,15,11,14,7,3,6,12,7,14,1,5,0,8,13,15,10,14,9,12,6,5,10,9,1,2,2,5,11,15,7,12,3,1,9,8,10,13,6,9,4,10,0,2,12,5,6,3,1,3,5,4,1,10,15,15,8,11,14,2,12,4,8,1,11,6,10,13,13,11,2,12,7,6,6,10,6,14,12,10,1,4,8,7,9,13,9,0,14,5,10,14,7,12,11,3,0,8,9,4,15,7,3,8,11,14,8,0,15,2,1,8,14,12,4,3,6,12,11,4,10,8,11,6,5,6,10,9,1,4,3,11,7,9,5,14,9,15,0,15,14,8,11,14,1,3,14,2,7,11,14,5,5,12,9,11,3,9,14,3,9,9,9,11,9,13,10,9,7,3,15,11,9,2,6,0,14,6,9,7,3,9,6,12,5,15,9,15,7,13,9,7,3,13,4,1,2,3,5,14,3,9,10,7,10,7,7,8,5,10,6,12,14,15,6,5,15,9,6,11,8,6,15,8,12,7,8,5,10,10,12,12,6,8,3,14,9,15,1,1,10,4,1,14,10,10,7,14,13,1,4,12,5,7,3,13,2,11,12,12,1,8,10,15,1,8,2,13,8,6,13,11,8,5,1,5,12,15,1,9,0,2,9,11,15,8,4,12,2,2,9,14,15,15,3,14,6,10,7,11,3,1,15,7,3,7,7,2,3,5,15,2,9,4,2,4,3,0,7,5,12,4,15,0,9,7,15,12,8,10,12,13,4,12,11,8,6,0,5,4,3,8,9,10,15,11,1,11,6,12,14,13,9,5,4,6,10,7,4,10,10,1,10,5,14,6,13,9,5,0,9,4,11,1,15,14,10,12,9,0,1,5,12,0,15,2,8,13,9,3,5,1,7,4,11,3,3,7,4,12,14,15,9,0,14,9,2,3,3,12,14,3,8,8,14,2,13,7,5,5,0,3,14,4,10,7,12,10,12,12,13,6,4,10,4,0,6,5,1,7,4,10,3,0,8,9,5,8,10,1,6,0,14,15,1,0,9,6,4,11,10,10,15,8,15,13,1,3,2,4,1,13,11,9,14,6,0,4,14,3,6,15,3,7,1,10,11,6,11,11,15,15,3,13,7,9,1,7,12,5,11,7,11,15,11,13,5,3,8,14,10,2,6,1,3,15,14,4,9,2,14,4,6,1,8,2,6,2,0,14,11,10,15,5,10,6,12,11,6,0,12,11,1,9,10,15,1,12,5,5,11,11,4,13,13,15,0,9,12,13,3,10,11,12,1,0,9,15,10,14,10,0,0,11,15,4,6,3,9,8,14,7,3,3,11,5,12,0,12,10,6,10,8,8,10,14,10,15,0,13,14,2,15,10,5,15,9,4,2,1,7,0,14,8,4,10,14,8,15,7,14,11,8,10,0,0,8,3,4,2,1,10,8,4,6,6,5,3,0,8,5,7,4,7,6,13,14,12,9,15,1,5,3,15,14,1,12,10,13,1,13,2,4,3,1,5,11,15,13,11,12,15,9,9,12,13,10,14,14,1,11,4,11,12,5,1,6,13,13,12,12,6,4,10,0,13,15,13,15,6,1,7,4,1,8,15,14,7,3,11,5,8,12,3,5,3,5,2,6,5,11,1,14,4,6,7,8,4,2,5,7,14,10,13,9,14,15,2,14,12,7,14,0,7,9,14,14,14,4,12,6,12,5,15,14,6,0,2,4,13,4,12,5,3,13,7,0,3,15,11,10,1,4,10,7,6,14,7,11,3,7,1,11,10,3,1,0,2,14,8,9,10,2,10,8,6,4,12,4,1,7,0,10,12,15,6,11,2,11,12,13,10,11,13,8,1,6,4,14,11,5,15,8,8,15,5,15,15,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"13\", \"15\", \"13\", \"15\"], \"clip_start\": 888.0, \"clip_end\": 894.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,14,4,1,8,7,14,8,5,2,14,6,0,11,0,9,6,7,14,5,8,1,5,4,5,6,5,1,1,6,1,3,12,3,7,7,5,14,1,1,0,3,9,1,7,7,14,8,13,11,13,2,0,7,4,10,4,13,13,7,13,9,8,0,13,13,1,12,15,1,13,4,10,11,8,0,9,14,7,14,9,0,0,6,9,8,1,13,0,10,1,4,1,15,4,9,11,11,6,9,4,15,0,15,8,0,4,6,6,1,0,14,6,2,9,4,6,3,0,2,11,13,11,12,10,6,13,8,14,10,5,7,14,1,14,1,12,1,10,13,0,12,2,15,4,3,12,6,2,13,14,5,2,8,11,15,0,14,12,2,0,5,14,8,14,0,9,7,15,4,5,0,15,0,0,11,5,0,7,3,0,12,1,4,0,15,8,12,6,9,6,11,3,3,0,15,11,14,7,3,6,12,7,14,1,5,0,8,13,15,10,14,9,12,6,5,10,9,1,2,2,5,11,15,7,12,3,1,9,8,10,13,6,9,4,10,0,2,12,5,6,3,1,3,5,4,1,10,15,15,8,11,14,2,12,4,8,1,11,6,10,13,13,11,2,12,7,6,6,10,6,14,12,10,1,4,8,7,9,13,9,0,14,5,10,14,7,12,11,3,0,8,9,4,15,7,3,8,11,14,8,0,15,2,1,8,14,12,4,3,6,12,11,4,10,8,11,6,5,6,10,9,1,4,3,11,7,9,5,14,9,15,0,15,14,8,11,14,1,3,14,2,7,11,14,5,5,12,9,11,3,9,14,3,9,9,9,11,9,13,10,9,7,3,15,11,9,2,6,0,14,6,9,7,3,9,6,12,5,15,9,15,7,13,9,7,3,13,4,1,2,3,5,14,3,9,10,7,10,7,7,8,5,10,6,12,14,15,6,5,15,9,6,11,8,6,15,8,12,7,8,5,10,10,12,12,6,8,3,14,9,15,1,1,10,4,1,14,10,10,7,14,13,1,4,12,5,7,3,13,2,11,12,12,1,8,10,15,1,8,2,13,8,6,13,11,8,5,1,5,12,15,1,9,0,2,9,11,15,8,4,12,2,2,9,14,15,15,3,14,6,10,7,11,3,1,15,7,3,7,7,2,3,5,15,2,9,4,2,4,3,0,7,5,12,4,15,0,9,7,15,12,8,10,12,13,4,12,11,8,6,0,5,4,3,8,9,10,15,11,1,11,6,12,14,13,9,5,4,6,10,7,4,10,10,1,10,5,14,6,13,9,5,0,9,4,11,1,15,14,10,12,9,0,1,5,12,0,15,2,8,13,9,3,5,1,7,4,11,3,3,7,4,12,14,15,9,0,14,9,2,3,3,12,14,3,8,8,14,2,13,7,5,5,0,3,14,4,10,7,12,10,12,12,13,6,4,10,4,0,6,5,1,7,4,10,3,0,8,9,5,8,10,1,6,0,14,15,1,0,9,6,4,11,10,10,15,8,15,13,1,3,2,4,1,13,11,9,14,6,0,4,14,3,6,15,3,7,1,10,11,6,11,11,15,15,3,13,7,9,1,7,12,5,11,7,11,15,11,13,5,3,8,14,10,2,6,1,3,15,14,4,9,2,14,4,6,1,8,2,6,2,0,14,11,10,15,5,10,6,12,11,6,0,12,11,1,9,10,15,1,12,5,5,11,11,4,13,13,15,0,9,12,13,3,10,11,12,1,0,9,15,10,14,10,0,0,11,15,4,6,3,9,8,14,7,3,3,11,5,12,0,12,10,6,10,8,8,10,14,10,15,0,13,14,2,15,10,5,15,9,4,2,1,7,0,14,8,4,10,14,8,15,7,14,11,8,10,0,0,8,3,4,2,1,10,8,4,6,6,5,3,0,8,5,7,4,7,6,13,14,12,9,15,1,5,3,15,14,1,12,10,13,1,13,2,4,3,1,5,11,15,13,11,12,15,9,9,12,13,10,14,14,1,11,4,11,12,5,1,6,13,13,12,12,6,4,10,0,13,15,13,15,6,1,7,4,1,8,15,14,7,3,11,5,8,12,3,5,3,5,2,6,5,11,1,14,4,6,7,8,4,2,5,7,14,10,13,9,14,15,2,14,12,7,14,0,7,9,14,14,14,4,12,6,12,5,15,14,6,0,2,4,13,4,12,5,3,13,7,0,3,15,11,10,1,4,10,7,6,14,7,11,3,7,1,11,10,3,1,0,2,14,8,9,10,2,10,8,6,4,12,4,1,7,0,10,12,15,6,11,2,11,12,13,10,11,13,8,1,6,4,14,11,5,15,8,8,15,5,15,15,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"14\", \"1\"], \"clip_start\": 36.0, \"clip_end\": 40.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,14,4,1,8,7,14,8,5,2,14,6,0,11,0,9,6,7,14,5,8,1,5,4,5,6,5,1,1,6,1,3,12,3,7,7,5,14,1,1,0,3,9,1,7,7,14,8,13,11,13,2,0,7,4,10,4,13,13,7,13,9,8,0,13,13,1,12,15,1,13,4,10,11,8,0,9,14,7,14,9,0,0,6,9,8,1,13,0,10,1,4,1,15,4,9,11,11,6,9,4,15,0,15,8,0,4,6,6,1,0,14,6,2,9,4,6,3,0,2,11,13,11,12,10,6,13,8,14,10,5,7,14,1,14,1,12,1,10,13,0,12,2,15,4,3,12,6,2,13,14,5,2,8,11,15,0,14,12,2,0,5,14,8,14,0,9,7,15,4,5,0,15,0,0,11,5,0,7,3,0,12,1,4,0,15,8,12,6,9,6,11,3,3,0,15,11,14,7,3,6,12,7,14,1,5,0,8,13,15,10,14,9,12,6,5,10,9,1,2,2,5,11,15,7,12,3,1,9,8,10,13,6,9,4,10,0,2,12,5,6,3,1,3,5,4,1,10,15,15,8,11,14,2,12,4,8,1,11,6,10,13,13,11,2,12,7,6,6,10,6,14,12,10,1,4,8,7,9,13,9,0,14,5,10,14,7,12,11,3,0,8,9,4,15,7,3,8,11,14,8,0,15,2,1,8,14,12,4,3,6,12,11,4,10,8,11,6,5,6,10,9,1,4,3,11,7,9,5,14,9,15,0,15,14,8,11,14,1,3,14,2,7,11,14,5,5,12,9,11,3,9,14,3,9,9,9,11,9,13,10,9,7,3,15,11,9,2,6,0,14,6,9,7,3,9,6,12,5,15,9,15,7,13,9,7,3,13,4,1,2,3,5,14,3,9,10,7,10,7,7,8,5,10,6,12,14,15,6,5,15,9,6,11,8,6,15,8,12,7,8,5,10,10,12,12,6,8,3,14,9,15,1,1,10,4,1,14,10,10,7,14,13,1,4,12,5,7,3,13,2,11,12,12,1,8,10,15,1,8,2,13,8,6,13,11,8,5,1,5,12,15,1,9,0,2,9,11,15,8,4,12,2,2,9,14,15,15,3,14,6,10,7,11,3,1,15,7,3,7,7,2,3,5,15,2,9,4,2,4,3,0,7,5,12,4,15,0,9,7,15,12,8,10,12,13,4,12,11,8,6,0,5,4,3,8,9,10,15,11,1,11,6,12,14,13,9,5,4,6,10,7,4,10,10,1,10,5,14,6,13,9,5,0,9,4,11,1,15,14,10,12,9,0,1,5,12,0,15,2,8,13,9,3,5,1,7,4,11,3,3,7,4,12,14,15,9,0,14,9,2,3,3,12,14,3,8,8,14,2,13,7,5,5,0,3,14,4,10,7,12,10,12,12,13,6,4,10,4,0,6,5,1,7,4,10,3,0,8,9,5,8,10,1,6,0,14,15,1,0,9,6,4,11,10,10,15,8,15,13,1,3,2,4,1,13,11,9,14,6,0,4,14,3,6,15,3,7,1,10,11,6,11,11,15,15,3,13,7,9,1,7,12,5,11,7,11,15,11,13,5,3,8,14,10,2,6,1,3,15,14,4,9,2,14,4,6,1,8,2,6,2,0,14,11,10,15,5,10,6,12,11,6,0,12,11,1,9,10,15,1,12,5,5,11,11,4,13,13,15,0,9,12,13,3,10,11,12,1,0,9,15,10,14,10,0,0,11,15,4,6,3,9,8,14,7,3,3,11,5,12,0,12,10,6,10,8,8,10,14,10,15,0,13,14,2,15,10,5,15,9,4,2,1,7,0,14,8,4,10,14,8,15,7,14,11,8,10,0,0,8,3,4,2,1,10,8,4,6,6,5,3,0,8,5,7,4,7,6,13,14,12,9,15,1,5,3,15,14,1,12,10,13,1,13,2,4,3,1,5,11,15,13,11,12,15,9,9,12,13,10,14,14,1,11,4,11,12,5,1,6,13,13,12,12,6,4,10,0,13,15,13,15,6,1,7,4,1,8,15,14,7,3,11,5,8,12,3,5,3,5,2,6,5,11,1,14,4,6,7,8,4,2,5,7,14,10,13,9,14,15,2,14,12,7,14,0,7,9,14,14,14,4,12,6,12,5,15,14,6,0,2,4,13,4,12,5,3,13,7,0,3,15,11,10,1,4,10,7,6,14,7,11,3,7,1,11,10,3,1,0,2,14,8,9,10,2,10,8,6,4,12,4,1,7,0,10,12,15,6,11,2,11,12,13,10,11,13,8,1,6,4,14,11,5,15,8,8,15,5,15,15,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 552.0, \"clip_end\": 555.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,14,4,1,8,7,14,8,5,2,14,6,0,11,0,9,6,7,14,5,8,1,5,4,5,6,5,1,1,6,1,3,12,3,7,7,5,14,1,1,0,3,9,1,7,7,14,8,13,11,13,2,0,7,4,10,4,13,13,7,13,9,8,0,13,13,1,12,15,1,13,4,10,11,8,0,9,14,7,14,9,0,0,6,9,8,1,13,0,10,1,4,1,15,4,9,11,11,6,9,4,15,0,15,8,0,4,6,6,1,0,14,6,2,9,4,6,3,0,2,11,13,11,12,10,6,13,8,14,10,5,7,14,1,14,1,12,1,10,13,0,12,2,15,4,3,12,6,2,13,14,5,2,8,11,15,0,14,12,2,0,5,14,8,14,0,9,7,15,4,5,0,15,0,0,11,5,0,7,3,0,12,1,4,0,15,8,12,6,9,6,11,3,3,0,15,11,14,7,3,6,12,7,14,1,5,0,8,13,15,10,14,9,12,6,5,10,9,1,2,2,5,11,15,7,12,3,1,9,8,10,13,6,9,4,10,0,2,12,5,6,3,1,3,5,4,1,10,15,15,8,11,14,2,12,4,8,1,11,6,10,13,13,11,2,12,7,6,6,10,6,14,12,10,1,4,8,7,9,13,9,0,14,5,10,14,7,12,11,3,0,8,9,4,15,7,3,8,11,14,8,0,15,2,1,8,14,12,4,3,6,12,11,4,10,8,11,6,5,6,10,9,1,4,3,11,7,9,5,14,9,15,0,15,14,8,11,14,1,3,14,2,7,11,14,5,5,12,9,11,3,9,14,3,9,9,9,11,9,13,10,9,7,3,15,11,9,2,6,0,14,6,9,7,3,9,6,12,5,15,9,15,7,13,9,7,3,13,4,1,2,3,5,14,3,9,10,7,10,7,7,8,5,10,6,12,14,15,6,5,15,9,6,11,8,6,15,8,12,7,8,5,10,10,12,12,6,8,3,14,9,15,1,1,10,4,1,14,10,10,7,14,13,1,4,12,5,7,3,13,2,11,12,12,1,8,10,15,1,8,2,13,8,6,13,11,8,5,1,5,12,15,1,9,0,2,9,11,15,8,4,12,2,2,9,14,15,15,3,14,6,10,7,11,3,1,15,7,3,7,7,2,3,5,15,2,9,4,2,4,3,0,7,5,12,4,15,0,9,7,15,12,8,10,12,13,4,12,11,8,6,0,5,4,3,8,9,10,15,11,1,11,6,12,14,13,9,5,4,6,10,7,4,10,10,1,10,5,14,6,13,9,5,0,9,4,11,1,15,14,10,12,9,0,1,5,12,0,15,2,8,13,9,3,5,1,7,4,11,3,3,7,4,12,14,15,9,0,14,9,2,3,3,12,14,3,8,8,14,2,13,7,5,5,0,3,14,4,10,7,12,10,12,12,13,6,4,10,4,0,6,5,1,7,4,10,3,0,8,9,5,8,10,1,6,0,14,15,1,0,9,6,4,11,10,10,15,8,15,13,1,3,2,4,1,13,11,9,14,6,0,4,14,3,6,15,3,7,1,10,11,6,11,11,15,15,3,13,7,9,1,7,12,5,11,7,11,15,11,13,5,3,8,14,10,2,6,1,3,15,14,4,9,2,14,4,6,1,8,2,6,2,0,14,11,10,15,5,10,6,12,11,6,0,12,11,1,9,10,15,1,12,5,5,11,11,4,13,13,15,0,9,12,13,3,10,11,12,1,0,9,15,10,14,10,0,0,11,15,4,6,3,9,8,14,7,3,3,11,5,12,0,12,10,6,10,8,8,10,14,10,15,0,13,14,2,15,10,5,15,9,4,2,1,7,0,14,8,4,10,14,8,15,7,14,11,8,10,0,0,8,3,4,2,1,10,8,4,6,6,5,3,0,8,5,7,4,7,6,13,14,12,9,15,1,5,3,15,14,1,12,10,13,1,13,2,4,3,1,5,11,15,13,11,12,15,9,9,12,13,10,14,14,1,11,4,11,12,5,1,6,13,13,12,12,6,4,10,0,13,15,13,15,6,1,7,4,1,8,15,14,7,3,11,5,8,12,3,5,3,5,2,6,5,11,1,14,4,6,7,8,4,2,5,7,14,10,13,9,14,15,2,14,12,7,14,0,7,9,14,14,14,4,12,6,12,5,15,14,6,0,2,4,13,4,12,5,3,13,7,0,3,15,11,10,1,4,10,7,6,14,7,11,3,7,1,11,10,3,1,0,2,14,8,9,10,2,10,8,6,4,12,4,1,7,0,10,12,15,6,11,2,11,12,13,10,11,13,8,1,6,4,14,11,5,15,8,8,15,5,15,15,9", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,5,5,6,14,14,4,11,12,12,10,14,9,1,6,6,5,15,0,9,12,10,14,7,12,10,10,1,12,3,2,13,8,12,4,9,2,12,15,4,13,12,10,7,0,8,15,11,2,0,6,3,11,1,12,12,5,0,6,7,15,9,15,1,4,15,13,9,5,9,15,1,0,15,6,8,14,10,11,6,7,14,8,15,14,1,4,2,9,5,9,11,4,11,1,12,1,7,2,12,5,3,5,0,13,3,3,4,7,4,8,0,1,2,0,9,3,4,7,10,9,14,13,14,5,14,7,13,4,2,2,3,14,9,7,3,6,13,3,10,8,3,3,13,2,6,14,9,9,2,8,9,9,6,10,11,12,9,8,9,10,10,2,11,15,14,0,4,0,14,6,2,2,0,6,7,9,5,2,3,0,12,1,7,11,0,5,7,15,6,1,12,9,7,8,8,4,10,10,7,6,14,10,8,8,2,9,15,0,8,7,10,12,11,8,12,14,11,0,2,6,7,10,11,6,10,14,13,11,0,15,13,5,11,9,15,4,9,5,8,8,14,4,12,5,12,5,10,10,4,15,15,4,15,3,6,3,11,14,13,7,13,5,6,4,13,1,11,8,10,2,1,4,5,15,2,11,8,14,13,5,10,3,7,1,7,15,14,14,3,8,2,5,14,15,6,4,8,14,12,8,12,15,8,2,9,13,0,11,11,3,5,8,11,6,3,3,7,13,1,3,13,11,0,3,4,1,8,12,8,5,14,8,1,12,5,6,14,2,5,15,13,8,14,10,2,8,3,14,7,8,7,13,13,7,14,8,13,5,13,14,4,7,14,8,5,5,12,15,0,12,2,2,12,11,12,13,2,14,11,3,4,12,13,11,6,12,10,3,5,15,13,4,9,0,13,10,3,14,12,9,13,14,13,0,0,1,11,9,13,13,5,7,10,15,14,10,13,9,13,10,6,6,10,11,5,0,6,0,15,12,12,13,13,11,7,1,3,5,4,15,3,10,4,4,0,6,0,4,12,2,13,14,7,12,14,4,8,2,5,11,6,11,9,2,14,15,9,12,0,2,3,14,13,9,3,5,2,9,11,12,1,10,4,12,10,13,8,2,14,8,2,5,2,3,8,13,3,5,15,14,9,15,13,9,10,11,6,5,6,10,1,15,11,11,2,14,1,12,3,4,3,3,8,1,15,2,6,11,3,10,3,1,8,0,14,10,15,15,15,8,6,12,14,5,13,14,4,9,3,9,6,3,5,3,5,11,12,9,12,7,13,5,4,13,4,12,13,12,11,3,4,12,4,5,7,2,5,2,3,4,8,13,2,7,1,15,0,1,2,9,11,3,2,2,0,13,9,5,13,10,9,5,7,13,4,13,3,6,13,10,15,3,0,10,5,8,1,15,2,8,6,12,15,10,14,10,13,0,11,1,15,15,5,6,7,1,14,3,11,12,4,3,4,8,2,6,12,8,2,0,15,10,7,8,12,10,1,0,14,7,2,14,7,2,2,3,13,4,8,14,9,11,4,8,0,5,0,6,7,11,6,9,7,15,12,2,3,7,15,2,4,15,8,4,9,2,14,10,12,14,11,4,1,14,3,2,3,6,0,1,12,13,5,2,2,7,15,2,10,14,3,9,7,13,8,2,5,15,13,15,1,5,13,2,5,0,4,8,14,2,6,14,2,13,10,10,3,8,4,4,0,0,15,13,15,14,10,13,3,6,6,6,8,13,1,5,6,13,10,15,3,5,10,6,14,1,10,4,9,2,13,4,15,11,4,7,6,8,6,9,15,7,0,3,12,3,14,5,12,14,15,7,12,14,7,14,3,12,5,11,1,14,8,13,5,11,2,9,4,15,8,8,2,10,0,1,2,0,10,7,7,9,8,12,4,15,3,12,10,8,1,6,10,3,6,2,15,7,1,5,7,0,13,5,10,6,6,7,8,2,0,5,5,2,5,10,8,12,6,5,2,15,10,9,0,6,8,15,1,6,6,14,8,2,4,12,5,12,4,4,8,5,14,5,0,13,1,1,1,14,8,11,2,13,15,4,10,6,2,7,3,10,15,2,6,14,5,7,3,0,13,14,5,2,5,10,11,1,13,11,12,4,3,3,8,1,5,6,5,0,5,11,7,5,8,13,5,8,0,2,14,10,14,7,1,5,4,9,14,15,1,13,10,15,10,2,7,4,5,10,1,5,4,6,11,5,3,7,2,4,0,10,7,2,15,5,15,3,12,1,15,7,10,0,15,13,13,2,5,2,13,4,8,9,6,2,14,9,7,10,8,13,9,1,5,6,7,7,15,8,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"5\", \"8\", \"0\", \"2\"], \"clip_start\": 947.0, \"clip_end\": 953.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,5,5,6,14,14,4,11,12,12,10,14,9,1,6,6,5,15,0,9,12,10,14,7,12,10,10,1,12,3,2,13,8,12,4,9,2,12,15,4,13,12,10,7,0,8,15,11,2,0,6,3,11,1,12,12,5,0,6,7,15,9,15,1,4,15,13,9,5,9,15,1,0,15,6,8,14,10,11,6,7,14,8,15,14,1,4,2,9,5,9,11,4,11,1,12,1,7,2,12,5,3,5,0,13,3,3,4,7,4,8,0,1,2,0,9,3,4,7,10,9,14,13,14,5,14,7,13,4,2,2,3,14,9,7,3,6,13,3,10,8,3,3,13,2,6,14,9,9,2,8,9,9,6,10,11,12,9,8,9,10,10,2,11,15,14,0,4,0,14,6,2,2,0,6,7,9,5,2,3,0,12,1,7,11,0,5,7,15,6,1,12,9,7,8,8,4,10,10,7,6,14,10,8,8,2,9,15,0,8,7,10,12,11,8,12,14,11,0,2,6,7,10,11,6,10,14,13,11,0,15,13,5,11,9,15,4,9,5,8,8,14,4,12,5,12,5,10,10,4,15,15,4,15,3,6,3,11,14,13,7,13,5,6,4,13,1,11,8,10,2,1,4,5,15,2,11,8,14,13,5,10,3,7,1,7,15,14,14,3,8,2,5,14,15,6,4,8,14,12,8,12,15,8,2,9,13,0,11,11,3,5,8,11,6,3,3,7,13,1,3,13,11,0,3,4,1,8,12,8,5,14,8,1,12,5,6,14,2,5,15,13,8,14,10,2,8,3,14,7,8,7,13,13,7,14,8,13,5,13,14,4,7,14,8,5,5,12,15,0,12,2,2,12,11,12,13,2,14,11,3,4,12,13,11,6,12,10,3,5,15,13,4,9,0,13,10,3,14,12,9,13,14,13,0,0,1,11,9,13,13,5,7,10,15,14,10,13,9,13,10,6,6,10,11,5,0,6,0,15,12,12,13,13,11,7,1,3,5,4,15,3,10,4,4,0,6,0,4,12,2,13,14,7,12,14,4,8,2,5,11,6,11,9,2,14,15,9,12,0,2,3,14,13,9,3,5,2,9,11,12,1,10,4,12,10,13,8,2,14,8,2,5,2,3,8,13,3,5,15,14,9,15,13,9,10,11,6,5,6,10,1,15,11,11,2,14,1,12,3,4,3,3,8,1,15,2,6,11,3,10,3,1,8,0,14,10,15,15,15,8,6,12,14,5,13,14,4,9,3,9,6,3,5,3,5,11,12,9,12,7,13,5,4,13,4,12,13,12,11,3,4,12,4,5,7,2,5,2,3,4,8,13,2,7,1,15,0,1,2,9,11,3,2,2,0,13,9,5,13,10,9,5,7,13,4,13,3,6,13,10,15,3,0,10,5,8,1,15,2,8,6,12,15,10,14,10,13,0,11,1,15,15,5,6,7,1,14,3,11,12,4,3,4,8,2,6,12,8,2,0,15,10,7,8,12,10,1,0,14,7,2,14,7,2,2,3,13,4,8,14,9,11,4,8,0,5,0,6,7,11,6,9,7,15,12,2,3,7,15,2,4,15,8,4,9,2,14,10,12,14,11,4,1,14,3,2,3,6,0,1,12,13,5,2,2,7,15,2,10,14,3,9,7,13,8,2,5,15,13,15,1,5,13,2,5,0,4,8,14,2,6,14,2,13,10,10,3,8,4,4,0,0,15,13,15,14,10,13,3,6,6,6,8,13,1,5,6,13,10,15,3,5,10,6,14,1,10,4,9,2,13,4,15,11,4,7,6,8,6,9,15,7,0,3,12,3,14,5,12,14,15,7,12,14,7,14,3,12,5,11,1,14,8,13,5,11,2,9,4,15,8,8,2,10,0,1,2,0,10,7,7,9,8,12,4,15,3,12,10,8,1,6,10,3,6,2,15,7,1,5,7,0,13,5,10,6,6,7,8,2,0,5,5,2,5,10,8,12,6,5,2,15,10,9,0,6,8,15,1,6,6,14,8,2,4,12,5,12,4,4,8,5,14,5,0,13,1,1,1,14,8,11,2,13,15,4,10,6,2,7,3,10,15,2,6,14,5,7,3,0,13,14,5,2,5,10,11,1,13,11,12,4,3,3,8,1,5,6,5,0,5,11,7,5,8,13,5,8,0,2,14,10,14,7,1,5,4,9,14,15,1,13,10,15,10,2,7,4,5,10,1,5,4,6,11,5,3,7,2,4,0,10,7,2,15,5,15,3,12,1,15,7,10,0,15,13,13,2,5,2,13,4,8,9,6,2,14,9,7,10,8,13,9,1,5,6,7,7,15,8,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"14\"], \"clip_start\": 916.0, \"clip_end\": 919.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,5,5,6,14,14,4,11,12,12,10,14,9,1,6,6,5,15,0,9,12,10,14,7,12,10,10,1,12,3,2,13,8,12,4,9,2,12,15,4,13,12,10,7,0,8,15,11,2,0,6,3,11,1,12,12,5,0,6,7,15,9,15,1,4,15,13,9,5,9,15,1,0,15,6,8,14,10,11,6,7,14,8,15,14,1,4,2,9,5,9,11,4,11,1,12,1,7,2,12,5,3,5,0,13,3,3,4,7,4,8,0,1,2,0,9,3,4,7,10,9,14,13,14,5,14,7,13,4,2,2,3,14,9,7,3,6,13,3,10,8,3,3,13,2,6,14,9,9,2,8,9,9,6,10,11,12,9,8,9,10,10,2,11,15,14,0,4,0,14,6,2,2,0,6,7,9,5,2,3,0,12,1,7,11,0,5,7,15,6,1,12,9,7,8,8,4,10,10,7,6,14,10,8,8,2,9,15,0,8,7,10,12,11,8,12,14,11,0,2,6,7,10,11,6,10,14,13,11,0,15,13,5,11,9,15,4,9,5,8,8,14,4,12,5,12,5,10,10,4,15,15,4,15,3,6,3,11,14,13,7,13,5,6,4,13,1,11,8,10,2,1,4,5,15,2,11,8,14,13,5,10,3,7,1,7,15,14,14,3,8,2,5,14,15,6,4,8,14,12,8,12,15,8,2,9,13,0,11,11,3,5,8,11,6,3,3,7,13,1,3,13,11,0,3,4,1,8,12,8,5,14,8,1,12,5,6,14,2,5,15,13,8,14,10,2,8,3,14,7,8,7,13,13,7,14,8,13,5,13,14,4,7,14,8,5,5,12,15,0,12,2,2,12,11,12,13,2,14,11,3,4,12,13,11,6,12,10,3,5,15,13,4,9,0,13,10,3,14,12,9,13,14,13,0,0,1,11,9,13,13,5,7,10,15,14,10,13,9,13,10,6,6,10,11,5,0,6,0,15,12,12,13,13,11,7,1,3,5,4,15,3,10,4,4,0,6,0,4,12,2,13,14,7,12,14,4,8,2,5,11,6,11,9,2,14,15,9,12,0,2,3,14,13,9,3,5,2,9,11,12,1,10,4,12,10,13,8,2,14,8,2,5,2,3,8,13,3,5,15,14,9,15,13,9,10,11,6,5,6,10,1,15,11,11,2,14,1,12,3,4,3,3,8,1,15,2,6,11,3,10,3,1,8,0,14,10,15,15,15,8,6,12,14,5,13,14,4,9,3,9,6,3,5,3,5,11,12,9,12,7,13,5,4,13,4,12,13,12,11,3,4,12,4,5,7,2,5,2,3,4,8,13,2,7,1,15,0,1,2,9,11,3,2,2,0,13,9,5,13,10,9,5,7,13,4,13,3,6,13,10,15,3,0,10,5,8,1,15,2,8,6,12,15,10,14,10,13,0,11,1,15,15,5,6,7,1,14,3,11,12,4,3,4,8,2,6,12,8,2,0,15,10,7,8,12,10,1,0,14,7,2,14,7,2,2,3,13,4,8,14,9,11,4,8,0,5,0,6,7,11,6,9,7,15,12,2,3,7,15,2,4,15,8,4,9,2,14,10,12,14,11,4,1,14,3,2,3,6,0,1,12,13,5,2,2,7,15,2,10,14,3,9,7,13,8,2,5,15,13,15,1,5,13,2,5,0,4,8,14,2,6,14,2,13,10,10,3,8,4,4,0,0,15,13,15,14,10,13,3,6,6,6,8,13,1,5,6,13,10,15,3,5,10,6,14,1,10,4,9,2,13,4,15,11,4,7,6,8,6,9,15,7,0,3,12,3,14,5,12,14,15,7,12,14,7,14,3,12,5,11,1,14,8,13,5,11,2,9,4,15,8,8,2,10,0,1,2,0,10,7,7,9,8,12,4,15,3,12,10,8,1,6,10,3,6,2,15,7,1,5,7,0,13,5,10,6,6,7,8,2,0,5,5,2,5,10,8,12,6,5,2,15,10,9,0,6,8,15,1,6,6,14,8,2,4,12,5,12,4,4,8,5,14,5,0,13,1,1,1,14,8,11,2,13,15,4,10,6,2,7,3,10,15,2,6,14,5,7,3,0,13,14,5,2,5,10,11,1,13,11,12,4,3,3,8,1,5,6,5,0,5,11,7,5,8,13,5,8,0,2,14,10,14,7,1,5,4,9,14,15,1,13,10,15,10,2,7,4,5,10,1,5,4,6,11,5,3,7,2,4,0,10,7,2,15,5,15,3,12,1,15,7,10,0,15,13,13,2,5,2,13,4,8,9,6,2,14,9,7,10,8,13,9,1,5,6,7,7,15,8,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"9\"], \"clip_start\": 90.0, \"clip_end\": 93.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,5,5,6,14,14,4,11,12,12,10,14,9,1,6,6,5,15,0,9,12,10,14,7,12,10,10,1,12,3,2,13,8,12,4,9,2,12,15,4,13,12,10,7,0,8,15,11,2,0,6,3,11,1,12,12,5,0,6,7,15,9,15,1,4,15,13,9,5,9,15,1,0,15,6,8,14,10,11,6,7,14,8,15,14,1,4,2,9,5,9,11,4,11,1,12,1,7,2,12,5,3,5,0,13,3,3,4,7,4,8,0,1,2,0,9,3,4,7,10,9,14,13,14,5,14,7,13,4,2,2,3,14,9,7,3,6,13,3,10,8,3,3,13,2,6,14,9,9,2,8,9,9,6,10,11,12,9,8,9,10,10,2,11,15,14,0,4,0,14,6,2,2,0,6,7,9,5,2,3,0,12,1,7,11,0,5,7,15,6,1,12,9,7,8,8,4,10,10,7,6,14,10,8,8,2,9,15,0,8,7,10,12,11,8,12,14,11,0,2,6,7,10,11,6,10,14,13,11,0,15,13,5,11,9,15,4,9,5,8,8,14,4,12,5,12,5,10,10,4,15,15,4,15,3,6,3,11,14,13,7,13,5,6,4,13,1,11,8,10,2,1,4,5,15,2,11,8,14,13,5,10,3,7,1,7,15,14,14,3,8,2,5,14,15,6,4,8,14,12,8,12,15,8,2,9,13,0,11,11,3,5,8,11,6,3,3,7,13,1,3,13,11,0,3,4,1,8,12,8,5,14,8,1,12,5,6,14,2,5,15,13,8,14,10,2,8,3,14,7,8,7,13,13,7,14,8,13,5,13,14,4,7,14,8,5,5,12,15,0,12,2,2,12,11,12,13,2,14,11,3,4,12,13,11,6,12,10,3,5,15,13,4,9,0,13,10,3,14,12,9,13,14,13,0,0,1,11,9,13,13,5,7,10,15,14,10,13,9,13,10,6,6,10,11,5,0,6,0,15,12,12,13,13,11,7,1,3,5,4,15,3,10,4,4,0,6,0,4,12,2,13,14,7,12,14,4,8,2,5,11,6,11,9,2,14,15,9,12,0,2,3,14,13,9,3,5,2,9,11,12,1,10,4,12,10,13,8,2,14,8,2,5,2,3,8,13,3,5,15,14,9,15,13,9,10,11,6,5,6,10,1,15,11,11,2,14,1,12,3,4,3,3,8,1,15,2,6,11,3,10,3,1,8,0,14,10,15,15,15,8,6,12,14,5,13,14,4,9,3,9,6,3,5,3,5,11,12,9,12,7,13,5,4,13,4,12,13,12,11,3,4,12,4,5,7,2,5,2,3,4,8,13,2,7,1,15,0,1,2,9,11,3,2,2,0,13,9,5,13,10,9,5,7,13,4,13,3,6,13,10,15,3,0,10,5,8,1,15,2,8,6,12,15,10,14,10,13,0,11,1,15,15,5,6,7,1,14,3,11,12,4,3,4,8,2,6,12,8,2,0,15,10,7,8,12,10,1,0,14,7,2,14,7,2,2,3,13,4,8,14,9,11,4,8,0,5,0,6,7,11,6,9,7,15,12,2,3,7,15,2,4,15,8,4,9,2,14,10,12,14,11,4,1,14,3,2,3,6,0,1,12,13,5,2,2,7,15,2,10,14,3,9,7,13,8,2,5,15,13,15,1,5,13,2,5,0,4,8,14,2,6,14,2,13,10,10,3,8,4,4,0,0,15,13,15,14,10,13,3,6,6,6,8,13,1,5,6,13,10,15,3,5,10,6,14,1,10,4,9,2,13,4,15,11,4,7,6,8,6,9,15,7,0,3,12,3,14,5,12,14,15,7,12,14,7,14,3,12,5,11,1,14,8,13,5,11,2,9,4,15,8,8,2,10,0,1,2,0,10,7,7,9,8,12,4,15,3,12,10,8,1,6,10,3,6,2,15,7,1,5,7,0,13,5,10,6,6,7,8,2,0,5,5,2,5,10,8,12,6,5,2,15,10,9,0,6,8,15,1,6,6,14,8,2,4,12,5,12,4,4,8,5,14,5,0,13,1,1,1,14,8,11,2,13,15,4,10,6,2,7,3,10,15,2,6,14,5,7,3,0,13,14,5,2,5,10,11,1,13,11,12,4,3,3,8,1,5,6,5,0,5,11,7,5,8,13,5,8,0,2,14,10,14,7,1,5,4,9,14,15,1,13,10,15,10,2,7,4,5,10,1,5,4,6,11,5,3,7,2,4,0,10,7,2,15,5,15,3,12,1,15,7,10,0,15,13,13,2,5,2,13,4,8,9,6,2,14,9,7,10,8,13,9,1,5,6,7,7,15,8,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"10\", \"3\"], \"clip_start\": 766.0, \"clip_end\": 769.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q4_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,5,5,6,14,14,4,11,12,12,10,14,9,1,6,6,5,15,0,9,12,10,14,7,12,10,10,1,12,3,2,13,8,12,4,9,2,12,15,4,13,12,10,7,0,8,15,11,2,0,6,3,11,1,12,12,5,0,6,7,15,9,15,1,4,15,13,9,5,9,15,1,0,15,6,8,14,10,11,6,7,14,8,15,14,1,4,2,9,5,9,11,4,11,1,12,1,7,2,12,5,3,5,0,13,3,3,4,7,4,8,0,1,2,0,9,3,4,7,10,9,14,13,14,5,14,7,13,4,2,2,3,14,9,7,3,6,13,3,10,8,3,3,13,2,6,14,9,9,2,8,9,9,6,10,11,12,9,8,9,10,10,2,11,15,14,0,4,0,14,6,2,2,0,6,7,9,5,2,3,0,12,1,7,11,0,5,7,15,6,1,12,9,7,8,8,4,10,10,7,6,14,10,8,8,2,9,15,0,8,7,10,12,11,8,12,14,11,0,2,6,7,10,11,6,10,14,13,11,0,15,13,5,11,9,15,4,9,5,8,8,14,4,12,5,12,5,10,10,4,15,15,4,15,3,6,3,11,14,13,7,13,5,6,4,13,1,11,8,10,2,1,4,5,15,2,11,8,14,13,5,10,3,7,1,7,15,14,14,3,8,2,5,14,15,6,4,8,14,12,8,12,15,8,2,9,13,0,11,11,3,5,8,11,6,3,3,7,13,1,3,13,11,0,3,4,1,8,12,8,5,14,8,1,12,5,6,14,2,5,15,13,8,14,10,2,8,3,14,7,8,7,13,13,7,14,8,13,5,13,14,4,7,14,8,5,5,12,15,0,12,2,2,12,11,12,13,2,14,11,3,4,12,13,11,6,12,10,3,5,15,13,4,9,0,13,10,3,14,12,9,13,14,13,0,0,1,11,9,13,13,5,7,10,15,14,10,13,9,13,10,6,6,10,11,5,0,6,0,15,12,12,13,13,11,7,1,3,5,4,15,3,10,4,4,0,6,0,4,12,2,13,14,7,12,14,4,8,2,5,11,6,11,9,2,14,15,9,12,0,2,3,14,13,9,3,5,2,9,11,12,1,10,4,12,10,13,8,2,14,8,2,5,2,3,8,13,3,5,15,14,9,15,13,9,10,11,6,5,6,10,1,15,11,11,2,14,1,12,3,4,3,3,8,1,15,2,6,11,3,10,3,1,8,0,14,10,15,15,15,8,6,12,14,5,13,14,4,9,3,9,6,3,5,3,5,11,12,9,12,7,13,5,4,13,4,12,13,12,11,3,4,12,4,5,7,2,5,2,3,4,8,13,2,7,1,15,0,1,2,9,11,3,2,2,0,13,9,5,13,10,9,5,7,13,4,13,3,6,13,10,15,3,0,10,5,8,1,15,2,8,6,12,15,10,14,10,13,0,11,1,15,15,5,6,7,1,14,3,11,12,4,3,4,8,2,6,12,8,2,0,15,10,7,8,12,10,1,0,14,7,2,14,7,2,2,3,13,4,8,14,9,11,4,8,0,5,0,6,7,11,6,9,7,15,12,2,3,7,15,2,4,15,8,4,9,2,14,10,12,14,11,4,1,14,3,2,3,6,0,1,12,13,5,2,2,7,15,2,10,14,3,9,7,13,8,2,5,15,13,15,1,5,13,2,5,0,4,8,14,2,6,14,2,13,10,10,3,8,4,4,0,0,15,13,15,14,10,13,3,6,6,6,8,13,1,5,6,13,10,15,3,5,10,6,14,1,10,4,9,2,13,4,15,11,4,7,6,8,6,9,15,7,0,3,12,3,14,5,12,14,15,7,12,14,7,14,3,12,5,11,1,14,8,13,5,11,2,9,4,15,8,8,2,10,0,1,2,0,10,7,7,9,8,12,4,15,3,12,10,8,1,6,10,3,6,2,15,7,1,5,7,0,13,5,10,6,6,7,8,2,0,5,5,2,5,10,8,12,6,5,2,15,10,9,0,6,8,15,1,6,6,14,8,2,4,12,5,12,4,4,8,5,14,5,0,13,1,1,1,14,8,11,2,13,15,4,10,6,2,7,3,10,15,2,6,14,5,7,3,0,13,14,5,2,5,10,11,1,13,11,12,4,3,3,8,1,5,6,5,0,5,11,7,5,8,13,5,8,0,2,14,10,14,7,1,5,4,9,14,15,1,13,10,15,10,2,7,4,5,10,1,5,4,6,11,5,3,7,2,4,0,10,7,2,15,5,15,3,12,1,15,7,10,0,15,13,13,2,5,2,13,4,8,9,6,2,14,9,7,10,8,13,9,1,5,6,7,7,15,8,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"7\", \"11\", \"6\"], \"clip_start\": 679.0, \"clip_end\": 684.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,5,5,6,14,14,4,11,12,12,10,14,9,1,6,6,5,15,0,9,12,10,14,7,12,10,10,1,12,3,2,13,8,12,4,9,2,12,15,4,13,12,10,7,0,8,15,11,2,0,6,3,11,1,12,12,5,0,6,7,15,9,15,1,4,15,13,9,5,9,15,1,0,15,6,8,14,10,11,6,7,14,8,15,14,1,4,2,9,5,9,11,4,11,1,12,1,7,2,12,5,3,5,0,13,3,3,4,7,4,8,0,1,2,0,9,3,4,7,10,9,14,13,14,5,14,7,13,4,2,2,3,14,9,7,3,6,13,3,10,8,3,3,13,2,6,14,9,9,2,8,9,9,6,10,11,12,9,8,9,10,10,2,11,15,14,0,4,0,14,6,2,2,0,6,7,9,5,2,3,0,12,1,7,11,0,5,7,15,6,1,12,9,7,8,8,4,10,10,7,6,14,10,8,8,2,9,15,0,8,7,10,12,11,8,12,14,11,0,2,6,7,10,11,6,10,14,13,11,0,15,13,5,11,9,15,4,9,5,8,8,14,4,12,5,12,5,10,10,4,15,15,4,15,3,6,3,11,14,13,7,13,5,6,4,13,1,11,8,10,2,1,4,5,15,2,11,8,14,13,5,10,3,7,1,7,15,14,14,3,8,2,5,14,15,6,4,8,14,12,8,12,15,8,2,9,13,0,11,11,3,5,8,11,6,3,3,7,13,1,3,13,11,0,3,4,1,8,12,8,5,14,8,1,12,5,6,14,2,5,15,13,8,14,10,2,8,3,14,7,8,7,13,13,7,14,8,13,5,13,14,4,7,14,8,5,5,12,15,0,12,2,2,12,11,12,13,2,14,11,3,4,12,13,11,6,12,10,3,5,15,13,4,9,0,13,10,3,14,12,9,13,14,13,0,0,1,11,9,13,13,5,7,10,15,14,10,13,9,13,10,6,6,10,11,5,0,6,0,15,12,12,13,13,11,7,1,3,5,4,15,3,10,4,4,0,6,0,4,12,2,13,14,7,12,14,4,8,2,5,11,6,11,9,2,14,15,9,12,0,2,3,14,13,9,3,5,2,9,11,12,1,10,4,12,10,13,8,2,14,8,2,5,2,3,8,13,3,5,15,14,9,15,13,9,10,11,6,5,6,10,1,15,11,11,2,14,1,12,3,4,3,3,8,1,15,2,6,11,3,10,3,1,8,0,14,10,15,15,15,8,6,12,14,5,13,14,4,9,3,9,6,3,5,3,5,11,12,9,12,7,13,5,4,13,4,12,13,12,11,3,4,12,4,5,7,2,5,2,3,4,8,13,2,7,1,15,0,1,2,9,11,3,2,2,0,13,9,5,13,10,9,5,7,13,4,13,3,6,13,10,15,3,0,10,5,8,1,15,2,8,6,12,15,10,14,10,13,0,11,1,15,15,5,6,7,1,14,3,11,12,4,3,4,8,2,6,12,8,2,0,15,10,7,8,12,10,1,0,14,7,2,14,7,2,2,3,13,4,8,14,9,11,4,8,0,5,0,6,7,11,6,9,7,15,12,2,3,7,15,2,4,15,8,4,9,2,14,10,12,14,11,4,1,14,3,2,3,6,0,1,12,13,5,2,2,7,15,2,10,14,3,9,7,13,8,2,5,15,13,15,1,5,13,2,5,0,4,8,14,2,6,14,2,13,10,10,3,8,4,4,0,0,15,13,15,14,10,13,3,6,6,6,8,13,1,5,6,13,10,15,3,5,10,6,14,1,10,4,9,2,13,4,15,11,4,7,6,8,6,9,15,7,0,3,12,3,14,5,12,14,15,7,12,14,7,14,3,12,5,11,1,14,8,13,5,11,2,9,4,15,8,8,2,10,0,1,2,0,10,7,7,9,8,12,4,15,3,12,10,8,1,6,10,3,6,2,15,7,1,5,7,0,13,5,10,6,6,7,8,2,0,5,5,2,5,10,8,12,6,5,2,15,10,9,0,6,8,15,1,6,6,14,8,2,4,12,5,12,4,4,8,5,14,5,0,13,1,1,1,14,8,11,2,13,15,4,10,6,2,7,3,10,15,2,6,14,5,7,3,0,13,14,5,2,5,10,11,1,13,11,12,4,3,3,8,1,5,6,5,0,5,11,7,5,8,13,5,8,0,2,14,10,14,7,1,5,4,9,14,15,1,13,10,15,10,2,7,4,5,10,1,5,4,6,11,5,3,7,2,4,0,10,7,2,15,5,15,3,12,1,15,7,10,0,15,13,13,2,5,2,13,4,8,9,6,2,14,9,7,10,8,13,9,1,5,6,7,7,15,8,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"9\", \"6\", \"15\", \"7\"], \"clip_start\": 819.0, \"clip_end\": 824.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q6_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,5,5,6,14,14,4,11,12,12,10,14,9,1,6,6,5,15,0,9,12,10,14,7,12,10,10,1,12,3,2,13,8,12,4,9,2,12,15,4,13,12,10,7,0,8,15,11,2,0,6,3,11,1,12,12,5,0,6,7,15,9,15,1,4,15,13,9,5,9,15,1,0,15,6,8,14,10,11,6,7,14,8,15,14,1,4,2,9,5,9,11,4,11,1,12,1,7,2,12,5,3,5,0,13,3,3,4,7,4,8,0,1,2,0,9,3,4,7,10,9,14,13,14,5,14,7,13,4,2,2,3,14,9,7,3,6,13,3,10,8,3,3,13,2,6,14,9,9,2,8,9,9,6,10,11,12,9,8,9,10,10,2,11,15,14,0,4,0,14,6,2,2,0,6,7,9,5,2,3,0,12,1,7,11,0,5,7,15,6,1,12,9,7,8,8,4,10,10,7,6,14,10,8,8,2,9,15,0,8,7,10,12,11,8,12,14,11,0,2,6,7,10,11,6,10,14,13,11,0,15,13,5,11,9,15,4,9,5,8,8,14,4,12,5,12,5,10,10,4,15,15,4,15,3,6,3,11,14,13,7,13,5,6,4,13,1,11,8,10,2,1,4,5,15,2,11,8,14,13,5,10,3,7,1,7,15,14,14,3,8,2,5,14,15,6,4,8,14,12,8,12,15,8,2,9,13,0,11,11,3,5,8,11,6,3,3,7,13,1,3,13,11,0,3,4,1,8,12,8,5,14,8,1,12,5,6,14,2,5,15,13,8,14,10,2,8,3,14,7,8,7,13,13,7,14,8,13,5,13,14,4,7,14,8,5,5,12,15,0,12,2,2,12,11,12,13,2,14,11,3,4,12,13,11,6,12,10,3,5,15,13,4,9,0,13,10,3,14,12,9,13,14,13,0,0,1,11,9,13,13,5,7,10,15,14,10,13,9,13,10,6,6,10,11,5,0,6,0,15,12,12,13,13,11,7,1,3,5,4,15,3,10,4,4,0,6,0,4,12,2,13,14,7,12,14,4,8,2,5,11,6,11,9,2,14,15,9,12,0,2,3,14,13,9,3,5,2,9,11,12,1,10,4,12,10,13,8,2,14,8,2,5,2,3,8,13,3,5,15,14,9,15,13,9,10,11,6,5,6,10,1,15,11,11,2,14,1,12,3,4,3,3,8,1,15,2,6,11,3,10,3,1,8,0,14,10,15,15,15,8,6,12,14,5,13,14,4,9,3,9,6,3,5,3,5,11,12,9,12,7,13,5,4,13,4,12,13,12,11,3,4,12,4,5,7,2,5,2,3,4,8,13,2,7,1,15,0,1,2,9,11,3,2,2,0,13,9,5,13,10,9,5,7,13,4,13,3,6,13,10,15,3,0,10,5,8,1,15,2,8,6,12,15,10,14,10,13,0,11,1,15,15,5,6,7,1,14,3,11,12,4,3,4,8,2,6,12,8,2,0,15,10,7,8,12,10,1,0,14,7,2,14,7,2,2,3,13,4,8,14,9,11,4,8,0,5,0,6,7,11,6,9,7,15,12,2,3,7,15,2,4,15,8,4,9,2,14,10,12,14,11,4,1,14,3,2,3,6,0,1,12,13,5,2,2,7,15,2,10,14,3,9,7,13,8,2,5,15,13,15,1,5,13,2,5,0,4,8,14,2,6,14,2,13,10,10,3,8,4,4,0,0,15,13,15,14,10,13,3,6,6,6,8,13,1,5,6,13,10,15,3,5,10,6,14,1,10,4,9,2,13,4,15,11,4,7,6,8,6,9,15,7,0,3,12,3,14,5,12,14,15,7,12,14,7,14,3,12,5,11,1,14,8,13,5,11,2,9,4,15,8,8,2,10,0,1,2,0,10,7,7,9,8,12,4,15,3,12,10,8,1,6,10,3,6,2,15,7,1,5,7,0,13,5,10,6,6,7,8,2,0,5,5,2,5,10,8,12,6,5,2,15,10,9,0,6,8,15,1,6,6,14,8,2,4,12,5,12,4,4,8,5,14,5,0,13,1,1,1,14,8,11,2,13,15,4,10,6,2,7,3,10,15,2,6,14,5,7,3,0,13,14,5,2,5,10,11,1,13,11,12,4,3,3,8,1,5,6,5,0,5,11,7,5,8,13,5,8,0,2,14,10,14,7,1,5,4,9,14,15,1,13,10,15,10,2,7,4,5,10,1,5,4,6,11,5,3,7,2,4,0,10,7,2,15,5,15,3,12,1,15,7,10,0,15,13,13,2,5,2,13,4,8,9,6,2,14,9,7,10,8,13,9,1,5,6,7,7,15,8,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"4\", \"14\", \"12\", \"0\"], \"clip_start\": 793.0, \"clip_end\": 798.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,5,5,6,14,14,4,11,12,12,10,14,9,1,6,6,5,15,0,9,12,10,14,7,12,10,10,1,12,3,2,13,8,12,4,9,2,12,15,4,13,12,10,7,0,8,15,11,2,0,6,3,11,1,12,12,5,0,6,7,15,9,15,1,4,15,13,9,5,9,15,1,0,15,6,8,14,10,11,6,7,14,8,15,14,1,4,2,9,5,9,11,4,11,1,12,1,7,2,12,5,3,5,0,13,3,3,4,7,4,8,0,1,2,0,9,3,4,7,10,9,14,13,14,5,14,7,13,4,2,2,3,14,9,7,3,6,13,3,10,8,3,3,13,2,6,14,9,9,2,8,9,9,6,10,11,12,9,8,9,10,10,2,11,15,14,0,4,0,14,6,2,2,0,6,7,9,5,2,3,0,12,1,7,11,0,5,7,15,6,1,12,9,7,8,8,4,10,10,7,6,14,10,8,8,2,9,15,0,8,7,10,12,11,8,12,14,11,0,2,6,7,10,11,6,10,14,13,11,0,15,13,5,11,9,15,4,9,5,8,8,14,4,12,5,12,5,10,10,4,15,15,4,15,3,6,3,11,14,13,7,13,5,6,4,13,1,11,8,10,2,1,4,5,15,2,11,8,14,13,5,10,3,7,1,7,15,14,14,3,8,2,5,14,15,6,4,8,14,12,8,12,15,8,2,9,13,0,11,11,3,5,8,11,6,3,3,7,13,1,3,13,11,0,3,4,1,8,12,8,5,14,8,1,12,5,6,14,2,5,15,13,8,14,10,2,8,3,14,7,8,7,13,13,7,14,8,13,5,13,14,4,7,14,8,5,5,12,15,0,12,2,2,12,11,12,13,2,14,11,3,4,12,13,11,6,12,10,3,5,15,13,4,9,0,13,10,3,14,12,9,13,14,13,0,0,1,11,9,13,13,5,7,10,15,14,10,13,9,13,10,6,6,10,11,5,0,6,0,15,12,12,13,13,11,7,1,3,5,4,15,3,10,4,4,0,6,0,4,12,2,13,14,7,12,14,4,8,2,5,11,6,11,9,2,14,15,9,12,0,2,3,14,13,9,3,5,2,9,11,12,1,10,4,12,10,13,8,2,14,8,2,5,2,3,8,13,3,5,15,14,9,15,13,9,10,11,6,5,6,10,1,15,11,11,2,14,1,12,3,4,3,3,8,1,15,2,6,11,3,10,3,1,8,0,14,10,15,15,15,8,6,12,14,5,13,14,4,9,3,9,6,3,5,3,5,11,12,9,12,7,13,5,4,13,4,12,13,12,11,3,4,12,4,5,7,2,5,2,3,4,8,13,2,7,1,15,0,1,2,9,11,3,2,2,0,13,9,5,13,10,9,5,7,13,4,13,3,6,13,10,15,3,0,10,5,8,1,15,2,8,6,12,15,10,14,10,13,0,11,1,15,15,5,6,7,1,14,3,11,12,4,3,4,8,2,6,12,8,2,0,15,10,7,8,12,10,1,0,14,7,2,14,7,2,2,3,13,4,8,14,9,11,4,8,0,5,0,6,7,11,6,9,7,15,12,2,3,7,15,2,4,15,8,4,9,2,14,10,12,14,11,4,1,14,3,2,3,6,0,1,12,13,5,2,2,7,15,2,10,14,3,9,7,13,8,2,5,15,13,15,1,5,13,2,5,0,4,8,14,2,6,14,2,13,10,10,3,8,4,4,0,0,15,13,15,14,10,13,3,6,6,6,8,13,1,5,6,13,10,15,3,5,10,6,14,1,10,4,9,2,13,4,15,11,4,7,6,8,6,9,15,7,0,3,12,3,14,5,12,14,15,7,12,14,7,14,3,12,5,11,1,14,8,13,5,11,2,9,4,15,8,8,2,10,0,1,2,0,10,7,7,9,8,12,4,15,3,12,10,8,1,6,10,3,6,2,15,7,1,5,7,0,13,5,10,6,6,7,8,2,0,5,5,2,5,10,8,12,6,5,2,15,10,9,0,6,8,15,1,6,6,14,8,2,4,12,5,12,4,4,8,5,14,5,0,13,1,1,1,14,8,11,2,13,15,4,10,6,2,7,3,10,15,2,6,14,5,7,3,0,13,14,5,2,5,10,11,1,13,11,12,4,3,3,8,1,5,6,5,0,5,11,7,5,8,13,5,8,0,2,14,10,14,7,1,5,4,9,14,15,1,13,10,15,10,2,7,4,5,10,1,5,4,6,11,5,3,7,2,4,0,10,7,2,15,5,15,3,12,1,15,7,10,0,15,13,13,2,5,2,13,4,8,9,6,2,14,9,7,10,8,13,9,1,5,6,7,7,15,8,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"14\", \"14\", \"3\"], \"clip_start\": 287.0, \"clip_end\": 292.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q8_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,5,5,6,14,14,4,11,12,12,10,14,9,1,6,6,5,15,0,9,12,10,14,7,12,10,10,1,12,3,2,13,8,12,4,9,2,12,15,4,13,12,10,7,0,8,15,11,2,0,6,3,11,1,12,12,5,0,6,7,15,9,15,1,4,15,13,9,5,9,15,1,0,15,6,8,14,10,11,6,7,14,8,15,14,1,4,2,9,5,9,11,4,11,1,12,1,7,2,12,5,3,5,0,13,3,3,4,7,4,8,0,1,2,0,9,3,4,7,10,9,14,13,14,5,14,7,13,4,2,2,3,14,9,7,3,6,13,3,10,8,3,3,13,2,6,14,9,9,2,8,9,9,6,10,11,12,9,8,9,10,10,2,11,15,14,0,4,0,14,6,2,2,0,6,7,9,5,2,3,0,12,1,7,11,0,5,7,15,6,1,12,9,7,8,8,4,10,10,7,6,14,10,8,8,2,9,15,0,8,7,10,12,11,8,12,14,11,0,2,6,7,10,11,6,10,14,13,11,0,15,13,5,11,9,15,4,9,5,8,8,14,4,12,5,12,5,10,10,4,15,15,4,15,3,6,3,11,14,13,7,13,5,6,4,13,1,11,8,10,2,1,4,5,15,2,11,8,14,13,5,10,3,7,1,7,15,14,14,3,8,2,5,14,15,6,4,8,14,12,8,12,15,8,2,9,13,0,11,11,3,5,8,11,6,3,3,7,13,1,3,13,11,0,3,4,1,8,12,8,5,14,8,1,12,5,6,14,2,5,15,13,8,14,10,2,8,3,14,7,8,7,13,13,7,14,8,13,5,13,14,4,7,14,8,5,5,12,15,0,12,2,2,12,11,12,13,2,14,11,3,4,12,13,11,6,12,10,3,5,15,13,4,9,0,13,10,3,14,12,9,13,14,13,0,0,1,11,9,13,13,5,7,10,15,14,10,13,9,13,10,6,6,10,11,5,0,6,0,15,12,12,13,13,11,7,1,3,5,4,15,3,10,4,4,0,6,0,4,12,2,13,14,7,12,14,4,8,2,5,11,6,11,9,2,14,15,9,12,0,2,3,14,13,9,3,5,2,9,11,12,1,10,4,12,10,13,8,2,14,8,2,5,2,3,8,13,3,5,15,14,9,15,13,9,10,11,6,5,6,10,1,15,11,11,2,14,1,12,3,4,3,3,8,1,15,2,6,11,3,10,3,1,8,0,14,10,15,15,15,8,6,12,14,5,13,14,4,9,3,9,6,3,5,3,5,11,12,9,12,7,13,5,4,13,4,12,13,12,11,3,4,12,4,5,7,2,5,2,3,4,8,13,2,7,1,15,0,1,2,9,11,3,2,2,0,13,9,5,13,10,9,5,7,13,4,13,3,6,13,10,15,3,0,10,5,8,1,15,2,8,6,12,15,10,14,10,13,0,11,1,15,15,5,6,7,1,14,3,11,12,4,3,4,8,2,6,12,8,2,0,15,10,7,8,12,10,1,0,14,7,2,14,7,2,2,3,13,4,8,14,9,11,4,8,0,5,0,6,7,11,6,9,7,15,12,2,3,7,15,2,4,15,8,4,9,2,14,10,12,14,11,4,1,14,3,2,3,6,0,1,12,13,5,2,2,7,15,2,10,14,3,9,7,13,8,2,5,15,13,15,1,5,13,2,5,0,4,8,14,2,6,14,2,13,10,10,3,8,4,4,0,0,15,13,15,14,10,13,3,6,6,6,8,13,1,5,6,13,10,15,3,5,10,6,14,1,10,4,9,2,13,4,15,11,4,7,6,8,6,9,15,7,0,3,12,3,14,5,12,14,15,7,12,14,7,14,3,12,5,11,1,14,8,13,5,11,2,9,4,15,8,8,2,10,0,1,2,0,10,7,7,9,8,12,4,15,3,12,10,8,1,6,10,3,6,2,15,7,1,5,7,0,13,5,10,6,6,7,8,2,0,5,5,2,5,10,8,12,6,5,2,15,10,9,0,6,8,15,1,6,6,14,8,2,4,12,5,12,4,4,8,5,14,5,0,13,1,1,1,14,8,11,2,13,15,4,10,6,2,7,3,10,15,2,6,14,5,7,3,0,13,14,5,2,5,10,11,1,13,11,12,4,3,3,8,1,5,6,5,0,5,11,7,5,8,13,5,8,0,2,14,10,14,7,1,5,4,9,14,15,1,13,10,15,10,2,7,4,5,10,1,5,4,6,11,5,3,7,2,4,0,10,7,2,15,5,15,3,12,1,15,7,10,0,15,13,13,2,5,2,13,4,8,9,6,2,14,9,7,10,8,13,9,1,5,6,7,7,15,8,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"15\", \"13\"], \"clip_start\": 65.0, \"clip_end\": 69.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q9_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,5,5,6,14,14,4,11,12,12,10,14,9,1,6,6,5,15,0,9,12,10,14,7,12,10,10,1,12,3,2,13,8,12,4,9,2,12,15,4,13,12,10,7,0,8,15,11,2,0,6,3,11,1,12,12,5,0,6,7,15,9,15,1,4,15,13,9,5,9,15,1,0,15,6,8,14,10,11,6,7,14,8,15,14,1,4,2,9,5,9,11,4,11,1,12,1,7,2,12,5,3,5,0,13,3,3,4,7,4,8,0,1,2,0,9,3,4,7,10,9,14,13,14,5,14,7,13,4,2,2,3,14,9,7,3,6,13,3,10,8,3,3,13,2,6,14,9,9,2,8,9,9,6,10,11,12,9,8,9,10,10,2,11,15,14,0,4,0,14,6,2,2,0,6,7,9,5,2,3,0,12,1,7,11,0,5,7,15,6,1,12,9,7,8,8,4,10,10,7,6,14,10,8,8,2,9,15,0,8,7,10,12,11,8,12,14,11,0,2,6,7,10,11,6,10,14,13,11,0,15,13,5,11,9,15,4,9,5,8,8,14,4,12,5,12,5,10,10,4,15,15,4,15,3,6,3,11,14,13,7,13,5,6,4,13,1,11,8,10,2,1,4,5,15,2,11,8,14,13,5,10,3,7,1,7,15,14,14,3,8,2,5,14,15,6,4,8,14,12,8,12,15,8,2,9,13,0,11,11,3,5,8,11,6,3,3,7,13,1,3,13,11,0,3,4,1,8,12,8,5,14,8,1,12,5,6,14,2,5,15,13,8,14,10,2,8,3,14,7,8,7,13,13,7,14,8,13,5,13,14,4,7,14,8,5,5,12,15,0,12,2,2,12,11,12,13,2,14,11,3,4,12,13,11,6,12,10,3,5,15,13,4,9,0,13,10,3,14,12,9,13,14,13,0,0,1,11,9,13,13,5,7,10,15,14,10,13,9,13,10,6,6,10,11,5,0,6,0,15,12,12,13,13,11,7,1,3,5,4,15,3,10,4,4,0,6,0,4,12,2,13,14,7,12,14,4,8,2,5,11,6,11,9,2,14,15,9,12,0,2,3,14,13,9,3,5,2,9,11,12,1,10,4,12,10,13,8,2,14,8,2,5,2,3,8,13,3,5,15,14,9,15,13,9,10,11,6,5,6,10,1,15,11,11,2,14,1,12,3,4,3,3,8,1,15,2,6,11,3,10,3,1,8,0,14,10,15,15,15,8,6,12,14,5,13,14,4,9,3,9,6,3,5,3,5,11,12,9,12,7,13,5,4,13,4,12,13,12,11,3,4,12,4,5,7,2,5,2,3,4,8,13,2,7,1,15,0,1,2,9,11,3,2,2,0,13,9,5,13,10,9,5,7,13,4,13,3,6,13,10,15,3,0,10,5,8,1,15,2,8,6,12,15,10,14,10,13,0,11,1,15,15,5,6,7,1,14,3,11,12,4,3,4,8,2,6,12,8,2,0,15,10,7,8,12,10,1,0,14,7,2,14,7,2,2,3,13,4,8,14,9,11,4,8,0,5,0,6,7,11,6,9,7,15,12,2,3,7,15,2,4,15,8,4,9,2,14,10,12,14,11,4,1,14,3,2,3,6,0,1,12,13,5,2,2,7,15,2,10,14,3,9,7,13,8,2,5,15,13,15,1,5,13,2,5,0,4,8,14,2,6,14,2,13,10,10,3,8,4,4,0,0,15,13,15,14,10,13,3,6,6,6,8,13,1,5,6,13,10,15,3,5,10,6,14,1,10,4,9,2,13,4,15,11,4,7,6,8,6,9,15,7,0,3,12,3,14,5,12,14,15,7,12,14,7,14,3,12,5,11,1,14,8,13,5,11,2,9,4,15,8,8,2,10,0,1,2,0,10,7,7,9,8,12,4,15,3,12,10,8,1,6,10,3,6,2,15,7,1,5,7,0,13,5,10,6,6,7,8,2,0,5,5,2,5,10,8,12,6,5,2,15,10,9,0,6,8,15,1,6,6,14,8,2,4,12,5,12,4,4,8,5,14,5,0,13,1,1,1,14,8,11,2,13,15,4,10,6,2,7,3,10,15,2,6,14,5,7,3,0,13,14,5,2,5,10,11,1,13,11,12,4,3,3,8,1,5,6,5,0,5,11,7,5,8,13,5,8,0,2,14,10,14,7,1,5,4,9,14,15,1,13,10,15,10,2,7,4,5,10,1,5,4,6,11,5,3,7,2,4,0,10,7,2,15,5,15,3,12,1,15,7,10,0,15,13,13,2,5,2,13,4,8,9,6,2,14,9,7,10,8,13,9,1,5,6,7,7,15,8,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"9\"], \"clip_start\": 35.0, \"clip_end\": 38.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q10_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,5,5,6,14,14,4,11,12,12,10,14,9,1,6,6,5,15,0,9,12,10,14,7,12,10,10,1,12,3,2,13,8,12,4,9,2,12,15,4,13,12,10,7,0,8,15,11,2,0,6,3,11,1,12,12,5,0,6,7,15,9,15,1,4,15,13,9,5,9,15,1,0,15,6,8,14,10,11,6,7,14,8,15,14,1,4,2,9,5,9,11,4,11,1,12,1,7,2,12,5,3,5,0,13,3,3,4,7,4,8,0,1,2,0,9,3,4,7,10,9,14,13,14,5,14,7,13,4,2,2,3,14,9,7,3,6,13,3,10,8,3,3,13,2,6,14,9,9,2,8,9,9,6,10,11,12,9,8,9,10,10,2,11,15,14,0,4,0,14,6,2,2,0,6,7,9,5,2,3,0,12,1,7,11,0,5,7,15,6,1,12,9,7,8,8,4,10,10,7,6,14,10,8,8,2,9,15,0,8,7,10,12,11,8,12,14,11,0,2,6,7,10,11,6,10,14,13,11,0,15,13,5,11,9,15,4,9,5,8,8,14,4,12,5,12,5,10,10,4,15,15,4,15,3,6,3,11,14,13,7,13,5,6,4,13,1,11,8,10,2,1,4,5,15,2,11,8,14,13,5,10,3,7,1,7,15,14,14,3,8,2,5,14,15,6,4,8,14,12,8,12,15,8,2,9,13,0,11,11,3,5,8,11,6,3,3,7,13,1,3,13,11,0,3,4,1,8,12,8,5,14,8,1,12,5,6,14,2,5,15,13,8,14,10,2,8,3,14,7,8,7,13,13,7,14,8,13,5,13,14,4,7,14,8,5,5,12,15,0,12,2,2,12,11,12,13,2,14,11,3,4,12,13,11,6,12,10,3,5,15,13,4,9,0,13,10,3,14,12,9,13,14,13,0,0,1,11,9,13,13,5,7,10,15,14,10,13,9,13,10,6,6,10,11,5,0,6,0,15,12,12,13,13,11,7,1,3,5,4,15,3,10,4,4,0,6,0,4,12,2,13,14,7,12,14,4,8,2,5,11,6,11,9,2,14,15,9,12,0,2,3,14,13,9,3,5,2,9,11,12,1,10,4,12,10,13,8,2,14,8,2,5,2,3,8,13,3,5,15,14,9,15,13,9,10,11,6,5,6,10,1,15,11,11,2,14,1,12,3,4,3,3,8,1,15,2,6,11,3,10,3,1,8,0,14,10,15,15,15,8,6,12,14,5,13,14,4,9,3,9,6,3,5,3,5,11,12,9,12,7,13,5,4,13,4,12,13,12,11,3,4,12,4,5,7,2,5,2,3,4,8,13,2,7,1,15,0,1,2,9,11,3,2,2,0,13,9,5,13,10,9,5,7,13,4,13,3,6,13,10,15,3,0,10,5,8,1,15,2,8,6,12,15,10,14,10,13,0,11,1,15,15,5,6,7,1,14,3,11,12,4,3,4,8,2,6,12,8,2,0,15,10,7,8,12,10,1,0,14,7,2,14,7,2,2,3,13,4,8,14,9,11,4,8,0,5,0,6,7,11,6,9,7,15,12,2,3,7,15,2,4,15,8,4,9,2,14,10,12,14,11,4,1,14,3,2,3,6,0,1,12,13,5,2,2,7,15,2,10,14,3,9,7,13,8,2,5,15,13,15,1,5,13,2,5,0,4,8,14,2,6,14,2,13,10,10,3,8,4,4,0,0,15,13,15,14,10,13,3,6,6,6,8,13,1,5,6,13,10,15,3,5,10,6,14,1,10,4,9,2,13,4,15,11,4,7,6,8,6,9,15,7,0,3,12,3,14,5,12,14,15,7,12,14,7,14,3,12,5,11,1,14,8,13,5,11,2,9,4,15,8,8,2,10,0,1,2,0,10,7,7,9,8,12,4,15,3,12,10,8,1,6,10,3,6,2,15,7,1,5,7,0,13,5,10,6,6,7,8,2,0,5,5,2,5,10,8,12,6,5,2,15,10,9,0,6,8,15,1,6,6,14,8,2,4,12,5,12,4,4,8,5,14,5,0,13,1,1,1,14,8,11,2,13,15,4,10,6,2,7,3,10,15,2,6,14,5,7,3,0,13,14,5,2,5,10,11,1,13,11,12,4,3,3,8,1,5,6,5,0,5,11,7,5,8,13,5,8,0,2,14,10,14,7,1,5,4,9,14,15,1,13,10,15,10,2,7,4,5,10,1,5,4,6,11,5,3,7,2,4,0,10,7,2,15,5,15,3,12,1,15,7,10,0,15,13,13,2,5,2,13,4,8,9,6,2,14,9,7,10,8,13,9,1,5,6,7,7,15,8,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"14\", \"4\", \"11\"], \"clip_start\": 5.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q11_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,5,5,6,14,14,4,11,12,12,10,14,9,1,6,6,5,15,0,9,12,10,14,7,12,10,10,1,12,3,2,13,8,12,4,9,2,12,15,4,13,12,10,7,0,8,15,11,2,0,6,3,11,1,12,12,5,0,6,7,15,9,15,1,4,15,13,9,5,9,15,1,0,15,6,8,14,10,11,6,7,14,8,15,14,1,4,2,9,5,9,11,4,11,1,12,1,7,2,12,5,3,5,0,13,3,3,4,7,4,8,0,1,2,0,9,3,4,7,10,9,14,13,14,5,14,7,13,4,2,2,3,14,9,7,3,6,13,3,10,8,3,3,13,2,6,14,9,9,2,8,9,9,6,10,11,12,9,8,9,10,10,2,11,15,14,0,4,0,14,6,2,2,0,6,7,9,5,2,3,0,12,1,7,11,0,5,7,15,6,1,12,9,7,8,8,4,10,10,7,6,14,10,8,8,2,9,15,0,8,7,10,12,11,8,12,14,11,0,2,6,7,10,11,6,10,14,13,11,0,15,13,5,11,9,15,4,9,5,8,8,14,4,12,5,12,5,10,10,4,15,15,4,15,3,6,3,11,14,13,7,13,5,6,4,13,1,11,8,10,2,1,4,5,15,2,11,8,14,13,5,10,3,7,1,7,15,14,14,3,8,2,5,14,15,6,4,8,14,12,8,12,15,8,2,9,13,0,11,11,3,5,8,11,6,3,3,7,13,1,3,13,11,0,3,4,1,8,12,8,5,14,8,1,12,5,6,14,2,5,15,13,8,14,10,2,8,3,14,7,8,7,13,13,7,14,8,13,5,13,14,4,7,14,8,5,5,12,15,0,12,2,2,12,11,12,13,2,14,11,3,4,12,13,11,6,12,10,3,5,15,13,4,9,0,13,10,3,14,12,9,13,14,13,0,0,1,11,9,13,13,5,7,10,15,14,10,13,9,13,10,6,6,10,11,5,0,6,0,15,12,12,13,13,11,7,1,3,5,4,15,3,10,4,4,0,6,0,4,12,2,13,14,7,12,14,4,8,2,5,11,6,11,9,2,14,15,9,12,0,2,3,14,13,9,3,5,2,9,11,12,1,10,4,12,10,13,8,2,14,8,2,5,2,3,8,13,3,5,15,14,9,15,13,9,10,11,6,5,6,10,1,15,11,11,2,14,1,12,3,4,3,3,8,1,15,2,6,11,3,10,3,1,8,0,14,10,15,15,15,8,6,12,14,5,13,14,4,9,3,9,6,3,5,3,5,11,12,9,12,7,13,5,4,13,4,12,13,12,11,3,4,12,4,5,7,2,5,2,3,4,8,13,2,7,1,15,0,1,2,9,11,3,2,2,0,13,9,5,13,10,9,5,7,13,4,13,3,6,13,10,15,3,0,10,5,8,1,15,2,8,6,12,15,10,14,10,13,0,11,1,15,15,5,6,7,1,14,3,11,12,4,3,4,8,2,6,12,8,2,0,15,10,7,8,12,10,1,0,14,7,2,14,7,2,2,3,13,4,8,14,9,11,4,8,0,5,0,6,7,11,6,9,7,15,12,2,3,7,15,2,4,15,8,4,9,2,14,10,12,14,11,4,1,14,3,2,3,6,0,1,12,13,5,2,2,7,15,2,10,14,3,9,7,13,8,2,5,15,13,15,1,5,13,2,5,0,4,8,14,2,6,14,2,13,10,10,3,8,4,4,0,0,15,13,15,14,10,13,3,6,6,6,8,13,1,5,6,13,10,15,3,5,10,6,14,1,10,4,9,2,13,4,15,11,4,7,6,8,6,9,15,7,0,3,12,3,14,5,12,14,15,7,12,14,7,14,3,12,5,11,1,14,8,13,5,11,2,9,4,15,8,8,2,10,0,1,2,0,10,7,7,9,8,12,4,15,3,12,10,8,1,6,10,3,6,2,15,7,1,5,7,0,13,5,10,6,6,7,8,2,0,5,5,2,5,10,8,12,6,5,2,15,10,9,0,6,8,15,1,6,6,14,8,2,4,12,5,12,4,4,8,5,14,5,0,13,1,1,1,14,8,11,2,13,15,4,10,6,2,7,3,10,15,2,6,14,5,7,3,0,13,14,5,2,5,10,11,1,13,11,12,4,3,3,8,1,5,6,5,0,5,11,7,5,8,13,5,8,0,2,14,10,14,7,1,5,4,9,14,15,1,13,10,15,10,2,7,4,5,10,1,5,4,6,11,5,3,7,2,4,0,10,7,2,15,5,15,3,12,1,15,7,10,0,15,13,13,2,5,2,13,4,8,9,6,2,14,9,7,10,8,13,9,1,5,6,7,7,15,8,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"13\", \"10\"], \"clip_start\": 599.0, \"clip_end\": 603.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,5,5,6,14,14,4,11,12,12,10,14,9,1,6,6,5,15,0,9,12,10,14,7,12,10,10,1,12,3,2,13,8,12,4,9,2,12,15,4,13,12,10,7,0,8,15,11,2,0,6,3,11,1,12,12,5,0,6,7,15,9,15,1,4,15,13,9,5,9,15,1,0,15,6,8,14,10,11,6,7,14,8,15,14,1,4,2,9,5,9,11,4,11,1,12,1,7,2,12,5,3,5,0,13,3,3,4,7,4,8,0,1,2,0,9,3,4,7,10,9,14,13,14,5,14,7,13,4,2,2,3,14,9,7,3,6,13,3,10,8,3,3,13,2,6,14,9,9,2,8,9,9,6,10,11,12,9,8,9,10,10,2,11,15,14,0,4,0,14,6,2,2,0,6,7,9,5,2,3,0,12,1,7,11,0,5,7,15,6,1,12,9,7,8,8,4,10,10,7,6,14,10,8,8,2,9,15,0,8,7,10,12,11,8,12,14,11,0,2,6,7,10,11,6,10,14,13,11,0,15,13,5,11,9,15,4,9,5,8,8,14,4,12,5,12,5,10,10,4,15,15,4,15,3,6,3,11,14,13,7,13,5,6,4,13,1,11,8,10,2,1,4,5,15,2,11,8,14,13,5,10,3,7,1,7,15,14,14,3,8,2,5,14,15,6,4,8,14,12,8,12,15,8,2,9,13,0,11,11,3,5,8,11,6,3,3,7,13,1,3,13,11,0,3,4,1,8,12,8,5,14,8,1,12,5,6,14,2,5,15,13,8,14,10,2,8,3,14,7,8,7,13,13,7,14,8,13,5,13,14,4,7,14,8,5,5,12,15,0,12,2,2,12,11,12,13,2,14,11,3,4,12,13,11,6,12,10,3,5,15,13,4,9,0,13,10,3,14,12,9,13,14,13,0,0,1,11,9,13,13,5,7,10,15,14,10,13,9,13,10,6,6,10,11,5,0,6,0,15,12,12,13,13,11,7,1,3,5,4,15,3,10,4,4,0,6,0,4,12,2,13,14,7,12,14,4,8,2,5,11,6,11,9,2,14,15,9,12,0,2,3,14,13,9,3,5,2,9,11,12,1,10,4,12,10,13,8,2,14,8,2,5,2,3,8,13,3,5,15,14,9,15,13,9,10,11,6,5,6,10,1,15,11,11,2,14,1,12,3,4,3,3,8,1,15,2,6,11,3,10,3,1,8,0,14,10,15,15,15,8,6,12,14,5,13,14,4,9,3,9,6,3,5,3,5,11,12,9,12,7,13,5,4,13,4,12,13,12,11,3,4,12,4,5,7,2,5,2,3,4,8,13,2,7,1,15,0,1,2,9,11,3,2,2,0,13,9,5,13,10,9,5,7,13,4,13,3,6,13,10,15,3,0,10,5,8,1,15,2,8,6,12,15,10,14,10,13,0,11,1,15,15,5,6,7,1,14,3,11,12,4,3,4,8,2,6,12,8,2,0,15,10,7,8,12,10,1,0,14,7,2,14,7,2,2,3,13,4,8,14,9,11,4,8,0,5,0,6,7,11,6,9,7,15,12,2,3,7,15,2,4,15,8,4,9,2,14,10,12,14,11,4,1,14,3,2,3,6,0,1,12,13,5,2,2,7,15,2,10,14,3,9,7,13,8,2,5,15,13,15,1,5,13,2,5,0,4,8,14,2,6,14,2,13,10,10,3,8,4,4,0,0,15,13,15,14,10,13,3,6,6,6,8,13,1,5,6,13,10,15,3,5,10,6,14,1,10,4,9,2,13,4,15,11,4,7,6,8,6,9,15,7,0,3,12,3,14,5,12,14,15,7,12,14,7,14,3,12,5,11,1,14,8,13,5,11,2,9,4,15,8,8,2,10,0,1,2,0,10,7,7,9,8,12,4,15,3,12,10,8,1,6,10,3,6,2,15,7,1,5,7,0,13,5,10,6,6,7,8,2,0,5,5,2,5,10,8,12,6,5,2,15,10,9,0,6,8,15,1,6,6,14,8,2,4,12,5,12,4,4,8,5,14,5,0,13,1,1,1,14,8,11,2,13,15,4,10,6,2,7,3,10,15,2,6,14,5,7,3,0,13,14,5,2,5,10,11,1,13,11,12,4,3,3,8,1,5,6,5,0,5,11,7,5,8,13,5,8,0,2,14,10,14,7,1,5,4,9,14,15,1,13,10,15,10,2,7,4,5,10,1,5,4,6,11,5,3,7,2,4,0,10,7,2,15,5,15,3,12,1,15,7,10,0,15,13,13,2,5,2,13,4,8,9,6,2,14,9,7,10,8,13,9,1,5,6,7,7,15,8,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"1\", \"14\", \"8\"], \"clip_start\": 900.0, \"clip_end\": 904.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q13_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,5,5,6,14,14,4,11,12,12,10,14,9,1,6,6,5,15,0,9,12,10,14,7,12,10,10,1,12,3,2,13,8,12,4,9,2,12,15,4,13,12,10,7,0,8,15,11,2,0,6,3,11,1,12,12,5,0,6,7,15,9,15,1,4,15,13,9,5,9,15,1,0,15,6,8,14,10,11,6,7,14,8,15,14,1,4,2,9,5,9,11,4,11,1,12,1,7,2,12,5,3,5,0,13,3,3,4,7,4,8,0,1,2,0,9,3,4,7,10,9,14,13,14,5,14,7,13,4,2,2,3,14,9,7,3,6,13,3,10,8,3,3,13,2,6,14,9,9,2,8,9,9,6,10,11,12,9,8,9,10,10,2,11,15,14,0,4,0,14,6,2,2,0,6,7,9,5,2,3,0,12,1,7,11,0,5,7,15,6,1,12,9,7,8,8,4,10,10,7,6,14,10,8,8,2,9,15,0,8,7,10,12,11,8,12,14,11,0,2,6,7,10,11,6,10,14,13,11,0,15,13,5,11,9,15,4,9,5,8,8,14,4,12,5,12,5,10,10,4,15,15,4,15,3,6,3,11,14,13,7,13,5,6,4,13,1,11,8,10,2,1,4,5,15,2,11,8,14,13,5,10,3,7,1,7,15,14,14,3,8,2,5,14,15,6,4,8,14,12,8,12,15,8,2,9,13,0,11,11,3,5,8,11,6,3,3,7,13,1,3,13,11,0,3,4,1,8,12,8,5,14,8,1,12,5,6,14,2,5,15,13,8,14,10,2,8,3,14,7,8,7,13,13,7,14,8,13,5,13,14,4,7,14,8,5,5,12,15,0,12,2,2,12,11,12,13,2,14,11,3,4,12,13,11,6,12,10,3,5,15,13,4,9,0,13,10,3,14,12,9,13,14,13,0,0,1,11,9,13,13,5,7,10,15,14,10,13,9,13,10,6,6,10,11,5,0,6,0,15,12,12,13,13,11,7,1,3,5,4,15,3,10,4,4,0,6,0,4,12,2,13,14,7,12,14,4,8,2,5,11,6,11,9,2,14,15,9,12,0,2,3,14,13,9,3,5,2,9,11,12,1,10,4,12,10,13,8,2,14,8,2,5,2,3,8,13,3,5,15,14,9,15,13,9,10,11,6,5,6,10,1,15,11,11,2,14,1,12,3,4,3,3,8,1,15,2,6,11,3,10,3,1,8,0,14,10,15,15,15,8,6,12,14,5,13,14,4,9,3,9,6,3,5,3,5,11,12,9,12,7,13,5,4,13,4,12,13,12,11,3,4,12,4,5,7,2,5,2,3,4,8,13,2,7,1,15,0,1,2,9,11,3,2,2,0,13,9,5,13,10,9,5,7,13,4,13,3,6,13,10,15,3,0,10,5,8,1,15,2,8,6,12,15,10,14,10,13,0,11,1,15,15,5,6,7,1,14,3,11,12,4,3,4,8,2,6,12,8,2,0,15,10,7,8,12,10,1,0,14,7,2,14,7,2,2,3,13,4,8,14,9,11,4,8,0,5,0,6,7,11,6,9,7,15,12,2,3,7,15,2,4,15,8,4,9,2,14,10,12,14,11,4,1,14,3,2,3,6,0,1,12,13,5,2,2,7,15,2,10,14,3,9,7,13,8,2,5,15,13,15,1,5,13,2,5,0,4,8,14,2,6,14,2,13,10,10,3,8,4,4,0,0,15,13,15,14,10,13,3,6,6,6,8,13,1,5,6,13,10,15,3,5,10,6,14,1,10,4,9,2,13,4,15,11,4,7,6,8,6,9,15,7,0,3,12,3,14,5,12,14,15,7,12,14,7,14,3,12,5,11,1,14,8,13,5,11,2,9,4,15,8,8,2,10,0,1,2,0,10,7,7,9,8,12,4,15,3,12,10,8,1,6,10,3,6,2,15,7,1,5,7,0,13,5,10,6,6,7,8,2,0,5,5,2,5,10,8,12,6,5,2,15,10,9,0,6,8,15,1,6,6,14,8,2,4,12,5,12,4,4,8,5,14,5,0,13,1,1,1,14,8,11,2,13,15,4,10,6,2,7,3,10,15,2,6,14,5,7,3,0,13,14,5,2,5,10,11,1,13,11,12,4,3,3,8,1,5,6,5,0,5,11,7,5,8,13,5,8,0,2,14,10,14,7,1,5,4,9,14,15,1,13,10,15,10,2,7,4,5,10,1,5,4,6,11,5,3,7,2,4,0,10,7,2,15,5,15,3,12,1,15,7,10,0,15,13,13,2,5,2,13,4,8,9,6,2,14,9,7,10,8,13,9,1,5,6,7,7,15,8,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"4\", \"11\", \"1\"], \"clip_start\": 92.0, \"clip_end\": 97.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,5,5,6,14,14,4,11,12,12,10,14,9,1,6,6,5,15,0,9,12,10,14,7,12,10,10,1,12,3,2,13,8,12,4,9,2,12,15,4,13,12,10,7,0,8,15,11,2,0,6,3,11,1,12,12,5,0,6,7,15,9,15,1,4,15,13,9,5,9,15,1,0,15,6,8,14,10,11,6,7,14,8,15,14,1,4,2,9,5,9,11,4,11,1,12,1,7,2,12,5,3,5,0,13,3,3,4,7,4,8,0,1,2,0,9,3,4,7,10,9,14,13,14,5,14,7,13,4,2,2,3,14,9,7,3,6,13,3,10,8,3,3,13,2,6,14,9,9,2,8,9,9,6,10,11,12,9,8,9,10,10,2,11,15,14,0,4,0,14,6,2,2,0,6,7,9,5,2,3,0,12,1,7,11,0,5,7,15,6,1,12,9,7,8,8,4,10,10,7,6,14,10,8,8,2,9,15,0,8,7,10,12,11,8,12,14,11,0,2,6,7,10,11,6,10,14,13,11,0,15,13,5,11,9,15,4,9,5,8,8,14,4,12,5,12,5,10,10,4,15,15,4,15,3,6,3,11,14,13,7,13,5,6,4,13,1,11,8,10,2,1,4,5,15,2,11,8,14,13,5,10,3,7,1,7,15,14,14,3,8,2,5,14,15,6,4,8,14,12,8,12,15,8,2,9,13,0,11,11,3,5,8,11,6,3,3,7,13,1,3,13,11,0,3,4,1,8,12,8,5,14,8,1,12,5,6,14,2,5,15,13,8,14,10,2,8,3,14,7,8,7,13,13,7,14,8,13,5,13,14,4,7,14,8,5,5,12,15,0,12,2,2,12,11,12,13,2,14,11,3,4,12,13,11,6,12,10,3,5,15,13,4,9,0,13,10,3,14,12,9,13,14,13,0,0,1,11,9,13,13,5,7,10,15,14,10,13,9,13,10,6,6,10,11,5,0,6,0,15,12,12,13,13,11,7,1,3,5,4,15,3,10,4,4,0,6,0,4,12,2,13,14,7,12,14,4,8,2,5,11,6,11,9,2,14,15,9,12,0,2,3,14,13,9,3,5,2,9,11,12,1,10,4,12,10,13,8,2,14,8,2,5,2,3,8,13,3,5,15,14,9,15,13,9,10,11,6,5,6,10,1,15,11,11,2,14,1,12,3,4,3,3,8,1,15,2,6,11,3,10,3,1,8,0,14,10,15,15,15,8,6,12,14,5,13,14,4,9,3,9,6,3,5,3,5,11,12,9,12,7,13,5,4,13,4,12,13,12,11,3,4,12,4,5,7,2,5,2,3,4,8,13,2,7,1,15,0,1,2,9,11,3,2,2,0,13,9,5,13,10,9,5,7,13,4,13,3,6,13,10,15,3,0,10,5,8,1,15,2,8,6,12,15,10,14,10,13,0,11,1,15,15,5,6,7,1,14,3,11,12,4,3,4,8,2,6,12,8,2,0,15,10,7,8,12,10,1,0,14,7,2,14,7,2,2,3,13,4,8,14,9,11,4,8,0,5,0,6,7,11,6,9,7,15,12,2,3,7,15,2,4,15,8,4,9,2,14,10,12,14,11,4,1,14,3,2,3,6,0,1,12,13,5,2,2,7,15,2,10,14,3,9,7,13,8,2,5,15,13,15,1,5,13,2,5,0,4,8,14,2,6,14,2,13,10,10,3,8,4,4,0,0,15,13,15,14,10,13,3,6,6,6,8,13,1,5,6,13,10,15,3,5,10,6,14,1,10,4,9,2,13,4,15,11,4,7,6,8,6,9,15,7,0,3,12,3,14,5,12,14,15,7,12,14,7,14,3,12,5,11,1,14,8,13,5,11,2,9,4,15,8,8,2,10,0,1,2,0,10,7,7,9,8,12,4,15,3,12,10,8,1,6,10,3,6,2,15,7,1,5,7,0,13,5,10,6,6,7,8,2,0,5,5,2,5,10,8,12,6,5,2,15,10,9,0,6,8,15,1,6,6,14,8,2,4,12,5,12,4,4,8,5,14,5,0,13,1,1,1,14,8,11,2,13,15,4,10,6,2,7,3,10,15,2,6,14,5,7,3,0,13,14,5,2,5,10,11,1,13,11,12,4,3,3,8,1,5,6,5,0,5,11,7,5,8,13,5,8,0,2,14,10,14,7,1,5,4,9,14,15,1,13,10,15,10,2,7,4,5,10,1,5,4,6,11,5,3,7,2,4,0,10,7,2,15,5,15,3,12,1,15,7,10,0,15,13,13,2,5,2,13,4,8,9,6,2,14,9,7,10,8,13,9,1,5,6,7,7,15,8,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"14\", \"2\", \"13\", \"10\"], \"clip_start\": 742.0, \"clip_end\": 748.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q15_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,13,3,5,5,6,14,14,4,11,12,12,10,14,9,1,6,6,5,15,0,9,12,10,14,7,12,10,10,1,12,3,2,13,8,12,4,9,2,12,15,4,13,12,10,7,0,8,15,11,2,0,6,3,11,1,12,12,5,0,6,7,15,9,15,1,4,15,13,9,5,9,15,1,0,15,6,8,14,10,11,6,7,14,8,15,14,1,4,2,9,5,9,11,4,11,1,12,1,7,2,12,5,3,5,0,13,3,3,4,7,4,8,0,1,2,0,9,3,4,7,10,9,14,13,14,5,14,7,13,4,2,2,3,14,9,7,3,6,13,3,10,8,3,3,13,2,6,14,9,9,2,8,9,9,6,10,11,12,9,8,9,10,10,2,11,15,14,0,4,0,14,6,2,2,0,6,7,9,5,2,3,0,12,1,7,11,0,5,7,15,6,1,12,9,7,8,8,4,10,10,7,6,14,10,8,8,2,9,15,0,8,7,10,12,11,8,12,14,11,0,2,6,7,10,11,6,10,14,13,11,0,15,13,5,11,9,15,4,9,5,8,8,14,4,12,5,12,5,10,10,4,15,15,4,15,3,6,3,11,14,13,7,13,5,6,4,13,1,11,8,10,2,1,4,5,15,2,11,8,14,13,5,10,3,7,1,7,15,14,14,3,8,2,5,14,15,6,4,8,14,12,8,12,15,8,2,9,13,0,11,11,3,5,8,11,6,3,3,7,13,1,3,13,11,0,3,4,1,8,12,8,5,14,8,1,12,5,6,14,2,5,15,13,8,14,10,2,8,3,14,7,8,7,13,13,7,14,8,13,5,13,14,4,7,14,8,5,5,12,15,0,12,2,2,12,11,12,13,2,14,11,3,4,12,13,11,6,12,10,3,5,15,13,4,9,0,13,10,3,14,12,9,13,14,13,0,0,1,11,9,13,13,5,7,10,15,14,10,13,9,13,10,6,6,10,11,5,0,6,0,15,12,12,13,13,11,7,1,3,5,4,15,3,10,4,4,0,6,0,4,12,2,13,14,7,12,14,4,8,2,5,11,6,11,9,2,14,15,9,12,0,2,3,14,13,9,3,5,2,9,11,12,1,10,4,12,10,13,8,2,14,8,2,5,2,3,8,13,3,5,15,14,9,15,13,9,10,11,6,5,6,10,1,15,11,11,2,14,1,12,3,4,3,3,8,1,15,2,6,11,3,10,3,1,8,0,14,10,15,15,15,8,6,12,14,5,13,14,4,9,3,9,6,3,5,3,5,11,12,9,12,7,13,5,4,13,4,12,13,12,11,3,4,12,4,5,7,2,5,2,3,4,8,13,2,7,1,15,0,1,2,9,11,3,2,2,0,13,9,5,13,10,9,5,7,13,4,13,3,6,13,10,15,3,0,10,5,8,1,15,2,8,6,12,15,10,14,10,13,0,11,1,15,15,5,6,7,1,14,3,11,12,4,3,4,8,2,6,12,8,2,0,15,10,7,8,12,10,1,0,14,7,2,14,7,2,2,3,13,4,8,14,9,11,4,8,0,5,0,6,7,11,6,9,7,15,12,2,3,7,15,2,4,15,8,4,9,2,14,10,12,14,11,4,1,14,3,2,3,6,0,1,12,13,5,2,2,7,15,2,10,14,3,9,7,13,8,2,5,15,13,15,1,5,13,2,5,0,4,8,14,2,6,14,2,13,10,10,3,8,4,4,0,0,15,13,15,14,10,13,3,6,6,6,8,13,1,5,6,13,10,15,3,5,10,6,14,1,10,4,9,2,13,4,15,11,4,7,6,8,6,9,15,7,0,3,12,3,14,5,12,14,15,7,12,14,7,14,3,12,5,11,1,14,8,13,5,11,2,9,4,15,8,8,2,10,0,1,2,0,10,7,7,9,8,12,4,15,3,12,10,8,1,6,10,3,6,2,15,7,1,5,7,0,13,5,10,6,6,7,8,2,0,5,5,2,5,10,8,12,6,5,2,15,10,9,0,6,8,15,1,6,6,14,8,2,4,12,5,12,4,4,8,5,14,5,0,13,1,1,1,14,8,11,2,13,15,4,10,6,2,7,3,10,15,2,6,14,5,7,3,0,13,14,5,2,5,10,11,1,13,11,12,4,3,3,8,1,5,6,5,0,5,11,7,5,8,13,5,8,0,2,14,10,14,7,1,5,4,9,14,15,1,13,10,15,10,2,7,4,5,10,1,5,4,6,11,5,3,7,2,4,0,10,7,2,15,5,15,3,12,1,15,7,10,0,15,13,13,2,5,2,13,4,8,9,6,2,14,9,7,10,8,13,9,1,5,6,7,7,15,8,11", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"9\", \"9\", \"10\", \"9\"], \"clip_start\": 55.0, \"clip_end\": 61.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,4,13,2,7,15,6,0,14,10,0,0,10,1,7,12,12,0,2,8,13,5,4,11,14,8,5,0,5,13,14,7,15,4,13,4,10,15,2,11,4,7,2,1,12,14,4,11,5,0,0,6,6,14,1,14,9,9,10,9,5,15,10,3,9,11,14,13,3,7,3,2,2,8,2,14,3,11,10,6,14,13,9,12,10,3,11,10,15,0,4,15,0,2,13,10,9,10,1,2,12,1,4,9,1,9,15,9,6,12,11,2,11,11,4,8,0,5,13,6,11,9,10,5,2,13,7,13,3,12,15,13,13,8,4,14,4,6,13,13,15,15,8,8,5,11,11,5,4,15,3,8,4,10,8,1,2,15,12,9,10,15,10,9,15,9,8,5,12,11,4,4,3,0,0,5,1,11,3,7,2,3,10,3,12,3,9,9,11,11,13,9,4,11,15,3,1,15,4,0,7,12,15,7,14,11,13,0,12,1,8,3,2,8,4,14,2,14,2,8,10,8,9,7,6,7,10,0,8,11,12,12,0,8,13,15,5,8,0,13,5,5,6,3,0,9,3,12,4,3,6,2,10,3,7,11,3,10,9,8,4,12,4,2,8,9,12,8,9,13,10,14,15,13,0,6,0,0,7,12,12,5,3,3,11,5,10,13,10,11,14,4,4,14,12,4,4,10,5,1,2,8,1,11,3,0,5,7,12,0,7,1,5,7,1,9,13,1,2,4,5,5,7,13,15,10,12,14,11,15,12,0,9,0,2,2,1,13,9,11,13,13,8,1,0,5,6,9,11,7,9,0,4,3,9,12,11,0,2,7,1,3,13,1,8,4,7,10,8,2,11,6,9,0,11,1,14,7,5,2,15,8,12,3,4,2,7,1,1,10,11,14,0,1,11,6,6,13,8,11,15,12,10,1,7,4,8,13,11,4,13,10,6,7,15,2,6,9,5,2,13,5,0,3,12,11,7,6,3,8,6,11,3,0,9,2,9,15,10,0,2,1,15,5,3,9,8,4,4,2,8,13,13,12,3,3,3,1,2,6,6,6,8,12,11,6,7,14,9,2,5,8,4,4,12,1,14,9,0,9,5,3,4,3,8,6,10,14,1,10,6,14,1,0,8,15,0,1,2,3,9,7,10,4,5,3,7,12,9,8,8,13,14,12,12,13,2,14,11,14,13,1,6,2,14,14,4,5,6,5,9,7,1,4,13,10,5,4,10,5,2,14,3,13,8,11,12,2,2,2,6,14,3,1,14,2,15,3,1,15,3,9,10,15,11,15,9,9,1,7,15,9,15,8,2,10,12,13,9,10,4,13,12,9,6,5,3,11,4,3,6,7,13,12,5,13,9,1,7,4,14,7,11,4,3,5,14,3,4,3,4,2,5,4,8,15,3,15,15,15,9,11,4,10,15,10,12,5,14,5,7,4,3,15,13,4,9,1,5,14,6,6,13,1,12,12,11,1,4,4,2,2,13,6,8,6,15,13,0,11,14,10,13,6,0,3,13,3,7,5,4,9,1,4,10,12,8,0,6,12,6,5,10,5,0,12,8,11,12,8,5,15,15,11,12,4,2,8,3,12,15,7,4,11,13,2,7,8,1,15,5,14,10,14,4,12,14,9,2,5,8,8,14,8,2,15,12,13,5,6,9,3,0,10,12,10,14,8,5,3,0,7,6,7,9,12,9,11,11,10,0,3,7,0,9,13,8,9,11,14,3,2,7,10,0,15,15,10,14,1,2,5,6,4,15,13,4,6,15,12,1,8,11,9,5,9,7,0,14,9,10,5,13,2,8,7,4,4,10,5,8,1,8,1,0,5,14,7,15,7,2,9,6,13,8,0,8,6,2,12,5,11,15,12,5,11,3,3,8,4,2,11,10,6,15,15,7,0,9,12,3,6,10,7,10,0,4,8,6,10,8,9,3,1,4,10,13,11,4,1,14,6,7,2,2,1,4,11,1,11,5,0,4,7,11,10,3,13,7,8,3,3,15,4,4,14,7,14,9,5,10,8,5,6,2,14,15,11,11,6,11,10,7,3,10,8,8,0,4,9,0,1,15,7,1,15,8,6,11,11,6,6,11,11,3,2,4,7,4,10,15,15,12,5,13,14,11,15,1,8,11,9,4,4,6,7,3,10,5,7,8,13,0,8,7,1,10,3,0,10,15,6,4,2,14,8,12,7,14,13,11,10,14,2,3,4,4,9,14,6,3,3,2,11,15,5,7,8,2,13,9,2,6,3,6,2,6,4,2,13,10,13,2,2,15,4,11,14,5,2,11,6,9,10,11,9,7,10,4,1,0,3,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 626.0, \"clip_end\": 632.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,4,13,2,7,15,6,0,14,10,0,0,10,1,7,12,12,0,2,8,13,5,4,11,14,8,5,0,5,13,14,7,15,4,13,4,10,15,2,11,4,7,2,1,12,14,4,11,5,0,0,6,6,14,1,14,9,9,10,9,5,15,10,3,9,11,14,13,3,7,3,2,2,8,2,14,3,11,10,6,14,13,9,12,10,3,11,10,15,0,4,15,0,2,13,10,9,10,1,2,12,1,4,9,1,9,15,9,6,12,11,2,11,11,4,8,0,5,13,6,11,9,10,5,2,13,7,13,3,12,15,13,13,8,4,14,4,6,13,13,15,15,8,8,5,11,11,5,4,15,3,8,4,10,8,1,2,15,12,9,10,15,10,9,15,9,8,5,12,11,4,4,3,0,0,5,1,11,3,7,2,3,10,3,12,3,9,9,11,11,13,9,4,11,15,3,1,15,4,0,7,12,15,7,14,11,13,0,12,1,8,3,2,8,4,14,2,14,2,8,10,8,9,7,6,7,10,0,8,11,12,12,0,8,13,15,5,8,0,13,5,5,6,3,0,9,3,12,4,3,6,2,10,3,7,11,3,10,9,8,4,12,4,2,8,9,12,8,9,13,10,14,15,13,0,6,0,0,7,12,12,5,3,3,11,5,10,13,10,11,14,4,4,14,12,4,4,10,5,1,2,8,1,11,3,0,5,7,12,0,7,1,5,7,1,9,13,1,2,4,5,5,7,13,15,10,12,14,11,15,12,0,9,0,2,2,1,13,9,11,13,13,8,1,0,5,6,9,11,7,9,0,4,3,9,12,11,0,2,7,1,3,13,1,8,4,7,10,8,2,11,6,9,0,11,1,14,7,5,2,15,8,12,3,4,2,7,1,1,10,11,14,0,1,11,6,6,13,8,11,15,12,10,1,7,4,8,13,11,4,13,10,6,7,15,2,6,9,5,2,13,5,0,3,12,11,7,6,3,8,6,11,3,0,9,2,9,15,10,0,2,1,15,5,3,9,8,4,4,2,8,13,13,12,3,3,3,1,2,6,6,6,8,12,11,6,7,14,9,2,5,8,4,4,12,1,14,9,0,9,5,3,4,3,8,6,10,14,1,10,6,14,1,0,8,15,0,1,2,3,9,7,10,4,5,3,7,12,9,8,8,13,14,12,12,13,2,14,11,14,13,1,6,2,14,14,4,5,6,5,9,7,1,4,13,10,5,4,10,5,2,14,3,13,8,11,12,2,2,2,6,14,3,1,14,2,15,3,1,15,3,9,10,15,11,15,9,9,1,7,15,9,15,8,2,10,12,13,9,10,4,13,12,9,6,5,3,11,4,3,6,7,13,12,5,13,9,1,7,4,14,7,11,4,3,5,14,3,4,3,4,2,5,4,8,15,3,15,15,15,9,11,4,10,15,10,12,5,14,5,7,4,3,15,13,4,9,1,5,14,6,6,13,1,12,12,11,1,4,4,2,2,13,6,8,6,15,13,0,11,14,10,13,6,0,3,13,3,7,5,4,9,1,4,10,12,8,0,6,12,6,5,10,5,0,12,8,11,12,8,5,15,15,11,12,4,2,8,3,12,15,7,4,11,13,2,7,8,1,15,5,14,10,14,4,12,14,9,2,5,8,8,14,8,2,15,12,13,5,6,9,3,0,10,12,10,14,8,5,3,0,7,6,7,9,12,9,11,11,10,0,3,7,0,9,13,8,9,11,14,3,2,7,10,0,15,15,10,14,1,2,5,6,4,15,13,4,6,15,12,1,8,11,9,5,9,7,0,14,9,10,5,13,2,8,7,4,4,10,5,8,1,8,1,0,5,14,7,15,7,2,9,6,13,8,0,8,6,2,12,5,11,15,12,5,11,3,3,8,4,2,11,10,6,15,15,7,0,9,12,3,6,10,7,10,0,4,8,6,10,8,9,3,1,4,10,13,11,4,1,14,6,7,2,2,1,4,11,1,11,5,0,4,7,11,10,3,13,7,8,3,3,15,4,4,14,7,14,9,5,10,8,5,6,2,14,15,11,11,6,11,10,7,3,10,8,8,0,4,9,0,1,15,7,1,15,8,6,11,11,6,6,11,11,3,2,4,7,4,10,15,15,12,5,13,14,11,15,1,8,11,9,4,4,6,7,3,10,5,7,8,13,0,8,7,1,10,3,0,10,15,6,4,2,14,8,12,7,14,13,11,10,14,2,3,4,4,9,14,6,3,3,2,11,15,5,7,8,2,13,9,2,6,3,6,2,6,4,2,13,10,13,2,2,15,4,11,14,5,2,11,6,9,10,11,9,7,10,4,1,0,3,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"0\", \"6\", \"6\", \"14\"], \"clip_start\": 49.0, \"clip_end\": 55.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,4,13,2,7,15,6,0,14,10,0,0,10,1,7,12,12,0,2,8,13,5,4,11,14,8,5,0,5,13,14,7,15,4,13,4,10,15,2,11,4,7,2,1,12,14,4,11,5,0,0,6,6,14,1,14,9,9,10,9,5,15,10,3,9,11,14,13,3,7,3,2,2,8,2,14,3,11,10,6,14,13,9,12,10,3,11,10,15,0,4,15,0,2,13,10,9,10,1,2,12,1,4,9,1,9,15,9,6,12,11,2,11,11,4,8,0,5,13,6,11,9,10,5,2,13,7,13,3,12,15,13,13,8,4,14,4,6,13,13,15,15,8,8,5,11,11,5,4,15,3,8,4,10,8,1,2,15,12,9,10,15,10,9,15,9,8,5,12,11,4,4,3,0,0,5,1,11,3,7,2,3,10,3,12,3,9,9,11,11,13,9,4,11,15,3,1,15,4,0,7,12,15,7,14,11,13,0,12,1,8,3,2,8,4,14,2,14,2,8,10,8,9,7,6,7,10,0,8,11,12,12,0,8,13,15,5,8,0,13,5,5,6,3,0,9,3,12,4,3,6,2,10,3,7,11,3,10,9,8,4,12,4,2,8,9,12,8,9,13,10,14,15,13,0,6,0,0,7,12,12,5,3,3,11,5,10,13,10,11,14,4,4,14,12,4,4,10,5,1,2,8,1,11,3,0,5,7,12,0,7,1,5,7,1,9,13,1,2,4,5,5,7,13,15,10,12,14,11,15,12,0,9,0,2,2,1,13,9,11,13,13,8,1,0,5,6,9,11,7,9,0,4,3,9,12,11,0,2,7,1,3,13,1,8,4,7,10,8,2,11,6,9,0,11,1,14,7,5,2,15,8,12,3,4,2,7,1,1,10,11,14,0,1,11,6,6,13,8,11,15,12,10,1,7,4,8,13,11,4,13,10,6,7,15,2,6,9,5,2,13,5,0,3,12,11,7,6,3,8,6,11,3,0,9,2,9,15,10,0,2,1,15,5,3,9,8,4,4,2,8,13,13,12,3,3,3,1,2,6,6,6,8,12,11,6,7,14,9,2,5,8,4,4,12,1,14,9,0,9,5,3,4,3,8,6,10,14,1,10,6,14,1,0,8,15,0,1,2,3,9,7,10,4,5,3,7,12,9,8,8,13,14,12,12,13,2,14,11,14,13,1,6,2,14,14,4,5,6,5,9,7,1,4,13,10,5,4,10,5,2,14,3,13,8,11,12,2,2,2,6,14,3,1,14,2,15,3,1,15,3,9,10,15,11,15,9,9,1,7,15,9,15,8,2,10,12,13,9,10,4,13,12,9,6,5,3,11,4,3,6,7,13,12,5,13,9,1,7,4,14,7,11,4,3,5,14,3,4,3,4,2,5,4,8,15,3,15,15,15,9,11,4,10,15,10,12,5,14,5,7,4,3,15,13,4,9,1,5,14,6,6,13,1,12,12,11,1,4,4,2,2,13,6,8,6,15,13,0,11,14,10,13,6,0,3,13,3,7,5,4,9,1,4,10,12,8,0,6,12,6,5,10,5,0,12,8,11,12,8,5,15,15,11,12,4,2,8,3,12,15,7,4,11,13,2,7,8,1,15,5,14,10,14,4,12,14,9,2,5,8,8,14,8,2,15,12,13,5,6,9,3,0,10,12,10,14,8,5,3,0,7,6,7,9,12,9,11,11,10,0,3,7,0,9,13,8,9,11,14,3,2,7,10,0,15,15,10,14,1,2,5,6,4,15,13,4,6,15,12,1,8,11,9,5,9,7,0,14,9,10,5,13,2,8,7,4,4,10,5,8,1,8,1,0,5,14,7,15,7,2,9,6,13,8,0,8,6,2,12,5,11,15,12,5,11,3,3,8,4,2,11,10,6,15,15,7,0,9,12,3,6,10,7,10,0,4,8,6,10,8,9,3,1,4,10,13,11,4,1,14,6,7,2,2,1,4,11,1,11,5,0,4,7,11,10,3,13,7,8,3,3,15,4,4,14,7,14,9,5,10,8,5,6,2,14,15,11,11,6,11,10,7,3,10,8,8,0,4,9,0,1,15,7,1,15,8,6,11,11,6,6,11,11,3,2,4,7,4,10,15,15,12,5,13,14,11,15,1,8,11,9,4,4,6,7,3,10,5,7,8,13,0,8,7,1,10,3,0,10,15,6,4,2,14,8,12,7,14,13,11,10,14,2,3,4,4,9,14,6,3,3,2,11,15,5,7,8,2,13,9,2,6,3,6,2,6,4,2,13,10,13,2,2,15,4,11,14,5,2,11,6,9,10,11,9,7,10,4,1,0,3,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"9\", \"1\", \"7\", \"4\", \"14\"], \"clip_start\": 596.0, \"clip_end\": 602.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,4,13,2,7,15,6,0,14,10,0,0,10,1,7,12,12,0,2,8,13,5,4,11,14,8,5,0,5,13,14,7,15,4,13,4,10,15,2,11,4,7,2,1,12,14,4,11,5,0,0,6,6,14,1,14,9,9,10,9,5,15,10,3,9,11,14,13,3,7,3,2,2,8,2,14,3,11,10,6,14,13,9,12,10,3,11,10,15,0,4,15,0,2,13,10,9,10,1,2,12,1,4,9,1,9,15,9,6,12,11,2,11,11,4,8,0,5,13,6,11,9,10,5,2,13,7,13,3,12,15,13,13,8,4,14,4,6,13,13,15,15,8,8,5,11,11,5,4,15,3,8,4,10,8,1,2,15,12,9,10,15,10,9,15,9,8,5,12,11,4,4,3,0,0,5,1,11,3,7,2,3,10,3,12,3,9,9,11,11,13,9,4,11,15,3,1,15,4,0,7,12,15,7,14,11,13,0,12,1,8,3,2,8,4,14,2,14,2,8,10,8,9,7,6,7,10,0,8,11,12,12,0,8,13,15,5,8,0,13,5,5,6,3,0,9,3,12,4,3,6,2,10,3,7,11,3,10,9,8,4,12,4,2,8,9,12,8,9,13,10,14,15,13,0,6,0,0,7,12,12,5,3,3,11,5,10,13,10,11,14,4,4,14,12,4,4,10,5,1,2,8,1,11,3,0,5,7,12,0,7,1,5,7,1,9,13,1,2,4,5,5,7,13,15,10,12,14,11,15,12,0,9,0,2,2,1,13,9,11,13,13,8,1,0,5,6,9,11,7,9,0,4,3,9,12,11,0,2,7,1,3,13,1,8,4,7,10,8,2,11,6,9,0,11,1,14,7,5,2,15,8,12,3,4,2,7,1,1,10,11,14,0,1,11,6,6,13,8,11,15,12,10,1,7,4,8,13,11,4,13,10,6,7,15,2,6,9,5,2,13,5,0,3,12,11,7,6,3,8,6,11,3,0,9,2,9,15,10,0,2,1,15,5,3,9,8,4,4,2,8,13,13,12,3,3,3,1,2,6,6,6,8,12,11,6,7,14,9,2,5,8,4,4,12,1,14,9,0,9,5,3,4,3,8,6,10,14,1,10,6,14,1,0,8,15,0,1,2,3,9,7,10,4,5,3,7,12,9,8,8,13,14,12,12,13,2,14,11,14,13,1,6,2,14,14,4,5,6,5,9,7,1,4,13,10,5,4,10,5,2,14,3,13,8,11,12,2,2,2,6,14,3,1,14,2,15,3,1,15,3,9,10,15,11,15,9,9,1,7,15,9,15,8,2,10,12,13,9,10,4,13,12,9,6,5,3,11,4,3,6,7,13,12,5,13,9,1,7,4,14,7,11,4,3,5,14,3,4,3,4,2,5,4,8,15,3,15,15,15,9,11,4,10,15,10,12,5,14,5,7,4,3,15,13,4,9,1,5,14,6,6,13,1,12,12,11,1,4,4,2,2,13,6,8,6,15,13,0,11,14,10,13,6,0,3,13,3,7,5,4,9,1,4,10,12,8,0,6,12,6,5,10,5,0,12,8,11,12,8,5,15,15,11,12,4,2,8,3,12,15,7,4,11,13,2,7,8,1,15,5,14,10,14,4,12,14,9,2,5,8,8,14,8,2,15,12,13,5,6,9,3,0,10,12,10,14,8,5,3,0,7,6,7,9,12,9,11,11,10,0,3,7,0,9,13,8,9,11,14,3,2,7,10,0,15,15,10,14,1,2,5,6,4,15,13,4,6,15,12,1,8,11,9,5,9,7,0,14,9,10,5,13,2,8,7,4,4,10,5,8,1,8,1,0,5,14,7,15,7,2,9,6,13,8,0,8,6,2,12,5,11,15,12,5,11,3,3,8,4,2,11,10,6,15,15,7,0,9,12,3,6,10,7,10,0,4,8,6,10,8,9,3,1,4,10,13,11,4,1,14,6,7,2,2,1,4,11,1,11,5,0,4,7,11,10,3,13,7,8,3,3,15,4,4,14,7,14,9,5,10,8,5,6,2,14,15,11,11,6,11,10,7,3,10,8,8,0,4,9,0,1,15,7,1,15,8,6,11,11,6,6,11,11,3,2,4,7,4,10,15,15,12,5,13,14,11,15,1,8,11,9,4,4,6,7,3,10,5,7,8,13,0,8,7,1,10,3,0,10,15,6,4,2,14,8,12,7,14,13,11,10,14,2,3,4,4,9,14,6,3,3,2,11,15,5,7,8,2,13,9,2,6,3,6,2,6,4,2,13,10,13,2,2,15,4,11,14,5,2,11,6,9,10,11,9,7,10,4,1,0,3,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"13\", \"6\", \"0\", \"3\", \"13\"], \"clip_start\": 662.0, \"clip_end\": 668.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,4,13,2,7,15,6,0,14,10,0,0,10,1,7,12,12,0,2,8,13,5,4,11,14,8,5,0,5,13,14,7,15,4,13,4,10,15,2,11,4,7,2,1,12,14,4,11,5,0,0,6,6,14,1,14,9,9,10,9,5,15,10,3,9,11,14,13,3,7,3,2,2,8,2,14,3,11,10,6,14,13,9,12,10,3,11,10,15,0,4,15,0,2,13,10,9,10,1,2,12,1,4,9,1,9,15,9,6,12,11,2,11,11,4,8,0,5,13,6,11,9,10,5,2,13,7,13,3,12,15,13,13,8,4,14,4,6,13,13,15,15,8,8,5,11,11,5,4,15,3,8,4,10,8,1,2,15,12,9,10,15,10,9,15,9,8,5,12,11,4,4,3,0,0,5,1,11,3,7,2,3,10,3,12,3,9,9,11,11,13,9,4,11,15,3,1,15,4,0,7,12,15,7,14,11,13,0,12,1,8,3,2,8,4,14,2,14,2,8,10,8,9,7,6,7,10,0,8,11,12,12,0,8,13,15,5,8,0,13,5,5,6,3,0,9,3,12,4,3,6,2,10,3,7,11,3,10,9,8,4,12,4,2,8,9,12,8,9,13,10,14,15,13,0,6,0,0,7,12,12,5,3,3,11,5,10,13,10,11,14,4,4,14,12,4,4,10,5,1,2,8,1,11,3,0,5,7,12,0,7,1,5,7,1,9,13,1,2,4,5,5,7,13,15,10,12,14,11,15,12,0,9,0,2,2,1,13,9,11,13,13,8,1,0,5,6,9,11,7,9,0,4,3,9,12,11,0,2,7,1,3,13,1,8,4,7,10,8,2,11,6,9,0,11,1,14,7,5,2,15,8,12,3,4,2,7,1,1,10,11,14,0,1,11,6,6,13,8,11,15,12,10,1,7,4,8,13,11,4,13,10,6,7,15,2,6,9,5,2,13,5,0,3,12,11,7,6,3,8,6,11,3,0,9,2,9,15,10,0,2,1,15,5,3,9,8,4,4,2,8,13,13,12,3,3,3,1,2,6,6,6,8,12,11,6,7,14,9,2,5,8,4,4,12,1,14,9,0,9,5,3,4,3,8,6,10,14,1,10,6,14,1,0,8,15,0,1,2,3,9,7,10,4,5,3,7,12,9,8,8,13,14,12,12,13,2,14,11,14,13,1,6,2,14,14,4,5,6,5,9,7,1,4,13,10,5,4,10,5,2,14,3,13,8,11,12,2,2,2,6,14,3,1,14,2,15,3,1,15,3,9,10,15,11,15,9,9,1,7,15,9,15,8,2,10,12,13,9,10,4,13,12,9,6,5,3,11,4,3,6,7,13,12,5,13,9,1,7,4,14,7,11,4,3,5,14,3,4,3,4,2,5,4,8,15,3,15,15,15,9,11,4,10,15,10,12,5,14,5,7,4,3,15,13,4,9,1,5,14,6,6,13,1,12,12,11,1,4,4,2,2,13,6,8,6,15,13,0,11,14,10,13,6,0,3,13,3,7,5,4,9,1,4,10,12,8,0,6,12,6,5,10,5,0,12,8,11,12,8,5,15,15,11,12,4,2,8,3,12,15,7,4,11,13,2,7,8,1,15,5,14,10,14,4,12,14,9,2,5,8,8,14,8,2,15,12,13,5,6,9,3,0,10,12,10,14,8,5,3,0,7,6,7,9,12,9,11,11,10,0,3,7,0,9,13,8,9,11,14,3,2,7,10,0,15,15,10,14,1,2,5,6,4,15,13,4,6,15,12,1,8,11,9,5,9,7,0,14,9,10,5,13,2,8,7,4,4,10,5,8,1,8,1,0,5,14,7,15,7,2,9,6,13,8,0,8,6,2,12,5,11,15,12,5,11,3,3,8,4,2,11,10,6,15,15,7,0,9,12,3,6,10,7,10,0,4,8,6,10,8,9,3,1,4,10,13,11,4,1,14,6,7,2,2,1,4,11,1,11,5,0,4,7,11,10,3,13,7,8,3,3,15,4,4,14,7,14,9,5,10,8,5,6,2,14,15,11,11,6,11,10,7,3,10,8,8,0,4,9,0,1,15,7,1,15,8,6,11,11,6,6,11,11,3,2,4,7,4,10,15,15,12,5,13,14,11,15,1,8,11,9,4,4,6,7,3,10,5,7,8,13,0,8,7,1,10,3,0,10,15,6,4,2,14,8,12,7,14,13,11,10,14,2,3,4,4,9,14,6,3,3,2,11,15,5,7,8,2,13,9,2,6,3,6,2,6,4,2,13,10,13,2,2,15,4,11,14,5,2,11,6,9,10,11,9,7,10,4,1,0,3,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"12\", \"12\", \"13\", \"2\"], \"clip_start\": 512.0, \"clip_end\": 518.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,4,13,2,7,15,6,0,14,10,0,0,10,1,7,12,12,0,2,8,13,5,4,11,14,8,5,0,5,13,14,7,15,4,13,4,10,15,2,11,4,7,2,1,12,14,4,11,5,0,0,6,6,14,1,14,9,9,10,9,5,15,10,3,9,11,14,13,3,7,3,2,2,8,2,14,3,11,10,6,14,13,9,12,10,3,11,10,15,0,4,15,0,2,13,10,9,10,1,2,12,1,4,9,1,9,15,9,6,12,11,2,11,11,4,8,0,5,13,6,11,9,10,5,2,13,7,13,3,12,15,13,13,8,4,14,4,6,13,13,15,15,8,8,5,11,11,5,4,15,3,8,4,10,8,1,2,15,12,9,10,15,10,9,15,9,8,5,12,11,4,4,3,0,0,5,1,11,3,7,2,3,10,3,12,3,9,9,11,11,13,9,4,11,15,3,1,15,4,0,7,12,15,7,14,11,13,0,12,1,8,3,2,8,4,14,2,14,2,8,10,8,9,7,6,7,10,0,8,11,12,12,0,8,13,15,5,8,0,13,5,5,6,3,0,9,3,12,4,3,6,2,10,3,7,11,3,10,9,8,4,12,4,2,8,9,12,8,9,13,10,14,15,13,0,6,0,0,7,12,12,5,3,3,11,5,10,13,10,11,14,4,4,14,12,4,4,10,5,1,2,8,1,11,3,0,5,7,12,0,7,1,5,7,1,9,13,1,2,4,5,5,7,13,15,10,12,14,11,15,12,0,9,0,2,2,1,13,9,11,13,13,8,1,0,5,6,9,11,7,9,0,4,3,9,12,11,0,2,7,1,3,13,1,8,4,7,10,8,2,11,6,9,0,11,1,14,7,5,2,15,8,12,3,4,2,7,1,1,10,11,14,0,1,11,6,6,13,8,11,15,12,10,1,7,4,8,13,11,4,13,10,6,7,15,2,6,9,5,2,13,5,0,3,12,11,7,6,3,8,6,11,3,0,9,2,9,15,10,0,2,1,15,5,3,9,8,4,4,2,8,13,13,12,3,3,3,1,2,6,6,6,8,12,11,6,7,14,9,2,5,8,4,4,12,1,14,9,0,9,5,3,4,3,8,6,10,14,1,10,6,14,1,0,8,15,0,1,2,3,9,7,10,4,5,3,7,12,9,8,8,13,14,12,12,13,2,14,11,14,13,1,6,2,14,14,4,5,6,5,9,7,1,4,13,10,5,4,10,5,2,14,3,13,8,11,12,2,2,2,6,14,3,1,14,2,15,3,1,15,3,9,10,15,11,15,9,9,1,7,15,9,15,8,2,10,12,13,9,10,4,13,12,9,6,5,3,11,4,3,6,7,13,12,5,13,9,1,7,4,14,7,11,4,3,5,14,3,4,3,4,2,5,4,8,15,3,15,15,15,9,11,4,10,15,10,12,5,14,5,7,4,3,15,13,4,9,1,5,14,6,6,13,1,12,12,11,1,4,4,2,2,13,6,8,6,15,13,0,11,14,10,13,6,0,3,13,3,7,5,4,9,1,4,10,12,8,0,6,12,6,5,10,5,0,12,8,11,12,8,5,15,15,11,12,4,2,8,3,12,15,7,4,11,13,2,7,8,1,15,5,14,10,14,4,12,14,9,2,5,8,8,14,8,2,15,12,13,5,6,9,3,0,10,12,10,14,8,5,3,0,7,6,7,9,12,9,11,11,10,0,3,7,0,9,13,8,9,11,14,3,2,7,10,0,15,15,10,14,1,2,5,6,4,15,13,4,6,15,12,1,8,11,9,5,9,7,0,14,9,10,5,13,2,8,7,4,4,10,5,8,1,8,1,0,5,14,7,15,7,2,9,6,13,8,0,8,6,2,12,5,11,15,12,5,11,3,3,8,4,2,11,10,6,15,15,7,0,9,12,3,6,10,7,10,0,4,8,6,10,8,9,3,1,4,10,13,11,4,1,14,6,7,2,2,1,4,11,1,11,5,0,4,7,11,10,3,13,7,8,3,3,15,4,4,14,7,14,9,5,10,8,5,6,2,14,15,11,11,6,11,10,7,3,10,8,8,0,4,9,0,1,15,7,1,15,8,6,11,11,6,6,11,11,3,2,4,7,4,10,15,15,12,5,13,14,11,15,1,8,11,9,4,4,6,7,3,10,5,7,8,13,0,8,7,1,10,3,0,10,15,6,4,2,14,8,12,7,14,13,11,10,14,2,3,4,4,9,14,6,3,3,2,11,15,5,7,8,2,13,9,2,6,3,6,2,6,4,2,13,10,13,2,2,15,4,11,14,5,2,11,6,9,10,11,9,7,10,4,1,0,3,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"4\", \"4\"], \"clip_start\": 941.0, \"clip_end\": 945.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,4,13,2,7,15,6,0,14,10,0,0,10,1,7,12,12,0,2,8,13,5,4,11,14,8,5,0,5,13,14,7,15,4,13,4,10,15,2,11,4,7,2,1,12,14,4,11,5,0,0,6,6,14,1,14,9,9,10,9,5,15,10,3,9,11,14,13,3,7,3,2,2,8,2,14,3,11,10,6,14,13,9,12,10,3,11,10,15,0,4,15,0,2,13,10,9,10,1,2,12,1,4,9,1,9,15,9,6,12,11,2,11,11,4,8,0,5,13,6,11,9,10,5,2,13,7,13,3,12,15,13,13,8,4,14,4,6,13,13,15,15,8,8,5,11,11,5,4,15,3,8,4,10,8,1,2,15,12,9,10,15,10,9,15,9,8,5,12,11,4,4,3,0,0,5,1,11,3,7,2,3,10,3,12,3,9,9,11,11,13,9,4,11,15,3,1,15,4,0,7,12,15,7,14,11,13,0,12,1,8,3,2,8,4,14,2,14,2,8,10,8,9,7,6,7,10,0,8,11,12,12,0,8,13,15,5,8,0,13,5,5,6,3,0,9,3,12,4,3,6,2,10,3,7,11,3,10,9,8,4,12,4,2,8,9,12,8,9,13,10,14,15,13,0,6,0,0,7,12,12,5,3,3,11,5,10,13,10,11,14,4,4,14,12,4,4,10,5,1,2,8,1,11,3,0,5,7,12,0,7,1,5,7,1,9,13,1,2,4,5,5,7,13,15,10,12,14,11,15,12,0,9,0,2,2,1,13,9,11,13,13,8,1,0,5,6,9,11,7,9,0,4,3,9,12,11,0,2,7,1,3,13,1,8,4,7,10,8,2,11,6,9,0,11,1,14,7,5,2,15,8,12,3,4,2,7,1,1,10,11,14,0,1,11,6,6,13,8,11,15,12,10,1,7,4,8,13,11,4,13,10,6,7,15,2,6,9,5,2,13,5,0,3,12,11,7,6,3,8,6,11,3,0,9,2,9,15,10,0,2,1,15,5,3,9,8,4,4,2,8,13,13,12,3,3,3,1,2,6,6,6,8,12,11,6,7,14,9,2,5,8,4,4,12,1,14,9,0,9,5,3,4,3,8,6,10,14,1,10,6,14,1,0,8,15,0,1,2,3,9,7,10,4,5,3,7,12,9,8,8,13,14,12,12,13,2,14,11,14,13,1,6,2,14,14,4,5,6,5,9,7,1,4,13,10,5,4,10,5,2,14,3,13,8,11,12,2,2,2,6,14,3,1,14,2,15,3,1,15,3,9,10,15,11,15,9,9,1,7,15,9,15,8,2,10,12,13,9,10,4,13,12,9,6,5,3,11,4,3,6,7,13,12,5,13,9,1,7,4,14,7,11,4,3,5,14,3,4,3,4,2,5,4,8,15,3,15,15,15,9,11,4,10,15,10,12,5,14,5,7,4,3,15,13,4,9,1,5,14,6,6,13,1,12,12,11,1,4,4,2,2,13,6,8,6,15,13,0,11,14,10,13,6,0,3,13,3,7,5,4,9,1,4,10,12,8,0,6,12,6,5,10,5,0,12,8,11,12,8,5,15,15,11,12,4,2,8,3,12,15,7,4,11,13,2,7,8,1,15,5,14,10,14,4,12,14,9,2,5,8,8,14,8,2,15,12,13,5,6,9,3,0,10,12,10,14,8,5,3,0,7,6,7,9,12,9,11,11,10,0,3,7,0,9,13,8,9,11,14,3,2,7,10,0,15,15,10,14,1,2,5,6,4,15,13,4,6,15,12,1,8,11,9,5,9,7,0,14,9,10,5,13,2,8,7,4,4,10,5,8,1,8,1,0,5,14,7,15,7,2,9,6,13,8,0,8,6,2,12,5,11,15,12,5,11,3,3,8,4,2,11,10,6,15,15,7,0,9,12,3,6,10,7,10,0,4,8,6,10,8,9,3,1,4,10,13,11,4,1,14,6,7,2,2,1,4,11,1,11,5,0,4,7,11,10,3,13,7,8,3,3,15,4,4,14,7,14,9,5,10,8,5,6,2,14,15,11,11,6,11,10,7,3,10,8,8,0,4,9,0,1,15,7,1,15,8,6,11,11,6,6,11,11,3,2,4,7,4,10,15,15,12,5,13,14,11,15,1,8,11,9,4,4,6,7,3,10,5,7,8,13,0,8,7,1,10,3,0,10,15,6,4,2,14,8,12,7,14,13,11,10,14,2,3,4,4,9,14,6,3,3,2,11,15,5,7,8,2,13,9,2,6,3,6,2,6,4,2,13,10,13,2,2,15,4,11,14,5,2,11,6,9,10,11,9,7,10,4,1,0,3,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"4\", \"1\", \"0\", \"3\"], \"clip_start\": 1017.0, \"clip_end\": 1023.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,4,13,2,7,15,6,0,14,10,0,0,10,1,7,12,12,0,2,8,13,5,4,11,14,8,5,0,5,13,14,7,15,4,13,4,10,15,2,11,4,7,2,1,12,14,4,11,5,0,0,6,6,14,1,14,9,9,10,9,5,15,10,3,9,11,14,13,3,7,3,2,2,8,2,14,3,11,10,6,14,13,9,12,10,3,11,10,15,0,4,15,0,2,13,10,9,10,1,2,12,1,4,9,1,9,15,9,6,12,11,2,11,11,4,8,0,5,13,6,11,9,10,5,2,13,7,13,3,12,15,13,13,8,4,14,4,6,13,13,15,15,8,8,5,11,11,5,4,15,3,8,4,10,8,1,2,15,12,9,10,15,10,9,15,9,8,5,12,11,4,4,3,0,0,5,1,11,3,7,2,3,10,3,12,3,9,9,11,11,13,9,4,11,15,3,1,15,4,0,7,12,15,7,14,11,13,0,12,1,8,3,2,8,4,14,2,14,2,8,10,8,9,7,6,7,10,0,8,11,12,12,0,8,13,15,5,8,0,13,5,5,6,3,0,9,3,12,4,3,6,2,10,3,7,11,3,10,9,8,4,12,4,2,8,9,12,8,9,13,10,14,15,13,0,6,0,0,7,12,12,5,3,3,11,5,10,13,10,11,14,4,4,14,12,4,4,10,5,1,2,8,1,11,3,0,5,7,12,0,7,1,5,7,1,9,13,1,2,4,5,5,7,13,15,10,12,14,11,15,12,0,9,0,2,2,1,13,9,11,13,13,8,1,0,5,6,9,11,7,9,0,4,3,9,12,11,0,2,7,1,3,13,1,8,4,7,10,8,2,11,6,9,0,11,1,14,7,5,2,15,8,12,3,4,2,7,1,1,10,11,14,0,1,11,6,6,13,8,11,15,12,10,1,7,4,8,13,11,4,13,10,6,7,15,2,6,9,5,2,13,5,0,3,12,11,7,6,3,8,6,11,3,0,9,2,9,15,10,0,2,1,15,5,3,9,8,4,4,2,8,13,13,12,3,3,3,1,2,6,6,6,8,12,11,6,7,14,9,2,5,8,4,4,12,1,14,9,0,9,5,3,4,3,8,6,10,14,1,10,6,14,1,0,8,15,0,1,2,3,9,7,10,4,5,3,7,12,9,8,8,13,14,12,12,13,2,14,11,14,13,1,6,2,14,14,4,5,6,5,9,7,1,4,13,10,5,4,10,5,2,14,3,13,8,11,12,2,2,2,6,14,3,1,14,2,15,3,1,15,3,9,10,15,11,15,9,9,1,7,15,9,15,8,2,10,12,13,9,10,4,13,12,9,6,5,3,11,4,3,6,7,13,12,5,13,9,1,7,4,14,7,11,4,3,5,14,3,4,3,4,2,5,4,8,15,3,15,15,15,9,11,4,10,15,10,12,5,14,5,7,4,3,15,13,4,9,1,5,14,6,6,13,1,12,12,11,1,4,4,2,2,13,6,8,6,15,13,0,11,14,10,13,6,0,3,13,3,7,5,4,9,1,4,10,12,8,0,6,12,6,5,10,5,0,12,8,11,12,8,5,15,15,11,12,4,2,8,3,12,15,7,4,11,13,2,7,8,1,15,5,14,10,14,4,12,14,9,2,5,8,8,14,8,2,15,12,13,5,6,9,3,0,10,12,10,14,8,5,3,0,7,6,7,9,12,9,11,11,10,0,3,7,0,9,13,8,9,11,14,3,2,7,10,0,15,15,10,14,1,2,5,6,4,15,13,4,6,15,12,1,8,11,9,5,9,7,0,14,9,10,5,13,2,8,7,4,4,10,5,8,1,8,1,0,5,14,7,15,7,2,9,6,13,8,0,8,6,2,12,5,11,15,12,5,11,3,3,8,4,2,11,10,6,15,15,7,0,9,12,3,6,10,7,10,0,4,8,6,10,8,9,3,1,4,10,13,11,4,1,14,6,7,2,2,1,4,11,1,11,5,0,4,7,11,10,3,13,7,8,3,3,15,4,4,14,7,14,9,5,10,8,5,6,2,14,15,11,11,6,11,10,7,3,10,8,8,0,4,9,0,1,15,7,1,15,8,6,11,11,6,6,11,11,3,2,4,7,4,10,15,15,12,5,13,14,11,15,1,8,11,9,4,4,6,7,3,10,5,7,8,13,0,8,7,1,10,3,0,10,15,6,4,2,14,8,12,7,14,13,11,10,14,2,3,4,4,9,14,6,3,3,2,11,15,5,7,8,2,13,9,2,6,3,6,2,6,4,2,13,10,13,2,2,15,4,11,14,5,2,11,6,9,10,11,9,7,10,4,1,0,3,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"11\", \"6\"], \"clip_start\": 393.0, \"clip_end\": 397.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,4,13,2,7,15,6,0,14,10,0,0,10,1,7,12,12,0,2,8,13,5,4,11,14,8,5,0,5,13,14,7,15,4,13,4,10,15,2,11,4,7,2,1,12,14,4,11,5,0,0,6,6,14,1,14,9,9,10,9,5,15,10,3,9,11,14,13,3,7,3,2,2,8,2,14,3,11,10,6,14,13,9,12,10,3,11,10,15,0,4,15,0,2,13,10,9,10,1,2,12,1,4,9,1,9,15,9,6,12,11,2,11,11,4,8,0,5,13,6,11,9,10,5,2,13,7,13,3,12,15,13,13,8,4,14,4,6,13,13,15,15,8,8,5,11,11,5,4,15,3,8,4,10,8,1,2,15,12,9,10,15,10,9,15,9,8,5,12,11,4,4,3,0,0,5,1,11,3,7,2,3,10,3,12,3,9,9,11,11,13,9,4,11,15,3,1,15,4,0,7,12,15,7,14,11,13,0,12,1,8,3,2,8,4,14,2,14,2,8,10,8,9,7,6,7,10,0,8,11,12,12,0,8,13,15,5,8,0,13,5,5,6,3,0,9,3,12,4,3,6,2,10,3,7,11,3,10,9,8,4,12,4,2,8,9,12,8,9,13,10,14,15,13,0,6,0,0,7,12,12,5,3,3,11,5,10,13,10,11,14,4,4,14,12,4,4,10,5,1,2,8,1,11,3,0,5,7,12,0,7,1,5,7,1,9,13,1,2,4,5,5,7,13,15,10,12,14,11,15,12,0,9,0,2,2,1,13,9,11,13,13,8,1,0,5,6,9,11,7,9,0,4,3,9,12,11,0,2,7,1,3,13,1,8,4,7,10,8,2,11,6,9,0,11,1,14,7,5,2,15,8,12,3,4,2,7,1,1,10,11,14,0,1,11,6,6,13,8,11,15,12,10,1,7,4,8,13,11,4,13,10,6,7,15,2,6,9,5,2,13,5,0,3,12,11,7,6,3,8,6,11,3,0,9,2,9,15,10,0,2,1,15,5,3,9,8,4,4,2,8,13,13,12,3,3,3,1,2,6,6,6,8,12,11,6,7,14,9,2,5,8,4,4,12,1,14,9,0,9,5,3,4,3,8,6,10,14,1,10,6,14,1,0,8,15,0,1,2,3,9,7,10,4,5,3,7,12,9,8,8,13,14,12,12,13,2,14,11,14,13,1,6,2,14,14,4,5,6,5,9,7,1,4,13,10,5,4,10,5,2,14,3,13,8,11,12,2,2,2,6,14,3,1,14,2,15,3,1,15,3,9,10,15,11,15,9,9,1,7,15,9,15,8,2,10,12,13,9,10,4,13,12,9,6,5,3,11,4,3,6,7,13,12,5,13,9,1,7,4,14,7,11,4,3,5,14,3,4,3,4,2,5,4,8,15,3,15,15,15,9,11,4,10,15,10,12,5,14,5,7,4,3,15,13,4,9,1,5,14,6,6,13,1,12,12,11,1,4,4,2,2,13,6,8,6,15,13,0,11,14,10,13,6,0,3,13,3,7,5,4,9,1,4,10,12,8,0,6,12,6,5,10,5,0,12,8,11,12,8,5,15,15,11,12,4,2,8,3,12,15,7,4,11,13,2,7,8,1,15,5,14,10,14,4,12,14,9,2,5,8,8,14,8,2,15,12,13,5,6,9,3,0,10,12,10,14,8,5,3,0,7,6,7,9,12,9,11,11,10,0,3,7,0,9,13,8,9,11,14,3,2,7,10,0,15,15,10,14,1,2,5,6,4,15,13,4,6,15,12,1,8,11,9,5,9,7,0,14,9,10,5,13,2,8,7,4,4,10,5,8,1,8,1,0,5,14,7,15,7,2,9,6,13,8,0,8,6,2,12,5,11,15,12,5,11,3,3,8,4,2,11,10,6,15,15,7,0,9,12,3,6,10,7,10,0,4,8,6,10,8,9,3,1,4,10,13,11,4,1,14,6,7,2,2,1,4,11,1,11,5,0,4,7,11,10,3,13,7,8,3,3,15,4,4,14,7,14,9,5,10,8,5,6,2,14,15,11,11,6,11,10,7,3,10,8,8,0,4,9,0,1,15,7,1,15,8,6,11,11,6,6,11,11,3,2,4,7,4,10,15,15,12,5,13,14,11,15,1,8,11,9,4,4,6,7,3,10,5,7,8,13,0,8,7,1,10,3,0,10,15,6,4,2,14,8,12,7,14,13,11,10,14,2,3,4,4,9,14,6,3,3,2,11,15,5,7,8,2,13,9,2,6,3,6,2,6,4,2,13,10,13,2,2,15,4,11,14,5,2,11,6,9,10,11,9,7,10,4,1,0,3,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 1015.0, \"clip_end\": 1018.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,4,13,2,7,15,6,0,14,10,0,0,10,1,7,12,12,0,2,8,13,5,4,11,14,8,5,0,5,13,14,7,15,4,13,4,10,15,2,11,4,7,2,1,12,14,4,11,5,0,0,6,6,14,1,14,9,9,10,9,5,15,10,3,9,11,14,13,3,7,3,2,2,8,2,14,3,11,10,6,14,13,9,12,10,3,11,10,15,0,4,15,0,2,13,10,9,10,1,2,12,1,4,9,1,9,15,9,6,12,11,2,11,11,4,8,0,5,13,6,11,9,10,5,2,13,7,13,3,12,15,13,13,8,4,14,4,6,13,13,15,15,8,8,5,11,11,5,4,15,3,8,4,10,8,1,2,15,12,9,10,15,10,9,15,9,8,5,12,11,4,4,3,0,0,5,1,11,3,7,2,3,10,3,12,3,9,9,11,11,13,9,4,11,15,3,1,15,4,0,7,12,15,7,14,11,13,0,12,1,8,3,2,8,4,14,2,14,2,8,10,8,9,7,6,7,10,0,8,11,12,12,0,8,13,15,5,8,0,13,5,5,6,3,0,9,3,12,4,3,6,2,10,3,7,11,3,10,9,8,4,12,4,2,8,9,12,8,9,13,10,14,15,13,0,6,0,0,7,12,12,5,3,3,11,5,10,13,10,11,14,4,4,14,12,4,4,10,5,1,2,8,1,11,3,0,5,7,12,0,7,1,5,7,1,9,13,1,2,4,5,5,7,13,15,10,12,14,11,15,12,0,9,0,2,2,1,13,9,11,13,13,8,1,0,5,6,9,11,7,9,0,4,3,9,12,11,0,2,7,1,3,13,1,8,4,7,10,8,2,11,6,9,0,11,1,14,7,5,2,15,8,12,3,4,2,7,1,1,10,11,14,0,1,11,6,6,13,8,11,15,12,10,1,7,4,8,13,11,4,13,10,6,7,15,2,6,9,5,2,13,5,0,3,12,11,7,6,3,8,6,11,3,0,9,2,9,15,10,0,2,1,15,5,3,9,8,4,4,2,8,13,13,12,3,3,3,1,2,6,6,6,8,12,11,6,7,14,9,2,5,8,4,4,12,1,14,9,0,9,5,3,4,3,8,6,10,14,1,10,6,14,1,0,8,15,0,1,2,3,9,7,10,4,5,3,7,12,9,8,8,13,14,12,12,13,2,14,11,14,13,1,6,2,14,14,4,5,6,5,9,7,1,4,13,10,5,4,10,5,2,14,3,13,8,11,12,2,2,2,6,14,3,1,14,2,15,3,1,15,3,9,10,15,11,15,9,9,1,7,15,9,15,8,2,10,12,13,9,10,4,13,12,9,6,5,3,11,4,3,6,7,13,12,5,13,9,1,7,4,14,7,11,4,3,5,14,3,4,3,4,2,5,4,8,15,3,15,15,15,9,11,4,10,15,10,12,5,14,5,7,4,3,15,13,4,9,1,5,14,6,6,13,1,12,12,11,1,4,4,2,2,13,6,8,6,15,13,0,11,14,10,13,6,0,3,13,3,7,5,4,9,1,4,10,12,8,0,6,12,6,5,10,5,0,12,8,11,12,8,5,15,15,11,12,4,2,8,3,12,15,7,4,11,13,2,7,8,1,15,5,14,10,14,4,12,14,9,2,5,8,8,14,8,2,15,12,13,5,6,9,3,0,10,12,10,14,8,5,3,0,7,6,7,9,12,9,11,11,10,0,3,7,0,9,13,8,9,11,14,3,2,7,10,0,15,15,10,14,1,2,5,6,4,15,13,4,6,15,12,1,8,11,9,5,9,7,0,14,9,10,5,13,2,8,7,4,4,10,5,8,1,8,1,0,5,14,7,15,7,2,9,6,13,8,0,8,6,2,12,5,11,15,12,5,11,3,3,8,4,2,11,10,6,15,15,7,0,9,12,3,6,10,7,10,0,4,8,6,10,8,9,3,1,4,10,13,11,4,1,14,6,7,2,2,1,4,11,1,11,5,0,4,7,11,10,3,13,7,8,3,3,15,4,4,14,7,14,9,5,10,8,5,6,2,14,15,11,11,6,11,10,7,3,10,8,8,0,4,9,0,1,15,7,1,15,8,6,11,11,6,6,11,11,3,2,4,7,4,10,15,15,12,5,13,14,11,15,1,8,11,9,4,4,6,7,3,10,5,7,8,13,0,8,7,1,10,3,0,10,15,6,4,2,14,8,12,7,14,13,11,10,14,2,3,4,4,9,14,6,3,3,2,11,15,5,7,8,2,13,9,2,6,3,6,2,6,4,2,13,10,13,2,2,15,4,11,14,5,2,11,6,9,10,11,9,7,10,4,1,0,3,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"10\", \"0\", \"15\"], \"clip_start\": 762.0, \"clip_end\": 767.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,4,13,2,7,15,6,0,14,10,0,0,10,1,7,12,12,0,2,8,13,5,4,11,14,8,5,0,5,13,14,7,15,4,13,4,10,15,2,11,4,7,2,1,12,14,4,11,5,0,0,6,6,14,1,14,9,9,10,9,5,15,10,3,9,11,14,13,3,7,3,2,2,8,2,14,3,11,10,6,14,13,9,12,10,3,11,10,15,0,4,15,0,2,13,10,9,10,1,2,12,1,4,9,1,9,15,9,6,12,11,2,11,11,4,8,0,5,13,6,11,9,10,5,2,13,7,13,3,12,15,13,13,8,4,14,4,6,13,13,15,15,8,8,5,11,11,5,4,15,3,8,4,10,8,1,2,15,12,9,10,15,10,9,15,9,8,5,12,11,4,4,3,0,0,5,1,11,3,7,2,3,10,3,12,3,9,9,11,11,13,9,4,11,15,3,1,15,4,0,7,12,15,7,14,11,13,0,12,1,8,3,2,8,4,14,2,14,2,8,10,8,9,7,6,7,10,0,8,11,12,12,0,8,13,15,5,8,0,13,5,5,6,3,0,9,3,12,4,3,6,2,10,3,7,11,3,10,9,8,4,12,4,2,8,9,12,8,9,13,10,14,15,13,0,6,0,0,7,12,12,5,3,3,11,5,10,13,10,11,14,4,4,14,12,4,4,10,5,1,2,8,1,11,3,0,5,7,12,0,7,1,5,7,1,9,13,1,2,4,5,5,7,13,15,10,12,14,11,15,12,0,9,0,2,2,1,13,9,11,13,13,8,1,0,5,6,9,11,7,9,0,4,3,9,12,11,0,2,7,1,3,13,1,8,4,7,10,8,2,11,6,9,0,11,1,14,7,5,2,15,8,12,3,4,2,7,1,1,10,11,14,0,1,11,6,6,13,8,11,15,12,10,1,7,4,8,13,11,4,13,10,6,7,15,2,6,9,5,2,13,5,0,3,12,11,7,6,3,8,6,11,3,0,9,2,9,15,10,0,2,1,15,5,3,9,8,4,4,2,8,13,13,12,3,3,3,1,2,6,6,6,8,12,11,6,7,14,9,2,5,8,4,4,12,1,14,9,0,9,5,3,4,3,8,6,10,14,1,10,6,14,1,0,8,15,0,1,2,3,9,7,10,4,5,3,7,12,9,8,8,13,14,12,12,13,2,14,11,14,13,1,6,2,14,14,4,5,6,5,9,7,1,4,13,10,5,4,10,5,2,14,3,13,8,11,12,2,2,2,6,14,3,1,14,2,15,3,1,15,3,9,10,15,11,15,9,9,1,7,15,9,15,8,2,10,12,13,9,10,4,13,12,9,6,5,3,11,4,3,6,7,13,12,5,13,9,1,7,4,14,7,11,4,3,5,14,3,4,3,4,2,5,4,8,15,3,15,15,15,9,11,4,10,15,10,12,5,14,5,7,4,3,15,13,4,9,1,5,14,6,6,13,1,12,12,11,1,4,4,2,2,13,6,8,6,15,13,0,11,14,10,13,6,0,3,13,3,7,5,4,9,1,4,10,12,8,0,6,12,6,5,10,5,0,12,8,11,12,8,5,15,15,11,12,4,2,8,3,12,15,7,4,11,13,2,7,8,1,15,5,14,10,14,4,12,14,9,2,5,8,8,14,8,2,15,12,13,5,6,9,3,0,10,12,10,14,8,5,3,0,7,6,7,9,12,9,11,11,10,0,3,7,0,9,13,8,9,11,14,3,2,7,10,0,15,15,10,14,1,2,5,6,4,15,13,4,6,15,12,1,8,11,9,5,9,7,0,14,9,10,5,13,2,8,7,4,4,10,5,8,1,8,1,0,5,14,7,15,7,2,9,6,13,8,0,8,6,2,12,5,11,15,12,5,11,3,3,8,4,2,11,10,6,15,15,7,0,9,12,3,6,10,7,10,0,4,8,6,10,8,9,3,1,4,10,13,11,4,1,14,6,7,2,2,1,4,11,1,11,5,0,4,7,11,10,3,13,7,8,3,3,15,4,4,14,7,14,9,5,10,8,5,6,2,14,15,11,11,6,11,10,7,3,10,8,8,0,4,9,0,1,15,7,1,15,8,6,11,11,6,6,11,11,3,2,4,7,4,10,15,15,12,5,13,14,11,15,1,8,11,9,4,4,6,7,3,10,5,7,8,13,0,8,7,1,10,3,0,10,15,6,4,2,14,8,12,7,14,13,11,10,14,2,3,4,4,9,14,6,3,3,2,11,15,5,7,8,2,13,9,2,6,3,6,2,6,4,2,13,10,13,2,2,15,4,11,14,5,2,11,6,9,10,11,9,7,10,4,1,0,3,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"6\", \"7\"], \"clip_start\": 943.0, \"clip_end\": 947.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,4,13,2,7,15,6,0,14,10,0,0,10,1,7,12,12,0,2,8,13,5,4,11,14,8,5,0,5,13,14,7,15,4,13,4,10,15,2,11,4,7,2,1,12,14,4,11,5,0,0,6,6,14,1,14,9,9,10,9,5,15,10,3,9,11,14,13,3,7,3,2,2,8,2,14,3,11,10,6,14,13,9,12,10,3,11,10,15,0,4,15,0,2,13,10,9,10,1,2,12,1,4,9,1,9,15,9,6,12,11,2,11,11,4,8,0,5,13,6,11,9,10,5,2,13,7,13,3,12,15,13,13,8,4,14,4,6,13,13,15,15,8,8,5,11,11,5,4,15,3,8,4,10,8,1,2,15,12,9,10,15,10,9,15,9,8,5,12,11,4,4,3,0,0,5,1,11,3,7,2,3,10,3,12,3,9,9,11,11,13,9,4,11,15,3,1,15,4,0,7,12,15,7,14,11,13,0,12,1,8,3,2,8,4,14,2,14,2,8,10,8,9,7,6,7,10,0,8,11,12,12,0,8,13,15,5,8,0,13,5,5,6,3,0,9,3,12,4,3,6,2,10,3,7,11,3,10,9,8,4,12,4,2,8,9,12,8,9,13,10,14,15,13,0,6,0,0,7,12,12,5,3,3,11,5,10,13,10,11,14,4,4,14,12,4,4,10,5,1,2,8,1,11,3,0,5,7,12,0,7,1,5,7,1,9,13,1,2,4,5,5,7,13,15,10,12,14,11,15,12,0,9,0,2,2,1,13,9,11,13,13,8,1,0,5,6,9,11,7,9,0,4,3,9,12,11,0,2,7,1,3,13,1,8,4,7,10,8,2,11,6,9,0,11,1,14,7,5,2,15,8,12,3,4,2,7,1,1,10,11,14,0,1,11,6,6,13,8,11,15,12,10,1,7,4,8,13,11,4,13,10,6,7,15,2,6,9,5,2,13,5,0,3,12,11,7,6,3,8,6,11,3,0,9,2,9,15,10,0,2,1,15,5,3,9,8,4,4,2,8,13,13,12,3,3,3,1,2,6,6,6,8,12,11,6,7,14,9,2,5,8,4,4,12,1,14,9,0,9,5,3,4,3,8,6,10,14,1,10,6,14,1,0,8,15,0,1,2,3,9,7,10,4,5,3,7,12,9,8,8,13,14,12,12,13,2,14,11,14,13,1,6,2,14,14,4,5,6,5,9,7,1,4,13,10,5,4,10,5,2,14,3,13,8,11,12,2,2,2,6,14,3,1,14,2,15,3,1,15,3,9,10,15,11,15,9,9,1,7,15,9,15,8,2,10,12,13,9,10,4,13,12,9,6,5,3,11,4,3,6,7,13,12,5,13,9,1,7,4,14,7,11,4,3,5,14,3,4,3,4,2,5,4,8,15,3,15,15,15,9,11,4,10,15,10,12,5,14,5,7,4,3,15,13,4,9,1,5,14,6,6,13,1,12,12,11,1,4,4,2,2,13,6,8,6,15,13,0,11,14,10,13,6,0,3,13,3,7,5,4,9,1,4,10,12,8,0,6,12,6,5,10,5,0,12,8,11,12,8,5,15,15,11,12,4,2,8,3,12,15,7,4,11,13,2,7,8,1,15,5,14,10,14,4,12,14,9,2,5,8,8,14,8,2,15,12,13,5,6,9,3,0,10,12,10,14,8,5,3,0,7,6,7,9,12,9,11,11,10,0,3,7,0,9,13,8,9,11,14,3,2,7,10,0,15,15,10,14,1,2,5,6,4,15,13,4,6,15,12,1,8,11,9,5,9,7,0,14,9,10,5,13,2,8,7,4,4,10,5,8,1,8,1,0,5,14,7,15,7,2,9,6,13,8,0,8,6,2,12,5,11,15,12,5,11,3,3,8,4,2,11,10,6,15,15,7,0,9,12,3,6,10,7,10,0,4,8,6,10,8,9,3,1,4,10,13,11,4,1,14,6,7,2,2,1,4,11,1,11,5,0,4,7,11,10,3,13,7,8,3,3,15,4,4,14,7,14,9,5,10,8,5,6,2,14,15,11,11,6,11,10,7,3,10,8,8,0,4,9,0,1,15,7,1,15,8,6,11,11,6,6,11,11,3,2,4,7,4,10,15,15,12,5,13,14,11,15,1,8,11,9,4,4,6,7,3,10,5,7,8,13,0,8,7,1,10,3,0,10,15,6,4,2,14,8,12,7,14,13,11,10,14,2,3,4,4,9,14,6,3,3,2,11,15,5,7,8,2,13,9,2,6,3,6,2,6,4,2,13,10,13,2,2,15,4,11,14,5,2,11,6,9,10,11,9,7,10,4,1,0,3,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"2\", \"8\", \"3\"], \"clip_start\": 695.0, \"clip_end\": 700.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,4,13,2,7,15,6,0,14,10,0,0,10,1,7,12,12,0,2,8,13,5,4,11,14,8,5,0,5,13,14,7,15,4,13,4,10,15,2,11,4,7,2,1,12,14,4,11,5,0,0,6,6,14,1,14,9,9,10,9,5,15,10,3,9,11,14,13,3,7,3,2,2,8,2,14,3,11,10,6,14,13,9,12,10,3,11,10,15,0,4,15,0,2,13,10,9,10,1,2,12,1,4,9,1,9,15,9,6,12,11,2,11,11,4,8,0,5,13,6,11,9,10,5,2,13,7,13,3,12,15,13,13,8,4,14,4,6,13,13,15,15,8,8,5,11,11,5,4,15,3,8,4,10,8,1,2,15,12,9,10,15,10,9,15,9,8,5,12,11,4,4,3,0,0,5,1,11,3,7,2,3,10,3,12,3,9,9,11,11,13,9,4,11,15,3,1,15,4,0,7,12,15,7,14,11,13,0,12,1,8,3,2,8,4,14,2,14,2,8,10,8,9,7,6,7,10,0,8,11,12,12,0,8,13,15,5,8,0,13,5,5,6,3,0,9,3,12,4,3,6,2,10,3,7,11,3,10,9,8,4,12,4,2,8,9,12,8,9,13,10,14,15,13,0,6,0,0,7,12,12,5,3,3,11,5,10,13,10,11,14,4,4,14,12,4,4,10,5,1,2,8,1,11,3,0,5,7,12,0,7,1,5,7,1,9,13,1,2,4,5,5,7,13,15,10,12,14,11,15,12,0,9,0,2,2,1,13,9,11,13,13,8,1,0,5,6,9,11,7,9,0,4,3,9,12,11,0,2,7,1,3,13,1,8,4,7,10,8,2,11,6,9,0,11,1,14,7,5,2,15,8,12,3,4,2,7,1,1,10,11,14,0,1,11,6,6,13,8,11,15,12,10,1,7,4,8,13,11,4,13,10,6,7,15,2,6,9,5,2,13,5,0,3,12,11,7,6,3,8,6,11,3,0,9,2,9,15,10,0,2,1,15,5,3,9,8,4,4,2,8,13,13,12,3,3,3,1,2,6,6,6,8,12,11,6,7,14,9,2,5,8,4,4,12,1,14,9,0,9,5,3,4,3,8,6,10,14,1,10,6,14,1,0,8,15,0,1,2,3,9,7,10,4,5,3,7,12,9,8,8,13,14,12,12,13,2,14,11,14,13,1,6,2,14,14,4,5,6,5,9,7,1,4,13,10,5,4,10,5,2,14,3,13,8,11,12,2,2,2,6,14,3,1,14,2,15,3,1,15,3,9,10,15,11,15,9,9,1,7,15,9,15,8,2,10,12,13,9,10,4,13,12,9,6,5,3,11,4,3,6,7,13,12,5,13,9,1,7,4,14,7,11,4,3,5,14,3,4,3,4,2,5,4,8,15,3,15,15,15,9,11,4,10,15,10,12,5,14,5,7,4,3,15,13,4,9,1,5,14,6,6,13,1,12,12,11,1,4,4,2,2,13,6,8,6,15,13,0,11,14,10,13,6,0,3,13,3,7,5,4,9,1,4,10,12,8,0,6,12,6,5,10,5,0,12,8,11,12,8,5,15,15,11,12,4,2,8,3,12,15,7,4,11,13,2,7,8,1,15,5,14,10,14,4,12,14,9,2,5,8,8,14,8,2,15,12,13,5,6,9,3,0,10,12,10,14,8,5,3,0,7,6,7,9,12,9,11,11,10,0,3,7,0,9,13,8,9,11,14,3,2,7,10,0,15,15,10,14,1,2,5,6,4,15,13,4,6,15,12,1,8,11,9,5,9,7,0,14,9,10,5,13,2,8,7,4,4,10,5,8,1,8,1,0,5,14,7,15,7,2,9,6,13,8,0,8,6,2,12,5,11,15,12,5,11,3,3,8,4,2,11,10,6,15,15,7,0,9,12,3,6,10,7,10,0,4,8,6,10,8,9,3,1,4,10,13,11,4,1,14,6,7,2,2,1,4,11,1,11,5,0,4,7,11,10,3,13,7,8,3,3,15,4,4,14,7,14,9,5,10,8,5,6,2,14,15,11,11,6,11,10,7,3,10,8,8,0,4,9,0,1,15,7,1,15,8,6,11,11,6,6,11,11,3,2,4,7,4,10,15,15,12,5,13,14,11,15,1,8,11,9,4,4,6,7,3,10,5,7,8,13,0,8,7,1,10,3,0,10,15,6,4,2,14,8,12,7,14,13,11,10,14,2,3,4,4,9,14,6,3,3,2,11,15,5,7,8,2,13,9,2,6,3,6,2,6,4,2,13,10,13,2,2,15,4,11,14,5,2,11,6,9,10,11,9,7,10,4,1,0,3,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 536.0, \"clip_end\": 542.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,4,13,2,7,15,6,0,14,10,0,0,10,1,7,12,12,0,2,8,13,5,4,11,14,8,5,0,5,13,14,7,15,4,13,4,10,15,2,11,4,7,2,1,12,14,4,11,5,0,0,6,6,14,1,14,9,9,10,9,5,15,10,3,9,11,14,13,3,7,3,2,2,8,2,14,3,11,10,6,14,13,9,12,10,3,11,10,15,0,4,15,0,2,13,10,9,10,1,2,12,1,4,9,1,9,15,9,6,12,11,2,11,11,4,8,0,5,13,6,11,9,10,5,2,13,7,13,3,12,15,13,13,8,4,14,4,6,13,13,15,15,8,8,5,11,11,5,4,15,3,8,4,10,8,1,2,15,12,9,10,15,10,9,15,9,8,5,12,11,4,4,3,0,0,5,1,11,3,7,2,3,10,3,12,3,9,9,11,11,13,9,4,11,15,3,1,15,4,0,7,12,15,7,14,11,13,0,12,1,8,3,2,8,4,14,2,14,2,8,10,8,9,7,6,7,10,0,8,11,12,12,0,8,13,15,5,8,0,13,5,5,6,3,0,9,3,12,4,3,6,2,10,3,7,11,3,10,9,8,4,12,4,2,8,9,12,8,9,13,10,14,15,13,0,6,0,0,7,12,12,5,3,3,11,5,10,13,10,11,14,4,4,14,12,4,4,10,5,1,2,8,1,11,3,0,5,7,12,0,7,1,5,7,1,9,13,1,2,4,5,5,7,13,15,10,12,14,11,15,12,0,9,0,2,2,1,13,9,11,13,13,8,1,0,5,6,9,11,7,9,0,4,3,9,12,11,0,2,7,1,3,13,1,8,4,7,10,8,2,11,6,9,0,11,1,14,7,5,2,15,8,12,3,4,2,7,1,1,10,11,14,0,1,11,6,6,13,8,11,15,12,10,1,7,4,8,13,11,4,13,10,6,7,15,2,6,9,5,2,13,5,0,3,12,11,7,6,3,8,6,11,3,0,9,2,9,15,10,0,2,1,15,5,3,9,8,4,4,2,8,13,13,12,3,3,3,1,2,6,6,6,8,12,11,6,7,14,9,2,5,8,4,4,12,1,14,9,0,9,5,3,4,3,8,6,10,14,1,10,6,14,1,0,8,15,0,1,2,3,9,7,10,4,5,3,7,12,9,8,8,13,14,12,12,13,2,14,11,14,13,1,6,2,14,14,4,5,6,5,9,7,1,4,13,10,5,4,10,5,2,14,3,13,8,11,12,2,2,2,6,14,3,1,14,2,15,3,1,15,3,9,10,15,11,15,9,9,1,7,15,9,15,8,2,10,12,13,9,10,4,13,12,9,6,5,3,11,4,3,6,7,13,12,5,13,9,1,7,4,14,7,11,4,3,5,14,3,4,3,4,2,5,4,8,15,3,15,15,15,9,11,4,10,15,10,12,5,14,5,7,4,3,15,13,4,9,1,5,14,6,6,13,1,12,12,11,1,4,4,2,2,13,6,8,6,15,13,0,11,14,10,13,6,0,3,13,3,7,5,4,9,1,4,10,12,8,0,6,12,6,5,10,5,0,12,8,11,12,8,5,15,15,11,12,4,2,8,3,12,15,7,4,11,13,2,7,8,1,15,5,14,10,14,4,12,14,9,2,5,8,8,14,8,2,15,12,13,5,6,9,3,0,10,12,10,14,8,5,3,0,7,6,7,9,12,9,11,11,10,0,3,7,0,9,13,8,9,11,14,3,2,7,10,0,15,15,10,14,1,2,5,6,4,15,13,4,6,15,12,1,8,11,9,5,9,7,0,14,9,10,5,13,2,8,7,4,4,10,5,8,1,8,1,0,5,14,7,15,7,2,9,6,13,8,0,8,6,2,12,5,11,15,12,5,11,3,3,8,4,2,11,10,6,15,15,7,0,9,12,3,6,10,7,10,0,4,8,6,10,8,9,3,1,4,10,13,11,4,1,14,6,7,2,2,1,4,11,1,11,5,0,4,7,11,10,3,13,7,8,3,3,15,4,4,14,7,14,9,5,10,8,5,6,2,14,15,11,11,6,11,10,7,3,10,8,8,0,4,9,0,1,15,7,1,15,8,6,11,11,6,6,11,11,3,2,4,7,4,10,15,15,12,5,13,14,11,15,1,8,11,9,4,4,6,7,3,10,5,7,8,13,0,8,7,1,10,3,0,10,15,6,4,2,14,8,12,7,14,13,11,10,14,2,3,4,4,9,14,6,3,3,2,11,15,5,7,8,2,13,9,2,6,3,6,2,6,4,2,13,10,13,2,2,15,4,11,14,5,2,11,6,9,10,11,9,7,10,4,1,0,3,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"2\", \"14\", \"3\"], \"clip_start\": 74.0, \"clip_end\": 78.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,4,13,2,7,15,6,0,14,10,0,0,10,1,7,12,12,0,2,8,13,5,4,11,14,8,5,0,5,13,14,7,15,4,13,4,10,15,2,11,4,7,2,1,12,14,4,11,5,0,0,6,6,14,1,14,9,9,10,9,5,15,10,3,9,11,14,13,3,7,3,2,2,8,2,14,3,11,10,6,14,13,9,12,10,3,11,10,15,0,4,15,0,2,13,10,9,10,1,2,12,1,4,9,1,9,15,9,6,12,11,2,11,11,4,8,0,5,13,6,11,9,10,5,2,13,7,13,3,12,15,13,13,8,4,14,4,6,13,13,15,15,8,8,5,11,11,5,4,15,3,8,4,10,8,1,2,15,12,9,10,15,10,9,15,9,8,5,12,11,4,4,3,0,0,5,1,11,3,7,2,3,10,3,12,3,9,9,11,11,13,9,4,11,15,3,1,15,4,0,7,12,15,7,14,11,13,0,12,1,8,3,2,8,4,14,2,14,2,8,10,8,9,7,6,7,10,0,8,11,12,12,0,8,13,15,5,8,0,13,5,5,6,3,0,9,3,12,4,3,6,2,10,3,7,11,3,10,9,8,4,12,4,2,8,9,12,8,9,13,10,14,15,13,0,6,0,0,7,12,12,5,3,3,11,5,10,13,10,11,14,4,4,14,12,4,4,10,5,1,2,8,1,11,3,0,5,7,12,0,7,1,5,7,1,9,13,1,2,4,5,5,7,13,15,10,12,14,11,15,12,0,9,0,2,2,1,13,9,11,13,13,8,1,0,5,6,9,11,7,9,0,4,3,9,12,11,0,2,7,1,3,13,1,8,4,7,10,8,2,11,6,9,0,11,1,14,7,5,2,15,8,12,3,4,2,7,1,1,10,11,14,0,1,11,6,6,13,8,11,15,12,10,1,7,4,8,13,11,4,13,10,6,7,15,2,6,9,5,2,13,5,0,3,12,11,7,6,3,8,6,11,3,0,9,2,9,15,10,0,2,1,15,5,3,9,8,4,4,2,8,13,13,12,3,3,3,1,2,6,6,6,8,12,11,6,7,14,9,2,5,8,4,4,12,1,14,9,0,9,5,3,4,3,8,6,10,14,1,10,6,14,1,0,8,15,0,1,2,3,9,7,10,4,5,3,7,12,9,8,8,13,14,12,12,13,2,14,11,14,13,1,6,2,14,14,4,5,6,5,9,7,1,4,13,10,5,4,10,5,2,14,3,13,8,11,12,2,2,2,6,14,3,1,14,2,15,3,1,15,3,9,10,15,11,15,9,9,1,7,15,9,15,8,2,10,12,13,9,10,4,13,12,9,6,5,3,11,4,3,6,7,13,12,5,13,9,1,7,4,14,7,11,4,3,5,14,3,4,3,4,2,5,4,8,15,3,15,15,15,9,11,4,10,15,10,12,5,14,5,7,4,3,15,13,4,9,1,5,14,6,6,13,1,12,12,11,1,4,4,2,2,13,6,8,6,15,13,0,11,14,10,13,6,0,3,13,3,7,5,4,9,1,4,10,12,8,0,6,12,6,5,10,5,0,12,8,11,12,8,5,15,15,11,12,4,2,8,3,12,15,7,4,11,13,2,7,8,1,15,5,14,10,14,4,12,14,9,2,5,8,8,14,8,2,15,12,13,5,6,9,3,0,10,12,10,14,8,5,3,0,7,6,7,9,12,9,11,11,10,0,3,7,0,9,13,8,9,11,14,3,2,7,10,0,15,15,10,14,1,2,5,6,4,15,13,4,6,15,12,1,8,11,9,5,9,7,0,14,9,10,5,13,2,8,7,4,4,10,5,8,1,8,1,0,5,14,7,15,7,2,9,6,13,8,0,8,6,2,12,5,11,15,12,5,11,3,3,8,4,2,11,10,6,15,15,7,0,9,12,3,6,10,7,10,0,4,8,6,10,8,9,3,1,4,10,13,11,4,1,14,6,7,2,2,1,4,11,1,11,5,0,4,7,11,10,3,13,7,8,3,3,15,4,4,14,7,14,9,5,10,8,5,6,2,14,15,11,11,6,11,10,7,3,10,8,8,0,4,9,0,1,15,7,1,15,8,6,11,11,6,6,11,11,3,2,4,7,4,10,15,15,12,5,13,14,11,15,1,8,11,9,4,4,6,7,3,10,5,7,8,13,0,8,7,1,10,3,0,10,15,6,4,2,14,8,12,7,14,13,11,10,14,2,3,4,4,9,14,6,3,3,2,11,15,5,7,8,2,13,9,2,6,3,6,2,6,4,2,13,10,13,2,2,15,4,11,14,5,2,11,6,9,10,11,9,7,10,4,1,0,3,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"9\", \"13\", \"8\"], \"clip_start\": 753.0, \"clip_end\": 758.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,10,4,13,2,7,15,6,0,14,10,0,0,10,1,7,12,12,0,2,8,13,5,4,11,14,8,5,0,5,13,14,7,15,4,13,4,10,15,2,11,4,7,2,1,12,14,4,11,5,0,0,6,6,14,1,14,9,9,10,9,5,15,10,3,9,11,14,13,3,7,3,2,2,8,2,14,3,11,10,6,14,13,9,12,10,3,11,10,15,0,4,15,0,2,13,10,9,10,1,2,12,1,4,9,1,9,15,9,6,12,11,2,11,11,4,8,0,5,13,6,11,9,10,5,2,13,7,13,3,12,15,13,13,8,4,14,4,6,13,13,15,15,8,8,5,11,11,5,4,15,3,8,4,10,8,1,2,15,12,9,10,15,10,9,15,9,8,5,12,11,4,4,3,0,0,5,1,11,3,7,2,3,10,3,12,3,9,9,11,11,13,9,4,11,15,3,1,15,4,0,7,12,15,7,14,11,13,0,12,1,8,3,2,8,4,14,2,14,2,8,10,8,9,7,6,7,10,0,8,11,12,12,0,8,13,15,5,8,0,13,5,5,6,3,0,9,3,12,4,3,6,2,10,3,7,11,3,10,9,8,4,12,4,2,8,9,12,8,9,13,10,14,15,13,0,6,0,0,7,12,12,5,3,3,11,5,10,13,10,11,14,4,4,14,12,4,4,10,5,1,2,8,1,11,3,0,5,7,12,0,7,1,5,7,1,9,13,1,2,4,5,5,7,13,15,10,12,14,11,15,12,0,9,0,2,2,1,13,9,11,13,13,8,1,0,5,6,9,11,7,9,0,4,3,9,12,11,0,2,7,1,3,13,1,8,4,7,10,8,2,11,6,9,0,11,1,14,7,5,2,15,8,12,3,4,2,7,1,1,10,11,14,0,1,11,6,6,13,8,11,15,12,10,1,7,4,8,13,11,4,13,10,6,7,15,2,6,9,5,2,13,5,0,3,12,11,7,6,3,8,6,11,3,0,9,2,9,15,10,0,2,1,15,5,3,9,8,4,4,2,8,13,13,12,3,3,3,1,2,6,6,6,8,12,11,6,7,14,9,2,5,8,4,4,12,1,14,9,0,9,5,3,4,3,8,6,10,14,1,10,6,14,1,0,8,15,0,1,2,3,9,7,10,4,5,3,7,12,9,8,8,13,14,12,12,13,2,14,11,14,13,1,6,2,14,14,4,5,6,5,9,7,1,4,13,10,5,4,10,5,2,14,3,13,8,11,12,2,2,2,6,14,3,1,14,2,15,3,1,15,3,9,10,15,11,15,9,9,1,7,15,9,15,8,2,10,12,13,9,10,4,13,12,9,6,5,3,11,4,3,6,7,13,12,5,13,9,1,7,4,14,7,11,4,3,5,14,3,4,3,4,2,5,4,8,15,3,15,15,15,9,11,4,10,15,10,12,5,14,5,7,4,3,15,13,4,9,1,5,14,6,6,13,1,12,12,11,1,4,4,2,2,13,6,8,6,15,13,0,11,14,10,13,6,0,3,13,3,7,5,4,9,1,4,10,12,8,0,6,12,6,5,10,5,0,12,8,11,12,8,5,15,15,11,12,4,2,8,3,12,15,7,4,11,13,2,7,8,1,15,5,14,10,14,4,12,14,9,2,5,8,8,14,8,2,15,12,13,5,6,9,3,0,10,12,10,14,8,5,3,0,7,6,7,9,12,9,11,11,10,0,3,7,0,9,13,8,9,11,14,3,2,7,10,0,15,15,10,14,1,2,5,6,4,15,13,4,6,15,12,1,8,11,9,5,9,7,0,14,9,10,5,13,2,8,7,4,4,10,5,8,1,8,1,0,5,14,7,15,7,2,9,6,13,8,0,8,6,2,12,5,11,15,12,5,11,3,3,8,4,2,11,10,6,15,15,7,0,9,12,3,6,10,7,10,0,4,8,6,10,8,9,3,1,4,10,13,11,4,1,14,6,7,2,2,1,4,11,1,11,5,0,4,7,11,10,3,13,7,8,3,3,15,4,4,14,7,14,9,5,10,8,5,6,2,14,15,11,11,6,11,10,7,3,10,8,8,0,4,9,0,1,15,7,1,15,8,6,11,11,6,6,11,11,3,2,4,7,4,10,15,15,12,5,13,14,11,15,1,8,11,9,4,4,6,7,3,10,5,7,8,13,0,8,7,1,10,3,0,10,15,6,4,2,14,8,12,7,14,13,11,10,14,2,3,4,4,9,14,6,3,3,2,11,15,5,7,8,2,13,9,2,6,3,6,2,6,4,2,13,10,13,2,2,15,4,11,14,5,2,11,6,9,10,11,9,7,10,4,1,0,3,0", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"2\", \"11\", \"6\", \"8\"], \"clip_start\": 869.0, \"clip_end\": 875.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,5,2,8,9,15,7,7,6,10,11,15,11,2,12,5,3,8,0,11,11,2,4,12,15,8,12,12,11,8,15,4,11,2,0,3,1,8,1,12,6,8,3,14,0,15,10,8,8,3,5,7,1,13,10,7,1,9,3,12,13,12,5,11,8,12,14,13,0,9,13,10,0,12,10,5,4,2,0,7,7,2,4,15,14,3,5,6,11,2,15,13,14,3,5,15,13,5,3,4,0,3,3,14,8,14,12,13,15,14,9,7,15,15,10,13,6,7,8,6,11,2,14,15,11,14,10,13,14,12,5,12,2,6,12,2,11,11,8,5,6,12,6,15,12,5,2,14,9,14,1,10,13,5,2,3,15,8,2,1,13,13,5,10,9,11,13,14,7,3,5,11,6,13,10,8,1,15,0,3,2,3,3,6,1,9,8,8,9,11,6,15,11,1,9,6,13,2,4,5,14,2,7,9,13,5,14,6,15,14,9,5,0,4,3,8,10,9,3,4,3,13,8,1,11,9,6,1,8,3,14,7,6,15,0,8,5,12,0,12,11,14,11,13,3,12,11,13,9,1,12,4,1,1,0,2,10,2,1,4,12,12,13,11,14,5,15,11,5,6,15,11,5,10,9,8,5,9,6,13,7,3,0,3,6,14,14,14,14,4,12,7,0,0,13,5,9,3,2,4,2,0,15,14,13,14,5,5,1,3,7,11,1,6,14,6,10,12,7,13,4,1,5,12,2,11,1,3,2,10,0,2,10,13,11,6,5,4,4,11,15,0,9,9,8,2,1,15,6,4,13,0,15,0,5,6,12,3,2,12,12,4,4,15,1,13,9,2,1,1,5,11,6,5,5,7,9,14,14,5,7,8,6,2,1,11,14,8,12,6,7,3,8,3,11,6,13,4,4,2,8,12,7,0,14,1,10,10,0,5,7,14,14,1,4,5,8,7,14,1,1,0,3,4,5,1,14,3,2,7,1,5,13,8,8,0,14,14,8,14,7,11,9,5,15,11,9,7,3,7,12,3,0,1,2,9,7,15,3,4,15,5,8,1,8,10,10,14,10,5,5,7,4,2,12,7,7,10,2,14,10,5,13,1,8,2,10,15,9,9,6,3,15,3,5,7,15,7,4,11,7,2,2,0,2,5,5,7,0,9,13,7,12,5,3,1,4,3,15,15,6,5,10,6,12,0,5,14,4,6,9,3,6,4,13,14,4,5,5,2,0,2,14,2,14,1,10,11,15,7,10,5,11,9,5,3,0,7,1,1,0,1,2,12,8,5,1,14,11,11,11,2,9,3,12,7,15,13,6,10,8,3,11,9,6,6,13,7,13,11,5,10,15,0,13,10,15,9,7,5,1,11,12,1,10,5,0,2,6,7,13,14,0,8,14,1,8,13,6,7,0,10,11,0,14,11,1,13,3,0,1,15,8,3,8,2,0,10,13,6,13,7,7,7,15,15,10,5,7,14,7,3,9,1,3,5,1,6,14,0,7,14,9,10,15,14,8,1,15,15,0,1,1,13,2,11,11,10,4,14,9,13,10,3,6,9,0,5,9,4,4,10,7,1,5,7,9,10,7,9,8,13,1,10,14,6,5,7,2,14,14,13,5,8,4,15,12,1,3,9,7,15,7,11,6,6,12,11,5,6,15,13,11,11,6,5,3,11,3,11,3,7,15,7,5,9,5,13,15,7,13,8,1,12,13,14,4,2,13,4,5,2,3,8,4,3,8,2,6,11,5,12,4,13,7,15,9,3,6,11,10,11,12,7,10,6,1,10,13,12,7,12,9,2,2,5,13,4,4,10,4,14,14,2,0,12,6,13,14,2,4,10,3,15,13,1,5,7,9,10,11,2,6,7,8,15,4,13,14,4,11,5,12,8,6,14,15,4,9,5,1,15,11,7,14,6,15,3,8,3,9,0,2,3,12,4,3,7,3,15,8,9,6,10,15,8,6,5,8,11,2,11,6,8,14,2,6,6,6,7,7,1,1,0,0,15,5,7,14,15,3,5,3,7,8,7,2,5,13,2,4,14,2,3,11,1,1,2,2,1,9,7,6,0,15,8,10,12,9,0,14,0,9,12,0,9,13,1,8,1,1,14,4,5,15,6,0,11,11,12,2,10,10,8,5,13,9,10,14,9,11,10,15,7,6,5,0,0,5,5,0,15,3,2,12,13,0,10,12,10,12,4,9,5,8,15,1,4,10,0,8,5,15,4,0,14,15,11,15,7,13,5,8,10,3,11,7,9,13,8,2,9,0,13,9,8,7,10,9,12,13,15,1,0,14,6,2,4,10,11,9,2,6", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"6\", \"1\"], \"clip_start\": 183.0, \"clip_end\": 186.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,5,2,8,9,15,7,7,6,10,11,15,11,2,12,5,3,8,0,11,11,2,4,12,15,8,12,12,11,8,15,4,11,2,0,3,1,8,1,12,6,8,3,14,0,15,10,8,8,3,5,7,1,13,10,7,1,9,3,12,13,12,5,11,8,12,14,13,0,9,13,10,0,12,10,5,4,2,0,7,7,2,4,15,14,3,5,6,11,2,15,13,14,3,5,15,13,5,3,4,0,3,3,14,8,14,12,13,15,14,9,7,15,15,10,13,6,7,8,6,11,2,14,15,11,14,10,13,14,12,5,12,2,6,12,2,11,11,8,5,6,12,6,15,12,5,2,14,9,14,1,10,13,5,2,3,15,8,2,1,13,13,5,10,9,11,13,14,7,3,5,11,6,13,10,8,1,15,0,3,2,3,3,6,1,9,8,8,9,11,6,15,11,1,9,6,13,2,4,5,14,2,7,9,13,5,14,6,15,14,9,5,0,4,3,8,10,9,3,4,3,13,8,1,11,9,6,1,8,3,14,7,6,15,0,8,5,12,0,12,11,14,11,13,3,12,11,13,9,1,12,4,1,1,0,2,10,2,1,4,12,12,13,11,14,5,15,11,5,6,15,11,5,10,9,8,5,9,6,13,7,3,0,3,6,14,14,14,14,4,12,7,0,0,13,5,9,3,2,4,2,0,15,14,13,14,5,5,1,3,7,11,1,6,14,6,10,12,7,13,4,1,5,12,2,11,1,3,2,10,0,2,10,13,11,6,5,4,4,11,15,0,9,9,8,2,1,15,6,4,13,0,15,0,5,6,12,3,2,12,12,4,4,15,1,13,9,2,1,1,5,11,6,5,5,7,9,14,14,5,7,8,6,2,1,11,14,8,12,6,7,3,8,3,11,6,13,4,4,2,8,12,7,0,14,1,10,10,0,5,7,14,14,1,4,5,8,7,14,1,1,0,3,4,5,1,14,3,2,7,1,5,13,8,8,0,14,14,8,14,7,11,9,5,15,11,9,7,3,7,12,3,0,1,2,9,7,15,3,4,15,5,8,1,8,10,10,14,10,5,5,7,4,2,12,7,7,10,2,14,10,5,13,1,8,2,10,15,9,9,6,3,15,3,5,7,15,7,4,11,7,2,2,0,2,5,5,7,0,9,13,7,12,5,3,1,4,3,15,15,6,5,10,6,12,0,5,14,4,6,9,3,6,4,13,14,4,5,5,2,0,2,14,2,14,1,10,11,15,7,10,5,11,9,5,3,0,7,1,1,0,1,2,12,8,5,1,14,11,11,11,2,9,3,12,7,15,13,6,10,8,3,11,9,6,6,13,7,13,11,5,10,15,0,13,10,15,9,7,5,1,11,12,1,10,5,0,2,6,7,13,14,0,8,14,1,8,13,6,7,0,10,11,0,14,11,1,13,3,0,1,15,8,3,8,2,0,10,13,6,13,7,7,7,15,15,10,5,7,14,7,3,9,1,3,5,1,6,14,0,7,14,9,10,15,14,8,1,15,15,0,1,1,13,2,11,11,10,4,14,9,13,10,3,6,9,0,5,9,4,4,10,7,1,5,7,9,10,7,9,8,13,1,10,14,6,5,7,2,14,14,13,5,8,4,15,12,1,3,9,7,15,7,11,6,6,12,11,5,6,15,13,11,11,6,5,3,11,3,11,3,7,15,7,5,9,5,13,15,7,13,8,1,12,13,14,4,2,13,4,5,2,3,8,4,3,8,2,6,11,5,12,4,13,7,15,9,3,6,11,10,11,12,7,10,6,1,10,13,12,7,12,9,2,2,5,13,4,4,10,4,14,14,2,0,12,6,13,14,2,4,10,3,15,13,1,5,7,9,10,11,2,6,7,8,15,4,13,14,4,11,5,12,8,6,14,15,4,9,5,1,15,11,7,14,6,15,3,8,3,9,0,2,3,12,4,3,7,3,15,8,9,6,10,15,8,6,5,8,11,2,11,6,8,14,2,6,6,6,7,7,1,1,0,0,15,5,7,14,15,3,5,3,7,8,7,2,5,13,2,4,14,2,3,11,1,1,2,2,1,9,7,6,0,15,8,10,12,9,0,14,0,9,12,0,9,13,1,8,1,1,14,4,5,15,6,0,11,11,12,2,10,10,8,5,13,9,10,14,9,11,10,15,7,6,5,0,0,5,5,0,15,3,2,12,13,0,10,12,10,12,4,9,5,8,15,1,4,10,0,8,5,15,4,0,14,15,11,15,7,13,5,8,10,3,11,7,9,13,8,2,9,0,13,9,8,7,10,9,12,13,15,1,0,14,6,2,4,10,11,9,2,6", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"9\"], \"clip_start\": 458.0, \"clip_end\": 462.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q2_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,5,2,8,9,15,7,7,6,10,11,15,11,2,12,5,3,8,0,11,11,2,4,12,15,8,12,12,11,8,15,4,11,2,0,3,1,8,1,12,6,8,3,14,0,15,10,8,8,3,5,7,1,13,10,7,1,9,3,12,13,12,5,11,8,12,14,13,0,9,13,10,0,12,10,5,4,2,0,7,7,2,4,15,14,3,5,6,11,2,15,13,14,3,5,15,13,5,3,4,0,3,3,14,8,14,12,13,15,14,9,7,15,15,10,13,6,7,8,6,11,2,14,15,11,14,10,13,14,12,5,12,2,6,12,2,11,11,8,5,6,12,6,15,12,5,2,14,9,14,1,10,13,5,2,3,15,8,2,1,13,13,5,10,9,11,13,14,7,3,5,11,6,13,10,8,1,15,0,3,2,3,3,6,1,9,8,8,9,11,6,15,11,1,9,6,13,2,4,5,14,2,7,9,13,5,14,6,15,14,9,5,0,4,3,8,10,9,3,4,3,13,8,1,11,9,6,1,8,3,14,7,6,15,0,8,5,12,0,12,11,14,11,13,3,12,11,13,9,1,12,4,1,1,0,2,10,2,1,4,12,12,13,11,14,5,15,11,5,6,15,11,5,10,9,8,5,9,6,13,7,3,0,3,6,14,14,14,14,4,12,7,0,0,13,5,9,3,2,4,2,0,15,14,13,14,5,5,1,3,7,11,1,6,14,6,10,12,7,13,4,1,5,12,2,11,1,3,2,10,0,2,10,13,11,6,5,4,4,11,15,0,9,9,8,2,1,15,6,4,13,0,15,0,5,6,12,3,2,12,12,4,4,15,1,13,9,2,1,1,5,11,6,5,5,7,9,14,14,5,7,8,6,2,1,11,14,8,12,6,7,3,8,3,11,6,13,4,4,2,8,12,7,0,14,1,10,10,0,5,7,14,14,1,4,5,8,7,14,1,1,0,3,4,5,1,14,3,2,7,1,5,13,8,8,0,14,14,8,14,7,11,9,5,15,11,9,7,3,7,12,3,0,1,2,9,7,15,3,4,15,5,8,1,8,10,10,14,10,5,5,7,4,2,12,7,7,10,2,14,10,5,13,1,8,2,10,15,9,9,6,3,15,3,5,7,15,7,4,11,7,2,2,0,2,5,5,7,0,9,13,7,12,5,3,1,4,3,15,15,6,5,10,6,12,0,5,14,4,6,9,3,6,4,13,14,4,5,5,2,0,2,14,2,14,1,10,11,15,7,10,5,11,9,5,3,0,7,1,1,0,1,2,12,8,5,1,14,11,11,11,2,9,3,12,7,15,13,6,10,8,3,11,9,6,6,13,7,13,11,5,10,15,0,13,10,15,9,7,5,1,11,12,1,10,5,0,2,6,7,13,14,0,8,14,1,8,13,6,7,0,10,11,0,14,11,1,13,3,0,1,15,8,3,8,2,0,10,13,6,13,7,7,7,15,15,10,5,7,14,7,3,9,1,3,5,1,6,14,0,7,14,9,10,15,14,8,1,15,15,0,1,1,13,2,11,11,10,4,14,9,13,10,3,6,9,0,5,9,4,4,10,7,1,5,7,9,10,7,9,8,13,1,10,14,6,5,7,2,14,14,13,5,8,4,15,12,1,3,9,7,15,7,11,6,6,12,11,5,6,15,13,11,11,6,5,3,11,3,11,3,7,15,7,5,9,5,13,15,7,13,8,1,12,13,14,4,2,13,4,5,2,3,8,4,3,8,2,6,11,5,12,4,13,7,15,9,3,6,11,10,11,12,7,10,6,1,10,13,12,7,12,9,2,2,5,13,4,4,10,4,14,14,2,0,12,6,13,14,2,4,10,3,15,13,1,5,7,9,10,11,2,6,7,8,15,4,13,14,4,11,5,12,8,6,14,15,4,9,5,1,15,11,7,14,6,15,3,8,3,9,0,2,3,12,4,3,7,3,15,8,9,6,10,15,8,6,5,8,11,2,11,6,8,14,2,6,6,6,7,7,1,1,0,0,15,5,7,14,15,3,5,3,7,8,7,2,5,13,2,4,14,2,3,11,1,1,2,2,1,9,7,6,0,15,8,10,12,9,0,14,0,9,12,0,9,13,1,8,1,1,14,4,5,15,6,0,11,11,12,2,10,10,8,5,13,9,10,14,9,11,10,15,7,6,5,0,0,5,5,0,15,3,2,12,13,0,10,12,10,12,4,9,5,8,15,1,4,10,0,8,5,15,4,0,14,15,11,15,7,13,5,8,10,3,11,7,9,13,8,2,9,0,13,9,8,7,10,9,12,13,15,1,0,14,6,2,4,10,11,9,2,6", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"15\", \"9\"], \"clip_start\": 524.0, \"clip_end\": 527.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q3_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,5,2,8,9,15,7,7,6,10,11,15,11,2,12,5,3,8,0,11,11,2,4,12,15,8,12,12,11,8,15,4,11,2,0,3,1,8,1,12,6,8,3,14,0,15,10,8,8,3,5,7,1,13,10,7,1,9,3,12,13,12,5,11,8,12,14,13,0,9,13,10,0,12,10,5,4,2,0,7,7,2,4,15,14,3,5,6,11,2,15,13,14,3,5,15,13,5,3,4,0,3,3,14,8,14,12,13,15,14,9,7,15,15,10,13,6,7,8,6,11,2,14,15,11,14,10,13,14,12,5,12,2,6,12,2,11,11,8,5,6,12,6,15,12,5,2,14,9,14,1,10,13,5,2,3,15,8,2,1,13,13,5,10,9,11,13,14,7,3,5,11,6,13,10,8,1,15,0,3,2,3,3,6,1,9,8,8,9,11,6,15,11,1,9,6,13,2,4,5,14,2,7,9,13,5,14,6,15,14,9,5,0,4,3,8,10,9,3,4,3,13,8,1,11,9,6,1,8,3,14,7,6,15,0,8,5,12,0,12,11,14,11,13,3,12,11,13,9,1,12,4,1,1,0,2,10,2,1,4,12,12,13,11,14,5,15,11,5,6,15,11,5,10,9,8,5,9,6,13,7,3,0,3,6,14,14,14,14,4,12,7,0,0,13,5,9,3,2,4,2,0,15,14,13,14,5,5,1,3,7,11,1,6,14,6,10,12,7,13,4,1,5,12,2,11,1,3,2,10,0,2,10,13,11,6,5,4,4,11,15,0,9,9,8,2,1,15,6,4,13,0,15,0,5,6,12,3,2,12,12,4,4,15,1,13,9,2,1,1,5,11,6,5,5,7,9,14,14,5,7,8,6,2,1,11,14,8,12,6,7,3,8,3,11,6,13,4,4,2,8,12,7,0,14,1,10,10,0,5,7,14,14,1,4,5,8,7,14,1,1,0,3,4,5,1,14,3,2,7,1,5,13,8,8,0,14,14,8,14,7,11,9,5,15,11,9,7,3,7,12,3,0,1,2,9,7,15,3,4,15,5,8,1,8,10,10,14,10,5,5,7,4,2,12,7,7,10,2,14,10,5,13,1,8,2,10,15,9,9,6,3,15,3,5,7,15,7,4,11,7,2,2,0,2,5,5,7,0,9,13,7,12,5,3,1,4,3,15,15,6,5,10,6,12,0,5,14,4,6,9,3,6,4,13,14,4,5,5,2,0,2,14,2,14,1,10,11,15,7,10,5,11,9,5,3,0,7,1,1,0,1,2,12,8,5,1,14,11,11,11,2,9,3,12,7,15,13,6,10,8,3,11,9,6,6,13,7,13,11,5,10,15,0,13,10,15,9,7,5,1,11,12,1,10,5,0,2,6,7,13,14,0,8,14,1,8,13,6,7,0,10,11,0,14,11,1,13,3,0,1,15,8,3,8,2,0,10,13,6,13,7,7,7,15,15,10,5,7,14,7,3,9,1,3,5,1,6,14,0,7,14,9,10,15,14,8,1,15,15,0,1,1,13,2,11,11,10,4,14,9,13,10,3,6,9,0,5,9,4,4,10,7,1,5,7,9,10,7,9,8,13,1,10,14,6,5,7,2,14,14,13,5,8,4,15,12,1,3,9,7,15,7,11,6,6,12,11,5,6,15,13,11,11,6,5,3,11,3,11,3,7,15,7,5,9,5,13,15,7,13,8,1,12,13,14,4,2,13,4,5,2,3,8,4,3,8,2,6,11,5,12,4,13,7,15,9,3,6,11,10,11,12,7,10,6,1,10,13,12,7,12,9,2,2,5,13,4,4,10,4,14,14,2,0,12,6,13,14,2,4,10,3,15,13,1,5,7,9,10,11,2,6,7,8,15,4,13,14,4,11,5,12,8,6,14,15,4,9,5,1,15,11,7,14,6,15,3,8,3,9,0,2,3,12,4,3,7,3,15,8,9,6,10,15,8,6,5,8,11,2,11,6,8,14,2,6,6,6,7,7,1,1,0,0,15,5,7,14,15,3,5,3,7,8,7,2,5,13,2,4,14,2,3,11,1,1,2,2,1,9,7,6,0,15,8,10,12,9,0,14,0,9,12,0,9,13,1,8,1,1,14,4,5,15,6,0,11,11,12,2,10,10,8,5,13,9,10,14,9,11,10,15,7,6,5,0,0,5,5,0,15,3,2,12,13,0,10,12,10,12,4,9,5,8,15,1,4,10,0,8,5,15,4,0,14,15,11,15,7,13,5,8,10,3,11,7,9,13,8,2,9,0,13,9,8,7,10,9,12,13,15,1,0,14,6,2,4,10,11,9,2,6", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"11\", \"2\", \"4\", \"12\"], \"clip_start\": 20.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q4_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,5,2,8,9,15,7,7,6,10,11,15,11,2,12,5,3,8,0,11,11,2,4,12,15,8,12,12,11,8,15,4,11,2,0,3,1,8,1,12,6,8,3,14,0,15,10,8,8,3,5,7,1,13,10,7,1,9,3,12,13,12,5,11,8,12,14,13,0,9,13,10,0,12,10,5,4,2,0,7,7,2,4,15,14,3,5,6,11,2,15,13,14,3,5,15,13,5,3,4,0,3,3,14,8,14,12,13,15,14,9,7,15,15,10,13,6,7,8,6,11,2,14,15,11,14,10,13,14,12,5,12,2,6,12,2,11,11,8,5,6,12,6,15,12,5,2,14,9,14,1,10,13,5,2,3,15,8,2,1,13,13,5,10,9,11,13,14,7,3,5,11,6,13,10,8,1,15,0,3,2,3,3,6,1,9,8,8,9,11,6,15,11,1,9,6,13,2,4,5,14,2,7,9,13,5,14,6,15,14,9,5,0,4,3,8,10,9,3,4,3,13,8,1,11,9,6,1,8,3,14,7,6,15,0,8,5,12,0,12,11,14,11,13,3,12,11,13,9,1,12,4,1,1,0,2,10,2,1,4,12,12,13,11,14,5,15,11,5,6,15,11,5,10,9,8,5,9,6,13,7,3,0,3,6,14,14,14,14,4,12,7,0,0,13,5,9,3,2,4,2,0,15,14,13,14,5,5,1,3,7,11,1,6,14,6,10,12,7,13,4,1,5,12,2,11,1,3,2,10,0,2,10,13,11,6,5,4,4,11,15,0,9,9,8,2,1,15,6,4,13,0,15,0,5,6,12,3,2,12,12,4,4,15,1,13,9,2,1,1,5,11,6,5,5,7,9,14,14,5,7,8,6,2,1,11,14,8,12,6,7,3,8,3,11,6,13,4,4,2,8,12,7,0,14,1,10,10,0,5,7,14,14,1,4,5,8,7,14,1,1,0,3,4,5,1,14,3,2,7,1,5,13,8,8,0,14,14,8,14,7,11,9,5,15,11,9,7,3,7,12,3,0,1,2,9,7,15,3,4,15,5,8,1,8,10,10,14,10,5,5,7,4,2,12,7,7,10,2,14,10,5,13,1,8,2,10,15,9,9,6,3,15,3,5,7,15,7,4,11,7,2,2,0,2,5,5,7,0,9,13,7,12,5,3,1,4,3,15,15,6,5,10,6,12,0,5,14,4,6,9,3,6,4,13,14,4,5,5,2,0,2,14,2,14,1,10,11,15,7,10,5,11,9,5,3,0,7,1,1,0,1,2,12,8,5,1,14,11,11,11,2,9,3,12,7,15,13,6,10,8,3,11,9,6,6,13,7,13,11,5,10,15,0,13,10,15,9,7,5,1,11,12,1,10,5,0,2,6,7,13,14,0,8,14,1,8,13,6,7,0,10,11,0,14,11,1,13,3,0,1,15,8,3,8,2,0,10,13,6,13,7,7,7,15,15,10,5,7,14,7,3,9,1,3,5,1,6,14,0,7,14,9,10,15,14,8,1,15,15,0,1,1,13,2,11,11,10,4,14,9,13,10,3,6,9,0,5,9,4,4,10,7,1,5,7,9,10,7,9,8,13,1,10,14,6,5,7,2,14,14,13,5,8,4,15,12,1,3,9,7,15,7,11,6,6,12,11,5,6,15,13,11,11,6,5,3,11,3,11,3,7,15,7,5,9,5,13,15,7,13,8,1,12,13,14,4,2,13,4,5,2,3,8,4,3,8,2,6,11,5,12,4,13,7,15,9,3,6,11,10,11,12,7,10,6,1,10,13,12,7,12,9,2,2,5,13,4,4,10,4,14,14,2,0,12,6,13,14,2,4,10,3,15,13,1,5,7,9,10,11,2,6,7,8,15,4,13,14,4,11,5,12,8,6,14,15,4,9,5,1,15,11,7,14,6,15,3,8,3,9,0,2,3,12,4,3,7,3,15,8,9,6,10,15,8,6,5,8,11,2,11,6,8,14,2,6,6,6,7,7,1,1,0,0,15,5,7,14,15,3,5,3,7,8,7,2,5,13,2,4,14,2,3,11,1,1,2,2,1,9,7,6,0,15,8,10,12,9,0,14,0,9,12,0,9,13,1,8,1,1,14,4,5,15,6,0,11,11,12,2,10,10,8,5,13,9,10,14,9,11,10,15,7,6,5,0,0,5,5,0,15,3,2,12,13,0,10,12,10,12,4,9,5,8,15,1,4,10,0,8,5,15,4,0,14,15,11,15,7,13,5,8,10,3,11,7,9,13,8,2,9,0,13,9,8,7,10,9,12,13,15,1,0,14,6,2,4,10,11,9,2,6", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"12\", \"6\", \"8\", \"3\"], \"clip_start\": 38.0, \"clip_end\": 44.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,5,2,8,9,15,7,7,6,10,11,15,11,2,12,5,3,8,0,11,11,2,4,12,15,8,12,12,11,8,15,4,11,2,0,3,1,8,1,12,6,8,3,14,0,15,10,8,8,3,5,7,1,13,10,7,1,9,3,12,13,12,5,11,8,12,14,13,0,9,13,10,0,12,10,5,4,2,0,7,7,2,4,15,14,3,5,6,11,2,15,13,14,3,5,15,13,5,3,4,0,3,3,14,8,14,12,13,15,14,9,7,15,15,10,13,6,7,8,6,11,2,14,15,11,14,10,13,14,12,5,12,2,6,12,2,11,11,8,5,6,12,6,15,12,5,2,14,9,14,1,10,13,5,2,3,15,8,2,1,13,13,5,10,9,11,13,14,7,3,5,11,6,13,10,8,1,15,0,3,2,3,3,6,1,9,8,8,9,11,6,15,11,1,9,6,13,2,4,5,14,2,7,9,13,5,14,6,15,14,9,5,0,4,3,8,10,9,3,4,3,13,8,1,11,9,6,1,8,3,14,7,6,15,0,8,5,12,0,12,11,14,11,13,3,12,11,13,9,1,12,4,1,1,0,2,10,2,1,4,12,12,13,11,14,5,15,11,5,6,15,11,5,10,9,8,5,9,6,13,7,3,0,3,6,14,14,14,14,4,12,7,0,0,13,5,9,3,2,4,2,0,15,14,13,14,5,5,1,3,7,11,1,6,14,6,10,12,7,13,4,1,5,12,2,11,1,3,2,10,0,2,10,13,11,6,5,4,4,11,15,0,9,9,8,2,1,15,6,4,13,0,15,0,5,6,12,3,2,12,12,4,4,15,1,13,9,2,1,1,5,11,6,5,5,7,9,14,14,5,7,8,6,2,1,11,14,8,12,6,7,3,8,3,11,6,13,4,4,2,8,12,7,0,14,1,10,10,0,5,7,14,14,1,4,5,8,7,14,1,1,0,3,4,5,1,14,3,2,7,1,5,13,8,8,0,14,14,8,14,7,11,9,5,15,11,9,7,3,7,12,3,0,1,2,9,7,15,3,4,15,5,8,1,8,10,10,14,10,5,5,7,4,2,12,7,7,10,2,14,10,5,13,1,8,2,10,15,9,9,6,3,15,3,5,7,15,7,4,11,7,2,2,0,2,5,5,7,0,9,13,7,12,5,3,1,4,3,15,15,6,5,10,6,12,0,5,14,4,6,9,3,6,4,13,14,4,5,5,2,0,2,14,2,14,1,10,11,15,7,10,5,11,9,5,3,0,7,1,1,0,1,2,12,8,5,1,14,11,11,11,2,9,3,12,7,15,13,6,10,8,3,11,9,6,6,13,7,13,11,5,10,15,0,13,10,15,9,7,5,1,11,12,1,10,5,0,2,6,7,13,14,0,8,14,1,8,13,6,7,0,10,11,0,14,11,1,13,3,0,1,15,8,3,8,2,0,10,13,6,13,7,7,7,15,15,10,5,7,14,7,3,9,1,3,5,1,6,14,0,7,14,9,10,15,14,8,1,15,15,0,1,1,13,2,11,11,10,4,14,9,13,10,3,6,9,0,5,9,4,4,10,7,1,5,7,9,10,7,9,8,13,1,10,14,6,5,7,2,14,14,13,5,8,4,15,12,1,3,9,7,15,7,11,6,6,12,11,5,6,15,13,11,11,6,5,3,11,3,11,3,7,15,7,5,9,5,13,15,7,13,8,1,12,13,14,4,2,13,4,5,2,3,8,4,3,8,2,6,11,5,12,4,13,7,15,9,3,6,11,10,11,12,7,10,6,1,10,13,12,7,12,9,2,2,5,13,4,4,10,4,14,14,2,0,12,6,13,14,2,4,10,3,15,13,1,5,7,9,10,11,2,6,7,8,15,4,13,14,4,11,5,12,8,6,14,15,4,9,5,1,15,11,7,14,6,15,3,8,3,9,0,2,3,12,4,3,7,3,15,8,9,6,10,15,8,6,5,8,11,2,11,6,8,14,2,6,6,6,7,7,1,1,0,0,15,5,7,14,15,3,5,3,7,8,7,2,5,13,2,4,14,2,3,11,1,1,2,2,1,9,7,6,0,15,8,10,12,9,0,14,0,9,12,0,9,13,1,8,1,1,14,4,5,15,6,0,11,11,12,2,10,10,8,5,13,9,10,14,9,11,10,15,7,6,5,0,0,5,5,0,15,3,2,12,13,0,10,12,10,12,4,9,5,8,15,1,4,10,0,8,5,15,4,0,14,15,11,15,7,13,5,8,10,3,11,7,9,13,8,2,9,0,13,9,8,7,10,9,12,13,15,1,0,14,6,2,4,10,11,9,2,6", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"2\", \"2\", \"5\", \"13\", \"4\"], \"clip_start\": 793.0, \"clip_end\": 799.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,5,2,8,9,15,7,7,6,10,11,15,11,2,12,5,3,8,0,11,11,2,4,12,15,8,12,12,11,8,15,4,11,2,0,3,1,8,1,12,6,8,3,14,0,15,10,8,8,3,5,7,1,13,10,7,1,9,3,12,13,12,5,11,8,12,14,13,0,9,13,10,0,12,10,5,4,2,0,7,7,2,4,15,14,3,5,6,11,2,15,13,14,3,5,15,13,5,3,4,0,3,3,14,8,14,12,13,15,14,9,7,15,15,10,13,6,7,8,6,11,2,14,15,11,14,10,13,14,12,5,12,2,6,12,2,11,11,8,5,6,12,6,15,12,5,2,14,9,14,1,10,13,5,2,3,15,8,2,1,13,13,5,10,9,11,13,14,7,3,5,11,6,13,10,8,1,15,0,3,2,3,3,6,1,9,8,8,9,11,6,15,11,1,9,6,13,2,4,5,14,2,7,9,13,5,14,6,15,14,9,5,0,4,3,8,10,9,3,4,3,13,8,1,11,9,6,1,8,3,14,7,6,15,0,8,5,12,0,12,11,14,11,13,3,12,11,13,9,1,12,4,1,1,0,2,10,2,1,4,12,12,13,11,14,5,15,11,5,6,15,11,5,10,9,8,5,9,6,13,7,3,0,3,6,14,14,14,14,4,12,7,0,0,13,5,9,3,2,4,2,0,15,14,13,14,5,5,1,3,7,11,1,6,14,6,10,12,7,13,4,1,5,12,2,11,1,3,2,10,0,2,10,13,11,6,5,4,4,11,15,0,9,9,8,2,1,15,6,4,13,0,15,0,5,6,12,3,2,12,12,4,4,15,1,13,9,2,1,1,5,11,6,5,5,7,9,14,14,5,7,8,6,2,1,11,14,8,12,6,7,3,8,3,11,6,13,4,4,2,8,12,7,0,14,1,10,10,0,5,7,14,14,1,4,5,8,7,14,1,1,0,3,4,5,1,14,3,2,7,1,5,13,8,8,0,14,14,8,14,7,11,9,5,15,11,9,7,3,7,12,3,0,1,2,9,7,15,3,4,15,5,8,1,8,10,10,14,10,5,5,7,4,2,12,7,7,10,2,14,10,5,13,1,8,2,10,15,9,9,6,3,15,3,5,7,15,7,4,11,7,2,2,0,2,5,5,7,0,9,13,7,12,5,3,1,4,3,15,15,6,5,10,6,12,0,5,14,4,6,9,3,6,4,13,14,4,5,5,2,0,2,14,2,14,1,10,11,15,7,10,5,11,9,5,3,0,7,1,1,0,1,2,12,8,5,1,14,11,11,11,2,9,3,12,7,15,13,6,10,8,3,11,9,6,6,13,7,13,11,5,10,15,0,13,10,15,9,7,5,1,11,12,1,10,5,0,2,6,7,13,14,0,8,14,1,8,13,6,7,0,10,11,0,14,11,1,13,3,0,1,15,8,3,8,2,0,10,13,6,13,7,7,7,15,15,10,5,7,14,7,3,9,1,3,5,1,6,14,0,7,14,9,10,15,14,8,1,15,15,0,1,1,13,2,11,11,10,4,14,9,13,10,3,6,9,0,5,9,4,4,10,7,1,5,7,9,10,7,9,8,13,1,10,14,6,5,7,2,14,14,13,5,8,4,15,12,1,3,9,7,15,7,11,6,6,12,11,5,6,15,13,11,11,6,5,3,11,3,11,3,7,15,7,5,9,5,13,15,7,13,8,1,12,13,14,4,2,13,4,5,2,3,8,4,3,8,2,6,11,5,12,4,13,7,15,9,3,6,11,10,11,12,7,10,6,1,10,13,12,7,12,9,2,2,5,13,4,4,10,4,14,14,2,0,12,6,13,14,2,4,10,3,15,13,1,5,7,9,10,11,2,6,7,8,15,4,13,14,4,11,5,12,8,6,14,15,4,9,5,1,15,11,7,14,6,15,3,8,3,9,0,2,3,12,4,3,7,3,15,8,9,6,10,15,8,6,5,8,11,2,11,6,8,14,2,6,6,6,7,7,1,1,0,0,15,5,7,14,15,3,5,3,7,8,7,2,5,13,2,4,14,2,3,11,1,1,2,2,1,9,7,6,0,15,8,10,12,9,0,14,0,9,12,0,9,13,1,8,1,1,14,4,5,15,6,0,11,11,12,2,10,10,8,5,13,9,10,14,9,11,10,15,7,6,5,0,0,5,5,0,15,3,2,12,13,0,10,12,10,12,4,9,5,8,15,1,4,10,0,8,5,15,4,0,14,15,11,15,7,13,5,8,10,3,11,7,9,13,8,2,9,0,13,9,8,7,10,9,12,13,15,1,0,14,6,2,4,10,11,9,2,6", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"13\", \"15\", \"14\", \"9\"], \"clip_start\": 106.0, \"clip_end\": 112.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q7_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,5,2,8,9,15,7,7,6,10,11,15,11,2,12,5,3,8,0,11,11,2,4,12,15,8,12,12,11,8,15,4,11,2,0,3,1,8,1,12,6,8,3,14,0,15,10,8,8,3,5,7,1,13,10,7,1,9,3,12,13,12,5,11,8,12,14,13,0,9,13,10,0,12,10,5,4,2,0,7,7,2,4,15,14,3,5,6,11,2,15,13,14,3,5,15,13,5,3,4,0,3,3,14,8,14,12,13,15,14,9,7,15,15,10,13,6,7,8,6,11,2,14,15,11,14,10,13,14,12,5,12,2,6,12,2,11,11,8,5,6,12,6,15,12,5,2,14,9,14,1,10,13,5,2,3,15,8,2,1,13,13,5,10,9,11,13,14,7,3,5,11,6,13,10,8,1,15,0,3,2,3,3,6,1,9,8,8,9,11,6,15,11,1,9,6,13,2,4,5,14,2,7,9,13,5,14,6,15,14,9,5,0,4,3,8,10,9,3,4,3,13,8,1,11,9,6,1,8,3,14,7,6,15,0,8,5,12,0,12,11,14,11,13,3,12,11,13,9,1,12,4,1,1,0,2,10,2,1,4,12,12,13,11,14,5,15,11,5,6,15,11,5,10,9,8,5,9,6,13,7,3,0,3,6,14,14,14,14,4,12,7,0,0,13,5,9,3,2,4,2,0,15,14,13,14,5,5,1,3,7,11,1,6,14,6,10,12,7,13,4,1,5,12,2,11,1,3,2,10,0,2,10,13,11,6,5,4,4,11,15,0,9,9,8,2,1,15,6,4,13,0,15,0,5,6,12,3,2,12,12,4,4,15,1,13,9,2,1,1,5,11,6,5,5,7,9,14,14,5,7,8,6,2,1,11,14,8,12,6,7,3,8,3,11,6,13,4,4,2,8,12,7,0,14,1,10,10,0,5,7,14,14,1,4,5,8,7,14,1,1,0,3,4,5,1,14,3,2,7,1,5,13,8,8,0,14,14,8,14,7,11,9,5,15,11,9,7,3,7,12,3,0,1,2,9,7,15,3,4,15,5,8,1,8,10,10,14,10,5,5,7,4,2,12,7,7,10,2,14,10,5,13,1,8,2,10,15,9,9,6,3,15,3,5,7,15,7,4,11,7,2,2,0,2,5,5,7,0,9,13,7,12,5,3,1,4,3,15,15,6,5,10,6,12,0,5,14,4,6,9,3,6,4,13,14,4,5,5,2,0,2,14,2,14,1,10,11,15,7,10,5,11,9,5,3,0,7,1,1,0,1,2,12,8,5,1,14,11,11,11,2,9,3,12,7,15,13,6,10,8,3,11,9,6,6,13,7,13,11,5,10,15,0,13,10,15,9,7,5,1,11,12,1,10,5,0,2,6,7,13,14,0,8,14,1,8,13,6,7,0,10,11,0,14,11,1,13,3,0,1,15,8,3,8,2,0,10,13,6,13,7,7,7,15,15,10,5,7,14,7,3,9,1,3,5,1,6,14,0,7,14,9,10,15,14,8,1,15,15,0,1,1,13,2,11,11,10,4,14,9,13,10,3,6,9,0,5,9,4,4,10,7,1,5,7,9,10,7,9,8,13,1,10,14,6,5,7,2,14,14,13,5,8,4,15,12,1,3,9,7,15,7,11,6,6,12,11,5,6,15,13,11,11,6,5,3,11,3,11,3,7,15,7,5,9,5,13,15,7,13,8,1,12,13,14,4,2,13,4,5,2,3,8,4,3,8,2,6,11,5,12,4,13,7,15,9,3,6,11,10,11,12,7,10,6,1,10,13,12,7,12,9,2,2,5,13,4,4,10,4,14,14,2,0,12,6,13,14,2,4,10,3,15,13,1,5,7,9,10,11,2,6,7,8,15,4,13,14,4,11,5,12,8,6,14,15,4,9,5,1,15,11,7,14,6,15,3,8,3,9,0,2,3,12,4,3,7,3,15,8,9,6,10,15,8,6,5,8,11,2,11,6,8,14,2,6,6,6,7,7,1,1,0,0,15,5,7,14,15,3,5,3,7,8,7,2,5,13,2,4,14,2,3,11,1,1,2,2,1,9,7,6,0,15,8,10,12,9,0,14,0,9,12,0,9,13,1,8,1,1,14,4,5,15,6,0,11,11,12,2,10,10,8,5,13,9,10,14,9,11,10,15,7,6,5,0,0,5,5,0,15,3,2,12,13,0,10,12,10,12,4,9,5,8,15,1,4,10,0,8,5,15,4,0,14,15,11,15,7,13,5,8,10,3,11,7,9,13,8,2,9,0,13,9,8,7,10,9,12,13,15,1,0,14,6,2,4,10,11,9,2,6", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"12\", \"5\"], \"clip_start\": 13.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q8_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,5,2,8,9,15,7,7,6,10,11,15,11,2,12,5,3,8,0,11,11,2,4,12,15,8,12,12,11,8,15,4,11,2,0,3,1,8,1,12,6,8,3,14,0,15,10,8,8,3,5,7,1,13,10,7,1,9,3,12,13,12,5,11,8,12,14,13,0,9,13,10,0,12,10,5,4,2,0,7,7,2,4,15,14,3,5,6,11,2,15,13,14,3,5,15,13,5,3,4,0,3,3,14,8,14,12,13,15,14,9,7,15,15,10,13,6,7,8,6,11,2,14,15,11,14,10,13,14,12,5,12,2,6,12,2,11,11,8,5,6,12,6,15,12,5,2,14,9,14,1,10,13,5,2,3,15,8,2,1,13,13,5,10,9,11,13,14,7,3,5,11,6,13,10,8,1,15,0,3,2,3,3,6,1,9,8,8,9,11,6,15,11,1,9,6,13,2,4,5,14,2,7,9,13,5,14,6,15,14,9,5,0,4,3,8,10,9,3,4,3,13,8,1,11,9,6,1,8,3,14,7,6,15,0,8,5,12,0,12,11,14,11,13,3,12,11,13,9,1,12,4,1,1,0,2,10,2,1,4,12,12,13,11,14,5,15,11,5,6,15,11,5,10,9,8,5,9,6,13,7,3,0,3,6,14,14,14,14,4,12,7,0,0,13,5,9,3,2,4,2,0,15,14,13,14,5,5,1,3,7,11,1,6,14,6,10,12,7,13,4,1,5,12,2,11,1,3,2,10,0,2,10,13,11,6,5,4,4,11,15,0,9,9,8,2,1,15,6,4,13,0,15,0,5,6,12,3,2,12,12,4,4,15,1,13,9,2,1,1,5,11,6,5,5,7,9,14,14,5,7,8,6,2,1,11,14,8,12,6,7,3,8,3,11,6,13,4,4,2,8,12,7,0,14,1,10,10,0,5,7,14,14,1,4,5,8,7,14,1,1,0,3,4,5,1,14,3,2,7,1,5,13,8,8,0,14,14,8,14,7,11,9,5,15,11,9,7,3,7,12,3,0,1,2,9,7,15,3,4,15,5,8,1,8,10,10,14,10,5,5,7,4,2,12,7,7,10,2,14,10,5,13,1,8,2,10,15,9,9,6,3,15,3,5,7,15,7,4,11,7,2,2,0,2,5,5,7,0,9,13,7,12,5,3,1,4,3,15,15,6,5,10,6,12,0,5,14,4,6,9,3,6,4,13,14,4,5,5,2,0,2,14,2,14,1,10,11,15,7,10,5,11,9,5,3,0,7,1,1,0,1,2,12,8,5,1,14,11,11,11,2,9,3,12,7,15,13,6,10,8,3,11,9,6,6,13,7,13,11,5,10,15,0,13,10,15,9,7,5,1,11,12,1,10,5,0,2,6,7,13,14,0,8,14,1,8,13,6,7,0,10,11,0,14,11,1,13,3,0,1,15,8,3,8,2,0,10,13,6,13,7,7,7,15,15,10,5,7,14,7,3,9,1,3,5,1,6,14,0,7,14,9,10,15,14,8,1,15,15,0,1,1,13,2,11,11,10,4,14,9,13,10,3,6,9,0,5,9,4,4,10,7,1,5,7,9,10,7,9,8,13,1,10,14,6,5,7,2,14,14,13,5,8,4,15,12,1,3,9,7,15,7,11,6,6,12,11,5,6,15,13,11,11,6,5,3,11,3,11,3,7,15,7,5,9,5,13,15,7,13,8,1,12,13,14,4,2,13,4,5,2,3,8,4,3,8,2,6,11,5,12,4,13,7,15,9,3,6,11,10,11,12,7,10,6,1,10,13,12,7,12,9,2,2,5,13,4,4,10,4,14,14,2,0,12,6,13,14,2,4,10,3,15,13,1,5,7,9,10,11,2,6,7,8,15,4,13,14,4,11,5,12,8,6,14,15,4,9,5,1,15,11,7,14,6,15,3,8,3,9,0,2,3,12,4,3,7,3,15,8,9,6,10,15,8,6,5,8,11,2,11,6,8,14,2,6,6,6,7,7,1,1,0,0,15,5,7,14,15,3,5,3,7,8,7,2,5,13,2,4,14,2,3,11,1,1,2,2,1,9,7,6,0,15,8,10,12,9,0,14,0,9,12,0,9,13,1,8,1,1,14,4,5,15,6,0,11,11,12,2,10,10,8,5,13,9,10,14,9,11,10,15,7,6,5,0,0,5,5,0,15,3,2,12,13,0,10,12,10,12,4,9,5,8,15,1,4,10,0,8,5,15,4,0,14,15,11,15,7,13,5,8,10,3,11,7,9,13,8,2,9,0,13,9,8,7,10,9,12,13,15,1,0,14,6,2,4,10,11,9,2,6", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"1\", \"2\"], \"clip_start\": 560.0, \"clip_end\": 564.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q9_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,5,2,8,9,15,7,7,6,10,11,15,11,2,12,5,3,8,0,11,11,2,4,12,15,8,12,12,11,8,15,4,11,2,0,3,1,8,1,12,6,8,3,14,0,15,10,8,8,3,5,7,1,13,10,7,1,9,3,12,13,12,5,11,8,12,14,13,0,9,13,10,0,12,10,5,4,2,0,7,7,2,4,15,14,3,5,6,11,2,15,13,14,3,5,15,13,5,3,4,0,3,3,14,8,14,12,13,15,14,9,7,15,15,10,13,6,7,8,6,11,2,14,15,11,14,10,13,14,12,5,12,2,6,12,2,11,11,8,5,6,12,6,15,12,5,2,14,9,14,1,10,13,5,2,3,15,8,2,1,13,13,5,10,9,11,13,14,7,3,5,11,6,13,10,8,1,15,0,3,2,3,3,6,1,9,8,8,9,11,6,15,11,1,9,6,13,2,4,5,14,2,7,9,13,5,14,6,15,14,9,5,0,4,3,8,10,9,3,4,3,13,8,1,11,9,6,1,8,3,14,7,6,15,0,8,5,12,0,12,11,14,11,13,3,12,11,13,9,1,12,4,1,1,0,2,10,2,1,4,12,12,13,11,14,5,15,11,5,6,15,11,5,10,9,8,5,9,6,13,7,3,0,3,6,14,14,14,14,4,12,7,0,0,13,5,9,3,2,4,2,0,15,14,13,14,5,5,1,3,7,11,1,6,14,6,10,12,7,13,4,1,5,12,2,11,1,3,2,10,0,2,10,13,11,6,5,4,4,11,15,0,9,9,8,2,1,15,6,4,13,0,15,0,5,6,12,3,2,12,12,4,4,15,1,13,9,2,1,1,5,11,6,5,5,7,9,14,14,5,7,8,6,2,1,11,14,8,12,6,7,3,8,3,11,6,13,4,4,2,8,12,7,0,14,1,10,10,0,5,7,14,14,1,4,5,8,7,14,1,1,0,3,4,5,1,14,3,2,7,1,5,13,8,8,0,14,14,8,14,7,11,9,5,15,11,9,7,3,7,12,3,0,1,2,9,7,15,3,4,15,5,8,1,8,10,10,14,10,5,5,7,4,2,12,7,7,10,2,14,10,5,13,1,8,2,10,15,9,9,6,3,15,3,5,7,15,7,4,11,7,2,2,0,2,5,5,7,0,9,13,7,12,5,3,1,4,3,15,15,6,5,10,6,12,0,5,14,4,6,9,3,6,4,13,14,4,5,5,2,0,2,14,2,14,1,10,11,15,7,10,5,11,9,5,3,0,7,1,1,0,1,2,12,8,5,1,14,11,11,11,2,9,3,12,7,15,13,6,10,8,3,11,9,6,6,13,7,13,11,5,10,15,0,13,10,15,9,7,5,1,11,12,1,10,5,0,2,6,7,13,14,0,8,14,1,8,13,6,7,0,10,11,0,14,11,1,13,3,0,1,15,8,3,8,2,0,10,13,6,13,7,7,7,15,15,10,5,7,14,7,3,9,1,3,5,1,6,14,0,7,14,9,10,15,14,8,1,15,15,0,1,1,13,2,11,11,10,4,14,9,13,10,3,6,9,0,5,9,4,4,10,7,1,5,7,9,10,7,9,8,13,1,10,14,6,5,7,2,14,14,13,5,8,4,15,12,1,3,9,7,15,7,11,6,6,12,11,5,6,15,13,11,11,6,5,3,11,3,11,3,7,15,7,5,9,5,13,15,7,13,8,1,12,13,14,4,2,13,4,5,2,3,8,4,3,8,2,6,11,5,12,4,13,7,15,9,3,6,11,10,11,12,7,10,6,1,10,13,12,7,12,9,2,2,5,13,4,4,10,4,14,14,2,0,12,6,13,14,2,4,10,3,15,13,1,5,7,9,10,11,2,6,7,8,15,4,13,14,4,11,5,12,8,6,14,15,4,9,5,1,15,11,7,14,6,15,3,8,3,9,0,2,3,12,4,3,7,3,15,8,9,6,10,15,8,6,5,8,11,2,11,6,8,14,2,6,6,6,7,7,1,1,0,0,15,5,7,14,15,3,5,3,7,8,7,2,5,13,2,4,14,2,3,11,1,1,2,2,1,9,7,6,0,15,8,10,12,9,0,14,0,9,12,0,9,13,1,8,1,1,14,4,5,15,6,0,11,11,12,2,10,10,8,5,13,9,10,14,9,11,10,15,7,6,5,0,0,5,5,0,15,3,2,12,13,0,10,12,10,12,4,9,5,8,15,1,4,10,0,8,5,15,4,0,14,15,11,15,7,13,5,8,10,3,11,7,9,13,8,2,9,0,13,9,8,7,10,9,12,13,15,1,0,14,6,2,4,10,11,9,2,6", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"7\", \"6\", \"14\", \"3\", \"7\"], \"clip_start\": 619.0, \"clip_end\": 625.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q10_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,5,2,8,9,15,7,7,6,10,11,15,11,2,12,5,3,8,0,11,11,2,4,12,15,8,12,12,11,8,15,4,11,2,0,3,1,8,1,12,6,8,3,14,0,15,10,8,8,3,5,7,1,13,10,7,1,9,3,12,13,12,5,11,8,12,14,13,0,9,13,10,0,12,10,5,4,2,0,7,7,2,4,15,14,3,5,6,11,2,15,13,14,3,5,15,13,5,3,4,0,3,3,14,8,14,12,13,15,14,9,7,15,15,10,13,6,7,8,6,11,2,14,15,11,14,10,13,14,12,5,12,2,6,12,2,11,11,8,5,6,12,6,15,12,5,2,14,9,14,1,10,13,5,2,3,15,8,2,1,13,13,5,10,9,11,13,14,7,3,5,11,6,13,10,8,1,15,0,3,2,3,3,6,1,9,8,8,9,11,6,15,11,1,9,6,13,2,4,5,14,2,7,9,13,5,14,6,15,14,9,5,0,4,3,8,10,9,3,4,3,13,8,1,11,9,6,1,8,3,14,7,6,15,0,8,5,12,0,12,11,14,11,13,3,12,11,13,9,1,12,4,1,1,0,2,10,2,1,4,12,12,13,11,14,5,15,11,5,6,15,11,5,10,9,8,5,9,6,13,7,3,0,3,6,14,14,14,14,4,12,7,0,0,13,5,9,3,2,4,2,0,15,14,13,14,5,5,1,3,7,11,1,6,14,6,10,12,7,13,4,1,5,12,2,11,1,3,2,10,0,2,10,13,11,6,5,4,4,11,15,0,9,9,8,2,1,15,6,4,13,0,15,0,5,6,12,3,2,12,12,4,4,15,1,13,9,2,1,1,5,11,6,5,5,7,9,14,14,5,7,8,6,2,1,11,14,8,12,6,7,3,8,3,11,6,13,4,4,2,8,12,7,0,14,1,10,10,0,5,7,14,14,1,4,5,8,7,14,1,1,0,3,4,5,1,14,3,2,7,1,5,13,8,8,0,14,14,8,14,7,11,9,5,15,11,9,7,3,7,12,3,0,1,2,9,7,15,3,4,15,5,8,1,8,10,10,14,10,5,5,7,4,2,12,7,7,10,2,14,10,5,13,1,8,2,10,15,9,9,6,3,15,3,5,7,15,7,4,11,7,2,2,0,2,5,5,7,0,9,13,7,12,5,3,1,4,3,15,15,6,5,10,6,12,0,5,14,4,6,9,3,6,4,13,14,4,5,5,2,0,2,14,2,14,1,10,11,15,7,10,5,11,9,5,3,0,7,1,1,0,1,2,12,8,5,1,14,11,11,11,2,9,3,12,7,15,13,6,10,8,3,11,9,6,6,13,7,13,11,5,10,15,0,13,10,15,9,7,5,1,11,12,1,10,5,0,2,6,7,13,14,0,8,14,1,8,13,6,7,0,10,11,0,14,11,1,13,3,0,1,15,8,3,8,2,0,10,13,6,13,7,7,7,15,15,10,5,7,14,7,3,9,1,3,5,1,6,14,0,7,14,9,10,15,14,8,1,15,15,0,1,1,13,2,11,11,10,4,14,9,13,10,3,6,9,0,5,9,4,4,10,7,1,5,7,9,10,7,9,8,13,1,10,14,6,5,7,2,14,14,13,5,8,4,15,12,1,3,9,7,15,7,11,6,6,12,11,5,6,15,13,11,11,6,5,3,11,3,11,3,7,15,7,5,9,5,13,15,7,13,8,1,12,13,14,4,2,13,4,5,2,3,8,4,3,8,2,6,11,5,12,4,13,7,15,9,3,6,11,10,11,12,7,10,6,1,10,13,12,7,12,9,2,2,5,13,4,4,10,4,14,14,2,0,12,6,13,14,2,4,10,3,15,13,1,5,7,9,10,11,2,6,7,8,15,4,13,14,4,11,5,12,8,6,14,15,4,9,5,1,15,11,7,14,6,15,3,8,3,9,0,2,3,12,4,3,7,3,15,8,9,6,10,15,8,6,5,8,11,2,11,6,8,14,2,6,6,6,7,7,1,1,0,0,15,5,7,14,15,3,5,3,7,8,7,2,5,13,2,4,14,2,3,11,1,1,2,2,1,9,7,6,0,15,8,10,12,9,0,14,0,9,12,0,9,13,1,8,1,1,14,4,5,15,6,0,11,11,12,2,10,10,8,5,13,9,10,14,9,11,10,15,7,6,5,0,0,5,5,0,15,3,2,12,13,0,10,12,10,12,4,9,5,8,15,1,4,10,0,8,5,15,4,0,14,15,11,15,7,13,5,8,10,3,11,7,9,13,8,2,9,0,13,9,8,7,10,9,12,13,15,1,0,14,6,2,4,10,11,9,2,6", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"0\", \"1\", \"15\", \"8\", \"3\"], \"clip_start\": 629.0, \"clip_end\": 635.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q11_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,5,2,8,9,15,7,7,6,10,11,15,11,2,12,5,3,8,0,11,11,2,4,12,15,8,12,12,11,8,15,4,11,2,0,3,1,8,1,12,6,8,3,14,0,15,10,8,8,3,5,7,1,13,10,7,1,9,3,12,13,12,5,11,8,12,14,13,0,9,13,10,0,12,10,5,4,2,0,7,7,2,4,15,14,3,5,6,11,2,15,13,14,3,5,15,13,5,3,4,0,3,3,14,8,14,12,13,15,14,9,7,15,15,10,13,6,7,8,6,11,2,14,15,11,14,10,13,14,12,5,12,2,6,12,2,11,11,8,5,6,12,6,15,12,5,2,14,9,14,1,10,13,5,2,3,15,8,2,1,13,13,5,10,9,11,13,14,7,3,5,11,6,13,10,8,1,15,0,3,2,3,3,6,1,9,8,8,9,11,6,15,11,1,9,6,13,2,4,5,14,2,7,9,13,5,14,6,15,14,9,5,0,4,3,8,10,9,3,4,3,13,8,1,11,9,6,1,8,3,14,7,6,15,0,8,5,12,0,12,11,14,11,13,3,12,11,13,9,1,12,4,1,1,0,2,10,2,1,4,12,12,13,11,14,5,15,11,5,6,15,11,5,10,9,8,5,9,6,13,7,3,0,3,6,14,14,14,14,4,12,7,0,0,13,5,9,3,2,4,2,0,15,14,13,14,5,5,1,3,7,11,1,6,14,6,10,12,7,13,4,1,5,12,2,11,1,3,2,10,0,2,10,13,11,6,5,4,4,11,15,0,9,9,8,2,1,15,6,4,13,0,15,0,5,6,12,3,2,12,12,4,4,15,1,13,9,2,1,1,5,11,6,5,5,7,9,14,14,5,7,8,6,2,1,11,14,8,12,6,7,3,8,3,11,6,13,4,4,2,8,12,7,0,14,1,10,10,0,5,7,14,14,1,4,5,8,7,14,1,1,0,3,4,5,1,14,3,2,7,1,5,13,8,8,0,14,14,8,14,7,11,9,5,15,11,9,7,3,7,12,3,0,1,2,9,7,15,3,4,15,5,8,1,8,10,10,14,10,5,5,7,4,2,12,7,7,10,2,14,10,5,13,1,8,2,10,15,9,9,6,3,15,3,5,7,15,7,4,11,7,2,2,0,2,5,5,7,0,9,13,7,12,5,3,1,4,3,15,15,6,5,10,6,12,0,5,14,4,6,9,3,6,4,13,14,4,5,5,2,0,2,14,2,14,1,10,11,15,7,10,5,11,9,5,3,0,7,1,1,0,1,2,12,8,5,1,14,11,11,11,2,9,3,12,7,15,13,6,10,8,3,11,9,6,6,13,7,13,11,5,10,15,0,13,10,15,9,7,5,1,11,12,1,10,5,0,2,6,7,13,14,0,8,14,1,8,13,6,7,0,10,11,0,14,11,1,13,3,0,1,15,8,3,8,2,0,10,13,6,13,7,7,7,15,15,10,5,7,14,7,3,9,1,3,5,1,6,14,0,7,14,9,10,15,14,8,1,15,15,0,1,1,13,2,11,11,10,4,14,9,13,10,3,6,9,0,5,9,4,4,10,7,1,5,7,9,10,7,9,8,13,1,10,14,6,5,7,2,14,14,13,5,8,4,15,12,1,3,9,7,15,7,11,6,6,12,11,5,6,15,13,11,11,6,5,3,11,3,11,3,7,15,7,5,9,5,13,15,7,13,8,1,12,13,14,4,2,13,4,5,2,3,8,4,3,8,2,6,11,5,12,4,13,7,15,9,3,6,11,10,11,12,7,10,6,1,10,13,12,7,12,9,2,2,5,13,4,4,10,4,14,14,2,0,12,6,13,14,2,4,10,3,15,13,1,5,7,9,10,11,2,6,7,8,15,4,13,14,4,11,5,12,8,6,14,15,4,9,5,1,15,11,7,14,6,15,3,8,3,9,0,2,3,12,4,3,7,3,15,8,9,6,10,15,8,6,5,8,11,2,11,6,8,14,2,6,6,6,7,7,1,1,0,0,15,5,7,14,15,3,5,3,7,8,7,2,5,13,2,4,14,2,3,11,1,1,2,2,1,9,7,6,0,15,8,10,12,9,0,14,0,9,12,0,9,13,1,8,1,1,14,4,5,15,6,0,11,11,12,2,10,10,8,5,13,9,10,14,9,11,10,15,7,6,5,0,0,5,5,0,15,3,2,12,13,0,10,12,10,12,4,9,5,8,15,1,4,10,0,8,5,15,4,0,14,15,11,15,7,13,5,8,10,3,11,7,9,13,8,2,9,0,13,9,8,7,10,9,12,13,15,1,0,14,6,2,4,10,11,9,2,6", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"7\", \"0\", \"9\", \"13\"], \"clip_start\": 507.0, \"clip_end\": 512.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q12_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,5,2,8,9,15,7,7,6,10,11,15,11,2,12,5,3,8,0,11,11,2,4,12,15,8,12,12,11,8,15,4,11,2,0,3,1,8,1,12,6,8,3,14,0,15,10,8,8,3,5,7,1,13,10,7,1,9,3,12,13,12,5,11,8,12,14,13,0,9,13,10,0,12,10,5,4,2,0,7,7,2,4,15,14,3,5,6,11,2,15,13,14,3,5,15,13,5,3,4,0,3,3,14,8,14,12,13,15,14,9,7,15,15,10,13,6,7,8,6,11,2,14,15,11,14,10,13,14,12,5,12,2,6,12,2,11,11,8,5,6,12,6,15,12,5,2,14,9,14,1,10,13,5,2,3,15,8,2,1,13,13,5,10,9,11,13,14,7,3,5,11,6,13,10,8,1,15,0,3,2,3,3,6,1,9,8,8,9,11,6,15,11,1,9,6,13,2,4,5,14,2,7,9,13,5,14,6,15,14,9,5,0,4,3,8,10,9,3,4,3,13,8,1,11,9,6,1,8,3,14,7,6,15,0,8,5,12,0,12,11,14,11,13,3,12,11,13,9,1,12,4,1,1,0,2,10,2,1,4,12,12,13,11,14,5,15,11,5,6,15,11,5,10,9,8,5,9,6,13,7,3,0,3,6,14,14,14,14,4,12,7,0,0,13,5,9,3,2,4,2,0,15,14,13,14,5,5,1,3,7,11,1,6,14,6,10,12,7,13,4,1,5,12,2,11,1,3,2,10,0,2,10,13,11,6,5,4,4,11,15,0,9,9,8,2,1,15,6,4,13,0,15,0,5,6,12,3,2,12,12,4,4,15,1,13,9,2,1,1,5,11,6,5,5,7,9,14,14,5,7,8,6,2,1,11,14,8,12,6,7,3,8,3,11,6,13,4,4,2,8,12,7,0,14,1,10,10,0,5,7,14,14,1,4,5,8,7,14,1,1,0,3,4,5,1,14,3,2,7,1,5,13,8,8,0,14,14,8,14,7,11,9,5,15,11,9,7,3,7,12,3,0,1,2,9,7,15,3,4,15,5,8,1,8,10,10,14,10,5,5,7,4,2,12,7,7,10,2,14,10,5,13,1,8,2,10,15,9,9,6,3,15,3,5,7,15,7,4,11,7,2,2,0,2,5,5,7,0,9,13,7,12,5,3,1,4,3,15,15,6,5,10,6,12,0,5,14,4,6,9,3,6,4,13,14,4,5,5,2,0,2,14,2,14,1,10,11,15,7,10,5,11,9,5,3,0,7,1,1,0,1,2,12,8,5,1,14,11,11,11,2,9,3,12,7,15,13,6,10,8,3,11,9,6,6,13,7,13,11,5,10,15,0,13,10,15,9,7,5,1,11,12,1,10,5,0,2,6,7,13,14,0,8,14,1,8,13,6,7,0,10,11,0,14,11,1,13,3,0,1,15,8,3,8,2,0,10,13,6,13,7,7,7,15,15,10,5,7,14,7,3,9,1,3,5,1,6,14,0,7,14,9,10,15,14,8,1,15,15,0,1,1,13,2,11,11,10,4,14,9,13,10,3,6,9,0,5,9,4,4,10,7,1,5,7,9,10,7,9,8,13,1,10,14,6,5,7,2,14,14,13,5,8,4,15,12,1,3,9,7,15,7,11,6,6,12,11,5,6,15,13,11,11,6,5,3,11,3,11,3,7,15,7,5,9,5,13,15,7,13,8,1,12,13,14,4,2,13,4,5,2,3,8,4,3,8,2,6,11,5,12,4,13,7,15,9,3,6,11,10,11,12,7,10,6,1,10,13,12,7,12,9,2,2,5,13,4,4,10,4,14,14,2,0,12,6,13,14,2,4,10,3,15,13,1,5,7,9,10,11,2,6,7,8,15,4,13,14,4,11,5,12,8,6,14,15,4,9,5,1,15,11,7,14,6,15,3,8,3,9,0,2,3,12,4,3,7,3,15,8,9,6,10,15,8,6,5,8,11,2,11,6,8,14,2,6,6,6,7,7,1,1,0,0,15,5,7,14,15,3,5,3,7,8,7,2,5,13,2,4,14,2,3,11,1,1,2,2,1,9,7,6,0,15,8,10,12,9,0,14,0,9,12,0,9,13,1,8,1,1,14,4,5,15,6,0,11,11,12,2,10,10,8,5,13,9,10,14,9,11,10,15,7,6,5,0,0,5,5,0,15,3,2,12,13,0,10,12,10,12,4,9,5,8,15,1,4,10,0,8,5,15,4,0,14,15,11,15,7,13,5,8,10,3,11,7,9,13,8,2,9,0,13,9,8,7,10,9,12,13,15,1,0,14,6,2,4,10,11,9,2,6", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"1\", \"14\", \"14\"], \"clip_start\": 151.0, \"clip_end\": 156.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q13_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,5,2,8,9,15,7,7,6,10,11,15,11,2,12,5,3,8,0,11,11,2,4,12,15,8,12,12,11,8,15,4,11,2,0,3,1,8,1,12,6,8,3,14,0,15,10,8,8,3,5,7,1,13,10,7,1,9,3,12,13,12,5,11,8,12,14,13,0,9,13,10,0,12,10,5,4,2,0,7,7,2,4,15,14,3,5,6,11,2,15,13,14,3,5,15,13,5,3,4,0,3,3,14,8,14,12,13,15,14,9,7,15,15,10,13,6,7,8,6,11,2,14,15,11,14,10,13,14,12,5,12,2,6,12,2,11,11,8,5,6,12,6,15,12,5,2,14,9,14,1,10,13,5,2,3,15,8,2,1,13,13,5,10,9,11,13,14,7,3,5,11,6,13,10,8,1,15,0,3,2,3,3,6,1,9,8,8,9,11,6,15,11,1,9,6,13,2,4,5,14,2,7,9,13,5,14,6,15,14,9,5,0,4,3,8,10,9,3,4,3,13,8,1,11,9,6,1,8,3,14,7,6,15,0,8,5,12,0,12,11,14,11,13,3,12,11,13,9,1,12,4,1,1,0,2,10,2,1,4,12,12,13,11,14,5,15,11,5,6,15,11,5,10,9,8,5,9,6,13,7,3,0,3,6,14,14,14,14,4,12,7,0,0,13,5,9,3,2,4,2,0,15,14,13,14,5,5,1,3,7,11,1,6,14,6,10,12,7,13,4,1,5,12,2,11,1,3,2,10,0,2,10,13,11,6,5,4,4,11,15,0,9,9,8,2,1,15,6,4,13,0,15,0,5,6,12,3,2,12,12,4,4,15,1,13,9,2,1,1,5,11,6,5,5,7,9,14,14,5,7,8,6,2,1,11,14,8,12,6,7,3,8,3,11,6,13,4,4,2,8,12,7,0,14,1,10,10,0,5,7,14,14,1,4,5,8,7,14,1,1,0,3,4,5,1,14,3,2,7,1,5,13,8,8,0,14,14,8,14,7,11,9,5,15,11,9,7,3,7,12,3,0,1,2,9,7,15,3,4,15,5,8,1,8,10,10,14,10,5,5,7,4,2,12,7,7,10,2,14,10,5,13,1,8,2,10,15,9,9,6,3,15,3,5,7,15,7,4,11,7,2,2,0,2,5,5,7,0,9,13,7,12,5,3,1,4,3,15,15,6,5,10,6,12,0,5,14,4,6,9,3,6,4,13,14,4,5,5,2,0,2,14,2,14,1,10,11,15,7,10,5,11,9,5,3,0,7,1,1,0,1,2,12,8,5,1,14,11,11,11,2,9,3,12,7,15,13,6,10,8,3,11,9,6,6,13,7,13,11,5,10,15,0,13,10,15,9,7,5,1,11,12,1,10,5,0,2,6,7,13,14,0,8,14,1,8,13,6,7,0,10,11,0,14,11,1,13,3,0,1,15,8,3,8,2,0,10,13,6,13,7,7,7,15,15,10,5,7,14,7,3,9,1,3,5,1,6,14,0,7,14,9,10,15,14,8,1,15,15,0,1,1,13,2,11,11,10,4,14,9,13,10,3,6,9,0,5,9,4,4,10,7,1,5,7,9,10,7,9,8,13,1,10,14,6,5,7,2,14,14,13,5,8,4,15,12,1,3,9,7,15,7,11,6,6,12,11,5,6,15,13,11,11,6,5,3,11,3,11,3,7,15,7,5,9,5,13,15,7,13,8,1,12,13,14,4,2,13,4,5,2,3,8,4,3,8,2,6,11,5,12,4,13,7,15,9,3,6,11,10,11,12,7,10,6,1,10,13,12,7,12,9,2,2,5,13,4,4,10,4,14,14,2,0,12,6,13,14,2,4,10,3,15,13,1,5,7,9,10,11,2,6,7,8,15,4,13,14,4,11,5,12,8,6,14,15,4,9,5,1,15,11,7,14,6,15,3,8,3,9,0,2,3,12,4,3,7,3,15,8,9,6,10,15,8,6,5,8,11,2,11,6,8,14,2,6,6,6,7,7,1,1,0,0,15,5,7,14,15,3,5,3,7,8,7,2,5,13,2,4,14,2,3,11,1,1,2,2,1,9,7,6,0,15,8,10,12,9,0,14,0,9,12,0,9,13,1,8,1,1,14,4,5,15,6,0,11,11,12,2,10,10,8,5,13,9,10,14,9,11,10,15,7,6,5,0,0,5,5,0,15,3,2,12,13,0,10,12,10,12,4,9,5,8,15,1,4,10,0,8,5,15,4,0,14,15,11,15,7,13,5,8,10,3,11,7,9,13,8,2,9,0,13,9,8,7,10,9,12,13,15,1,0,14,6,2,4,10,11,9,2,6", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"10\", \"4\", \"0\", \"13\"], \"clip_start\": 825.0, \"clip_end\": 831.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q14_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,5,2,8,9,15,7,7,6,10,11,15,11,2,12,5,3,8,0,11,11,2,4,12,15,8,12,12,11,8,15,4,11,2,0,3,1,8,1,12,6,8,3,14,0,15,10,8,8,3,5,7,1,13,10,7,1,9,3,12,13,12,5,11,8,12,14,13,0,9,13,10,0,12,10,5,4,2,0,7,7,2,4,15,14,3,5,6,11,2,15,13,14,3,5,15,13,5,3,4,0,3,3,14,8,14,12,13,15,14,9,7,15,15,10,13,6,7,8,6,11,2,14,15,11,14,10,13,14,12,5,12,2,6,12,2,11,11,8,5,6,12,6,15,12,5,2,14,9,14,1,10,13,5,2,3,15,8,2,1,13,13,5,10,9,11,13,14,7,3,5,11,6,13,10,8,1,15,0,3,2,3,3,6,1,9,8,8,9,11,6,15,11,1,9,6,13,2,4,5,14,2,7,9,13,5,14,6,15,14,9,5,0,4,3,8,10,9,3,4,3,13,8,1,11,9,6,1,8,3,14,7,6,15,0,8,5,12,0,12,11,14,11,13,3,12,11,13,9,1,12,4,1,1,0,2,10,2,1,4,12,12,13,11,14,5,15,11,5,6,15,11,5,10,9,8,5,9,6,13,7,3,0,3,6,14,14,14,14,4,12,7,0,0,13,5,9,3,2,4,2,0,15,14,13,14,5,5,1,3,7,11,1,6,14,6,10,12,7,13,4,1,5,12,2,11,1,3,2,10,0,2,10,13,11,6,5,4,4,11,15,0,9,9,8,2,1,15,6,4,13,0,15,0,5,6,12,3,2,12,12,4,4,15,1,13,9,2,1,1,5,11,6,5,5,7,9,14,14,5,7,8,6,2,1,11,14,8,12,6,7,3,8,3,11,6,13,4,4,2,8,12,7,0,14,1,10,10,0,5,7,14,14,1,4,5,8,7,14,1,1,0,3,4,5,1,14,3,2,7,1,5,13,8,8,0,14,14,8,14,7,11,9,5,15,11,9,7,3,7,12,3,0,1,2,9,7,15,3,4,15,5,8,1,8,10,10,14,10,5,5,7,4,2,12,7,7,10,2,14,10,5,13,1,8,2,10,15,9,9,6,3,15,3,5,7,15,7,4,11,7,2,2,0,2,5,5,7,0,9,13,7,12,5,3,1,4,3,15,15,6,5,10,6,12,0,5,14,4,6,9,3,6,4,13,14,4,5,5,2,0,2,14,2,14,1,10,11,15,7,10,5,11,9,5,3,0,7,1,1,0,1,2,12,8,5,1,14,11,11,11,2,9,3,12,7,15,13,6,10,8,3,11,9,6,6,13,7,13,11,5,10,15,0,13,10,15,9,7,5,1,11,12,1,10,5,0,2,6,7,13,14,0,8,14,1,8,13,6,7,0,10,11,0,14,11,1,13,3,0,1,15,8,3,8,2,0,10,13,6,13,7,7,7,15,15,10,5,7,14,7,3,9,1,3,5,1,6,14,0,7,14,9,10,15,14,8,1,15,15,0,1,1,13,2,11,11,10,4,14,9,13,10,3,6,9,0,5,9,4,4,10,7,1,5,7,9,10,7,9,8,13,1,10,14,6,5,7,2,14,14,13,5,8,4,15,12,1,3,9,7,15,7,11,6,6,12,11,5,6,15,13,11,11,6,5,3,11,3,11,3,7,15,7,5,9,5,13,15,7,13,8,1,12,13,14,4,2,13,4,5,2,3,8,4,3,8,2,6,11,5,12,4,13,7,15,9,3,6,11,10,11,12,7,10,6,1,10,13,12,7,12,9,2,2,5,13,4,4,10,4,14,14,2,0,12,6,13,14,2,4,10,3,15,13,1,5,7,9,10,11,2,6,7,8,15,4,13,14,4,11,5,12,8,6,14,15,4,9,5,1,15,11,7,14,6,15,3,8,3,9,0,2,3,12,4,3,7,3,15,8,9,6,10,15,8,6,5,8,11,2,11,6,8,14,2,6,6,6,7,7,1,1,0,0,15,5,7,14,15,3,5,3,7,8,7,2,5,13,2,4,14,2,3,11,1,1,2,2,1,9,7,6,0,15,8,10,12,9,0,14,0,9,12,0,9,13,1,8,1,1,14,4,5,15,6,0,11,11,12,2,10,10,8,5,13,9,10,14,9,11,10,15,7,6,5,0,0,5,5,0,15,3,2,12,13,0,10,12,10,12,4,9,5,8,15,1,4,10,0,8,5,15,4,0,14,15,11,15,7,13,5,8,10,3,11,7,9,13,8,2,9,0,13,9,8,7,10,9,12,13,15,1,0,14,6,2,4,10,11,9,2,6", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"11\", \"13\", \"9\", \"1\"], \"clip_start\": 245.0, \"clip_end\": 251.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q15_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,5,2,8,9,15,7,7,6,10,11,15,11,2,12,5,3,8,0,11,11,2,4,12,15,8,12,12,11,8,15,4,11,2,0,3,1,8,1,12,6,8,3,14,0,15,10,8,8,3,5,7,1,13,10,7,1,9,3,12,13,12,5,11,8,12,14,13,0,9,13,10,0,12,10,5,4,2,0,7,7,2,4,15,14,3,5,6,11,2,15,13,14,3,5,15,13,5,3,4,0,3,3,14,8,14,12,13,15,14,9,7,15,15,10,13,6,7,8,6,11,2,14,15,11,14,10,13,14,12,5,12,2,6,12,2,11,11,8,5,6,12,6,15,12,5,2,14,9,14,1,10,13,5,2,3,15,8,2,1,13,13,5,10,9,11,13,14,7,3,5,11,6,13,10,8,1,15,0,3,2,3,3,6,1,9,8,8,9,11,6,15,11,1,9,6,13,2,4,5,14,2,7,9,13,5,14,6,15,14,9,5,0,4,3,8,10,9,3,4,3,13,8,1,11,9,6,1,8,3,14,7,6,15,0,8,5,12,0,12,11,14,11,13,3,12,11,13,9,1,12,4,1,1,0,2,10,2,1,4,12,12,13,11,14,5,15,11,5,6,15,11,5,10,9,8,5,9,6,13,7,3,0,3,6,14,14,14,14,4,12,7,0,0,13,5,9,3,2,4,2,0,15,14,13,14,5,5,1,3,7,11,1,6,14,6,10,12,7,13,4,1,5,12,2,11,1,3,2,10,0,2,10,13,11,6,5,4,4,11,15,0,9,9,8,2,1,15,6,4,13,0,15,0,5,6,12,3,2,12,12,4,4,15,1,13,9,2,1,1,5,11,6,5,5,7,9,14,14,5,7,8,6,2,1,11,14,8,12,6,7,3,8,3,11,6,13,4,4,2,8,12,7,0,14,1,10,10,0,5,7,14,14,1,4,5,8,7,14,1,1,0,3,4,5,1,14,3,2,7,1,5,13,8,8,0,14,14,8,14,7,11,9,5,15,11,9,7,3,7,12,3,0,1,2,9,7,15,3,4,15,5,8,1,8,10,10,14,10,5,5,7,4,2,12,7,7,10,2,14,10,5,13,1,8,2,10,15,9,9,6,3,15,3,5,7,15,7,4,11,7,2,2,0,2,5,5,7,0,9,13,7,12,5,3,1,4,3,15,15,6,5,10,6,12,0,5,14,4,6,9,3,6,4,13,14,4,5,5,2,0,2,14,2,14,1,10,11,15,7,10,5,11,9,5,3,0,7,1,1,0,1,2,12,8,5,1,14,11,11,11,2,9,3,12,7,15,13,6,10,8,3,11,9,6,6,13,7,13,11,5,10,15,0,13,10,15,9,7,5,1,11,12,1,10,5,0,2,6,7,13,14,0,8,14,1,8,13,6,7,0,10,11,0,14,11,1,13,3,0,1,15,8,3,8,2,0,10,13,6,13,7,7,7,15,15,10,5,7,14,7,3,9,1,3,5,1,6,14,0,7,14,9,10,15,14,8,1,15,15,0,1,1,13,2,11,11,10,4,14,9,13,10,3,6,9,0,5,9,4,4,10,7,1,5,7,9,10,7,9,8,13,1,10,14,6,5,7,2,14,14,13,5,8,4,15,12,1,3,9,7,15,7,11,6,6,12,11,5,6,15,13,11,11,6,5,3,11,3,11,3,7,15,7,5,9,5,13,15,7,13,8,1,12,13,14,4,2,13,4,5,2,3,8,4,3,8,2,6,11,5,12,4,13,7,15,9,3,6,11,10,11,12,7,10,6,1,10,13,12,7,12,9,2,2,5,13,4,4,10,4,14,14,2,0,12,6,13,14,2,4,10,3,15,13,1,5,7,9,10,11,2,6,7,8,15,4,13,14,4,11,5,12,8,6,14,15,4,9,5,1,15,11,7,14,6,15,3,8,3,9,0,2,3,12,4,3,7,3,15,8,9,6,10,15,8,6,5,8,11,2,11,6,8,14,2,6,6,6,7,7,1,1,0,0,15,5,7,14,15,3,5,3,7,8,7,2,5,13,2,4,14,2,3,11,1,1,2,2,1,9,7,6,0,15,8,10,12,9,0,14,0,9,12,0,9,13,1,8,1,1,14,4,5,15,6,0,11,11,12,2,10,10,8,5,13,9,10,14,9,11,10,15,7,6,5,0,0,5,5,0,15,3,2,12,13,0,10,12,10,12,4,9,5,8,15,1,4,10,0,8,5,15,4,0,14,15,11,15,7,13,5,8,10,3,11,7,9,13,8,2,9,0,13,9,8,7,10,9,12,13,15,1,0,14,6,2,4,10,11,9,2,6", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"14\", \"3\", \"15\"], \"clip_start\": 928.0, \"clip_end\": 933.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,13,4,10,11,11,4,1,8,15,4,4,5,9,4,12,4,7,15,0,3,14,4,5,7,4,11,2,14,6,1,15,9,1,14,3,3,11,3,7,7,8,0,5,4,1,9,2,2,15,5,7,8,12,0,4,4,4,0,13,2,15,3,3,4,3,15,7,10,1,2,9,8,3,12,7,7,8,10,14,2,2,12,4,2,12,14,14,13,10,2,6,10,1,11,3,5,1,2,9,12,10,11,1,9,10,11,15,2,8,15,12,5,10,7,7,7,6,7,7,2,12,10,4,4,3,14,5,13,14,11,7,2,6,0,11,8,11,11,14,4,7,15,9,0,15,3,13,15,4,1,7,10,0,0,8,10,3,15,6,9,7,1,6,11,15,5,15,15,14,9,1,8,4,5,9,0,11,7,1,8,4,6,9,4,2,8,13,0,5,8,14,5,9,4,12,6,14,7,4,15,14,8,4,4,5,5,13,11,4,1,5,15,15,5,10,1,7,7,8,9,12,6,15,12,12,9,1,12,0,10,2,3,15,3,8,11,2,8,9,0,5,8,13,6,10,0,5,12,11,4,12,9,4,13,13,9,3,5,1,3,4,8,5,14,13,9,5,11,3,4,10,13,13,8,0,14,14,14,10,14,7,0,4,7,3,15,15,13,10,3,12,1,2,8,15,11,6,6,3,11,10,12,10,1,15,13,6,0,12,11,9,2,4,15,0,0,1,9,9,11,10,12,2,2,8,14,10,11,11,10,11,0,15,7,13,9,1,5,5,0,10,3,6,0,9,15,0,4,13,1,11,14,14,4,6,2,2,7,10,10,14,0,12,14,15,0,15,14,14,3,0,13,11,9,4,5,9,15,15,15,4,9,8,11,14,14,0,13,0,0,11,0,4,12,12,9,14,10,3,10,1,6,7,9,14,11,7,4,2,0,7,4,11,15,3,7,7,2,4,4,1,11,11,5,8,8,4,0,10,14,1,13,1,15,2,8,6,3,1,1,15,5,1,3,9,10,8,2,5,9,14,7,9,5,2,7,5,4,14,14,7,2,9,1,10,14,10,14,12,9,6,2,12,1,5,12,11,9,11,13,14,10,2,1,13,9,7,6,1,7,10,0,10,4,1,7,15,5,6,0,12,11,1,10,14,5,10,12,12,3,1,6,4,6,12,13,5,13,4,7,14,15,8,5,6,7,3,9,9,6,7,12,0,6,0,12,3,7,6,5,3,12,14,0,15,8,0,15,9,2,15,13,15,6,0,5,13,8,2,7,13,5,11,12,9,2,0,13,7,6,4,12,2,6,13,4,4,12,4,0,3,1,9,9,15,3,9,5,8,11,5,8,6,14,2,15,4,12,4,10,6,4,1,7,13,0,5,8,1,0,7,7,6,9,14,9,6,2,2,10,9,10,13,12,12,7,9,1,14,9,10,10,5,2,9,2,14,10,4,6,6,9,3,0,11,0,4,5,5,9,6,4,2,2,10,0,3,4,8,4,9,5,9,9,6,4,2,14,2,0,12,1,5,1,10,6,7,9,5,2,9,8,0,5,10,13,1,9,4,4,12,5,0,4,6,11,8,13,9,1,10,4,3,0,0,14,10,13,4,13,11,10,14,14,7,10,5,2,11,11,8,5,6,11,2,11,3,2,2,9,7,8,14,10,1,5,11,4,14,6,0,13,5,4,5,15,15,1,12,7,10,12,11,4,14,13,2,3,13,8,11,7,1,5,13,2,13,3,0,0,1,1,4,5,9,0,11,10,3,10,15,4,15,10,12,6,7,3,9,11,3,1,2,12,10,6,12,13,7,9,15,7,10,12,8,10,1,11,6,14,4,8,4,7,4,15,9,12,5,9,5,1,9,6,12,1,6,2,0,13,12,11,4,11,1,2,6,3,14,15,10,4,11,14,13,4,1,6,9,15,9,3,3,8,15,12,6,1,5,1,1,10,6,0,2,4,12,7,8,10,6,15,3,4,6,13,1,12,4,5,5,8,8,14,15,10,8,15,12,6,10,6,5,6,15,2,7,10,9,12,2,14,5,14,13,14,13,4,10,5,15,0,15,8,9,10,0,12,0,6,3,1,13,9,5,9,6,13,14,3,15,10,6,13,12,13,9,12,12,7,8,1,13,3,15,5,9,10,1,6,7,12,9,0,8,12,0,10,10,9,11,9,9,4,7,13,13,15,13,11,12,14,13,8,8,2,5,12,14,14,7,3,9,12,8,3,7,0,5,10,5,9,10,4,15,5,3,11,3,11,2,13,12,1,1,4,7,8,10,5,13,2,10,11,5,4,7,4,1,9,12,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"15\", \"7\", \"10\"], \"clip_start\": 800.0, \"clip_end\": 805.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,13,4,10,11,11,4,1,8,15,4,4,5,9,4,12,4,7,15,0,3,14,4,5,7,4,11,2,14,6,1,15,9,1,14,3,3,11,3,7,7,8,0,5,4,1,9,2,2,15,5,7,8,12,0,4,4,4,0,13,2,15,3,3,4,3,15,7,10,1,2,9,8,3,12,7,7,8,10,14,2,2,12,4,2,12,14,14,13,10,2,6,10,1,11,3,5,1,2,9,12,10,11,1,9,10,11,15,2,8,15,12,5,10,7,7,7,6,7,7,2,12,10,4,4,3,14,5,13,14,11,7,2,6,0,11,8,11,11,14,4,7,15,9,0,15,3,13,15,4,1,7,10,0,0,8,10,3,15,6,9,7,1,6,11,15,5,15,15,14,9,1,8,4,5,9,0,11,7,1,8,4,6,9,4,2,8,13,0,5,8,14,5,9,4,12,6,14,7,4,15,14,8,4,4,5,5,13,11,4,1,5,15,15,5,10,1,7,7,8,9,12,6,15,12,12,9,1,12,0,10,2,3,15,3,8,11,2,8,9,0,5,8,13,6,10,0,5,12,11,4,12,9,4,13,13,9,3,5,1,3,4,8,5,14,13,9,5,11,3,4,10,13,13,8,0,14,14,14,10,14,7,0,4,7,3,15,15,13,10,3,12,1,2,8,15,11,6,6,3,11,10,12,10,1,15,13,6,0,12,11,9,2,4,15,0,0,1,9,9,11,10,12,2,2,8,14,10,11,11,10,11,0,15,7,13,9,1,5,5,0,10,3,6,0,9,15,0,4,13,1,11,14,14,4,6,2,2,7,10,10,14,0,12,14,15,0,15,14,14,3,0,13,11,9,4,5,9,15,15,15,4,9,8,11,14,14,0,13,0,0,11,0,4,12,12,9,14,10,3,10,1,6,7,9,14,11,7,4,2,0,7,4,11,15,3,7,7,2,4,4,1,11,11,5,8,8,4,0,10,14,1,13,1,15,2,8,6,3,1,1,15,5,1,3,9,10,8,2,5,9,14,7,9,5,2,7,5,4,14,14,7,2,9,1,10,14,10,14,12,9,6,2,12,1,5,12,11,9,11,13,14,10,2,1,13,9,7,6,1,7,10,0,10,4,1,7,15,5,6,0,12,11,1,10,14,5,10,12,12,3,1,6,4,6,12,13,5,13,4,7,14,15,8,5,6,7,3,9,9,6,7,12,0,6,0,12,3,7,6,5,3,12,14,0,15,8,0,15,9,2,15,13,15,6,0,5,13,8,2,7,13,5,11,12,9,2,0,13,7,6,4,12,2,6,13,4,4,12,4,0,3,1,9,9,15,3,9,5,8,11,5,8,6,14,2,15,4,12,4,10,6,4,1,7,13,0,5,8,1,0,7,7,6,9,14,9,6,2,2,10,9,10,13,12,12,7,9,1,14,9,10,10,5,2,9,2,14,10,4,6,6,9,3,0,11,0,4,5,5,9,6,4,2,2,10,0,3,4,8,4,9,5,9,9,6,4,2,14,2,0,12,1,5,1,10,6,7,9,5,2,9,8,0,5,10,13,1,9,4,4,12,5,0,4,6,11,8,13,9,1,10,4,3,0,0,14,10,13,4,13,11,10,14,14,7,10,5,2,11,11,8,5,6,11,2,11,3,2,2,9,7,8,14,10,1,5,11,4,14,6,0,13,5,4,5,15,15,1,12,7,10,12,11,4,14,13,2,3,13,8,11,7,1,5,13,2,13,3,0,0,1,1,4,5,9,0,11,10,3,10,15,4,15,10,12,6,7,3,9,11,3,1,2,12,10,6,12,13,7,9,15,7,10,12,8,10,1,11,6,14,4,8,4,7,4,15,9,12,5,9,5,1,9,6,12,1,6,2,0,13,12,11,4,11,1,2,6,3,14,15,10,4,11,14,13,4,1,6,9,15,9,3,3,8,15,12,6,1,5,1,1,10,6,0,2,4,12,7,8,10,6,15,3,4,6,13,1,12,4,5,5,8,8,14,15,10,8,15,12,6,10,6,5,6,15,2,7,10,9,12,2,14,5,14,13,14,13,4,10,5,15,0,15,8,9,10,0,12,0,6,3,1,13,9,5,9,6,13,14,3,15,10,6,13,12,13,9,12,12,7,8,1,13,3,15,5,9,10,1,6,7,12,9,0,8,12,0,10,10,9,11,9,9,4,7,13,13,15,13,11,12,14,13,8,8,2,5,12,14,14,7,3,9,12,8,3,7,0,5,10,5,9,10,4,15,5,3,11,3,11,2,13,12,1,1,4,7,8,10,5,13,2,10,11,5,4,7,4,1,9,12,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"11\", \"15\"], \"clip_start\": 163.0, \"clip_end\": 167.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,13,4,10,11,11,4,1,8,15,4,4,5,9,4,12,4,7,15,0,3,14,4,5,7,4,11,2,14,6,1,15,9,1,14,3,3,11,3,7,7,8,0,5,4,1,9,2,2,15,5,7,8,12,0,4,4,4,0,13,2,15,3,3,4,3,15,7,10,1,2,9,8,3,12,7,7,8,10,14,2,2,12,4,2,12,14,14,13,10,2,6,10,1,11,3,5,1,2,9,12,10,11,1,9,10,11,15,2,8,15,12,5,10,7,7,7,6,7,7,2,12,10,4,4,3,14,5,13,14,11,7,2,6,0,11,8,11,11,14,4,7,15,9,0,15,3,13,15,4,1,7,10,0,0,8,10,3,15,6,9,7,1,6,11,15,5,15,15,14,9,1,8,4,5,9,0,11,7,1,8,4,6,9,4,2,8,13,0,5,8,14,5,9,4,12,6,14,7,4,15,14,8,4,4,5,5,13,11,4,1,5,15,15,5,10,1,7,7,8,9,12,6,15,12,12,9,1,12,0,10,2,3,15,3,8,11,2,8,9,0,5,8,13,6,10,0,5,12,11,4,12,9,4,13,13,9,3,5,1,3,4,8,5,14,13,9,5,11,3,4,10,13,13,8,0,14,14,14,10,14,7,0,4,7,3,15,15,13,10,3,12,1,2,8,15,11,6,6,3,11,10,12,10,1,15,13,6,0,12,11,9,2,4,15,0,0,1,9,9,11,10,12,2,2,8,14,10,11,11,10,11,0,15,7,13,9,1,5,5,0,10,3,6,0,9,15,0,4,13,1,11,14,14,4,6,2,2,7,10,10,14,0,12,14,15,0,15,14,14,3,0,13,11,9,4,5,9,15,15,15,4,9,8,11,14,14,0,13,0,0,11,0,4,12,12,9,14,10,3,10,1,6,7,9,14,11,7,4,2,0,7,4,11,15,3,7,7,2,4,4,1,11,11,5,8,8,4,0,10,14,1,13,1,15,2,8,6,3,1,1,15,5,1,3,9,10,8,2,5,9,14,7,9,5,2,7,5,4,14,14,7,2,9,1,10,14,10,14,12,9,6,2,12,1,5,12,11,9,11,13,14,10,2,1,13,9,7,6,1,7,10,0,10,4,1,7,15,5,6,0,12,11,1,10,14,5,10,12,12,3,1,6,4,6,12,13,5,13,4,7,14,15,8,5,6,7,3,9,9,6,7,12,0,6,0,12,3,7,6,5,3,12,14,0,15,8,0,15,9,2,15,13,15,6,0,5,13,8,2,7,13,5,11,12,9,2,0,13,7,6,4,12,2,6,13,4,4,12,4,0,3,1,9,9,15,3,9,5,8,11,5,8,6,14,2,15,4,12,4,10,6,4,1,7,13,0,5,8,1,0,7,7,6,9,14,9,6,2,2,10,9,10,13,12,12,7,9,1,14,9,10,10,5,2,9,2,14,10,4,6,6,9,3,0,11,0,4,5,5,9,6,4,2,2,10,0,3,4,8,4,9,5,9,9,6,4,2,14,2,0,12,1,5,1,10,6,7,9,5,2,9,8,0,5,10,13,1,9,4,4,12,5,0,4,6,11,8,13,9,1,10,4,3,0,0,14,10,13,4,13,11,10,14,14,7,10,5,2,11,11,8,5,6,11,2,11,3,2,2,9,7,8,14,10,1,5,11,4,14,6,0,13,5,4,5,15,15,1,12,7,10,12,11,4,14,13,2,3,13,8,11,7,1,5,13,2,13,3,0,0,1,1,4,5,9,0,11,10,3,10,15,4,15,10,12,6,7,3,9,11,3,1,2,12,10,6,12,13,7,9,15,7,10,12,8,10,1,11,6,14,4,8,4,7,4,15,9,12,5,9,5,1,9,6,12,1,6,2,0,13,12,11,4,11,1,2,6,3,14,15,10,4,11,14,13,4,1,6,9,15,9,3,3,8,15,12,6,1,5,1,1,10,6,0,2,4,12,7,8,10,6,15,3,4,6,13,1,12,4,5,5,8,8,14,15,10,8,15,12,6,10,6,5,6,15,2,7,10,9,12,2,14,5,14,13,14,13,4,10,5,15,0,15,8,9,10,0,12,0,6,3,1,13,9,5,9,6,13,14,3,15,10,6,13,12,13,9,12,12,7,8,1,13,3,15,5,9,10,1,6,7,12,9,0,8,12,0,10,10,9,11,9,9,4,7,13,13,15,13,11,12,14,13,8,8,2,5,12,14,14,7,3,9,12,8,3,7,0,5,10,5,9,10,4,15,5,3,11,3,11,2,13,12,1,1,4,7,8,10,5,13,2,10,11,5,4,7,4,1,9,12,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 278.0, \"clip_end\": 281.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,13,4,10,11,11,4,1,8,15,4,4,5,9,4,12,4,7,15,0,3,14,4,5,7,4,11,2,14,6,1,15,9,1,14,3,3,11,3,7,7,8,0,5,4,1,9,2,2,15,5,7,8,12,0,4,4,4,0,13,2,15,3,3,4,3,15,7,10,1,2,9,8,3,12,7,7,8,10,14,2,2,12,4,2,12,14,14,13,10,2,6,10,1,11,3,5,1,2,9,12,10,11,1,9,10,11,15,2,8,15,12,5,10,7,7,7,6,7,7,2,12,10,4,4,3,14,5,13,14,11,7,2,6,0,11,8,11,11,14,4,7,15,9,0,15,3,13,15,4,1,7,10,0,0,8,10,3,15,6,9,7,1,6,11,15,5,15,15,14,9,1,8,4,5,9,0,11,7,1,8,4,6,9,4,2,8,13,0,5,8,14,5,9,4,12,6,14,7,4,15,14,8,4,4,5,5,13,11,4,1,5,15,15,5,10,1,7,7,8,9,12,6,15,12,12,9,1,12,0,10,2,3,15,3,8,11,2,8,9,0,5,8,13,6,10,0,5,12,11,4,12,9,4,13,13,9,3,5,1,3,4,8,5,14,13,9,5,11,3,4,10,13,13,8,0,14,14,14,10,14,7,0,4,7,3,15,15,13,10,3,12,1,2,8,15,11,6,6,3,11,10,12,10,1,15,13,6,0,12,11,9,2,4,15,0,0,1,9,9,11,10,12,2,2,8,14,10,11,11,10,11,0,15,7,13,9,1,5,5,0,10,3,6,0,9,15,0,4,13,1,11,14,14,4,6,2,2,7,10,10,14,0,12,14,15,0,15,14,14,3,0,13,11,9,4,5,9,15,15,15,4,9,8,11,14,14,0,13,0,0,11,0,4,12,12,9,14,10,3,10,1,6,7,9,14,11,7,4,2,0,7,4,11,15,3,7,7,2,4,4,1,11,11,5,8,8,4,0,10,14,1,13,1,15,2,8,6,3,1,1,15,5,1,3,9,10,8,2,5,9,14,7,9,5,2,7,5,4,14,14,7,2,9,1,10,14,10,14,12,9,6,2,12,1,5,12,11,9,11,13,14,10,2,1,13,9,7,6,1,7,10,0,10,4,1,7,15,5,6,0,12,11,1,10,14,5,10,12,12,3,1,6,4,6,12,13,5,13,4,7,14,15,8,5,6,7,3,9,9,6,7,12,0,6,0,12,3,7,6,5,3,12,14,0,15,8,0,15,9,2,15,13,15,6,0,5,13,8,2,7,13,5,11,12,9,2,0,13,7,6,4,12,2,6,13,4,4,12,4,0,3,1,9,9,15,3,9,5,8,11,5,8,6,14,2,15,4,12,4,10,6,4,1,7,13,0,5,8,1,0,7,7,6,9,14,9,6,2,2,10,9,10,13,12,12,7,9,1,14,9,10,10,5,2,9,2,14,10,4,6,6,9,3,0,11,0,4,5,5,9,6,4,2,2,10,0,3,4,8,4,9,5,9,9,6,4,2,14,2,0,12,1,5,1,10,6,7,9,5,2,9,8,0,5,10,13,1,9,4,4,12,5,0,4,6,11,8,13,9,1,10,4,3,0,0,14,10,13,4,13,11,10,14,14,7,10,5,2,11,11,8,5,6,11,2,11,3,2,2,9,7,8,14,10,1,5,11,4,14,6,0,13,5,4,5,15,15,1,12,7,10,12,11,4,14,13,2,3,13,8,11,7,1,5,13,2,13,3,0,0,1,1,4,5,9,0,11,10,3,10,15,4,15,10,12,6,7,3,9,11,3,1,2,12,10,6,12,13,7,9,15,7,10,12,8,10,1,11,6,14,4,8,4,7,4,15,9,12,5,9,5,1,9,6,12,1,6,2,0,13,12,11,4,11,1,2,6,3,14,15,10,4,11,14,13,4,1,6,9,15,9,3,3,8,15,12,6,1,5,1,1,10,6,0,2,4,12,7,8,10,6,15,3,4,6,13,1,12,4,5,5,8,8,14,15,10,8,15,12,6,10,6,5,6,15,2,7,10,9,12,2,14,5,14,13,14,13,4,10,5,15,0,15,8,9,10,0,12,0,6,3,1,13,9,5,9,6,13,14,3,15,10,6,13,12,13,9,12,12,7,8,1,13,3,15,5,9,10,1,6,7,12,9,0,8,12,0,10,10,9,11,9,9,4,7,13,13,15,13,11,12,14,13,8,8,2,5,12,14,14,7,3,9,12,8,3,7,0,5,10,5,9,10,4,15,5,3,11,3,11,2,13,12,1,1,4,7,8,10,5,13,2,10,11,5,4,7,4,1,9,12,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"12\"], \"clip_start\": 556.0, \"clip_end\": 559.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q4_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,13,4,10,11,11,4,1,8,15,4,4,5,9,4,12,4,7,15,0,3,14,4,5,7,4,11,2,14,6,1,15,9,1,14,3,3,11,3,7,7,8,0,5,4,1,9,2,2,15,5,7,8,12,0,4,4,4,0,13,2,15,3,3,4,3,15,7,10,1,2,9,8,3,12,7,7,8,10,14,2,2,12,4,2,12,14,14,13,10,2,6,10,1,11,3,5,1,2,9,12,10,11,1,9,10,11,15,2,8,15,12,5,10,7,7,7,6,7,7,2,12,10,4,4,3,14,5,13,14,11,7,2,6,0,11,8,11,11,14,4,7,15,9,0,15,3,13,15,4,1,7,10,0,0,8,10,3,15,6,9,7,1,6,11,15,5,15,15,14,9,1,8,4,5,9,0,11,7,1,8,4,6,9,4,2,8,13,0,5,8,14,5,9,4,12,6,14,7,4,15,14,8,4,4,5,5,13,11,4,1,5,15,15,5,10,1,7,7,8,9,12,6,15,12,12,9,1,12,0,10,2,3,15,3,8,11,2,8,9,0,5,8,13,6,10,0,5,12,11,4,12,9,4,13,13,9,3,5,1,3,4,8,5,14,13,9,5,11,3,4,10,13,13,8,0,14,14,14,10,14,7,0,4,7,3,15,15,13,10,3,12,1,2,8,15,11,6,6,3,11,10,12,10,1,15,13,6,0,12,11,9,2,4,15,0,0,1,9,9,11,10,12,2,2,8,14,10,11,11,10,11,0,15,7,13,9,1,5,5,0,10,3,6,0,9,15,0,4,13,1,11,14,14,4,6,2,2,7,10,10,14,0,12,14,15,0,15,14,14,3,0,13,11,9,4,5,9,15,15,15,4,9,8,11,14,14,0,13,0,0,11,0,4,12,12,9,14,10,3,10,1,6,7,9,14,11,7,4,2,0,7,4,11,15,3,7,7,2,4,4,1,11,11,5,8,8,4,0,10,14,1,13,1,15,2,8,6,3,1,1,15,5,1,3,9,10,8,2,5,9,14,7,9,5,2,7,5,4,14,14,7,2,9,1,10,14,10,14,12,9,6,2,12,1,5,12,11,9,11,13,14,10,2,1,13,9,7,6,1,7,10,0,10,4,1,7,15,5,6,0,12,11,1,10,14,5,10,12,12,3,1,6,4,6,12,13,5,13,4,7,14,15,8,5,6,7,3,9,9,6,7,12,0,6,0,12,3,7,6,5,3,12,14,0,15,8,0,15,9,2,15,13,15,6,0,5,13,8,2,7,13,5,11,12,9,2,0,13,7,6,4,12,2,6,13,4,4,12,4,0,3,1,9,9,15,3,9,5,8,11,5,8,6,14,2,15,4,12,4,10,6,4,1,7,13,0,5,8,1,0,7,7,6,9,14,9,6,2,2,10,9,10,13,12,12,7,9,1,14,9,10,10,5,2,9,2,14,10,4,6,6,9,3,0,11,0,4,5,5,9,6,4,2,2,10,0,3,4,8,4,9,5,9,9,6,4,2,14,2,0,12,1,5,1,10,6,7,9,5,2,9,8,0,5,10,13,1,9,4,4,12,5,0,4,6,11,8,13,9,1,10,4,3,0,0,14,10,13,4,13,11,10,14,14,7,10,5,2,11,11,8,5,6,11,2,11,3,2,2,9,7,8,14,10,1,5,11,4,14,6,0,13,5,4,5,15,15,1,12,7,10,12,11,4,14,13,2,3,13,8,11,7,1,5,13,2,13,3,0,0,1,1,4,5,9,0,11,10,3,10,15,4,15,10,12,6,7,3,9,11,3,1,2,12,10,6,12,13,7,9,15,7,10,12,8,10,1,11,6,14,4,8,4,7,4,15,9,12,5,9,5,1,9,6,12,1,6,2,0,13,12,11,4,11,1,2,6,3,14,15,10,4,11,14,13,4,1,6,9,15,9,3,3,8,15,12,6,1,5,1,1,10,6,0,2,4,12,7,8,10,6,15,3,4,6,13,1,12,4,5,5,8,8,14,15,10,8,15,12,6,10,6,5,6,15,2,7,10,9,12,2,14,5,14,13,14,13,4,10,5,15,0,15,8,9,10,0,12,0,6,3,1,13,9,5,9,6,13,14,3,15,10,6,13,12,13,9,12,12,7,8,1,13,3,15,5,9,10,1,6,7,12,9,0,8,12,0,10,10,9,11,9,9,4,7,13,13,15,13,11,12,14,13,8,8,2,5,12,14,14,7,3,9,12,8,3,7,0,5,10,5,9,10,4,15,5,3,11,3,11,2,13,12,1,1,4,7,8,10,5,13,2,10,11,5,4,7,4,1,9,12,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"13\", \"11\", \"10\", \"14\"], \"clip_start\": 709.0, \"clip_end\": 715.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q5_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,13,4,10,11,11,4,1,8,15,4,4,5,9,4,12,4,7,15,0,3,14,4,5,7,4,11,2,14,6,1,15,9,1,14,3,3,11,3,7,7,8,0,5,4,1,9,2,2,15,5,7,8,12,0,4,4,4,0,13,2,15,3,3,4,3,15,7,10,1,2,9,8,3,12,7,7,8,10,14,2,2,12,4,2,12,14,14,13,10,2,6,10,1,11,3,5,1,2,9,12,10,11,1,9,10,11,15,2,8,15,12,5,10,7,7,7,6,7,7,2,12,10,4,4,3,14,5,13,14,11,7,2,6,0,11,8,11,11,14,4,7,15,9,0,15,3,13,15,4,1,7,10,0,0,8,10,3,15,6,9,7,1,6,11,15,5,15,15,14,9,1,8,4,5,9,0,11,7,1,8,4,6,9,4,2,8,13,0,5,8,14,5,9,4,12,6,14,7,4,15,14,8,4,4,5,5,13,11,4,1,5,15,15,5,10,1,7,7,8,9,12,6,15,12,12,9,1,12,0,10,2,3,15,3,8,11,2,8,9,0,5,8,13,6,10,0,5,12,11,4,12,9,4,13,13,9,3,5,1,3,4,8,5,14,13,9,5,11,3,4,10,13,13,8,0,14,14,14,10,14,7,0,4,7,3,15,15,13,10,3,12,1,2,8,15,11,6,6,3,11,10,12,10,1,15,13,6,0,12,11,9,2,4,15,0,0,1,9,9,11,10,12,2,2,8,14,10,11,11,10,11,0,15,7,13,9,1,5,5,0,10,3,6,0,9,15,0,4,13,1,11,14,14,4,6,2,2,7,10,10,14,0,12,14,15,0,15,14,14,3,0,13,11,9,4,5,9,15,15,15,4,9,8,11,14,14,0,13,0,0,11,0,4,12,12,9,14,10,3,10,1,6,7,9,14,11,7,4,2,0,7,4,11,15,3,7,7,2,4,4,1,11,11,5,8,8,4,0,10,14,1,13,1,15,2,8,6,3,1,1,15,5,1,3,9,10,8,2,5,9,14,7,9,5,2,7,5,4,14,14,7,2,9,1,10,14,10,14,12,9,6,2,12,1,5,12,11,9,11,13,14,10,2,1,13,9,7,6,1,7,10,0,10,4,1,7,15,5,6,0,12,11,1,10,14,5,10,12,12,3,1,6,4,6,12,13,5,13,4,7,14,15,8,5,6,7,3,9,9,6,7,12,0,6,0,12,3,7,6,5,3,12,14,0,15,8,0,15,9,2,15,13,15,6,0,5,13,8,2,7,13,5,11,12,9,2,0,13,7,6,4,12,2,6,13,4,4,12,4,0,3,1,9,9,15,3,9,5,8,11,5,8,6,14,2,15,4,12,4,10,6,4,1,7,13,0,5,8,1,0,7,7,6,9,14,9,6,2,2,10,9,10,13,12,12,7,9,1,14,9,10,10,5,2,9,2,14,10,4,6,6,9,3,0,11,0,4,5,5,9,6,4,2,2,10,0,3,4,8,4,9,5,9,9,6,4,2,14,2,0,12,1,5,1,10,6,7,9,5,2,9,8,0,5,10,13,1,9,4,4,12,5,0,4,6,11,8,13,9,1,10,4,3,0,0,14,10,13,4,13,11,10,14,14,7,10,5,2,11,11,8,5,6,11,2,11,3,2,2,9,7,8,14,10,1,5,11,4,14,6,0,13,5,4,5,15,15,1,12,7,10,12,11,4,14,13,2,3,13,8,11,7,1,5,13,2,13,3,0,0,1,1,4,5,9,0,11,10,3,10,15,4,15,10,12,6,7,3,9,11,3,1,2,12,10,6,12,13,7,9,15,7,10,12,8,10,1,11,6,14,4,8,4,7,4,15,9,12,5,9,5,1,9,6,12,1,6,2,0,13,12,11,4,11,1,2,6,3,14,15,10,4,11,14,13,4,1,6,9,15,9,3,3,8,15,12,6,1,5,1,1,10,6,0,2,4,12,7,8,10,6,15,3,4,6,13,1,12,4,5,5,8,8,14,15,10,8,15,12,6,10,6,5,6,15,2,7,10,9,12,2,14,5,14,13,14,13,4,10,5,15,0,15,8,9,10,0,12,0,6,3,1,13,9,5,9,6,13,14,3,15,10,6,13,12,13,9,12,12,7,8,1,13,3,15,5,9,10,1,6,7,12,9,0,8,12,0,10,10,9,11,9,9,4,7,13,13,15,13,11,12,14,13,8,8,2,5,12,14,14,7,3,9,12,8,3,7,0,5,10,5,9,10,4,15,5,3,11,3,11,2,13,12,1,1,4,7,8,10,5,13,2,10,11,5,4,7,4,1,9,12,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"10\", \"14\", \"10\", \"0\"], \"clip_start\": 601.0, \"clip_end\": 607.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q6_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,13,4,10,11,11,4,1,8,15,4,4,5,9,4,12,4,7,15,0,3,14,4,5,7,4,11,2,14,6,1,15,9,1,14,3,3,11,3,7,7,8,0,5,4,1,9,2,2,15,5,7,8,12,0,4,4,4,0,13,2,15,3,3,4,3,15,7,10,1,2,9,8,3,12,7,7,8,10,14,2,2,12,4,2,12,14,14,13,10,2,6,10,1,11,3,5,1,2,9,12,10,11,1,9,10,11,15,2,8,15,12,5,10,7,7,7,6,7,7,2,12,10,4,4,3,14,5,13,14,11,7,2,6,0,11,8,11,11,14,4,7,15,9,0,15,3,13,15,4,1,7,10,0,0,8,10,3,15,6,9,7,1,6,11,15,5,15,15,14,9,1,8,4,5,9,0,11,7,1,8,4,6,9,4,2,8,13,0,5,8,14,5,9,4,12,6,14,7,4,15,14,8,4,4,5,5,13,11,4,1,5,15,15,5,10,1,7,7,8,9,12,6,15,12,12,9,1,12,0,10,2,3,15,3,8,11,2,8,9,0,5,8,13,6,10,0,5,12,11,4,12,9,4,13,13,9,3,5,1,3,4,8,5,14,13,9,5,11,3,4,10,13,13,8,0,14,14,14,10,14,7,0,4,7,3,15,15,13,10,3,12,1,2,8,15,11,6,6,3,11,10,12,10,1,15,13,6,0,12,11,9,2,4,15,0,0,1,9,9,11,10,12,2,2,8,14,10,11,11,10,11,0,15,7,13,9,1,5,5,0,10,3,6,0,9,15,0,4,13,1,11,14,14,4,6,2,2,7,10,10,14,0,12,14,15,0,15,14,14,3,0,13,11,9,4,5,9,15,15,15,4,9,8,11,14,14,0,13,0,0,11,0,4,12,12,9,14,10,3,10,1,6,7,9,14,11,7,4,2,0,7,4,11,15,3,7,7,2,4,4,1,11,11,5,8,8,4,0,10,14,1,13,1,15,2,8,6,3,1,1,15,5,1,3,9,10,8,2,5,9,14,7,9,5,2,7,5,4,14,14,7,2,9,1,10,14,10,14,12,9,6,2,12,1,5,12,11,9,11,13,14,10,2,1,13,9,7,6,1,7,10,0,10,4,1,7,15,5,6,0,12,11,1,10,14,5,10,12,12,3,1,6,4,6,12,13,5,13,4,7,14,15,8,5,6,7,3,9,9,6,7,12,0,6,0,12,3,7,6,5,3,12,14,0,15,8,0,15,9,2,15,13,15,6,0,5,13,8,2,7,13,5,11,12,9,2,0,13,7,6,4,12,2,6,13,4,4,12,4,0,3,1,9,9,15,3,9,5,8,11,5,8,6,14,2,15,4,12,4,10,6,4,1,7,13,0,5,8,1,0,7,7,6,9,14,9,6,2,2,10,9,10,13,12,12,7,9,1,14,9,10,10,5,2,9,2,14,10,4,6,6,9,3,0,11,0,4,5,5,9,6,4,2,2,10,0,3,4,8,4,9,5,9,9,6,4,2,14,2,0,12,1,5,1,10,6,7,9,5,2,9,8,0,5,10,13,1,9,4,4,12,5,0,4,6,11,8,13,9,1,10,4,3,0,0,14,10,13,4,13,11,10,14,14,7,10,5,2,11,11,8,5,6,11,2,11,3,2,2,9,7,8,14,10,1,5,11,4,14,6,0,13,5,4,5,15,15,1,12,7,10,12,11,4,14,13,2,3,13,8,11,7,1,5,13,2,13,3,0,0,1,1,4,5,9,0,11,10,3,10,15,4,15,10,12,6,7,3,9,11,3,1,2,12,10,6,12,13,7,9,15,7,10,12,8,10,1,11,6,14,4,8,4,7,4,15,9,12,5,9,5,1,9,6,12,1,6,2,0,13,12,11,4,11,1,2,6,3,14,15,10,4,11,14,13,4,1,6,9,15,9,3,3,8,15,12,6,1,5,1,1,10,6,0,2,4,12,7,8,10,6,15,3,4,6,13,1,12,4,5,5,8,8,14,15,10,8,15,12,6,10,6,5,6,15,2,7,10,9,12,2,14,5,14,13,14,13,4,10,5,15,0,15,8,9,10,0,12,0,6,3,1,13,9,5,9,6,13,14,3,15,10,6,13,12,13,9,12,12,7,8,1,13,3,15,5,9,10,1,6,7,12,9,0,8,12,0,10,10,9,11,9,9,4,7,13,13,15,13,11,12,14,13,8,8,2,5,12,14,14,7,3,9,12,8,3,7,0,5,10,5,9,10,4,15,5,3,11,3,11,2,13,12,1,1,4,7,8,10,5,13,2,10,11,5,4,7,4,1,9,12,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"5\", \"6\", \"11\", \"2\", \"11\"], \"clip_start\": 722.0, \"clip_end\": 728.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q7_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,13,4,10,11,11,4,1,8,15,4,4,5,9,4,12,4,7,15,0,3,14,4,5,7,4,11,2,14,6,1,15,9,1,14,3,3,11,3,7,7,8,0,5,4,1,9,2,2,15,5,7,8,12,0,4,4,4,0,13,2,15,3,3,4,3,15,7,10,1,2,9,8,3,12,7,7,8,10,14,2,2,12,4,2,12,14,14,13,10,2,6,10,1,11,3,5,1,2,9,12,10,11,1,9,10,11,15,2,8,15,12,5,10,7,7,7,6,7,7,2,12,10,4,4,3,14,5,13,14,11,7,2,6,0,11,8,11,11,14,4,7,15,9,0,15,3,13,15,4,1,7,10,0,0,8,10,3,15,6,9,7,1,6,11,15,5,15,15,14,9,1,8,4,5,9,0,11,7,1,8,4,6,9,4,2,8,13,0,5,8,14,5,9,4,12,6,14,7,4,15,14,8,4,4,5,5,13,11,4,1,5,15,15,5,10,1,7,7,8,9,12,6,15,12,12,9,1,12,0,10,2,3,15,3,8,11,2,8,9,0,5,8,13,6,10,0,5,12,11,4,12,9,4,13,13,9,3,5,1,3,4,8,5,14,13,9,5,11,3,4,10,13,13,8,0,14,14,14,10,14,7,0,4,7,3,15,15,13,10,3,12,1,2,8,15,11,6,6,3,11,10,12,10,1,15,13,6,0,12,11,9,2,4,15,0,0,1,9,9,11,10,12,2,2,8,14,10,11,11,10,11,0,15,7,13,9,1,5,5,0,10,3,6,0,9,15,0,4,13,1,11,14,14,4,6,2,2,7,10,10,14,0,12,14,15,0,15,14,14,3,0,13,11,9,4,5,9,15,15,15,4,9,8,11,14,14,0,13,0,0,11,0,4,12,12,9,14,10,3,10,1,6,7,9,14,11,7,4,2,0,7,4,11,15,3,7,7,2,4,4,1,11,11,5,8,8,4,0,10,14,1,13,1,15,2,8,6,3,1,1,15,5,1,3,9,10,8,2,5,9,14,7,9,5,2,7,5,4,14,14,7,2,9,1,10,14,10,14,12,9,6,2,12,1,5,12,11,9,11,13,14,10,2,1,13,9,7,6,1,7,10,0,10,4,1,7,15,5,6,0,12,11,1,10,14,5,10,12,12,3,1,6,4,6,12,13,5,13,4,7,14,15,8,5,6,7,3,9,9,6,7,12,0,6,0,12,3,7,6,5,3,12,14,0,15,8,0,15,9,2,15,13,15,6,0,5,13,8,2,7,13,5,11,12,9,2,0,13,7,6,4,12,2,6,13,4,4,12,4,0,3,1,9,9,15,3,9,5,8,11,5,8,6,14,2,15,4,12,4,10,6,4,1,7,13,0,5,8,1,0,7,7,6,9,14,9,6,2,2,10,9,10,13,12,12,7,9,1,14,9,10,10,5,2,9,2,14,10,4,6,6,9,3,0,11,0,4,5,5,9,6,4,2,2,10,0,3,4,8,4,9,5,9,9,6,4,2,14,2,0,12,1,5,1,10,6,7,9,5,2,9,8,0,5,10,13,1,9,4,4,12,5,0,4,6,11,8,13,9,1,10,4,3,0,0,14,10,13,4,13,11,10,14,14,7,10,5,2,11,11,8,5,6,11,2,11,3,2,2,9,7,8,14,10,1,5,11,4,14,6,0,13,5,4,5,15,15,1,12,7,10,12,11,4,14,13,2,3,13,8,11,7,1,5,13,2,13,3,0,0,1,1,4,5,9,0,11,10,3,10,15,4,15,10,12,6,7,3,9,11,3,1,2,12,10,6,12,13,7,9,15,7,10,12,8,10,1,11,6,14,4,8,4,7,4,15,9,12,5,9,5,1,9,6,12,1,6,2,0,13,12,11,4,11,1,2,6,3,14,15,10,4,11,14,13,4,1,6,9,15,9,3,3,8,15,12,6,1,5,1,1,10,6,0,2,4,12,7,8,10,6,15,3,4,6,13,1,12,4,5,5,8,8,14,15,10,8,15,12,6,10,6,5,6,15,2,7,10,9,12,2,14,5,14,13,14,13,4,10,5,15,0,15,8,9,10,0,12,0,6,3,1,13,9,5,9,6,13,14,3,15,10,6,13,12,13,9,12,12,7,8,1,13,3,15,5,9,10,1,6,7,12,9,0,8,12,0,10,10,9,11,9,9,4,7,13,13,15,13,11,12,14,13,8,8,2,5,12,14,14,7,3,9,12,8,3,7,0,5,10,5,9,10,4,15,5,3,11,3,11,2,13,12,1,1,4,7,8,10,5,13,2,10,11,5,4,7,4,1,9,12,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"8\", \"13\", \"9\", \"1\", \"10\"], \"clip_start\": 697.0, \"clip_end\": 703.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,13,4,10,11,11,4,1,8,15,4,4,5,9,4,12,4,7,15,0,3,14,4,5,7,4,11,2,14,6,1,15,9,1,14,3,3,11,3,7,7,8,0,5,4,1,9,2,2,15,5,7,8,12,0,4,4,4,0,13,2,15,3,3,4,3,15,7,10,1,2,9,8,3,12,7,7,8,10,14,2,2,12,4,2,12,14,14,13,10,2,6,10,1,11,3,5,1,2,9,12,10,11,1,9,10,11,15,2,8,15,12,5,10,7,7,7,6,7,7,2,12,10,4,4,3,14,5,13,14,11,7,2,6,0,11,8,11,11,14,4,7,15,9,0,15,3,13,15,4,1,7,10,0,0,8,10,3,15,6,9,7,1,6,11,15,5,15,15,14,9,1,8,4,5,9,0,11,7,1,8,4,6,9,4,2,8,13,0,5,8,14,5,9,4,12,6,14,7,4,15,14,8,4,4,5,5,13,11,4,1,5,15,15,5,10,1,7,7,8,9,12,6,15,12,12,9,1,12,0,10,2,3,15,3,8,11,2,8,9,0,5,8,13,6,10,0,5,12,11,4,12,9,4,13,13,9,3,5,1,3,4,8,5,14,13,9,5,11,3,4,10,13,13,8,0,14,14,14,10,14,7,0,4,7,3,15,15,13,10,3,12,1,2,8,15,11,6,6,3,11,10,12,10,1,15,13,6,0,12,11,9,2,4,15,0,0,1,9,9,11,10,12,2,2,8,14,10,11,11,10,11,0,15,7,13,9,1,5,5,0,10,3,6,0,9,15,0,4,13,1,11,14,14,4,6,2,2,7,10,10,14,0,12,14,15,0,15,14,14,3,0,13,11,9,4,5,9,15,15,15,4,9,8,11,14,14,0,13,0,0,11,0,4,12,12,9,14,10,3,10,1,6,7,9,14,11,7,4,2,0,7,4,11,15,3,7,7,2,4,4,1,11,11,5,8,8,4,0,10,14,1,13,1,15,2,8,6,3,1,1,15,5,1,3,9,10,8,2,5,9,14,7,9,5,2,7,5,4,14,14,7,2,9,1,10,14,10,14,12,9,6,2,12,1,5,12,11,9,11,13,14,10,2,1,13,9,7,6,1,7,10,0,10,4,1,7,15,5,6,0,12,11,1,10,14,5,10,12,12,3,1,6,4,6,12,13,5,13,4,7,14,15,8,5,6,7,3,9,9,6,7,12,0,6,0,12,3,7,6,5,3,12,14,0,15,8,0,15,9,2,15,13,15,6,0,5,13,8,2,7,13,5,11,12,9,2,0,13,7,6,4,12,2,6,13,4,4,12,4,0,3,1,9,9,15,3,9,5,8,11,5,8,6,14,2,15,4,12,4,10,6,4,1,7,13,0,5,8,1,0,7,7,6,9,14,9,6,2,2,10,9,10,13,12,12,7,9,1,14,9,10,10,5,2,9,2,14,10,4,6,6,9,3,0,11,0,4,5,5,9,6,4,2,2,10,0,3,4,8,4,9,5,9,9,6,4,2,14,2,0,12,1,5,1,10,6,7,9,5,2,9,8,0,5,10,13,1,9,4,4,12,5,0,4,6,11,8,13,9,1,10,4,3,0,0,14,10,13,4,13,11,10,14,14,7,10,5,2,11,11,8,5,6,11,2,11,3,2,2,9,7,8,14,10,1,5,11,4,14,6,0,13,5,4,5,15,15,1,12,7,10,12,11,4,14,13,2,3,13,8,11,7,1,5,13,2,13,3,0,0,1,1,4,5,9,0,11,10,3,10,15,4,15,10,12,6,7,3,9,11,3,1,2,12,10,6,12,13,7,9,15,7,10,12,8,10,1,11,6,14,4,8,4,7,4,15,9,12,5,9,5,1,9,6,12,1,6,2,0,13,12,11,4,11,1,2,6,3,14,15,10,4,11,14,13,4,1,6,9,15,9,3,3,8,15,12,6,1,5,1,1,10,6,0,2,4,12,7,8,10,6,15,3,4,6,13,1,12,4,5,5,8,8,14,15,10,8,15,12,6,10,6,5,6,15,2,7,10,9,12,2,14,5,14,13,14,13,4,10,5,15,0,15,8,9,10,0,12,0,6,3,1,13,9,5,9,6,13,14,3,15,10,6,13,12,13,9,12,12,7,8,1,13,3,15,5,9,10,1,6,7,12,9,0,8,12,0,10,10,9,11,9,9,4,7,13,13,15,13,11,12,14,13,8,8,2,5,12,14,14,7,3,9,12,8,3,7,0,5,10,5,9,10,4,15,5,3,11,3,11,2,13,12,1,1,4,7,8,10,5,13,2,10,11,5,4,7,4,1,9,12,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"5\", \"2\"], \"clip_start\": 716.0, \"clip_end\": 720.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,13,4,10,11,11,4,1,8,15,4,4,5,9,4,12,4,7,15,0,3,14,4,5,7,4,11,2,14,6,1,15,9,1,14,3,3,11,3,7,7,8,0,5,4,1,9,2,2,15,5,7,8,12,0,4,4,4,0,13,2,15,3,3,4,3,15,7,10,1,2,9,8,3,12,7,7,8,10,14,2,2,12,4,2,12,14,14,13,10,2,6,10,1,11,3,5,1,2,9,12,10,11,1,9,10,11,15,2,8,15,12,5,10,7,7,7,6,7,7,2,12,10,4,4,3,14,5,13,14,11,7,2,6,0,11,8,11,11,14,4,7,15,9,0,15,3,13,15,4,1,7,10,0,0,8,10,3,15,6,9,7,1,6,11,15,5,15,15,14,9,1,8,4,5,9,0,11,7,1,8,4,6,9,4,2,8,13,0,5,8,14,5,9,4,12,6,14,7,4,15,14,8,4,4,5,5,13,11,4,1,5,15,15,5,10,1,7,7,8,9,12,6,15,12,12,9,1,12,0,10,2,3,15,3,8,11,2,8,9,0,5,8,13,6,10,0,5,12,11,4,12,9,4,13,13,9,3,5,1,3,4,8,5,14,13,9,5,11,3,4,10,13,13,8,0,14,14,14,10,14,7,0,4,7,3,15,15,13,10,3,12,1,2,8,15,11,6,6,3,11,10,12,10,1,15,13,6,0,12,11,9,2,4,15,0,0,1,9,9,11,10,12,2,2,8,14,10,11,11,10,11,0,15,7,13,9,1,5,5,0,10,3,6,0,9,15,0,4,13,1,11,14,14,4,6,2,2,7,10,10,14,0,12,14,15,0,15,14,14,3,0,13,11,9,4,5,9,15,15,15,4,9,8,11,14,14,0,13,0,0,11,0,4,12,12,9,14,10,3,10,1,6,7,9,14,11,7,4,2,0,7,4,11,15,3,7,7,2,4,4,1,11,11,5,8,8,4,0,10,14,1,13,1,15,2,8,6,3,1,1,15,5,1,3,9,10,8,2,5,9,14,7,9,5,2,7,5,4,14,14,7,2,9,1,10,14,10,14,12,9,6,2,12,1,5,12,11,9,11,13,14,10,2,1,13,9,7,6,1,7,10,0,10,4,1,7,15,5,6,0,12,11,1,10,14,5,10,12,12,3,1,6,4,6,12,13,5,13,4,7,14,15,8,5,6,7,3,9,9,6,7,12,0,6,0,12,3,7,6,5,3,12,14,0,15,8,0,15,9,2,15,13,15,6,0,5,13,8,2,7,13,5,11,12,9,2,0,13,7,6,4,12,2,6,13,4,4,12,4,0,3,1,9,9,15,3,9,5,8,11,5,8,6,14,2,15,4,12,4,10,6,4,1,7,13,0,5,8,1,0,7,7,6,9,14,9,6,2,2,10,9,10,13,12,12,7,9,1,14,9,10,10,5,2,9,2,14,10,4,6,6,9,3,0,11,0,4,5,5,9,6,4,2,2,10,0,3,4,8,4,9,5,9,9,6,4,2,14,2,0,12,1,5,1,10,6,7,9,5,2,9,8,0,5,10,13,1,9,4,4,12,5,0,4,6,11,8,13,9,1,10,4,3,0,0,14,10,13,4,13,11,10,14,14,7,10,5,2,11,11,8,5,6,11,2,11,3,2,2,9,7,8,14,10,1,5,11,4,14,6,0,13,5,4,5,15,15,1,12,7,10,12,11,4,14,13,2,3,13,8,11,7,1,5,13,2,13,3,0,0,1,1,4,5,9,0,11,10,3,10,15,4,15,10,12,6,7,3,9,11,3,1,2,12,10,6,12,13,7,9,15,7,10,12,8,10,1,11,6,14,4,8,4,7,4,15,9,12,5,9,5,1,9,6,12,1,6,2,0,13,12,11,4,11,1,2,6,3,14,15,10,4,11,14,13,4,1,6,9,15,9,3,3,8,15,12,6,1,5,1,1,10,6,0,2,4,12,7,8,10,6,15,3,4,6,13,1,12,4,5,5,8,8,14,15,10,8,15,12,6,10,6,5,6,15,2,7,10,9,12,2,14,5,14,13,14,13,4,10,5,15,0,15,8,9,10,0,12,0,6,3,1,13,9,5,9,6,13,14,3,15,10,6,13,12,13,9,12,12,7,8,1,13,3,15,5,9,10,1,6,7,12,9,0,8,12,0,10,10,9,11,9,9,4,7,13,13,15,13,11,12,14,13,8,8,2,5,12,14,14,7,3,9,12,8,3,7,0,5,10,5,9,10,4,15,5,3,11,3,11,2,13,12,1,1,4,7,8,10,5,13,2,10,11,5,4,7,4,1,9,12,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"8\", \"8\", \"4\"], \"clip_start\": 425.0, \"clip_end\": 429.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q10_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,13,4,10,11,11,4,1,8,15,4,4,5,9,4,12,4,7,15,0,3,14,4,5,7,4,11,2,14,6,1,15,9,1,14,3,3,11,3,7,7,8,0,5,4,1,9,2,2,15,5,7,8,12,0,4,4,4,0,13,2,15,3,3,4,3,15,7,10,1,2,9,8,3,12,7,7,8,10,14,2,2,12,4,2,12,14,14,13,10,2,6,10,1,11,3,5,1,2,9,12,10,11,1,9,10,11,15,2,8,15,12,5,10,7,7,7,6,7,7,2,12,10,4,4,3,14,5,13,14,11,7,2,6,0,11,8,11,11,14,4,7,15,9,0,15,3,13,15,4,1,7,10,0,0,8,10,3,15,6,9,7,1,6,11,15,5,15,15,14,9,1,8,4,5,9,0,11,7,1,8,4,6,9,4,2,8,13,0,5,8,14,5,9,4,12,6,14,7,4,15,14,8,4,4,5,5,13,11,4,1,5,15,15,5,10,1,7,7,8,9,12,6,15,12,12,9,1,12,0,10,2,3,15,3,8,11,2,8,9,0,5,8,13,6,10,0,5,12,11,4,12,9,4,13,13,9,3,5,1,3,4,8,5,14,13,9,5,11,3,4,10,13,13,8,0,14,14,14,10,14,7,0,4,7,3,15,15,13,10,3,12,1,2,8,15,11,6,6,3,11,10,12,10,1,15,13,6,0,12,11,9,2,4,15,0,0,1,9,9,11,10,12,2,2,8,14,10,11,11,10,11,0,15,7,13,9,1,5,5,0,10,3,6,0,9,15,0,4,13,1,11,14,14,4,6,2,2,7,10,10,14,0,12,14,15,0,15,14,14,3,0,13,11,9,4,5,9,15,15,15,4,9,8,11,14,14,0,13,0,0,11,0,4,12,12,9,14,10,3,10,1,6,7,9,14,11,7,4,2,0,7,4,11,15,3,7,7,2,4,4,1,11,11,5,8,8,4,0,10,14,1,13,1,15,2,8,6,3,1,1,15,5,1,3,9,10,8,2,5,9,14,7,9,5,2,7,5,4,14,14,7,2,9,1,10,14,10,14,12,9,6,2,12,1,5,12,11,9,11,13,14,10,2,1,13,9,7,6,1,7,10,0,10,4,1,7,15,5,6,0,12,11,1,10,14,5,10,12,12,3,1,6,4,6,12,13,5,13,4,7,14,15,8,5,6,7,3,9,9,6,7,12,0,6,0,12,3,7,6,5,3,12,14,0,15,8,0,15,9,2,15,13,15,6,0,5,13,8,2,7,13,5,11,12,9,2,0,13,7,6,4,12,2,6,13,4,4,12,4,0,3,1,9,9,15,3,9,5,8,11,5,8,6,14,2,15,4,12,4,10,6,4,1,7,13,0,5,8,1,0,7,7,6,9,14,9,6,2,2,10,9,10,13,12,12,7,9,1,14,9,10,10,5,2,9,2,14,10,4,6,6,9,3,0,11,0,4,5,5,9,6,4,2,2,10,0,3,4,8,4,9,5,9,9,6,4,2,14,2,0,12,1,5,1,10,6,7,9,5,2,9,8,0,5,10,13,1,9,4,4,12,5,0,4,6,11,8,13,9,1,10,4,3,0,0,14,10,13,4,13,11,10,14,14,7,10,5,2,11,11,8,5,6,11,2,11,3,2,2,9,7,8,14,10,1,5,11,4,14,6,0,13,5,4,5,15,15,1,12,7,10,12,11,4,14,13,2,3,13,8,11,7,1,5,13,2,13,3,0,0,1,1,4,5,9,0,11,10,3,10,15,4,15,10,12,6,7,3,9,11,3,1,2,12,10,6,12,13,7,9,15,7,10,12,8,10,1,11,6,14,4,8,4,7,4,15,9,12,5,9,5,1,9,6,12,1,6,2,0,13,12,11,4,11,1,2,6,3,14,15,10,4,11,14,13,4,1,6,9,15,9,3,3,8,15,12,6,1,5,1,1,10,6,0,2,4,12,7,8,10,6,15,3,4,6,13,1,12,4,5,5,8,8,14,15,10,8,15,12,6,10,6,5,6,15,2,7,10,9,12,2,14,5,14,13,14,13,4,10,5,15,0,15,8,9,10,0,12,0,6,3,1,13,9,5,9,6,13,14,3,15,10,6,13,12,13,9,12,12,7,8,1,13,3,15,5,9,10,1,6,7,12,9,0,8,12,0,10,10,9,11,9,9,4,7,13,13,15,13,11,12,14,13,8,8,2,5,12,14,14,7,3,9,12,8,3,7,0,5,10,5,9,10,4,15,5,3,11,3,11,2,13,12,1,1,4,7,8,10,5,13,2,10,11,5,4,7,4,1,9,12,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"2\", \"0\", \"13\", \"7\", \"6\"], \"clip_start\": 566.0, \"clip_end\": 572.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,13,4,10,11,11,4,1,8,15,4,4,5,9,4,12,4,7,15,0,3,14,4,5,7,4,11,2,14,6,1,15,9,1,14,3,3,11,3,7,7,8,0,5,4,1,9,2,2,15,5,7,8,12,0,4,4,4,0,13,2,15,3,3,4,3,15,7,10,1,2,9,8,3,12,7,7,8,10,14,2,2,12,4,2,12,14,14,13,10,2,6,10,1,11,3,5,1,2,9,12,10,11,1,9,10,11,15,2,8,15,12,5,10,7,7,7,6,7,7,2,12,10,4,4,3,14,5,13,14,11,7,2,6,0,11,8,11,11,14,4,7,15,9,0,15,3,13,15,4,1,7,10,0,0,8,10,3,15,6,9,7,1,6,11,15,5,15,15,14,9,1,8,4,5,9,0,11,7,1,8,4,6,9,4,2,8,13,0,5,8,14,5,9,4,12,6,14,7,4,15,14,8,4,4,5,5,13,11,4,1,5,15,15,5,10,1,7,7,8,9,12,6,15,12,12,9,1,12,0,10,2,3,15,3,8,11,2,8,9,0,5,8,13,6,10,0,5,12,11,4,12,9,4,13,13,9,3,5,1,3,4,8,5,14,13,9,5,11,3,4,10,13,13,8,0,14,14,14,10,14,7,0,4,7,3,15,15,13,10,3,12,1,2,8,15,11,6,6,3,11,10,12,10,1,15,13,6,0,12,11,9,2,4,15,0,0,1,9,9,11,10,12,2,2,8,14,10,11,11,10,11,0,15,7,13,9,1,5,5,0,10,3,6,0,9,15,0,4,13,1,11,14,14,4,6,2,2,7,10,10,14,0,12,14,15,0,15,14,14,3,0,13,11,9,4,5,9,15,15,15,4,9,8,11,14,14,0,13,0,0,11,0,4,12,12,9,14,10,3,10,1,6,7,9,14,11,7,4,2,0,7,4,11,15,3,7,7,2,4,4,1,11,11,5,8,8,4,0,10,14,1,13,1,15,2,8,6,3,1,1,15,5,1,3,9,10,8,2,5,9,14,7,9,5,2,7,5,4,14,14,7,2,9,1,10,14,10,14,12,9,6,2,12,1,5,12,11,9,11,13,14,10,2,1,13,9,7,6,1,7,10,0,10,4,1,7,15,5,6,0,12,11,1,10,14,5,10,12,12,3,1,6,4,6,12,13,5,13,4,7,14,15,8,5,6,7,3,9,9,6,7,12,0,6,0,12,3,7,6,5,3,12,14,0,15,8,0,15,9,2,15,13,15,6,0,5,13,8,2,7,13,5,11,12,9,2,0,13,7,6,4,12,2,6,13,4,4,12,4,0,3,1,9,9,15,3,9,5,8,11,5,8,6,14,2,15,4,12,4,10,6,4,1,7,13,0,5,8,1,0,7,7,6,9,14,9,6,2,2,10,9,10,13,12,12,7,9,1,14,9,10,10,5,2,9,2,14,10,4,6,6,9,3,0,11,0,4,5,5,9,6,4,2,2,10,0,3,4,8,4,9,5,9,9,6,4,2,14,2,0,12,1,5,1,10,6,7,9,5,2,9,8,0,5,10,13,1,9,4,4,12,5,0,4,6,11,8,13,9,1,10,4,3,0,0,14,10,13,4,13,11,10,14,14,7,10,5,2,11,11,8,5,6,11,2,11,3,2,2,9,7,8,14,10,1,5,11,4,14,6,0,13,5,4,5,15,15,1,12,7,10,12,11,4,14,13,2,3,13,8,11,7,1,5,13,2,13,3,0,0,1,1,4,5,9,0,11,10,3,10,15,4,15,10,12,6,7,3,9,11,3,1,2,12,10,6,12,13,7,9,15,7,10,12,8,10,1,11,6,14,4,8,4,7,4,15,9,12,5,9,5,1,9,6,12,1,6,2,0,13,12,11,4,11,1,2,6,3,14,15,10,4,11,14,13,4,1,6,9,15,9,3,3,8,15,12,6,1,5,1,1,10,6,0,2,4,12,7,8,10,6,15,3,4,6,13,1,12,4,5,5,8,8,14,15,10,8,15,12,6,10,6,5,6,15,2,7,10,9,12,2,14,5,14,13,14,13,4,10,5,15,0,15,8,9,10,0,12,0,6,3,1,13,9,5,9,6,13,14,3,15,10,6,13,12,13,9,12,12,7,8,1,13,3,15,5,9,10,1,6,7,12,9,0,8,12,0,10,10,9,11,9,9,4,7,13,13,15,13,11,12,14,13,8,8,2,5,12,14,14,7,3,9,12,8,3,7,0,5,10,5,9,10,4,15,5,3,11,3,11,2,13,12,1,1,4,7,8,10,5,13,2,10,11,5,4,7,4,1,9,12,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"8\", \"0\", \"4\"], \"clip_start\": 911.0, \"clip_end\": 915.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q12_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,13,4,10,11,11,4,1,8,15,4,4,5,9,4,12,4,7,15,0,3,14,4,5,7,4,11,2,14,6,1,15,9,1,14,3,3,11,3,7,7,8,0,5,4,1,9,2,2,15,5,7,8,12,0,4,4,4,0,13,2,15,3,3,4,3,15,7,10,1,2,9,8,3,12,7,7,8,10,14,2,2,12,4,2,12,14,14,13,10,2,6,10,1,11,3,5,1,2,9,12,10,11,1,9,10,11,15,2,8,15,12,5,10,7,7,7,6,7,7,2,12,10,4,4,3,14,5,13,14,11,7,2,6,0,11,8,11,11,14,4,7,15,9,0,15,3,13,15,4,1,7,10,0,0,8,10,3,15,6,9,7,1,6,11,15,5,15,15,14,9,1,8,4,5,9,0,11,7,1,8,4,6,9,4,2,8,13,0,5,8,14,5,9,4,12,6,14,7,4,15,14,8,4,4,5,5,13,11,4,1,5,15,15,5,10,1,7,7,8,9,12,6,15,12,12,9,1,12,0,10,2,3,15,3,8,11,2,8,9,0,5,8,13,6,10,0,5,12,11,4,12,9,4,13,13,9,3,5,1,3,4,8,5,14,13,9,5,11,3,4,10,13,13,8,0,14,14,14,10,14,7,0,4,7,3,15,15,13,10,3,12,1,2,8,15,11,6,6,3,11,10,12,10,1,15,13,6,0,12,11,9,2,4,15,0,0,1,9,9,11,10,12,2,2,8,14,10,11,11,10,11,0,15,7,13,9,1,5,5,0,10,3,6,0,9,15,0,4,13,1,11,14,14,4,6,2,2,7,10,10,14,0,12,14,15,0,15,14,14,3,0,13,11,9,4,5,9,15,15,15,4,9,8,11,14,14,0,13,0,0,11,0,4,12,12,9,14,10,3,10,1,6,7,9,14,11,7,4,2,0,7,4,11,15,3,7,7,2,4,4,1,11,11,5,8,8,4,0,10,14,1,13,1,15,2,8,6,3,1,1,15,5,1,3,9,10,8,2,5,9,14,7,9,5,2,7,5,4,14,14,7,2,9,1,10,14,10,14,12,9,6,2,12,1,5,12,11,9,11,13,14,10,2,1,13,9,7,6,1,7,10,0,10,4,1,7,15,5,6,0,12,11,1,10,14,5,10,12,12,3,1,6,4,6,12,13,5,13,4,7,14,15,8,5,6,7,3,9,9,6,7,12,0,6,0,12,3,7,6,5,3,12,14,0,15,8,0,15,9,2,15,13,15,6,0,5,13,8,2,7,13,5,11,12,9,2,0,13,7,6,4,12,2,6,13,4,4,12,4,0,3,1,9,9,15,3,9,5,8,11,5,8,6,14,2,15,4,12,4,10,6,4,1,7,13,0,5,8,1,0,7,7,6,9,14,9,6,2,2,10,9,10,13,12,12,7,9,1,14,9,10,10,5,2,9,2,14,10,4,6,6,9,3,0,11,0,4,5,5,9,6,4,2,2,10,0,3,4,8,4,9,5,9,9,6,4,2,14,2,0,12,1,5,1,10,6,7,9,5,2,9,8,0,5,10,13,1,9,4,4,12,5,0,4,6,11,8,13,9,1,10,4,3,0,0,14,10,13,4,13,11,10,14,14,7,10,5,2,11,11,8,5,6,11,2,11,3,2,2,9,7,8,14,10,1,5,11,4,14,6,0,13,5,4,5,15,15,1,12,7,10,12,11,4,14,13,2,3,13,8,11,7,1,5,13,2,13,3,0,0,1,1,4,5,9,0,11,10,3,10,15,4,15,10,12,6,7,3,9,11,3,1,2,12,10,6,12,13,7,9,15,7,10,12,8,10,1,11,6,14,4,8,4,7,4,15,9,12,5,9,5,1,9,6,12,1,6,2,0,13,12,11,4,11,1,2,6,3,14,15,10,4,11,14,13,4,1,6,9,15,9,3,3,8,15,12,6,1,5,1,1,10,6,0,2,4,12,7,8,10,6,15,3,4,6,13,1,12,4,5,5,8,8,14,15,10,8,15,12,6,10,6,5,6,15,2,7,10,9,12,2,14,5,14,13,14,13,4,10,5,15,0,15,8,9,10,0,12,0,6,3,1,13,9,5,9,6,13,14,3,15,10,6,13,12,13,9,12,12,7,8,1,13,3,15,5,9,10,1,6,7,12,9,0,8,12,0,10,10,9,11,9,9,4,7,13,13,15,13,11,12,14,13,8,8,2,5,12,14,14,7,3,9,12,8,3,7,0,5,10,5,9,10,4,15,5,3,11,3,11,2,13,12,1,1,4,7,8,10,5,13,2,10,11,5,4,7,4,1,9,12,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"4\", \"14\", \"13\"], \"clip_start\": 754.0, \"clip_end\": 758.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q13_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,13,4,10,11,11,4,1,8,15,4,4,5,9,4,12,4,7,15,0,3,14,4,5,7,4,11,2,14,6,1,15,9,1,14,3,3,11,3,7,7,8,0,5,4,1,9,2,2,15,5,7,8,12,0,4,4,4,0,13,2,15,3,3,4,3,15,7,10,1,2,9,8,3,12,7,7,8,10,14,2,2,12,4,2,12,14,14,13,10,2,6,10,1,11,3,5,1,2,9,12,10,11,1,9,10,11,15,2,8,15,12,5,10,7,7,7,6,7,7,2,12,10,4,4,3,14,5,13,14,11,7,2,6,0,11,8,11,11,14,4,7,15,9,0,15,3,13,15,4,1,7,10,0,0,8,10,3,15,6,9,7,1,6,11,15,5,15,15,14,9,1,8,4,5,9,0,11,7,1,8,4,6,9,4,2,8,13,0,5,8,14,5,9,4,12,6,14,7,4,15,14,8,4,4,5,5,13,11,4,1,5,15,15,5,10,1,7,7,8,9,12,6,15,12,12,9,1,12,0,10,2,3,15,3,8,11,2,8,9,0,5,8,13,6,10,0,5,12,11,4,12,9,4,13,13,9,3,5,1,3,4,8,5,14,13,9,5,11,3,4,10,13,13,8,0,14,14,14,10,14,7,0,4,7,3,15,15,13,10,3,12,1,2,8,15,11,6,6,3,11,10,12,10,1,15,13,6,0,12,11,9,2,4,15,0,0,1,9,9,11,10,12,2,2,8,14,10,11,11,10,11,0,15,7,13,9,1,5,5,0,10,3,6,0,9,15,0,4,13,1,11,14,14,4,6,2,2,7,10,10,14,0,12,14,15,0,15,14,14,3,0,13,11,9,4,5,9,15,15,15,4,9,8,11,14,14,0,13,0,0,11,0,4,12,12,9,14,10,3,10,1,6,7,9,14,11,7,4,2,0,7,4,11,15,3,7,7,2,4,4,1,11,11,5,8,8,4,0,10,14,1,13,1,15,2,8,6,3,1,1,15,5,1,3,9,10,8,2,5,9,14,7,9,5,2,7,5,4,14,14,7,2,9,1,10,14,10,14,12,9,6,2,12,1,5,12,11,9,11,13,14,10,2,1,13,9,7,6,1,7,10,0,10,4,1,7,15,5,6,0,12,11,1,10,14,5,10,12,12,3,1,6,4,6,12,13,5,13,4,7,14,15,8,5,6,7,3,9,9,6,7,12,0,6,0,12,3,7,6,5,3,12,14,0,15,8,0,15,9,2,15,13,15,6,0,5,13,8,2,7,13,5,11,12,9,2,0,13,7,6,4,12,2,6,13,4,4,12,4,0,3,1,9,9,15,3,9,5,8,11,5,8,6,14,2,15,4,12,4,10,6,4,1,7,13,0,5,8,1,0,7,7,6,9,14,9,6,2,2,10,9,10,13,12,12,7,9,1,14,9,10,10,5,2,9,2,14,10,4,6,6,9,3,0,11,0,4,5,5,9,6,4,2,2,10,0,3,4,8,4,9,5,9,9,6,4,2,14,2,0,12,1,5,1,10,6,7,9,5,2,9,8,0,5,10,13,1,9,4,4,12,5,0,4,6,11,8,13,9,1,10,4,3,0,0,14,10,13,4,13,11,10,14,14,7,10,5,2,11,11,8,5,6,11,2,11,3,2,2,9,7,8,14,10,1,5,11,4,14,6,0,13,5,4,5,15,15,1,12,7,10,12,11,4,14,13,2,3,13,8,11,7,1,5,13,2,13,3,0,0,1,1,4,5,9,0,11,10,3,10,15,4,15,10,12,6,7,3,9,11,3,1,2,12,10,6,12,13,7,9,15,7,10,12,8,10,1,11,6,14,4,8,4,7,4,15,9,12,5,9,5,1,9,6,12,1,6,2,0,13,12,11,4,11,1,2,6,3,14,15,10,4,11,14,13,4,1,6,9,15,9,3,3,8,15,12,6,1,5,1,1,10,6,0,2,4,12,7,8,10,6,15,3,4,6,13,1,12,4,5,5,8,8,14,15,10,8,15,12,6,10,6,5,6,15,2,7,10,9,12,2,14,5,14,13,14,13,4,10,5,15,0,15,8,9,10,0,12,0,6,3,1,13,9,5,9,6,13,14,3,15,10,6,13,12,13,9,12,12,7,8,1,13,3,15,5,9,10,1,6,7,12,9,0,8,12,0,10,10,9,11,9,9,4,7,13,13,15,13,11,12,14,13,8,8,2,5,12,14,14,7,3,9,12,8,3,7,0,5,10,5,9,10,4,15,5,3,11,3,11,2,13,12,1,1,4,7,8,10,5,13,2,10,11,5,4,7,4,1,9,12,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"13\", \"9\", \"3\", \"5\", \"1\"], \"clip_start\": 255.0, \"clip_end\": 261.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q14_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,13,4,10,11,11,4,1,8,15,4,4,5,9,4,12,4,7,15,0,3,14,4,5,7,4,11,2,14,6,1,15,9,1,14,3,3,11,3,7,7,8,0,5,4,1,9,2,2,15,5,7,8,12,0,4,4,4,0,13,2,15,3,3,4,3,15,7,10,1,2,9,8,3,12,7,7,8,10,14,2,2,12,4,2,12,14,14,13,10,2,6,10,1,11,3,5,1,2,9,12,10,11,1,9,10,11,15,2,8,15,12,5,10,7,7,7,6,7,7,2,12,10,4,4,3,14,5,13,14,11,7,2,6,0,11,8,11,11,14,4,7,15,9,0,15,3,13,15,4,1,7,10,0,0,8,10,3,15,6,9,7,1,6,11,15,5,15,15,14,9,1,8,4,5,9,0,11,7,1,8,4,6,9,4,2,8,13,0,5,8,14,5,9,4,12,6,14,7,4,15,14,8,4,4,5,5,13,11,4,1,5,15,15,5,10,1,7,7,8,9,12,6,15,12,12,9,1,12,0,10,2,3,15,3,8,11,2,8,9,0,5,8,13,6,10,0,5,12,11,4,12,9,4,13,13,9,3,5,1,3,4,8,5,14,13,9,5,11,3,4,10,13,13,8,0,14,14,14,10,14,7,0,4,7,3,15,15,13,10,3,12,1,2,8,15,11,6,6,3,11,10,12,10,1,15,13,6,0,12,11,9,2,4,15,0,0,1,9,9,11,10,12,2,2,8,14,10,11,11,10,11,0,15,7,13,9,1,5,5,0,10,3,6,0,9,15,0,4,13,1,11,14,14,4,6,2,2,7,10,10,14,0,12,14,15,0,15,14,14,3,0,13,11,9,4,5,9,15,15,15,4,9,8,11,14,14,0,13,0,0,11,0,4,12,12,9,14,10,3,10,1,6,7,9,14,11,7,4,2,0,7,4,11,15,3,7,7,2,4,4,1,11,11,5,8,8,4,0,10,14,1,13,1,15,2,8,6,3,1,1,15,5,1,3,9,10,8,2,5,9,14,7,9,5,2,7,5,4,14,14,7,2,9,1,10,14,10,14,12,9,6,2,12,1,5,12,11,9,11,13,14,10,2,1,13,9,7,6,1,7,10,0,10,4,1,7,15,5,6,0,12,11,1,10,14,5,10,12,12,3,1,6,4,6,12,13,5,13,4,7,14,15,8,5,6,7,3,9,9,6,7,12,0,6,0,12,3,7,6,5,3,12,14,0,15,8,0,15,9,2,15,13,15,6,0,5,13,8,2,7,13,5,11,12,9,2,0,13,7,6,4,12,2,6,13,4,4,12,4,0,3,1,9,9,15,3,9,5,8,11,5,8,6,14,2,15,4,12,4,10,6,4,1,7,13,0,5,8,1,0,7,7,6,9,14,9,6,2,2,10,9,10,13,12,12,7,9,1,14,9,10,10,5,2,9,2,14,10,4,6,6,9,3,0,11,0,4,5,5,9,6,4,2,2,10,0,3,4,8,4,9,5,9,9,6,4,2,14,2,0,12,1,5,1,10,6,7,9,5,2,9,8,0,5,10,13,1,9,4,4,12,5,0,4,6,11,8,13,9,1,10,4,3,0,0,14,10,13,4,13,11,10,14,14,7,10,5,2,11,11,8,5,6,11,2,11,3,2,2,9,7,8,14,10,1,5,11,4,14,6,0,13,5,4,5,15,15,1,12,7,10,12,11,4,14,13,2,3,13,8,11,7,1,5,13,2,13,3,0,0,1,1,4,5,9,0,11,10,3,10,15,4,15,10,12,6,7,3,9,11,3,1,2,12,10,6,12,13,7,9,15,7,10,12,8,10,1,11,6,14,4,8,4,7,4,15,9,12,5,9,5,1,9,6,12,1,6,2,0,13,12,11,4,11,1,2,6,3,14,15,10,4,11,14,13,4,1,6,9,15,9,3,3,8,15,12,6,1,5,1,1,10,6,0,2,4,12,7,8,10,6,15,3,4,6,13,1,12,4,5,5,8,8,14,15,10,8,15,12,6,10,6,5,6,15,2,7,10,9,12,2,14,5,14,13,14,13,4,10,5,15,0,15,8,9,10,0,12,0,6,3,1,13,9,5,9,6,13,14,3,15,10,6,13,12,13,9,12,12,7,8,1,13,3,15,5,9,10,1,6,7,12,9,0,8,12,0,10,10,9,11,9,9,4,7,13,13,15,13,11,12,14,13,8,8,2,5,12,14,14,7,3,9,12,8,3,7,0,5,10,5,9,10,4,15,5,3,11,3,11,2,13,12,1,1,4,7,8,10,5,13,2,10,11,5,4,7,4,1,9,12,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"11\", \"11\", \"5\", \"8\", \"8\"], \"clip_start\": 422.0, \"clip_end\": 428.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q15_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,13,4,10,11,11,4,1,8,15,4,4,5,9,4,12,4,7,15,0,3,14,4,5,7,4,11,2,14,6,1,15,9,1,14,3,3,11,3,7,7,8,0,5,4,1,9,2,2,15,5,7,8,12,0,4,4,4,0,13,2,15,3,3,4,3,15,7,10,1,2,9,8,3,12,7,7,8,10,14,2,2,12,4,2,12,14,14,13,10,2,6,10,1,11,3,5,1,2,9,12,10,11,1,9,10,11,15,2,8,15,12,5,10,7,7,7,6,7,7,2,12,10,4,4,3,14,5,13,14,11,7,2,6,0,11,8,11,11,14,4,7,15,9,0,15,3,13,15,4,1,7,10,0,0,8,10,3,15,6,9,7,1,6,11,15,5,15,15,14,9,1,8,4,5,9,0,11,7,1,8,4,6,9,4,2,8,13,0,5,8,14,5,9,4,12,6,14,7,4,15,14,8,4,4,5,5,13,11,4,1,5,15,15,5,10,1,7,7,8,9,12,6,15,12,12,9,1,12,0,10,2,3,15,3,8,11,2,8,9,0,5,8,13,6,10,0,5,12,11,4,12,9,4,13,13,9,3,5,1,3,4,8,5,14,13,9,5,11,3,4,10,13,13,8,0,14,14,14,10,14,7,0,4,7,3,15,15,13,10,3,12,1,2,8,15,11,6,6,3,11,10,12,10,1,15,13,6,0,12,11,9,2,4,15,0,0,1,9,9,11,10,12,2,2,8,14,10,11,11,10,11,0,15,7,13,9,1,5,5,0,10,3,6,0,9,15,0,4,13,1,11,14,14,4,6,2,2,7,10,10,14,0,12,14,15,0,15,14,14,3,0,13,11,9,4,5,9,15,15,15,4,9,8,11,14,14,0,13,0,0,11,0,4,12,12,9,14,10,3,10,1,6,7,9,14,11,7,4,2,0,7,4,11,15,3,7,7,2,4,4,1,11,11,5,8,8,4,0,10,14,1,13,1,15,2,8,6,3,1,1,15,5,1,3,9,10,8,2,5,9,14,7,9,5,2,7,5,4,14,14,7,2,9,1,10,14,10,14,12,9,6,2,12,1,5,12,11,9,11,13,14,10,2,1,13,9,7,6,1,7,10,0,10,4,1,7,15,5,6,0,12,11,1,10,14,5,10,12,12,3,1,6,4,6,12,13,5,13,4,7,14,15,8,5,6,7,3,9,9,6,7,12,0,6,0,12,3,7,6,5,3,12,14,0,15,8,0,15,9,2,15,13,15,6,0,5,13,8,2,7,13,5,11,12,9,2,0,13,7,6,4,12,2,6,13,4,4,12,4,0,3,1,9,9,15,3,9,5,8,11,5,8,6,14,2,15,4,12,4,10,6,4,1,7,13,0,5,8,1,0,7,7,6,9,14,9,6,2,2,10,9,10,13,12,12,7,9,1,14,9,10,10,5,2,9,2,14,10,4,6,6,9,3,0,11,0,4,5,5,9,6,4,2,2,10,0,3,4,8,4,9,5,9,9,6,4,2,14,2,0,12,1,5,1,10,6,7,9,5,2,9,8,0,5,10,13,1,9,4,4,12,5,0,4,6,11,8,13,9,1,10,4,3,0,0,14,10,13,4,13,11,10,14,14,7,10,5,2,11,11,8,5,6,11,2,11,3,2,2,9,7,8,14,10,1,5,11,4,14,6,0,13,5,4,5,15,15,1,12,7,10,12,11,4,14,13,2,3,13,8,11,7,1,5,13,2,13,3,0,0,1,1,4,5,9,0,11,10,3,10,15,4,15,10,12,6,7,3,9,11,3,1,2,12,10,6,12,13,7,9,15,7,10,12,8,10,1,11,6,14,4,8,4,7,4,15,9,12,5,9,5,1,9,6,12,1,6,2,0,13,12,11,4,11,1,2,6,3,14,15,10,4,11,14,13,4,1,6,9,15,9,3,3,8,15,12,6,1,5,1,1,10,6,0,2,4,12,7,8,10,6,15,3,4,6,13,1,12,4,5,5,8,8,14,15,10,8,15,12,6,10,6,5,6,15,2,7,10,9,12,2,14,5,14,13,14,13,4,10,5,15,0,15,8,9,10,0,12,0,6,3,1,13,9,5,9,6,13,14,3,15,10,6,13,12,13,9,12,12,7,8,1,13,3,15,5,9,10,1,6,7,12,9,0,8,12,0,10,10,9,11,9,9,4,7,13,13,15,13,11,12,14,13,8,8,2,5,12,14,14,7,3,9,12,8,3,7,0,5,10,5,9,10,4,15,5,3,11,3,11,2,13,12,1,1,4,7,8,10,5,13,2,10,11,5,4,7,4,1,9,12,5", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"1\", \"15\"], \"clip_start\": 889.0, \"clip_end\": 893.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,5,11,4,2,15,6,1,3,9,3,5,5,6,9,2,0,8,15,2,6,5,2,0,11,9,2,8,8,4,7,8,11,1,8,7,11,12,14,15,2,15,4,8,3,11,12,4,10,12,13,9,9,2,5,14,15,11,3,5,11,9,6,13,13,14,14,14,11,15,6,5,14,11,14,7,14,11,4,10,9,2,9,15,8,7,11,8,1,5,15,1,8,7,11,10,11,12,14,12,8,2,1,6,11,3,4,13,14,3,9,5,1,4,5,0,8,8,9,3,14,4,11,7,2,6,6,12,14,10,15,1,14,4,11,8,10,14,14,5,0,12,4,15,2,9,1,8,0,7,5,0,5,8,4,12,4,8,2,11,10,0,1,12,11,0,14,9,13,4,1,1,12,10,0,2,7,9,4,5,13,11,3,15,2,15,8,10,6,0,11,2,5,1,9,1,13,8,13,4,15,13,3,12,0,14,7,13,10,15,11,12,15,1,15,2,11,14,11,6,14,12,6,2,8,3,11,14,12,4,0,11,8,2,5,11,10,4,12,14,10,2,5,6,2,2,8,2,1,4,7,14,11,9,1,13,13,10,8,12,5,6,2,3,15,11,0,12,3,4,13,2,1,11,12,13,15,13,2,8,11,10,15,13,7,5,8,5,8,10,9,13,13,0,6,5,3,8,2,11,0,10,6,8,7,1,8,9,8,15,12,2,13,0,11,6,11,14,10,15,1,12,14,9,8,12,11,3,4,6,4,7,1,1,9,14,3,0,7,9,13,0,10,3,4,4,3,14,13,0,6,10,6,6,8,1,11,12,10,8,8,6,9,9,15,0,6,1,0,11,7,1,6,15,7,5,8,8,14,4,3,2,1,4,0,14,10,1,9,15,11,11,0,4,6,12,5,11,12,14,9,4,5,12,10,12,6,15,5,15,9,9,7,2,10,3,2,0,1,14,5,5,2,0,12,15,13,3,1,12,10,14,5,0,7,9,15,0,9,7,15,4,12,0,15,10,6,13,0,10,12,6,8,9,14,7,1,9,12,7,8,7,1,14,1,8,1,2,7,1,2,15,7,6,14,2,8,2,14,14,0,3,13,13,13,2,4,2,13,13,10,10,1,0,7,2,9,7,14,3,10,15,11,3,12,1,5,15,5,0,15,13,7,2,14,14,4,10,7,1,2,9,2,11,5,1,9,6,2,12,4,12,15,9,1,14,11,0,0,3,0,8,3,14,14,11,2,1,11,6,9,10,0,0,6,9,12,13,0,1,11,15,2,14,9,9,6,11,8,3,9,1,4,15,7,3,11,6,3,0,7,3,14,14,11,0,11,8,4,14,13,9,10,14,15,9,15,13,12,7,0,13,0,15,8,6,5,10,6,10,0,12,1,9,13,2,10,6,10,13,3,9,14,14,12,8,15,0,7,3,5,12,5,8,4,4,15,11,4,11,10,15,13,13,14,12,3,3,0,3,11,3,1,10,11,11,4,6,4,1,10,3,5,7,13,5,15,2,11,9,4,7,2,11,3,3,9,4,14,5,2,4,0,0,11,12,3,1,3,4,11,13,14,5,12,3,9,5,15,5,11,13,0,5,14,14,7,15,13,14,15,10,14,3,4,3,12,4,9,12,0,2,13,14,11,12,6,13,5,4,9,9,8,1,2,4,9,8,10,10,15,2,13,3,5,5,0,6,10,5,5,12,11,10,12,11,11,15,4,14,1,14,15,4,7,6,8,8,5,9,9,8,12,3,2,6,4,6,2,11,13,14,3,3,1,1,2,5,12,9,14,8,7,15,0,6,6,5,6,6,4,13,8,4,8,4,6,12,1,14,9,5,8,15,11,9,14,11,14,3,5,4,3,7,15,11,3,2,8,4,13,14,10,2,6,5,13,5,15,13,15,2,2,1,1,15,13,13,0,11,4,6,2,6,0,1,10,1,12,0,0,1,10,9,11,10,4,4,14,15,6,12,8,8,9,11,15,5,3,5,8,6,12,5,7,14,5,1,5,4,1,15,0,13,4,8,3,6,5,2,8,13,13,12,11,7,13,13,13,15,4,11,11,0,9,8,5,7,12,1,1,3,10,7,5,8,11,13,11,10,2,2,12,9,2,4,15,2,14,2,9,14,2,7,3,3,13,5,4,0,12,9,7,2,11,11,4,9,13,9,10,6,15,10,11,3,8,12,3,6,8,4,6,10,10,10,9,7,2,1,15,12,13,13,1,8,0,3,6,9,14,0,2,15,15,7,1,13,9,6,15,6,15,15,9,15,10,15,0,13,14,3,9,4,11,13,15,2,4,6,8,9,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"12\", \"4\", \"9\"], \"clip_start\": 715.0, \"clip_end\": 720.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,5,11,4,2,15,6,1,3,9,3,5,5,6,9,2,0,8,15,2,6,5,2,0,11,9,2,8,8,4,7,8,11,1,8,7,11,12,14,15,2,15,4,8,3,11,12,4,10,12,13,9,9,2,5,14,15,11,3,5,11,9,6,13,13,14,14,14,11,15,6,5,14,11,14,7,14,11,4,10,9,2,9,15,8,7,11,8,1,5,15,1,8,7,11,10,11,12,14,12,8,2,1,6,11,3,4,13,14,3,9,5,1,4,5,0,8,8,9,3,14,4,11,7,2,6,6,12,14,10,15,1,14,4,11,8,10,14,14,5,0,12,4,15,2,9,1,8,0,7,5,0,5,8,4,12,4,8,2,11,10,0,1,12,11,0,14,9,13,4,1,1,12,10,0,2,7,9,4,5,13,11,3,15,2,15,8,10,6,0,11,2,5,1,9,1,13,8,13,4,15,13,3,12,0,14,7,13,10,15,11,12,15,1,15,2,11,14,11,6,14,12,6,2,8,3,11,14,12,4,0,11,8,2,5,11,10,4,12,14,10,2,5,6,2,2,8,2,1,4,7,14,11,9,1,13,13,10,8,12,5,6,2,3,15,11,0,12,3,4,13,2,1,11,12,13,15,13,2,8,11,10,15,13,7,5,8,5,8,10,9,13,13,0,6,5,3,8,2,11,0,10,6,8,7,1,8,9,8,15,12,2,13,0,11,6,11,14,10,15,1,12,14,9,8,12,11,3,4,6,4,7,1,1,9,14,3,0,7,9,13,0,10,3,4,4,3,14,13,0,6,10,6,6,8,1,11,12,10,8,8,6,9,9,15,0,6,1,0,11,7,1,6,15,7,5,8,8,14,4,3,2,1,4,0,14,10,1,9,15,11,11,0,4,6,12,5,11,12,14,9,4,5,12,10,12,6,15,5,15,9,9,7,2,10,3,2,0,1,14,5,5,2,0,12,15,13,3,1,12,10,14,5,0,7,9,15,0,9,7,15,4,12,0,15,10,6,13,0,10,12,6,8,9,14,7,1,9,12,7,8,7,1,14,1,8,1,2,7,1,2,15,7,6,14,2,8,2,14,14,0,3,13,13,13,2,4,2,13,13,10,10,1,0,7,2,9,7,14,3,10,15,11,3,12,1,5,15,5,0,15,13,7,2,14,14,4,10,7,1,2,9,2,11,5,1,9,6,2,12,4,12,15,9,1,14,11,0,0,3,0,8,3,14,14,11,2,1,11,6,9,10,0,0,6,9,12,13,0,1,11,15,2,14,9,9,6,11,8,3,9,1,4,15,7,3,11,6,3,0,7,3,14,14,11,0,11,8,4,14,13,9,10,14,15,9,15,13,12,7,0,13,0,15,8,6,5,10,6,10,0,12,1,9,13,2,10,6,10,13,3,9,14,14,12,8,15,0,7,3,5,12,5,8,4,4,15,11,4,11,10,15,13,13,14,12,3,3,0,3,11,3,1,10,11,11,4,6,4,1,10,3,5,7,13,5,15,2,11,9,4,7,2,11,3,3,9,4,14,5,2,4,0,0,11,12,3,1,3,4,11,13,14,5,12,3,9,5,15,5,11,13,0,5,14,14,7,15,13,14,15,10,14,3,4,3,12,4,9,12,0,2,13,14,11,12,6,13,5,4,9,9,8,1,2,4,9,8,10,10,15,2,13,3,5,5,0,6,10,5,5,12,11,10,12,11,11,15,4,14,1,14,15,4,7,6,8,8,5,9,9,8,12,3,2,6,4,6,2,11,13,14,3,3,1,1,2,5,12,9,14,8,7,15,0,6,6,5,6,6,4,13,8,4,8,4,6,12,1,14,9,5,8,15,11,9,14,11,14,3,5,4,3,7,15,11,3,2,8,4,13,14,10,2,6,5,13,5,15,13,15,2,2,1,1,15,13,13,0,11,4,6,2,6,0,1,10,1,12,0,0,1,10,9,11,10,4,4,14,15,6,12,8,8,9,11,15,5,3,5,8,6,12,5,7,14,5,1,5,4,1,15,0,13,4,8,3,6,5,2,8,13,13,12,11,7,13,13,13,15,4,11,11,0,9,8,5,7,12,1,1,3,10,7,5,8,11,13,11,10,2,2,12,9,2,4,15,2,14,2,9,14,2,7,3,3,13,5,4,0,12,9,7,2,11,11,4,9,13,9,10,6,15,10,11,3,8,12,3,6,8,4,6,10,10,10,9,7,2,1,15,12,13,13,1,8,0,3,6,9,14,0,2,15,15,7,1,13,9,6,15,6,15,15,9,15,10,15,0,13,14,3,9,4,11,13,15,2,4,6,8,9,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"5\", \"10\", \"6\"], \"clip_start\": 605.0, \"clip_end\": 610.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,5,11,4,2,15,6,1,3,9,3,5,5,6,9,2,0,8,15,2,6,5,2,0,11,9,2,8,8,4,7,8,11,1,8,7,11,12,14,15,2,15,4,8,3,11,12,4,10,12,13,9,9,2,5,14,15,11,3,5,11,9,6,13,13,14,14,14,11,15,6,5,14,11,14,7,14,11,4,10,9,2,9,15,8,7,11,8,1,5,15,1,8,7,11,10,11,12,14,12,8,2,1,6,11,3,4,13,14,3,9,5,1,4,5,0,8,8,9,3,14,4,11,7,2,6,6,12,14,10,15,1,14,4,11,8,10,14,14,5,0,12,4,15,2,9,1,8,0,7,5,0,5,8,4,12,4,8,2,11,10,0,1,12,11,0,14,9,13,4,1,1,12,10,0,2,7,9,4,5,13,11,3,15,2,15,8,10,6,0,11,2,5,1,9,1,13,8,13,4,15,13,3,12,0,14,7,13,10,15,11,12,15,1,15,2,11,14,11,6,14,12,6,2,8,3,11,14,12,4,0,11,8,2,5,11,10,4,12,14,10,2,5,6,2,2,8,2,1,4,7,14,11,9,1,13,13,10,8,12,5,6,2,3,15,11,0,12,3,4,13,2,1,11,12,13,15,13,2,8,11,10,15,13,7,5,8,5,8,10,9,13,13,0,6,5,3,8,2,11,0,10,6,8,7,1,8,9,8,15,12,2,13,0,11,6,11,14,10,15,1,12,14,9,8,12,11,3,4,6,4,7,1,1,9,14,3,0,7,9,13,0,10,3,4,4,3,14,13,0,6,10,6,6,8,1,11,12,10,8,8,6,9,9,15,0,6,1,0,11,7,1,6,15,7,5,8,8,14,4,3,2,1,4,0,14,10,1,9,15,11,11,0,4,6,12,5,11,12,14,9,4,5,12,10,12,6,15,5,15,9,9,7,2,10,3,2,0,1,14,5,5,2,0,12,15,13,3,1,12,10,14,5,0,7,9,15,0,9,7,15,4,12,0,15,10,6,13,0,10,12,6,8,9,14,7,1,9,12,7,8,7,1,14,1,8,1,2,7,1,2,15,7,6,14,2,8,2,14,14,0,3,13,13,13,2,4,2,13,13,10,10,1,0,7,2,9,7,14,3,10,15,11,3,12,1,5,15,5,0,15,13,7,2,14,14,4,10,7,1,2,9,2,11,5,1,9,6,2,12,4,12,15,9,1,14,11,0,0,3,0,8,3,14,14,11,2,1,11,6,9,10,0,0,6,9,12,13,0,1,11,15,2,14,9,9,6,11,8,3,9,1,4,15,7,3,11,6,3,0,7,3,14,14,11,0,11,8,4,14,13,9,10,14,15,9,15,13,12,7,0,13,0,15,8,6,5,10,6,10,0,12,1,9,13,2,10,6,10,13,3,9,14,14,12,8,15,0,7,3,5,12,5,8,4,4,15,11,4,11,10,15,13,13,14,12,3,3,0,3,11,3,1,10,11,11,4,6,4,1,10,3,5,7,13,5,15,2,11,9,4,7,2,11,3,3,9,4,14,5,2,4,0,0,11,12,3,1,3,4,11,13,14,5,12,3,9,5,15,5,11,13,0,5,14,14,7,15,13,14,15,10,14,3,4,3,12,4,9,12,0,2,13,14,11,12,6,13,5,4,9,9,8,1,2,4,9,8,10,10,15,2,13,3,5,5,0,6,10,5,5,12,11,10,12,11,11,15,4,14,1,14,15,4,7,6,8,8,5,9,9,8,12,3,2,6,4,6,2,11,13,14,3,3,1,1,2,5,12,9,14,8,7,15,0,6,6,5,6,6,4,13,8,4,8,4,6,12,1,14,9,5,8,15,11,9,14,11,14,3,5,4,3,7,15,11,3,2,8,4,13,14,10,2,6,5,13,5,15,13,15,2,2,1,1,15,13,13,0,11,4,6,2,6,0,1,10,1,12,0,0,1,10,9,11,10,4,4,14,15,6,12,8,8,9,11,15,5,3,5,8,6,12,5,7,14,5,1,5,4,1,15,0,13,4,8,3,6,5,2,8,13,13,12,11,7,13,13,13,15,4,11,11,0,9,8,5,7,12,1,1,3,10,7,5,8,11,13,11,10,2,2,12,9,2,4,15,2,14,2,9,14,2,7,3,3,13,5,4,0,12,9,7,2,11,11,4,9,13,9,10,6,15,10,11,3,8,12,3,6,8,4,6,10,10,10,9,7,2,1,15,12,13,13,1,8,0,3,6,9,14,0,2,15,15,7,1,13,9,6,15,6,15,15,9,15,10,15,0,13,14,3,9,4,11,13,15,2,4,6,8,9,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"13\", \"14\", \"14\", \"14\", \"11\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,5,11,4,2,15,6,1,3,9,3,5,5,6,9,2,0,8,15,2,6,5,2,0,11,9,2,8,8,4,7,8,11,1,8,7,11,12,14,15,2,15,4,8,3,11,12,4,10,12,13,9,9,2,5,14,15,11,3,5,11,9,6,13,13,14,14,14,11,15,6,5,14,11,14,7,14,11,4,10,9,2,9,15,8,7,11,8,1,5,15,1,8,7,11,10,11,12,14,12,8,2,1,6,11,3,4,13,14,3,9,5,1,4,5,0,8,8,9,3,14,4,11,7,2,6,6,12,14,10,15,1,14,4,11,8,10,14,14,5,0,12,4,15,2,9,1,8,0,7,5,0,5,8,4,12,4,8,2,11,10,0,1,12,11,0,14,9,13,4,1,1,12,10,0,2,7,9,4,5,13,11,3,15,2,15,8,10,6,0,11,2,5,1,9,1,13,8,13,4,15,13,3,12,0,14,7,13,10,15,11,12,15,1,15,2,11,14,11,6,14,12,6,2,8,3,11,14,12,4,0,11,8,2,5,11,10,4,12,14,10,2,5,6,2,2,8,2,1,4,7,14,11,9,1,13,13,10,8,12,5,6,2,3,15,11,0,12,3,4,13,2,1,11,12,13,15,13,2,8,11,10,15,13,7,5,8,5,8,10,9,13,13,0,6,5,3,8,2,11,0,10,6,8,7,1,8,9,8,15,12,2,13,0,11,6,11,14,10,15,1,12,14,9,8,12,11,3,4,6,4,7,1,1,9,14,3,0,7,9,13,0,10,3,4,4,3,14,13,0,6,10,6,6,8,1,11,12,10,8,8,6,9,9,15,0,6,1,0,11,7,1,6,15,7,5,8,8,14,4,3,2,1,4,0,14,10,1,9,15,11,11,0,4,6,12,5,11,12,14,9,4,5,12,10,12,6,15,5,15,9,9,7,2,10,3,2,0,1,14,5,5,2,0,12,15,13,3,1,12,10,14,5,0,7,9,15,0,9,7,15,4,12,0,15,10,6,13,0,10,12,6,8,9,14,7,1,9,12,7,8,7,1,14,1,8,1,2,7,1,2,15,7,6,14,2,8,2,14,14,0,3,13,13,13,2,4,2,13,13,10,10,1,0,7,2,9,7,14,3,10,15,11,3,12,1,5,15,5,0,15,13,7,2,14,14,4,10,7,1,2,9,2,11,5,1,9,6,2,12,4,12,15,9,1,14,11,0,0,3,0,8,3,14,14,11,2,1,11,6,9,10,0,0,6,9,12,13,0,1,11,15,2,14,9,9,6,11,8,3,9,1,4,15,7,3,11,6,3,0,7,3,14,14,11,0,11,8,4,14,13,9,10,14,15,9,15,13,12,7,0,13,0,15,8,6,5,10,6,10,0,12,1,9,13,2,10,6,10,13,3,9,14,14,12,8,15,0,7,3,5,12,5,8,4,4,15,11,4,11,10,15,13,13,14,12,3,3,0,3,11,3,1,10,11,11,4,6,4,1,10,3,5,7,13,5,15,2,11,9,4,7,2,11,3,3,9,4,14,5,2,4,0,0,11,12,3,1,3,4,11,13,14,5,12,3,9,5,15,5,11,13,0,5,14,14,7,15,13,14,15,10,14,3,4,3,12,4,9,12,0,2,13,14,11,12,6,13,5,4,9,9,8,1,2,4,9,8,10,10,15,2,13,3,5,5,0,6,10,5,5,12,11,10,12,11,11,15,4,14,1,14,15,4,7,6,8,8,5,9,9,8,12,3,2,6,4,6,2,11,13,14,3,3,1,1,2,5,12,9,14,8,7,15,0,6,6,5,6,6,4,13,8,4,8,4,6,12,1,14,9,5,8,15,11,9,14,11,14,3,5,4,3,7,15,11,3,2,8,4,13,14,10,2,6,5,13,5,15,13,15,2,2,1,1,15,13,13,0,11,4,6,2,6,0,1,10,1,12,0,0,1,10,9,11,10,4,4,14,15,6,12,8,8,9,11,15,5,3,5,8,6,12,5,7,14,5,1,5,4,1,15,0,13,4,8,3,6,5,2,8,13,13,12,11,7,13,13,13,15,4,11,11,0,9,8,5,7,12,1,1,3,10,7,5,8,11,13,11,10,2,2,12,9,2,4,15,2,14,2,9,14,2,7,3,3,13,5,4,0,12,9,7,2,11,11,4,9,13,9,10,6,15,10,11,3,8,12,3,6,8,4,6,10,10,10,9,7,2,1,15,12,13,13,1,8,0,3,6,9,14,0,2,15,15,7,1,13,9,6,15,6,15,15,9,15,10,15,0,13,14,3,9,4,11,13,15,2,4,6,8,9,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"6\"], \"clip_start\": 833.0, \"clip_end\": 836.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,5,11,4,2,15,6,1,3,9,3,5,5,6,9,2,0,8,15,2,6,5,2,0,11,9,2,8,8,4,7,8,11,1,8,7,11,12,14,15,2,15,4,8,3,11,12,4,10,12,13,9,9,2,5,14,15,11,3,5,11,9,6,13,13,14,14,14,11,15,6,5,14,11,14,7,14,11,4,10,9,2,9,15,8,7,11,8,1,5,15,1,8,7,11,10,11,12,14,12,8,2,1,6,11,3,4,13,14,3,9,5,1,4,5,0,8,8,9,3,14,4,11,7,2,6,6,12,14,10,15,1,14,4,11,8,10,14,14,5,0,12,4,15,2,9,1,8,0,7,5,0,5,8,4,12,4,8,2,11,10,0,1,12,11,0,14,9,13,4,1,1,12,10,0,2,7,9,4,5,13,11,3,15,2,15,8,10,6,0,11,2,5,1,9,1,13,8,13,4,15,13,3,12,0,14,7,13,10,15,11,12,15,1,15,2,11,14,11,6,14,12,6,2,8,3,11,14,12,4,0,11,8,2,5,11,10,4,12,14,10,2,5,6,2,2,8,2,1,4,7,14,11,9,1,13,13,10,8,12,5,6,2,3,15,11,0,12,3,4,13,2,1,11,12,13,15,13,2,8,11,10,15,13,7,5,8,5,8,10,9,13,13,0,6,5,3,8,2,11,0,10,6,8,7,1,8,9,8,15,12,2,13,0,11,6,11,14,10,15,1,12,14,9,8,12,11,3,4,6,4,7,1,1,9,14,3,0,7,9,13,0,10,3,4,4,3,14,13,0,6,10,6,6,8,1,11,12,10,8,8,6,9,9,15,0,6,1,0,11,7,1,6,15,7,5,8,8,14,4,3,2,1,4,0,14,10,1,9,15,11,11,0,4,6,12,5,11,12,14,9,4,5,12,10,12,6,15,5,15,9,9,7,2,10,3,2,0,1,14,5,5,2,0,12,15,13,3,1,12,10,14,5,0,7,9,15,0,9,7,15,4,12,0,15,10,6,13,0,10,12,6,8,9,14,7,1,9,12,7,8,7,1,14,1,8,1,2,7,1,2,15,7,6,14,2,8,2,14,14,0,3,13,13,13,2,4,2,13,13,10,10,1,0,7,2,9,7,14,3,10,15,11,3,12,1,5,15,5,0,15,13,7,2,14,14,4,10,7,1,2,9,2,11,5,1,9,6,2,12,4,12,15,9,1,14,11,0,0,3,0,8,3,14,14,11,2,1,11,6,9,10,0,0,6,9,12,13,0,1,11,15,2,14,9,9,6,11,8,3,9,1,4,15,7,3,11,6,3,0,7,3,14,14,11,0,11,8,4,14,13,9,10,14,15,9,15,13,12,7,0,13,0,15,8,6,5,10,6,10,0,12,1,9,13,2,10,6,10,13,3,9,14,14,12,8,15,0,7,3,5,12,5,8,4,4,15,11,4,11,10,15,13,13,14,12,3,3,0,3,11,3,1,10,11,11,4,6,4,1,10,3,5,7,13,5,15,2,11,9,4,7,2,11,3,3,9,4,14,5,2,4,0,0,11,12,3,1,3,4,11,13,14,5,12,3,9,5,15,5,11,13,0,5,14,14,7,15,13,14,15,10,14,3,4,3,12,4,9,12,0,2,13,14,11,12,6,13,5,4,9,9,8,1,2,4,9,8,10,10,15,2,13,3,5,5,0,6,10,5,5,12,11,10,12,11,11,15,4,14,1,14,15,4,7,6,8,8,5,9,9,8,12,3,2,6,4,6,2,11,13,14,3,3,1,1,2,5,12,9,14,8,7,15,0,6,6,5,6,6,4,13,8,4,8,4,6,12,1,14,9,5,8,15,11,9,14,11,14,3,5,4,3,7,15,11,3,2,8,4,13,14,10,2,6,5,13,5,15,13,15,2,2,1,1,15,13,13,0,11,4,6,2,6,0,1,10,1,12,0,0,1,10,9,11,10,4,4,14,15,6,12,8,8,9,11,15,5,3,5,8,6,12,5,7,14,5,1,5,4,1,15,0,13,4,8,3,6,5,2,8,13,13,12,11,7,13,13,13,15,4,11,11,0,9,8,5,7,12,1,1,3,10,7,5,8,11,13,11,10,2,2,12,9,2,4,15,2,14,2,9,14,2,7,3,3,13,5,4,0,12,9,7,2,11,11,4,9,13,9,10,6,15,10,11,3,8,12,3,6,8,4,6,10,10,10,9,7,2,1,15,12,13,13,1,8,0,3,6,9,14,0,2,15,15,7,1,13,9,6,15,6,15,15,9,15,10,15,0,13,14,3,9,4,11,13,15,2,4,6,8,9,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"3\", \"15\"], \"clip_start\": 262.0, \"clip_end\": 266.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q5_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,5,11,4,2,15,6,1,3,9,3,5,5,6,9,2,0,8,15,2,6,5,2,0,11,9,2,8,8,4,7,8,11,1,8,7,11,12,14,15,2,15,4,8,3,11,12,4,10,12,13,9,9,2,5,14,15,11,3,5,11,9,6,13,13,14,14,14,11,15,6,5,14,11,14,7,14,11,4,10,9,2,9,15,8,7,11,8,1,5,15,1,8,7,11,10,11,12,14,12,8,2,1,6,11,3,4,13,14,3,9,5,1,4,5,0,8,8,9,3,14,4,11,7,2,6,6,12,14,10,15,1,14,4,11,8,10,14,14,5,0,12,4,15,2,9,1,8,0,7,5,0,5,8,4,12,4,8,2,11,10,0,1,12,11,0,14,9,13,4,1,1,12,10,0,2,7,9,4,5,13,11,3,15,2,15,8,10,6,0,11,2,5,1,9,1,13,8,13,4,15,13,3,12,0,14,7,13,10,15,11,12,15,1,15,2,11,14,11,6,14,12,6,2,8,3,11,14,12,4,0,11,8,2,5,11,10,4,12,14,10,2,5,6,2,2,8,2,1,4,7,14,11,9,1,13,13,10,8,12,5,6,2,3,15,11,0,12,3,4,13,2,1,11,12,13,15,13,2,8,11,10,15,13,7,5,8,5,8,10,9,13,13,0,6,5,3,8,2,11,0,10,6,8,7,1,8,9,8,15,12,2,13,0,11,6,11,14,10,15,1,12,14,9,8,12,11,3,4,6,4,7,1,1,9,14,3,0,7,9,13,0,10,3,4,4,3,14,13,0,6,10,6,6,8,1,11,12,10,8,8,6,9,9,15,0,6,1,0,11,7,1,6,15,7,5,8,8,14,4,3,2,1,4,0,14,10,1,9,15,11,11,0,4,6,12,5,11,12,14,9,4,5,12,10,12,6,15,5,15,9,9,7,2,10,3,2,0,1,14,5,5,2,0,12,15,13,3,1,12,10,14,5,0,7,9,15,0,9,7,15,4,12,0,15,10,6,13,0,10,12,6,8,9,14,7,1,9,12,7,8,7,1,14,1,8,1,2,7,1,2,15,7,6,14,2,8,2,14,14,0,3,13,13,13,2,4,2,13,13,10,10,1,0,7,2,9,7,14,3,10,15,11,3,12,1,5,15,5,0,15,13,7,2,14,14,4,10,7,1,2,9,2,11,5,1,9,6,2,12,4,12,15,9,1,14,11,0,0,3,0,8,3,14,14,11,2,1,11,6,9,10,0,0,6,9,12,13,0,1,11,15,2,14,9,9,6,11,8,3,9,1,4,15,7,3,11,6,3,0,7,3,14,14,11,0,11,8,4,14,13,9,10,14,15,9,15,13,12,7,0,13,0,15,8,6,5,10,6,10,0,12,1,9,13,2,10,6,10,13,3,9,14,14,12,8,15,0,7,3,5,12,5,8,4,4,15,11,4,11,10,15,13,13,14,12,3,3,0,3,11,3,1,10,11,11,4,6,4,1,10,3,5,7,13,5,15,2,11,9,4,7,2,11,3,3,9,4,14,5,2,4,0,0,11,12,3,1,3,4,11,13,14,5,12,3,9,5,15,5,11,13,0,5,14,14,7,15,13,14,15,10,14,3,4,3,12,4,9,12,0,2,13,14,11,12,6,13,5,4,9,9,8,1,2,4,9,8,10,10,15,2,13,3,5,5,0,6,10,5,5,12,11,10,12,11,11,15,4,14,1,14,15,4,7,6,8,8,5,9,9,8,12,3,2,6,4,6,2,11,13,14,3,3,1,1,2,5,12,9,14,8,7,15,0,6,6,5,6,6,4,13,8,4,8,4,6,12,1,14,9,5,8,15,11,9,14,11,14,3,5,4,3,7,15,11,3,2,8,4,13,14,10,2,6,5,13,5,15,13,15,2,2,1,1,15,13,13,0,11,4,6,2,6,0,1,10,1,12,0,0,1,10,9,11,10,4,4,14,15,6,12,8,8,9,11,15,5,3,5,8,6,12,5,7,14,5,1,5,4,1,15,0,13,4,8,3,6,5,2,8,13,13,12,11,7,13,13,13,15,4,11,11,0,9,8,5,7,12,1,1,3,10,7,5,8,11,13,11,10,2,2,12,9,2,4,15,2,14,2,9,14,2,7,3,3,13,5,4,0,12,9,7,2,11,11,4,9,13,9,10,6,15,10,11,3,8,12,3,6,8,4,6,10,10,10,9,7,2,1,15,12,13,13,1,8,0,3,6,9,14,0,2,15,15,7,1,13,9,6,15,6,15,15,9,15,10,15,0,13,14,3,9,4,11,13,15,2,4,6,8,9,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"12\", \"15\", \"1\", \"15\", \"2\"], \"clip_start\": 211.0, \"clip_end\": 217.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q6_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,5,11,4,2,15,6,1,3,9,3,5,5,6,9,2,0,8,15,2,6,5,2,0,11,9,2,8,8,4,7,8,11,1,8,7,11,12,14,15,2,15,4,8,3,11,12,4,10,12,13,9,9,2,5,14,15,11,3,5,11,9,6,13,13,14,14,14,11,15,6,5,14,11,14,7,14,11,4,10,9,2,9,15,8,7,11,8,1,5,15,1,8,7,11,10,11,12,14,12,8,2,1,6,11,3,4,13,14,3,9,5,1,4,5,0,8,8,9,3,14,4,11,7,2,6,6,12,14,10,15,1,14,4,11,8,10,14,14,5,0,12,4,15,2,9,1,8,0,7,5,0,5,8,4,12,4,8,2,11,10,0,1,12,11,0,14,9,13,4,1,1,12,10,0,2,7,9,4,5,13,11,3,15,2,15,8,10,6,0,11,2,5,1,9,1,13,8,13,4,15,13,3,12,0,14,7,13,10,15,11,12,15,1,15,2,11,14,11,6,14,12,6,2,8,3,11,14,12,4,0,11,8,2,5,11,10,4,12,14,10,2,5,6,2,2,8,2,1,4,7,14,11,9,1,13,13,10,8,12,5,6,2,3,15,11,0,12,3,4,13,2,1,11,12,13,15,13,2,8,11,10,15,13,7,5,8,5,8,10,9,13,13,0,6,5,3,8,2,11,0,10,6,8,7,1,8,9,8,15,12,2,13,0,11,6,11,14,10,15,1,12,14,9,8,12,11,3,4,6,4,7,1,1,9,14,3,0,7,9,13,0,10,3,4,4,3,14,13,0,6,10,6,6,8,1,11,12,10,8,8,6,9,9,15,0,6,1,0,11,7,1,6,15,7,5,8,8,14,4,3,2,1,4,0,14,10,1,9,15,11,11,0,4,6,12,5,11,12,14,9,4,5,12,10,12,6,15,5,15,9,9,7,2,10,3,2,0,1,14,5,5,2,0,12,15,13,3,1,12,10,14,5,0,7,9,15,0,9,7,15,4,12,0,15,10,6,13,0,10,12,6,8,9,14,7,1,9,12,7,8,7,1,14,1,8,1,2,7,1,2,15,7,6,14,2,8,2,14,14,0,3,13,13,13,2,4,2,13,13,10,10,1,0,7,2,9,7,14,3,10,15,11,3,12,1,5,15,5,0,15,13,7,2,14,14,4,10,7,1,2,9,2,11,5,1,9,6,2,12,4,12,15,9,1,14,11,0,0,3,0,8,3,14,14,11,2,1,11,6,9,10,0,0,6,9,12,13,0,1,11,15,2,14,9,9,6,11,8,3,9,1,4,15,7,3,11,6,3,0,7,3,14,14,11,0,11,8,4,14,13,9,10,14,15,9,15,13,12,7,0,13,0,15,8,6,5,10,6,10,0,12,1,9,13,2,10,6,10,13,3,9,14,14,12,8,15,0,7,3,5,12,5,8,4,4,15,11,4,11,10,15,13,13,14,12,3,3,0,3,11,3,1,10,11,11,4,6,4,1,10,3,5,7,13,5,15,2,11,9,4,7,2,11,3,3,9,4,14,5,2,4,0,0,11,12,3,1,3,4,11,13,14,5,12,3,9,5,15,5,11,13,0,5,14,14,7,15,13,14,15,10,14,3,4,3,12,4,9,12,0,2,13,14,11,12,6,13,5,4,9,9,8,1,2,4,9,8,10,10,15,2,13,3,5,5,0,6,10,5,5,12,11,10,12,11,11,15,4,14,1,14,15,4,7,6,8,8,5,9,9,8,12,3,2,6,4,6,2,11,13,14,3,3,1,1,2,5,12,9,14,8,7,15,0,6,6,5,6,6,4,13,8,4,8,4,6,12,1,14,9,5,8,15,11,9,14,11,14,3,5,4,3,7,15,11,3,2,8,4,13,14,10,2,6,5,13,5,15,13,15,2,2,1,1,15,13,13,0,11,4,6,2,6,0,1,10,1,12,0,0,1,10,9,11,10,4,4,14,15,6,12,8,8,9,11,15,5,3,5,8,6,12,5,7,14,5,1,5,4,1,15,0,13,4,8,3,6,5,2,8,13,13,12,11,7,13,13,13,15,4,11,11,0,9,8,5,7,12,1,1,3,10,7,5,8,11,13,11,10,2,2,12,9,2,4,15,2,14,2,9,14,2,7,3,3,13,5,4,0,12,9,7,2,11,11,4,9,13,9,10,6,15,10,11,3,8,12,3,6,8,4,6,10,10,10,9,7,2,1,15,12,13,13,1,8,0,3,6,9,14,0,2,15,15,7,1,13,9,6,15,6,15,15,9,15,10,15,0,13,14,3,9,4,11,13,15,2,4,6,8,9,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"2\", \"6\", \"5\"], \"clip_start\": 189.0, \"clip_end\": 194.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q7_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,5,11,4,2,15,6,1,3,9,3,5,5,6,9,2,0,8,15,2,6,5,2,0,11,9,2,8,8,4,7,8,11,1,8,7,11,12,14,15,2,15,4,8,3,11,12,4,10,12,13,9,9,2,5,14,15,11,3,5,11,9,6,13,13,14,14,14,11,15,6,5,14,11,14,7,14,11,4,10,9,2,9,15,8,7,11,8,1,5,15,1,8,7,11,10,11,12,14,12,8,2,1,6,11,3,4,13,14,3,9,5,1,4,5,0,8,8,9,3,14,4,11,7,2,6,6,12,14,10,15,1,14,4,11,8,10,14,14,5,0,12,4,15,2,9,1,8,0,7,5,0,5,8,4,12,4,8,2,11,10,0,1,12,11,0,14,9,13,4,1,1,12,10,0,2,7,9,4,5,13,11,3,15,2,15,8,10,6,0,11,2,5,1,9,1,13,8,13,4,15,13,3,12,0,14,7,13,10,15,11,12,15,1,15,2,11,14,11,6,14,12,6,2,8,3,11,14,12,4,0,11,8,2,5,11,10,4,12,14,10,2,5,6,2,2,8,2,1,4,7,14,11,9,1,13,13,10,8,12,5,6,2,3,15,11,0,12,3,4,13,2,1,11,12,13,15,13,2,8,11,10,15,13,7,5,8,5,8,10,9,13,13,0,6,5,3,8,2,11,0,10,6,8,7,1,8,9,8,15,12,2,13,0,11,6,11,14,10,15,1,12,14,9,8,12,11,3,4,6,4,7,1,1,9,14,3,0,7,9,13,0,10,3,4,4,3,14,13,0,6,10,6,6,8,1,11,12,10,8,8,6,9,9,15,0,6,1,0,11,7,1,6,15,7,5,8,8,14,4,3,2,1,4,0,14,10,1,9,15,11,11,0,4,6,12,5,11,12,14,9,4,5,12,10,12,6,15,5,15,9,9,7,2,10,3,2,0,1,14,5,5,2,0,12,15,13,3,1,12,10,14,5,0,7,9,15,0,9,7,15,4,12,0,15,10,6,13,0,10,12,6,8,9,14,7,1,9,12,7,8,7,1,14,1,8,1,2,7,1,2,15,7,6,14,2,8,2,14,14,0,3,13,13,13,2,4,2,13,13,10,10,1,0,7,2,9,7,14,3,10,15,11,3,12,1,5,15,5,0,15,13,7,2,14,14,4,10,7,1,2,9,2,11,5,1,9,6,2,12,4,12,15,9,1,14,11,0,0,3,0,8,3,14,14,11,2,1,11,6,9,10,0,0,6,9,12,13,0,1,11,15,2,14,9,9,6,11,8,3,9,1,4,15,7,3,11,6,3,0,7,3,14,14,11,0,11,8,4,14,13,9,10,14,15,9,15,13,12,7,0,13,0,15,8,6,5,10,6,10,0,12,1,9,13,2,10,6,10,13,3,9,14,14,12,8,15,0,7,3,5,12,5,8,4,4,15,11,4,11,10,15,13,13,14,12,3,3,0,3,11,3,1,10,11,11,4,6,4,1,10,3,5,7,13,5,15,2,11,9,4,7,2,11,3,3,9,4,14,5,2,4,0,0,11,12,3,1,3,4,11,13,14,5,12,3,9,5,15,5,11,13,0,5,14,14,7,15,13,14,15,10,14,3,4,3,12,4,9,12,0,2,13,14,11,12,6,13,5,4,9,9,8,1,2,4,9,8,10,10,15,2,13,3,5,5,0,6,10,5,5,12,11,10,12,11,11,15,4,14,1,14,15,4,7,6,8,8,5,9,9,8,12,3,2,6,4,6,2,11,13,14,3,3,1,1,2,5,12,9,14,8,7,15,0,6,6,5,6,6,4,13,8,4,8,4,6,12,1,14,9,5,8,15,11,9,14,11,14,3,5,4,3,7,15,11,3,2,8,4,13,14,10,2,6,5,13,5,15,13,15,2,2,1,1,15,13,13,0,11,4,6,2,6,0,1,10,1,12,0,0,1,10,9,11,10,4,4,14,15,6,12,8,8,9,11,15,5,3,5,8,6,12,5,7,14,5,1,5,4,1,15,0,13,4,8,3,6,5,2,8,13,13,12,11,7,13,13,13,15,4,11,11,0,9,8,5,7,12,1,1,3,10,7,5,8,11,13,11,10,2,2,12,9,2,4,15,2,14,2,9,14,2,7,3,3,13,5,4,0,12,9,7,2,11,11,4,9,13,9,10,6,15,10,11,3,8,12,3,6,8,4,6,10,10,10,9,7,2,1,15,12,13,13,1,8,0,3,6,9,14,0,2,15,15,7,1,13,9,6,15,6,15,15,9,15,10,15,0,13,14,3,9,4,11,13,15,2,4,6,8,9,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"11\", \"3\", \"3\", \"9\"], \"clip_start\": 672.0, \"clip_end\": 678.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q8_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,5,11,4,2,15,6,1,3,9,3,5,5,6,9,2,0,8,15,2,6,5,2,0,11,9,2,8,8,4,7,8,11,1,8,7,11,12,14,15,2,15,4,8,3,11,12,4,10,12,13,9,9,2,5,14,15,11,3,5,11,9,6,13,13,14,14,14,11,15,6,5,14,11,14,7,14,11,4,10,9,2,9,15,8,7,11,8,1,5,15,1,8,7,11,10,11,12,14,12,8,2,1,6,11,3,4,13,14,3,9,5,1,4,5,0,8,8,9,3,14,4,11,7,2,6,6,12,14,10,15,1,14,4,11,8,10,14,14,5,0,12,4,15,2,9,1,8,0,7,5,0,5,8,4,12,4,8,2,11,10,0,1,12,11,0,14,9,13,4,1,1,12,10,0,2,7,9,4,5,13,11,3,15,2,15,8,10,6,0,11,2,5,1,9,1,13,8,13,4,15,13,3,12,0,14,7,13,10,15,11,12,15,1,15,2,11,14,11,6,14,12,6,2,8,3,11,14,12,4,0,11,8,2,5,11,10,4,12,14,10,2,5,6,2,2,8,2,1,4,7,14,11,9,1,13,13,10,8,12,5,6,2,3,15,11,0,12,3,4,13,2,1,11,12,13,15,13,2,8,11,10,15,13,7,5,8,5,8,10,9,13,13,0,6,5,3,8,2,11,0,10,6,8,7,1,8,9,8,15,12,2,13,0,11,6,11,14,10,15,1,12,14,9,8,12,11,3,4,6,4,7,1,1,9,14,3,0,7,9,13,0,10,3,4,4,3,14,13,0,6,10,6,6,8,1,11,12,10,8,8,6,9,9,15,0,6,1,0,11,7,1,6,15,7,5,8,8,14,4,3,2,1,4,0,14,10,1,9,15,11,11,0,4,6,12,5,11,12,14,9,4,5,12,10,12,6,15,5,15,9,9,7,2,10,3,2,0,1,14,5,5,2,0,12,15,13,3,1,12,10,14,5,0,7,9,15,0,9,7,15,4,12,0,15,10,6,13,0,10,12,6,8,9,14,7,1,9,12,7,8,7,1,14,1,8,1,2,7,1,2,15,7,6,14,2,8,2,14,14,0,3,13,13,13,2,4,2,13,13,10,10,1,0,7,2,9,7,14,3,10,15,11,3,12,1,5,15,5,0,15,13,7,2,14,14,4,10,7,1,2,9,2,11,5,1,9,6,2,12,4,12,15,9,1,14,11,0,0,3,0,8,3,14,14,11,2,1,11,6,9,10,0,0,6,9,12,13,0,1,11,15,2,14,9,9,6,11,8,3,9,1,4,15,7,3,11,6,3,0,7,3,14,14,11,0,11,8,4,14,13,9,10,14,15,9,15,13,12,7,0,13,0,15,8,6,5,10,6,10,0,12,1,9,13,2,10,6,10,13,3,9,14,14,12,8,15,0,7,3,5,12,5,8,4,4,15,11,4,11,10,15,13,13,14,12,3,3,0,3,11,3,1,10,11,11,4,6,4,1,10,3,5,7,13,5,15,2,11,9,4,7,2,11,3,3,9,4,14,5,2,4,0,0,11,12,3,1,3,4,11,13,14,5,12,3,9,5,15,5,11,13,0,5,14,14,7,15,13,14,15,10,14,3,4,3,12,4,9,12,0,2,13,14,11,12,6,13,5,4,9,9,8,1,2,4,9,8,10,10,15,2,13,3,5,5,0,6,10,5,5,12,11,10,12,11,11,15,4,14,1,14,15,4,7,6,8,8,5,9,9,8,12,3,2,6,4,6,2,11,13,14,3,3,1,1,2,5,12,9,14,8,7,15,0,6,6,5,6,6,4,13,8,4,8,4,6,12,1,14,9,5,8,15,11,9,14,11,14,3,5,4,3,7,15,11,3,2,8,4,13,14,10,2,6,5,13,5,15,13,15,2,2,1,1,15,13,13,0,11,4,6,2,6,0,1,10,1,12,0,0,1,10,9,11,10,4,4,14,15,6,12,8,8,9,11,15,5,3,5,8,6,12,5,7,14,5,1,5,4,1,15,0,13,4,8,3,6,5,2,8,13,13,12,11,7,13,13,13,15,4,11,11,0,9,8,5,7,12,1,1,3,10,7,5,8,11,13,11,10,2,2,12,9,2,4,15,2,14,2,9,14,2,7,3,3,13,5,4,0,12,9,7,2,11,11,4,9,13,9,10,6,15,10,11,3,8,12,3,6,8,4,6,10,10,10,9,7,2,1,15,12,13,13,1,8,0,3,6,9,14,0,2,15,15,7,1,13,9,6,15,6,15,15,9,15,10,15,0,13,14,3,9,4,11,13,15,2,4,6,8,9,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"2\", \"6\", \"0\"], \"clip_start\": 851.0, \"clip_end\": 856.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,5,11,4,2,15,6,1,3,9,3,5,5,6,9,2,0,8,15,2,6,5,2,0,11,9,2,8,8,4,7,8,11,1,8,7,11,12,14,15,2,15,4,8,3,11,12,4,10,12,13,9,9,2,5,14,15,11,3,5,11,9,6,13,13,14,14,14,11,15,6,5,14,11,14,7,14,11,4,10,9,2,9,15,8,7,11,8,1,5,15,1,8,7,11,10,11,12,14,12,8,2,1,6,11,3,4,13,14,3,9,5,1,4,5,0,8,8,9,3,14,4,11,7,2,6,6,12,14,10,15,1,14,4,11,8,10,14,14,5,0,12,4,15,2,9,1,8,0,7,5,0,5,8,4,12,4,8,2,11,10,0,1,12,11,0,14,9,13,4,1,1,12,10,0,2,7,9,4,5,13,11,3,15,2,15,8,10,6,0,11,2,5,1,9,1,13,8,13,4,15,13,3,12,0,14,7,13,10,15,11,12,15,1,15,2,11,14,11,6,14,12,6,2,8,3,11,14,12,4,0,11,8,2,5,11,10,4,12,14,10,2,5,6,2,2,8,2,1,4,7,14,11,9,1,13,13,10,8,12,5,6,2,3,15,11,0,12,3,4,13,2,1,11,12,13,15,13,2,8,11,10,15,13,7,5,8,5,8,10,9,13,13,0,6,5,3,8,2,11,0,10,6,8,7,1,8,9,8,15,12,2,13,0,11,6,11,14,10,15,1,12,14,9,8,12,11,3,4,6,4,7,1,1,9,14,3,0,7,9,13,0,10,3,4,4,3,14,13,0,6,10,6,6,8,1,11,12,10,8,8,6,9,9,15,0,6,1,0,11,7,1,6,15,7,5,8,8,14,4,3,2,1,4,0,14,10,1,9,15,11,11,0,4,6,12,5,11,12,14,9,4,5,12,10,12,6,15,5,15,9,9,7,2,10,3,2,0,1,14,5,5,2,0,12,15,13,3,1,12,10,14,5,0,7,9,15,0,9,7,15,4,12,0,15,10,6,13,0,10,12,6,8,9,14,7,1,9,12,7,8,7,1,14,1,8,1,2,7,1,2,15,7,6,14,2,8,2,14,14,0,3,13,13,13,2,4,2,13,13,10,10,1,0,7,2,9,7,14,3,10,15,11,3,12,1,5,15,5,0,15,13,7,2,14,14,4,10,7,1,2,9,2,11,5,1,9,6,2,12,4,12,15,9,1,14,11,0,0,3,0,8,3,14,14,11,2,1,11,6,9,10,0,0,6,9,12,13,0,1,11,15,2,14,9,9,6,11,8,3,9,1,4,15,7,3,11,6,3,0,7,3,14,14,11,0,11,8,4,14,13,9,10,14,15,9,15,13,12,7,0,13,0,15,8,6,5,10,6,10,0,12,1,9,13,2,10,6,10,13,3,9,14,14,12,8,15,0,7,3,5,12,5,8,4,4,15,11,4,11,10,15,13,13,14,12,3,3,0,3,11,3,1,10,11,11,4,6,4,1,10,3,5,7,13,5,15,2,11,9,4,7,2,11,3,3,9,4,14,5,2,4,0,0,11,12,3,1,3,4,11,13,14,5,12,3,9,5,15,5,11,13,0,5,14,14,7,15,13,14,15,10,14,3,4,3,12,4,9,12,0,2,13,14,11,12,6,13,5,4,9,9,8,1,2,4,9,8,10,10,15,2,13,3,5,5,0,6,10,5,5,12,11,10,12,11,11,15,4,14,1,14,15,4,7,6,8,8,5,9,9,8,12,3,2,6,4,6,2,11,13,14,3,3,1,1,2,5,12,9,14,8,7,15,0,6,6,5,6,6,4,13,8,4,8,4,6,12,1,14,9,5,8,15,11,9,14,11,14,3,5,4,3,7,15,11,3,2,8,4,13,14,10,2,6,5,13,5,15,13,15,2,2,1,1,15,13,13,0,11,4,6,2,6,0,1,10,1,12,0,0,1,10,9,11,10,4,4,14,15,6,12,8,8,9,11,15,5,3,5,8,6,12,5,7,14,5,1,5,4,1,15,0,13,4,8,3,6,5,2,8,13,13,12,11,7,13,13,13,15,4,11,11,0,9,8,5,7,12,1,1,3,10,7,5,8,11,13,11,10,2,2,12,9,2,4,15,2,14,2,9,14,2,7,3,3,13,5,4,0,12,9,7,2,11,11,4,9,13,9,10,6,15,10,11,3,8,12,3,6,8,4,6,10,10,10,9,7,2,1,15,12,13,13,1,8,0,3,6,9,14,0,2,15,15,7,1,13,9,6,15,6,15,15,9,15,10,15,0,13,14,3,9,4,11,13,15,2,4,6,8,9,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"6\", \"8\", \"12\"], \"clip_start\": 300.0, \"clip_end\": 305.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q10_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,5,11,4,2,15,6,1,3,9,3,5,5,6,9,2,0,8,15,2,6,5,2,0,11,9,2,8,8,4,7,8,11,1,8,7,11,12,14,15,2,15,4,8,3,11,12,4,10,12,13,9,9,2,5,14,15,11,3,5,11,9,6,13,13,14,14,14,11,15,6,5,14,11,14,7,14,11,4,10,9,2,9,15,8,7,11,8,1,5,15,1,8,7,11,10,11,12,14,12,8,2,1,6,11,3,4,13,14,3,9,5,1,4,5,0,8,8,9,3,14,4,11,7,2,6,6,12,14,10,15,1,14,4,11,8,10,14,14,5,0,12,4,15,2,9,1,8,0,7,5,0,5,8,4,12,4,8,2,11,10,0,1,12,11,0,14,9,13,4,1,1,12,10,0,2,7,9,4,5,13,11,3,15,2,15,8,10,6,0,11,2,5,1,9,1,13,8,13,4,15,13,3,12,0,14,7,13,10,15,11,12,15,1,15,2,11,14,11,6,14,12,6,2,8,3,11,14,12,4,0,11,8,2,5,11,10,4,12,14,10,2,5,6,2,2,8,2,1,4,7,14,11,9,1,13,13,10,8,12,5,6,2,3,15,11,0,12,3,4,13,2,1,11,12,13,15,13,2,8,11,10,15,13,7,5,8,5,8,10,9,13,13,0,6,5,3,8,2,11,0,10,6,8,7,1,8,9,8,15,12,2,13,0,11,6,11,14,10,15,1,12,14,9,8,12,11,3,4,6,4,7,1,1,9,14,3,0,7,9,13,0,10,3,4,4,3,14,13,0,6,10,6,6,8,1,11,12,10,8,8,6,9,9,15,0,6,1,0,11,7,1,6,15,7,5,8,8,14,4,3,2,1,4,0,14,10,1,9,15,11,11,0,4,6,12,5,11,12,14,9,4,5,12,10,12,6,15,5,15,9,9,7,2,10,3,2,0,1,14,5,5,2,0,12,15,13,3,1,12,10,14,5,0,7,9,15,0,9,7,15,4,12,0,15,10,6,13,0,10,12,6,8,9,14,7,1,9,12,7,8,7,1,14,1,8,1,2,7,1,2,15,7,6,14,2,8,2,14,14,0,3,13,13,13,2,4,2,13,13,10,10,1,0,7,2,9,7,14,3,10,15,11,3,12,1,5,15,5,0,15,13,7,2,14,14,4,10,7,1,2,9,2,11,5,1,9,6,2,12,4,12,15,9,1,14,11,0,0,3,0,8,3,14,14,11,2,1,11,6,9,10,0,0,6,9,12,13,0,1,11,15,2,14,9,9,6,11,8,3,9,1,4,15,7,3,11,6,3,0,7,3,14,14,11,0,11,8,4,14,13,9,10,14,15,9,15,13,12,7,0,13,0,15,8,6,5,10,6,10,0,12,1,9,13,2,10,6,10,13,3,9,14,14,12,8,15,0,7,3,5,12,5,8,4,4,15,11,4,11,10,15,13,13,14,12,3,3,0,3,11,3,1,10,11,11,4,6,4,1,10,3,5,7,13,5,15,2,11,9,4,7,2,11,3,3,9,4,14,5,2,4,0,0,11,12,3,1,3,4,11,13,14,5,12,3,9,5,15,5,11,13,0,5,14,14,7,15,13,14,15,10,14,3,4,3,12,4,9,12,0,2,13,14,11,12,6,13,5,4,9,9,8,1,2,4,9,8,10,10,15,2,13,3,5,5,0,6,10,5,5,12,11,10,12,11,11,15,4,14,1,14,15,4,7,6,8,8,5,9,9,8,12,3,2,6,4,6,2,11,13,14,3,3,1,1,2,5,12,9,14,8,7,15,0,6,6,5,6,6,4,13,8,4,8,4,6,12,1,14,9,5,8,15,11,9,14,11,14,3,5,4,3,7,15,11,3,2,8,4,13,14,10,2,6,5,13,5,15,13,15,2,2,1,1,15,13,13,0,11,4,6,2,6,0,1,10,1,12,0,0,1,10,9,11,10,4,4,14,15,6,12,8,8,9,11,15,5,3,5,8,6,12,5,7,14,5,1,5,4,1,15,0,13,4,8,3,6,5,2,8,13,13,12,11,7,13,13,13,15,4,11,11,0,9,8,5,7,12,1,1,3,10,7,5,8,11,13,11,10,2,2,12,9,2,4,15,2,14,2,9,14,2,7,3,3,13,5,4,0,12,9,7,2,11,11,4,9,13,9,10,6,15,10,11,3,8,12,3,6,8,4,6,10,10,10,9,7,2,1,15,12,13,13,1,8,0,3,6,9,14,0,2,15,15,7,1,13,9,6,15,6,15,15,9,15,10,15,0,13,14,3,9,4,11,13,15,2,4,6,8,9,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"10\", \"6\", \"2\"], \"clip_start\": 73.0, \"clip_end\": 78.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q11_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,5,11,4,2,15,6,1,3,9,3,5,5,6,9,2,0,8,15,2,6,5,2,0,11,9,2,8,8,4,7,8,11,1,8,7,11,12,14,15,2,15,4,8,3,11,12,4,10,12,13,9,9,2,5,14,15,11,3,5,11,9,6,13,13,14,14,14,11,15,6,5,14,11,14,7,14,11,4,10,9,2,9,15,8,7,11,8,1,5,15,1,8,7,11,10,11,12,14,12,8,2,1,6,11,3,4,13,14,3,9,5,1,4,5,0,8,8,9,3,14,4,11,7,2,6,6,12,14,10,15,1,14,4,11,8,10,14,14,5,0,12,4,15,2,9,1,8,0,7,5,0,5,8,4,12,4,8,2,11,10,0,1,12,11,0,14,9,13,4,1,1,12,10,0,2,7,9,4,5,13,11,3,15,2,15,8,10,6,0,11,2,5,1,9,1,13,8,13,4,15,13,3,12,0,14,7,13,10,15,11,12,15,1,15,2,11,14,11,6,14,12,6,2,8,3,11,14,12,4,0,11,8,2,5,11,10,4,12,14,10,2,5,6,2,2,8,2,1,4,7,14,11,9,1,13,13,10,8,12,5,6,2,3,15,11,0,12,3,4,13,2,1,11,12,13,15,13,2,8,11,10,15,13,7,5,8,5,8,10,9,13,13,0,6,5,3,8,2,11,0,10,6,8,7,1,8,9,8,15,12,2,13,0,11,6,11,14,10,15,1,12,14,9,8,12,11,3,4,6,4,7,1,1,9,14,3,0,7,9,13,0,10,3,4,4,3,14,13,0,6,10,6,6,8,1,11,12,10,8,8,6,9,9,15,0,6,1,0,11,7,1,6,15,7,5,8,8,14,4,3,2,1,4,0,14,10,1,9,15,11,11,0,4,6,12,5,11,12,14,9,4,5,12,10,12,6,15,5,15,9,9,7,2,10,3,2,0,1,14,5,5,2,0,12,15,13,3,1,12,10,14,5,0,7,9,15,0,9,7,15,4,12,0,15,10,6,13,0,10,12,6,8,9,14,7,1,9,12,7,8,7,1,14,1,8,1,2,7,1,2,15,7,6,14,2,8,2,14,14,0,3,13,13,13,2,4,2,13,13,10,10,1,0,7,2,9,7,14,3,10,15,11,3,12,1,5,15,5,0,15,13,7,2,14,14,4,10,7,1,2,9,2,11,5,1,9,6,2,12,4,12,15,9,1,14,11,0,0,3,0,8,3,14,14,11,2,1,11,6,9,10,0,0,6,9,12,13,0,1,11,15,2,14,9,9,6,11,8,3,9,1,4,15,7,3,11,6,3,0,7,3,14,14,11,0,11,8,4,14,13,9,10,14,15,9,15,13,12,7,0,13,0,15,8,6,5,10,6,10,0,12,1,9,13,2,10,6,10,13,3,9,14,14,12,8,15,0,7,3,5,12,5,8,4,4,15,11,4,11,10,15,13,13,14,12,3,3,0,3,11,3,1,10,11,11,4,6,4,1,10,3,5,7,13,5,15,2,11,9,4,7,2,11,3,3,9,4,14,5,2,4,0,0,11,12,3,1,3,4,11,13,14,5,12,3,9,5,15,5,11,13,0,5,14,14,7,15,13,14,15,10,14,3,4,3,12,4,9,12,0,2,13,14,11,12,6,13,5,4,9,9,8,1,2,4,9,8,10,10,15,2,13,3,5,5,0,6,10,5,5,12,11,10,12,11,11,15,4,14,1,14,15,4,7,6,8,8,5,9,9,8,12,3,2,6,4,6,2,11,13,14,3,3,1,1,2,5,12,9,14,8,7,15,0,6,6,5,6,6,4,13,8,4,8,4,6,12,1,14,9,5,8,15,11,9,14,11,14,3,5,4,3,7,15,11,3,2,8,4,13,14,10,2,6,5,13,5,15,13,15,2,2,1,1,15,13,13,0,11,4,6,2,6,0,1,10,1,12,0,0,1,10,9,11,10,4,4,14,15,6,12,8,8,9,11,15,5,3,5,8,6,12,5,7,14,5,1,5,4,1,15,0,13,4,8,3,6,5,2,8,13,13,12,11,7,13,13,13,15,4,11,11,0,9,8,5,7,12,1,1,3,10,7,5,8,11,13,11,10,2,2,12,9,2,4,15,2,14,2,9,14,2,7,3,3,13,5,4,0,12,9,7,2,11,11,4,9,13,9,10,6,15,10,11,3,8,12,3,6,8,4,6,10,10,10,9,7,2,1,15,12,13,13,1,8,0,3,6,9,14,0,2,15,15,7,1,13,9,6,15,6,15,15,9,15,10,15,0,13,14,3,9,4,11,13,15,2,4,6,8,9,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"12\", \"0\", \"0\", \"1\"], \"clip_start\": 858.0, \"clip_end\": 863.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q12_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,5,11,4,2,15,6,1,3,9,3,5,5,6,9,2,0,8,15,2,6,5,2,0,11,9,2,8,8,4,7,8,11,1,8,7,11,12,14,15,2,15,4,8,3,11,12,4,10,12,13,9,9,2,5,14,15,11,3,5,11,9,6,13,13,14,14,14,11,15,6,5,14,11,14,7,14,11,4,10,9,2,9,15,8,7,11,8,1,5,15,1,8,7,11,10,11,12,14,12,8,2,1,6,11,3,4,13,14,3,9,5,1,4,5,0,8,8,9,3,14,4,11,7,2,6,6,12,14,10,15,1,14,4,11,8,10,14,14,5,0,12,4,15,2,9,1,8,0,7,5,0,5,8,4,12,4,8,2,11,10,0,1,12,11,0,14,9,13,4,1,1,12,10,0,2,7,9,4,5,13,11,3,15,2,15,8,10,6,0,11,2,5,1,9,1,13,8,13,4,15,13,3,12,0,14,7,13,10,15,11,12,15,1,15,2,11,14,11,6,14,12,6,2,8,3,11,14,12,4,0,11,8,2,5,11,10,4,12,14,10,2,5,6,2,2,8,2,1,4,7,14,11,9,1,13,13,10,8,12,5,6,2,3,15,11,0,12,3,4,13,2,1,11,12,13,15,13,2,8,11,10,15,13,7,5,8,5,8,10,9,13,13,0,6,5,3,8,2,11,0,10,6,8,7,1,8,9,8,15,12,2,13,0,11,6,11,14,10,15,1,12,14,9,8,12,11,3,4,6,4,7,1,1,9,14,3,0,7,9,13,0,10,3,4,4,3,14,13,0,6,10,6,6,8,1,11,12,10,8,8,6,9,9,15,0,6,1,0,11,7,1,6,15,7,5,8,8,14,4,3,2,1,4,0,14,10,1,9,15,11,11,0,4,6,12,5,11,12,14,9,4,5,12,10,12,6,15,5,15,9,9,7,2,10,3,2,0,1,14,5,5,2,0,12,15,13,3,1,12,10,14,5,0,7,9,15,0,9,7,15,4,12,0,15,10,6,13,0,10,12,6,8,9,14,7,1,9,12,7,8,7,1,14,1,8,1,2,7,1,2,15,7,6,14,2,8,2,14,14,0,3,13,13,13,2,4,2,13,13,10,10,1,0,7,2,9,7,14,3,10,15,11,3,12,1,5,15,5,0,15,13,7,2,14,14,4,10,7,1,2,9,2,11,5,1,9,6,2,12,4,12,15,9,1,14,11,0,0,3,0,8,3,14,14,11,2,1,11,6,9,10,0,0,6,9,12,13,0,1,11,15,2,14,9,9,6,11,8,3,9,1,4,15,7,3,11,6,3,0,7,3,14,14,11,0,11,8,4,14,13,9,10,14,15,9,15,13,12,7,0,13,0,15,8,6,5,10,6,10,0,12,1,9,13,2,10,6,10,13,3,9,14,14,12,8,15,0,7,3,5,12,5,8,4,4,15,11,4,11,10,15,13,13,14,12,3,3,0,3,11,3,1,10,11,11,4,6,4,1,10,3,5,7,13,5,15,2,11,9,4,7,2,11,3,3,9,4,14,5,2,4,0,0,11,12,3,1,3,4,11,13,14,5,12,3,9,5,15,5,11,13,0,5,14,14,7,15,13,14,15,10,14,3,4,3,12,4,9,12,0,2,13,14,11,12,6,13,5,4,9,9,8,1,2,4,9,8,10,10,15,2,13,3,5,5,0,6,10,5,5,12,11,10,12,11,11,15,4,14,1,14,15,4,7,6,8,8,5,9,9,8,12,3,2,6,4,6,2,11,13,14,3,3,1,1,2,5,12,9,14,8,7,15,0,6,6,5,6,6,4,13,8,4,8,4,6,12,1,14,9,5,8,15,11,9,14,11,14,3,5,4,3,7,15,11,3,2,8,4,13,14,10,2,6,5,13,5,15,13,15,2,2,1,1,15,13,13,0,11,4,6,2,6,0,1,10,1,12,0,0,1,10,9,11,10,4,4,14,15,6,12,8,8,9,11,15,5,3,5,8,6,12,5,7,14,5,1,5,4,1,15,0,13,4,8,3,6,5,2,8,13,13,12,11,7,13,13,13,15,4,11,11,0,9,8,5,7,12,1,1,3,10,7,5,8,11,13,11,10,2,2,12,9,2,4,15,2,14,2,9,14,2,7,3,3,13,5,4,0,12,9,7,2,11,11,4,9,13,9,10,6,15,10,11,3,8,12,3,6,8,4,6,10,10,10,9,7,2,1,15,12,13,13,1,8,0,3,6,9,14,0,2,15,15,7,1,13,9,6,15,6,15,15,9,15,10,15,0,13,14,3,9,4,11,13,15,2,4,6,8,9,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"1\", \"4\"], \"clip_start\": 236.0, \"clip_end\": 240.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q13_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,5,11,4,2,15,6,1,3,9,3,5,5,6,9,2,0,8,15,2,6,5,2,0,11,9,2,8,8,4,7,8,11,1,8,7,11,12,14,15,2,15,4,8,3,11,12,4,10,12,13,9,9,2,5,14,15,11,3,5,11,9,6,13,13,14,14,14,11,15,6,5,14,11,14,7,14,11,4,10,9,2,9,15,8,7,11,8,1,5,15,1,8,7,11,10,11,12,14,12,8,2,1,6,11,3,4,13,14,3,9,5,1,4,5,0,8,8,9,3,14,4,11,7,2,6,6,12,14,10,15,1,14,4,11,8,10,14,14,5,0,12,4,15,2,9,1,8,0,7,5,0,5,8,4,12,4,8,2,11,10,0,1,12,11,0,14,9,13,4,1,1,12,10,0,2,7,9,4,5,13,11,3,15,2,15,8,10,6,0,11,2,5,1,9,1,13,8,13,4,15,13,3,12,0,14,7,13,10,15,11,12,15,1,15,2,11,14,11,6,14,12,6,2,8,3,11,14,12,4,0,11,8,2,5,11,10,4,12,14,10,2,5,6,2,2,8,2,1,4,7,14,11,9,1,13,13,10,8,12,5,6,2,3,15,11,0,12,3,4,13,2,1,11,12,13,15,13,2,8,11,10,15,13,7,5,8,5,8,10,9,13,13,0,6,5,3,8,2,11,0,10,6,8,7,1,8,9,8,15,12,2,13,0,11,6,11,14,10,15,1,12,14,9,8,12,11,3,4,6,4,7,1,1,9,14,3,0,7,9,13,0,10,3,4,4,3,14,13,0,6,10,6,6,8,1,11,12,10,8,8,6,9,9,15,0,6,1,0,11,7,1,6,15,7,5,8,8,14,4,3,2,1,4,0,14,10,1,9,15,11,11,0,4,6,12,5,11,12,14,9,4,5,12,10,12,6,15,5,15,9,9,7,2,10,3,2,0,1,14,5,5,2,0,12,15,13,3,1,12,10,14,5,0,7,9,15,0,9,7,15,4,12,0,15,10,6,13,0,10,12,6,8,9,14,7,1,9,12,7,8,7,1,14,1,8,1,2,7,1,2,15,7,6,14,2,8,2,14,14,0,3,13,13,13,2,4,2,13,13,10,10,1,0,7,2,9,7,14,3,10,15,11,3,12,1,5,15,5,0,15,13,7,2,14,14,4,10,7,1,2,9,2,11,5,1,9,6,2,12,4,12,15,9,1,14,11,0,0,3,0,8,3,14,14,11,2,1,11,6,9,10,0,0,6,9,12,13,0,1,11,15,2,14,9,9,6,11,8,3,9,1,4,15,7,3,11,6,3,0,7,3,14,14,11,0,11,8,4,14,13,9,10,14,15,9,15,13,12,7,0,13,0,15,8,6,5,10,6,10,0,12,1,9,13,2,10,6,10,13,3,9,14,14,12,8,15,0,7,3,5,12,5,8,4,4,15,11,4,11,10,15,13,13,14,12,3,3,0,3,11,3,1,10,11,11,4,6,4,1,10,3,5,7,13,5,15,2,11,9,4,7,2,11,3,3,9,4,14,5,2,4,0,0,11,12,3,1,3,4,11,13,14,5,12,3,9,5,15,5,11,13,0,5,14,14,7,15,13,14,15,10,14,3,4,3,12,4,9,12,0,2,13,14,11,12,6,13,5,4,9,9,8,1,2,4,9,8,10,10,15,2,13,3,5,5,0,6,10,5,5,12,11,10,12,11,11,15,4,14,1,14,15,4,7,6,8,8,5,9,9,8,12,3,2,6,4,6,2,11,13,14,3,3,1,1,2,5,12,9,14,8,7,15,0,6,6,5,6,6,4,13,8,4,8,4,6,12,1,14,9,5,8,15,11,9,14,11,14,3,5,4,3,7,15,11,3,2,8,4,13,14,10,2,6,5,13,5,15,13,15,2,2,1,1,15,13,13,0,11,4,6,2,6,0,1,10,1,12,0,0,1,10,9,11,10,4,4,14,15,6,12,8,8,9,11,15,5,3,5,8,6,12,5,7,14,5,1,5,4,1,15,0,13,4,8,3,6,5,2,8,13,13,12,11,7,13,13,13,15,4,11,11,0,9,8,5,7,12,1,1,3,10,7,5,8,11,13,11,10,2,2,12,9,2,4,15,2,14,2,9,14,2,7,3,3,13,5,4,0,12,9,7,2,11,11,4,9,13,9,10,6,15,10,11,3,8,12,3,6,8,4,6,10,10,10,9,7,2,1,15,12,13,13,1,8,0,3,6,9,14,0,2,15,15,7,1,13,9,6,15,6,15,15,9,15,10,15,0,13,14,3,9,4,11,13,15,2,4,6,8,9,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"10\", \"14\", \"14\", \"5\"], \"clip_start\": 136.0, \"clip_end\": 141.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,5,11,4,2,15,6,1,3,9,3,5,5,6,9,2,0,8,15,2,6,5,2,0,11,9,2,8,8,4,7,8,11,1,8,7,11,12,14,15,2,15,4,8,3,11,12,4,10,12,13,9,9,2,5,14,15,11,3,5,11,9,6,13,13,14,14,14,11,15,6,5,14,11,14,7,14,11,4,10,9,2,9,15,8,7,11,8,1,5,15,1,8,7,11,10,11,12,14,12,8,2,1,6,11,3,4,13,14,3,9,5,1,4,5,0,8,8,9,3,14,4,11,7,2,6,6,12,14,10,15,1,14,4,11,8,10,14,14,5,0,12,4,15,2,9,1,8,0,7,5,0,5,8,4,12,4,8,2,11,10,0,1,12,11,0,14,9,13,4,1,1,12,10,0,2,7,9,4,5,13,11,3,15,2,15,8,10,6,0,11,2,5,1,9,1,13,8,13,4,15,13,3,12,0,14,7,13,10,15,11,12,15,1,15,2,11,14,11,6,14,12,6,2,8,3,11,14,12,4,0,11,8,2,5,11,10,4,12,14,10,2,5,6,2,2,8,2,1,4,7,14,11,9,1,13,13,10,8,12,5,6,2,3,15,11,0,12,3,4,13,2,1,11,12,13,15,13,2,8,11,10,15,13,7,5,8,5,8,10,9,13,13,0,6,5,3,8,2,11,0,10,6,8,7,1,8,9,8,15,12,2,13,0,11,6,11,14,10,15,1,12,14,9,8,12,11,3,4,6,4,7,1,1,9,14,3,0,7,9,13,0,10,3,4,4,3,14,13,0,6,10,6,6,8,1,11,12,10,8,8,6,9,9,15,0,6,1,0,11,7,1,6,15,7,5,8,8,14,4,3,2,1,4,0,14,10,1,9,15,11,11,0,4,6,12,5,11,12,14,9,4,5,12,10,12,6,15,5,15,9,9,7,2,10,3,2,0,1,14,5,5,2,0,12,15,13,3,1,12,10,14,5,0,7,9,15,0,9,7,15,4,12,0,15,10,6,13,0,10,12,6,8,9,14,7,1,9,12,7,8,7,1,14,1,8,1,2,7,1,2,15,7,6,14,2,8,2,14,14,0,3,13,13,13,2,4,2,13,13,10,10,1,0,7,2,9,7,14,3,10,15,11,3,12,1,5,15,5,0,15,13,7,2,14,14,4,10,7,1,2,9,2,11,5,1,9,6,2,12,4,12,15,9,1,14,11,0,0,3,0,8,3,14,14,11,2,1,11,6,9,10,0,0,6,9,12,13,0,1,11,15,2,14,9,9,6,11,8,3,9,1,4,15,7,3,11,6,3,0,7,3,14,14,11,0,11,8,4,14,13,9,10,14,15,9,15,13,12,7,0,13,0,15,8,6,5,10,6,10,0,12,1,9,13,2,10,6,10,13,3,9,14,14,12,8,15,0,7,3,5,12,5,8,4,4,15,11,4,11,10,15,13,13,14,12,3,3,0,3,11,3,1,10,11,11,4,6,4,1,10,3,5,7,13,5,15,2,11,9,4,7,2,11,3,3,9,4,14,5,2,4,0,0,11,12,3,1,3,4,11,13,14,5,12,3,9,5,15,5,11,13,0,5,14,14,7,15,13,14,15,10,14,3,4,3,12,4,9,12,0,2,13,14,11,12,6,13,5,4,9,9,8,1,2,4,9,8,10,10,15,2,13,3,5,5,0,6,10,5,5,12,11,10,12,11,11,15,4,14,1,14,15,4,7,6,8,8,5,9,9,8,12,3,2,6,4,6,2,11,13,14,3,3,1,1,2,5,12,9,14,8,7,15,0,6,6,5,6,6,4,13,8,4,8,4,6,12,1,14,9,5,8,15,11,9,14,11,14,3,5,4,3,7,15,11,3,2,8,4,13,14,10,2,6,5,13,5,15,13,15,2,2,1,1,15,13,13,0,11,4,6,2,6,0,1,10,1,12,0,0,1,10,9,11,10,4,4,14,15,6,12,8,8,9,11,15,5,3,5,8,6,12,5,7,14,5,1,5,4,1,15,0,13,4,8,3,6,5,2,8,13,13,12,11,7,13,13,13,15,4,11,11,0,9,8,5,7,12,1,1,3,10,7,5,8,11,13,11,10,2,2,12,9,2,4,15,2,14,2,9,14,2,7,3,3,13,5,4,0,12,9,7,2,11,11,4,9,13,9,10,6,15,10,11,3,8,12,3,6,8,4,6,10,10,10,9,7,2,1,15,12,13,13,1,8,0,3,6,9,14,0,2,15,15,7,1,13,9,6,15,6,15,15,9,15,10,15,0,13,14,3,9,4,11,13,15,2,4,6,8,9,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"1\", \"1\", \"3\"], \"clip_start\": 919.0, \"clip_end\": 923.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q15_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,0,5,11,4,2,15,6,1,3,9,3,5,5,6,9,2,0,8,15,2,6,5,2,0,11,9,2,8,8,4,7,8,11,1,8,7,11,12,14,15,2,15,4,8,3,11,12,4,10,12,13,9,9,2,5,14,15,11,3,5,11,9,6,13,13,14,14,14,11,15,6,5,14,11,14,7,14,11,4,10,9,2,9,15,8,7,11,8,1,5,15,1,8,7,11,10,11,12,14,12,8,2,1,6,11,3,4,13,14,3,9,5,1,4,5,0,8,8,9,3,14,4,11,7,2,6,6,12,14,10,15,1,14,4,11,8,10,14,14,5,0,12,4,15,2,9,1,8,0,7,5,0,5,8,4,12,4,8,2,11,10,0,1,12,11,0,14,9,13,4,1,1,12,10,0,2,7,9,4,5,13,11,3,15,2,15,8,10,6,0,11,2,5,1,9,1,13,8,13,4,15,13,3,12,0,14,7,13,10,15,11,12,15,1,15,2,11,14,11,6,14,12,6,2,8,3,11,14,12,4,0,11,8,2,5,11,10,4,12,14,10,2,5,6,2,2,8,2,1,4,7,14,11,9,1,13,13,10,8,12,5,6,2,3,15,11,0,12,3,4,13,2,1,11,12,13,15,13,2,8,11,10,15,13,7,5,8,5,8,10,9,13,13,0,6,5,3,8,2,11,0,10,6,8,7,1,8,9,8,15,12,2,13,0,11,6,11,14,10,15,1,12,14,9,8,12,11,3,4,6,4,7,1,1,9,14,3,0,7,9,13,0,10,3,4,4,3,14,13,0,6,10,6,6,8,1,11,12,10,8,8,6,9,9,15,0,6,1,0,11,7,1,6,15,7,5,8,8,14,4,3,2,1,4,0,14,10,1,9,15,11,11,0,4,6,12,5,11,12,14,9,4,5,12,10,12,6,15,5,15,9,9,7,2,10,3,2,0,1,14,5,5,2,0,12,15,13,3,1,12,10,14,5,0,7,9,15,0,9,7,15,4,12,0,15,10,6,13,0,10,12,6,8,9,14,7,1,9,12,7,8,7,1,14,1,8,1,2,7,1,2,15,7,6,14,2,8,2,14,14,0,3,13,13,13,2,4,2,13,13,10,10,1,0,7,2,9,7,14,3,10,15,11,3,12,1,5,15,5,0,15,13,7,2,14,14,4,10,7,1,2,9,2,11,5,1,9,6,2,12,4,12,15,9,1,14,11,0,0,3,0,8,3,14,14,11,2,1,11,6,9,10,0,0,6,9,12,13,0,1,11,15,2,14,9,9,6,11,8,3,9,1,4,15,7,3,11,6,3,0,7,3,14,14,11,0,11,8,4,14,13,9,10,14,15,9,15,13,12,7,0,13,0,15,8,6,5,10,6,10,0,12,1,9,13,2,10,6,10,13,3,9,14,14,12,8,15,0,7,3,5,12,5,8,4,4,15,11,4,11,10,15,13,13,14,12,3,3,0,3,11,3,1,10,11,11,4,6,4,1,10,3,5,7,13,5,15,2,11,9,4,7,2,11,3,3,9,4,14,5,2,4,0,0,11,12,3,1,3,4,11,13,14,5,12,3,9,5,15,5,11,13,0,5,14,14,7,15,13,14,15,10,14,3,4,3,12,4,9,12,0,2,13,14,11,12,6,13,5,4,9,9,8,1,2,4,9,8,10,10,15,2,13,3,5,5,0,6,10,5,5,12,11,10,12,11,11,15,4,14,1,14,15,4,7,6,8,8,5,9,9,8,12,3,2,6,4,6,2,11,13,14,3,3,1,1,2,5,12,9,14,8,7,15,0,6,6,5,6,6,4,13,8,4,8,4,6,12,1,14,9,5,8,15,11,9,14,11,14,3,5,4,3,7,15,11,3,2,8,4,13,14,10,2,6,5,13,5,15,13,15,2,2,1,1,15,13,13,0,11,4,6,2,6,0,1,10,1,12,0,0,1,10,9,11,10,4,4,14,15,6,12,8,8,9,11,15,5,3,5,8,6,12,5,7,14,5,1,5,4,1,15,0,13,4,8,3,6,5,2,8,13,13,12,11,7,13,13,13,15,4,11,11,0,9,8,5,7,12,1,1,3,10,7,5,8,11,13,11,10,2,2,12,9,2,4,15,2,14,2,9,14,2,7,3,3,13,5,4,0,12,9,7,2,11,11,4,9,13,9,10,6,15,10,11,3,8,12,3,6,8,4,6,10,10,10,9,7,2,1,15,12,13,13,1,8,0,3,6,9,14,0,2,15,15,7,1,13,9,6,15,6,15,15,9,15,10,15,0,13,14,3,9,4,11,13,15,2,4,6,8,9,6", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"9\"], \"clip_start\": 521.0, \"clip_end\": 524.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q0_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,13,1,10,1,7,9,13,9,4,9,11,6,2,9,6,2,3,2,4,8,0,8,8,9,14,11,3,11,4,6,0,10,2,15,12,6,6,2,15,6,9,11,12,14,10,11,1,14,9,6,11,8,14,15,1,9,11,13,1,7,6,9,13,6,3,14,5,0,8,4,6,11,4,5,3,10,4,11,5,13,5,5,5,0,14,9,13,3,10,4,3,7,6,8,11,9,13,14,13,10,12,13,5,12,15,3,8,11,13,5,8,5,7,1,8,8,0,14,14,2,1,4,15,11,14,14,1,3,12,12,8,11,5,13,10,5,11,4,12,15,2,4,15,7,15,9,2,3,15,10,10,10,5,11,6,6,7,4,10,10,10,4,12,9,4,11,10,7,7,4,5,7,8,5,13,7,9,0,3,7,4,8,11,13,0,0,5,7,14,15,3,14,14,14,8,12,2,2,14,6,7,8,7,8,5,3,15,15,4,14,8,3,8,1,10,5,3,12,0,6,1,12,10,7,10,1,13,7,6,11,9,5,11,15,1,15,14,6,7,11,2,5,3,9,13,0,9,1,8,10,14,10,6,6,8,15,13,3,15,14,7,1,5,1,8,0,6,1,0,14,9,8,10,9,14,12,5,2,15,5,10,3,7,0,12,7,3,4,5,6,12,3,13,12,12,3,9,5,7,14,8,12,7,2,15,13,10,1,4,13,8,15,13,0,4,13,0,7,12,3,7,9,2,7,9,3,8,5,6,4,0,2,2,0,7,15,14,6,5,4,15,5,11,0,14,14,9,4,3,11,5,12,15,15,3,13,9,3,8,8,15,4,3,10,5,14,13,5,15,13,0,0,13,2,9,1,15,14,14,4,6,7,10,8,6,4,2,7,0,15,7,12,2,11,7,14,3,7,2,10,15,12,3,9,4,7,5,12,14,8,5,4,9,9,0,14,4,1,15,5,5,11,1,13,6,0,10,3,8,3,7,4,4,7,9,0,5,11,11,11,12,13,1,9,0,13,9,14,0,15,2,14,14,9,1,9,11,13,7,12,2,9,10,2,10,7,1,5,13,3,8,4,9,1,2,3,3,15,3,6,3,2,14,13,10,9,2,1,4,12,2,7,1,14,6,13,5,1,2,9,4,9,14,6,3,13,9,13,3,6,10,13,9,9,6,1,13,11,12,14,5,12,9,1,8,9,1,2,2,14,8,1,9,10,3,4,7,12,5,7,13,15,12,11,10,14,2,10,10,5,14,0,11,1,6,0,12,3,14,3,14,2,9,1,13,0,1,0,3,13,7,3,9,14,11,10,10,11,5,9,2,15,11,14,10,2,3,1,7,1,8,10,12,11,9,11,15,6,7,7,13,0,15,14,13,9,11,3,8,14,3,7,3,9,0,7,9,3,14,8,8,4,9,8,1,11,4,2,7,9,6,2,9,5,3,10,12,11,8,14,11,8,0,10,0,3,14,8,4,12,9,3,11,5,13,7,10,6,11,10,5,15,14,4,7,0,12,12,15,14,12,7,1,5,15,9,15,15,0,8,8,8,9,2,3,7,8,10,2,14,1,1,8,0,2,15,12,5,5,1,5,13,2,12,10,11,3,5,5,11,9,14,2,4,0,3,8,14,14,11,0,5,4,5,13,6,4,12,6,8,3,0,0,12,11,0,6,0,7,14,12,2,0,11,12,6,2,3,15,5,9,4,14,0,10,11,11,11,10,7,4,9,12,11,0,0,10,12,2,4,5,8,12,1,6,2,6,14,11,9,8,9,13,11,5,12,15,2,15,13,8,14,2,14,2,15,5,4,5,6,8,15,2,6,2,5,2,1,11,12,3,13,13,15,14,7,6,13,2,2,1,11,9,0,11,3,9,15,2,13,11,4,12,15,7,1,11,8,12,11,0,13,14,6,8,14,6,1,7,7,6,8,11,7,9,12,9,8,7,3,10,0,2,0,7,3,12,7,10,4,12,5,12,1,9,8,0,12,3,1,7,14,3,13,5,9,11,5,13,11,8,10,7,1,13,10,6,15,7,6,2,10,12,2,12,10,7,13,10,5,5,4,8,8,13,4,7,13,3,8,7,4,6,2,12,12,15,6,4,0,1,2,4,14,4,6,14,8,12,7,12,10,4,13,8,1,9,6,6,15,7,2,7,11,12,2,8,1,15,3,13,8,7,5,5,9,6,8,6,2,7,3,2,10,7,0,4,4,11,10,2,14,5,8,11,9,14,3,0,4,3,6,5,9,2,0,14,0,2,5,11,14,4,8,2,13,7,6,8,7,6,0,2,5,0,4,0,6,13,4,0,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"6\", \"7\"], \"clip_start\": 199.0, \"clip_end\": 203.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q1_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,13,1,10,1,7,9,13,9,4,9,11,6,2,9,6,2,3,2,4,8,0,8,8,9,14,11,3,11,4,6,0,10,2,15,12,6,6,2,15,6,9,11,12,14,10,11,1,14,9,6,11,8,14,15,1,9,11,13,1,7,6,9,13,6,3,14,5,0,8,4,6,11,4,5,3,10,4,11,5,13,5,5,5,0,14,9,13,3,10,4,3,7,6,8,11,9,13,14,13,10,12,13,5,12,15,3,8,11,13,5,8,5,7,1,8,8,0,14,14,2,1,4,15,11,14,14,1,3,12,12,8,11,5,13,10,5,11,4,12,15,2,4,15,7,15,9,2,3,15,10,10,10,5,11,6,6,7,4,10,10,10,4,12,9,4,11,10,7,7,4,5,7,8,5,13,7,9,0,3,7,4,8,11,13,0,0,5,7,14,15,3,14,14,14,8,12,2,2,14,6,7,8,7,8,5,3,15,15,4,14,8,3,8,1,10,5,3,12,0,6,1,12,10,7,10,1,13,7,6,11,9,5,11,15,1,15,14,6,7,11,2,5,3,9,13,0,9,1,8,10,14,10,6,6,8,15,13,3,15,14,7,1,5,1,8,0,6,1,0,14,9,8,10,9,14,12,5,2,15,5,10,3,7,0,12,7,3,4,5,6,12,3,13,12,12,3,9,5,7,14,8,12,7,2,15,13,10,1,4,13,8,15,13,0,4,13,0,7,12,3,7,9,2,7,9,3,8,5,6,4,0,2,2,0,7,15,14,6,5,4,15,5,11,0,14,14,9,4,3,11,5,12,15,15,3,13,9,3,8,8,15,4,3,10,5,14,13,5,15,13,0,0,13,2,9,1,15,14,14,4,6,7,10,8,6,4,2,7,0,15,7,12,2,11,7,14,3,7,2,10,15,12,3,9,4,7,5,12,14,8,5,4,9,9,0,14,4,1,15,5,5,11,1,13,6,0,10,3,8,3,7,4,4,7,9,0,5,11,11,11,12,13,1,9,0,13,9,14,0,15,2,14,14,9,1,9,11,13,7,12,2,9,10,2,10,7,1,5,13,3,8,4,9,1,2,3,3,15,3,6,3,2,14,13,10,9,2,1,4,12,2,7,1,14,6,13,5,1,2,9,4,9,14,6,3,13,9,13,3,6,10,13,9,9,6,1,13,11,12,14,5,12,9,1,8,9,1,2,2,14,8,1,9,10,3,4,7,12,5,7,13,15,12,11,10,14,2,10,10,5,14,0,11,1,6,0,12,3,14,3,14,2,9,1,13,0,1,0,3,13,7,3,9,14,11,10,10,11,5,9,2,15,11,14,10,2,3,1,7,1,8,10,12,11,9,11,15,6,7,7,13,0,15,14,13,9,11,3,8,14,3,7,3,9,0,7,9,3,14,8,8,4,9,8,1,11,4,2,7,9,6,2,9,5,3,10,12,11,8,14,11,8,0,10,0,3,14,8,4,12,9,3,11,5,13,7,10,6,11,10,5,15,14,4,7,0,12,12,15,14,12,7,1,5,15,9,15,15,0,8,8,8,9,2,3,7,8,10,2,14,1,1,8,0,2,15,12,5,5,1,5,13,2,12,10,11,3,5,5,11,9,14,2,4,0,3,8,14,14,11,0,5,4,5,13,6,4,12,6,8,3,0,0,12,11,0,6,0,7,14,12,2,0,11,12,6,2,3,15,5,9,4,14,0,10,11,11,11,10,7,4,9,12,11,0,0,10,12,2,4,5,8,12,1,6,2,6,14,11,9,8,9,13,11,5,12,15,2,15,13,8,14,2,14,2,15,5,4,5,6,8,15,2,6,2,5,2,1,11,12,3,13,13,15,14,7,6,13,2,2,1,11,9,0,11,3,9,15,2,13,11,4,12,15,7,1,11,8,12,11,0,13,14,6,8,14,6,1,7,7,6,8,11,7,9,12,9,8,7,3,10,0,2,0,7,3,12,7,10,4,12,5,12,1,9,8,0,12,3,1,7,14,3,13,5,9,11,5,13,11,8,10,7,1,13,10,6,15,7,6,2,10,12,2,12,10,7,13,10,5,5,4,8,8,13,4,7,13,3,8,7,4,6,2,12,12,15,6,4,0,1,2,4,14,4,6,14,8,12,7,12,10,4,13,8,1,9,6,6,15,7,2,7,11,12,2,8,1,15,3,13,8,7,5,5,9,6,8,6,2,7,3,2,10,7,0,4,4,11,10,2,14,5,8,11,9,14,3,0,4,3,6,5,9,2,0,14,0,2,5,11,14,4,8,2,13,7,6,8,7,6,0,2,5,0,4,0,6,13,4,0,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"0\", \"11\", \"3\", \"9\"], \"clip_start\": 824.0, \"clip_end\": 829.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,13,1,10,1,7,9,13,9,4,9,11,6,2,9,6,2,3,2,4,8,0,8,8,9,14,11,3,11,4,6,0,10,2,15,12,6,6,2,15,6,9,11,12,14,10,11,1,14,9,6,11,8,14,15,1,9,11,13,1,7,6,9,13,6,3,14,5,0,8,4,6,11,4,5,3,10,4,11,5,13,5,5,5,0,14,9,13,3,10,4,3,7,6,8,11,9,13,14,13,10,12,13,5,12,15,3,8,11,13,5,8,5,7,1,8,8,0,14,14,2,1,4,15,11,14,14,1,3,12,12,8,11,5,13,10,5,11,4,12,15,2,4,15,7,15,9,2,3,15,10,10,10,5,11,6,6,7,4,10,10,10,4,12,9,4,11,10,7,7,4,5,7,8,5,13,7,9,0,3,7,4,8,11,13,0,0,5,7,14,15,3,14,14,14,8,12,2,2,14,6,7,8,7,8,5,3,15,15,4,14,8,3,8,1,10,5,3,12,0,6,1,12,10,7,10,1,13,7,6,11,9,5,11,15,1,15,14,6,7,11,2,5,3,9,13,0,9,1,8,10,14,10,6,6,8,15,13,3,15,14,7,1,5,1,8,0,6,1,0,14,9,8,10,9,14,12,5,2,15,5,10,3,7,0,12,7,3,4,5,6,12,3,13,12,12,3,9,5,7,14,8,12,7,2,15,13,10,1,4,13,8,15,13,0,4,13,0,7,12,3,7,9,2,7,9,3,8,5,6,4,0,2,2,0,7,15,14,6,5,4,15,5,11,0,14,14,9,4,3,11,5,12,15,15,3,13,9,3,8,8,15,4,3,10,5,14,13,5,15,13,0,0,13,2,9,1,15,14,14,4,6,7,10,8,6,4,2,7,0,15,7,12,2,11,7,14,3,7,2,10,15,12,3,9,4,7,5,12,14,8,5,4,9,9,0,14,4,1,15,5,5,11,1,13,6,0,10,3,8,3,7,4,4,7,9,0,5,11,11,11,12,13,1,9,0,13,9,14,0,15,2,14,14,9,1,9,11,13,7,12,2,9,10,2,10,7,1,5,13,3,8,4,9,1,2,3,3,15,3,6,3,2,14,13,10,9,2,1,4,12,2,7,1,14,6,13,5,1,2,9,4,9,14,6,3,13,9,13,3,6,10,13,9,9,6,1,13,11,12,14,5,12,9,1,8,9,1,2,2,14,8,1,9,10,3,4,7,12,5,7,13,15,12,11,10,14,2,10,10,5,14,0,11,1,6,0,12,3,14,3,14,2,9,1,13,0,1,0,3,13,7,3,9,14,11,10,10,11,5,9,2,15,11,14,10,2,3,1,7,1,8,10,12,11,9,11,15,6,7,7,13,0,15,14,13,9,11,3,8,14,3,7,3,9,0,7,9,3,14,8,8,4,9,8,1,11,4,2,7,9,6,2,9,5,3,10,12,11,8,14,11,8,0,10,0,3,14,8,4,12,9,3,11,5,13,7,10,6,11,10,5,15,14,4,7,0,12,12,15,14,12,7,1,5,15,9,15,15,0,8,8,8,9,2,3,7,8,10,2,14,1,1,8,0,2,15,12,5,5,1,5,13,2,12,10,11,3,5,5,11,9,14,2,4,0,3,8,14,14,11,0,5,4,5,13,6,4,12,6,8,3,0,0,12,11,0,6,0,7,14,12,2,0,11,12,6,2,3,15,5,9,4,14,0,10,11,11,11,10,7,4,9,12,11,0,0,10,12,2,4,5,8,12,1,6,2,6,14,11,9,8,9,13,11,5,12,15,2,15,13,8,14,2,14,2,15,5,4,5,6,8,15,2,6,2,5,2,1,11,12,3,13,13,15,14,7,6,13,2,2,1,11,9,0,11,3,9,15,2,13,11,4,12,15,7,1,11,8,12,11,0,13,14,6,8,14,6,1,7,7,6,8,11,7,9,12,9,8,7,3,10,0,2,0,7,3,12,7,10,4,12,5,12,1,9,8,0,12,3,1,7,14,3,13,5,9,11,5,13,11,8,10,7,1,13,10,6,15,7,6,2,10,12,2,12,10,7,13,10,5,5,4,8,8,13,4,7,13,3,8,7,4,6,2,12,12,15,6,4,0,1,2,4,14,4,6,14,8,12,7,12,10,4,13,8,1,9,6,6,15,7,2,7,11,12,2,8,1,15,3,13,8,7,5,5,9,6,8,6,2,7,3,2,10,7,0,4,4,11,10,2,14,5,8,11,9,14,3,0,4,3,6,5,9,2,0,14,0,2,5,11,14,4,8,2,13,7,6,8,7,6,0,2,5,0,4,0,6,13,4,0,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"8\", \"0\", \"12\", \"13\"], \"clip_start\": 250.0, \"clip_end\": 255.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q3_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,13,1,10,1,7,9,13,9,4,9,11,6,2,9,6,2,3,2,4,8,0,8,8,9,14,11,3,11,4,6,0,10,2,15,12,6,6,2,15,6,9,11,12,14,10,11,1,14,9,6,11,8,14,15,1,9,11,13,1,7,6,9,13,6,3,14,5,0,8,4,6,11,4,5,3,10,4,11,5,13,5,5,5,0,14,9,13,3,10,4,3,7,6,8,11,9,13,14,13,10,12,13,5,12,15,3,8,11,13,5,8,5,7,1,8,8,0,14,14,2,1,4,15,11,14,14,1,3,12,12,8,11,5,13,10,5,11,4,12,15,2,4,15,7,15,9,2,3,15,10,10,10,5,11,6,6,7,4,10,10,10,4,12,9,4,11,10,7,7,4,5,7,8,5,13,7,9,0,3,7,4,8,11,13,0,0,5,7,14,15,3,14,14,14,8,12,2,2,14,6,7,8,7,8,5,3,15,15,4,14,8,3,8,1,10,5,3,12,0,6,1,12,10,7,10,1,13,7,6,11,9,5,11,15,1,15,14,6,7,11,2,5,3,9,13,0,9,1,8,10,14,10,6,6,8,15,13,3,15,14,7,1,5,1,8,0,6,1,0,14,9,8,10,9,14,12,5,2,15,5,10,3,7,0,12,7,3,4,5,6,12,3,13,12,12,3,9,5,7,14,8,12,7,2,15,13,10,1,4,13,8,15,13,0,4,13,0,7,12,3,7,9,2,7,9,3,8,5,6,4,0,2,2,0,7,15,14,6,5,4,15,5,11,0,14,14,9,4,3,11,5,12,15,15,3,13,9,3,8,8,15,4,3,10,5,14,13,5,15,13,0,0,13,2,9,1,15,14,14,4,6,7,10,8,6,4,2,7,0,15,7,12,2,11,7,14,3,7,2,10,15,12,3,9,4,7,5,12,14,8,5,4,9,9,0,14,4,1,15,5,5,11,1,13,6,0,10,3,8,3,7,4,4,7,9,0,5,11,11,11,12,13,1,9,0,13,9,14,0,15,2,14,14,9,1,9,11,13,7,12,2,9,10,2,10,7,1,5,13,3,8,4,9,1,2,3,3,15,3,6,3,2,14,13,10,9,2,1,4,12,2,7,1,14,6,13,5,1,2,9,4,9,14,6,3,13,9,13,3,6,10,13,9,9,6,1,13,11,12,14,5,12,9,1,8,9,1,2,2,14,8,1,9,10,3,4,7,12,5,7,13,15,12,11,10,14,2,10,10,5,14,0,11,1,6,0,12,3,14,3,14,2,9,1,13,0,1,0,3,13,7,3,9,14,11,10,10,11,5,9,2,15,11,14,10,2,3,1,7,1,8,10,12,11,9,11,15,6,7,7,13,0,15,14,13,9,11,3,8,14,3,7,3,9,0,7,9,3,14,8,8,4,9,8,1,11,4,2,7,9,6,2,9,5,3,10,12,11,8,14,11,8,0,10,0,3,14,8,4,12,9,3,11,5,13,7,10,6,11,10,5,15,14,4,7,0,12,12,15,14,12,7,1,5,15,9,15,15,0,8,8,8,9,2,3,7,8,10,2,14,1,1,8,0,2,15,12,5,5,1,5,13,2,12,10,11,3,5,5,11,9,14,2,4,0,3,8,14,14,11,0,5,4,5,13,6,4,12,6,8,3,0,0,12,11,0,6,0,7,14,12,2,0,11,12,6,2,3,15,5,9,4,14,0,10,11,11,11,10,7,4,9,12,11,0,0,10,12,2,4,5,8,12,1,6,2,6,14,11,9,8,9,13,11,5,12,15,2,15,13,8,14,2,14,2,15,5,4,5,6,8,15,2,6,2,5,2,1,11,12,3,13,13,15,14,7,6,13,2,2,1,11,9,0,11,3,9,15,2,13,11,4,12,15,7,1,11,8,12,11,0,13,14,6,8,14,6,1,7,7,6,8,11,7,9,12,9,8,7,3,10,0,2,0,7,3,12,7,10,4,12,5,12,1,9,8,0,12,3,1,7,14,3,13,5,9,11,5,13,11,8,10,7,1,13,10,6,15,7,6,2,10,12,2,12,10,7,13,10,5,5,4,8,8,13,4,7,13,3,8,7,4,6,2,12,12,15,6,4,0,1,2,4,14,4,6,14,8,12,7,12,10,4,13,8,1,9,6,6,15,7,2,7,11,12,2,8,1,15,3,13,8,7,5,5,9,6,8,6,2,7,3,2,10,7,0,4,4,11,10,2,14,5,8,11,9,14,3,0,4,3,6,5,9,2,0,14,0,2,5,11,14,4,8,2,13,7,6,8,7,6,0,2,5,0,4,0,6,13,4,0,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"1\", \"14\"], \"clip_start\": 492.0, \"clip_end\": 496.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,13,1,10,1,7,9,13,9,4,9,11,6,2,9,6,2,3,2,4,8,0,8,8,9,14,11,3,11,4,6,0,10,2,15,12,6,6,2,15,6,9,11,12,14,10,11,1,14,9,6,11,8,14,15,1,9,11,13,1,7,6,9,13,6,3,14,5,0,8,4,6,11,4,5,3,10,4,11,5,13,5,5,5,0,14,9,13,3,10,4,3,7,6,8,11,9,13,14,13,10,12,13,5,12,15,3,8,11,13,5,8,5,7,1,8,8,0,14,14,2,1,4,15,11,14,14,1,3,12,12,8,11,5,13,10,5,11,4,12,15,2,4,15,7,15,9,2,3,15,10,10,10,5,11,6,6,7,4,10,10,10,4,12,9,4,11,10,7,7,4,5,7,8,5,13,7,9,0,3,7,4,8,11,13,0,0,5,7,14,15,3,14,14,14,8,12,2,2,14,6,7,8,7,8,5,3,15,15,4,14,8,3,8,1,10,5,3,12,0,6,1,12,10,7,10,1,13,7,6,11,9,5,11,15,1,15,14,6,7,11,2,5,3,9,13,0,9,1,8,10,14,10,6,6,8,15,13,3,15,14,7,1,5,1,8,0,6,1,0,14,9,8,10,9,14,12,5,2,15,5,10,3,7,0,12,7,3,4,5,6,12,3,13,12,12,3,9,5,7,14,8,12,7,2,15,13,10,1,4,13,8,15,13,0,4,13,0,7,12,3,7,9,2,7,9,3,8,5,6,4,0,2,2,0,7,15,14,6,5,4,15,5,11,0,14,14,9,4,3,11,5,12,15,15,3,13,9,3,8,8,15,4,3,10,5,14,13,5,15,13,0,0,13,2,9,1,15,14,14,4,6,7,10,8,6,4,2,7,0,15,7,12,2,11,7,14,3,7,2,10,15,12,3,9,4,7,5,12,14,8,5,4,9,9,0,14,4,1,15,5,5,11,1,13,6,0,10,3,8,3,7,4,4,7,9,0,5,11,11,11,12,13,1,9,0,13,9,14,0,15,2,14,14,9,1,9,11,13,7,12,2,9,10,2,10,7,1,5,13,3,8,4,9,1,2,3,3,15,3,6,3,2,14,13,10,9,2,1,4,12,2,7,1,14,6,13,5,1,2,9,4,9,14,6,3,13,9,13,3,6,10,13,9,9,6,1,13,11,12,14,5,12,9,1,8,9,1,2,2,14,8,1,9,10,3,4,7,12,5,7,13,15,12,11,10,14,2,10,10,5,14,0,11,1,6,0,12,3,14,3,14,2,9,1,13,0,1,0,3,13,7,3,9,14,11,10,10,11,5,9,2,15,11,14,10,2,3,1,7,1,8,10,12,11,9,11,15,6,7,7,13,0,15,14,13,9,11,3,8,14,3,7,3,9,0,7,9,3,14,8,8,4,9,8,1,11,4,2,7,9,6,2,9,5,3,10,12,11,8,14,11,8,0,10,0,3,14,8,4,12,9,3,11,5,13,7,10,6,11,10,5,15,14,4,7,0,12,12,15,14,12,7,1,5,15,9,15,15,0,8,8,8,9,2,3,7,8,10,2,14,1,1,8,0,2,15,12,5,5,1,5,13,2,12,10,11,3,5,5,11,9,14,2,4,0,3,8,14,14,11,0,5,4,5,13,6,4,12,6,8,3,0,0,12,11,0,6,0,7,14,12,2,0,11,12,6,2,3,15,5,9,4,14,0,10,11,11,11,10,7,4,9,12,11,0,0,10,12,2,4,5,8,12,1,6,2,6,14,11,9,8,9,13,11,5,12,15,2,15,13,8,14,2,14,2,15,5,4,5,6,8,15,2,6,2,5,2,1,11,12,3,13,13,15,14,7,6,13,2,2,1,11,9,0,11,3,9,15,2,13,11,4,12,15,7,1,11,8,12,11,0,13,14,6,8,14,6,1,7,7,6,8,11,7,9,12,9,8,7,3,10,0,2,0,7,3,12,7,10,4,12,5,12,1,9,8,0,12,3,1,7,14,3,13,5,9,11,5,13,11,8,10,7,1,13,10,6,15,7,6,2,10,12,2,12,10,7,13,10,5,5,4,8,8,13,4,7,13,3,8,7,4,6,2,12,12,15,6,4,0,1,2,4,14,4,6,14,8,12,7,12,10,4,13,8,1,9,6,6,15,7,2,7,11,12,2,8,1,15,3,13,8,7,5,5,9,6,8,6,2,7,3,2,10,7,0,4,4,11,10,2,14,5,8,11,9,14,3,0,4,3,6,5,9,2,0,14,0,2,5,11,14,4,8,2,13,7,6,8,7,6,0,2,5,0,4,0,6,13,4,0,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"0\", \"5\", \"4\"], \"clip_start\": 721.0, \"clip_end\": 725.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q5_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,13,1,10,1,7,9,13,9,4,9,11,6,2,9,6,2,3,2,4,8,0,8,8,9,14,11,3,11,4,6,0,10,2,15,12,6,6,2,15,6,9,11,12,14,10,11,1,14,9,6,11,8,14,15,1,9,11,13,1,7,6,9,13,6,3,14,5,0,8,4,6,11,4,5,3,10,4,11,5,13,5,5,5,0,14,9,13,3,10,4,3,7,6,8,11,9,13,14,13,10,12,13,5,12,15,3,8,11,13,5,8,5,7,1,8,8,0,14,14,2,1,4,15,11,14,14,1,3,12,12,8,11,5,13,10,5,11,4,12,15,2,4,15,7,15,9,2,3,15,10,10,10,5,11,6,6,7,4,10,10,10,4,12,9,4,11,10,7,7,4,5,7,8,5,13,7,9,0,3,7,4,8,11,13,0,0,5,7,14,15,3,14,14,14,8,12,2,2,14,6,7,8,7,8,5,3,15,15,4,14,8,3,8,1,10,5,3,12,0,6,1,12,10,7,10,1,13,7,6,11,9,5,11,15,1,15,14,6,7,11,2,5,3,9,13,0,9,1,8,10,14,10,6,6,8,15,13,3,15,14,7,1,5,1,8,0,6,1,0,14,9,8,10,9,14,12,5,2,15,5,10,3,7,0,12,7,3,4,5,6,12,3,13,12,12,3,9,5,7,14,8,12,7,2,15,13,10,1,4,13,8,15,13,0,4,13,0,7,12,3,7,9,2,7,9,3,8,5,6,4,0,2,2,0,7,15,14,6,5,4,15,5,11,0,14,14,9,4,3,11,5,12,15,15,3,13,9,3,8,8,15,4,3,10,5,14,13,5,15,13,0,0,13,2,9,1,15,14,14,4,6,7,10,8,6,4,2,7,0,15,7,12,2,11,7,14,3,7,2,10,15,12,3,9,4,7,5,12,14,8,5,4,9,9,0,14,4,1,15,5,5,11,1,13,6,0,10,3,8,3,7,4,4,7,9,0,5,11,11,11,12,13,1,9,0,13,9,14,0,15,2,14,14,9,1,9,11,13,7,12,2,9,10,2,10,7,1,5,13,3,8,4,9,1,2,3,3,15,3,6,3,2,14,13,10,9,2,1,4,12,2,7,1,14,6,13,5,1,2,9,4,9,14,6,3,13,9,13,3,6,10,13,9,9,6,1,13,11,12,14,5,12,9,1,8,9,1,2,2,14,8,1,9,10,3,4,7,12,5,7,13,15,12,11,10,14,2,10,10,5,14,0,11,1,6,0,12,3,14,3,14,2,9,1,13,0,1,0,3,13,7,3,9,14,11,10,10,11,5,9,2,15,11,14,10,2,3,1,7,1,8,10,12,11,9,11,15,6,7,7,13,0,15,14,13,9,11,3,8,14,3,7,3,9,0,7,9,3,14,8,8,4,9,8,1,11,4,2,7,9,6,2,9,5,3,10,12,11,8,14,11,8,0,10,0,3,14,8,4,12,9,3,11,5,13,7,10,6,11,10,5,15,14,4,7,0,12,12,15,14,12,7,1,5,15,9,15,15,0,8,8,8,9,2,3,7,8,10,2,14,1,1,8,0,2,15,12,5,5,1,5,13,2,12,10,11,3,5,5,11,9,14,2,4,0,3,8,14,14,11,0,5,4,5,13,6,4,12,6,8,3,0,0,12,11,0,6,0,7,14,12,2,0,11,12,6,2,3,15,5,9,4,14,0,10,11,11,11,10,7,4,9,12,11,0,0,10,12,2,4,5,8,12,1,6,2,6,14,11,9,8,9,13,11,5,12,15,2,15,13,8,14,2,14,2,15,5,4,5,6,8,15,2,6,2,5,2,1,11,12,3,13,13,15,14,7,6,13,2,2,1,11,9,0,11,3,9,15,2,13,11,4,12,15,7,1,11,8,12,11,0,13,14,6,8,14,6,1,7,7,6,8,11,7,9,12,9,8,7,3,10,0,2,0,7,3,12,7,10,4,12,5,12,1,9,8,0,12,3,1,7,14,3,13,5,9,11,5,13,11,8,10,7,1,13,10,6,15,7,6,2,10,12,2,12,10,7,13,10,5,5,4,8,8,13,4,7,13,3,8,7,4,6,2,12,12,15,6,4,0,1,2,4,14,4,6,14,8,12,7,12,10,4,13,8,1,9,6,6,15,7,2,7,11,12,2,8,1,15,3,13,8,7,5,5,9,6,8,6,2,7,3,2,10,7,0,4,4,11,10,2,14,5,8,11,9,14,3,0,4,3,6,5,9,2,0,14,0,2,5,11,14,4,8,2,13,7,6,8,7,6,0,2,5,0,4,0,6,13,4,0,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"1\", \"13\", \"0\", \"1\"], \"clip_start\": 564.0, \"clip_end\": 569.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q6_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,13,1,10,1,7,9,13,9,4,9,11,6,2,9,6,2,3,2,4,8,0,8,8,9,14,11,3,11,4,6,0,10,2,15,12,6,6,2,15,6,9,11,12,14,10,11,1,14,9,6,11,8,14,15,1,9,11,13,1,7,6,9,13,6,3,14,5,0,8,4,6,11,4,5,3,10,4,11,5,13,5,5,5,0,14,9,13,3,10,4,3,7,6,8,11,9,13,14,13,10,12,13,5,12,15,3,8,11,13,5,8,5,7,1,8,8,0,14,14,2,1,4,15,11,14,14,1,3,12,12,8,11,5,13,10,5,11,4,12,15,2,4,15,7,15,9,2,3,15,10,10,10,5,11,6,6,7,4,10,10,10,4,12,9,4,11,10,7,7,4,5,7,8,5,13,7,9,0,3,7,4,8,11,13,0,0,5,7,14,15,3,14,14,14,8,12,2,2,14,6,7,8,7,8,5,3,15,15,4,14,8,3,8,1,10,5,3,12,0,6,1,12,10,7,10,1,13,7,6,11,9,5,11,15,1,15,14,6,7,11,2,5,3,9,13,0,9,1,8,10,14,10,6,6,8,15,13,3,15,14,7,1,5,1,8,0,6,1,0,14,9,8,10,9,14,12,5,2,15,5,10,3,7,0,12,7,3,4,5,6,12,3,13,12,12,3,9,5,7,14,8,12,7,2,15,13,10,1,4,13,8,15,13,0,4,13,0,7,12,3,7,9,2,7,9,3,8,5,6,4,0,2,2,0,7,15,14,6,5,4,15,5,11,0,14,14,9,4,3,11,5,12,15,15,3,13,9,3,8,8,15,4,3,10,5,14,13,5,15,13,0,0,13,2,9,1,15,14,14,4,6,7,10,8,6,4,2,7,0,15,7,12,2,11,7,14,3,7,2,10,15,12,3,9,4,7,5,12,14,8,5,4,9,9,0,14,4,1,15,5,5,11,1,13,6,0,10,3,8,3,7,4,4,7,9,0,5,11,11,11,12,13,1,9,0,13,9,14,0,15,2,14,14,9,1,9,11,13,7,12,2,9,10,2,10,7,1,5,13,3,8,4,9,1,2,3,3,15,3,6,3,2,14,13,10,9,2,1,4,12,2,7,1,14,6,13,5,1,2,9,4,9,14,6,3,13,9,13,3,6,10,13,9,9,6,1,13,11,12,14,5,12,9,1,8,9,1,2,2,14,8,1,9,10,3,4,7,12,5,7,13,15,12,11,10,14,2,10,10,5,14,0,11,1,6,0,12,3,14,3,14,2,9,1,13,0,1,0,3,13,7,3,9,14,11,10,10,11,5,9,2,15,11,14,10,2,3,1,7,1,8,10,12,11,9,11,15,6,7,7,13,0,15,14,13,9,11,3,8,14,3,7,3,9,0,7,9,3,14,8,8,4,9,8,1,11,4,2,7,9,6,2,9,5,3,10,12,11,8,14,11,8,0,10,0,3,14,8,4,12,9,3,11,5,13,7,10,6,11,10,5,15,14,4,7,0,12,12,15,14,12,7,1,5,15,9,15,15,0,8,8,8,9,2,3,7,8,10,2,14,1,1,8,0,2,15,12,5,5,1,5,13,2,12,10,11,3,5,5,11,9,14,2,4,0,3,8,14,14,11,0,5,4,5,13,6,4,12,6,8,3,0,0,12,11,0,6,0,7,14,12,2,0,11,12,6,2,3,15,5,9,4,14,0,10,11,11,11,10,7,4,9,12,11,0,0,10,12,2,4,5,8,12,1,6,2,6,14,11,9,8,9,13,11,5,12,15,2,15,13,8,14,2,14,2,15,5,4,5,6,8,15,2,6,2,5,2,1,11,12,3,13,13,15,14,7,6,13,2,2,1,11,9,0,11,3,9,15,2,13,11,4,12,15,7,1,11,8,12,11,0,13,14,6,8,14,6,1,7,7,6,8,11,7,9,12,9,8,7,3,10,0,2,0,7,3,12,7,10,4,12,5,12,1,9,8,0,12,3,1,7,14,3,13,5,9,11,5,13,11,8,10,7,1,13,10,6,15,7,6,2,10,12,2,12,10,7,13,10,5,5,4,8,8,13,4,7,13,3,8,7,4,6,2,12,12,15,6,4,0,1,2,4,14,4,6,14,8,12,7,12,10,4,13,8,1,9,6,6,15,7,2,7,11,12,2,8,1,15,3,13,8,7,5,5,9,6,8,6,2,7,3,2,10,7,0,4,4,11,10,2,14,5,8,11,9,14,3,0,4,3,6,5,9,2,0,14,0,2,5,11,14,4,8,2,13,7,6,8,7,6,0,2,5,0,4,0,6,13,4,0,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"1\", \"10\", \"1\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q7_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,13,1,10,1,7,9,13,9,4,9,11,6,2,9,6,2,3,2,4,8,0,8,8,9,14,11,3,11,4,6,0,10,2,15,12,6,6,2,15,6,9,11,12,14,10,11,1,14,9,6,11,8,14,15,1,9,11,13,1,7,6,9,13,6,3,14,5,0,8,4,6,11,4,5,3,10,4,11,5,13,5,5,5,0,14,9,13,3,10,4,3,7,6,8,11,9,13,14,13,10,12,13,5,12,15,3,8,11,13,5,8,5,7,1,8,8,0,14,14,2,1,4,15,11,14,14,1,3,12,12,8,11,5,13,10,5,11,4,12,15,2,4,15,7,15,9,2,3,15,10,10,10,5,11,6,6,7,4,10,10,10,4,12,9,4,11,10,7,7,4,5,7,8,5,13,7,9,0,3,7,4,8,11,13,0,0,5,7,14,15,3,14,14,14,8,12,2,2,14,6,7,8,7,8,5,3,15,15,4,14,8,3,8,1,10,5,3,12,0,6,1,12,10,7,10,1,13,7,6,11,9,5,11,15,1,15,14,6,7,11,2,5,3,9,13,0,9,1,8,10,14,10,6,6,8,15,13,3,15,14,7,1,5,1,8,0,6,1,0,14,9,8,10,9,14,12,5,2,15,5,10,3,7,0,12,7,3,4,5,6,12,3,13,12,12,3,9,5,7,14,8,12,7,2,15,13,10,1,4,13,8,15,13,0,4,13,0,7,12,3,7,9,2,7,9,3,8,5,6,4,0,2,2,0,7,15,14,6,5,4,15,5,11,0,14,14,9,4,3,11,5,12,15,15,3,13,9,3,8,8,15,4,3,10,5,14,13,5,15,13,0,0,13,2,9,1,15,14,14,4,6,7,10,8,6,4,2,7,0,15,7,12,2,11,7,14,3,7,2,10,15,12,3,9,4,7,5,12,14,8,5,4,9,9,0,14,4,1,15,5,5,11,1,13,6,0,10,3,8,3,7,4,4,7,9,0,5,11,11,11,12,13,1,9,0,13,9,14,0,15,2,14,14,9,1,9,11,13,7,12,2,9,10,2,10,7,1,5,13,3,8,4,9,1,2,3,3,15,3,6,3,2,14,13,10,9,2,1,4,12,2,7,1,14,6,13,5,1,2,9,4,9,14,6,3,13,9,13,3,6,10,13,9,9,6,1,13,11,12,14,5,12,9,1,8,9,1,2,2,14,8,1,9,10,3,4,7,12,5,7,13,15,12,11,10,14,2,10,10,5,14,0,11,1,6,0,12,3,14,3,14,2,9,1,13,0,1,0,3,13,7,3,9,14,11,10,10,11,5,9,2,15,11,14,10,2,3,1,7,1,8,10,12,11,9,11,15,6,7,7,13,0,15,14,13,9,11,3,8,14,3,7,3,9,0,7,9,3,14,8,8,4,9,8,1,11,4,2,7,9,6,2,9,5,3,10,12,11,8,14,11,8,0,10,0,3,14,8,4,12,9,3,11,5,13,7,10,6,11,10,5,15,14,4,7,0,12,12,15,14,12,7,1,5,15,9,15,15,0,8,8,8,9,2,3,7,8,10,2,14,1,1,8,0,2,15,12,5,5,1,5,13,2,12,10,11,3,5,5,11,9,14,2,4,0,3,8,14,14,11,0,5,4,5,13,6,4,12,6,8,3,0,0,12,11,0,6,0,7,14,12,2,0,11,12,6,2,3,15,5,9,4,14,0,10,11,11,11,10,7,4,9,12,11,0,0,10,12,2,4,5,8,12,1,6,2,6,14,11,9,8,9,13,11,5,12,15,2,15,13,8,14,2,14,2,15,5,4,5,6,8,15,2,6,2,5,2,1,11,12,3,13,13,15,14,7,6,13,2,2,1,11,9,0,11,3,9,15,2,13,11,4,12,15,7,1,11,8,12,11,0,13,14,6,8,14,6,1,7,7,6,8,11,7,9,12,9,8,7,3,10,0,2,0,7,3,12,7,10,4,12,5,12,1,9,8,0,12,3,1,7,14,3,13,5,9,11,5,13,11,8,10,7,1,13,10,6,15,7,6,2,10,12,2,12,10,7,13,10,5,5,4,8,8,13,4,7,13,3,8,7,4,6,2,12,12,15,6,4,0,1,2,4,14,4,6,14,8,12,7,12,10,4,13,8,1,9,6,6,15,7,2,7,11,12,2,8,1,15,3,13,8,7,5,5,9,6,8,6,2,7,3,2,10,7,0,4,4,11,10,2,14,5,8,11,9,14,3,0,4,3,6,5,9,2,0,14,0,2,5,11,14,4,8,2,13,7,6,8,7,6,0,2,5,0,4,0,6,13,4,0,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"6\", \"13\"], \"clip_start\": 816.0, \"clip_end\": 820.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q8_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,13,1,10,1,7,9,13,9,4,9,11,6,2,9,6,2,3,2,4,8,0,8,8,9,14,11,3,11,4,6,0,10,2,15,12,6,6,2,15,6,9,11,12,14,10,11,1,14,9,6,11,8,14,15,1,9,11,13,1,7,6,9,13,6,3,14,5,0,8,4,6,11,4,5,3,10,4,11,5,13,5,5,5,0,14,9,13,3,10,4,3,7,6,8,11,9,13,14,13,10,12,13,5,12,15,3,8,11,13,5,8,5,7,1,8,8,0,14,14,2,1,4,15,11,14,14,1,3,12,12,8,11,5,13,10,5,11,4,12,15,2,4,15,7,15,9,2,3,15,10,10,10,5,11,6,6,7,4,10,10,10,4,12,9,4,11,10,7,7,4,5,7,8,5,13,7,9,0,3,7,4,8,11,13,0,0,5,7,14,15,3,14,14,14,8,12,2,2,14,6,7,8,7,8,5,3,15,15,4,14,8,3,8,1,10,5,3,12,0,6,1,12,10,7,10,1,13,7,6,11,9,5,11,15,1,15,14,6,7,11,2,5,3,9,13,0,9,1,8,10,14,10,6,6,8,15,13,3,15,14,7,1,5,1,8,0,6,1,0,14,9,8,10,9,14,12,5,2,15,5,10,3,7,0,12,7,3,4,5,6,12,3,13,12,12,3,9,5,7,14,8,12,7,2,15,13,10,1,4,13,8,15,13,0,4,13,0,7,12,3,7,9,2,7,9,3,8,5,6,4,0,2,2,0,7,15,14,6,5,4,15,5,11,0,14,14,9,4,3,11,5,12,15,15,3,13,9,3,8,8,15,4,3,10,5,14,13,5,15,13,0,0,13,2,9,1,15,14,14,4,6,7,10,8,6,4,2,7,0,15,7,12,2,11,7,14,3,7,2,10,15,12,3,9,4,7,5,12,14,8,5,4,9,9,0,14,4,1,15,5,5,11,1,13,6,0,10,3,8,3,7,4,4,7,9,0,5,11,11,11,12,13,1,9,0,13,9,14,0,15,2,14,14,9,1,9,11,13,7,12,2,9,10,2,10,7,1,5,13,3,8,4,9,1,2,3,3,15,3,6,3,2,14,13,10,9,2,1,4,12,2,7,1,14,6,13,5,1,2,9,4,9,14,6,3,13,9,13,3,6,10,13,9,9,6,1,13,11,12,14,5,12,9,1,8,9,1,2,2,14,8,1,9,10,3,4,7,12,5,7,13,15,12,11,10,14,2,10,10,5,14,0,11,1,6,0,12,3,14,3,14,2,9,1,13,0,1,0,3,13,7,3,9,14,11,10,10,11,5,9,2,15,11,14,10,2,3,1,7,1,8,10,12,11,9,11,15,6,7,7,13,0,15,14,13,9,11,3,8,14,3,7,3,9,0,7,9,3,14,8,8,4,9,8,1,11,4,2,7,9,6,2,9,5,3,10,12,11,8,14,11,8,0,10,0,3,14,8,4,12,9,3,11,5,13,7,10,6,11,10,5,15,14,4,7,0,12,12,15,14,12,7,1,5,15,9,15,15,0,8,8,8,9,2,3,7,8,10,2,14,1,1,8,0,2,15,12,5,5,1,5,13,2,12,10,11,3,5,5,11,9,14,2,4,0,3,8,14,14,11,0,5,4,5,13,6,4,12,6,8,3,0,0,12,11,0,6,0,7,14,12,2,0,11,12,6,2,3,15,5,9,4,14,0,10,11,11,11,10,7,4,9,12,11,0,0,10,12,2,4,5,8,12,1,6,2,6,14,11,9,8,9,13,11,5,12,15,2,15,13,8,14,2,14,2,15,5,4,5,6,8,15,2,6,2,5,2,1,11,12,3,13,13,15,14,7,6,13,2,2,1,11,9,0,11,3,9,15,2,13,11,4,12,15,7,1,11,8,12,11,0,13,14,6,8,14,6,1,7,7,6,8,11,7,9,12,9,8,7,3,10,0,2,0,7,3,12,7,10,4,12,5,12,1,9,8,0,12,3,1,7,14,3,13,5,9,11,5,13,11,8,10,7,1,13,10,6,15,7,6,2,10,12,2,12,10,7,13,10,5,5,4,8,8,13,4,7,13,3,8,7,4,6,2,12,12,15,6,4,0,1,2,4,14,4,6,14,8,12,7,12,10,4,13,8,1,9,6,6,15,7,2,7,11,12,2,8,1,15,3,13,8,7,5,5,9,6,8,6,2,7,3,2,10,7,0,4,4,11,10,2,14,5,8,11,9,14,3,0,4,3,6,5,9,2,0,14,0,2,5,11,14,4,8,2,13,7,6,8,7,6,0,2,5,0,4,0,6,13,4,0,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"13\", \"3\", \"10\", \"4\"], \"clip_start\": 86.0, \"clip_end\": 92.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q9_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,13,1,10,1,7,9,13,9,4,9,11,6,2,9,6,2,3,2,4,8,0,8,8,9,14,11,3,11,4,6,0,10,2,15,12,6,6,2,15,6,9,11,12,14,10,11,1,14,9,6,11,8,14,15,1,9,11,13,1,7,6,9,13,6,3,14,5,0,8,4,6,11,4,5,3,10,4,11,5,13,5,5,5,0,14,9,13,3,10,4,3,7,6,8,11,9,13,14,13,10,12,13,5,12,15,3,8,11,13,5,8,5,7,1,8,8,0,14,14,2,1,4,15,11,14,14,1,3,12,12,8,11,5,13,10,5,11,4,12,15,2,4,15,7,15,9,2,3,15,10,10,10,5,11,6,6,7,4,10,10,10,4,12,9,4,11,10,7,7,4,5,7,8,5,13,7,9,0,3,7,4,8,11,13,0,0,5,7,14,15,3,14,14,14,8,12,2,2,14,6,7,8,7,8,5,3,15,15,4,14,8,3,8,1,10,5,3,12,0,6,1,12,10,7,10,1,13,7,6,11,9,5,11,15,1,15,14,6,7,11,2,5,3,9,13,0,9,1,8,10,14,10,6,6,8,15,13,3,15,14,7,1,5,1,8,0,6,1,0,14,9,8,10,9,14,12,5,2,15,5,10,3,7,0,12,7,3,4,5,6,12,3,13,12,12,3,9,5,7,14,8,12,7,2,15,13,10,1,4,13,8,15,13,0,4,13,0,7,12,3,7,9,2,7,9,3,8,5,6,4,0,2,2,0,7,15,14,6,5,4,15,5,11,0,14,14,9,4,3,11,5,12,15,15,3,13,9,3,8,8,15,4,3,10,5,14,13,5,15,13,0,0,13,2,9,1,15,14,14,4,6,7,10,8,6,4,2,7,0,15,7,12,2,11,7,14,3,7,2,10,15,12,3,9,4,7,5,12,14,8,5,4,9,9,0,14,4,1,15,5,5,11,1,13,6,0,10,3,8,3,7,4,4,7,9,0,5,11,11,11,12,13,1,9,0,13,9,14,0,15,2,14,14,9,1,9,11,13,7,12,2,9,10,2,10,7,1,5,13,3,8,4,9,1,2,3,3,15,3,6,3,2,14,13,10,9,2,1,4,12,2,7,1,14,6,13,5,1,2,9,4,9,14,6,3,13,9,13,3,6,10,13,9,9,6,1,13,11,12,14,5,12,9,1,8,9,1,2,2,14,8,1,9,10,3,4,7,12,5,7,13,15,12,11,10,14,2,10,10,5,14,0,11,1,6,0,12,3,14,3,14,2,9,1,13,0,1,0,3,13,7,3,9,14,11,10,10,11,5,9,2,15,11,14,10,2,3,1,7,1,8,10,12,11,9,11,15,6,7,7,13,0,15,14,13,9,11,3,8,14,3,7,3,9,0,7,9,3,14,8,8,4,9,8,1,11,4,2,7,9,6,2,9,5,3,10,12,11,8,14,11,8,0,10,0,3,14,8,4,12,9,3,11,5,13,7,10,6,11,10,5,15,14,4,7,0,12,12,15,14,12,7,1,5,15,9,15,15,0,8,8,8,9,2,3,7,8,10,2,14,1,1,8,0,2,15,12,5,5,1,5,13,2,12,10,11,3,5,5,11,9,14,2,4,0,3,8,14,14,11,0,5,4,5,13,6,4,12,6,8,3,0,0,12,11,0,6,0,7,14,12,2,0,11,12,6,2,3,15,5,9,4,14,0,10,11,11,11,10,7,4,9,12,11,0,0,10,12,2,4,5,8,12,1,6,2,6,14,11,9,8,9,13,11,5,12,15,2,15,13,8,14,2,14,2,15,5,4,5,6,8,15,2,6,2,5,2,1,11,12,3,13,13,15,14,7,6,13,2,2,1,11,9,0,11,3,9,15,2,13,11,4,12,15,7,1,11,8,12,11,0,13,14,6,8,14,6,1,7,7,6,8,11,7,9,12,9,8,7,3,10,0,2,0,7,3,12,7,10,4,12,5,12,1,9,8,0,12,3,1,7,14,3,13,5,9,11,5,13,11,8,10,7,1,13,10,6,15,7,6,2,10,12,2,12,10,7,13,10,5,5,4,8,8,13,4,7,13,3,8,7,4,6,2,12,12,15,6,4,0,1,2,4,14,4,6,14,8,12,7,12,10,4,13,8,1,9,6,6,15,7,2,7,11,12,2,8,1,15,3,13,8,7,5,5,9,6,8,6,2,7,3,2,10,7,0,4,4,11,10,2,14,5,8,11,9,14,3,0,4,3,6,5,9,2,0,14,0,2,5,11,14,4,8,2,13,7,6,8,7,6,0,2,5,0,4,0,6,13,4,0,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"1\", \"7\"], \"clip_start\": 238.0, \"clip_end\": 241.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,13,1,10,1,7,9,13,9,4,9,11,6,2,9,6,2,3,2,4,8,0,8,8,9,14,11,3,11,4,6,0,10,2,15,12,6,6,2,15,6,9,11,12,14,10,11,1,14,9,6,11,8,14,15,1,9,11,13,1,7,6,9,13,6,3,14,5,0,8,4,6,11,4,5,3,10,4,11,5,13,5,5,5,0,14,9,13,3,10,4,3,7,6,8,11,9,13,14,13,10,12,13,5,12,15,3,8,11,13,5,8,5,7,1,8,8,0,14,14,2,1,4,15,11,14,14,1,3,12,12,8,11,5,13,10,5,11,4,12,15,2,4,15,7,15,9,2,3,15,10,10,10,5,11,6,6,7,4,10,10,10,4,12,9,4,11,10,7,7,4,5,7,8,5,13,7,9,0,3,7,4,8,11,13,0,0,5,7,14,15,3,14,14,14,8,12,2,2,14,6,7,8,7,8,5,3,15,15,4,14,8,3,8,1,10,5,3,12,0,6,1,12,10,7,10,1,13,7,6,11,9,5,11,15,1,15,14,6,7,11,2,5,3,9,13,0,9,1,8,10,14,10,6,6,8,15,13,3,15,14,7,1,5,1,8,0,6,1,0,14,9,8,10,9,14,12,5,2,15,5,10,3,7,0,12,7,3,4,5,6,12,3,13,12,12,3,9,5,7,14,8,12,7,2,15,13,10,1,4,13,8,15,13,0,4,13,0,7,12,3,7,9,2,7,9,3,8,5,6,4,0,2,2,0,7,15,14,6,5,4,15,5,11,0,14,14,9,4,3,11,5,12,15,15,3,13,9,3,8,8,15,4,3,10,5,14,13,5,15,13,0,0,13,2,9,1,15,14,14,4,6,7,10,8,6,4,2,7,0,15,7,12,2,11,7,14,3,7,2,10,15,12,3,9,4,7,5,12,14,8,5,4,9,9,0,14,4,1,15,5,5,11,1,13,6,0,10,3,8,3,7,4,4,7,9,0,5,11,11,11,12,13,1,9,0,13,9,14,0,15,2,14,14,9,1,9,11,13,7,12,2,9,10,2,10,7,1,5,13,3,8,4,9,1,2,3,3,15,3,6,3,2,14,13,10,9,2,1,4,12,2,7,1,14,6,13,5,1,2,9,4,9,14,6,3,13,9,13,3,6,10,13,9,9,6,1,13,11,12,14,5,12,9,1,8,9,1,2,2,14,8,1,9,10,3,4,7,12,5,7,13,15,12,11,10,14,2,10,10,5,14,0,11,1,6,0,12,3,14,3,14,2,9,1,13,0,1,0,3,13,7,3,9,14,11,10,10,11,5,9,2,15,11,14,10,2,3,1,7,1,8,10,12,11,9,11,15,6,7,7,13,0,15,14,13,9,11,3,8,14,3,7,3,9,0,7,9,3,14,8,8,4,9,8,1,11,4,2,7,9,6,2,9,5,3,10,12,11,8,14,11,8,0,10,0,3,14,8,4,12,9,3,11,5,13,7,10,6,11,10,5,15,14,4,7,0,12,12,15,14,12,7,1,5,15,9,15,15,0,8,8,8,9,2,3,7,8,10,2,14,1,1,8,0,2,15,12,5,5,1,5,13,2,12,10,11,3,5,5,11,9,14,2,4,0,3,8,14,14,11,0,5,4,5,13,6,4,12,6,8,3,0,0,12,11,0,6,0,7,14,12,2,0,11,12,6,2,3,15,5,9,4,14,0,10,11,11,11,10,7,4,9,12,11,0,0,10,12,2,4,5,8,12,1,6,2,6,14,11,9,8,9,13,11,5,12,15,2,15,13,8,14,2,14,2,15,5,4,5,6,8,15,2,6,2,5,2,1,11,12,3,13,13,15,14,7,6,13,2,2,1,11,9,0,11,3,9,15,2,13,11,4,12,15,7,1,11,8,12,11,0,13,14,6,8,14,6,1,7,7,6,8,11,7,9,12,9,8,7,3,10,0,2,0,7,3,12,7,10,4,12,5,12,1,9,8,0,12,3,1,7,14,3,13,5,9,11,5,13,11,8,10,7,1,13,10,6,15,7,6,2,10,12,2,12,10,7,13,10,5,5,4,8,8,13,4,7,13,3,8,7,4,6,2,12,12,15,6,4,0,1,2,4,14,4,6,14,8,12,7,12,10,4,13,8,1,9,6,6,15,7,2,7,11,12,2,8,1,15,3,13,8,7,5,5,9,6,8,6,2,7,3,2,10,7,0,4,4,11,10,2,14,5,8,11,9,14,3,0,4,3,6,5,9,2,0,14,0,2,5,11,14,4,8,2,13,7,6,8,7,6,0,2,5,0,4,0,6,13,4,0,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"0\", \"15\", \"7\", \"12\"], \"clip_start\": 388.0, \"clip_end\": 394.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q11_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,13,1,10,1,7,9,13,9,4,9,11,6,2,9,6,2,3,2,4,8,0,8,8,9,14,11,3,11,4,6,0,10,2,15,12,6,6,2,15,6,9,11,12,14,10,11,1,14,9,6,11,8,14,15,1,9,11,13,1,7,6,9,13,6,3,14,5,0,8,4,6,11,4,5,3,10,4,11,5,13,5,5,5,0,14,9,13,3,10,4,3,7,6,8,11,9,13,14,13,10,12,13,5,12,15,3,8,11,13,5,8,5,7,1,8,8,0,14,14,2,1,4,15,11,14,14,1,3,12,12,8,11,5,13,10,5,11,4,12,15,2,4,15,7,15,9,2,3,15,10,10,10,5,11,6,6,7,4,10,10,10,4,12,9,4,11,10,7,7,4,5,7,8,5,13,7,9,0,3,7,4,8,11,13,0,0,5,7,14,15,3,14,14,14,8,12,2,2,14,6,7,8,7,8,5,3,15,15,4,14,8,3,8,1,10,5,3,12,0,6,1,12,10,7,10,1,13,7,6,11,9,5,11,15,1,15,14,6,7,11,2,5,3,9,13,0,9,1,8,10,14,10,6,6,8,15,13,3,15,14,7,1,5,1,8,0,6,1,0,14,9,8,10,9,14,12,5,2,15,5,10,3,7,0,12,7,3,4,5,6,12,3,13,12,12,3,9,5,7,14,8,12,7,2,15,13,10,1,4,13,8,15,13,0,4,13,0,7,12,3,7,9,2,7,9,3,8,5,6,4,0,2,2,0,7,15,14,6,5,4,15,5,11,0,14,14,9,4,3,11,5,12,15,15,3,13,9,3,8,8,15,4,3,10,5,14,13,5,15,13,0,0,13,2,9,1,15,14,14,4,6,7,10,8,6,4,2,7,0,15,7,12,2,11,7,14,3,7,2,10,15,12,3,9,4,7,5,12,14,8,5,4,9,9,0,14,4,1,15,5,5,11,1,13,6,0,10,3,8,3,7,4,4,7,9,0,5,11,11,11,12,13,1,9,0,13,9,14,0,15,2,14,14,9,1,9,11,13,7,12,2,9,10,2,10,7,1,5,13,3,8,4,9,1,2,3,3,15,3,6,3,2,14,13,10,9,2,1,4,12,2,7,1,14,6,13,5,1,2,9,4,9,14,6,3,13,9,13,3,6,10,13,9,9,6,1,13,11,12,14,5,12,9,1,8,9,1,2,2,14,8,1,9,10,3,4,7,12,5,7,13,15,12,11,10,14,2,10,10,5,14,0,11,1,6,0,12,3,14,3,14,2,9,1,13,0,1,0,3,13,7,3,9,14,11,10,10,11,5,9,2,15,11,14,10,2,3,1,7,1,8,10,12,11,9,11,15,6,7,7,13,0,15,14,13,9,11,3,8,14,3,7,3,9,0,7,9,3,14,8,8,4,9,8,1,11,4,2,7,9,6,2,9,5,3,10,12,11,8,14,11,8,0,10,0,3,14,8,4,12,9,3,11,5,13,7,10,6,11,10,5,15,14,4,7,0,12,12,15,14,12,7,1,5,15,9,15,15,0,8,8,8,9,2,3,7,8,10,2,14,1,1,8,0,2,15,12,5,5,1,5,13,2,12,10,11,3,5,5,11,9,14,2,4,0,3,8,14,14,11,0,5,4,5,13,6,4,12,6,8,3,0,0,12,11,0,6,0,7,14,12,2,0,11,12,6,2,3,15,5,9,4,14,0,10,11,11,11,10,7,4,9,12,11,0,0,10,12,2,4,5,8,12,1,6,2,6,14,11,9,8,9,13,11,5,12,15,2,15,13,8,14,2,14,2,15,5,4,5,6,8,15,2,6,2,5,2,1,11,12,3,13,13,15,14,7,6,13,2,2,1,11,9,0,11,3,9,15,2,13,11,4,12,15,7,1,11,8,12,11,0,13,14,6,8,14,6,1,7,7,6,8,11,7,9,12,9,8,7,3,10,0,2,0,7,3,12,7,10,4,12,5,12,1,9,8,0,12,3,1,7,14,3,13,5,9,11,5,13,11,8,10,7,1,13,10,6,15,7,6,2,10,12,2,12,10,7,13,10,5,5,4,8,8,13,4,7,13,3,8,7,4,6,2,12,12,15,6,4,0,1,2,4,14,4,6,14,8,12,7,12,10,4,13,8,1,9,6,6,15,7,2,7,11,12,2,8,1,15,3,13,8,7,5,5,9,6,8,6,2,7,3,2,10,7,0,4,4,11,10,2,14,5,8,11,9,14,3,0,4,3,6,5,9,2,0,14,0,2,5,11,14,4,8,2,13,7,6,8,7,6,0,2,5,0,4,0,6,13,4,0,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"5\", \"11\", \"4\", \"12\"], \"clip_start\": 135.0, \"clip_end\": 141.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,13,1,10,1,7,9,13,9,4,9,11,6,2,9,6,2,3,2,4,8,0,8,8,9,14,11,3,11,4,6,0,10,2,15,12,6,6,2,15,6,9,11,12,14,10,11,1,14,9,6,11,8,14,15,1,9,11,13,1,7,6,9,13,6,3,14,5,0,8,4,6,11,4,5,3,10,4,11,5,13,5,5,5,0,14,9,13,3,10,4,3,7,6,8,11,9,13,14,13,10,12,13,5,12,15,3,8,11,13,5,8,5,7,1,8,8,0,14,14,2,1,4,15,11,14,14,1,3,12,12,8,11,5,13,10,5,11,4,12,15,2,4,15,7,15,9,2,3,15,10,10,10,5,11,6,6,7,4,10,10,10,4,12,9,4,11,10,7,7,4,5,7,8,5,13,7,9,0,3,7,4,8,11,13,0,0,5,7,14,15,3,14,14,14,8,12,2,2,14,6,7,8,7,8,5,3,15,15,4,14,8,3,8,1,10,5,3,12,0,6,1,12,10,7,10,1,13,7,6,11,9,5,11,15,1,15,14,6,7,11,2,5,3,9,13,0,9,1,8,10,14,10,6,6,8,15,13,3,15,14,7,1,5,1,8,0,6,1,0,14,9,8,10,9,14,12,5,2,15,5,10,3,7,0,12,7,3,4,5,6,12,3,13,12,12,3,9,5,7,14,8,12,7,2,15,13,10,1,4,13,8,15,13,0,4,13,0,7,12,3,7,9,2,7,9,3,8,5,6,4,0,2,2,0,7,15,14,6,5,4,15,5,11,0,14,14,9,4,3,11,5,12,15,15,3,13,9,3,8,8,15,4,3,10,5,14,13,5,15,13,0,0,13,2,9,1,15,14,14,4,6,7,10,8,6,4,2,7,0,15,7,12,2,11,7,14,3,7,2,10,15,12,3,9,4,7,5,12,14,8,5,4,9,9,0,14,4,1,15,5,5,11,1,13,6,0,10,3,8,3,7,4,4,7,9,0,5,11,11,11,12,13,1,9,0,13,9,14,0,15,2,14,14,9,1,9,11,13,7,12,2,9,10,2,10,7,1,5,13,3,8,4,9,1,2,3,3,15,3,6,3,2,14,13,10,9,2,1,4,12,2,7,1,14,6,13,5,1,2,9,4,9,14,6,3,13,9,13,3,6,10,13,9,9,6,1,13,11,12,14,5,12,9,1,8,9,1,2,2,14,8,1,9,10,3,4,7,12,5,7,13,15,12,11,10,14,2,10,10,5,14,0,11,1,6,0,12,3,14,3,14,2,9,1,13,0,1,0,3,13,7,3,9,14,11,10,10,11,5,9,2,15,11,14,10,2,3,1,7,1,8,10,12,11,9,11,15,6,7,7,13,0,15,14,13,9,11,3,8,14,3,7,3,9,0,7,9,3,14,8,8,4,9,8,1,11,4,2,7,9,6,2,9,5,3,10,12,11,8,14,11,8,0,10,0,3,14,8,4,12,9,3,11,5,13,7,10,6,11,10,5,15,14,4,7,0,12,12,15,14,12,7,1,5,15,9,15,15,0,8,8,8,9,2,3,7,8,10,2,14,1,1,8,0,2,15,12,5,5,1,5,13,2,12,10,11,3,5,5,11,9,14,2,4,0,3,8,14,14,11,0,5,4,5,13,6,4,12,6,8,3,0,0,12,11,0,6,0,7,14,12,2,0,11,12,6,2,3,15,5,9,4,14,0,10,11,11,11,10,7,4,9,12,11,0,0,10,12,2,4,5,8,12,1,6,2,6,14,11,9,8,9,13,11,5,12,15,2,15,13,8,14,2,14,2,15,5,4,5,6,8,15,2,6,2,5,2,1,11,12,3,13,13,15,14,7,6,13,2,2,1,11,9,0,11,3,9,15,2,13,11,4,12,15,7,1,11,8,12,11,0,13,14,6,8,14,6,1,7,7,6,8,11,7,9,12,9,8,7,3,10,0,2,0,7,3,12,7,10,4,12,5,12,1,9,8,0,12,3,1,7,14,3,13,5,9,11,5,13,11,8,10,7,1,13,10,6,15,7,6,2,10,12,2,12,10,7,13,10,5,5,4,8,8,13,4,7,13,3,8,7,4,6,2,12,12,15,6,4,0,1,2,4,14,4,6,14,8,12,7,12,10,4,13,8,1,9,6,6,15,7,2,7,11,12,2,8,1,15,3,13,8,7,5,5,9,6,8,6,2,7,3,2,10,7,0,4,4,11,10,2,14,5,8,11,9,14,3,0,4,3,6,5,9,2,0,14,0,2,5,11,14,4,8,2,13,7,6,8,7,6,0,2,5,0,4,0,6,13,4,0,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"3\", \"1\", \"4\"], \"clip_start\": 103.0, \"clip_end\": 108.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q13_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,13,1,10,1,7,9,13,9,4,9,11,6,2,9,6,2,3,2,4,8,0,8,8,9,14,11,3,11,4,6,0,10,2,15,12,6,6,2,15,6,9,11,12,14,10,11,1,14,9,6,11,8,14,15,1,9,11,13,1,7,6,9,13,6,3,14,5,0,8,4,6,11,4,5,3,10,4,11,5,13,5,5,5,0,14,9,13,3,10,4,3,7,6,8,11,9,13,14,13,10,12,13,5,12,15,3,8,11,13,5,8,5,7,1,8,8,0,14,14,2,1,4,15,11,14,14,1,3,12,12,8,11,5,13,10,5,11,4,12,15,2,4,15,7,15,9,2,3,15,10,10,10,5,11,6,6,7,4,10,10,10,4,12,9,4,11,10,7,7,4,5,7,8,5,13,7,9,0,3,7,4,8,11,13,0,0,5,7,14,15,3,14,14,14,8,12,2,2,14,6,7,8,7,8,5,3,15,15,4,14,8,3,8,1,10,5,3,12,0,6,1,12,10,7,10,1,13,7,6,11,9,5,11,15,1,15,14,6,7,11,2,5,3,9,13,0,9,1,8,10,14,10,6,6,8,15,13,3,15,14,7,1,5,1,8,0,6,1,0,14,9,8,10,9,14,12,5,2,15,5,10,3,7,0,12,7,3,4,5,6,12,3,13,12,12,3,9,5,7,14,8,12,7,2,15,13,10,1,4,13,8,15,13,0,4,13,0,7,12,3,7,9,2,7,9,3,8,5,6,4,0,2,2,0,7,15,14,6,5,4,15,5,11,0,14,14,9,4,3,11,5,12,15,15,3,13,9,3,8,8,15,4,3,10,5,14,13,5,15,13,0,0,13,2,9,1,15,14,14,4,6,7,10,8,6,4,2,7,0,15,7,12,2,11,7,14,3,7,2,10,15,12,3,9,4,7,5,12,14,8,5,4,9,9,0,14,4,1,15,5,5,11,1,13,6,0,10,3,8,3,7,4,4,7,9,0,5,11,11,11,12,13,1,9,0,13,9,14,0,15,2,14,14,9,1,9,11,13,7,12,2,9,10,2,10,7,1,5,13,3,8,4,9,1,2,3,3,15,3,6,3,2,14,13,10,9,2,1,4,12,2,7,1,14,6,13,5,1,2,9,4,9,14,6,3,13,9,13,3,6,10,13,9,9,6,1,13,11,12,14,5,12,9,1,8,9,1,2,2,14,8,1,9,10,3,4,7,12,5,7,13,15,12,11,10,14,2,10,10,5,14,0,11,1,6,0,12,3,14,3,14,2,9,1,13,0,1,0,3,13,7,3,9,14,11,10,10,11,5,9,2,15,11,14,10,2,3,1,7,1,8,10,12,11,9,11,15,6,7,7,13,0,15,14,13,9,11,3,8,14,3,7,3,9,0,7,9,3,14,8,8,4,9,8,1,11,4,2,7,9,6,2,9,5,3,10,12,11,8,14,11,8,0,10,0,3,14,8,4,12,9,3,11,5,13,7,10,6,11,10,5,15,14,4,7,0,12,12,15,14,12,7,1,5,15,9,15,15,0,8,8,8,9,2,3,7,8,10,2,14,1,1,8,0,2,15,12,5,5,1,5,13,2,12,10,11,3,5,5,11,9,14,2,4,0,3,8,14,14,11,0,5,4,5,13,6,4,12,6,8,3,0,0,12,11,0,6,0,7,14,12,2,0,11,12,6,2,3,15,5,9,4,14,0,10,11,11,11,10,7,4,9,12,11,0,0,10,12,2,4,5,8,12,1,6,2,6,14,11,9,8,9,13,11,5,12,15,2,15,13,8,14,2,14,2,15,5,4,5,6,8,15,2,6,2,5,2,1,11,12,3,13,13,15,14,7,6,13,2,2,1,11,9,0,11,3,9,15,2,13,11,4,12,15,7,1,11,8,12,11,0,13,14,6,8,14,6,1,7,7,6,8,11,7,9,12,9,8,7,3,10,0,2,0,7,3,12,7,10,4,12,5,12,1,9,8,0,12,3,1,7,14,3,13,5,9,11,5,13,11,8,10,7,1,13,10,6,15,7,6,2,10,12,2,12,10,7,13,10,5,5,4,8,8,13,4,7,13,3,8,7,4,6,2,12,12,15,6,4,0,1,2,4,14,4,6,14,8,12,7,12,10,4,13,8,1,9,6,6,15,7,2,7,11,12,2,8,1,15,3,13,8,7,5,5,9,6,8,6,2,7,3,2,10,7,0,4,4,11,10,2,14,5,8,11,9,14,3,0,4,3,6,5,9,2,0,14,0,2,5,11,14,4,8,2,13,7,6,8,7,6,0,2,5,0,4,0,6,13,4,0,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"12\"], \"clip_start\": 762.0, \"clip_end\": 765.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q14_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,13,1,10,1,7,9,13,9,4,9,11,6,2,9,6,2,3,2,4,8,0,8,8,9,14,11,3,11,4,6,0,10,2,15,12,6,6,2,15,6,9,11,12,14,10,11,1,14,9,6,11,8,14,15,1,9,11,13,1,7,6,9,13,6,3,14,5,0,8,4,6,11,4,5,3,10,4,11,5,13,5,5,5,0,14,9,13,3,10,4,3,7,6,8,11,9,13,14,13,10,12,13,5,12,15,3,8,11,13,5,8,5,7,1,8,8,0,14,14,2,1,4,15,11,14,14,1,3,12,12,8,11,5,13,10,5,11,4,12,15,2,4,15,7,15,9,2,3,15,10,10,10,5,11,6,6,7,4,10,10,10,4,12,9,4,11,10,7,7,4,5,7,8,5,13,7,9,0,3,7,4,8,11,13,0,0,5,7,14,15,3,14,14,14,8,12,2,2,14,6,7,8,7,8,5,3,15,15,4,14,8,3,8,1,10,5,3,12,0,6,1,12,10,7,10,1,13,7,6,11,9,5,11,15,1,15,14,6,7,11,2,5,3,9,13,0,9,1,8,10,14,10,6,6,8,15,13,3,15,14,7,1,5,1,8,0,6,1,0,14,9,8,10,9,14,12,5,2,15,5,10,3,7,0,12,7,3,4,5,6,12,3,13,12,12,3,9,5,7,14,8,12,7,2,15,13,10,1,4,13,8,15,13,0,4,13,0,7,12,3,7,9,2,7,9,3,8,5,6,4,0,2,2,0,7,15,14,6,5,4,15,5,11,0,14,14,9,4,3,11,5,12,15,15,3,13,9,3,8,8,15,4,3,10,5,14,13,5,15,13,0,0,13,2,9,1,15,14,14,4,6,7,10,8,6,4,2,7,0,15,7,12,2,11,7,14,3,7,2,10,15,12,3,9,4,7,5,12,14,8,5,4,9,9,0,14,4,1,15,5,5,11,1,13,6,0,10,3,8,3,7,4,4,7,9,0,5,11,11,11,12,13,1,9,0,13,9,14,0,15,2,14,14,9,1,9,11,13,7,12,2,9,10,2,10,7,1,5,13,3,8,4,9,1,2,3,3,15,3,6,3,2,14,13,10,9,2,1,4,12,2,7,1,14,6,13,5,1,2,9,4,9,14,6,3,13,9,13,3,6,10,13,9,9,6,1,13,11,12,14,5,12,9,1,8,9,1,2,2,14,8,1,9,10,3,4,7,12,5,7,13,15,12,11,10,14,2,10,10,5,14,0,11,1,6,0,12,3,14,3,14,2,9,1,13,0,1,0,3,13,7,3,9,14,11,10,10,11,5,9,2,15,11,14,10,2,3,1,7,1,8,10,12,11,9,11,15,6,7,7,13,0,15,14,13,9,11,3,8,14,3,7,3,9,0,7,9,3,14,8,8,4,9,8,1,11,4,2,7,9,6,2,9,5,3,10,12,11,8,14,11,8,0,10,0,3,14,8,4,12,9,3,11,5,13,7,10,6,11,10,5,15,14,4,7,0,12,12,15,14,12,7,1,5,15,9,15,15,0,8,8,8,9,2,3,7,8,10,2,14,1,1,8,0,2,15,12,5,5,1,5,13,2,12,10,11,3,5,5,11,9,14,2,4,0,3,8,14,14,11,0,5,4,5,13,6,4,12,6,8,3,0,0,12,11,0,6,0,7,14,12,2,0,11,12,6,2,3,15,5,9,4,14,0,10,11,11,11,10,7,4,9,12,11,0,0,10,12,2,4,5,8,12,1,6,2,6,14,11,9,8,9,13,11,5,12,15,2,15,13,8,14,2,14,2,15,5,4,5,6,8,15,2,6,2,5,2,1,11,12,3,13,13,15,14,7,6,13,2,2,1,11,9,0,11,3,9,15,2,13,11,4,12,15,7,1,11,8,12,11,0,13,14,6,8,14,6,1,7,7,6,8,11,7,9,12,9,8,7,3,10,0,2,0,7,3,12,7,10,4,12,5,12,1,9,8,0,12,3,1,7,14,3,13,5,9,11,5,13,11,8,10,7,1,13,10,6,15,7,6,2,10,12,2,12,10,7,13,10,5,5,4,8,8,13,4,7,13,3,8,7,4,6,2,12,12,15,6,4,0,1,2,4,14,4,6,14,8,12,7,12,10,4,13,8,1,9,6,6,15,7,2,7,11,12,2,8,1,15,3,13,8,7,5,5,9,6,8,6,2,7,3,2,10,7,0,4,4,11,10,2,14,5,8,11,9,14,3,0,4,3,6,5,9,2,0,14,0,2,5,11,14,4,8,2,13,7,6,8,7,6,0,2,5,0,4,0,6,13,4,0,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"5\", \"5\", \"1\"], \"clip_start\": 697.0, \"clip_end\": 702.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q15_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,13,1,10,1,7,9,13,9,4,9,11,6,2,9,6,2,3,2,4,8,0,8,8,9,14,11,3,11,4,6,0,10,2,15,12,6,6,2,15,6,9,11,12,14,10,11,1,14,9,6,11,8,14,15,1,9,11,13,1,7,6,9,13,6,3,14,5,0,8,4,6,11,4,5,3,10,4,11,5,13,5,5,5,0,14,9,13,3,10,4,3,7,6,8,11,9,13,14,13,10,12,13,5,12,15,3,8,11,13,5,8,5,7,1,8,8,0,14,14,2,1,4,15,11,14,14,1,3,12,12,8,11,5,13,10,5,11,4,12,15,2,4,15,7,15,9,2,3,15,10,10,10,5,11,6,6,7,4,10,10,10,4,12,9,4,11,10,7,7,4,5,7,8,5,13,7,9,0,3,7,4,8,11,13,0,0,5,7,14,15,3,14,14,14,8,12,2,2,14,6,7,8,7,8,5,3,15,15,4,14,8,3,8,1,10,5,3,12,0,6,1,12,10,7,10,1,13,7,6,11,9,5,11,15,1,15,14,6,7,11,2,5,3,9,13,0,9,1,8,10,14,10,6,6,8,15,13,3,15,14,7,1,5,1,8,0,6,1,0,14,9,8,10,9,14,12,5,2,15,5,10,3,7,0,12,7,3,4,5,6,12,3,13,12,12,3,9,5,7,14,8,12,7,2,15,13,10,1,4,13,8,15,13,0,4,13,0,7,12,3,7,9,2,7,9,3,8,5,6,4,0,2,2,0,7,15,14,6,5,4,15,5,11,0,14,14,9,4,3,11,5,12,15,15,3,13,9,3,8,8,15,4,3,10,5,14,13,5,15,13,0,0,13,2,9,1,15,14,14,4,6,7,10,8,6,4,2,7,0,15,7,12,2,11,7,14,3,7,2,10,15,12,3,9,4,7,5,12,14,8,5,4,9,9,0,14,4,1,15,5,5,11,1,13,6,0,10,3,8,3,7,4,4,7,9,0,5,11,11,11,12,13,1,9,0,13,9,14,0,15,2,14,14,9,1,9,11,13,7,12,2,9,10,2,10,7,1,5,13,3,8,4,9,1,2,3,3,15,3,6,3,2,14,13,10,9,2,1,4,12,2,7,1,14,6,13,5,1,2,9,4,9,14,6,3,13,9,13,3,6,10,13,9,9,6,1,13,11,12,14,5,12,9,1,8,9,1,2,2,14,8,1,9,10,3,4,7,12,5,7,13,15,12,11,10,14,2,10,10,5,14,0,11,1,6,0,12,3,14,3,14,2,9,1,13,0,1,0,3,13,7,3,9,14,11,10,10,11,5,9,2,15,11,14,10,2,3,1,7,1,8,10,12,11,9,11,15,6,7,7,13,0,15,14,13,9,11,3,8,14,3,7,3,9,0,7,9,3,14,8,8,4,9,8,1,11,4,2,7,9,6,2,9,5,3,10,12,11,8,14,11,8,0,10,0,3,14,8,4,12,9,3,11,5,13,7,10,6,11,10,5,15,14,4,7,0,12,12,15,14,12,7,1,5,15,9,15,15,0,8,8,8,9,2,3,7,8,10,2,14,1,1,8,0,2,15,12,5,5,1,5,13,2,12,10,11,3,5,5,11,9,14,2,4,0,3,8,14,14,11,0,5,4,5,13,6,4,12,6,8,3,0,0,12,11,0,6,0,7,14,12,2,0,11,12,6,2,3,15,5,9,4,14,0,10,11,11,11,10,7,4,9,12,11,0,0,10,12,2,4,5,8,12,1,6,2,6,14,11,9,8,9,13,11,5,12,15,2,15,13,8,14,2,14,2,15,5,4,5,6,8,15,2,6,2,5,2,1,11,12,3,13,13,15,14,7,6,13,2,2,1,11,9,0,11,3,9,15,2,13,11,4,12,15,7,1,11,8,12,11,0,13,14,6,8,14,6,1,7,7,6,8,11,7,9,12,9,8,7,3,10,0,2,0,7,3,12,7,10,4,12,5,12,1,9,8,0,12,3,1,7,14,3,13,5,9,11,5,13,11,8,10,7,1,13,10,6,15,7,6,2,10,12,2,12,10,7,13,10,5,5,4,8,8,13,4,7,13,3,8,7,4,6,2,12,12,15,6,4,0,1,2,4,14,4,6,14,8,12,7,12,10,4,13,8,1,9,6,6,15,7,2,7,11,12,2,8,1,15,3,13,8,7,5,5,9,6,8,6,2,7,3,2,10,7,0,4,4,11,10,2,14,5,8,11,9,14,3,0,4,3,6,5,9,2,0,14,0,2,5,11,14,4,8,2,13,7,6,8,7,6,0,2,5,0,4,0,6,13,4,0,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"5\", \"4\", \"12\", \"3\", \"9\"], \"clip_start\": 448.0, \"clip_end\": 454.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,14,15,4,8,15,2,1,2,11,12,4,6,5,11,11,10,14,4,0,7,8,2,10,5,3,4,3,5,4,6,14,5,5,8,4,11,15,3,5,2,1,5,4,5,15,10,0,11,5,6,15,0,1,6,6,13,8,7,5,12,10,10,3,8,1,15,9,12,1,14,0,10,15,3,15,3,6,1,4,14,4,10,8,8,10,14,5,14,4,10,0,8,0,8,7,6,5,13,6,8,13,10,5,6,0,5,4,6,6,2,15,7,1,3,7,8,3,12,3,0,8,3,7,0,11,4,12,3,11,12,11,13,7,15,5,1,5,10,11,7,8,10,4,3,11,14,1,5,3,0,13,2,4,4,7,14,2,3,12,2,15,6,13,11,4,10,2,0,12,5,13,13,2,14,8,1,2,14,8,6,1,9,12,11,6,11,3,0,8,10,15,5,13,5,14,9,1,11,0,2,15,15,5,0,7,2,2,11,4,10,10,1,0,14,3,6,3,11,5,6,5,0,8,3,8,8,9,7,0,14,3,5,7,6,0,3,13,5,13,14,1,2,13,5,15,11,6,5,1,13,3,1,12,9,5,0,8,0,2,14,10,8,7,9,0,5,1,14,4,14,6,12,15,13,3,4,8,3,7,8,15,10,12,8,3,4,12,11,13,5,3,13,1,11,7,5,15,6,10,5,3,10,1,15,8,8,14,15,7,2,6,7,11,13,8,11,15,5,8,7,13,5,8,1,4,14,13,5,4,8,5,14,8,2,8,0,4,9,7,5,15,10,8,11,3,4,10,0,7,1,0,3,8,12,4,8,12,4,3,0,7,15,6,12,7,3,1,9,5,9,2,15,14,5,14,5,1,7,5,0,7,9,7,15,10,4,3,14,0,2,8,12,3,7,5,0,8,10,2,1,6,0,6,1,3,1,12,13,4,12,1,8,2,5,3,0,13,11,4,10,2,2,3,13,2,6,14,7,15,15,3,7,2,2,6,6,5,1,13,1,14,13,9,13,14,4,3,5,4,12,3,9,10,6,13,4,4,11,0,7,15,5,6,7,14,0,15,3,14,9,14,1,10,2,8,5,0,14,0,3,4,13,1,2,13,8,2,10,3,6,1,8,13,8,3,5,0,10,5,2,12,10,1,15,6,5,10,12,3,8,2,14,9,14,9,11,2,3,14,11,10,14,4,9,5,10,11,4,7,14,8,0,0,6,13,15,1,11,3,5,10,8,0,0,9,5,8,14,5,13,2,13,10,3,15,10,11,13,5,5,11,5,5,14,5,11,1,0,15,8,0,3,8,0,9,14,10,5,3,14,2,7,6,1,5,13,13,14,8,0,8,6,6,7,6,3,6,4,2,5,5,3,10,2,14,8,10,7,7,13,10,2,10,5,4,8,14,0,2,14,11,13,14,2,6,10,8,6,4,13,4,1,10,13,3,9,4,6,7,1,13,5,7,14,13,3,15,13,10,15,15,8,13,13,0,12,13,14,12,10,3,7,12,12,2,10,11,2,14,7,4,10,10,15,9,6,10,1,7,10,2,8,12,10,10,9,8,9,4,13,6,3,12,13,2,0,5,7,4,10,3,5,6,10,8,5,6,10,14,8,1,1,7,3,10,6,4,10,10,15,1,0,12,5,4,0,12,4,9,10,6,0,12,11,13,2,11,10,12,9,5,13,5,7,9,8,8,15,0,10,8,14,6,15,3,13,3,15,2,15,8,5,0,2,15,5,6,13,2,13,14,2,6,6,2,12,4,8,0,4,15,11,15,6,12,12,1,10,8,3,8,9,3,1,4,7,7,15,15,6,5,2,1,12,14,4,0,10,5,11,7,8,14,5,2,0,9,7,6,1,8,12,7,10,11,8,2,5,10,7,2,12,1,4,3,1,14,6,0,12,4,5,2,10,11,1,6,8,0,15,12,13,0,1,1,9,6,1,12,3,12,11,1,1,14,3,0,9,7,8,4,14,11,12,15,10,8,7,2,10,4,7,12,0,4,14,5,3,12,4,9,13,1,11,9,7,7,8,3,5,11,4,2,15,5,8,15,10,14,0,3,15,8,7,1,3,11,1,8,5,12,0,7,12,7,5,5,4,1,9,5,14,6,12,10,3,7,13,11,3,10,12,10,5,9,3,13,11,10,6,11,2,4,14,11,12,6,14,10,3,0,14,15,8,15,13,11,12,4,15,12,11,1,8,3,11,5,5,14,4,10,14,15,15,14,7,4,2,12,3,6,3,2,10,3,15,15,9,13,14,14,6,1,8,7,0,6,9,11,1,14,4,4,2,8,6,13,6,7,6,2,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"13\", \"4\", \"4\", \"11\"], \"clip_start\": 454.0, \"clip_end\": 460.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,14,15,4,8,15,2,1,2,11,12,4,6,5,11,11,10,14,4,0,7,8,2,10,5,3,4,3,5,4,6,14,5,5,8,4,11,15,3,5,2,1,5,4,5,15,10,0,11,5,6,15,0,1,6,6,13,8,7,5,12,10,10,3,8,1,15,9,12,1,14,0,10,15,3,15,3,6,1,4,14,4,10,8,8,10,14,5,14,4,10,0,8,0,8,7,6,5,13,6,8,13,10,5,6,0,5,4,6,6,2,15,7,1,3,7,8,3,12,3,0,8,3,7,0,11,4,12,3,11,12,11,13,7,15,5,1,5,10,11,7,8,10,4,3,11,14,1,5,3,0,13,2,4,4,7,14,2,3,12,2,15,6,13,11,4,10,2,0,12,5,13,13,2,14,8,1,2,14,8,6,1,9,12,11,6,11,3,0,8,10,15,5,13,5,14,9,1,11,0,2,15,15,5,0,7,2,2,11,4,10,10,1,0,14,3,6,3,11,5,6,5,0,8,3,8,8,9,7,0,14,3,5,7,6,0,3,13,5,13,14,1,2,13,5,15,11,6,5,1,13,3,1,12,9,5,0,8,0,2,14,10,8,7,9,0,5,1,14,4,14,6,12,15,13,3,4,8,3,7,8,15,10,12,8,3,4,12,11,13,5,3,13,1,11,7,5,15,6,10,5,3,10,1,15,8,8,14,15,7,2,6,7,11,13,8,11,15,5,8,7,13,5,8,1,4,14,13,5,4,8,5,14,8,2,8,0,4,9,7,5,15,10,8,11,3,4,10,0,7,1,0,3,8,12,4,8,12,4,3,0,7,15,6,12,7,3,1,9,5,9,2,15,14,5,14,5,1,7,5,0,7,9,7,15,10,4,3,14,0,2,8,12,3,7,5,0,8,10,2,1,6,0,6,1,3,1,12,13,4,12,1,8,2,5,3,0,13,11,4,10,2,2,3,13,2,6,14,7,15,15,3,7,2,2,6,6,5,1,13,1,14,13,9,13,14,4,3,5,4,12,3,9,10,6,13,4,4,11,0,7,15,5,6,7,14,0,15,3,14,9,14,1,10,2,8,5,0,14,0,3,4,13,1,2,13,8,2,10,3,6,1,8,13,8,3,5,0,10,5,2,12,10,1,15,6,5,10,12,3,8,2,14,9,14,9,11,2,3,14,11,10,14,4,9,5,10,11,4,7,14,8,0,0,6,13,15,1,11,3,5,10,8,0,0,9,5,8,14,5,13,2,13,10,3,15,10,11,13,5,5,11,5,5,14,5,11,1,0,15,8,0,3,8,0,9,14,10,5,3,14,2,7,6,1,5,13,13,14,8,0,8,6,6,7,6,3,6,4,2,5,5,3,10,2,14,8,10,7,7,13,10,2,10,5,4,8,14,0,2,14,11,13,14,2,6,10,8,6,4,13,4,1,10,13,3,9,4,6,7,1,13,5,7,14,13,3,15,13,10,15,15,8,13,13,0,12,13,14,12,10,3,7,12,12,2,10,11,2,14,7,4,10,10,15,9,6,10,1,7,10,2,8,12,10,10,9,8,9,4,13,6,3,12,13,2,0,5,7,4,10,3,5,6,10,8,5,6,10,14,8,1,1,7,3,10,6,4,10,10,15,1,0,12,5,4,0,12,4,9,10,6,0,12,11,13,2,11,10,12,9,5,13,5,7,9,8,8,15,0,10,8,14,6,15,3,13,3,15,2,15,8,5,0,2,15,5,6,13,2,13,14,2,6,6,2,12,4,8,0,4,15,11,15,6,12,12,1,10,8,3,8,9,3,1,4,7,7,15,15,6,5,2,1,12,14,4,0,10,5,11,7,8,14,5,2,0,9,7,6,1,8,12,7,10,11,8,2,5,10,7,2,12,1,4,3,1,14,6,0,12,4,5,2,10,11,1,6,8,0,15,12,13,0,1,1,9,6,1,12,3,12,11,1,1,14,3,0,9,7,8,4,14,11,12,15,10,8,7,2,10,4,7,12,0,4,14,5,3,12,4,9,13,1,11,9,7,7,8,3,5,11,4,2,15,5,8,15,10,14,0,3,15,8,7,1,3,11,1,8,5,12,0,7,12,7,5,5,4,1,9,5,14,6,12,10,3,7,13,11,3,10,12,10,5,9,3,13,11,10,6,11,2,4,14,11,12,6,14,10,3,0,14,15,8,15,13,11,12,4,15,12,11,1,8,3,11,5,5,14,4,10,14,15,15,14,7,4,2,12,3,6,3,2,10,3,15,15,9,13,14,14,6,1,8,7,0,6,9,11,1,14,4,4,2,8,6,13,6,7,6,2,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"15\", \"13\", \"10\"], \"clip_start\": 646.0, \"clip_end\": 651.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,14,15,4,8,15,2,1,2,11,12,4,6,5,11,11,10,14,4,0,7,8,2,10,5,3,4,3,5,4,6,14,5,5,8,4,11,15,3,5,2,1,5,4,5,15,10,0,11,5,6,15,0,1,6,6,13,8,7,5,12,10,10,3,8,1,15,9,12,1,14,0,10,15,3,15,3,6,1,4,14,4,10,8,8,10,14,5,14,4,10,0,8,0,8,7,6,5,13,6,8,13,10,5,6,0,5,4,6,6,2,15,7,1,3,7,8,3,12,3,0,8,3,7,0,11,4,12,3,11,12,11,13,7,15,5,1,5,10,11,7,8,10,4,3,11,14,1,5,3,0,13,2,4,4,7,14,2,3,12,2,15,6,13,11,4,10,2,0,12,5,13,13,2,14,8,1,2,14,8,6,1,9,12,11,6,11,3,0,8,10,15,5,13,5,14,9,1,11,0,2,15,15,5,0,7,2,2,11,4,10,10,1,0,14,3,6,3,11,5,6,5,0,8,3,8,8,9,7,0,14,3,5,7,6,0,3,13,5,13,14,1,2,13,5,15,11,6,5,1,13,3,1,12,9,5,0,8,0,2,14,10,8,7,9,0,5,1,14,4,14,6,12,15,13,3,4,8,3,7,8,15,10,12,8,3,4,12,11,13,5,3,13,1,11,7,5,15,6,10,5,3,10,1,15,8,8,14,15,7,2,6,7,11,13,8,11,15,5,8,7,13,5,8,1,4,14,13,5,4,8,5,14,8,2,8,0,4,9,7,5,15,10,8,11,3,4,10,0,7,1,0,3,8,12,4,8,12,4,3,0,7,15,6,12,7,3,1,9,5,9,2,15,14,5,14,5,1,7,5,0,7,9,7,15,10,4,3,14,0,2,8,12,3,7,5,0,8,10,2,1,6,0,6,1,3,1,12,13,4,12,1,8,2,5,3,0,13,11,4,10,2,2,3,13,2,6,14,7,15,15,3,7,2,2,6,6,5,1,13,1,14,13,9,13,14,4,3,5,4,12,3,9,10,6,13,4,4,11,0,7,15,5,6,7,14,0,15,3,14,9,14,1,10,2,8,5,0,14,0,3,4,13,1,2,13,8,2,10,3,6,1,8,13,8,3,5,0,10,5,2,12,10,1,15,6,5,10,12,3,8,2,14,9,14,9,11,2,3,14,11,10,14,4,9,5,10,11,4,7,14,8,0,0,6,13,15,1,11,3,5,10,8,0,0,9,5,8,14,5,13,2,13,10,3,15,10,11,13,5,5,11,5,5,14,5,11,1,0,15,8,0,3,8,0,9,14,10,5,3,14,2,7,6,1,5,13,13,14,8,0,8,6,6,7,6,3,6,4,2,5,5,3,10,2,14,8,10,7,7,13,10,2,10,5,4,8,14,0,2,14,11,13,14,2,6,10,8,6,4,13,4,1,10,13,3,9,4,6,7,1,13,5,7,14,13,3,15,13,10,15,15,8,13,13,0,12,13,14,12,10,3,7,12,12,2,10,11,2,14,7,4,10,10,15,9,6,10,1,7,10,2,8,12,10,10,9,8,9,4,13,6,3,12,13,2,0,5,7,4,10,3,5,6,10,8,5,6,10,14,8,1,1,7,3,10,6,4,10,10,15,1,0,12,5,4,0,12,4,9,10,6,0,12,11,13,2,11,10,12,9,5,13,5,7,9,8,8,15,0,10,8,14,6,15,3,13,3,15,2,15,8,5,0,2,15,5,6,13,2,13,14,2,6,6,2,12,4,8,0,4,15,11,15,6,12,12,1,10,8,3,8,9,3,1,4,7,7,15,15,6,5,2,1,12,14,4,0,10,5,11,7,8,14,5,2,0,9,7,6,1,8,12,7,10,11,8,2,5,10,7,2,12,1,4,3,1,14,6,0,12,4,5,2,10,11,1,6,8,0,15,12,13,0,1,1,9,6,1,12,3,12,11,1,1,14,3,0,9,7,8,4,14,11,12,15,10,8,7,2,10,4,7,12,0,4,14,5,3,12,4,9,13,1,11,9,7,7,8,3,5,11,4,2,15,5,8,15,10,14,0,3,15,8,7,1,3,11,1,8,5,12,0,7,12,7,5,5,4,1,9,5,14,6,12,10,3,7,13,11,3,10,12,10,5,9,3,13,11,10,6,11,2,4,14,11,12,6,14,10,3,0,14,15,8,15,13,11,12,4,15,12,11,1,8,3,11,5,5,14,4,10,14,15,15,14,7,4,2,12,3,6,3,2,10,3,15,15,9,13,14,14,6,1,8,7,0,6,9,11,1,14,4,4,2,8,6,13,6,7,6,2,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"5\", \"3\", \"0\", \"13\"], \"clip_start\": 414.0, \"clip_end\": 419.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,14,15,4,8,15,2,1,2,11,12,4,6,5,11,11,10,14,4,0,7,8,2,10,5,3,4,3,5,4,6,14,5,5,8,4,11,15,3,5,2,1,5,4,5,15,10,0,11,5,6,15,0,1,6,6,13,8,7,5,12,10,10,3,8,1,15,9,12,1,14,0,10,15,3,15,3,6,1,4,14,4,10,8,8,10,14,5,14,4,10,0,8,0,8,7,6,5,13,6,8,13,10,5,6,0,5,4,6,6,2,15,7,1,3,7,8,3,12,3,0,8,3,7,0,11,4,12,3,11,12,11,13,7,15,5,1,5,10,11,7,8,10,4,3,11,14,1,5,3,0,13,2,4,4,7,14,2,3,12,2,15,6,13,11,4,10,2,0,12,5,13,13,2,14,8,1,2,14,8,6,1,9,12,11,6,11,3,0,8,10,15,5,13,5,14,9,1,11,0,2,15,15,5,0,7,2,2,11,4,10,10,1,0,14,3,6,3,11,5,6,5,0,8,3,8,8,9,7,0,14,3,5,7,6,0,3,13,5,13,14,1,2,13,5,15,11,6,5,1,13,3,1,12,9,5,0,8,0,2,14,10,8,7,9,0,5,1,14,4,14,6,12,15,13,3,4,8,3,7,8,15,10,12,8,3,4,12,11,13,5,3,13,1,11,7,5,15,6,10,5,3,10,1,15,8,8,14,15,7,2,6,7,11,13,8,11,15,5,8,7,13,5,8,1,4,14,13,5,4,8,5,14,8,2,8,0,4,9,7,5,15,10,8,11,3,4,10,0,7,1,0,3,8,12,4,8,12,4,3,0,7,15,6,12,7,3,1,9,5,9,2,15,14,5,14,5,1,7,5,0,7,9,7,15,10,4,3,14,0,2,8,12,3,7,5,0,8,10,2,1,6,0,6,1,3,1,12,13,4,12,1,8,2,5,3,0,13,11,4,10,2,2,3,13,2,6,14,7,15,15,3,7,2,2,6,6,5,1,13,1,14,13,9,13,14,4,3,5,4,12,3,9,10,6,13,4,4,11,0,7,15,5,6,7,14,0,15,3,14,9,14,1,10,2,8,5,0,14,0,3,4,13,1,2,13,8,2,10,3,6,1,8,13,8,3,5,0,10,5,2,12,10,1,15,6,5,10,12,3,8,2,14,9,14,9,11,2,3,14,11,10,14,4,9,5,10,11,4,7,14,8,0,0,6,13,15,1,11,3,5,10,8,0,0,9,5,8,14,5,13,2,13,10,3,15,10,11,13,5,5,11,5,5,14,5,11,1,0,15,8,0,3,8,0,9,14,10,5,3,14,2,7,6,1,5,13,13,14,8,0,8,6,6,7,6,3,6,4,2,5,5,3,10,2,14,8,10,7,7,13,10,2,10,5,4,8,14,0,2,14,11,13,14,2,6,10,8,6,4,13,4,1,10,13,3,9,4,6,7,1,13,5,7,14,13,3,15,13,10,15,15,8,13,13,0,12,13,14,12,10,3,7,12,12,2,10,11,2,14,7,4,10,10,15,9,6,10,1,7,10,2,8,12,10,10,9,8,9,4,13,6,3,12,13,2,0,5,7,4,10,3,5,6,10,8,5,6,10,14,8,1,1,7,3,10,6,4,10,10,15,1,0,12,5,4,0,12,4,9,10,6,0,12,11,13,2,11,10,12,9,5,13,5,7,9,8,8,15,0,10,8,14,6,15,3,13,3,15,2,15,8,5,0,2,15,5,6,13,2,13,14,2,6,6,2,12,4,8,0,4,15,11,15,6,12,12,1,10,8,3,8,9,3,1,4,7,7,15,15,6,5,2,1,12,14,4,0,10,5,11,7,8,14,5,2,0,9,7,6,1,8,12,7,10,11,8,2,5,10,7,2,12,1,4,3,1,14,6,0,12,4,5,2,10,11,1,6,8,0,15,12,13,0,1,1,9,6,1,12,3,12,11,1,1,14,3,0,9,7,8,4,14,11,12,15,10,8,7,2,10,4,7,12,0,4,14,5,3,12,4,9,13,1,11,9,7,7,8,3,5,11,4,2,15,5,8,15,10,14,0,3,15,8,7,1,3,11,1,8,5,12,0,7,12,7,5,5,4,1,9,5,14,6,12,10,3,7,13,11,3,10,12,10,5,9,3,13,11,10,6,11,2,4,14,11,12,6,14,10,3,0,14,15,8,15,13,11,12,4,15,12,11,1,8,3,11,5,5,14,4,10,14,15,15,14,7,4,2,12,3,6,3,2,10,3,15,15,9,13,14,14,6,1,8,7,0,6,9,11,1,14,4,4,2,8,6,13,6,7,6,2,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"7\", \"10\", \"11\", \"8\", \"2\"], \"clip_start\": 823.0, \"clip_end\": 829.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,14,15,4,8,15,2,1,2,11,12,4,6,5,11,11,10,14,4,0,7,8,2,10,5,3,4,3,5,4,6,14,5,5,8,4,11,15,3,5,2,1,5,4,5,15,10,0,11,5,6,15,0,1,6,6,13,8,7,5,12,10,10,3,8,1,15,9,12,1,14,0,10,15,3,15,3,6,1,4,14,4,10,8,8,10,14,5,14,4,10,0,8,0,8,7,6,5,13,6,8,13,10,5,6,0,5,4,6,6,2,15,7,1,3,7,8,3,12,3,0,8,3,7,0,11,4,12,3,11,12,11,13,7,15,5,1,5,10,11,7,8,10,4,3,11,14,1,5,3,0,13,2,4,4,7,14,2,3,12,2,15,6,13,11,4,10,2,0,12,5,13,13,2,14,8,1,2,14,8,6,1,9,12,11,6,11,3,0,8,10,15,5,13,5,14,9,1,11,0,2,15,15,5,0,7,2,2,11,4,10,10,1,0,14,3,6,3,11,5,6,5,0,8,3,8,8,9,7,0,14,3,5,7,6,0,3,13,5,13,14,1,2,13,5,15,11,6,5,1,13,3,1,12,9,5,0,8,0,2,14,10,8,7,9,0,5,1,14,4,14,6,12,15,13,3,4,8,3,7,8,15,10,12,8,3,4,12,11,13,5,3,13,1,11,7,5,15,6,10,5,3,10,1,15,8,8,14,15,7,2,6,7,11,13,8,11,15,5,8,7,13,5,8,1,4,14,13,5,4,8,5,14,8,2,8,0,4,9,7,5,15,10,8,11,3,4,10,0,7,1,0,3,8,12,4,8,12,4,3,0,7,15,6,12,7,3,1,9,5,9,2,15,14,5,14,5,1,7,5,0,7,9,7,15,10,4,3,14,0,2,8,12,3,7,5,0,8,10,2,1,6,0,6,1,3,1,12,13,4,12,1,8,2,5,3,0,13,11,4,10,2,2,3,13,2,6,14,7,15,15,3,7,2,2,6,6,5,1,13,1,14,13,9,13,14,4,3,5,4,12,3,9,10,6,13,4,4,11,0,7,15,5,6,7,14,0,15,3,14,9,14,1,10,2,8,5,0,14,0,3,4,13,1,2,13,8,2,10,3,6,1,8,13,8,3,5,0,10,5,2,12,10,1,15,6,5,10,12,3,8,2,14,9,14,9,11,2,3,14,11,10,14,4,9,5,10,11,4,7,14,8,0,0,6,13,15,1,11,3,5,10,8,0,0,9,5,8,14,5,13,2,13,10,3,15,10,11,13,5,5,11,5,5,14,5,11,1,0,15,8,0,3,8,0,9,14,10,5,3,14,2,7,6,1,5,13,13,14,8,0,8,6,6,7,6,3,6,4,2,5,5,3,10,2,14,8,10,7,7,13,10,2,10,5,4,8,14,0,2,14,11,13,14,2,6,10,8,6,4,13,4,1,10,13,3,9,4,6,7,1,13,5,7,14,13,3,15,13,10,15,15,8,13,13,0,12,13,14,12,10,3,7,12,12,2,10,11,2,14,7,4,10,10,15,9,6,10,1,7,10,2,8,12,10,10,9,8,9,4,13,6,3,12,13,2,0,5,7,4,10,3,5,6,10,8,5,6,10,14,8,1,1,7,3,10,6,4,10,10,15,1,0,12,5,4,0,12,4,9,10,6,0,12,11,13,2,11,10,12,9,5,13,5,7,9,8,8,15,0,10,8,14,6,15,3,13,3,15,2,15,8,5,0,2,15,5,6,13,2,13,14,2,6,6,2,12,4,8,0,4,15,11,15,6,12,12,1,10,8,3,8,9,3,1,4,7,7,15,15,6,5,2,1,12,14,4,0,10,5,11,7,8,14,5,2,0,9,7,6,1,8,12,7,10,11,8,2,5,10,7,2,12,1,4,3,1,14,6,0,12,4,5,2,10,11,1,6,8,0,15,12,13,0,1,1,9,6,1,12,3,12,11,1,1,14,3,0,9,7,8,4,14,11,12,15,10,8,7,2,10,4,7,12,0,4,14,5,3,12,4,9,13,1,11,9,7,7,8,3,5,11,4,2,15,5,8,15,10,14,0,3,15,8,7,1,3,11,1,8,5,12,0,7,12,7,5,5,4,1,9,5,14,6,12,10,3,7,13,11,3,10,12,10,5,9,3,13,11,10,6,11,2,4,14,11,12,6,14,10,3,0,14,15,8,15,13,11,12,4,15,12,11,1,8,3,11,5,5,14,4,10,14,15,15,14,7,4,2,12,3,6,3,2,10,3,15,15,9,13,14,14,6,1,8,7,0,6,9,11,1,14,4,4,2,8,6,13,6,7,6,2,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 840.0, \"clip_end\": 846.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,14,15,4,8,15,2,1,2,11,12,4,6,5,11,11,10,14,4,0,7,8,2,10,5,3,4,3,5,4,6,14,5,5,8,4,11,15,3,5,2,1,5,4,5,15,10,0,11,5,6,15,0,1,6,6,13,8,7,5,12,10,10,3,8,1,15,9,12,1,14,0,10,15,3,15,3,6,1,4,14,4,10,8,8,10,14,5,14,4,10,0,8,0,8,7,6,5,13,6,8,13,10,5,6,0,5,4,6,6,2,15,7,1,3,7,8,3,12,3,0,8,3,7,0,11,4,12,3,11,12,11,13,7,15,5,1,5,10,11,7,8,10,4,3,11,14,1,5,3,0,13,2,4,4,7,14,2,3,12,2,15,6,13,11,4,10,2,0,12,5,13,13,2,14,8,1,2,14,8,6,1,9,12,11,6,11,3,0,8,10,15,5,13,5,14,9,1,11,0,2,15,15,5,0,7,2,2,11,4,10,10,1,0,14,3,6,3,11,5,6,5,0,8,3,8,8,9,7,0,14,3,5,7,6,0,3,13,5,13,14,1,2,13,5,15,11,6,5,1,13,3,1,12,9,5,0,8,0,2,14,10,8,7,9,0,5,1,14,4,14,6,12,15,13,3,4,8,3,7,8,15,10,12,8,3,4,12,11,13,5,3,13,1,11,7,5,15,6,10,5,3,10,1,15,8,8,14,15,7,2,6,7,11,13,8,11,15,5,8,7,13,5,8,1,4,14,13,5,4,8,5,14,8,2,8,0,4,9,7,5,15,10,8,11,3,4,10,0,7,1,0,3,8,12,4,8,12,4,3,0,7,15,6,12,7,3,1,9,5,9,2,15,14,5,14,5,1,7,5,0,7,9,7,15,10,4,3,14,0,2,8,12,3,7,5,0,8,10,2,1,6,0,6,1,3,1,12,13,4,12,1,8,2,5,3,0,13,11,4,10,2,2,3,13,2,6,14,7,15,15,3,7,2,2,6,6,5,1,13,1,14,13,9,13,14,4,3,5,4,12,3,9,10,6,13,4,4,11,0,7,15,5,6,7,14,0,15,3,14,9,14,1,10,2,8,5,0,14,0,3,4,13,1,2,13,8,2,10,3,6,1,8,13,8,3,5,0,10,5,2,12,10,1,15,6,5,10,12,3,8,2,14,9,14,9,11,2,3,14,11,10,14,4,9,5,10,11,4,7,14,8,0,0,6,13,15,1,11,3,5,10,8,0,0,9,5,8,14,5,13,2,13,10,3,15,10,11,13,5,5,11,5,5,14,5,11,1,0,15,8,0,3,8,0,9,14,10,5,3,14,2,7,6,1,5,13,13,14,8,0,8,6,6,7,6,3,6,4,2,5,5,3,10,2,14,8,10,7,7,13,10,2,10,5,4,8,14,0,2,14,11,13,14,2,6,10,8,6,4,13,4,1,10,13,3,9,4,6,7,1,13,5,7,14,13,3,15,13,10,15,15,8,13,13,0,12,13,14,12,10,3,7,12,12,2,10,11,2,14,7,4,10,10,15,9,6,10,1,7,10,2,8,12,10,10,9,8,9,4,13,6,3,12,13,2,0,5,7,4,10,3,5,6,10,8,5,6,10,14,8,1,1,7,3,10,6,4,10,10,15,1,0,12,5,4,0,12,4,9,10,6,0,12,11,13,2,11,10,12,9,5,13,5,7,9,8,8,15,0,10,8,14,6,15,3,13,3,15,2,15,8,5,0,2,15,5,6,13,2,13,14,2,6,6,2,12,4,8,0,4,15,11,15,6,12,12,1,10,8,3,8,9,3,1,4,7,7,15,15,6,5,2,1,12,14,4,0,10,5,11,7,8,14,5,2,0,9,7,6,1,8,12,7,10,11,8,2,5,10,7,2,12,1,4,3,1,14,6,0,12,4,5,2,10,11,1,6,8,0,15,12,13,0,1,1,9,6,1,12,3,12,11,1,1,14,3,0,9,7,8,4,14,11,12,15,10,8,7,2,10,4,7,12,0,4,14,5,3,12,4,9,13,1,11,9,7,7,8,3,5,11,4,2,15,5,8,15,10,14,0,3,15,8,7,1,3,11,1,8,5,12,0,7,12,7,5,5,4,1,9,5,14,6,12,10,3,7,13,11,3,10,12,10,5,9,3,13,11,10,6,11,2,4,14,11,12,6,14,10,3,0,14,15,8,15,13,11,12,4,15,12,11,1,8,3,11,5,5,14,4,10,14,15,15,14,7,4,2,12,3,6,3,2,10,3,15,15,9,13,14,14,6,1,8,7,0,6,9,11,1,14,4,4,2,8,6,13,6,7,6,2,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"8\", \"0\", \"15\", \"12\"], \"clip_start\": 847.0, \"clip_end\": 853.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,14,15,4,8,15,2,1,2,11,12,4,6,5,11,11,10,14,4,0,7,8,2,10,5,3,4,3,5,4,6,14,5,5,8,4,11,15,3,5,2,1,5,4,5,15,10,0,11,5,6,15,0,1,6,6,13,8,7,5,12,10,10,3,8,1,15,9,12,1,14,0,10,15,3,15,3,6,1,4,14,4,10,8,8,10,14,5,14,4,10,0,8,0,8,7,6,5,13,6,8,13,10,5,6,0,5,4,6,6,2,15,7,1,3,7,8,3,12,3,0,8,3,7,0,11,4,12,3,11,12,11,13,7,15,5,1,5,10,11,7,8,10,4,3,11,14,1,5,3,0,13,2,4,4,7,14,2,3,12,2,15,6,13,11,4,10,2,0,12,5,13,13,2,14,8,1,2,14,8,6,1,9,12,11,6,11,3,0,8,10,15,5,13,5,14,9,1,11,0,2,15,15,5,0,7,2,2,11,4,10,10,1,0,14,3,6,3,11,5,6,5,0,8,3,8,8,9,7,0,14,3,5,7,6,0,3,13,5,13,14,1,2,13,5,15,11,6,5,1,13,3,1,12,9,5,0,8,0,2,14,10,8,7,9,0,5,1,14,4,14,6,12,15,13,3,4,8,3,7,8,15,10,12,8,3,4,12,11,13,5,3,13,1,11,7,5,15,6,10,5,3,10,1,15,8,8,14,15,7,2,6,7,11,13,8,11,15,5,8,7,13,5,8,1,4,14,13,5,4,8,5,14,8,2,8,0,4,9,7,5,15,10,8,11,3,4,10,0,7,1,0,3,8,12,4,8,12,4,3,0,7,15,6,12,7,3,1,9,5,9,2,15,14,5,14,5,1,7,5,0,7,9,7,15,10,4,3,14,0,2,8,12,3,7,5,0,8,10,2,1,6,0,6,1,3,1,12,13,4,12,1,8,2,5,3,0,13,11,4,10,2,2,3,13,2,6,14,7,15,15,3,7,2,2,6,6,5,1,13,1,14,13,9,13,14,4,3,5,4,12,3,9,10,6,13,4,4,11,0,7,15,5,6,7,14,0,15,3,14,9,14,1,10,2,8,5,0,14,0,3,4,13,1,2,13,8,2,10,3,6,1,8,13,8,3,5,0,10,5,2,12,10,1,15,6,5,10,12,3,8,2,14,9,14,9,11,2,3,14,11,10,14,4,9,5,10,11,4,7,14,8,0,0,6,13,15,1,11,3,5,10,8,0,0,9,5,8,14,5,13,2,13,10,3,15,10,11,13,5,5,11,5,5,14,5,11,1,0,15,8,0,3,8,0,9,14,10,5,3,14,2,7,6,1,5,13,13,14,8,0,8,6,6,7,6,3,6,4,2,5,5,3,10,2,14,8,10,7,7,13,10,2,10,5,4,8,14,0,2,14,11,13,14,2,6,10,8,6,4,13,4,1,10,13,3,9,4,6,7,1,13,5,7,14,13,3,15,13,10,15,15,8,13,13,0,12,13,14,12,10,3,7,12,12,2,10,11,2,14,7,4,10,10,15,9,6,10,1,7,10,2,8,12,10,10,9,8,9,4,13,6,3,12,13,2,0,5,7,4,10,3,5,6,10,8,5,6,10,14,8,1,1,7,3,10,6,4,10,10,15,1,0,12,5,4,0,12,4,9,10,6,0,12,11,13,2,11,10,12,9,5,13,5,7,9,8,8,15,0,10,8,14,6,15,3,13,3,15,2,15,8,5,0,2,15,5,6,13,2,13,14,2,6,6,2,12,4,8,0,4,15,11,15,6,12,12,1,10,8,3,8,9,3,1,4,7,7,15,15,6,5,2,1,12,14,4,0,10,5,11,7,8,14,5,2,0,9,7,6,1,8,12,7,10,11,8,2,5,10,7,2,12,1,4,3,1,14,6,0,12,4,5,2,10,11,1,6,8,0,15,12,13,0,1,1,9,6,1,12,3,12,11,1,1,14,3,0,9,7,8,4,14,11,12,15,10,8,7,2,10,4,7,12,0,4,14,5,3,12,4,9,13,1,11,9,7,7,8,3,5,11,4,2,15,5,8,15,10,14,0,3,15,8,7,1,3,11,1,8,5,12,0,7,12,7,5,5,4,1,9,5,14,6,12,10,3,7,13,11,3,10,12,10,5,9,3,13,11,10,6,11,2,4,14,11,12,6,14,10,3,0,14,15,8,15,13,11,12,4,15,12,11,1,8,3,11,5,5,14,4,10,14,15,15,14,7,4,2,12,3,6,3,2,10,3,15,15,9,13,14,14,6,1,8,7,0,6,9,11,1,14,4,4,2,8,6,13,6,7,6,2,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 318.0, \"clip_end\": 322.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,14,15,4,8,15,2,1,2,11,12,4,6,5,11,11,10,14,4,0,7,8,2,10,5,3,4,3,5,4,6,14,5,5,8,4,11,15,3,5,2,1,5,4,5,15,10,0,11,5,6,15,0,1,6,6,13,8,7,5,12,10,10,3,8,1,15,9,12,1,14,0,10,15,3,15,3,6,1,4,14,4,10,8,8,10,14,5,14,4,10,0,8,0,8,7,6,5,13,6,8,13,10,5,6,0,5,4,6,6,2,15,7,1,3,7,8,3,12,3,0,8,3,7,0,11,4,12,3,11,12,11,13,7,15,5,1,5,10,11,7,8,10,4,3,11,14,1,5,3,0,13,2,4,4,7,14,2,3,12,2,15,6,13,11,4,10,2,0,12,5,13,13,2,14,8,1,2,14,8,6,1,9,12,11,6,11,3,0,8,10,15,5,13,5,14,9,1,11,0,2,15,15,5,0,7,2,2,11,4,10,10,1,0,14,3,6,3,11,5,6,5,0,8,3,8,8,9,7,0,14,3,5,7,6,0,3,13,5,13,14,1,2,13,5,15,11,6,5,1,13,3,1,12,9,5,0,8,0,2,14,10,8,7,9,0,5,1,14,4,14,6,12,15,13,3,4,8,3,7,8,15,10,12,8,3,4,12,11,13,5,3,13,1,11,7,5,15,6,10,5,3,10,1,15,8,8,14,15,7,2,6,7,11,13,8,11,15,5,8,7,13,5,8,1,4,14,13,5,4,8,5,14,8,2,8,0,4,9,7,5,15,10,8,11,3,4,10,0,7,1,0,3,8,12,4,8,12,4,3,0,7,15,6,12,7,3,1,9,5,9,2,15,14,5,14,5,1,7,5,0,7,9,7,15,10,4,3,14,0,2,8,12,3,7,5,0,8,10,2,1,6,0,6,1,3,1,12,13,4,12,1,8,2,5,3,0,13,11,4,10,2,2,3,13,2,6,14,7,15,15,3,7,2,2,6,6,5,1,13,1,14,13,9,13,14,4,3,5,4,12,3,9,10,6,13,4,4,11,0,7,15,5,6,7,14,0,15,3,14,9,14,1,10,2,8,5,0,14,0,3,4,13,1,2,13,8,2,10,3,6,1,8,13,8,3,5,0,10,5,2,12,10,1,15,6,5,10,12,3,8,2,14,9,14,9,11,2,3,14,11,10,14,4,9,5,10,11,4,7,14,8,0,0,6,13,15,1,11,3,5,10,8,0,0,9,5,8,14,5,13,2,13,10,3,15,10,11,13,5,5,11,5,5,14,5,11,1,0,15,8,0,3,8,0,9,14,10,5,3,14,2,7,6,1,5,13,13,14,8,0,8,6,6,7,6,3,6,4,2,5,5,3,10,2,14,8,10,7,7,13,10,2,10,5,4,8,14,0,2,14,11,13,14,2,6,10,8,6,4,13,4,1,10,13,3,9,4,6,7,1,13,5,7,14,13,3,15,13,10,15,15,8,13,13,0,12,13,14,12,10,3,7,12,12,2,10,11,2,14,7,4,10,10,15,9,6,10,1,7,10,2,8,12,10,10,9,8,9,4,13,6,3,12,13,2,0,5,7,4,10,3,5,6,10,8,5,6,10,14,8,1,1,7,3,10,6,4,10,10,15,1,0,12,5,4,0,12,4,9,10,6,0,12,11,13,2,11,10,12,9,5,13,5,7,9,8,8,15,0,10,8,14,6,15,3,13,3,15,2,15,8,5,0,2,15,5,6,13,2,13,14,2,6,6,2,12,4,8,0,4,15,11,15,6,12,12,1,10,8,3,8,9,3,1,4,7,7,15,15,6,5,2,1,12,14,4,0,10,5,11,7,8,14,5,2,0,9,7,6,1,8,12,7,10,11,8,2,5,10,7,2,12,1,4,3,1,14,6,0,12,4,5,2,10,11,1,6,8,0,15,12,13,0,1,1,9,6,1,12,3,12,11,1,1,14,3,0,9,7,8,4,14,11,12,15,10,8,7,2,10,4,7,12,0,4,14,5,3,12,4,9,13,1,11,9,7,7,8,3,5,11,4,2,15,5,8,15,10,14,0,3,15,8,7,1,3,11,1,8,5,12,0,7,12,7,5,5,4,1,9,5,14,6,12,10,3,7,13,11,3,10,12,10,5,9,3,13,11,10,6,11,2,4,14,11,12,6,14,10,3,0,14,15,8,15,13,11,12,4,15,12,11,1,8,3,11,5,5,14,4,10,14,15,15,14,7,4,2,12,3,6,3,2,10,3,15,15,9,13,14,14,6,1,8,7,0,6,9,11,1,14,4,4,2,8,6,13,6,7,6,2,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"15\", \"7\", \"1\"], \"clip_start\": 110.0, \"clip_end\": 115.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,14,15,4,8,15,2,1,2,11,12,4,6,5,11,11,10,14,4,0,7,8,2,10,5,3,4,3,5,4,6,14,5,5,8,4,11,15,3,5,2,1,5,4,5,15,10,0,11,5,6,15,0,1,6,6,13,8,7,5,12,10,10,3,8,1,15,9,12,1,14,0,10,15,3,15,3,6,1,4,14,4,10,8,8,10,14,5,14,4,10,0,8,0,8,7,6,5,13,6,8,13,10,5,6,0,5,4,6,6,2,15,7,1,3,7,8,3,12,3,0,8,3,7,0,11,4,12,3,11,12,11,13,7,15,5,1,5,10,11,7,8,10,4,3,11,14,1,5,3,0,13,2,4,4,7,14,2,3,12,2,15,6,13,11,4,10,2,0,12,5,13,13,2,14,8,1,2,14,8,6,1,9,12,11,6,11,3,0,8,10,15,5,13,5,14,9,1,11,0,2,15,15,5,0,7,2,2,11,4,10,10,1,0,14,3,6,3,11,5,6,5,0,8,3,8,8,9,7,0,14,3,5,7,6,0,3,13,5,13,14,1,2,13,5,15,11,6,5,1,13,3,1,12,9,5,0,8,0,2,14,10,8,7,9,0,5,1,14,4,14,6,12,15,13,3,4,8,3,7,8,15,10,12,8,3,4,12,11,13,5,3,13,1,11,7,5,15,6,10,5,3,10,1,15,8,8,14,15,7,2,6,7,11,13,8,11,15,5,8,7,13,5,8,1,4,14,13,5,4,8,5,14,8,2,8,0,4,9,7,5,15,10,8,11,3,4,10,0,7,1,0,3,8,12,4,8,12,4,3,0,7,15,6,12,7,3,1,9,5,9,2,15,14,5,14,5,1,7,5,0,7,9,7,15,10,4,3,14,0,2,8,12,3,7,5,0,8,10,2,1,6,0,6,1,3,1,12,13,4,12,1,8,2,5,3,0,13,11,4,10,2,2,3,13,2,6,14,7,15,15,3,7,2,2,6,6,5,1,13,1,14,13,9,13,14,4,3,5,4,12,3,9,10,6,13,4,4,11,0,7,15,5,6,7,14,0,15,3,14,9,14,1,10,2,8,5,0,14,0,3,4,13,1,2,13,8,2,10,3,6,1,8,13,8,3,5,0,10,5,2,12,10,1,15,6,5,10,12,3,8,2,14,9,14,9,11,2,3,14,11,10,14,4,9,5,10,11,4,7,14,8,0,0,6,13,15,1,11,3,5,10,8,0,0,9,5,8,14,5,13,2,13,10,3,15,10,11,13,5,5,11,5,5,14,5,11,1,0,15,8,0,3,8,0,9,14,10,5,3,14,2,7,6,1,5,13,13,14,8,0,8,6,6,7,6,3,6,4,2,5,5,3,10,2,14,8,10,7,7,13,10,2,10,5,4,8,14,0,2,14,11,13,14,2,6,10,8,6,4,13,4,1,10,13,3,9,4,6,7,1,13,5,7,14,13,3,15,13,10,15,15,8,13,13,0,12,13,14,12,10,3,7,12,12,2,10,11,2,14,7,4,10,10,15,9,6,10,1,7,10,2,8,12,10,10,9,8,9,4,13,6,3,12,13,2,0,5,7,4,10,3,5,6,10,8,5,6,10,14,8,1,1,7,3,10,6,4,10,10,15,1,0,12,5,4,0,12,4,9,10,6,0,12,11,13,2,11,10,12,9,5,13,5,7,9,8,8,15,0,10,8,14,6,15,3,13,3,15,2,15,8,5,0,2,15,5,6,13,2,13,14,2,6,6,2,12,4,8,0,4,15,11,15,6,12,12,1,10,8,3,8,9,3,1,4,7,7,15,15,6,5,2,1,12,14,4,0,10,5,11,7,8,14,5,2,0,9,7,6,1,8,12,7,10,11,8,2,5,10,7,2,12,1,4,3,1,14,6,0,12,4,5,2,10,11,1,6,8,0,15,12,13,0,1,1,9,6,1,12,3,12,11,1,1,14,3,0,9,7,8,4,14,11,12,15,10,8,7,2,10,4,7,12,0,4,14,5,3,12,4,9,13,1,11,9,7,7,8,3,5,11,4,2,15,5,8,15,10,14,0,3,15,8,7,1,3,11,1,8,5,12,0,7,12,7,5,5,4,1,9,5,14,6,12,10,3,7,13,11,3,10,12,10,5,9,3,13,11,10,6,11,2,4,14,11,12,6,14,10,3,0,14,15,8,15,13,11,12,4,15,12,11,1,8,3,11,5,5,14,4,10,14,15,15,14,7,4,2,12,3,6,3,2,10,3,15,15,9,13,14,14,6,1,8,7,0,6,9,11,1,14,4,4,2,8,6,13,6,7,6,2,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"7\", \"1\", \"13\"], \"clip_start\": 638.0, \"clip_end\": 643.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,14,15,4,8,15,2,1,2,11,12,4,6,5,11,11,10,14,4,0,7,8,2,10,5,3,4,3,5,4,6,14,5,5,8,4,11,15,3,5,2,1,5,4,5,15,10,0,11,5,6,15,0,1,6,6,13,8,7,5,12,10,10,3,8,1,15,9,12,1,14,0,10,15,3,15,3,6,1,4,14,4,10,8,8,10,14,5,14,4,10,0,8,0,8,7,6,5,13,6,8,13,10,5,6,0,5,4,6,6,2,15,7,1,3,7,8,3,12,3,0,8,3,7,0,11,4,12,3,11,12,11,13,7,15,5,1,5,10,11,7,8,10,4,3,11,14,1,5,3,0,13,2,4,4,7,14,2,3,12,2,15,6,13,11,4,10,2,0,12,5,13,13,2,14,8,1,2,14,8,6,1,9,12,11,6,11,3,0,8,10,15,5,13,5,14,9,1,11,0,2,15,15,5,0,7,2,2,11,4,10,10,1,0,14,3,6,3,11,5,6,5,0,8,3,8,8,9,7,0,14,3,5,7,6,0,3,13,5,13,14,1,2,13,5,15,11,6,5,1,13,3,1,12,9,5,0,8,0,2,14,10,8,7,9,0,5,1,14,4,14,6,12,15,13,3,4,8,3,7,8,15,10,12,8,3,4,12,11,13,5,3,13,1,11,7,5,15,6,10,5,3,10,1,15,8,8,14,15,7,2,6,7,11,13,8,11,15,5,8,7,13,5,8,1,4,14,13,5,4,8,5,14,8,2,8,0,4,9,7,5,15,10,8,11,3,4,10,0,7,1,0,3,8,12,4,8,12,4,3,0,7,15,6,12,7,3,1,9,5,9,2,15,14,5,14,5,1,7,5,0,7,9,7,15,10,4,3,14,0,2,8,12,3,7,5,0,8,10,2,1,6,0,6,1,3,1,12,13,4,12,1,8,2,5,3,0,13,11,4,10,2,2,3,13,2,6,14,7,15,15,3,7,2,2,6,6,5,1,13,1,14,13,9,13,14,4,3,5,4,12,3,9,10,6,13,4,4,11,0,7,15,5,6,7,14,0,15,3,14,9,14,1,10,2,8,5,0,14,0,3,4,13,1,2,13,8,2,10,3,6,1,8,13,8,3,5,0,10,5,2,12,10,1,15,6,5,10,12,3,8,2,14,9,14,9,11,2,3,14,11,10,14,4,9,5,10,11,4,7,14,8,0,0,6,13,15,1,11,3,5,10,8,0,0,9,5,8,14,5,13,2,13,10,3,15,10,11,13,5,5,11,5,5,14,5,11,1,0,15,8,0,3,8,0,9,14,10,5,3,14,2,7,6,1,5,13,13,14,8,0,8,6,6,7,6,3,6,4,2,5,5,3,10,2,14,8,10,7,7,13,10,2,10,5,4,8,14,0,2,14,11,13,14,2,6,10,8,6,4,13,4,1,10,13,3,9,4,6,7,1,13,5,7,14,13,3,15,13,10,15,15,8,13,13,0,12,13,14,12,10,3,7,12,12,2,10,11,2,14,7,4,10,10,15,9,6,10,1,7,10,2,8,12,10,10,9,8,9,4,13,6,3,12,13,2,0,5,7,4,10,3,5,6,10,8,5,6,10,14,8,1,1,7,3,10,6,4,10,10,15,1,0,12,5,4,0,12,4,9,10,6,0,12,11,13,2,11,10,12,9,5,13,5,7,9,8,8,15,0,10,8,14,6,15,3,13,3,15,2,15,8,5,0,2,15,5,6,13,2,13,14,2,6,6,2,12,4,8,0,4,15,11,15,6,12,12,1,10,8,3,8,9,3,1,4,7,7,15,15,6,5,2,1,12,14,4,0,10,5,11,7,8,14,5,2,0,9,7,6,1,8,12,7,10,11,8,2,5,10,7,2,12,1,4,3,1,14,6,0,12,4,5,2,10,11,1,6,8,0,15,12,13,0,1,1,9,6,1,12,3,12,11,1,1,14,3,0,9,7,8,4,14,11,12,15,10,8,7,2,10,4,7,12,0,4,14,5,3,12,4,9,13,1,11,9,7,7,8,3,5,11,4,2,15,5,8,15,10,14,0,3,15,8,7,1,3,11,1,8,5,12,0,7,12,7,5,5,4,1,9,5,14,6,12,10,3,7,13,11,3,10,12,10,5,9,3,13,11,10,6,11,2,4,14,11,12,6,14,10,3,0,14,15,8,15,13,11,12,4,15,12,11,1,8,3,11,5,5,14,4,10,14,15,15,14,7,4,2,12,3,6,3,2,10,3,15,15,9,13,14,14,6,1,8,7,0,6,9,11,1,14,4,4,2,8,6,13,6,7,6,2,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 378.0, \"clip_end\": 383.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,14,15,4,8,15,2,1,2,11,12,4,6,5,11,11,10,14,4,0,7,8,2,10,5,3,4,3,5,4,6,14,5,5,8,4,11,15,3,5,2,1,5,4,5,15,10,0,11,5,6,15,0,1,6,6,13,8,7,5,12,10,10,3,8,1,15,9,12,1,14,0,10,15,3,15,3,6,1,4,14,4,10,8,8,10,14,5,14,4,10,0,8,0,8,7,6,5,13,6,8,13,10,5,6,0,5,4,6,6,2,15,7,1,3,7,8,3,12,3,0,8,3,7,0,11,4,12,3,11,12,11,13,7,15,5,1,5,10,11,7,8,10,4,3,11,14,1,5,3,0,13,2,4,4,7,14,2,3,12,2,15,6,13,11,4,10,2,0,12,5,13,13,2,14,8,1,2,14,8,6,1,9,12,11,6,11,3,0,8,10,15,5,13,5,14,9,1,11,0,2,15,15,5,0,7,2,2,11,4,10,10,1,0,14,3,6,3,11,5,6,5,0,8,3,8,8,9,7,0,14,3,5,7,6,0,3,13,5,13,14,1,2,13,5,15,11,6,5,1,13,3,1,12,9,5,0,8,0,2,14,10,8,7,9,0,5,1,14,4,14,6,12,15,13,3,4,8,3,7,8,15,10,12,8,3,4,12,11,13,5,3,13,1,11,7,5,15,6,10,5,3,10,1,15,8,8,14,15,7,2,6,7,11,13,8,11,15,5,8,7,13,5,8,1,4,14,13,5,4,8,5,14,8,2,8,0,4,9,7,5,15,10,8,11,3,4,10,0,7,1,0,3,8,12,4,8,12,4,3,0,7,15,6,12,7,3,1,9,5,9,2,15,14,5,14,5,1,7,5,0,7,9,7,15,10,4,3,14,0,2,8,12,3,7,5,0,8,10,2,1,6,0,6,1,3,1,12,13,4,12,1,8,2,5,3,0,13,11,4,10,2,2,3,13,2,6,14,7,15,15,3,7,2,2,6,6,5,1,13,1,14,13,9,13,14,4,3,5,4,12,3,9,10,6,13,4,4,11,0,7,15,5,6,7,14,0,15,3,14,9,14,1,10,2,8,5,0,14,0,3,4,13,1,2,13,8,2,10,3,6,1,8,13,8,3,5,0,10,5,2,12,10,1,15,6,5,10,12,3,8,2,14,9,14,9,11,2,3,14,11,10,14,4,9,5,10,11,4,7,14,8,0,0,6,13,15,1,11,3,5,10,8,0,0,9,5,8,14,5,13,2,13,10,3,15,10,11,13,5,5,11,5,5,14,5,11,1,0,15,8,0,3,8,0,9,14,10,5,3,14,2,7,6,1,5,13,13,14,8,0,8,6,6,7,6,3,6,4,2,5,5,3,10,2,14,8,10,7,7,13,10,2,10,5,4,8,14,0,2,14,11,13,14,2,6,10,8,6,4,13,4,1,10,13,3,9,4,6,7,1,13,5,7,14,13,3,15,13,10,15,15,8,13,13,0,12,13,14,12,10,3,7,12,12,2,10,11,2,14,7,4,10,10,15,9,6,10,1,7,10,2,8,12,10,10,9,8,9,4,13,6,3,12,13,2,0,5,7,4,10,3,5,6,10,8,5,6,10,14,8,1,1,7,3,10,6,4,10,10,15,1,0,12,5,4,0,12,4,9,10,6,0,12,11,13,2,11,10,12,9,5,13,5,7,9,8,8,15,0,10,8,14,6,15,3,13,3,15,2,15,8,5,0,2,15,5,6,13,2,13,14,2,6,6,2,12,4,8,0,4,15,11,15,6,12,12,1,10,8,3,8,9,3,1,4,7,7,15,15,6,5,2,1,12,14,4,0,10,5,11,7,8,14,5,2,0,9,7,6,1,8,12,7,10,11,8,2,5,10,7,2,12,1,4,3,1,14,6,0,12,4,5,2,10,11,1,6,8,0,15,12,13,0,1,1,9,6,1,12,3,12,11,1,1,14,3,0,9,7,8,4,14,11,12,15,10,8,7,2,10,4,7,12,0,4,14,5,3,12,4,9,13,1,11,9,7,7,8,3,5,11,4,2,15,5,8,15,10,14,0,3,15,8,7,1,3,11,1,8,5,12,0,7,12,7,5,5,4,1,9,5,14,6,12,10,3,7,13,11,3,10,12,10,5,9,3,13,11,10,6,11,2,4,14,11,12,6,14,10,3,0,14,15,8,15,13,11,12,4,15,12,11,1,8,3,11,5,5,14,4,10,14,15,15,14,7,4,2,12,3,6,3,2,10,3,15,15,9,13,14,14,6,1,8,7,0,6,9,11,1,14,4,4,2,8,6,13,6,7,6,2,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"2\", \"15\", \"15\"], \"clip_start\": 200.0, \"clip_end\": 204.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,14,15,4,8,15,2,1,2,11,12,4,6,5,11,11,10,14,4,0,7,8,2,10,5,3,4,3,5,4,6,14,5,5,8,4,11,15,3,5,2,1,5,4,5,15,10,0,11,5,6,15,0,1,6,6,13,8,7,5,12,10,10,3,8,1,15,9,12,1,14,0,10,15,3,15,3,6,1,4,14,4,10,8,8,10,14,5,14,4,10,0,8,0,8,7,6,5,13,6,8,13,10,5,6,0,5,4,6,6,2,15,7,1,3,7,8,3,12,3,0,8,3,7,0,11,4,12,3,11,12,11,13,7,15,5,1,5,10,11,7,8,10,4,3,11,14,1,5,3,0,13,2,4,4,7,14,2,3,12,2,15,6,13,11,4,10,2,0,12,5,13,13,2,14,8,1,2,14,8,6,1,9,12,11,6,11,3,0,8,10,15,5,13,5,14,9,1,11,0,2,15,15,5,0,7,2,2,11,4,10,10,1,0,14,3,6,3,11,5,6,5,0,8,3,8,8,9,7,0,14,3,5,7,6,0,3,13,5,13,14,1,2,13,5,15,11,6,5,1,13,3,1,12,9,5,0,8,0,2,14,10,8,7,9,0,5,1,14,4,14,6,12,15,13,3,4,8,3,7,8,15,10,12,8,3,4,12,11,13,5,3,13,1,11,7,5,15,6,10,5,3,10,1,15,8,8,14,15,7,2,6,7,11,13,8,11,15,5,8,7,13,5,8,1,4,14,13,5,4,8,5,14,8,2,8,0,4,9,7,5,15,10,8,11,3,4,10,0,7,1,0,3,8,12,4,8,12,4,3,0,7,15,6,12,7,3,1,9,5,9,2,15,14,5,14,5,1,7,5,0,7,9,7,15,10,4,3,14,0,2,8,12,3,7,5,0,8,10,2,1,6,0,6,1,3,1,12,13,4,12,1,8,2,5,3,0,13,11,4,10,2,2,3,13,2,6,14,7,15,15,3,7,2,2,6,6,5,1,13,1,14,13,9,13,14,4,3,5,4,12,3,9,10,6,13,4,4,11,0,7,15,5,6,7,14,0,15,3,14,9,14,1,10,2,8,5,0,14,0,3,4,13,1,2,13,8,2,10,3,6,1,8,13,8,3,5,0,10,5,2,12,10,1,15,6,5,10,12,3,8,2,14,9,14,9,11,2,3,14,11,10,14,4,9,5,10,11,4,7,14,8,0,0,6,13,15,1,11,3,5,10,8,0,0,9,5,8,14,5,13,2,13,10,3,15,10,11,13,5,5,11,5,5,14,5,11,1,0,15,8,0,3,8,0,9,14,10,5,3,14,2,7,6,1,5,13,13,14,8,0,8,6,6,7,6,3,6,4,2,5,5,3,10,2,14,8,10,7,7,13,10,2,10,5,4,8,14,0,2,14,11,13,14,2,6,10,8,6,4,13,4,1,10,13,3,9,4,6,7,1,13,5,7,14,13,3,15,13,10,15,15,8,13,13,0,12,13,14,12,10,3,7,12,12,2,10,11,2,14,7,4,10,10,15,9,6,10,1,7,10,2,8,12,10,10,9,8,9,4,13,6,3,12,13,2,0,5,7,4,10,3,5,6,10,8,5,6,10,14,8,1,1,7,3,10,6,4,10,10,15,1,0,12,5,4,0,12,4,9,10,6,0,12,11,13,2,11,10,12,9,5,13,5,7,9,8,8,15,0,10,8,14,6,15,3,13,3,15,2,15,8,5,0,2,15,5,6,13,2,13,14,2,6,6,2,12,4,8,0,4,15,11,15,6,12,12,1,10,8,3,8,9,3,1,4,7,7,15,15,6,5,2,1,12,14,4,0,10,5,11,7,8,14,5,2,0,9,7,6,1,8,12,7,10,11,8,2,5,10,7,2,12,1,4,3,1,14,6,0,12,4,5,2,10,11,1,6,8,0,15,12,13,0,1,1,9,6,1,12,3,12,11,1,1,14,3,0,9,7,8,4,14,11,12,15,10,8,7,2,10,4,7,12,0,4,14,5,3,12,4,9,13,1,11,9,7,7,8,3,5,11,4,2,15,5,8,15,10,14,0,3,15,8,7,1,3,11,1,8,5,12,0,7,12,7,5,5,4,1,9,5,14,6,12,10,3,7,13,11,3,10,12,10,5,9,3,13,11,10,6,11,2,4,14,11,12,6,14,10,3,0,14,15,8,15,13,11,12,4,15,12,11,1,8,3,11,5,5,14,4,10,14,15,15,14,7,4,2,12,3,6,3,2,10,3,15,15,9,13,14,14,6,1,8,7,0,6,9,11,1,14,4,4,2,8,6,13,6,7,6,2,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"11\", \"13\", \"5\"], \"clip_start\": 287.0, \"clip_end\": 292.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,14,15,4,8,15,2,1,2,11,12,4,6,5,11,11,10,14,4,0,7,8,2,10,5,3,4,3,5,4,6,14,5,5,8,4,11,15,3,5,2,1,5,4,5,15,10,0,11,5,6,15,0,1,6,6,13,8,7,5,12,10,10,3,8,1,15,9,12,1,14,0,10,15,3,15,3,6,1,4,14,4,10,8,8,10,14,5,14,4,10,0,8,0,8,7,6,5,13,6,8,13,10,5,6,0,5,4,6,6,2,15,7,1,3,7,8,3,12,3,0,8,3,7,0,11,4,12,3,11,12,11,13,7,15,5,1,5,10,11,7,8,10,4,3,11,14,1,5,3,0,13,2,4,4,7,14,2,3,12,2,15,6,13,11,4,10,2,0,12,5,13,13,2,14,8,1,2,14,8,6,1,9,12,11,6,11,3,0,8,10,15,5,13,5,14,9,1,11,0,2,15,15,5,0,7,2,2,11,4,10,10,1,0,14,3,6,3,11,5,6,5,0,8,3,8,8,9,7,0,14,3,5,7,6,0,3,13,5,13,14,1,2,13,5,15,11,6,5,1,13,3,1,12,9,5,0,8,0,2,14,10,8,7,9,0,5,1,14,4,14,6,12,15,13,3,4,8,3,7,8,15,10,12,8,3,4,12,11,13,5,3,13,1,11,7,5,15,6,10,5,3,10,1,15,8,8,14,15,7,2,6,7,11,13,8,11,15,5,8,7,13,5,8,1,4,14,13,5,4,8,5,14,8,2,8,0,4,9,7,5,15,10,8,11,3,4,10,0,7,1,0,3,8,12,4,8,12,4,3,0,7,15,6,12,7,3,1,9,5,9,2,15,14,5,14,5,1,7,5,0,7,9,7,15,10,4,3,14,0,2,8,12,3,7,5,0,8,10,2,1,6,0,6,1,3,1,12,13,4,12,1,8,2,5,3,0,13,11,4,10,2,2,3,13,2,6,14,7,15,15,3,7,2,2,6,6,5,1,13,1,14,13,9,13,14,4,3,5,4,12,3,9,10,6,13,4,4,11,0,7,15,5,6,7,14,0,15,3,14,9,14,1,10,2,8,5,0,14,0,3,4,13,1,2,13,8,2,10,3,6,1,8,13,8,3,5,0,10,5,2,12,10,1,15,6,5,10,12,3,8,2,14,9,14,9,11,2,3,14,11,10,14,4,9,5,10,11,4,7,14,8,0,0,6,13,15,1,11,3,5,10,8,0,0,9,5,8,14,5,13,2,13,10,3,15,10,11,13,5,5,11,5,5,14,5,11,1,0,15,8,0,3,8,0,9,14,10,5,3,14,2,7,6,1,5,13,13,14,8,0,8,6,6,7,6,3,6,4,2,5,5,3,10,2,14,8,10,7,7,13,10,2,10,5,4,8,14,0,2,14,11,13,14,2,6,10,8,6,4,13,4,1,10,13,3,9,4,6,7,1,13,5,7,14,13,3,15,13,10,15,15,8,13,13,0,12,13,14,12,10,3,7,12,12,2,10,11,2,14,7,4,10,10,15,9,6,10,1,7,10,2,8,12,10,10,9,8,9,4,13,6,3,12,13,2,0,5,7,4,10,3,5,6,10,8,5,6,10,14,8,1,1,7,3,10,6,4,10,10,15,1,0,12,5,4,0,12,4,9,10,6,0,12,11,13,2,11,10,12,9,5,13,5,7,9,8,8,15,0,10,8,14,6,15,3,13,3,15,2,15,8,5,0,2,15,5,6,13,2,13,14,2,6,6,2,12,4,8,0,4,15,11,15,6,12,12,1,10,8,3,8,9,3,1,4,7,7,15,15,6,5,2,1,12,14,4,0,10,5,11,7,8,14,5,2,0,9,7,6,1,8,12,7,10,11,8,2,5,10,7,2,12,1,4,3,1,14,6,0,12,4,5,2,10,11,1,6,8,0,15,12,13,0,1,1,9,6,1,12,3,12,11,1,1,14,3,0,9,7,8,4,14,11,12,15,10,8,7,2,10,4,7,12,0,4,14,5,3,12,4,9,13,1,11,9,7,7,8,3,5,11,4,2,15,5,8,15,10,14,0,3,15,8,7,1,3,11,1,8,5,12,0,7,12,7,5,5,4,1,9,5,14,6,12,10,3,7,13,11,3,10,12,10,5,9,3,13,11,10,6,11,2,4,14,11,12,6,14,10,3,0,14,15,8,15,13,11,12,4,15,12,11,1,8,3,11,5,5,14,4,10,14,15,15,14,7,4,2,12,3,6,3,2,10,3,15,15,9,13,14,14,6,1,8,7,0,6,9,11,1,14,4,4,2,8,6,13,6,7,6,2,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"10\", \"10\", \"15\", \"1\"], \"clip_start\": 718.0, \"clip_end\": 723.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,14,15,4,8,15,2,1,2,11,12,4,6,5,11,11,10,14,4,0,7,8,2,10,5,3,4,3,5,4,6,14,5,5,8,4,11,15,3,5,2,1,5,4,5,15,10,0,11,5,6,15,0,1,6,6,13,8,7,5,12,10,10,3,8,1,15,9,12,1,14,0,10,15,3,15,3,6,1,4,14,4,10,8,8,10,14,5,14,4,10,0,8,0,8,7,6,5,13,6,8,13,10,5,6,0,5,4,6,6,2,15,7,1,3,7,8,3,12,3,0,8,3,7,0,11,4,12,3,11,12,11,13,7,15,5,1,5,10,11,7,8,10,4,3,11,14,1,5,3,0,13,2,4,4,7,14,2,3,12,2,15,6,13,11,4,10,2,0,12,5,13,13,2,14,8,1,2,14,8,6,1,9,12,11,6,11,3,0,8,10,15,5,13,5,14,9,1,11,0,2,15,15,5,0,7,2,2,11,4,10,10,1,0,14,3,6,3,11,5,6,5,0,8,3,8,8,9,7,0,14,3,5,7,6,0,3,13,5,13,14,1,2,13,5,15,11,6,5,1,13,3,1,12,9,5,0,8,0,2,14,10,8,7,9,0,5,1,14,4,14,6,12,15,13,3,4,8,3,7,8,15,10,12,8,3,4,12,11,13,5,3,13,1,11,7,5,15,6,10,5,3,10,1,15,8,8,14,15,7,2,6,7,11,13,8,11,15,5,8,7,13,5,8,1,4,14,13,5,4,8,5,14,8,2,8,0,4,9,7,5,15,10,8,11,3,4,10,0,7,1,0,3,8,12,4,8,12,4,3,0,7,15,6,12,7,3,1,9,5,9,2,15,14,5,14,5,1,7,5,0,7,9,7,15,10,4,3,14,0,2,8,12,3,7,5,0,8,10,2,1,6,0,6,1,3,1,12,13,4,12,1,8,2,5,3,0,13,11,4,10,2,2,3,13,2,6,14,7,15,15,3,7,2,2,6,6,5,1,13,1,14,13,9,13,14,4,3,5,4,12,3,9,10,6,13,4,4,11,0,7,15,5,6,7,14,0,15,3,14,9,14,1,10,2,8,5,0,14,0,3,4,13,1,2,13,8,2,10,3,6,1,8,13,8,3,5,0,10,5,2,12,10,1,15,6,5,10,12,3,8,2,14,9,14,9,11,2,3,14,11,10,14,4,9,5,10,11,4,7,14,8,0,0,6,13,15,1,11,3,5,10,8,0,0,9,5,8,14,5,13,2,13,10,3,15,10,11,13,5,5,11,5,5,14,5,11,1,0,15,8,0,3,8,0,9,14,10,5,3,14,2,7,6,1,5,13,13,14,8,0,8,6,6,7,6,3,6,4,2,5,5,3,10,2,14,8,10,7,7,13,10,2,10,5,4,8,14,0,2,14,11,13,14,2,6,10,8,6,4,13,4,1,10,13,3,9,4,6,7,1,13,5,7,14,13,3,15,13,10,15,15,8,13,13,0,12,13,14,12,10,3,7,12,12,2,10,11,2,14,7,4,10,10,15,9,6,10,1,7,10,2,8,12,10,10,9,8,9,4,13,6,3,12,13,2,0,5,7,4,10,3,5,6,10,8,5,6,10,14,8,1,1,7,3,10,6,4,10,10,15,1,0,12,5,4,0,12,4,9,10,6,0,12,11,13,2,11,10,12,9,5,13,5,7,9,8,8,15,0,10,8,14,6,15,3,13,3,15,2,15,8,5,0,2,15,5,6,13,2,13,14,2,6,6,2,12,4,8,0,4,15,11,15,6,12,12,1,10,8,3,8,9,3,1,4,7,7,15,15,6,5,2,1,12,14,4,0,10,5,11,7,8,14,5,2,0,9,7,6,1,8,12,7,10,11,8,2,5,10,7,2,12,1,4,3,1,14,6,0,12,4,5,2,10,11,1,6,8,0,15,12,13,0,1,1,9,6,1,12,3,12,11,1,1,14,3,0,9,7,8,4,14,11,12,15,10,8,7,2,10,4,7,12,0,4,14,5,3,12,4,9,13,1,11,9,7,7,8,3,5,11,4,2,15,5,8,15,10,14,0,3,15,8,7,1,3,11,1,8,5,12,0,7,12,7,5,5,4,1,9,5,14,6,12,10,3,7,13,11,3,10,12,10,5,9,3,13,11,10,6,11,2,4,14,11,12,6,14,10,3,0,14,15,8,15,13,11,12,4,15,12,11,1,8,3,11,5,5,14,4,10,14,15,15,14,7,4,2,12,3,6,3,2,10,3,15,15,9,13,14,14,6,1,8,7,0,6,9,11,1,14,4,4,2,8,6,13,6,7,6,2,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 562.0, \"clip_end\": 568.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,14,15,4,8,15,2,1,2,11,12,4,6,5,11,11,10,14,4,0,7,8,2,10,5,3,4,3,5,4,6,14,5,5,8,4,11,15,3,5,2,1,5,4,5,15,10,0,11,5,6,15,0,1,6,6,13,8,7,5,12,10,10,3,8,1,15,9,12,1,14,0,10,15,3,15,3,6,1,4,14,4,10,8,8,10,14,5,14,4,10,0,8,0,8,7,6,5,13,6,8,13,10,5,6,0,5,4,6,6,2,15,7,1,3,7,8,3,12,3,0,8,3,7,0,11,4,12,3,11,12,11,13,7,15,5,1,5,10,11,7,8,10,4,3,11,14,1,5,3,0,13,2,4,4,7,14,2,3,12,2,15,6,13,11,4,10,2,0,12,5,13,13,2,14,8,1,2,14,8,6,1,9,12,11,6,11,3,0,8,10,15,5,13,5,14,9,1,11,0,2,15,15,5,0,7,2,2,11,4,10,10,1,0,14,3,6,3,11,5,6,5,0,8,3,8,8,9,7,0,14,3,5,7,6,0,3,13,5,13,14,1,2,13,5,15,11,6,5,1,13,3,1,12,9,5,0,8,0,2,14,10,8,7,9,0,5,1,14,4,14,6,12,15,13,3,4,8,3,7,8,15,10,12,8,3,4,12,11,13,5,3,13,1,11,7,5,15,6,10,5,3,10,1,15,8,8,14,15,7,2,6,7,11,13,8,11,15,5,8,7,13,5,8,1,4,14,13,5,4,8,5,14,8,2,8,0,4,9,7,5,15,10,8,11,3,4,10,0,7,1,0,3,8,12,4,8,12,4,3,0,7,15,6,12,7,3,1,9,5,9,2,15,14,5,14,5,1,7,5,0,7,9,7,15,10,4,3,14,0,2,8,12,3,7,5,0,8,10,2,1,6,0,6,1,3,1,12,13,4,12,1,8,2,5,3,0,13,11,4,10,2,2,3,13,2,6,14,7,15,15,3,7,2,2,6,6,5,1,13,1,14,13,9,13,14,4,3,5,4,12,3,9,10,6,13,4,4,11,0,7,15,5,6,7,14,0,15,3,14,9,14,1,10,2,8,5,0,14,0,3,4,13,1,2,13,8,2,10,3,6,1,8,13,8,3,5,0,10,5,2,12,10,1,15,6,5,10,12,3,8,2,14,9,14,9,11,2,3,14,11,10,14,4,9,5,10,11,4,7,14,8,0,0,6,13,15,1,11,3,5,10,8,0,0,9,5,8,14,5,13,2,13,10,3,15,10,11,13,5,5,11,5,5,14,5,11,1,0,15,8,0,3,8,0,9,14,10,5,3,14,2,7,6,1,5,13,13,14,8,0,8,6,6,7,6,3,6,4,2,5,5,3,10,2,14,8,10,7,7,13,10,2,10,5,4,8,14,0,2,14,11,13,14,2,6,10,8,6,4,13,4,1,10,13,3,9,4,6,7,1,13,5,7,14,13,3,15,13,10,15,15,8,13,13,0,12,13,14,12,10,3,7,12,12,2,10,11,2,14,7,4,10,10,15,9,6,10,1,7,10,2,8,12,10,10,9,8,9,4,13,6,3,12,13,2,0,5,7,4,10,3,5,6,10,8,5,6,10,14,8,1,1,7,3,10,6,4,10,10,15,1,0,12,5,4,0,12,4,9,10,6,0,12,11,13,2,11,10,12,9,5,13,5,7,9,8,8,15,0,10,8,14,6,15,3,13,3,15,2,15,8,5,0,2,15,5,6,13,2,13,14,2,6,6,2,12,4,8,0,4,15,11,15,6,12,12,1,10,8,3,8,9,3,1,4,7,7,15,15,6,5,2,1,12,14,4,0,10,5,11,7,8,14,5,2,0,9,7,6,1,8,12,7,10,11,8,2,5,10,7,2,12,1,4,3,1,14,6,0,12,4,5,2,10,11,1,6,8,0,15,12,13,0,1,1,9,6,1,12,3,12,11,1,1,14,3,0,9,7,8,4,14,11,12,15,10,8,7,2,10,4,7,12,0,4,14,5,3,12,4,9,13,1,11,9,7,7,8,3,5,11,4,2,15,5,8,15,10,14,0,3,15,8,7,1,3,11,1,8,5,12,0,7,12,7,5,5,4,1,9,5,14,6,12,10,3,7,13,11,3,10,12,10,5,9,3,13,11,10,6,11,2,4,14,11,12,6,14,10,3,0,14,15,8,15,13,11,12,4,15,12,11,1,8,3,11,5,5,14,4,10,14,15,15,14,7,4,2,12,3,6,3,2,10,3,15,15,9,13,14,14,6,1,8,7,0,6,9,11,1,14,4,4,2,8,6,13,6,7,6,2,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"7\"], \"clip_start\": 658.0, \"clip_end\": 661.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q15_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,14,15,4,8,15,2,1,2,11,12,4,6,5,11,11,10,14,4,0,7,8,2,10,5,3,4,3,5,4,6,14,5,5,8,4,11,15,3,5,2,1,5,4,5,15,10,0,11,5,6,15,0,1,6,6,13,8,7,5,12,10,10,3,8,1,15,9,12,1,14,0,10,15,3,15,3,6,1,4,14,4,10,8,8,10,14,5,14,4,10,0,8,0,8,7,6,5,13,6,8,13,10,5,6,0,5,4,6,6,2,15,7,1,3,7,8,3,12,3,0,8,3,7,0,11,4,12,3,11,12,11,13,7,15,5,1,5,10,11,7,8,10,4,3,11,14,1,5,3,0,13,2,4,4,7,14,2,3,12,2,15,6,13,11,4,10,2,0,12,5,13,13,2,14,8,1,2,14,8,6,1,9,12,11,6,11,3,0,8,10,15,5,13,5,14,9,1,11,0,2,15,15,5,0,7,2,2,11,4,10,10,1,0,14,3,6,3,11,5,6,5,0,8,3,8,8,9,7,0,14,3,5,7,6,0,3,13,5,13,14,1,2,13,5,15,11,6,5,1,13,3,1,12,9,5,0,8,0,2,14,10,8,7,9,0,5,1,14,4,14,6,12,15,13,3,4,8,3,7,8,15,10,12,8,3,4,12,11,13,5,3,13,1,11,7,5,15,6,10,5,3,10,1,15,8,8,14,15,7,2,6,7,11,13,8,11,15,5,8,7,13,5,8,1,4,14,13,5,4,8,5,14,8,2,8,0,4,9,7,5,15,10,8,11,3,4,10,0,7,1,0,3,8,12,4,8,12,4,3,0,7,15,6,12,7,3,1,9,5,9,2,15,14,5,14,5,1,7,5,0,7,9,7,15,10,4,3,14,0,2,8,12,3,7,5,0,8,10,2,1,6,0,6,1,3,1,12,13,4,12,1,8,2,5,3,0,13,11,4,10,2,2,3,13,2,6,14,7,15,15,3,7,2,2,6,6,5,1,13,1,14,13,9,13,14,4,3,5,4,12,3,9,10,6,13,4,4,11,0,7,15,5,6,7,14,0,15,3,14,9,14,1,10,2,8,5,0,14,0,3,4,13,1,2,13,8,2,10,3,6,1,8,13,8,3,5,0,10,5,2,12,10,1,15,6,5,10,12,3,8,2,14,9,14,9,11,2,3,14,11,10,14,4,9,5,10,11,4,7,14,8,0,0,6,13,15,1,11,3,5,10,8,0,0,9,5,8,14,5,13,2,13,10,3,15,10,11,13,5,5,11,5,5,14,5,11,1,0,15,8,0,3,8,0,9,14,10,5,3,14,2,7,6,1,5,13,13,14,8,0,8,6,6,7,6,3,6,4,2,5,5,3,10,2,14,8,10,7,7,13,10,2,10,5,4,8,14,0,2,14,11,13,14,2,6,10,8,6,4,13,4,1,10,13,3,9,4,6,7,1,13,5,7,14,13,3,15,13,10,15,15,8,13,13,0,12,13,14,12,10,3,7,12,12,2,10,11,2,14,7,4,10,10,15,9,6,10,1,7,10,2,8,12,10,10,9,8,9,4,13,6,3,12,13,2,0,5,7,4,10,3,5,6,10,8,5,6,10,14,8,1,1,7,3,10,6,4,10,10,15,1,0,12,5,4,0,12,4,9,10,6,0,12,11,13,2,11,10,12,9,5,13,5,7,9,8,8,15,0,10,8,14,6,15,3,13,3,15,2,15,8,5,0,2,15,5,6,13,2,13,14,2,6,6,2,12,4,8,0,4,15,11,15,6,12,12,1,10,8,3,8,9,3,1,4,7,7,15,15,6,5,2,1,12,14,4,0,10,5,11,7,8,14,5,2,0,9,7,6,1,8,12,7,10,11,8,2,5,10,7,2,12,1,4,3,1,14,6,0,12,4,5,2,10,11,1,6,8,0,15,12,13,0,1,1,9,6,1,12,3,12,11,1,1,14,3,0,9,7,8,4,14,11,12,15,10,8,7,2,10,4,7,12,0,4,14,5,3,12,4,9,13,1,11,9,7,7,8,3,5,11,4,2,15,5,8,15,10,14,0,3,15,8,7,1,3,11,1,8,5,12,0,7,12,7,5,5,4,1,9,5,14,6,12,10,3,7,13,11,3,10,12,10,5,9,3,13,11,10,6,11,2,4,14,11,12,6,14,10,3,0,14,15,8,15,13,11,12,4,15,12,11,1,8,3,11,5,5,14,4,10,14,15,15,14,7,4,2,12,3,6,3,2,10,3,15,15,9,13,14,14,6,1,8,7,0,6,9,11,1,14,4,4,2,8,6,13,6,7,6,2,4", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"6\", \"8\"], \"clip_start\": 817.0, \"clip_end\": 821.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,1,11,7,0,2,14,6,14,5,8,5,15,14,9,14,0,2,10,4,1,9,0,9,0,6,12,1,4,4,12,11,13,10,6,2,2,1,14,2,10,9,7,4,13,12,3,2,14,13,8,10,3,12,12,8,10,12,6,13,9,0,7,3,7,15,13,12,7,15,11,2,15,14,13,4,6,5,9,6,6,7,9,6,4,15,1,6,13,6,13,5,6,15,13,0,5,13,14,11,8,13,9,3,15,6,4,8,9,1,0,3,9,14,4,3,2,6,13,1,10,6,5,9,5,2,14,3,6,5,3,5,6,12,3,0,15,6,1,4,6,11,0,6,0,12,6,3,5,0,1,1,1,8,10,12,0,2,10,10,8,11,2,12,12,8,13,12,1,11,14,14,8,0,8,4,0,9,5,10,0,3,11,13,14,15,9,2,7,13,2,4,6,2,4,0,0,1,15,6,12,11,14,3,6,2,2,2,6,4,9,5,6,15,5,2,7,12,5,2,10,1,10,7,9,3,5,6,13,14,10,3,3,1,14,7,3,15,2,5,6,6,6,13,7,2,11,13,0,15,0,4,10,14,6,11,0,8,8,7,2,2,12,3,4,3,13,8,5,6,0,10,14,14,9,9,14,2,3,14,1,11,1,7,4,3,9,0,1,3,14,3,5,13,6,14,11,0,9,15,8,15,13,1,12,12,14,9,10,8,3,10,14,7,9,15,11,10,11,9,12,3,4,10,11,0,7,3,6,10,6,5,10,10,13,3,11,12,14,13,10,1,10,13,14,13,6,13,9,14,6,0,0,15,13,0,7,9,10,7,12,5,14,12,15,7,7,2,3,3,5,10,9,5,15,8,6,5,2,2,8,10,2,15,10,5,3,8,7,9,3,3,13,1,1,15,11,3,2,0,5,8,11,10,7,12,3,15,7,3,14,7,12,12,4,13,11,5,10,5,1,13,15,13,6,0,6,10,14,6,8,1,3,6,2,11,2,3,14,12,13,7,15,8,1,12,2,1,13,11,10,9,2,1,3,0,9,11,9,6,13,4,11,12,14,5,5,7,11,14,11,15,7,11,1,0,4,0,2,8,11,8,5,1,2,7,6,6,6,3,7,11,3,12,0,6,0,7,5,11,7,1,10,13,4,0,6,4,13,2,10,9,3,1,14,15,12,5,5,15,1,10,5,3,0,13,5,7,5,14,4,0,12,3,13,7,2,3,2,14,7,15,4,5,1,9,5,11,11,13,5,10,12,5,4,11,11,1,11,14,12,11,1,2,10,13,14,12,1,0,8,8,11,14,0,8,9,8,2,10,3,0,4,4,12,4,13,10,12,5,11,0,3,5,15,0,3,15,15,8,7,4,5,0,1,3,15,12,4,12,13,15,13,8,2,9,15,5,1,11,5,5,15,1,5,11,5,10,7,6,10,10,10,3,0,11,13,5,14,3,0,9,1,10,14,1,9,9,15,2,12,14,9,1,0,4,1,2,9,5,13,1,0,12,15,9,15,2,3,3,3,13,14,7,13,2,15,11,2,6,0,15,11,14,4,0,3,14,6,0,15,10,0,0,4,7,6,2,12,4,5,0,12,2,12,13,6,11,12,12,11,12,10,12,14,5,2,5,14,15,10,6,8,12,8,8,5,0,3,7,15,8,6,13,1,12,4,2,12,12,3,11,11,5,0,3,13,3,13,6,13,7,13,1,2,14,0,0,7,2,10,8,4,9,12,4,9,13,6,13,0,2,13,15,5,1,3,3,12,12,11,7,8,2,1,14,7,14,4,11,3,15,11,5,8,2,13,2,14,8,11,11,6,12,7,9,7,14,9,15,14,7,11,9,12,4,4,2,6,8,12,5,14,11,8,10,12,5,4,4,9,11,11,13,2,12,2,3,12,15,7,11,8,10,13,1,6,9,9,7,9,11,15,9,5,2,4,4,11,0,11,2,9,13,8,0,15,2,12,2,14,13,7,9,3,0,3,8,3,12,13,7,10,6,3,12,8,5,0,4,7,11,0,0,11,12,8,2,4,8,11,14,1,0,11,7,0,11,3,1,4,15,11,2,1,6,0,10,11,2,15,6,11,11,8,11,12,6,11,13,9,15,11,1,15,4,2,6,8,3,3,5,7,1,14,7,14,4,2,7,12,10,4,0,8,10,5,8,7,13,14,11,11,8,1,13,2,7,15,1,12,7,2,14,5,3,13,9,8,12,7,1,9,14,14,4,2,8,13,10,2,2,0,7,7,1,7,6,2,7,1,9,15,4,8,6,11,14,4,5,1,9,1,8,1,2,7,4,5,5,13,10,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 985.0, \"clip_end\": 990.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,1,11,7,0,2,14,6,14,5,8,5,15,14,9,14,0,2,10,4,1,9,0,9,0,6,12,1,4,4,12,11,13,10,6,2,2,1,14,2,10,9,7,4,13,12,3,2,14,13,8,10,3,12,12,8,10,12,6,13,9,0,7,3,7,15,13,12,7,15,11,2,15,14,13,4,6,5,9,6,6,7,9,6,4,15,1,6,13,6,13,5,6,15,13,0,5,13,14,11,8,13,9,3,15,6,4,8,9,1,0,3,9,14,4,3,2,6,13,1,10,6,5,9,5,2,14,3,6,5,3,5,6,12,3,0,15,6,1,4,6,11,0,6,0,12,6,3,5,0,1,1,1,8,10,12,0,2,10,10,8,11,2,12,12,8,13,12,1,11,14,14,8,0,8,4,0,9,5,10,0,3,11,13,14,15,9,2,7,13,2,4,6,2,4,0,0,1,15,6,12,11,14,3,6,2,2,2,6,4,9,5,6,15,5,2,7,12,5,2,10,1,10,7,9,3,5,6,13,14,10,3,3,1,14,7,3,15,2,5,6,6,6,13,7,2,11,13,0,15,0,4,10,14,6,11,0,8,8,7,2,2,12,3,4,3,13,8,5,6,0,10,14,14,9,9,14,2,3,14,1,11,1,7,4,3,9,0,1,3,14,3,5,13,6,14,11,0,9,15,8,15,13,1,12,12,14,9,10,8,3,10,14,7,9,15,11,10,11,9,12,3,4,10,11,0,7,3,6,10,6,5,10,10,13,3,11,12,14,13,10,1,10,13,14,13,6,13,9,14,6,0,0,15,13,0,7,9,10,7,12,5,14,12,15,7,7,2,3,3,5,10,9,5,15,8,6,5,2,2,8,10,2,15,10,5,3,8,7,9,3,3,13,1,1,15,11,3,2,0,5,8,11,10,7,12,3,15,7,3,14,7,12,12,4,13,11,5,10,5,1,13,15,13,6,0,6,10,14,6,8,1,3,6,2,11,2,3,14,12,13,7,15,8,1,12,2,1,13,11,10,9,2,1,3,0,9,11,9,6,13,4,11,12,14,5,5,7,11,14,11,15,7,11,1,0,4,0,2,8,11,8,5,1,2,7,6,6,6,3,7,11,3,12,0,6,0,7,5,11,7,1,10,13,4,0,6,4,13,2,10,9,3,1,14,15,12,5,5,15,1,10,5,3,0,13,5,7,5,14,4,0,12,3,13,7,2,3,2,14,7,15,4,5,1,9,5,11,11,13,5,10,12,5,4,11,11,1,11,14,12,11,1,2,10,13,14,12,1,0,8,8,11,14,0,8,9,8,2,10,3,0,4,4,12,4,13,10,12,5,11,0,3,5,15,0,3,15,15,8,7,4,5,0,1,3,15,12,4,12,13,15,13,8,2,9,15,5,1,11,5,5,15,1,5,11,5,10,7,6,10,10,10,3,0,11,13,5,14,3,0,9,1,10,14,1,9,9,15,2,12,14,9,1,0,4,1,2,9,5,13,1,0,12,15,9,15,2,3,3,3,13,14,7,13,2,15,11,2,6,0,15,11,14,4,0,3,14,6,0,15,10,0,0,4,7,6,2,12,4,5,0,12,2,12,13,6,11,12,12,11,12,10,12,14,5,2,5,14,15,10,6,8,12,8,8,5,0,3,7,15,8,6,13,1,12,4,2,12,12,3,11,11,5,0,3,13,3,13,6,13,7,13,1,2,14,0,0,7,2,10,8,4,9,12,4,9,13,6,13,0,2,13,15,5,1,3,3,12,12,11,7,8,2,1,14,7,14,4,11,3,15,11,5,8,2,13,2,14,8,11,11,6,12,7,9,7,14,9,15,14,7,11,9,12,4,4,2,6,8,12,5,14,11,8,10,12,5,4,4,9,11,11,13,2,12,2,3,12,15,7,11,8,10,13,1,6,9,9,7,9,11,15,9,5,2,4,4,11,0,11,2,9,13,8,0,15,2,12,2,14,13,7,9,3,0,3,8,3,12,13,7,10,6,3,12,8,5,0,4,7,11,0,0,11,12,8,2,4,8,11,14,1,0,11,7,0,11,3,1,4,15,11,2,1,6,0,10,11,2,15,6,11,11,8,11,12,6,11,13,9,15,11,1,15,4,2,6,8,3,3,5,7,1,14,7,14,4,2,7,12,10,4,0,8,10,5,8,7,13,14,11,11,8,1,13,2,7,15,1,12,7,2,14,5,3,13,9,8,12,7,1,9,14,14,4,2,8,13,10,2,2,0,7,7,1,7,6,2,7,1,9,15,4,8,6,11,14,4,5,1,9,1,8,1,2,7,4,5,5,13,10,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 404.0, \"clip_end\": 409.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,1,11,7,0,2,14,6,14,5,8,5,15,14,9,14,0,2,10,4,1,9,0,9,0,6,12,1,4,4,12,11,13,10,6,2,2,1,14,2,10,9,7,4,13,12,3,2,14,13,8,10,3,12,12,8,10,12,6,13,9,0,7,3,7,15,13,12,7,15,11,2,15,14,13,4,6,5,9,6,6,7,9,6,4,15,1,6,13,6,13,5,6,15,13,0,5,13,14,11,8,13,9,3,15,6,4,8,9,1,0,3,9,14,4,3,2,6,13,1,10,6,5,9,5,2,14,3,6,5,3,5,6,12,3,0,15,6,1,4,6,11,0,6,0,12,6,3,5,0,1,1,1,8,10,12,0,2,10,10,8,11,2,12,12,8,13,12,1,11,14,14,8,0,8,4,0,9,5,10,0,3,11,13,14,15,9,2,7,13,2,4,6,2,4,0,0,1,15,6,12,11,14,3,6,2,2,2,6,4,9,5,6,15,5,2,7,12,5,2,10,1,10,7,9,3,5,6,13,14,10,3,3,1,14,7,3,15,2,5,6,6,6,13,7,2,11,13,0,15,0,4,10,14,6,11,0,8,8,7,2,2,12,3,4,3,13,8,5,6,0,10,14,14,9,9,14,2,3,14,1,11,1,7,4,3,9,0,1,3,14,3,5,13,6,14,11,0,9,15,8,15,13,1,12,12,14,9,10,8,3,10,14,7,9,15,11,10,11,9,12,3,4,10,11,0,7,3,6,10,6,5,10,10,13,3,11,12,14,13,10,1,10,13,14,13,6,13,9,14,6,0,0,15,13,0,7,9,10,7,12,5,14,12,15,7,7,2,3,3,5,10,9,5,15,8,6,5,2,2,8,10,2,15,10,5,3,8,7,9,3,3,13,1,1,15,11,3,2,0,5,8,11,10,7,12,3,15,7,3,14,7,12,12,4,13,11,5,10,5,1,13,15,13,6,0,6,10,14,6,8,1,3,6,2,11,2,3,14,12,13,7,15,8,1,12,2,1,13,11,10,9,2,1,3,0,9,11,9,6,13,4,11,12,14,5,5,7,11,14,11,15,7,11,1,0,4,0,2,8,11,8,5,1,2,7,6,6,6,3,7,11,3,12,0,6,0,7,5,11,7,1,10,13,4,0,6,4,13,2,10,9,3,1,14,15,12,5,5,15,1,10,5,3,0,13,5,7,5,14,4,0,12,3,13,7,2,3,2,14,7,15,4,5,1,9,5,11,11,13,5,10,12,5,4,11,11,1,11,14,12,11,1,2,10,13,14,12,1,0,8,8,11,14,0,8,9,8,2,10,3,0,4,4,12,4,13,10,12,5,11,0,3,5,15,0,3,15,15,8,7,4,5,0,1,3,15,12,4,12,13,15,13,8,2,9,15,5,1,11,5,5,15,1,5,11,5,10,7,6,10,10,10,3,0,11,13,5,14,3,0,9,1,10,14,1,9,9,15,2,12,14,9,1,0,4,1,2,9,5,13,1,0,12,15,9,15,2,3,3,3,13,14,7,13,2,15,11,2,6,0,15,11,14,4,0,3,14,6,0,15,10,0,0,4,7,6,2,12,4,5,0,12,2,12,13,6,11,12,12,11,12,10,12,14,5,2,5,14,15,10,6,8,12,8,8,5,0,3,7,15,8,6,13,1,12,4,2,12,12,3,11,11,5,0,3,13,3,13,6,13,7,13,1,2,14,0,0,7,2,10,8,4,9,12,4,9,13,6,13,0,2,13,15,5,1,3,3,12,12,11,7,8,2,1,14,7,14,4,11,3,15,11,5,8,2,13,2,14,8,11,11,6,12,7,9,7,14,9,15,14,7,11,9,12,4,4,2,6,8,12,5,14,11,8,10,12,5,4,4,9,11,11,13,2,12,2,3,12,15,7,11,8,10,13,1,6,9,9,7,9,11,15,9,5,2,4,4,11,0,11,2,9,13,8,0,15,2,12,2,14,13,7,9,3,0,3,8,3,12,13,7,10,6,3,12,8,5,0,4,7,11,0,0,11,12,8,2,4,8,11,14,1,0,11,7,0,11,3,1,4,15,11,2,1,6,0,10,11,2,15,6,11,11,8,11,12,6,11,13,9,15,11,1,15,4,2,6,8,3,3,5,7,1,14,7,14,4,2,7,12,10,4,0,8,10,5,8,7,13,14,11,11,8,1,13,2,7,15,1,12,7,2,14,5,3,13,9,8,12,7,1,9,14,14,4,2,8,13,10,2,2,0,7,7,1,7,6,2,7,1,9,15,4,8,6,11,14,4,5,1,9,1,8,1,2,7,4,5,5,13,10,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"5\", \"11\", \"5\"], \"clip_start\": 623.0, \"clip_end\": 628.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,1,11,7,0,2,14,6,14,5,8,5,15,14,9,14,0,2,10,4,1,9,0,9,0,6,12,1,4,4,12,11,13,10,6,2,2,1,14,2,10,9,7,4,13,12,3,2,14,13,8,10,3,12,12,8,10,12,6,13,9,0,7,3,7,15,13,12,7,15,11,2,15,14,13,4,6,5,9,6,6,7,9,6,4,15,1,6,13,6,13,5,6,15,13,0,5,13,14,11,8,13,9,3,15,6,4,8,9,1,0,3,9,14,4,3,2,6,13,1,10,6,5,9,5,2,14,3,6,5,3,5,6,12,3,0,15,6,1,4,6,11,0,6,0,12,6,3,5,0,1,1,1,8,10,12,0,2,10,10,8,11,2,12,12,8,13,12,1,11,14,14,8,0,8,4,0,9,5,10,0,3,11,13,14,15,9,2,7,13,2,4,6,2,4,0,0,1,15,6,12,11,14,3,6,2,2,2,6,4,9,5,6,15,5,2,7,12,5,2,10,1,10,7,9,3,5,6,13,14,10,3,3,1,14,7,3,15,2,5,6,6,6,13,7,2,11,13,0,15,0,4,10,14,6,11,0,8,8,7,2,2,12,3,4,3,13,8,5,6,0,10,14,14,9,9,14,2,3,14,1,11,1,7,4,3,9,0,1,3,14,3,5,13,6,14,11,0,9,15,8,15,13,1,12,12,14,9,10,8,3,10,14,7,9,15,11,10,11,9,12,3,4,10,11,0,7,3,6,10,6,5,10,10,13,3,11,12,14,13,10,1,10,13,14,13,6,13,9,14,6,0,0,15,13,0,7,9,10,7,12,5,14,12,15,7,7,2,3,3,5,10,9,5,15,8,6,5,2,2,8,10,2,15,10,5,3,8,7,9,3,3,13,1,1,15,11,3,2,0,5,8,11,10,7,12,3,15,7,3,14,7,12,12,4,13,11,5,10,5,1,13,15,13,6,0,6,10,14,6,8,1,3,6,2,11,2,3,14,12,13,7,15,8,1,12,2,1,13,11,10,9,2,1,3,0,9,11,9,6,13,4,11,12,14,5,5,7,11,14,11,15,7,11,1,0,4,0,2,8,11,8,5,1,2,7,6,6,6,3,7,11,3,12,0,6,0,7,5,11,7,1,10,13,4,0,6,4,13,2,10,9,3,1,14,15,12,5,5,15,1,10,5,3,0,13,5,7,5,14,4,0,12,3,13,7,2,3,2,14,7,15,4,5,1,9,5,11,11,13,5,10,12,5,4,11,11,1,11,14,12,11,1,2,10,13,14,12,1,0,8,8,11,14,0,8,9,8,2,10,3,0,4,4,12,4,13,10,12,5,11,0,3,5,15,0,3,15,15,8,7,4,5,0,1,3,15,12,4,12,13,15,13,8,2,9,15,5,1,11,5,5,15,1,5,11,5,10,7,6,10,10,10,3,0,11,13,5,14,3,0,9,1,10,14,1,9,9,15,2,12,14,9,1,0,4,1,2,9,5,13,1,0,12,15,9,15,2,3,3,3,13,14,7,13,2,15,11,2,6,0,15,11,14,4,0,3,14,6,0,15,10,0,0,4,7,6,2,12,4,5,0,12,2,12,13,6,11,12,12,11,12,10,12,14,5,2,5,14,15,10,6,8,12,8,8,5,0,3,7,15,8,6,13,1,12,4,2,12,12,3,11,11,5,0,3,13,3,13,6,13,7,13,1,2,14,0,0,7,2,10,8,4,9,12,4,9,13,6,13,0,2,13,15,5,1,3,3,12,12,11,7,8,2,1,14,7,14,4,11,3,15,11,5,8,2,13,2,14,8,11,11,6,12,7,9,7,14,9,15,14,7,11,9,12,4,4,2,6,8,12,5,14,11,8,10,12,5,4,4,9,11,11,13,2,12,2,3,12,15,7,11,8,10,13,1,6,9,9,7,9,11,15,9,5,2,4,4,11,0,11,2,9,13,8,0,15,2,12,2,14,13,7,9,3,0,3,8,3,12,13,7,10,6,3,12,8,5,0,4,7,11,0,0,11,12,8,2,4,8,11,14,1,0,11,7,0,11,3,1,4,15,11,2,1,6,0,10,11,2,15,6,11,11,8,11,12,6,11,13,9,15,11,1,15,4,2,6,8,3,3,5,7,1,14,7,14,4,2,7,12,10,4,0,8,10,5,8,7,13,14,11,11,8,1,13,2,7,15,1,12,7,2,14,5,3,13,9,8,12,7,1,9,14,14,4,2,8,13,10,2,2,0,7,7,1,7,6,2,7,1,9,15,4,8,6,11,14,4,5,1,9,1,8,1,2,7,4,5,5,13,10,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 771.0, \"clip_end\": 775.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,1,11,7,0,2,14,6,14,5,8,5,15,14,9,14,0,2,10,4,1,9,0,9,0,6,12,1,4,4,12,11,13,10,6,2,2,1,14,2,10,9,7,4,13,12,3,2,14,13,8,10,3,12,12,8,10,12,6,13,9,0,7,3,7,15,13,12,7,15,11,2,15,14,13,4,6,5,9,6,6,7,9,6,4,15,1,6,13,6,13,5,6,15,13,0,5,13,14,11,8,13,9,3,15,6,4,8,9,1,0,3,9,14,4,3,2,6,13,1,10,6,5,9,5,2,14,3,6,5,3,5,6,12,3,0,15,6,1,4,6,11,0,6,0,12,6,3,5,0,1,1,1,8,10,12,0,2,10,10,8,11,2,12,12,8,13,12,1,11,14,14,8,0,8,4,0,9,5,10,0,3,11,13,14,15,9,2,7,13,2,4,6,2,4,0,0,1,15,6,12,11,14,3,6,2,2,2,6,4,9,5,6,15,5,2,7,12,5,2,10,1,10,7,9,3,5,6,13,14,10,3,3,1,14,7,3,15,2,5,6,6,6,13,7,2,11,13,0,15,0,4,10,14,6,11,0,8,8,7,2,2,12,3,4,3,13,8,5,6,0,10,14,14,9,9,14,2,3,14,1,11,1,7,4,3,9,0,1,3,14,3,5,13,6,14,11,0,9,15,8,15,13,1,12,12,14,9,10,8,3,10,14,7,9,15,11,10,11,9,12,3,4,10,11,0,7,3,6,10,6,5,10,10,13,3,11,12,14,13,10,1,10,13,14,13,6,13,9,14,6,0,0,15,13,0,7,9,10,7,12,5,14,12,15,7,7,2,3,3,5,10,9,5,15,8,6,5,2,2,8,10,2,15,10,5,3,8,7,9,3,3,13,1,1,15,11,3,2,0,5,8,11,10,7,12,3,15,7,3,14,7,12,12,4,13,11,5,10,5,1,13,15,13,6,0,6,10,14,6,8,1,3,6,2,11,2,3,14,12,13,7,15,8,1,12,2,1,13,11,10,9,2,1,3,0,9,11,9,6,13,4,11,12,14,5,5,7,11,14,11,15,7,11,1,0,4,0,2,8,11,8,5,1,2,7,6,6,6,3,7,11,3,12,0,6,0,7,5,11,7,1,10,13,4,0,6,4,13,2,10,9,3,1,14,15,12,5,5,15,1,10,5,3,0,13,5,7,5,14,4,0,12,3,13,7,2,3,2,14,7,15,4,5,1,9,5,11,11,13,5,10,12,5,4,11,11,1,11,14,12,11,1,2,10,13,14,12,1,0,8,8,11,14,0,8,9,8,2,10,3,0,4,4,12,4,13,10,12,5,11,0,3,5,15,0,3,15,15,8,7,4,5,0,1,3,15,12,4,12,13,15,13,8,2,9,15,5,1,11,5,5,15,1,5,11,5,10,7,6,10,10,10,3,0,11,13,5,14,3,0,9,1,10,14,1,9,9,15,2,12,14,9,1,0,4,1,2,9,5,13,1,0,12,15,9,15,2,3,3,3,13,14,7,13,2,15,11,2,6,0,15,11,14,4,0,3,14,6,0,15,10,0,0,4,7,6,2,12,4,5,0,12,2,12,13,6,11,12,12,11,12,10,12,14,5,2,5,14,15,10,6,8,12,8,8,5,0,3,7,15,8,6,13,1,12,4,2,12,12,3,11,11,5,0,3,13,3,13,6,13,7,13,1,2,14,0,0,7,2,10,8,4,9,12,4,9,13,6,13,0,2,13,15,5,1,3,3,12,12,11,7,8,2,1,14,7,14,4,11,3,15,11,5,8,2,13,2,14,8,11,11,6,12,7,9,7,14,9,15,14,7,11,9,12,4,4,2,6,8,12,5,14,11,8,10,12,5,4,4,9,11,11,13,2,12,2,3,12,15,7,11,8,10,13,1,6,9,9,7,9,11,15,9,5,2,4,4,11,0,11,2,9,13,8,0,15,2,12,2,14,13,7,9,3,0,3,8,3,12,13,7,10,6,3,12,8,5,0,4,7,11,0,0,11,12,8,2,4,8,11,14,1,0,11,7,0,11,3,1,4,15,11,2,1,6,0,10,11,2,15,6,11,11,8,11,12,6,11,13,9,15,11,1,15,4,2,6,8,3,3,5,7,1,14,7,14,4,2,7,12,10,4,0,8,10,5,8,7,13,14,11,11,8,1,13,2,7,15,1,12,7,2,14,5,3,13,9,8,12,7,1,9,14,14,4,2,8,13,10,2,2,0,7,7,1,7,6,2,7,1,9,15,4,8,6,11,14,4,5,1,9,1,8,1,2,7,4,5,5,13,10,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 961.0, \"clip_end\": 966.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,1,11,7,0,2,14,6,14,5,8,5,15,14,9,14,0,2,10,4,1,9,0,9,0,6,12,1,4,4,12,11,13,10,6,2,2,1,14,2,10,9,7,4,13,12,3,2,14,13,8,10,3,12,12,8,10,12,6,13,9,0,7,3,7,15,13,12,7,15,11,2,15,14,13,4,6,5,9,6,6,7,9,6,4,15,1,6,13,6,13,5,6,15,13,0,5,13,14,11,8,13,9,3,15,6,4,8,9,1,0,3,9,14,4,3,2,6,13,1,10,6,5,9,5,2,14,3,6,5,3,5,6,12,3,0,15,6,1,4,6,11,0,6,0,12,6,3,5,0,1,1,1,8,10,12,0,2,10,10,8,11,2,12,12,8,13,12,1,11,14,14,8,0,8,4,0,9,5,10,0,3,11,13,14,15,9,2,7,13,2,4,6,2,4,0,0,1,15,6,12,11,14,3,6,2,2,2,6,4,9,5,6,15,5,2,7,12,5,2,10,1,10,7,9,3,5,6,13,14,10,3,3,1,14,7,3,15,2,5,6,6,6,13,7,2,11,13,0,15,0,4,10,14,6,11,0,8,8,7,2,2,12,3,4,3,13,8,5,6,0,10,14,14,9,9,14,2,3,14,1,11,1,7,4,3,9,0,1,3,14,3,5,13,6,14,11,0,9,15,8,15,13,1,12,12,14,9,10,8,3,10,14,7,9,15,11,10,11,9,12,3,4,10,11,0,7,3,6,10,6,5,10,10,13,3,11,12,14,13,10,1,10,13,14,13,6,13,9,14,6,0,0,15,13,0,7,9,10,7,12,5,14,12,15,7,7,2,3,3,5,10,9,5,15,8,6,5,2,2,8,10,2,15,10,5,3,8,7,9,3,3,13,1,1,15,11,3,2,0,5,8,11,10,7,12,3,15,7,3,14,7,12,12,4,13,11,5,10,5,1,13,15,13,6,0,6,10,14,6,8,1,3,6,2,11,2,3,14,12,13,7,15,8,1,12,2,1,13,11,10,9,2,1,3,0,9,11,9,6,13,4,11,12,14,5,5,7,11,14,11,15,7,11,1,0,4,0,2,8,11,8,5,1,2,7,6,6,6,3,7,11,3,12,0,6,0,7,5,11,7,1,10,13,4,0,6,4,13,2,10,9,3,1,14,15,12,5,5,15,1,10,5,3,0,13,5,7,5,14,4,0,12,3,13,7,2,3,2,14,7,15,4,5,1,9,5,11,11,13,5,10,12,5,4,11,11,1,11,14,12,11,1,2,10,13,14,12,1,0,8,8,11,14,0,8,9,8,2,10,3,0,4,4,12,4,13,10,12,5,11,0,3,5,15,0,3,15,15,8,7,4,5,0,1,3,15,12,4,12,13,15,13,8,2,9,15,5,1,11,5,5,15,1,5,11,5,10,7,6,10,10,10,3,0,11,13,5,14,3,0,9,1,10,14,1,9,9,15,2,12,14,9,1,0,4,1,2,9,5,13,1,0,12,15,9,15,2,3,3,3,13,14,7,13,2,15,11,2,6,0,15,11,14,4,0,3,14,6,0,15,10,0,0,4,7,6,2,12,4,5,0,12,2,12,13,6,11,12,12,11,12,10,12,14,5,2,5,14,15,10,6,8,12,8,8,5,0,3,7,15,8,6,13,1,12,4,2,12,12,3,11,11,5,0,3,13,3,13,6,13,7,13,1,2,14,0,0,7,2,10,8,4,9,12,4,9,13,6,13,0,2,13,15,5,1,3,3,12,12,11,7,8,2,1,14,7,14,4,11,3,15,11,5,8,2,13,2,14,8,11,11,6,12,7,9,7,14,9,15,14,7,11,9,12,4,4,2,6,8,12,5,14,11,8,10,12,5,4,4,9,11,11,13,2,12,2,3,12,15,7,11,8,10,13,1,6,9,9,7,9,11,15,9,5,2,4,4,11,0,11,2,9,13,8,0,15,2,12,2,14,13,7,9,3,0,3,8,3,12,13,7,10,6,3,12,8,5,0,4,7,11,0,0,11,12,8,2,4,8,11,14,1,0,11,7,0,11,3,1,4,15,11,2,1,6,0,10,11,2,15,6,11,11,8,11,12,6,11,13,9,15,11,1,15,4,2,6,8,3,3,5,7,1,14,7,14,4,2,7,12,10,4,0,8,10,5,8,7,13,14,11,11,8,1,13,2,7,15,1,12,7,2,14,5,3,13,9,8,12,7,1,9,14,14,4,2,8,13,10,2,2,0,7,7,1,7,6,2,7,1,9,15,4,8,6,11,14,4,5,1,9,1,8,1,2,7,4,5,5,13,10,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"6\"], \"clip_start\": 705.0, \"clip_end\": 708.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,1,11,7,0,2,14,6,14,5,8,5,15,14,9,14,0,2,10,4,1,9,0,9,0,6,12,1,4,4,12,11,13,10,6,2,2,1,14,2,10,9,7,4,13,12,3,2,14,13,8,10,3,12,12,8,10,12,6,13,9,0,7,3,7,15,13,12,7,15,11,2,15,14,13,4,6,5,9,6,6,7,9,6,4,15,1,6,13,6,13,5,6,15,13,0,5,13,14,11,8,13,9,3,15,6,4,8,9,1,0,3,9,14,4,3,2,6,13,1,10,6,5,9,5,2,14,3,6,5,3,5,6,12,3,0,15,6,1,4,6,11,0,6,0,12,6,3,5,0,1,1,1,8,10,12,0,2,10,10,8,11,2,12,12,8,13,12,1,11,14,14,8,0,8,4,0,9,5,10,0,3,11,13,14,15,9,2,7,13,2,4,6,2,4,0,0,1,15,6,12,11,14,3,6,2,2,2,6,4,9,5,6,15,5,2,7,12,5,2,10,1,10,7,9,3,5,6,13,14,10,3,3,1,14,7,3,15,2,5,6,6,6,13,7,2,11,13,0,15,0,4,10,14,6,11,0,8,8,7,2,2,12,3,4,3,13,8,5,6,0,10,14,14,9,9,14,2,3,14,1,11,1,7,4,3,9,0,1,3,14,3,5,13,6,14,11,0,9,15,8,15,13,1,12,12,14,9,10,8,3,10,14,7,9,15,11,10,11,9,12,3,4,10,11,0,7,3,6,10,6,5,10,10,13,3,11,12,14,13,10,1,10,13,14,13,6,13,9,14,6,0,0,15,13,0,7,9,10,7,12,5,14,12,15,7,7,2,3,3,5,10,9,5,15,8,6,5,2,2,8,10,2,15,10,5,3,8,7,9,3,3,13,1,1,15,11,3,2,0,5,8,11,10,7,12,3,15,7,3,14,7,12,12,4,13,11,5,10,5,1,13,15,13,6,0,6,10,14,6,8,1,3,6,2,11,2,3,14,12,13,7,15,8,1,12,2,1,13,11,10,9,2,1,3,0,9,11,9,6,13,4,11,12,14,5,5,7,11,14,11,15,7,11,1,0,4,0,2,8,11,8,5,1,2,7,6,6,6,3,7,11,3,12,0,6,0,7,5,11,7,1,10,13,4,0,6,4,13,2,10,9,3,1,14,15,12,5,5,15,1,10,5,3,0,13,5,7,5,14,4,0,12,3,13,7,2,3,2,14,7,15,4,5,1,9,5,11,11,13,5,10,12,5,4,11,11,1,11,14,12,11,1,2,10,13,14,12,1,0,8,8,11,14,0,8,9,8,2,10,3,0,4,4,12,4,13,10,12,5,11,0,3,5,15,0,3,15,15,8,7,4,5,0,1,3,15,12,4,12,13,15,13,8,2,9,15,5,1,11,5,5,15,1,5,11,5,10,7,6,10,10,10,3,0,11,13,5,14,3,0,9,1,10,14,1,9,9,15,2,12,14,9,1,0,4,1,2,9,5,13,1,0,12,15,9,15,2,3,3,3,13,14,7,13,2,15,11,2,6,0,15,11,14,4,0,3,14,6,0,15,10,0,0,4,7,6,2,12,4,5,0,12,2,12,13,6,11,12,12,11,12,10,12,14,5,2,5,14,15,10,6,8,12,8,8,5,0,3,7,15,8,6,13,1,12,4,2,12,12,3,11,11,5,0,3,13,3,13,6,13,7,13,1,2,14,0,0,7,2,10,8,4,9,12,4,9,13,6,13,0,2,13,15,5,1,3,3,12,12,11,7,8,2,1,14,7,14,4,11,3,15,11,5,8,2,13,2,14,8,11,11,6,12,7,9,7,14,9,15,14,7,11,9,12,4,4,2,6,8,12,5,14,11,8,10,12,5,4,4,9,11,11,13,2,12,2,3,12,15,7,11,8,10,13,1,6,9,9,7,9,11,15,9,5,2,4,4,11,0,11,2,9,13,8,0,15,2,12,2,14,13,7,9,3,0,3,8,3,12,13,7,10,6,3,12,8,5,0,4,7,11,0,0,11,12,8,2,4,8,11,14,1,0,11,7,0,11,3,1,4,15,11,2,1,6,0,10,11,2,15,6,11,11,8,11,12,6,11,13,9,15,11,1,15,4,2,6,8,3,3,5,7,1,14,7,14,4,2,7,12,10,4,0,8,10,5,8,7,13,14,11,11,8,1,13,2,7,15,1,12,7,2,14,5,3,13,9,8,12,7,1,9,14,14,4,2,8,13,10,2,2,0,7,7,1,7,6,2,7,1,9,15,4,8,6,11,14,4,5,1,9,1,8,1,2,7,4,5,5,13,10,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"1\", \"15\", \"11\", \"3\", \"2\"], \"clip_start\": 394.0, \"clip_end\": 400.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,1,11,7,0,2,14,6,14,5,8,5,15,14,9,14,0,2,10,4,1,9,0,9,0,6,12,1,4,4,12,11,13,10,6,2,2,1,14,2,10,9,7,4,13,12,3,2,14,13,8,10,3,12,12,8,10,12,6,13,9,0,7,3,7,15,13,12,7,15,11,2,15,14,13,4,6,5,9,6,6,7,9,6,4,15,1,6,13,6,13,5,6,15,13,0,5,13,14,11,8,13,9,3,15,6,4,8,9,1,0,3,9,14,4,3,2,6,13,1,10,6,5,9,5,2,14,3,6,5,3,5,6,12,3,0,15,6,1,4,6,11,0,6,0,12,6,3,5,0,1,1,1,8,10,12,0,2,10,10,8,11,2,12,12,8,13,12,1,11,14,14,8,0,8,4,0,9,5,10,0,3,11,13,14,15,9,2,7,13,2,4,6,2,4,0,0,1,15,6,12,11,14,3,6,2,2,2,6,4,9,5,6,15,5,2,7,12,5,2,10,1,10,7,9,3,5,6,13,14,10,3,3,1,14,7,3,15,2,5,6,6,6,13,7,2,11,13,0,15,0,4,10,14,6,11,0,8,8,7,2,2,12,3,4,3,13,8,5,6,0,10,14,14,9,9,14,2,3,14,1,11,1,7,4,3,9,0,1,3,14,3,5,13,6,14,11,0,9,15,8,15,13,1,12,12,14,9,10,8,3,10,14,7,9,15,11,10,11,9,12,3,4,10,11,0,7,3,6,10,6,5,10,10,13,3,11,12,14,13,10,1,10,13,14,13,6,13,9,14,6,0,0,15,13,0,7,9,10,7,12,5,14,12,15,7,7,2,3,3,5,10,9,5,15,8,6,5,2,2,8,10,2,15,10,5,3,8,7,9,3,3,13,1,1,15,11,3,2,0,5,8,11,10,7,12,3,15,7,3,14,7,12,12,4,13,11,5,10,5,1,13,15,13,6,0,6,10,14,6,8,1,3,6,2,11,2,3,14,12,13,7,15,8,1,12,2,1,13,11,10,9,2,1,3,0,9,11,9,6,13,4,11,12,14,5,5,7,11,14,11,15,7,11,1,0,4,0,2,8,11,8,5,1,2,7,6,6,6,3,7,11,3,12,0,6,0,7,5,11,7,1,10,13,4,0,6,4,13,2,10,9,3,1,14,15,12,5,5,15,1,10,5,3,0,13,5,7,5,14,4,0,12,3,13,7,2,3,2,14,7,15,4,5,1,9,5,11,11,13,5,10,12,5,4,11,11,1,11,14,12,11,1,2,10,13,14,12,1,0,8,8,11,14,0,8,9,8,2,10,3,0,4,4,12,4,13,10,12,5,11,0,3,5,15,0,3,15,15,8,7,4,5,0,1,3,15,12,4,12,13,15,13,8,2,9,15,5,1,11,5,5,15,1,5,11,5,10,7,6,10,10,10,3,0,11,13,5,14,3,0,9,1,10,14,1,9,9,15,2,12,14,9,1,0,4,1,2,9,5,13,1,0,12,15,9,15,2,3,3,3,13,14,7,13,2,15,11,2,6,0,15,11,14,4,0,3,14,6,0,15,10,0,0,4,7,6,2,12,4,5,0,12,2,12,13,6,11,12,12,11,12,10,12,14,5,2,5,14,15,10,6,8,12,8,8,5,0,3,7,15,8,6,13,1,12,4,2,12,12,3,11,11,5,0,3,13,3,13,6,13,7,13,1,2,14,0,0,7,2,10,8,4,9,12,4,9,13,6,13,0,2,13,15,5,1,3,3,12,12,11,7,8,2,1,14,7,14,4,11,3,15,11,5,8,2,13,2,14,8,11,11,6,12,7,9,7,14,9,15,14,7,11,9,12,4,4,2,6,8,12,5,14,11,8,10,12,5,4,4,9,11,11,13,2,12,2,3,12,15,7,11,8,10,13,1,6,9,9,7,9,11,15,9,5,2,4,4,11,0,11,2,9,13,8,0,15,2,12,2,14,13,7,9,3,0,3,8,3,12,13,7,10,6,3,12,8,5,0,4,7,11,0,0,11,12,8,2,4,8,11,14,1,0,11,7,0,11,3,1,4,15,11,2,1,6,0,10,11,2,15,6,11,11,8,11,12,6,11,13,9,15,11,1,15,4,2,6,8,3,3,5,7,1,14,7,14,4,2,7,12,10,4,0,8,10,5,8,7,13,14,11,11,8,1,13,2,7,15,1,12,7,2,14,5,3,13,9,8,12,7,1,9,14,14,4,2,8,13,10,2,2,0,7,7,1,7,6,2,7,1,9,15,4,8,6,11,14,4,5,1,9,1,8,1,2,7,4,5,5,13,10,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"3\", \"4\"], \"clip_start\": 320.0, \"clip_end\": 324.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,1,11,7,0,2,14,6,14,5,8,5,15,14,9,14,0,2,10,4,1,9,0,9,0,6,12,1,4,4,12,11,13,10,6,2,2,1,14,2,10,9,7,4,13,12,3,2,14,13,8,10,3,12,12,8,10,12,6,13,9,0,7,3,7,15,13,12,7,15,11,2,15,14,13,4,6,5,9,6,6,7,9,6,4,15,1,6,13,6,13,5,6,15,13,0,5,13,14,11,8,13,9,3,15,6,4,8,9,1,0,3,9,14,4,3,2,6,13,1,10,6,5,9,5,2,14,3,6,5,3,5,6,12,3,0,15,6,1,4,6,11,0,6,0,12,6,3,5,0,1,1,1,8,10,12,0,2,10,10,8,11,2,12,12,8,13,12,1,11,14,14,8,0,8,4,0,9,5,10,0,3,11,13,14,15,9,2,7,13,2,4,6,2,4,0,0,1,15,6,12,11,14,3,6,2,2,2,6,4,9,5,6,15,5,2,7,12,5,2,10,1,10,7,9,3,5,6,13,14,10,3,3,1,14,7,3,15,2,5,6,6,6,13,7,2,11,13,0,15,0,4,10,14,6,11,0,8,8,7,2,2,12,3,4,3,13,8,5,6,0,10,14,14,9,9,14,2,3,14,1,11,1,7,4,3,9,0,1,3,14,3,5,13,6,14,11,0,9,15,8,15,13,1,12,12,14,9,10,8,3,10,14,7,9,15,11,10,11,9,12,3,4,10,11,0,7,3,6,10,6,5,10,10,13,3,11,12,14,13,10,1,10,13,14,13,6,13,9,14,6,0,0,15,13,0,7,9,10,7,12,5,14,12,15,7,7,2,3,3,5,10,9,5,15,8,6,5,2,2,8,10,2,15,10,5,3,8,7,9,3,3,13,1,1,15,11,3,2,0,5,8,11,10,7,12,3,15,7,3,14,7,12,12,4,13,11,5,10,5,1,13,15,13,6,0,6,10,14,6,8,1,3,6,2,11,2,3,14,12,13,7,15,8,1,12,2,1,13,11,10,9,2,1,3,0,9,11,9,6,13,4,11,12,14,5,5,7,11,14,11,15,7,11,1,0,4,0,2,8,11,8,5,1,2,7,6,6,6,3,7,11,3,12,0,6,0,7,5,11,7,1,10,13,4,0,6,4,13,2,10,9,3,1,14,15,12,5,5,15,1,10,5,3,0,13,5,7,5,14,4,0,12,3,13,7,2,3,2,14,7,15,4,5,1,9,5,11,11,13,5,10,12,5,4,11,11,1,11,14,12,11,1,2,10,13,14,12,1,0,8,8,11,14,0,8,9,8,2,10,3,0,4,4,12,4,13,10,12,5,11,0,3,5,15,0,3,15,15,8,7,4,5,0,1,3,15,12,4,12,13,15,13,8,2,9,15,5,1,11,5,5,15,1,5,11,5,10,7,6,10,10,10,3,0,11,13,5,14,3,0,9,1,10,14,1,9,9,15,2,12,14,9,1,0,4,1,2,9,5,13,1,0,12,15,9,15,2,3,3,3,13,14,7,13,2,15,11,2,6,0,15,11,14,4,0,3,14,6,0,15,10,0,0,4,7,6,2,12,4,5,0,12,2,12,13,6,11,12,12,11,12,10,12,14,5,2,5,14,15,10,6,8,12,8,8,5,0,3,7,15,8,6,13,1,12,4,2,12,12,3,11,11,5,0,3,13,3,13,6,13,7,13,1,2,14,0,0,7,2,10,8,4,9,12,4,9,13,6,13,0,2,13,15,5,1,3,3,12,12,11,7,8,2,1,14,7,14,4,11,3,15,11,5,8,2,13,2,14,8,11,11,6,12,7,9,7,14,9,15,14,7,11,9,12,4,4,2,6,8,12,5,14,11,8,10,12,5,4,4,9,11,11,13,2,12,2,3,12,15,7,11,8,10,13,1,6,9,9,7,9,11,15,9,5,2,4,4,11,0,11,2,9,13,8,0,15,2,12,2,14,13,7,9,3,0,3,8,3,12,13,7,10,6,3,12,8,5,0,4,7,11,0,0,11,12,8,2,4,8,11,14,1,0,11,7,0,11,3,1,4,15,11,2,1,6,0,10,11,2,15,6,11,11,8,11,12,6,11,13,9,15,11,1,15,4,2,6,8,3,3,5,7,1,14,7,14,4,2,7,12,10,4,0,8,10,5,8,7,13,14,11,11,8,1,13,2,7,15,1,12,7,2,14,5,3,13,9,8,12,7,1,9,14,14,4,2,8,13,10,2,2,0,7,7,1,7,6,2,7,1,9,15,4,8,6,11,14,4,5,1,9,1,8,1,2,7,4,5,5,13,10,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"6\"], \"clip_start\": 891.0, \"clip_end\": 894.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q9_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,1,11,7,0,2,14,6,14,5,8,5,15,14,9,14,0,2,10,4,1,9,0,9,0,6,12,1,4,4,12,11,13,10,6,2,2,1,14,2,10,9,7,4,13,12,3,2,14,13,8,10,3,12,12,8,10,12,6,13,9,0,7,3,7,15,13,12,7,15,11,2,15,14,13,4,6,5,9,6,6,7,9,6,4,15,1,6,13,6,13,5,6,15,13,0,5,13,14,11,8,13,9,3,15,6,4,8,9,1,0,3,9,14,4,3,2,6,13,1,10,6,5,9,5,2,14,3,6,5,3,5,6,12,3,0,15,6,1,4,6,11,0,6,0,12,6,3,5,0,1,1,1,8,10,12,0,2,10,10,8,11,2,12,12,8,13,12,1,11,14,14,8,0,8,4,0,9,5,10,0,3,11,13,14,15,9,2,7,13,2,4,6,2,4,0,0,1,15,6,12,11,14,3,6,2,2,2,6,4,9,5,6,15,5,2,7,12,5,2,10,1,10,7,9,3,5,6,13,14,10,3,3,1,14,7,3,15,2,5,6,6,6,13,7,2,11,13,0,15,0,4,10,14,6,11,0,8,8,7,2,2,12,3,4,3,13,8,5,6,0,10,14,14,9,9,14,2,3,14,1,11,1,7,4,3,9,0,1,3,14,3,5,13,6,14,11,0,9,15,8,15,13,1,12,12,14,9,10,8,3,10,14,7,9,15,11,10,11,9,12,3,4,10,11,0,7,3,6,10,6,5,10,10,13,3,11,12,14,13,10,1,10,13,14,13,6,13,9,14,6,0,0,15,13,0,7,9,10,7,12,5,14,12,15,7,7,2,3,3,5,10,9,5,15,8,6,5,2,2,8,10,2,15,10,5,3,8,7,9,3,3,13,1,1,15,11,3,2,0,5,8,11,10,7,12,3,15,7,3,14,7,12,12,4,13,11,5,10,5,1,13,15,13,6,0,6,10,14,6,8,1,3,6,2,11,2,3,14,12,13,7,15,8,1,12,2,1,13,11,10,9,2,1,3,0,9,11,9,6,13,4,11,12,14,5,5,7,11,14,11,15,7,11,1,0,4,0,2,8,11,8,5,1,2,7,6,6,6,3,7,11,3,12,0,6,0,7,5,11,7,1,10,13,4,0,6,4,13,2,10,9,3,1,14,15,12,5,5,15,1,10,5,3,0,13,5,7,5,14,4,0,12,3,13,7,2,3,2,14,7,15,4,5,1,9,5,11,11,13,5,10,12,5,4,11,11,1,11,14,12,11,1,2,10,13,14,12,1,0,8,8,11,14,0,8,9,8,2,10,3,0,4,4,12,4,13,10,12,5,11,0,3,5,15,0,3,15,15,8,7,4,5,0,1,3,15,12,4,12,13,15,13,8,2,9,15,5,1,11,5,5,15,1,5,11,5,10,7,6,10,10,10,3,0,11,13,5,14,3,0,9,1,10,14,1,9,9,15,2,12,14,9,1,0,4,1,2,9,5,13,1,0,12,15,9,15,2,3,3,3,13,14,7,13,2,15,11,2,6,0,15,11,14,4,0,3,14,6,0,15,10,0,0,4,7,6,2,12,4,5,0,12,2,12,13,6,11,12,12,11,12,10,12,14,5,2,5,14,15,10,6,8,12,8,8,5,0,3,7,15,8,6,13,1,12,4,2,12,12,3,11,11,5,0,3,13,3,13,6,13,7,13,1,2,14,0,0,7,2,10,8,4,9,12,4,9,13,6,13,0,2,13,15,5,1,3,3,12,12,11,7,8,2,1,14,7,14,4,11,3,15,11,5,8,2,13,2,14,8,11,11,6,12,7,9,7,14,9,15,14,7,11,9,12,4,4,2,6,8,12,5,14,11,8,10,12,5,4,4,9,11,11,13,2,12,2,3,12,15,7,11,8,10,13,1,6,9,9,7,9,11,15,9,5,2,4,4,11,0,11,2,9,13,8,0,15,2,12,2,14,13,7,9,3,0,3,8,3,12,13,7,10,6,3,12,8,5,0,4,7,11,0,0,11,12,8,2,4,8,11,14,1,0,11,7,0,11,3,1,4,15,11,2,1,6,0,10,11,2,15,6,11,11,8,11,12,6,11,13,9,15,11,1,15,4,2,6,8,3,3,5,7,1,14,7,14,4,2,7,12,10,4,0,8,10,5,8,7,13,14,11,11,8,1,13,2,7,15,1,12,7,2,14,5,3,13,9,8,12,7,1,9,14,14,4,2,8,13,10,2,2,0,7,7,1,7,6,2,7,1,9,15,4,8,6,11,14,4,5,1,9,1,8,1,2,7,4,5,5,13,10,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"14\", \"7\", \"14\", \"4\"], \"clip_start\": 784.0, \"clip_end\": 790.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q10_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,1,11,7,0,2,14,6,14,5,8,5,15,14,9,14,0,2,10,4,1,9,0,9,0,6,12,1,4,4,12,11,13,10,6,2,2,1,14,2,10,9,7,4,13,12,3,2,14,13,8,10,3,12,12,8,10,12,6,13,9,0,7,3,7,15,13,12,7,15,11,2,15,14,13,4,6,5,9,6,6,7,9,6,4,15,1,6,13,6,13,5,6,15,13,0,5,13,14,11,8,13,9,3,15,6,4,8,9,1,0,3,9,14,4,3,2,6,13,1,10,6,5,9,5,2,14,3,6,5,3,5,6,12,3,0,15,6,1,4,6,11,0,6,0,12,6,3,5,0,1,1,1,8,10,12,0,2,10,10,8,11,2,12,12,8,13,12,1,11,14,14,8,0,8,4,0,9,5,10,0,3,11,13,14,15,9,2,7,13,2,4,6,2,4,0,0,1,15,6,12,11,14,3,6,2,2,2,6,4,9,5,6,15,5,2,7,12,5,2,10,1,10,7,9,3,5,6,13,14,10,3,3,1,14,7,3,15,2,5,6,6,6,13,7,2,11,13,0,15,0,4,10,14,6,11,0,8,8,7,2,2,12,3,4,3,13,8,5,6,0,10,14,14,9,9,14,2,3,14,1,11,1,7,4,3,9,0,1,3,14,3,5,13,6,14,11,0,9,15,8,15,13,1,12,12,14,9,10,8,3,10,14,7,9,15,11,10,11,9,12,3,4,10,11,0,7,3,6,10,6,5,10,10,13,3,11,12,14,13,10,1,10,13,14,13,6,13,9,14,6,0,0,15,13,0,7,9,10,7,12,5,14,12,15,7,7,2,3,3,5,10,9,5,15,8,6,5,2,2,8,10,2,15,10,5,3,8,7,9,3,3,13,1,1,15,11,3,2,0,5,8,11,10,7,12,3,15,7,3,14,7,12,12,4,13,11,5,10,5,1,13,15,13,6,0,6,10,14,6,8,1,3,6,2,11,2,3,14,12,13,7,15,8,1,12,2,1,13,11,10,9,2,1,3,0,9,11,9,6,13,4,11,12,14,5,5,7,11,14,11,15,7,11,1,0,4,0,2,8,11,8,5,1,2,7,6,6,6,3,7,11,3,12,0,6,0,7,5,11,7,1,10,13,4,0,6,4,13,2,10,9,3,1,14,15,12,5,5,15,1,10,5,3,0,13,5,7,5,14,4,0,12,3,13,7,2,3,2,14,7,15,4,5,1,9,5,11,11,13,5,10,12,5,4,11,11,1,11,14,12,11,1,2,10,13,14,12,1,0,8,8,11,14,0,8,9,8,2,10,3,0,4,4,12,4,13,10,12,5,11,0,3,5,15,0,3,15,15,8,7,4,5,0,1,3,15,12,4,12,13,15,13,8,2,9,15,5,1,11,5,5,15,1,5,11,5,10,7,6,10,10,10,3,0,11,13,5,14,3,0,9,1,10,14,1,9,9,15,2,12,14,9,1,0,4,1,2,9,5,13,1,0,12,15,9,15,2,3,3,3,13,14,7,13,2,15,11,2,6,0,15,11,14,4,0,3,14,6,0,15,10,0,0,4,7,6,2,12,4,5,0,12,2,12,13,6,11,12,12,11,12,10,12,14,5,2,5,14,15,10,6,8,12,8,8,5,0,3,7,15,8,6,13,1,12,4,2,12,12,3,11,11,5,0,3,13,3,13,6,13,7,13,1,2,14,0,0,7,2,10,8,4,9,12,4,9,13,6,13,0,2,13,15,5,1,3,3,12,12,11,7,8,2,1,14,7,14,4,11,3,15,11,5,8,2,13,2,14,8,11,11,6,12,7,9,7,14,9,15,14,7,11,9,12,4,4,2,6,8,12,5,14,11,8,10,12,5,4,4,9,11,11,13,2,12,2,3,12,15,7,11,8,10,13,1,6,9,9,7,9,11,15,9,5,2,4,4,11,0,11,2,9,13,8,0,15,2,12,2,14,13,7,9,3,0,3,8,3,12,13,7,10,6,3,12,8,5,0,4,7,11,0,0,11,12,8,2,4,8,11,14,1,0,11,7,0,11,3,1,4,15,11,2,1,6,0,10,11,2,15,6,11,11,8,11,12,6,11,13,9,15,11,1,15,4,2,6,8,3,3,5,7,1,14,7,14,4,2,7,12,10,4,0,8,10,5,8,7,13,14,11,11,8,1,13,2,7,15,1,12,7,2,14,5,3,13,9,8,12,7,1,9,14,14,4,2,8,13,10,2,2,0,7,7,1,7,6,2,7,1,9,15,4,8,6,11,14,4,5,1,9,1,8,1,2,7,4,5,5,13,10,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"12\", \"12\", \"14\", \"9\", \"10\"], \"clip_start\": 304.0, \"clip_end\": 310.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q11_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,1,11,7,0,2,14,6,14,5,8,5,15,14,9,14,0,2,10,4,1,9,0,9,0,6,12,1,4,4,12,11,13,10,6,2,2,1,14,2,10,9,7,4,13,12,3,2,14,13,8,10,3,12,12,8,10,12,6,13,9,0,7,3,7,15,13,12,7,15,11,2,15,14,13,4,6,5,9,6,6,7,9,6,4,15,1,6,13,6,13,5,6,15,13,0,5,13,14,11,8,13,9,3,15,6,4,8,9,1,0,3,9,14,4,3,2,6,13,1,10,6,5,9,5,2,14,3,6,5,3,5,6,12,3,0,15,6,1,4,6,11,0,6,0,12,6,3,5,0,1,1,1,8,10,12,0,2,10,10,8,11,2,12,12,8,13,12,1,11,14,14,8,0,8,4,0,9,5,10,0,3,11,13,14,15,9,2,7,13,2,4,6,2,4,0,0,1,15,6,12,11,14,3,6,2,2,2,6,4,9,5,6,15,5,2,7,12,5,2,10,1,10,7,9,3,5,6,13,14,10,3,3,1,14,7,3,15,2,5,6,6,6,13,7,2,11,13,0,15,0,4,10,14,6,11,0,8,8,7,2,2,12,3,4,3,13,8,5,6,0,10,14,14,9,9,14,2,3,14,1,11,1,7,4,3,9,0,1,3,14,3,5,13,6,14,11,0,9,15,8,15,13,1,12,12,14,9,10,8,3,10,14,7,9,15,11,10,11,9,12,3,4,10,11,0,7,3,6,10,6,5,10,10,13,3,11,12,14,13,10,1,10,13,14,13,6,13,9,14,6,0,0,15,13,0,7,9,10,7,12,5,14,12,15,7,7,2,3,3,5,10,9,5,15,8,6,5,2,2,8,10,2,15,10,5,3,8,7,9,3,3,13,1,1,15,11,3,2,0,5,8,11,10,7,12,3,15,7,3,14,7,12,12,4,13,11,5,10,5,1,13,15,13,6,0,6,10,14,6,8,1,3,6,2,11,2,3,14,12,13,7,15,8,1,12,2,1,13,11,10,9,2,1,3,0,9,11,9,6,13,4,11,12,14,5,5,7,11,14,11,15,7,11,1,0,4,0,2,8,11,8,5,1,2,7,6,6,6,3,7,11,3,12,0,6,0,7,5,11,7,1,10,13,4,0,6,4,13,2,10,9,3,1,14,15,12,5,5,15,1,10,5,3,0,13,5,7,5,14,4,0,12,3,13,7,2,3,2,14,7,15,4,5,1,9,5,11,11,13,5,10,12,5,4,11,11,1,11,14,12,11,1,2,10,13,14,12,1,0,8,8,11,14,0,8,9,8,2,10,3,0,4,4,12,4,13,10,12,5,11,0,3,5,15,0,3,15,15,8,7,4,5,0,1,3,15,12,4,12,13,15,13,8,2,9,15,5,1,11,5,5,15,1,5,11,5,10,7,6,10,10,10,3,0,11,13,5,14,3,0,9,1,10,14,1,9,9,15,2,12,14,9,1,0,4,1,2,9,5,13,1,0,12,15,9,15,2,3,3,3,13,14,7,13,2,15,11,2,6,0,15,11,14,4,0,3,14,6,0,15,10,0,0,4,7,6,2,12,4,5,0,12,2,12,13,6,11,12,12,11,12,10,12,14,5,2,5,14,15,10,6,8,12,8,8,5,0,3,7,15,8,6,13,1,12,4,2,12,12,3,11,11,5,0,3,13,3,13,6,13,7,13,1,2,14,0,0,7,2,10,8,4,9,12,4,9,13,6,13,0,2,13,15,5,1,3,3,12,12,11,7,8,2,1,14,7,14,4,11,3,15,11,5,8,2,13,2,14,8,11,11,6,12,7,9,7,14,9,15,14,7,11,9,12,4,4,2,6,8,12,5,14,11,8,10,12,5,4,4,9,11,11,13,2,12,2,3,12,15,7,11,8,10,13,1,6,9,9,7,9,11,15,9,5,2,4,4,11,0,11,2,9,13,8,0,15,2,12,2,14,13,7,9,3,0,3,8,3,12,13,7,10,6,3,12,8,5,0,4,7,11,0,0,11,12,8,2,4,8,11,14,1,0,11,7,0,11,3,1,4,15,11,2,1,6,0,10,11,2,15,6,11,11,8,11,12,6,11,13,9,15,11,1,15,4,2,6,8,3,3,5,7,1,14,7,14,4,2,7,12,10,4,0,8,10,5,8,7,13,14,11,11,8,1,13,2,7,15,1,12,7,2,14,5,3,13,9,8,12,7,1,9,14,14,4,2,8,13,10,2,2,0,7,7,1,7,6,2,7,1,9,15,4,8,6,11,14,4,5,1,9,1,8,1,2,7,4,5,5,13,10,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"12\", \"15\", \"9\"], \"clip_start\": 662.0, \"clip_end\": 667.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q12_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,1,11,7,0,2,14,6,14,5,8,5,15,14,9,14,0,2,10,4,1,9,0,9,0,6,12,1,4,4,12,11,13,10,6,2,2,1,14,2,10,9,7,4,13,12,3,2,14,13,8,10,3,12,12,8,10,12,6,13,9,0,7,3,7,15,13,12,7,15,11,2,15,14,13,4,6,5,9,6,6,7,9,6,4,15,1,6,13,6,13,5,6,15,13,0,5,13,14,11,8,13,9,3,15,6,4,8,9,1,0,3,9,14,4,3,2,6,13,1,10,6,5,9,5,2,14,3,6,5,3,5,6,12,3,0,15,6,1,4,6,11,0,6,0,12,6,3,5,0,1,1,1,8,10,12,0,2,10,10,8,11,2,12,12,8,13,12,1,11,14,14,8,0,8,4,0,9,5,10,0,3,11,13,14,15,9,2,7,13,2,4,6,2,4,0,0,1,15,6,12,11,14,3,6,2,2,2,6,4,9,5,6,15,5,2,7,12,5,2,10,1,10,7,9,3,5,6,13,14,10,3,3,1,14,7,3,15,2,5,6,6,6,13,7,2,11,13,0,15,0,4,10,14,6,11,0,8,8,7,2,2,12,3,4,3,13,8,5,6,0,10,14,14,9,9,14,2,3,14,1,11,1,7,4,3,9,0,1,3,14,3,5,13,6,14,11,0,9,15,8,15,13,1,12,12,14,9,10,8,3,10,14,7,9,15,11,10,11,9,12,3,4,10,11,0,7,3,6,10,6,5,10,10,13,3,11,12,14,13,10,1,10,13,14,13,6,13,9,14,6,0,0,15,13,0,7,9,10,7,12,5,14,12,15,7,7,2,3,3,5,10,9,5,15,8,6,5,2,2,8,10,2,15,10,5,3,8,7,9,3,3,13,1,1,15,11,3,2,0,5,8,11,10,7,12,3,15,7,3,14,7,12,12,4,13,11,5,10,5,1,13,15,13,6,0,6,10,14,6,8,1,3,6,2,11,2,3,14,12,13,7,15,8,1,12,2,1,13,11,10,9,2,1,3,0,9,11,9,6,13,4,11,12,14,5,5,7,11,14,11,15,7,11,1,0,4,0,2,8,11,8,5,1,2,7,6,6,6,3,7,11,3,12,0,6,0,7,5,11,7,1,10,13,4,0,6,4,13,2,10,9,3,1,14,15,12,5,5,15,1,10,5,3,0,13,5,7,5,14,4,0,12,3,13,7,2,3,2,14,7,15,4,5,1,9,5,11,11,13,5,10,12,5,4,11,11,1,11,14,12,11,1,2,10,13,14,12,1,0,8,8,11,14,0,8,9,8,2,10,3,0,4,4,12,4,13,10,12,5,11,0,3,5,15,0,3,15,15,8,7,4,5,0,1,3,15,12,4,12,13,15,13,8,2,9,15,5,1,11,5,5,15,1,5,11,5,10,7,6,10,10,10,3,0,11,13,5,14,3,0,9,1,10,14,1,9,9,15,2,12,14,9,1,0,4,1,2,9,5,13,1,0,12,15,9,15,2,3,3,3,13,14,7,13,2,15,11,2,6,0,15,11,14,4,0,3,14,6,0,15,10,0,0,4,7,6,2,12,4,5,0,12,2,12,13,6,11,12,12,11,12,10,12,14,5,2,5,14,15,10,6,8,12,8,8,5,0,3,7,15,8,6,13,1,12,4,2,12,12,3,11,11,5,0,3,13,3,13,6,13,7,13,1,2,14,0,0,7,2,10,8,4,9,12,4,9,13,6,13,0,2,13,15,5,1,3,3,12,12,11,7,8,2,1,14,7,14,4,11,3,15,11,5,8,2,13,2,14,8,11,11,6,12,7,9,7,14,9,15,14,7,11,9,12,4,4,2,6,8,12,5,14,11,8,10,12,5,4,4,9,11,11,13,2,12,2,3,12,15,7,11,8,10,13,1,6,9,9,7,9,11,15,9,5,2,4,4,11,0,11,2,9,13,8,0,15,2,12,2,14,13,7,9,3,0,3,8,3,12,13,7,10,6,3,12,8,5,0,4,7,11,0,0,11,12,8,2,4,8,11,14,1,0,11,7,0,11,3,1,4,15,11,2,1,6,0,10,11,2,15,6,11,11,8,11,12,6,11,13,9,15,11,1,15,4,2,6,8,3,3,5,7,1,14,7,14,4,2,7,12,10,4,0,8,10,5,8,7,13,14,11,11,8,1,13,2,7,15,1,12,7,2,14,5,3,13,9,8,12,7,1,9,14,14,4,2,8,13,10,2,2,0,7,7,1,7,6,2,7,1,9,15,4,8,6,11,14,4,5,1,9,1,8,1,2,7,4,5,5,13,10,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"5\", \"6\", \"0\", \"10\"], \"clip_start\": 268.0, \"clip_end\": 273.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q13_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,1,11,7,0,2,14,6,14,5,8,5,15,14,9,14,0,2,10,4,1,9,0,9,0,6,12,1,4,4,12,11,13,10,6,2,2,1,14,2,10,9,7,4,13,12,3,2,14,13,8,10,3,12,12,8,10,12,6,13,9,0,7,3,7,15,13,12,7,15,11,2,15,14,13,4,6,5,9,6,6,7,9,6,4,15,1,6,13,6,13,5,6,15,13,0,5,13,14,11,8,13,9,3,15,6,4,8,9,1,0,3,9,14,4,3,2,6,13,1,10,6,5,9,5,2,14,3,6,5,3,5,6,12,3,0,15,6,1,4,6,11,0,6,0,12,6,3,5,0,1,1,1,8,10,12,0,2,10,10,8,11,2,12,12,8,13,12,1,11,14,14,8,0,8,4,0,9,5,10,0,3,11,13,14,15,9,2,7,13,2,4,6,2,4,0,0,1,15,6,12,11,14,3,6,2,2,2,6,4,9,5,6,15,5,2,7,12,5,2,10,1,10,7,9,3,5,6,13,14,10,3,3,1,14,7,3,15,2,5,6,6,6,13,7,2,11,13,0,15,0,4,10,14,6,11,0,8,8,7,2,2,12,3,4,3,13,8,5,6,0,10,14,14,9,9,14,2,3,14,1,11,1,7,4,3,9,0,1,3,14,3,5,13,6,14,11,0,9,15,8,15,13,1,12,12,14,9,10,8,3,10,14,7,9,15,11,10,11,9,12,3,4,10,11,0,7,3,6,10,6,5,10,10,13,3,11,12,14,13,10,1,10,13,14,13,6,13,9,14,6,0,0,15,13,0,7,9,10,7,12,5,14,12,15,7,7,2,3,3,5,10,9,5,15,8,6,5,2,2,8,10,2,15,10,5,3,8,7,9,3,3,13,1,1,15,11,3,2,0,5,8,11,10,7,12,3,15,7,3,14,7,12,12,4,13,11,5,10,5,1,13,15,13,6,0,6,10,14,6,8,1,3,6,2,11,2,3,14,12,13,7,15,8,1,12,2,1,13,11,10,9,2,1,3,0,9,11,9,6,13,4,11,12,14,5,5,7,11,14,11,15,7,11,1,0,4,0,2,8,11,8,5,1,2,7,6,6,6,3,7,11,3,12,0,6,0,7,5,11,7,1,10,13,4,0,6,4,13,2,10,9,3,1,14,15,12,5,5,15,1,10,5,3,0,13,5,7,5,14,4,0,12,3,13,7,2,3,2,14,7,15,4,5,1,9,5,11,11,13,5,10,12,5,4,11,11,1,11,14,12,11,1,2,10,13,14,12,1,0,8,8,11,14,0,8,9,8,2,10,3,0,4,4,12,4,13,10,12,5,11,0,3,5,15,0,3,15,15,8,7,4,5,0,1,3,15,12,4,12,13,15,13,8,2,9,15,5,1,11,5,5,15,1,5,11,5,10,7,6,10,10,10,3,0,11,13,5,14,3,0,9,1,10,14,1,9,9,15,2,12,14,9,1,0,4,1,2,9,5,13,1,0,12,15,9,15,2,3,3,3,13,14,7,13,2,15,11,2,6,0,15,11,14,4,0,3,14,6,0,15,10,0,0,4,7,6,2,12,4,5,0,12,2,12,13,6,11,12,12,11,12,10,12,14,5,2,5,14,15,10,6,8,12,8,8,5,0,3,7,15,8,6,13,1,12,4,2,12,12,3,11,11,5,0,3,13,3,13,6,13,7,13,1,2,14,0,0,7,2,10,8,4,9,12,4,9,13,6,13,0,2,13,15,5,1,3,3,12,12,11,7,8,2,1,14,7,14,4,11,3,15,11,5,8,2,13,2,14,8,11,11,6,12,7,9,7,14,9,15,14,7,11,9,12,4,4,2,6,8,12,5,14,11,8,10,12,5,4,4,9,11,11,13,2,12,2,3,12,15,7,11,8,10,13,1,6,9,9,7,9,11,15,9,5,2,4,4,11,0,11,2,9,13,8,0,15,2,12,2,14,13,7,9,3,0,3,8,3,12,13,7,10,6,3,12,8,5,0,4,7,11,0,0,11,12,8,2,4,8,11,14,1,0,11,7,0,11,3,1,4,15,11,2,1,6,0,10,11,2,15,6,11,11,8,11,12,6,11,13,9,15,11,1,15,4,2,6,8,3,3,5,7,1,14,7,14,4,2,7,12,10,4,0,8,10,5,8,7,13,14,11,11,8,1,13,2,7,15,1,12,7,2,14,5,3,13,9,8,12,7,1,9,14,14,4,2,8,13,10,2,2,0,7,7,1,7,6,2,7,1,9,15,4,8,6,11,14,4,5,1,9,1,8,1,2,7,4,5,5,13,10,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"9\", \"1\", \"3\"], \"clip_start\": 424.0, \"clip_end\": 429.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q14_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,1,11,7,0,2,14,6,14,5,8,5,15,14,9,14,0,2,10,4,1,9,0,9,0,6,12,1,4,4,12,11,13,10,6,2,2,1,14,2,10,9,7,4,13,12,3,2,14,13,8,10,3,12,12,8,10,12,6,13,9,0,7,3,7,15,13,12,7,15,11,2,15,14,13,4,6,5,9,6,6,7,9,6,4,15,1,6,13,6,13,5,6,15,13,0,5,13,14,11,8,13,9,3,15,6,4,8,9,1,0,3,9,14,4,3,2,6,13,1,10,6,5,9,5,2,14,3,6,5,3,5,6,12,3,0,15,6,1,4,6,11,0,6,0,12,6,3,5,0,1,1,1,8,10,12,0,2,10,10,8,11,2,12,12,8,13,12,1,11,14,14,8,0,8,4,0,9,5,10,0,3,11,13,14,15,9,2,7,13,2,4,6,2,4,0,0,1,15,6,12,11,14,3,6,2,2,2,6,4,9,5,6,15,5,2,7,12,5,2,10,1,10,7,9,3,5,6,13,14,10,3,3,1,14,7,3,15,2,5,6,6,6,13,7,2,11,13,0,15,0,4,10,14,6,11,0,8,8,7,2,2,12,3,4,3,13,8,5,6,0,10,14,14,9,9,14,2,3,14,1,11,1,7,4,3,9,0,1,3,14,3,5,13,6,14,11,0,9,15,8,15,13,1,12,12,14,9,10,8,3,10,14,7,9,15,11,10,11,9,12,3,4,10,11,0,7,3,6,10,6,5,10,10,13,3,11,12,14,13,10,1,10,13,14,13,6,13,9,14,6,0,0,15,13,0,7,9,10,7,12,5,14,12,15,7,7,2,3,3,5,10,9,5,15,8,6,5,2,2,8,10,2,15,10,5,3,8,7,9,3,3,13,1,1,15,11,3,2,0,5,8,11,10,7,12,3,15,7,3,14,7,12,12,4,13,11,5,10,5,1,13,15,13,6,0,6,10,14,6,8,1,3,6,2,11,2,3,14,12,13,7,15,8,1,12,2,1,13,11,10,9,2,1,3,0,9,11,9,6,13,4,11,12,14,5,5,7,11,14,11,15,7,11,1,0,4,0,2,8,11,8,5,1,2,7,6,6,6,3,7,11,3,12,0,6,0,7,5,11,7,1,10,13,4,0,6,4,13,2,10,9,3,1,14,15,12,5,5,15,1,10,5,3,0,13,5,7,5,14,4,0,12,3,13,7,2,3,2,14,7,15,4,5,1,9,5,11,11,13,5,10,12,5,4,11,11,1,11,14,12,11,1,2,10,13,14,12,1,0,8,8,11,14,0,8,9,8,2,10,3,0,4,4,12,4,13,10,12,5,11,0,3,5,15,0,3,15,15,8,7,4,5,0,1,3,15,12,4,12,13,15,13,8,2,9,15,5,1,11,5,5,15,1,5,11,5,10,7,6,10,10,10,3,0,11,13,5,14,3,0,9,1,10,14,1,9,9,15,2,12,14,9,1,0,4,1,2,9,5,13,1,0,12,15,9,15,2,3,3,3,13,14,7,13,2,15,11,2,6,0,15,11,14,4,0,3,14,6,0,15,10,0,0,4,7,6,2,12,4,5,0,12,2,12,13,6,11,12,12,11,12,10,12,14,5,2,5,14,15,10,6,8,12,8,8,5,0,3,7,15,8,6,13,1,12,4,2,12,12,3,11,11,5,0,3,13,3,13,6,13,7,13,1,2,14,0,0,7,2,10,8,4,9,12,4,9,13,6,13,0,2,13,15,5,1,3,3,12,12,11,7,8,2,1,14,7,14,4,11,3,15,11,5,8,2,13,2,14,8,11,11,6,12,7,9,7,14,9,15,14,7,11,9,12,4,4,2,6,8,12,5,14,11,8,10,12,5,4,4,9,11,11,13,2,12,2,3,12,15,7,11,8,10,13,1,6,9,9,7,9,11,15,9,5,2,4,4,11,0,11,2,9,13,8,0,15,2,12,2,14,13,7,9,3,0,3,8,3,12,13,7,10,6,3,12,8,5,0,4,7,11,0,0,11,12,8,2,4,8,11,14,1,0,11,7,0,11,3,1,4,15,11,2,1,6,0,10,11,2,15,6,11,11,8,11,12,6,11,13,9,15,11,1,15,4,2,6,8,3,3,5,7,1,14,7,14,4,2,7,12,10,4,0,8,10,5,8,7,13,14,11,11,8,1,13,2,7,15,1,12,7,2,14,5,3,13,9,8,12,7,1,9,14,14,4,2,8,13,10,2,2,0,7,7,1,7,6,2,7,1,9,15,4,8,6,11,14,4,5,1,9,1,8,1,2,7,4,5,5,13,10,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"12\", \"13\", \"15\"], \"clip_start\": 608.0, \"clip_end\": 613.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q15_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,5,1,11,7,0,2,14,6,14,5,8,5,15,14,9,14,0,2,10,4,1,9,0,9,0,6,12,1,4,4,12,11,13,10,6,2,2,1,14,2,10,9,7,4,13,12,3,2,14,13,8,10,3,12,12,8,10,12,6,13,9,0,7,3,7,15,13,12,7,15,11,2,15,14,13,4,6,5,9,6,6,7,9,6,4,15,1,6,13,6,13,5,6,15,13,0,5,13,14,11,8,13,9,3,15,6,4,8,9,1,0,3,9,14,4,3,2,6,13,1,10,6,5,9,5,2,14,3,6,5,3,5,6,12,3,0,15,6,1,4,6,11,0,6,0,12,6,3,5,0,1,1,1,8,10,12,0,2,10,10,8,11,2,12,12,8,13,12,1,11,14,14,8,0,8,4,0,9,5,10,0,3,11,13,14,15,9,2,7,13,2,4,6,2,4,0,0,1,15,6,12,11,14,3,6,2,2,2,6,4,9,5,6,15,5,2,7,12,5,2,10,1,10,7,9,3,5,6,13,14,10,3,3,1,14,7,3,15,2,5,6,6,6,13,7,2,11,13,0,15,0,4,10,14,6,11,0,8,8,7,2,2,12,3,4,3,13,8,5,6,0,10,14,14,9,9,14,2,3,14,1,11,1,7,4,3,9,0,1,3,14,3,5,13,6,14,11,0,9,15,8,15,13,1,12,12,14,9,10,8,3,10,14,7,9,15,11,10,11,9,12,3,4,10,11,0,7,3,6,10,6,5,10,10,13,3,11,12,14,13,10,1,10,13,14,13,6,13,9,14,6,0,0,15,13,0,7,9,10,7,12,5,14,12,15,7,7,2,3,3,5,10,9,5,15,8,6,5,2,2,8,10,2,15,10,5,3,8,7,9,3,3,13,1,1,15,11,3,2,0,5,8,11,10,7,12,3,15,7,3,14,7,12,12,4,13,11,5,10,5,1,13,15,13,6,0,6,10,14,6,8,1,3,6,2,11,2,3,14,12,13,7,15,8,1,12,2,1,13,11,10,9,2,1,3,0,9,11,9,6,13,4,11,12,14,5,5,7,11,14,11,15,7,11,1,0,4,0,2,8,11,8,5,1,2,7,6,6,6,3,7,11,3,12,0,6,0,7,5,11,7,1,10,13,4,0,6,4,13,2,10,9,3,1,14,15,12,5,5,15,1,10,5,3,0,13,5,7,5,14,4,0,12,3,13,7,2,3,2,14,7,15,4,5,1,9,5,11,11,13,5,10,12,5,4,11,11,1,11,14,12,11,1,2,10,13,14,12,1,0,8,8,11,14,0,8,9,8,2,10,3,0,4,4,12,4,13,10,12,5,11,0,3,5,15,0,3,15,15,8,7,4,5,0,1,3,15,12,4,12,13,15,13,8,2,9,15,5,1,11,5,5,15,1,5,11,5,10,7,6,10,10,10,3,0,11,13,5,14,3,0,9,1,10,14,1,9,9,15,2,12,14,9,1,0,4,1,2,9,5,13,1,0,12,15,9,15,2,3,3,3,13,14,7,13,2,15,11,2,6,0,15,11,14,4,0,3,14,6,0,15,10,0,0,4,7,6,2,12,4,5,0,12,2,12,13,6,11,12,12,11,12,10,12,14,5,2,5,14,15,10,6,8,12,8,8,5,0,3,7,15,8,6,13,1,12,4,2,12,12,3,11,11,5,0,3,13,3,13,6,13,7,13,1,2,14,0,0,7,2,10,8,4,9,12,4,9,13,6,13,0,2,13,15,5,1,3,3,12,12,11,7,8,2,1,14,7,14,4,11,3,15,11,5,8,2,13,2,14,8,11,11,6,12,7,9,7,14,9,15,14,7,11,9,12,4,4,2,6,8,12,5,14,11,8,10,12,5,4,4,9,11,11,13,2,12,2,3,12,15,7,11,8,10,13,1,6,9,9,7,9,11,15,9,5,2,4,4,11,0,11,2,9,13,8,0,15,2,12,2,14,13,7,9,3,0,3,8,3,12,13,7,10,6,3,12,8,5,0,4,7,11,0,0,11,12,8,2,4,8,11,14,1,0,11,7,0,11,3,1,4,15,11,2,1,6,0,10,11,2,15,6,11,11,8,11,12,6,11,13,9,15,11,1,15,4,2,6,8,3,3,5,7,1,14,7,14,4,2,7,12,10,4,0,8,10,5,8,7,13,14,11,11,8,1,13,2,7,15,1,12,7,2,14,5,3,13,9,8,12,7,1,9,14,14,4,2,8,13,10,2,2,0,7,7,1,7,6,2,7,1,9,15,4,8,6,11,14,4,5,1,9,1,8,1,2,7,4,5,5,13,10,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"0\", \"11\", \"15\"], \"clip_start\": 468.0, \"clip_end\": 473.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,12,5,15,3,3,6,2,10,7,9,13,10,0,7,3,2,8,0,12,8,0,10,15,1,11,6,2,5,8,15,4,2,9,10,10,0,13,10,1,14,0,2,1,8,9,15,3,8,4,2,0,9,6,5,1,11,11,0,4,2,12,7,6,13,4,5,9,4,15,8,8,0,2,6,9,1,7,12,6,2,10,7,7,4,3,12,9,12,13,15,2,7,15,14,13,1,0,5,8,9,13,7,2,10,4,1,5,2,8,2,9,10,9,8,3,3,7,2,1,9,1,0,3,11,11,1,11,6,9,9,11,13,15,5,1,12,8,14,2,4,9,13,6,6,2,7,9,4,10,15,7,10,14,15,13,0,15,15,12,7,5,7,7,5,8,7,7,2,7,8,11,15,7,9,6,14,4,5,5,11,13,0,12,15,7,1,7,9,12,14,12,15,1,13,2,8,9,12,11,6,14,6,7,9,13,2,6,1,15,15,8,4,14,6,9,15,4,3,3,2,4,4,0,8,15,15,11,14,9,6,7,4,14,0,6,3,13,5,15,11,14,7,1,6,10,9,5,9,5,15,5,15,2,14,5,6,13,8,10,5,0,2,10,10,7,8,1,2,13,9,5,2,5,4,12,10,12,1,2,13,1,4,5,1,2,1,1,12,2,14,14,9,10,3,1,7,4,2,8,0,2,1,11,7,6,12,6,0,15,4,13,7,2,3,10,15,9,5,0,0,14,8,13,4,14,4,8,5,15,2,4,15,13,14,5,9,0,13,8,6,4,2,12,8,1,1,9,1,9,0,15,3,3,7,0,9,1,7,10,5,11,12,4,6,5,11,15,6,15,9,10,5,13,2,15,1,6,13,15,11,3,0,1,0,8,3,0,5,2,0,4,8,7,12,4,10,4,13,13,11,11,6,10,14,3,10,6,1,13,13,5,15,10,10,2,13,15,14,0,13,11,9,0,14,6,2,8,15,4,1,5,14,8,12,10,11,1,11,2,2,6,10,6,9,5,7,9,4,2,6,3,11,5,13,9,9,2,8,10,10,6,6,1,1,4,9,7,0,11,15,1,8,10,13,15,4,3,7,15,12,15,14,7,10,3,12,4,0,9,4,12,2,1,15,11,10,6,6,8,9,11,13,14,13,7,6,6,4,3,11,2,15,10,10,10,14,4,5,14,1,9,2,15,9,4,0,14,15,6,14,6,8,11,1,14,0,2,2,6,2,8,6,14,3,0,5,8,9,9,10,13,9,3,3,10,5,6,8,10,15,8,4,13,9,10,14,0,6,3,12,10,10,6,8,5,10,8,6,5,11,7,7,5,4,0,13,9,1,8,10,7,7,14,15,6,15,15,11,4,7,13,13,14,7,1,6,14,5,2,6,13,4,15,14,5,11,11,0,15,13,13,4,2,9,2,2,8,13,10,15,1,11,10,5,11,8,4,10,1,12,14,6,3,0,6,12,13,11,8,3,2,9,8,15,11,8,0,13,7,13,2,3,13,5,1,6,9,1,12,12,11,4,15,15,11,12,12,13,13,12,1,12,11,5,13,1,3,15,9,3,1,5,10,2,15,7,15,2,5,9,1,6,0,14,1,14,5,9,1,13,9,7,1,4,15,15,13,3,10,5,1,13,11,5,15,0,14,4,10,12,0,12,4,11,10,4,2,6,2,0,5,5,14,15,7,15,5,1,8,15,11,7,14,9,2,15,1,11,6,1,8,7,2,7,8,5,5,8,6,7,0,5,5,9,6,2,2,9,1,2,3,9,6,0,14,3,4,9,11,11,8,15,15,8,13,4,10,14,11,9,7,8,4,7,1,13,3,8,2,14,13,6,15,8,0,15,7,15,6,12,7,15,6,1,15,11,0,15,1,1,12,1,14,8,12,1,10,0,12,9,13,13,15,3,9,4,14,2,2,4,11,12,0,13,1,11,1,12,13,9,6,0,6,6,12,1,5,0,3,4,10,1,10,7,5,0,7,5,13,2,11,13,6,7,7,7,4,14,6,14,4,10,5,1,6,15,13,3,9,10,8,5,3,13,5,3,0,6,1,10,10,14,15,4,14,6,11,6,10,2,12,12,6,5,13,4,9,2,10,14,4,0,9,1,3,13,11,10,0,14,10,10,6,14,5,1,4,12,8,7,14,13,14,14,1,12,10,15,15,1,3,4,12,10,0,15,10,1,8,6,4,6,8,15,14,4,6,4,11,3,12,7,14,6,0,9,2,14,10,12,11,14,0,2,2,4,0,10,9,5,3,14,14,8,9,13,15,4,6,6,0,4,5,12,4,7,6,0,6,12,15", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"12\", \"6\"], \"clip_start\": 306.0, \"clip_end\": 310.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,12,5,15,3,3,6,2,10,7,9,13,10,0,7,3,2,8,0,12,8,0,10,15,1,11,6,2,5,8,15,4,2,9,10,10,0,13,10,1,14,0,2,1,8,9,15,3,8,4,2,0,9,6,5,1,11,11,0,4,2,12,7,6,13,4,5,9,4,15,8,8,0,2,6,9,1,7,12,6,2,10,7,7,4,3,12,9,12,13,15,2,7,15,14,13,1,0,5,8,9,13,7,2,10,4,1,5,2,8,2,9,10,9,8,3,3,7,2,1,9,1,0,3,11,11,1,11,6,9,9,11,13,15,5,1,12,8,14,2,4,9,13,6,6,2,7,9,4,10,15,7,10,14,15,13,0,15,15,12,7,5,7,7,5,8,7,7,2,7,8,11,15,7,9,6,14,4,5,5,11,13,0,12,15,7,1,7,9,12,14,12,15,1,13,2,8,9,12,11,6,14,6,7,9,13,2,6,1,15,15,8,4,14,6,9,15,4,3,3,2,4,4,0,8,15,15,11,14,9,6,7,4,14,0,6,3,13,5,15,11,14,7,1,6,10,9,5,9,5,15,5,15,2,14,5,6,13,8,10,5,0,2,10,10,7,8,1,2,13,9,5,2,5,4,12,10,12,1,2,13,1,4,5,1,2,1,1,12,2,14,14,9,10,3,1,7,4,2,8,0,2,1,11,7,6,12,6,0,15,4,13,7,2,3,10,15,9,5,0,0,14,8,13,4,14,4,8,5,15,2,4,15,13,14,5,9,0,13,8,6,4,2,12,8,1,1,9,1,9,0,15,3,3,7,0,9,1,7,10,5,11,12,4,6,5,11,15,6,15,9,10,5,13,2,15,1,6,13,15,11,3,0,1,0,8,3,0,5,2,0,4,8,7,12,4,10,4,13,13,11,11,6,10,14,3,10,6,1,13,13,5,15,10,10,2,13,15,14,0,13,11,9,0,14,6,2,8,15,4,1,5,14,8,12,10,11,1,11,2,2,6,10,6,9,5,7,9,4,2,6,3,11,5,13,9,9,2,8,10,10,6,6,1,1,4,9,7,0,11,15,1,8,10,13,15,4,3,7,15,12,15,14,7,10,3,12,4,0,9,4,12,2,1,15,11,10,6,6,8,9,11,13,14,13,7,6,6,4,3,11,2,15,10,10,10,14,4,5,14,1,9,2,15,9,4,0,14,15,6,14,6,8,11,1,14,0,2,2,6,2,8,6,14,3,0,5,8,9,9,10,13,9,3,3,10,5,6,8,10,15,8,4,13,9,10,14,0,6,3,12,10,10,6,8,5,10,8,6,5,11,7,7,5,4,0,13,9,1,8,10,7,7,14,15,6,15,15,11,4,7,13,13,14,7,1,6,14,5,2,6,13,4,15,14,5,11,11,0,15,13,13,4,2,9,2,2,8,13,10,15,1,11,10,5,11,8,4,10,1,12,14,6,3,0,6,12,13,11,8,3,2,9,8,15,11,8,0,13,7,13,2,3,13,5,1,6,9,1,12,12,11,4,15,15,11,12,12,13,13,12,1,12,11,5,13,1,3,15,9,3,1,5,10,2,15,7,15,2,5,9,1,6,0,14,1,14,5,9,1,13,9,7,1,4,15,15,13,3,10,5,1,13,11,5,15,0,14,4,10,12,0,12,4,11,10,4,2,6,2,0,5,5,14,15,7,15,5,1,8,15,11,7,14,9,2,15,1,11,6,1,8,7,2,7,8,5,5,8,6,7,0,5,5,9,6,2,2,9,1,2,3,9,6,0,14,3,4,9,11,11,8,15,15,8,13,4,10,14,11,9,7,8,4,7,1,13,3,8,2,14,13,6,15,8,0,15,7,15,6,12,7,15,6,1,15,11,0,15,1,1,12,1,14,8,12,1,10,0,12,9,13,13,15,3,9,4,14,2,2,4,11,12,0,13,1,11,1,12,13,9,6,0,6,6,12,1,5,0,3,4,10,1,10,7,5,0,7,5,13,2,11,13,6,7,7,7,4,14,6,14,4,10,5,1,6,15,13,3,9,10,8,5,3,13,5,3,0,6,1,10,10,14,15,4,14,6,11,6,10,2,12,12,6,5,13,4,9,2,10,14,4,0,9,1,3,13,11,10,0,14,10,10,6,14,5,1,4,12,8,7,14,13,14,14,1,12,10,15,15,1,3,4,12,10,0,15,10,1,8,6,4,6,8,15,14,4,6,4,11,3,12,7,14,6,0,9,2,14,10,12,11,14,0,2,2,4,0,10,9,5,3,14,14,8,9,13,15,4,6,6,0,4,5,12,4,7,6,0,6,12,15", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"7\", \"0\", \"5\", \"5\"], \"clip_start\": 770.0, \"clip_end\": 776.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,12,5,15,3,3,6,2,10,7,9,13,10,0,7,3,2,8,0,12,8,0,10,15,1,11,6,2,5,8,15,4,2,9,10,10,0,13,10,1,14,0,2,1,8,9,15,3,8,4,2,0,9,6,5,1,11,11,0,4,2,12,7,6,13,4,5,9,4,15,8,8,0,2,6,9,1,7,12,6,2,10,7,7,4,3,12,9,12,13,15,2,7,15,14,13,1,0,5,8,9,13,7,2,10,4,1,5,2,8,2,9,10,9,8,3,3,7,2,1,9,1,0,3,11,11,1,11,6,9,9,11,13,15,5,1,12,8,14,2,4,9,13,6,6,2,7,9,4,10,15,7,10,14,15,13,0,15,15,12,7,5,7,7,5,8,7,7,2,7,8,11,15,7,9,6,14,4,5,5,11,13,0,12,15,7,1,7,9,12,14,12,15,1,13,2,8,9,12,11,6,14,6,7,9,13,2,6,1,15,15,8,4,14,6,9,15,4,3,3,2,4,4,0,8,15,15,11,14,9,6,7,4,14,0,6,3,13,5,15,11,14,7,1,6,10,9,5,9,5,15,5,15,2,14,5,6,13,8,10,5,0,2,10,10,7,8,1,2,13,9,5,2,5,4,12,10,12,1,2,13,1,4,5,1,2,1,1,12,2,14,14,9,10,3,1,7,4,2,8,0,2,1,11,7,6,12,6,0,15,4,13,7,2,3,10,15,9,5,0,0,14,8,13,4,14,4,8,5,15,2,4,15,13,14,5,9,0,13,8,6,4,2,12,8,1,1,9,1,9,0,15,3,3,7,0,9,1,7,10,5,11,12,4,6,5,11,15,6,15,9,10,5,13,2,15,1,6,13,15,11,3,0,1,0,8,3,0,5,2,0,4,8,7,12,4,10,4,13,13,11,11,6,10,14,3,10,6,1,13,13,5,15,10,10,2,13,15,14,0,13,11,9,0,14,6,2,8,15,4,1,5,14,8,12,10,11,1,11,2,2,6,10,6,9,5,7,9,4,2,6,3,11,5,13,9,9,2,8,10,10,6,6,1,1,4,9,7,0,11,15,1,8,10,13,15,4,3,7,15,12,15,14,7,10,3,12,4,0,9,4,12,2,1,15,11,10,6,6,8,9,11,13,14,13,7,6,6,4,3,11,2,15,10,10,10,14,4,5,14,1,9,2,15,9,4,0,14,15,6,14,6,8,11,1,14,0,2,2,6,2,8,6,14,3,0,5,8,9,9,10,13,9,3,3,10,5,6,8,10,15,8,4,13,9,10,14,0,6,3,12,10,10,6,8,5,10,8,6,5,11,7,7,5,4,0,13,9,1,8,10,7,7,14,15,6,15,15,11,4,7,13,13,14,7,1,6,14,5,2,6,13,4,15,14,5,11,11,0,15,13,13,4,2,9,2,2,8,13,10,15,1,11,10,5,11,8,4,10,1,12,14,6,3,0,6,12,13,11,8,3,2,9,8,15,11,8,0,13,7,13,2,3,13,5,1,6,9,1,12,12,11,4,15,15,11,12,12,13,13,12,1,12,11,5,13,1,3,15,9,3,1,5,10,2,15,7,15,2,5,9,1,6,0,14,1,14,5,9,1,13,9,7,1,4,15,15,13,3,10,5,1,13,11,5,15,0,14,4,10,12,0,12,4,11,10,4,2,6,2,0,5,5,14,15,7,15,5,1,8,15,11,7,14,9,2,15,1,11,6,1,8,7,2,7,8,5,5,8,6,7,0,5,5,9,6,2,2,9,1,2,3,9,6,0,14,3,4,9,11,11,8,15,15,8,13,4,10,14,11,9,7,8,4,7,1,13,3,8,2,14,13,6,15,8,0,15,7,15,6,12,7,15,6,1,15,11,0,15,1,1,12,1,14,8,12,1,10,0,12,9,13,13,15,3,9,4,14,2,2,4,11,12,0,13,1,11,1,12,13,9,6,0,6,6,12,1,5,0,3,4,10,1,10,7,5,0,7,5,13,2,11,13,6,7,7,7,4,14,6,14,4,10,5,1,6,15,13,3,9,10,8,5,3,13,5,3,0,6,1,10,10,14,15,4,14,6,11,6,10,2,12,12,6,5,13,4,9,2,10,14,4,0,9,1,3,13,11,10,0,14,10,10,6,14,5,1,4,12,8,7,14,13,14,14,1,12,10,15,15,1,3,4,12,10,0,15,10,1,8,6,4,6,8,15,14,4,6,4,11,3,12,7,14,6,0,9,2,14,10,12,11,14,0,2,2,4,0,10,9,5,3,14,14,8,9,13,15,4,6,6,0,4,5,12,4,7,6,0,6,12,15", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"14\", \"6\", \"7\"], \"clip_start\": 201.0, \"clip_end\": 206.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,12,5,15,3,3,6,2,10,7,9,13,10,0,7,3,2,8,0,12,8,0,10,15,1,11,6,2,5,8,15,4,2,9,10,10,0,13,10,1,14,0,2,1,8,9,15,3,8,4,2,0,9,6,5,1,11,11,0,4,2,12,7,6,13,4,5,9,4,15,8,8,0,2,6,9,1,7,12,6,2,10,7,7,4,3,12,9,12,13,15,2,7,15,14,13,1,0,5,8,9,13,7,2,10,4,1,5,2,8,2,9,10,9,8,3,3,7,2,1,9,1,0,3,11,11,1,11,6,9,9,11,13,15,5,1,12,8,14,2,4,9,13,6,6,2,7,9,4,10,15,7,10,14,15,13,0,15,15,12,7,5,7,7,5,8,7,7,2,7,8,11,15,7,9,6,14,4,5,5,11,13,0,12,15,7,1,7,9,12,14,12,15,1,13,2,8,9,12,11,6,14,6,7,9,13,2,6,1,15,15,8,4,14,6,9,15,4,3,3,2,4,4,0,8,15,15,11,14,9,6,7,4,14,0,6,3,13,5,15,11,14,7,1,6,10,9,5,9,5,15,5,15,2,14,5,6,13,8,10,5,0,2,10,10,7,8,1,2,13,9,5,2,5,4,12,10,12,1,2,13,1,4,5,1,2,1,1,12,2,14,14,9,10,3,1,7,4,2,8,0,2,1,11,7,6,12,6,0,15,4,13,7,2,3,10,15,9,5,0,0,14,8,13,4,14,4,8,5,15,2,4,15,13,14,5,9,0,13,8,6,4,2,12,8,1,1,9,1,9,0,15,3,3,7,0,9,1,7,10,5,11,12,4,6,5,11,15,6,15,9,10,5,13,2,15,1,6,13,15,11,3,0,1,0,8,3,0,5,2,0,4,8,7,12,4,10,4,13,13,11,11,6,10,14,3,10,6,1,13,13,5,15,10,10,2,13,15,14,0,13,11,9,0,14,6,2,8,15,4,1,5,14,8,12,10,11,1,11,2,2,6,10,6,9,5,7,9,4,2,6,3,11,5,13,9,9,2,8,10,10,6,6,1,1,4,9,7,0,11,15,1,8,10,13,15,4,3,7,15,12,15,14,7,10,3,12,4,0,9,4,12,2,1,15,11,10,6,6,8,9,11,13,14,13,7,6,6,4,3,11,2,15,10,10,10,14,4,5,14,1,9,2,15,9,4,0,14,15,6,14,6,8,11,1,14,0,2,2,6,2,8,6,14,3,0,5,8,9,9,10,13,9,3,3,10,5,6,8,10,15,8,4,13,9,10,14,0,6,3,12,10,10,6,8,5,10,8,6,5,11,7,7,5,4,0,13,9,1,8,10,7,7,14,15,6,15,15,11,4,7,13,13,14,7,1,6,14,5,2,6,13,4,15,14,5,11,11,0,15,13,13,4,2,9,2,2,8,13,10,15,1,11,10,5,11,8,4,10,1,12,14,6,3,0,6,12,13,11,8,3,2,9,8,15,11,8,0,13,7,13,2,3,13,5,1,6,9,1,12,12,11,4,15,15,11,12,12,13,13,12,1,12,11,5,13,1,3,15,9,3,1,5,10,2,15,7,15,2,5,9,1,6,0,14,1,14,5,9,1,13,9,7,1,4,15,15,13,3,10,5,1,13,11,5,15,0,14,4,10,12,0,12,4,11,10,4,2,6,2,0,5,5,14,15,7,15,5,1,8,15,11,7,14,9,2,15,1,11,6,1,8,7,2,7,8,5,5,8,6,7,0,5,5,9,6,2,2,9,1,2,3,9,6,0,14,3,4,9,11,11,8,15,15,8,13,4,10,14,11,9,7,8,4,7,1,13,3,8,2,14,13,6,15,8,0,15,7,15,6,12,7,15,6,1,15,11,0,15,1,1,12,1,14,8,12,1,10,0,12,9,13,13,15,3,9,4,14,2,2,4,11,12,0,13,1,11,1,12,13,9,6,0,6,6,12,1,5,0,3,4,10,1,10,7,5,0,7,5,13,2,11,13,6,7,7,7,4,14,6,14,4,10,5,1,6,15,13,3,9,10,8,5,3,13,5,3,0,6,1,10,10,14,15,4,14,6,11,6,10,2,12,12,6,5,13,4,9,2,10,14,4,0,9,1,3,13,11,10,0,14,10,10,6,14,5,1,4,12,8,7,14,13,14,14,1,12,10,15,15,1,3,4,12,10,0,15,10,1,8,6,4,6,8,15,14,4,6,4,11,3,12,7,14,6,0,9,2,14,10,12,11,14,0,2,2,4,0,10,9,5,3,14,14,8,9,13,15,4,6,6,0,4,5,12,4,7,6,0,6,12,15", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"9\", \"2\", \"15\"], \"clip_start\": 754.0, \"clip_end\": 759.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,12,5,15,3,3,6,2,10,7,9,13,10,0,7,3,2,8,0,12,8,0,10,15,1,11,6,2,5,8,15,4,2,9,10,10,0,13,10,1,14,0,2,1,8,9,15,3,8,4,2,0,9,6,5,1,11,11,0,4,2,12,7,6,13,4,5,9,4,15,8,8,0,2,6,9,1,7,12,6,2,10,7,7,4,3,12,9,12,13,15,2,7,15,14,13,1,0,5,8,9,13,7,2,10,4,1,5,2,8,2,9,10,9,8,3,3,7,2,1,9,1,0,3,11,11,1,11,6,9,9,11,13,15,5,1,12,8,14,2,4,9,13,6,6,2,7,9,4,10,15,7,10,14,15,13,0,15,15,12,7,5,7,7,5,8,7,7,2,7,8,11,15,7,9,6,14,4,5,5,11,13,0,12,15,7,1,7,9,12,14,12,15,1,13,2,8,9,12,11,6,14,6,7,9,13,2,6,1,15,15,8,4,14,6,9,15,4,3,3,2,4,4,0,8,15,15,11,14,9,6,7,4,14,0,6,3,13,5,15,11,14,7,1,6,10,9,5,9,5,15,5,15,2,14,5,6,13,8,10,5,0,2,10,10,7,8,1,2,13,9,5,2,5,4,12,10,12,1,2,13,1,4,5,1,2,1,1,12,2,14,14,9,10,3,1,7,4,2,8,0,2,1,11,7,6,12,6,0,15,4,13,7,2,3,10,15,9,5,0,0,14,8,13,4,14,4,8,5,15,2,4,15,13,14,5,9,0,13,8,6,4,2,12,8,1,1,9,1,9,0,15,3,3,7,0,9,1,7,10,5,11,12,4,6,5,11,15,6,15,9,10,5,13,2,15,1,6,13,15,11,3,0,1,0,8,3,0,5,2,0,4,8,7,12,4,10,4,13,13,11,11,6,10,14,3,10,6,1,13,13,5,15,10,10,2,13,15,14,0,13,11,9,0,14,6,2,8,15,4,1,5,14,8,12,10,11,1,11,2,2,6,10,6,9,5,7,9,4,2,6,3,11,5,13,9,9,2,8,10,10,6,6,1,1,4,9,7,0,11,15,1,8,10,13,15,4,3,7,15,12,15,14,7,10,3,12,4,0,9,4,12,2,1,15,11,10,6,6,8,9,11,13,14,13,7,6,6,4,3,11,2,15,10,10,10,14,4,5,14,1,9,2,15,9,4,0,14,15,6,14,6,8,11,1,14,0,2,2,6,2,8,6,14,3,0,5,8,9,9,10,13,9,3,3,10,5,6,8,10,15,8,4,13,9,10,14,0,6,3,12,10,10,6,8,5,10,8,6,5,11,7,7,5,4,0,13,9,1,8,10,7,7,14,15,6,15,15,11,4,7,13,13,14,7,1,6,14,5,2,6,13,4,15,14,5,11,11,0,15,13,13,4,2,9,2,2,8,13,10,15,1,11,10,5,11,8,4,10,1,12,14,6,3,0,6,12,13,11,8,3,2,9,8,15,11,8,0,13,7,13,2,3,13,5,1,6,9,1,12,12,11,4,15,15,11,12,12,13,13,12,1,12,11,5,13,1,3,15,9,3,1,5,10,2,15,7,15,2,5,9,1,6,0,14,1,14,5,9,1,13,9,7,1,4,15,15,13,3,10,5,1,13,11,5,15,0,14,4,10,12,0,12,4,11,10,4,2,6,2,0,5,5,14,15,7,15,5,1,8,15,11,7,14,9,2,15,1,11,6,1,8,7,2,7,8,5,5,8,6,7,0,5,5,9,6,2,2,9,1,2,3,9,6,0,14,3,4,9,11,11,8,15,15,8,13,4,10,14,11,9,7,8,4,7,1,13,3,8,2,14,13,6,15,8,0,15,7,15,6,12,7,15,6,1,15,11,0,15,1,1,12,1,14,8,12,1,10,0,12,9,13,13,15,3,9,4,14,2,2,4,11,12,0,13,1,11,1,12,13,9,6,0,6,6,12,1,5,0,3,4,10,1,10,7,5,0,7,5,13,2,11,13,6,7,7,7,4,14,6,14,4,10,5,1,6,15,13,3,9,10,8,5,3,13,5,3,0,6,1,10,10,14,15,4,14,6,11,6,10,2,12,12,6,5,13,4,9,2,10,14,4,0,9,1,3,13,11,10,0,14,10,10,6,14,5,1,4,12,8,7,14,13,14,14,1,12,10,15,15,1,3,4,12,10,0,15,10,1,8,6,4,6,8,15,14,4,6,4,11,3,12,7,14,6,0,9,2,14,10,12,11,14,0,2,2,4,0,10,9,5,3,14,14,8,9,13,15,4,6,6,0,4,5,12,4,7,6,0,6,12,15", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"12\", \"6\", \"2\", \"10\"], \"clip_start\": 78.0, \"clip_end\": 84.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,12,5,15,3,3,6,2,10,7,9,13,10,0,7,3,2,8,0,12,8,0,10,15,1,11,6,2,5,8,15,4,2,9,10,10,0,13,10,1,14,0,2,1,8,9,15,3,8,4,2,0,9,6,5,1,11,11,0,4,2,12,7,6,13,4,5,9,4,15,8,8,0,2,6,9,1,7,12,6,2,10,7,7,4,3,12,9,12,13,15,2,7,15,14,13,1,0,5,8,9,13,7,2,10,4,1,5,2,8,2,9,10,9,8,3,3,7,2,1,9,1,0,3,11,11,1,11,6,9,9,11,13,15,5,1,12,8,14,2,4,9,13,6,6,2,7,9,4,10,15,7,10,14,15,13,0,15,15,12,7,5,7,7,5,8,7,7,2,7,8,11,15,7,9,6,14,4,5,5,11,13,0,12,15,7,1,7,9,12,14,12,15,1,13,2,8,9,12,11,6,14,6,7,9,13,2,6,1,15,15,8,4,14,6,9,15,4,3,3,2,4,4,0,8,15,15,11,14,9,6,7,4,14,0,6,3,13,5,15,11,14,7,1,6,10,9,5,9,5,15,5,15,2,14,5,6,13,8,10,5,0,2,10,10,7,8,1,2,13,9,5,2,5,4,12,10,12,1,2,13,1,4,5,1,2,1,1,12,2,14,14,9,10,3,1,7,4,2,8,0,2,1,11,7,6,12,6,0,15,4,13,7,2,3,10,15,9,5,0,0,14,8,13,4,14,4,8,5,15,2,4,15,13,14,5,9,0,13,8,6,4,2,12,8,1,1,9,1,9,0,15,3,3,7,0,9,1,7,10,5,11,12,4,6,5,11,15,6,15,9,10,5,13,2,15,1,6,13,15,11,3,0,1,0,8,3,0,5,2,0,4,8,7,12,4,10,4,13,13,11,11,6,10,14,3,10,6,1,13,13,5,15,10,10,2,13,15,14,0,13,11,9,0,14,6,2,8,15,4,1,5,14,8,12,10,11,1,11,2,2,6,10,6,9,5,7,9,4,2,6,3,11,5,13,9,9,2,8,10,10,6,6,1,1,4,9,7,0,11,15,1,8,10,13,15,4,3,7,15,12,15,14,7,10,3,12,4,0,9,4,12,2,1,15,11,10,6,6,8,9,11,13,14,13,7,6,6,4,3,11,2,15,10,10,10,14,4,5,14,1,9,2,15,9,4,0,14,15,6,14,6,8,11,1,14,0,2,2,6,2,8,6,14,3,0,5,8,9,9,10,13,9,3,3,10,5,6,8,10,15,8,4,13,9,10,14,0,6,3,12,10,10,6,8,5,10,8,6,5,11,7,7,5,4,0,13,9,1,8,10,7,7,14,15,6,15,15,11,4,7,13,13,14,7,1,6,14,5,2,6,13,4,15,14,5,11,11,0,15,13,13,4,2,9,2,2,8,13,10,15,1,11,10,5,11,8,4,10,1,12,14,6,3,0,6,12,13,11,8,3,2,9,8,15,11,8,0,13,7,13,2,3,13,5,1,6,9,1,12,12,11,4,15,15,11,12,12,13,13,12,1,12,11,5,13,1,3,15,9,3,1,5,10,2,15,7,15,2,5,9,1,6,0,14,1,14,5,9,1,13,9,7,1,4,15,15,13,3,10,5,1,13,11,5,15,0,14,4,10,12,0,12,4,11,10,4,2,6,2,0,5,5,14,15,7,15,5,1,8,15,11,7,14,9,2,15,1,11,6,1,8,7,2,7,8,5,5,8,6,7,0,5,5,9,6,2,2,9,1,2,3,9,6,0,14,3,4,9,11,11,8,15,15,8,13,4,10,14,11,9,7,8,4,7,1,13,3,8,2,14,13,6,15,8,0,15,7,15,6,12,7,15,6,1,15,11,0,15,1,1,12,1,14,8,12,1,10,0,12,9,13,13,15,3,9,4,14,2,2,4,11,12,0,13,1,11,1,12,13,9,6,0,6,6,12,1,5,0,3,4,10,1,10,7,5,0,7,5,13,2,11,13,6,7,7,7,4,14,6,14,4,10,5,1,6,15,13,3,9,10,8,5,3,13,5,3,0,6,1,10,10,14,15,4,14,6,11,6,10,2,12,12,6,5,13,4,9,2,10,14,4,0,9,1,3,13,11,10,0,14,10,10,6,14,5,1,4,12,8,7,14,13,14,14,1,12,10,15,15,1,3,4,12,10,0,15,10,1,8,6,4,6,8,15,14,4,6,4,11,3,12,7,14,6,0,9,2,14,10,12,11,14,0,2,2,4,0,10,9,5,3,14,14,8,9,13,15,4,6,6,0,4,5,12,4,7,6,0,6,12,15", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"15\", \"11\", \"3\"], \"clip_start\": 379.0, \"clip_end\": 384.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,12,5,15,3,3,6,2,10,7,9,13,10,0,7,3,2,8,0,12,8,0,10,15,1,11,6,2,5,8,15,4,2,9,10,10,0,13,10,1,14,0,2,1,8,9,15,3,8,4,2,0,9,6,5,1,11,11,0,4,2,12,7,6,13,4,5,9,4,15,8,8,0,2,6,9,1,7,12,6,2,10,7,7,4,3,12,9,12,13,15,2,7,15,14,13,1,0,5,8,9,13,7,2,10,4,1,5,2,8,2,9,10,9,8,3,3,7,2,1,9,1,0,3,11,11,1,11,6,9,9,11,13,15,5,1,12,8,14,2,4,9,13,6,6,2,7,9,4,10,15,7,10,14,15,13,0,15,15,12,7,5,7,7,5,8,7,7,2,7,8,11,15,7,9,6,14,4,5,5,11,13,0,12,15,7,1,7,9,12,14,12,15,1,13,2,8,9,12,11,6,14,6,7,9,13,2,6,1,15,15,8,4,14,6,9,15,4,3,3,2,4,4,0,8,15,15,11,14,9,6,7,4,14,0,6,3,13,5,15,11,14,7,1,6,10,9,5,9,5,15,5,15,2,14,5,6,13,8,10,5,0,2,10,10,7,8,1,2,13,9,5,2,5,4,12,10,12,1,2,13,1,4,5,1,2,1,1,12,2,14,14,9,10,3,1,7,4,2,8,0,2,1,11,7,6,12,6,0,15,4,13,7,2,3,10,15,9,5,0,0,14,8,13,4,14,4,8,5,15,2,4,15,13,14,5,9,0,13,8,6,4,2,12,8,1,1,9,1,9,0,15,3,3,7,0,9,1,7,10,5,11,12,4,6,5,11,15,6,15,9,10,5,13,2,15,1,6,13,15,11,3,0,1,0,8,3,0,5,2,0,4,8,7,12,4,10,4,13,13,11,11,6,10,14,3,10,6,1,13,13,5,15,10,10,2,13,15,14,0,13,11,9,0,14,6,2,8,15,4,1,5,14,8,12,10,11,1,11,2,2,6,10,6,9,5,7,9,4,2,6,3,11,5,13,9,9,2,8,10,10,6,6,1,1,4,9,7,0,11,15,1,8,10,13,15,4,3,7,15,12,15,14,7,10,3,12,4,0,9,4,12,2,1,15,11,10,6,6,8,9,11,13,14,13,7,6,6,4,3,11,2,15,10,10,10,14,4,5,14,1,9,2,15,9,4,0,14,15,6,14,6,8,11,1,14,0,2,2,6,2,8,6,14,3,0,5,8,9,9,10,13,9,3,3,10,5,6,8,10,15,8,4,13,9,10,14,0,6,3,12,10,10,6,8,5,10,8,6,5,11,7,7,5,4,0,13,9,1,8,10,7,7,14,15,6,15,15,11,4,7,13,13,14,7,1,6,14,5,2,6,13,4,15,14,5,11,11,0,15,13,13,4,2,9,2,2,8,13,10,15,1,11,10,5,11,8,4,10,1,12,14,6,3,0,6,12,13,11,8,3,2,9,8,15,11,8,0,13,7,13,2,3,13,5,1,6,9,1,12,12,11,4,15,15,11,12,12,13,13,12,1,12,11,5,13,1,3,15,9,3,1,5,10,2,15,7,15,2,5,9,1,6,0,14,1,14,5,9,1,13,9,7,1,4,15,15,13,3,10,5,1,13,11,5,15,0,14,4,10,12,0,12,4,11,10,4,2,6,2,0,5,5,14,15,7,15,5,1,8,15,11,7,14,9,2,15,1,11,6,1,8,7,2,7,8,5,5,8,6,7,0,5,5,9,6,2,2,9,1,2,3,9,6,0,14,3,4,9,11,11,8,15,15,8,13,4,10,14,11,9,7,8,4,7,1,13,3,8,2,14,13,6,15,8,0,15,7,15,6,12,7,15,6,1,15,11,0,15,1,1,12,1,14,8,12,1,10,0,12,9,13,13,15,3,9,4,14,2,2,4,11,12,0,13,1,11,1,12,13,9,6,0,6,6,12,1,5,0,3,4,10,1,10,7,5,0,7,5,13,2,11,13,6,7,7,7,4,14,6,14,4,10,5,1,6,15,13,3,9,10,8,5,3,13,5,3,0,6,1,10,10,14,15,4,14,6,11,6,10,2,12,12,6,5,13,4,9,2,10,14,4,0,9,1,3,13,11,10,0,14,10,10,6,14,5,1,4,12,8,7,14,13,14,14,1,12,10,15,15,1,3,4,12,10,0,15,10,1,8,6,4,6,8,15,14,4,6,4,11,3,12,7,14,6,0,9,2,14,10,12,11,14,0,2,2,4,0,10,9,5,3,14,14,8,9,13,15,4,6,6,0,4,5,12,4,7,6,0,6,12,15", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"7\", \"4\", \"14\", \"6\"], \"clip_start\": 887.0, \"clip_end\": 892.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,12,5,15,3,3,6,2,10,7,9,13,10,0,7,3,2,8,0,12,8,0,10,15,1,11,6,2,5,8,15,4,2,9,10,10,0,13,10,1,14,0,2,1,8,9,15,3,8,4,2,0,9,6,5,1,11,11,0,4,2,12,7,6,13,4,5,9,4,15,8,8,0,2,6,9,1,7,12,6,2,10,7,7,4,3,12,9,12,13,15,2,7,15,14,13,1,0,5,8,9,13,7,2,10,4,1,5,2,8,2,9,10,9,8,3,3,7,2,1,9,1,0,3,11,11,1,11,6,9,9,11,13,15,5,1,12,8,14,2,4,9,13,6,6,2,7,9,4,10,15,7,10,14,15,13,0,15,15,12,7,5,7,7,5,8,7,7,2,7,8,11,15,7,9,6,14,4,5,5,11,13,0,12,15,7,1,7,9,12,14,12,15,1,13,2,8,9,12,11,6,14,6,7,9,13,2,6,1,15,15,8,4,14,6,9,15,4,3,3,2,4,4,0,8,15,15,11,14,9,6,7,4,14,0,6,3,13,5,15,11,14,7,1,6,10,9,5,9,5,15,5,15,2,14,5,6,13,8,10,5,0,2,10,10,7,8,1,2,13,9,5,2,5,4,12,10,12,1,2,13,1,4,5,1,2,1,1,12,2,14,14,9,10,3,1,7,4,2,8,0,2,1,11,7,6,12,6,0,15,4,13,7,2,3,10,15,9,5,0,0,14,8,13,4,14,4,8,5,15,2,4,15,13,14,5,9,0,13,8,6,4,2,12,8,1,1,9,1,9,0,15,3,3,7,0,9,1,7,10,5,11,12,4,6,5,11,15,6,15,9,10,5,13,2,15,1,6,13,15,11,3,0,1,0,8,3,0,5,2,0,4,8,7,12,4,10,4,13,13,11,11,6,10,14,3,10,6,1,13,13,5,15,10,10,2,13,15,14,0,13,11,9,0,14,6,2,8,15,4,1,5,14,8,12,10,11,1,11,2,2,6,10,6,9,5,7,9,4,2,6,3,11,5,13,9,9,2,8,10,10,6,6,1,1,4,9,7,0,11,15,1,8,10,13,15,4,3,7,15,12,15,14,7,10,3,12,4,0,9,4,12,2,1,15,11,10,6,6,8,9,11,13,14,13,7,6,6,4,3,11,2,15,10,10,10,14,4,5,14,1,9,2,15,9,4,0,14,15,6,14,6,8,11,1,14,0,2,2,6,2,8,6,14,3,0,5,8,9,9,10,13,9,3,3,10,5,6,8,10,15,8,4,13,9,10,14,0,6,3,12,10,10,6,8,5,10,8,6,5,11,7,7,5,4,0,13,9,1,8,10,7,7,14,15,6,15,15,11,4,7,13,13,14,7,1,6,14,5,2,6,13,4,15,14,5,11,11,0,15,13,13,4,2,9,2,2,8,13,10,15,1,11,10,5,11,8,4,10,1,12,14,6,3,0,6,12,13,11,8,3,2,9,8,15,11,8,0,13,7,13,2,3,13,5,1,6,9,1,12,12,11,4,15,15,11,12,12,13,13,12,1,12,11,5,13,1,3,15,9,3,1,5,10,2,15,7,15,2,5,9,1,6,0,14,1,14,5,9,1,13,9,7,1,4,15,15,13,3,10,5,1,13,11,5,15,0,14,4,10,12,0,12,4,11,10,4,2,6,2,0,5,5,14,15,7,15,5,1,8,15,11,7,14,9,2,15,1,11,6,1,8,7,2,7,8,5,5,8,6,7,0,5,5,9,6,2,2,9,1,2,3,9,6,0,14,3,4,9,11,11,8,15,15,8,13,4,10,14,11,9,7,8,4,7,1,13,3,8,2,14,13,6,15,8,0,15,7,15,6,12,7,15,6,1,15,11,0,15,1,1,12,1,14,8,12,1,10,0,12,9,13,13,15,3,9,4,14,2,2,4,11,12,0,13,1,11,1,12,13,9,6,0,6,6,12,1,5,0,3,4,10,1,10,7,5,0,7,5,13,2,11,13,6,7,7,7,4,14,6,14,4,10,5,1,6,15,13,3,9,10,8,5,3,13,5,3,0,6,1,10,10,14,15,4,14,6,11,6,10,2,12,12,6,5,13,4,9,2,10,14,4,0,9,1,3,13,11,10,0,14,10,10,6,14,5,1,4,12,8,7,14,13,14,14,1,12,10,15,15,1,3,4,12,10,0,15,10,1,8,6,4,6,8,15,14,4,6,4,11,3,12,7,14,6,0,9,2,14,10,12,11,14,0,2,2,4,0,10,9,5,3,14,14,8,9,13,15,4,6,6,0,4,5,12,4,7,6,0,6,12,15", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"8\", \"0\"], \"clip_start\": 815.0, \"clip_end\": 818.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,12,5,15,3,3,6,2,10,7,9,13,10,0,7,3,2,8,0,12,8,0,10,15,1,11,6,2,5,8,15,4,2,9,10,10,0,13,10,1,14,0,2,1,8,9,15,3,8,4,2,0,9,6,5,1,11,11,0,4,2,12,7,6,13,4,5,9,4,15,8,8,0,2,6,9,1,7,12,6,2,10,7,7,4,3,12,9,12,13,15,2,7,15,14,13,1,0,5,8,9,13,7,2,10,4,1,5,2,8,2,9,10,9,8,3,3,7,2,1,9,1,0,3,11,11,1,11,6,9,9,11,13,15,5,1,12,8,14,2,4,9,13,6,6,2,7,9,4,10,15,7,10,14,15,13,0,15,15,12,7,5,7,7,5,8,7,7,2,7,8,11,15,7,9,6,14,4,5,5,11,13,0,12,15,7,1,7,9,12,14,12,15,1,13,2,8,9,12,11,6,14,6,7,9,13,2,6,1,15,15,8,4,14,6,9,15,4,3,3,2,4,4,0,8,15,15,11,14,9,6,7,4,14,0,6,3,13,5,15,11,14,7,1,6,10,9,5,9,5,15,5,15,2,14,5,6,13,8,10,5,0,2,10,10,7,8,1,2,13,9,5,2,5,4,12,10,12,1,2,13,1,4,5,1,2,1,1,12,2,14,14,9,10,3,1,7,4,2,8,0,2,1,11,7,6,12,6,0,15,4,13,7,2,3,10,15,9,5,0,0,14,8,13,4,14,4,8,5,15,2,4,15,13,14,5,9,0,13,8,6,4,2,12,8,1,1,9,1,9,0,15,3,3,7,0,9,1,7,10,5,11,12,4,6,5,11,15,6,15,9,10,5,13,2,15,1,6,13,15,11,3,0,1,0,8,3,0,5,2,0,4,8,7,12,4,10,4,13,13,11,11,6,10,14,3,10,6,1,13,13,5,15,10,10,2,13,15,14,0,13,11,9,0,14,6,2,8,15,4,1,5,14,8,12,10,11,1,11,2,2,6,10,6,9,5,7,9,4,2,6,3,11,5,13,9,9,2,8,10,10,6,6,1,1,4,9,7,0,11,15,1,8,10,13,15,4,3,7,15,12,15,14,7,10,3,12,4,0,9,4,12,2,1,15,11,10,6,6,8,9,11,13,14,13,7,6,6,4,3,11,2,15,10,10,10,14,4,5,14,1,9,2,15,9,4,0,14,15,6,14,6,8,11,1,14,0,2,2,6,2,8,6,14,3,0,5,8,9,9,10,13,9,3,3,10,5,6,8,10,15,8,4,13,9,10,14,0,6,3,12,10,10,6,8,5,10,8,6,5,11,7,7,5,4,0,13,9,1,8,10,7,7,14,15,6,15,15,11,4,7,13,13,14,7,1,6,14,5,2,6,13,4,15,14,5,11,11,0,15,13,13,4,2,9,2,2,8,13,10,15,1,11,10,5,11,8,4,10,1,12,14,6,3,0,6,12,13,11,8,3,2,9,8,15,11,8,0,13,7,13,2,3,13,5,1,6,9,1,12,12,11,4,15,15,11,12,12,13,13,12,1,12,11,5,13,1,3,15,9,3,1,5,10,2,15,7,15,2,5,9,1,6,0,14,1,14,5,9,1,13,9,7,1,4,15,15,13,3,10,5,1,13,11,5,15,0,14,4,10,12,0,12,4,11,10,4,2,6,2,0,5,5,14,15,7,15,5,1,8,15,11,7,14,9,2,15,1,11,6,1,8,7,2,7,8,5,5,8,6,7,0,5,5,9,6,2,2,9,1,2,3,9,6,0,14,3,4,9,11,11,8,15,15,8,13,4,10,14,11,9,7,8,4,7,1,13,3,8,2,14,13,6,15,8,0,15,7,15,6,12,7,15,6,1,15,11,0,15,1,1,12,1,14,8,12,1,10,0,12,9,13,13,15,3,9,4,14,2,2,4,11,12,0,13,1,11,1,12,13,9,6,0,6,6,12,1,5,0,3,4,10,1,10,7,5,0,7,5,13,2,11,13,6,7,7,7,4,14,6,14,4,10,5,1,6,15,13,3,9,10,8,5,3,13,5,3,0,6,1,10,10,14,15,4,14,6,11,6,10,2,12,12,6,5,13,4,9,2,10,14,4,0,9,1,3,13,11,10,0,14,10,10,6,14,5,1,4,12,8,7,14,13,14,14,1,12,10,15,15,1,3,4,12,10,0,15,10,1,8,6,4,6,8,15,14,4,6,4,11,3,12,7,14,6,0,9,2,14,10,12,11,14,0,2,2,4,0,10,9,5,3,14,14,8,9,13,15,4,6,6,0,4,5,12,4,7,6,0,6,12,15", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"7\", \"5\", \"4\", \"0\", \"13\"], \"clip_start\": 583.0, \"clip_end\": 589.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,12,5,15,3,3,6,2,10,7,9,13,10,0,7,3,2,8,0,12,8,0,10,15,1,11,6,2,5,8,15,4,2,9,10,10,0,13,10,1,14,0,2,1,8,9,15,3,8,4,2,0,9,6,5,1,11,11,0,4,2,12,7,6,13,4,5,9,4,15,8,8,0,2,6,9,1,7,12,6,2,10,7,7,4,3,12,9,12,13,15,2,7,15,14,13,1,0,5,8,9,13,7,2,10,4,1,5,2,8,2,9,10,9,8,3,3,7,2,1,9,1,0,3,11,11,1,11,6,9,9,11,13,15,5,1,12,8,14,2,4,9,13,6,6,2,7,9,4,10,15,7,10,14,15,13,0,15,15,12,7,5,7,7,5,8,7,7,2,7,8,11,15,7,9,6,14,4,5,5,11,13,0,12,15,7,1,7,9,12,14,12,15,1,13,2,8,9,12,11,6,14,6,7,9,13,2,6,1,15,15,8,4,14,6,9,15,4,3,3,2,4,4,0,8,15,15,11,14,9,6,7,4,14,0,6,3,13,5,15,11,14,7,1,6,10,9,5,9,5,15,5,15,2,14,5,6,13,8,10,5,0,2,10,10,7,8,1,2,13,9,5,2,5,4,12,10,12,1,2,13,1,4,5,1,2,1,1,12,2,14,14,9,10,3,1,7,4,2,8,0,2,1,11,7,6,12,6,0,15,4,13,7,2,3,10,15,9,5,0,0,14,8,13,4,14,4,8,5,15,2,4,15,13,14,5,9,0,13,8,6,4,2,12,8,1,1,9,1,9,0,15,3,3,7,0,9,1,7,10,5,11,12,4,6,5,11,15,6,15,9,10,5,13,2,15,1,6,13,15,11,3,0,1,0,8,3,0,5,2,0,4,8,7,12,4,10,4,13,13,11,11,6,10,14,3,10,6,1,13,13,5,15,10,10,2,13,15,14,0,13,11,9,0,14,6,2,8,15,4,1,5,14,8,12,10,11,1,11,2,2,6,10,6,9,5,7,9,4,2,6,3,11,5,13,9,9,2,8,10,10,6,6,1,1,4,9,7,0,11,15,1,8,10,13,15,4,3,7,15,12,15,14,7,10,3,12,4,0,9,4,12,2,1,15,11,10,6,6,8,9,11,13,14,13,7,6,6,4,3,11,2,15,10,10,10,14,4,5,14,1,9,2,15,9,4,0,14,15,6,14,6,8,11,1,14,0,2,2,6,2,8,6,14,3,0,5,8,9,9,10,13,9,3,3,10,5,6,8,10,15,8,4,13,9,10,14,0,6,3,12,10,10,6,8,5,10,8,6,5,11,7,7,5,4,0,13,9,1,8,10,7,7,14,15,6,15,15,11,4,7,13,13,14,7,1,6,14,5,2,6,13,4,15,14,5,11,11,0,15,13,13,4,2,9,2,2,8,13,10,15,1,11,10,5,11,8,4,10,1,12,14,6,3,0,6,12,13,11,8,3,2,9,8,15,11,8,0,13,7,13,2,3,13,5,1,6,9,1,12,12,11,4,15,15,11,12,12,13,13,12,1,12,11,5,13,1,3,15,9,3,1,5,10,2,15,7,15,2,5,9,1,6,0,14,1,14,5,9,1,13,9,7,1,4,15,15,13,3,10,5,1,13,11,5,15,0,14,4,10,12,0,12,4,11,10,4,2,6,2,0,5,5,14,15,7,15,5,1,8,15,11,7,14,9,2,15,1,11,6,1,8,7,2,7,8,5,5,8,6,7,0,5,5,9,6,2,2,9,1,2,3,9,6,0,14,3,4,9,11,11,8,15,15,8,13,4,10,14,11,9,7,8,4,7,1,13,3,8,2,14,13,6,15,8,0,15,7,15,6,12,7,15,6,1,15,11,0,15,1,1,12,1,14,8,12,1,10,0,12,9,13,13,15,3,9,4,14,2,2,4,11,12,0,13,1,11,1,12,13,9,6,0,6,6,12,1,5,0,3,4,10,1,10,7,5,0,7,5,13,2,11,13,6,7,7,7,4,14,6,14,4,10,5,1,6,15,13,3,9,10,8,5,3,13,5,3,0,6,1,10,10,14,15,4,14,6,11,6,10,2,12,12,6,5,13,4,9,2,10,14,4,0,9,1,3,13,11,10,0,14,10,10,6,14,5,1,4,12,8,7,14,13,14,14,1,12,10,15,15,1,3,4,12,10,0,15,10,1,8,6,4,6,8,15,14,4,6,4,11,3,12,7,14,6,0,9,2,14,10,12,11,14,0,2,2,4,0,10,9,5,3,14,14,8,9,13,15,4,6,6,0,4,5,12,4,7,6,0,6,12,15", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"14\"], \"clip_start\": 432.0, \"clip_end\": 435.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,12,5,15,3,3,6,2,10,7,9,13,10,0,7,3,2,8,0,12,8,0,10,15,1,11,6,2,5,8,15,4,2,9,10,10,0,13,10,1,14,0,2,1,8,9,15,3,8,4,2,0,9,6,5,1,11,11,0,4,2,12,7,6,13,4,5,9,4,15,8,8,0,2,6,9,1,7,12,6,2,10,7,7,4,3,12,9,12,13,15,2,7,15,14,13,1,0,5,8,9,13,7,2,10,4,1,5,2,8,2,9,10,9,8,3,3,7,2,1,9,1,0,3,11,11,1,11,6,9,9,11,13,15,5,1,12,8,14,2,4,9,13,6,6,2,7,9,4,10,15,7,10,14,15,13,0,15,15,12,7,5,7,7,5,8,7,7,2,7,8,11,15,7,9,6,14,4,5,5,11,13,0,12,15,7,1,7,9,12,14,12,15,1,13,2,8,9,12,11,6,14,6,7,9,13,2,6,1,15,15,8,4,14,6,9,15,4,3,3,2,4,4,0,8,15,15,11,14,9,6,7,4,14,0,6,3,13,5,15,11,14,7,1,6,10,9,5,9,5,15,5,15,2,14,5,6,13,8,10,5,0,2,10,10,7,8,1,2,13,9,5,2,5,4,12,10,12,1,2,13,1,4,5,1,2,1,1,12,2,14,14,9,10,3,1,7,4,2,8,0,2,1,11,7,6,12,6,0,15,4,13,7,2,3,10,15,9,5,0,0,14,8,13,4,14,4,8,5,15,2,4,15,13,14,5,9,0,13,8,6,4,2,12,8,1,1,9,1,9,0,15,3,3,7,0,9,1,7,10,5,11,12,4,6,5,11,15,6,15,9,10,5,13,2,15,1,6,13,15,11,3,0,1,0,8,3,0,5,2,0,4,8,7,12,4,10,4,13,13,11,11,6,10,14,3,10,6,1,13,13,5,15,10,10,2,13,15,14,0,13,11,9,0,14,6,2,8,15,4,1,5,14,8,12,10,11,1,11,2,2,6,10,6,9,5,7,9,4,2,6,3,11,5,13,9,9,2,8,10,10,6,6,1,1,4,9,7,0,11,15,1,8,10,13,15,4,3,7,15,12,15,14,7,10,3,12,4,0,9,4,12,2,1,15,11,10,6,6,8,9,11,13,14,13,7,6,6,4,3,11,2,15,10,10,10,14,4,5,14,1,9,2,15,9,4,0,14,15,6,14,6,8,11,1,14,0,2,2,6,2,8,6,14,3,0,5,8,9,9,10,13,9,3,3,10,5,6,8,10,15,8,4,13,9,10,14,0,6,3,12,10,10,6,8,5,10,8,6,5,11,7,7,5,4,0,13,9,1,8,10,7,7,14,15,6,15,15,11,4,7,13,13,14,7,1,6,14,5,2,6,13,4,15,14,5,11,11,0,15,13,13,4,2,9,2,2,8,13,10,15,1,11,10,5,11,8,4,10,1,12,14,6,3,0,6,12,13,11,8,3,2,9,8,15,11,8,0,13,7,13,2,3,13,5,1,6,9,1,12,12,11,4,15,15,11,12,12,13,13,12,1,12,11,5,13,1,3,15,9,3,1,5,10,2,15,7,15,2,5,9,1,6,0,14,1,14,5,9,1,13,9,7,1,4,15,15,13,3,10,5,1,13,11,5,15,0,14,4,10,12,0,12,4,11,10,4,2,6,2,0,5,5,14,15,7,15,5,1,8,15,11,7,14,9,2,15,1,11,6,1,8,7,2,7,8,5,5,8,6,7,0,5,5,9,6,2,2,9,1,2,3,9,6,0,14,3,4,9,11,11,8,15,15,8,13,4,10,14,11,9,7,8,4,7,1,13,3,8,2,14,13,6,15,8,0,15,7,15,6,12,7,15,6,1,15,11,0,15,1,1,12,1,14,8,12,1,10,0,12,9,13,13,15,3,9,4,14,2,2,4,11,12,0,13,1,11,1,12,13,9,6,0,6,6,12,1,5,0,3,4,10,1,10,7,5,0,7,5,13,2,11,13,6,7,7,7,4,14,6,14,4,10,5,1,6,15,13,3,9,10,8,5,3,13,5,3,0,6,1,10,10,14,15,4,14,6,11,6,10,2,12,12,6,5,13,4,9,2,10,14,4,0,9,1,3,13,11,10,0,14,10,10,6,14,5,1,4,12,8,7,14,13,14,14,1,12,10,15,15,1,3,4,12,10,0,15,10,1,8,6,4,6,8,15,14,4,6,4,11,3,12,7,14,6,0,9,2,14,10,12,11,14,0,2,2,4,0,10,9,5,3,14,14,8,9,13,15,4,6,6,0,4,5,12,4,7,6,0,6,12,15", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"6\", \"13\"], \"clip_start\": 377.0, \"clip_end\": 381.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,12,5,15,3,3,6,2,10,7,9,13,10,0,7,3,2,8,0,12,8,0,10,15,1,11,6,2,5,8,15,4,2,9,10,10,0,13,10,1,14,0,2,1,8,9,15,3,8,4,2,0,9,6,5,1,11,11,0,4,2,12,7,6,13,4,5,9,4,15,8,8,0,2,6,9,1,7,12,6,2,10,7,7,4,3,12,9,12,13,15,2,7,15,14,13,1,0,5,8,9,13,7,2,10,4,1,5,2,8,2,9,10,9,8,3,3,7,2,1,9,1,0,3,11,11,1,11,6,9,9,11,13,15,5,1,12,8,14,2,4,9,13,6,6,2,7,9,4,10,15,7,10,14,15,13,0,15,15,12,7,5,7,7,5,8,7,7,2,7,8,11,15,7,9,6,14,4,5,5,11,13,0,12,15,7,1,7,9,12,14,12,15,1,13,2,8,9,12,11,6,14,6,7,9,13,2,6,1,15,15,8,4,14,6,9,15,4,3,3,2,4,4,0,8,15,15,11,14,9,6,7,4,14,0,6,3,13,5,15,11,14,7,1,6,10,9,5,9,5,15,5,15,2,14,5,6,13,8,10,5,0,2,10,10,7,8,1,2,13,9,5,2,5,4,12,10,12,1,2,13,1,4,5,1,2,1,1,12,2,14,14,9,10,3,1,7,4,2,8,0,2,1,11,7,6,12,6,0,15,4,13,7,2,3,10,15,9,5,0,0,14,8,13,4,14,4,8,5,15,2,4,15,13,14,5,9,0,13,8,6,4,2,12,8,1,1,9,1,9,0,15,3,3,7,0,9,1,7,10,5,11,12,4,6,5,11,15,6,15,9,10,5,13,2,15,1,6,13,15,11,3,0,1,0,8,3,0,5,2,0,4,8,7,12,4,10,4,13,13,11,11,6,10,14,3,10,6,1,13,13,5,15,10,10,2,13,15,14,0,13,11,9,0,14,6,2,8,15,4,1,5,14,8,12,10,11,1,11,2,2,6,10,6,9,5,7,9,4,2,6,3,11,5,13,9,9,2,8,10,10,6,6,1,1,4,9,7,0,11,15,1,8,10,13,15,4,3,7,15,12,15,14,7,10,3,12,4,0,9,4,12,2,1,15,11,10,6,6,8,9,11,13,14,13,7,6,6,4,3,11,2,15,10,10,10,14,4,5,14,1,9,2,15,9,4,0,14,15,6,14,6,8,11,1,14,0,2,2,6,2,8,6,14,3,0,5,8,9,9,10,13,9,3,3,10,5,6,8,10,15,8,4,13,9,10,14,0,6,3,12,10,10,6,8,5,10,8,6,5,11,7,7,5,4,0,13,9,1,8,10,7,7,14,15,6,15,15,11,4,7,13,13,14,7,1,6,14,5,2,6,13,4,15,14,5,11,11,0,15,13,13,4,2,9,2,2,8,13,10,15,1,11,10,5,11,8,4,10,1,12,14,6,3,0,6,12,13,11,8,3,2,9,8,15,11,8,0,13,7,13,2,3,13,5,1,6,9,1,12,12,11,4,15,15,11,12,12,13,13,12,1,12,11,5,13,1,3,15,9,3,1,5,10,2,15,7,15,2,5,9,1,6,0,14,1,14,5,9,1,13,9,7,1,4,15,15,13,3,10,5,1,13,11,5,15,0,14,4,10,12,0,12,4,11,10,4,2,6,2,0,5,5,14,15,7,15,5,1,8,15,11,7,14,9,2,15,1,11,6,1,8,7,2,7,8,5,5,8,6,7,0,5,5,9,6,2,2,9,1,2,3,9,6,0,14,3,4,9,11,11,8,15,15,8,13,4,10,14,11,9,7,8,4,7,1,13,3,8,2,14,13,6,15,8,0,15,7,15,6,12,7,15,6,1,15,11,0,15,1,1,12,1,14,8,12,1,10,0,12,9,13,13,15,3,9,4,14,2,2,4,11,12,0,13,1,11,1,12,13,9,6,0,6,6,12,1,5,0,3,4,10,1,10,7,5,0,7,5,13,2,11,13,6,7,7,7,4,14,6,14,4,10,5,1,6,15,13,3,9,10,8,5,3,13,5,3,0,6,1,10,10,14,15,4,14,6,11,6,10,2,12,12,6,5,13,4,9,2,10,14,4,0,9,1,3,13,11,10,0,14,10,10,6,14,5,1,4,12,8,7,14,13,14,14,1,12,10,15,15,1,3,4,12,10,0,15,10,1,8,6,4,6,8,15,14,4,6,4,11,3,12,7,14,6,0,9,2,14,10,12,11,14,0,2,2,4,0,10,9,5,3,14,14,8,9,13,15,4,6,6,0,4,5,12,4,7,6,0,6,12,15", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"12\", \"8\", \"1\"], \"clip_start\": 343.0, \"clip_end\": 348.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,12,5,15,3,3,6,2,10,7,9,13,10,0,7,3,2,8,0,12,8,0,10,15,1,11,6,2,5,8,15,4,2,9,10,10,0,13,10,1,14,0,2,1,8,9,15,3,8,4,2,0,9,6,5,1,11,11,0,4,2,12,7,6,13,4,5,9,4,15,8,8,0,2,6,9,1,7,12,6,2,10,7,7,4,3,12,9,12,13,15,2,7,15,14,13,1,0,5,8,9,13,7,2,10,4,1,5,2,8,2,9,10,9,8,3,3,7,2,1,9,1,0,3,11,11,1,11,6,9,9,11,13,15,5,1,12,8,14,2,4,9,13,6,6,2,7,9,4,10,15,7,10,14,15,13,0,15,15,12,7,5,7,7,5,8,7,7,2,7,8,11,15,7,9,6,14,4,5,5,11,13,0,12,15,7,1,7,9,12,14,12,15,1,13,2,8,9,12,11,6,14,6,7,9,13,2,6,1,15,15,8,4,14,6,9,15,4,3,3,2,4,4,0,8,15,15,11,14,9,6,7,4,14,0,6,3,13,5,15,11,14,7,1,6,10,9,5,9,5,15,5,15,2,14,5,6,13,8,10,5,0,2,10,10,7,8,1,2,13,9,5,2,5,4,12,10,12,1,2,13,1,4,5,1,2,1,1,12,2,14,14,9,10,3,1,7,4,2,8,0,2,1,11,7,6,12,6,0,15,4,13,7,2,3,10,15,9,5,0,0,14,8,13,4,14,4,8,5,15,2,4,15,13,14,5,9,0,13,8,6,4,2,12,8,1,1,9,1,9,0,15,3,3,7,0,9,1,7,10,5,11,12,4,6,5,11,15,6,15,9,10,5,13,2,15,1,6,13,15,11,3,0,1,0,8,3,0,5,2,0,4,8,7,12,4,10,4,13,13,11,11,6,10,14,3,10,6,1,13,13,5,15,10,10,2,13,15,14,0,13,11,9,0,14,6,2,8,15,4,1,5,14,8,12,10,11,1,11,2,2,6,10,6,9,5,7,9,4,2,6,3,11,5,13,9,9,2,8,10,10,6,6,1,1,4,9,7,0,11,15,1,8,10,13,15,4,3,7,15,12,15,14,7,10,3,12,4,0,9,4,12,2,1,15,11,10,6,6,8,9,11,13,14,13,7,6,6,4,3,11,2,15,10,10,10,14,4,5,14,1,9,2,15,9,4,0,14,15,6,14,6,8,11,1,14,0,2,2,6,2,8,6,14,3,0,5,8,9,9,10,13,9,3,3,10,5,6,8,10,15,8,4,13,9,10,14,0,6,3,12,10,10,6,8,5,10,8,6,5,11,7,7,5,4,0,13,9,1,8,10,7,7,14,15,6,15,15,11,4,7,13,13,14,7,1,6,14,5,2,6,13,4,15,14,5,11,11,0,15,13,13,4,2,9,2,2,8,13,10,15,1,11,10,5,11,8,4,10,1,12,14,6,3,0,6,12,13,11,8,3,2,9,8,15,11,8,0,13,7,13,2,3,13,5,1,6,9,1,12,12,11,4,15,15,11,12,12,13,13,12,1,12,11,5,13,1,3,15,9,3,1,5,10,2,15,7,15,2,5,9,1,6,0,14,1,14,5,9,1,13,9,7,1,4,15,15,13,3,10,5,1,13,11,5,15,0,14,4,10,12,0,12,4,11,10,4,2,6,2,0,5,5,14,15,7,15,5,1,8,15,11,7,14,9,2,15,1,11,6,1,8,7,2,7,8,5,5,8,6,7,0,5,5,9,6,2,2,9,1,2,3,9,6,0,14,3,4,9,11,11,8,15,15,8,13,4,10,14,11,9,7,8,4,7,1,13,3,8,2,14,13,6,15,8,0,15,7,15,6,12,7,15,6,1,15,11,0,15,1,1,12,1,14,8,12,1,10,0,12,9,13,13,15,3,9,4,14,2,2,4,11,12,0,13,1,11,1,12,13,9,6,0,6,6,12,1,5,0,3,4,10,1,10,7,5,0,7,5,13,2,11,13,6,7,7,7,4,14,6,14,4,10,5,1,6,15,13,3,9,10,8,5,3,13,5,3,0,6,1,10,10,14,15,4,14,6,11,6,10,2,12,12,6,5,13,4,9,2,10,14,4,0,9,1,3,13,11,10,0,14,10,10,6,14,5,1,4,12,8,7,14,13,14,14,1,12,10,15,15,1,3,4,12,10,0,15,10,1,8,6,4,6,8,15,14,4,6,4,11,3,12,7,14,6,0,9,2,14,10,12,11,14,0,2,2,4,0,10,9,5,3,14,14,8,9,13,15,4,6,6,0,4,5,12,4,7,6,0,6,12,15", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"2\", \"8\", \"10\", \"10\", \"6\"], \"clip_start\": 458.0, \"clip_end\": 464.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,12,5,15,3,3,6,2,10,7,9,13,10,0,7,3,2,8,0,12,8,0,10,15,1,11,6,2,5,8,15,4,2,9,10,10,0,13,10,1,14,0,2,1,8,9,15,3,8,4,2,0,9,6,5,1,11,11,0,4,2,12,7,6,13,4,5,9,4,15,8,8,0,2,6,9,1,7,12,6,2,10,7,7,4,3,12,9,12,13,15,2,7,15,14,13,1,0,5,8,9,13,7,2,10,4,1,5,2,8,2,9,10,9,8,3,3,7,2,1,9,1,0,3,11,11,1,11,6,9,9,11,13,15,5,1,12,8,14,2,4,9,13,6,6,2,7,9,4,10,15,7,10,14,15,13,0,15,15,12,7,5,7,7,5,8,7,7,2,7,8,11,15,7,9,6,14,4,5,5,11,13,0,12,15,7,1,7,9,12,14,12,15,1,13,2,8,9,12,11,6,14,6,7,9,13,2,6,1,15,15,8,4,14,6,9,15,4,3,3,2,4,4,0,8,15,15,11,14,9,6,7,4,14,0,6,3,13,5,15,11,14,7,1,6,10,9,5,9,5,15,5,15,2,14,5,6,13,8,10,5,0,2,10,10,7,8,1,2,13,9,5,2,5,4,12,10,12,1,2,13,1,4,5,1,2,1,1,12,2,14,14,9,10,3,1,7,4,2,8,0,2,1,11,7,6,12,6,0,15,4,13,7,2,3,10,15,9,5,0,0,14,8,13,4,14,4,8,5,15,2,4,15,13,14,5,9,0,13,8,6,4,2,12,8,1,1,9,1,9,0,15,3,3,7,0,9,1,7,10,5,11,12,4,6,5,11,15,6,15,9,10,5,13,2,15,1,6,13,15,11,3,0,1,0,8,3,0,5,2,0,4,8,7,12,4,10,4,13,13,11,11,6,10,14,3,10,6,1,13,13,5,15,10,10,2,13,15,14,0,13,11,9,0,14,6,2,8,15,4,1,5,14,8,12,10,11,1,11,2,2,6,10,6,9,5,7,9,4,2,6,3,11,5,13,9,9,2,8,10,10,6,6,1,1,4,9,7,0,11,15,1,8,10,13,15,4,3,7,15,12,15,14,7,10,3,12,4,0,9,4,12,2,1,15,11,10,6,6,8,9,11,13,14,13,7,6,6,4,3,11,2,15,10,10,10,14,4,5,14,1,9,2,15,9,4,0,14,15,6,14,6,8,11,1,14,0,2,2,6,2,8,6,14,3,0,5,8,9,9,10,13,9,3,3,10,5,6,8,10,15,8,4,13,9,10,14,0,6,3,12,10,10,6,8,5,10,8,6,5,11,7,7,5,4,0,13,9,1,8,10,7,7,14,15,6,15,15,11,4,7,13,13,14,7,1,6,14,5,2,6,13,4,15,14,5,11,11,0,15,13,13,4,2,9,2,2,8,13,10,15,1,11,10,5,11,8,4,10,1,12,14,6,3,0,6,12,13,11,8,3,2,9,8,15,11,8,0,13,7,13,2,3,13,5,1,6,9,1,12,12,11,4,15,15,11,12,12,13,13,12,1,12,11,5,13,1,3,15,9,3,1,5,10,2,15,7,15,2,5,9,1,6,0,14,1,14,5,9,1,13,9,7,1,4,15,15,13,3,10,5,1,13,11,5,15,0,14,4,10,12,0,12,4,11,10,4,2,6,2,0,5,5,14,15,7,15,5,1,8,15,11,7,14,9,2,15,1,11,6,1,8,7,2,7,8,5,5,8,6,7,0,5,5,9,6,2,2,9,1,2,3,9,6,0,14,3,4,9,11,11,8,15,15,8,13,4,10,14,11,9,7,8,4,7,1,13,3,8,2,14,13,6,15,8,0,15,7,15,6,12,7,15,6,1,15,11,0,15,1,1,12,1,14,8,12,1,10,0,12,9,13,13,15,3,9,4,14,2,2,4,11,12,0,13,1,11,1,12,13,9,6,0,6,6,12,1,5,0,3,4,10,1,10,7,5,0,7,5,13,2,11,13,6,7,7,7,4,14,6,14,4,10,5,1,6,15,13,3,9,10,8,5,3,13,5,3,0,6,1,10,10,14,15,4,14,6,11,6,10,2,12,12,6,5,13,4,9,2,10,14,4,0,9,1,3,13,11,10,0,14,10,10,6,14,5,1,4,12,8,7,14,13,14,14,1,12,10,15,15,1,3,4,12,10,0,15,10,1,8,6,4,6,8,15,14,4,6,4,11,3,12,7,14,6,0,9,2,14,10,12,11,14,0,2,2,4,0,10,9,5,3,14,14,8,9,13,15,4,6,6,0,4,5,12,4,7,6,0,6,12,15", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"14\", \"4\", \"8\"], \"clip_start\": 325.0, \"clip_end\": 330.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,12,5,15,3,3,6,2,10,7,9,13,10,0,7,3,2,8,0,12,8,0,10,15,1,11,6,2,5,8,15,4,2,9,10,10,0,13,10,1,14,0,2,1,8,9,15,3,8,4,2,0,9,6,5,1,11,11,0,4,2,12,7,6,13,4,5,9,4,15,8,8,0,2,6,9,1,7,12,6,2,10,7,7,4,3,12,9,12,13,15,2,7,15,14,13,1,0,5,8,9,13,7,2,10,4,1,5,2,8,2,9,10,9,8,3,3,7,2,1,9,1,0,3,11,11,1,11,6,9,9,11,13,15,5,1,12,8,14,2,4,9,13,6,6,2,7,9,4,10,15,7,10,14,15,13,0,15,15,12,7,5,7,7,5,8,7,7,2,7,8,11,15,7,9,6,14,4,5,5,11,13,0,12,15,7,1,7,9,12,14,12,15,1,13,2,8,9,12,11,6,14,6,7,9,13,2,6,1,15,15,8,4,14,6,9,15,4,3,3,2,4,4,0,8,15,15,11,14,9,6,7,4,14,0,6,3,13,5,15,11,14,7,1,6,10,9,5,9,5,15,5,15,2,14,5,6,13,8,10,5,0,2,10,10,7,8,1,2,13,9,5,2,5,4,12,10,12,1,2,13,1,4,5,1,2,1,1,12,2,14,14,9,10,3,1,7,4,2,8,0,2,1,11,7,6,12,6,0,15,4,13,7,2,3,10,15,9,5,0,0,14,8,13,4,14,4,8,5,15,2,4,15,13,14,5,9,0,13,8,6,4,2,12,8,1,1,9,1,9,0,15,3,3,7,0,9,1,7,10,5,11,12,4,6,5,11,15,6,15,9,10,5,13,2,15,1,6,13,15,11,3,0,1,0,8,3,0,5,2,0,4,8,7,12,4,10,4,13,13,11,11,6,10,14,3,10,6,1,13,13,5,15,10,10,2,13,15,14,0,13,11,9,0,14,6,2,8,15,4,1,5,14,8,12,10,11,1,11,2,2,6,10,6,9,5,7,9,4,2,6,3,11,5,13,9,9,2,8,10,10,6,6,1,1,4,9,7,0,11,15,1,8,10,13,15,4,3,7,15,12,15,14,7,10,3,12,4,0,9,4,12,2,1,15,11,10,6,6,8,9,11,13,14,13,7,6,6,4,3,11,2,15,10,10,10,14,4,5,14,1,9,2,15,9,4,0,14,15,6,14,6,8,11,1,14,0,2,2,6,2,8,6,14,3,0,5,8,9,9,10,13,9,3,3,10,5,6,8,10,15,8,4,13,9,10,14,0,6,3,12,10,10,6,8,5,10,8,6,5,11,7,7,5,4,0,13,9,1,8,10,7,7,14,15,6,15,15,11,4,7,13,13,14,7,1,6,14,5,2,6,13,4,15,14,5,11,11,0,15,13,13,4,2,9,2,2,8,13,10,15,1,11,10,5,11,8,4,10,1,12,14,6,3,0,6,12,13,11,8,3,2,9,8,15,11,8,0,13,7,13,2,3,13,5,1,6,9,1,12,12,11,4,15,15,11,12,12,13,13,12,1,12,11,5,13,1,3,15,9,3,1,5,10,2,15,7,15,2,5,9,1,6,0,14,1,14,5,9,1,13,9,7,1,4,15,15,13,3,10,5,1,13,11,5,15,0,14,4,10,12,0,12,4,11,10,4,2,6,2,0,5,5,14,15,7,15,5,1,8,15,11,7,14,9,2,15,1,11,6,1,8,7,2,7,8,5,5,8,6,7,0,5,5,9,6,2,2,9,1,2,3,9,6,0,14,3,4,9,11,11,8,15,15,8,13,4,10,14,11,9,7,8,4,7,1,13,3,8,2,14,13,6,15,8,0,15,7,15,6,12,7,15,6,1,15,11,0,15,1,1,12,1,14,8,12,1,10,0,12,9,13,13,15,3,9,4,14,2,2,4,11,12,0,13,1,11,1,12,13,9,6,0,6,6,12,1,5,0,3,4,10,1,10,7,5,0,7,5,13,2,11,13,6,7,7,7,4,14,6,14,4,10,5,1,6,15,13,3,9,10,8,5,3,13,5,3,0,6,1,10,10,14,15,4,14,6,11,6,10,2,12,12,6,5,13,4,9,2,10,14,4,0,9,1,3,13,11,10,0,14,10,10,6,14,5,1,4,12,8,7,14,13,14,14,1,12,10,15,15,1,3,4,12,10,0,15,10,1,8,6,4,6,8,15,14,4,6,4,11,3,12,7,14,6,0,9,2,14,10,12,11,14,0,2,2,4,0,10,9,5,3,14,14,8,9,13,15,4,6,6,0,4,5,12,4,7,6,0,6,12,15", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"12\", \"13\", \"15\"], \"clip_start\": 88.0, \"clip_end\": 93.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,3,13,12,5,15,3,3,6,2,10,7,9,13,10,0,7,3,2,8,0,12,8,0,10,15,1,11,6,2,5,8,15,4,2,9,10,10,0,13,10,1,14,0,2,1,8,9,15,3,8,4,2,0,9,6,5,1,11,11,0,4,2,12,7,6,13,4,5,9,4,15,8,8,0,2,6,9,1,7,12,6,2,10,7,7,4,3,12,9,12,13,15,2,7,15,14,13,1,0,5,8,9,13,7,2,10,4,1,5,2,8,2,9,10,9,8,3,3,7,2,1,9,1,0,3,11,11,1,11,6,9,9,11,13,15,5,1,12,8,14,2,4,9,13,6,6,2,7,9,4,10,15,7,10,14,15,13,0,15,15,12,7,5,7,7,5,8,7,7,2,7,8,11,15,7,9,6,14,4,5,5,11,13,0,12,15,7,1,7,9,12,14,12,15,1,13,2,8,9,12,11,6,14,6,7,9,13,2,6,1,15,15,8,4,14,6,9,15,4,3,3,2,4,4,0,8,15,15,11,14,9,6,7,4,14,0,6,3,13,5,15,11,14,7,1,6,10,9,5,9,5,15,5,15,2,14,5,6,13,8,10,5,0,2,10,10,7,8,1,2,13,9,5,2,5,4,12,10,12,1,2,13,1,4,5,1,2,1,1,12,2,14,14,9,10,3,1,7,4,2,8,0,2,1,11,7,6,12,6,0,15,4,13,7,2,3,10,15,9,5,0,0,14,8,13,4,14,4,8,5,15,2,4,15,13,14,5,9,0,13,8,6,4,2,12,8,1,1,9,1,9,0,15,3,3,7,0,9,1,7,10,5,11,12,4,6,5,11,15,6,15,9,10,5,13,2,15,1,6,13,15,11,3,0,1,0,8,3,0,5,2,0,4,8,7,12,4,10,4,13,13,11,11,6,10,14,3,10,6,1,13,13,5,15,10,10,2,13,15,14,0,13,11,9,0,14,6,2,8,15,4,1,5,14,8,12,10,11,1,11,2,2,6,10,6,9,5,7,9,4,2,6,3,11,5,13,9,9,2,8,10,10,6,6,1,1,4,9,7,0,11,15,1,8,10,13,15,4,3,7,15,12,15,14,7,10,3,12,4,0,9,4,12,2,1,15,11,10,6,6,8,9,11,13,14,13,7,6,6,4,3,11,2,15,10,10,10,14,4,5,14,1,9,2,15,9,4,0,14,15,6,14,6,8,11,1,14,0,2,2,6,2,8,6,14,3,0,5,8,9,9,10,13,9,3,3,10,5,6,8,10,15,8,4,13,9,10,14,0,6,3,12,10,10,6,8,5,10,8,6,5,11,7,7,5,4,0,13,9,1,8,10,7,7,14,15,6,15,15,11,4,7,13,13,14,7,1,6,14,5,2,6,13,4,15,14,5,11,11,0,15,13,13,4,2,9,2,2,8,13,10,15,1,11,10,5,11,8,4,10,1,12,14,6,3,0,6,12,13,11,8,3,2,9,8,15,11,8,0,13,7,13,2,3,13,5,1,6,9,1,12,12,11,4,15,15,11,12,12,13,13,12,1,12,11,5,13,1,3,15,9,3,1,5,10,2,15,7,15,2,5,9,1,6,0,14,1,14,5,9,1,13,9,7,1,4,15,15,13,3,10,5,1,13,11,5,15,0,14,4,10,12,0,12,4,11,10,4,2,6,2,0,5,5,14,15,7,15,5,1,8,15,11,7,14,9,2,15,1,11,6,1,8,7,2,7,8,5,5,8,6,7,0,5,5,9,6,2,2,9,1,2,3,9,6,0,14,3,4,9,11,11,8,15,15,8,13,4,10,14,11,9,7,8,4,7,1,13,3,8,2,14,13,6,15,8,0,15,7,15,6,12,7,15,6,1,15,11,0,15,1,1,12,1,14,8,12,1,10,0,12,9,13,13,15,3,9,4,14,2,2,4,11,12,0,13,1,11,1,12,13,9,6,0,6,6,12,1,5,0,3,4,10,1,10,7,5,0,7,5,13,2,11,13,6,7,7,7,4,14,6,14,4,10,5,1,6,15,13,3,9,10,8,5,3,13,5,3,0,6,1,10,10,14,15,4,14,6,11,6,10,2,12,12,6,5,13,4,9,2,10,14,4,0,9,1,3,13,11,10,0,14,10,10,6,14,5,1,4,12,8,7,14,13,14,14,1,12,10,15,15,1,3,4,12,10,0,15,10,1,8,6,4,6,8,15,14,4,6,4,11,3,12,7,14,6,0,9,2,14,10,12,11,14,0,2,2,4,0,10,9,5,3,14,14,8,9,13,15,4,6,6,0,4,5,12,4,7,6,0,6,12,15", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"10\", \"15\", \"0\", \"3\"], \"clip_start\": 192.0, \"clip_end\": 197.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,4,2,8,6,8,10,0,11,14,0,2,13,10,6,14,3,7,6,11,3,9,5,2,1,7,11,5,13,8,14,2,6,3,1,2,15,12,15,5,9,3,6,9,2,7,14,12,13,7,14,14,5,4,5,12,1,5,6,1,9,1,1,4,11,7,0,15,14,10,5,3,5,6,5,1,7,14,6,0,6,12,5,9,6,12,13,5,2,0,4,7,1,4,5,3,7,3,13,13,5,13,5,6,15,1,11,3,12,6,10,8,5,5,4,3,11,9,13,13,11,9,6,14,3,11,4,7,1,2,7,14,10,5,3,12,5,8,9,7,3,11,15,10,10,6,5,9,1,4,8,12,9,1,4,7,10,8,5,5,15,10,7,3,4,0,8,9,8,2,4,5,3,10,2,3,6,2,3,12,7,5,11,5,15,1,14,2,7,12,0,2,10,15,0,3,3,0,9,15,10,11,4,10,14,5,0,9,15,13,10,3,1,3,14,5,6,7,3,0,13,5,14,7,5,14,14,15,7,13,14,1,8,0,13,10,15,10,13,13,3,9,14,5,3,2,10,13,2,13,5,0,0,14,6,6,2,4,8,8,2,1,8,12,12,8,0,10,2,10,11,6,9,11,2,4,1,0,4,4,11,6,5,13,12,11,0,14,9,5,0,15,1,2,4,3,13,1,15,2,15,5,2,6,7,5,1,4,0,2,11,3,3,13,1,2,2,14,0,15,4,8,14,0,1,15,11,13,2,12,8,4,14,7,14,8,3,6,1,13,1,7,10,4,2,8,3,8,11,13,1,14,9,10,4,2,8,5,4,14,9,13,13,1,14,4,8,12,14,14,6,10,15,10,0,11,12,5,0,13,4,0,12,9,10,8,13,6,4,11,4,0,6,13,14,14,2,4,6,2,15,11,3,6,5,4,9,5,0,1,1,6,5,2,9,6,12,12,13,15,11,10,10,4,10,3,3,11,0,12,10,14,2,7,5,4,3,10,14,9,4,7,10,1,8,7,4,13,8,9,9,10,3,13,7,9,4,14,8,12,8,0,0,1,2,8,11,11,2,0,8,15,2,7,3,11,14,0,15,13,12,14,10,4,1,14,8,2,5,0,15,5,8,4,8,8,14,15,1,6,12,13,11,2,13,14,14,6,15,3,2,4,14,6,14,10,10,14,8,1,15,12,5,3,11,12,12,5,4,14,13,4,15,12,12,1,1,13,15,10,13,6,9,9,3,14,4,7,6,7,11,0,1,8,9,12,1,15,4,9,3,14,10,12,8,13,6,14,5,8,7,11,6,4,14,2,2,10,7,2,5,14,5,7,6,12,6,2,15,12,2,5,7,12,11,9,13,14,1,8,1,9,9,13,11,7,12,10,2,7,8,0,6,11,14,13,5,1,14,4,8,4,3,13,7,9,3,3,12,8,3,4,14,6,14,7,9,2,8,9,9,6,10,8,9,12,15,10,5,7,1,7,3,12,13,8,2,6,11,5,1,1,4,12,10,3,9,2,7,1,1,1,7,10,9,9,13,3,1,2,9,0,13,7,13,15,7,3,4,13,6,3,7,9,1,0,11,7,14,1,1,13,13,5,14,1,13,8,11,4,10,2,6,12,0,8,7,10,1,11,9,2,6,6,8,2,14,3,7,9,4,5,3,10,9,14,13,1,10,15,13,10,0,12,1,7,13,0,14,5,0,0,2,0,11,12,0,13,5,6,5,8,7,1,1,9,6,1,8,3,2,4,0,11,10,9,12,3,2,1,5,4,8,4,12,1,0,3,6,5,14,12,10,2,13,1,12,11,12,14,13,12,14,11,0,5,8,3,15,7,15,1,3,1,10,5,9,12,1,0,4,13,3,11,10,2,15,8,1,15,13,7,6,3,7,3,13,4,10,6,7,13,9,12,7,12,11,11,10,14,12,14,10,3,15,10,9,5,1,6,13,13,9,10,14,13,4,1,11,15,14,12,2,14,6,11,11,14,13,1,3,0,3,2,5,1,4,1,1,3,10,12,0,6,15,9,7,9,12,6,7,13,1,11,13,9,12,9,13,4,1,11,3,1,14,7,5,6,11,12,15,1,10,15,3,2,9,14,9,6,6,2,14,0,6,6,2,6,7,2,15,0,4,4,5,12,0,1,14,6,12,14,6,14,13,4,4,6,11,6,13,13,11,14,14,6,12,10,2,4,0,6,1,5,2,3,2,2,15,14,0,2,9,10,8,6,12,1,10,1,14,10,5,8,8,15,8,13,1,13,15,12,6,13,3,3,7,14,14,11,5,6,4,6,12,0,15,13,10,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"1\", \"13\", \"15\", \"10\"], \"clip_start\": 536.0, \"clip_end\": 541.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,4,2,8,6,8,10,0,11,14,0,2,13,10,6,14,3,7,6,11,3,9,5,2,1,7,11,5,13,8,14,2,6,3,1,2,15,12,15,5,9,3,6,9,2,7,14,12,13,7,14,14,5,4,5,12,1,5,6,1,9,1,1,4,11,7,0,15,14,10,5,3,5,6,5,1,7,14,6,0,6,12,5,9,6,12,13,5,2,0,4,7,1,4,5,3,7,3,13,13,5,13,5,6,15,1,11,3,12,6,10,8,5,5,4,3,11,9,13,13,11,9,6,14,3,11,4,7,1,2,7,14,10,5,3,12,5,8,9,7,3,11,15,10,10,6,5,9,1,4,8,12,9,1,4,7,10,8,5,5,15,10,7,3,4,0,8,9,8,2,4,5,3,10,2,3,6,2,3,12,7,5,11,5,15,1,14,2,7,12,0,2,10,15,0,3,3,0,9,15,10,11,4,10,14,5,0,9,15,13,10,3,1,3,14,5,6,7,3,0,13,5,14,7,5,14,14,15,7,13,14,1,8,0,13,10,15,10,13,13,3,9,14,5,3,2,10,13,2,13,5,0,0,14,6,6,2,4,8,8,2,1,8,12,12,8,0,10,2,10,11,6,9,11,2,4,1,0,4,4,11,6,5,13,12,11,0,14,9,5,0,15,1,2,4,3,13,1,15,2,15,5,2,6,7,5,1,4,0,2,11,3,3,13,1,2,2,14,0,15,4,8,14,0,1,15,11,13,2,12,8,4,14,7,14,8,3,6,1,13,1,7,10,4,2,8,3,8,11,13,1,14,9,10,4,2,8,5,4,14,9,13,13,1,14,4,8,12,14,14,6,10,15,10,0,11,12,5,0,13,4,0,12,9,10,8,13,6,4,11,4,0,6,13,14,14,2,4,6,2,15,11,3,6,5,4,9,5,0,1,1,6,5,2,9,6,12,12,13,15,11,10,10,4,10,3,3,11,0,12,10,14,2,7,5,4,3,10,14,9,4,7,10,1,8,7,4,13,8,9,9,10,3,13,7,9,4,14,8,12,8,0,0,1,2,8,11,11,2,0,8,15,2,7,3,11,14,0,15,13,12,14,10,4,1,14,8,2,5,0,15,5,8,4,8,8,14,15,1,6,12,13,11,2,13,14,14,6,15,3,2,4,14,6,14,10,10,14,8,1,15,12,5,3,11,12,12,5,4,14,13,4,15,12,12,1,1,13,15,10,13,6,9,9,3,14,4,7,6,7,11,0,1,8,9,12,1,15,4,9,3,14,10,12,8,13,6,14,5,8,7,11,6,4,14,2,2,10,7,2,5,14,5,7,6,12,6,2,15,12,2,5,7,12,11,9,13,14,1,8,1,9,9,13,11,7,12,10,2,7,8,0,6,11,14,13,5,1,14,4,8,4,3,13,7,9,3,3,12,8,3,4,14,6,14,7,9,2,8,9,9,6,10,8,9,12,15,10,5,7,1,7,3,12,13,8,2,6,11,5,1,1,4,12,10,3,9,2,7,1,1,1,7,10,9,9,13,3,1,2,9,0,13,7,13,15,7,3,4,13,6,3,7,9,1,0,11,7,14,1,1,13,13,5,14,1,13,8,11,4,10,2,6,12,0,8,7,10,1,11,9,2,6,6,8,2,14,3,7,9,4,5,3,10,9,14,13,1,10,15,13,10,0,12,1,7,13,0,14,5,0,0,2,0,11,12,0,13,5,6,5,8,7,1,1,9,6,1,8,3,2,4,0,11,10,9,12,3,2,1,5,4,8,4,12,1,0,3,6,5,14,12,10,2,13,1,12,11,12,14,13,12,14,11,0,5,8,3,15,7,15,1,3,1,10,5,9,12,1,0,4,13,3,11,10,2,15,8,1,15,13,7,6,3,7,3,13,4,10,6,7,13,9,12,7,12,11,11,10,14,12,14,10,3,15,10,9,5,1,6,13,13,9,10,14,13,4,1,11,15,14,12,2,14,6,11,11,14,13,1,3,0,3,2,5,1,4,1,1,3,10,12,0,6,15,9,7,9,12,6,7,13,1,11,13,9,12,9,13,4,1,11,3,1,14,7,5,6,11,12,15,1,10,15,3,2,9,14,9,6,6,2,14,0,6,6,2,6,7,2,15,0,4,4,5,12,0,1,14,6,12,14,6,14,13,4,4,6,11,6,13,13,11,14,14,6,12,10,2,4,0,6,1,5,2,3,2,2,15,14,0,2,9,10,8,6,12,1,10,1,14,10,5,8,8,15,8,13,1,13,15,12,6,13,3,3,7,14,14,11,5,6,4,6,12,0,15,13,10,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"15\", \"3\", \"2\"], \"clip_start\": 922.0, \"clip_end\": 927.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,4,2,8,6,8,10,0,11,14,0,2,13,10,6,14,3,7,6,11,3,9,5,2,1,7,11,5,13,8,14,2,6,3,1,2,15,12,15,5,9,3,6,9,2,7,14,12,13,7,14,14,5,4,5,12,1,5,6,1,9,1,1,4,11,7,0,15,14,10,5,3,5,6,5,1,7,14,6,0,6,12,5,9,6,12,13,5,2,0,4,7,1,4,5,3,7,3,13,13,5,13,5,6,15,1,11,3,12,6,10,8,5,5,4,3,11,9,13,13,11,9,6,14,3,11,4,7,1,2,7,14,10,5,3,12,5,8,9,7,3,11,15,10,10,6,5,9,1,4,8,12,9,1,4,7,10,8,5,5,15,10,7,3,4,0,8,9,8,2,4,5,3,10,2,3,6,2,3,12,7,5,11,5,15,1,14,2,7,12,0,2,10,15,0,3,3,0,9,15,10,11,4,10,14,5,0,9,15,13,10,3,1,3,14,5,6,7,3,0,13,5,14,7,5,14,14,15,7,13,14,1,8,0,13,10,15,10,13,13,3,9,14,5,3,2,10,13,2,13,5,0,0,14,6,6,2,4,8,8,2,1,8,12,12,8,0,10,2,10,11,6,9,11,2,4,1,0,4,4,11,6,5,13,12,11,0,14,9,5,0,15,1,2,4,3,13,1,15,2,15,5,2,6,7,5,1,4,0,2,11,3,3,13,1,2,2,14,0,15,4,8,14,0,1,15,11,13,2,12,8,4,14,7,14,8,3,6,1,13,1,7,10,4,2,8,3,8,11,13,1,14,9,10,4,2,8,5,4,14,9,13,13,1,14,4,8,12,14,14,6,10,15,10,0,11,12,5,0,13,4,0,12,9,10,8,13,6,4,11,4,0,6,13,14,14,2,4,6,2,15,11,3,6,5,4,9,5,0,1,1,6,5,2,9,6,12,12,13,15,11,10,10,4,10,3,3,11,0,12,10,14,2,7,5,4,3,10,14,9,4,7,10,1,8,7,4,13,8,9,9,10,3,13,7,9,4,14,8,12,8,0,0,1,2,8,11,11,2,0,8,15,2,7,3,11,14,0,15,13,12,14,10,4,1,14,8,2,5,0,15,5,8,4,8,8,14,15,1,6,12,13,11,2,13,14,14,6,15,3,2,4,14,6,14,10,10,14,8,1,15,12,5,3,11,12,12,5,4,14,13,4,15,12,12,1,1,13,15,10,13,6,9,9,3,14,4,7,6,7,11,0,1,8,9,12,1,15,4,9,3,14,10,12,8,13,6,14,5,8,7,11,6,4,14,2,2,10,7,2,5,14,5,7,6,12,6,2,15,12,2,5,7,12,11,9,13,14,1,8,1,9,9,13,11,7,12,10,2,7,8,0,6,11,14,13,5,1,14,4,8,4,3,13,7,9,3,3,12,8,3,4,14,6,14,7,9,2,8,9,9,6,10,8,9,12,15,10,5,7,1,7,3,12,13,8,2,6,11,5,1,1,4,12,10,3,9,2,7,1,1,1,7,10,9,9,13,3,1,2,9,0,13,7,13,15,7,3,4,13,6,3,7,9,1,0,11,7,14,1,1,13,13,5,14,1,13,8,11,4,10,2,6,12,0,8,7,10,1,11,9,2,6,6,8,2,14,3,7,9,4,5,3,10,9,14,13,1,10,15,13,10,0,12,1,7,13,0,14,5,0,0,2,0,11,12,0,13,5,6,5,8,7,1,1,9,6,1,8,3,2,4,0,11,10,9,12,3,2,1,5,4,8,4,12,1,0,3,6,5,14,12,10,2,13,1,12,11,12,14,13,12,14,11,0,5,8,3,15,7,15,1,3,1,10,5,9,12,1,0,4,13,3,11,10,2,15,8,1,15,13,7,6,3,7,3,13,4,10,6,7,13,9,12,7,12,11,11,10,14,12,14,10,3,15,10,9,5,1,6,13,13,9,10,14,13,4,1,11,15,14,12,2,14,6,11,11,14,13,1,3,0,3,2,5,1,4,1,1,3,10,12,0,6,15,9,7,9,12,6,7,13,1,11,13,9,12,9,13,4,1,11,3,1,14,7,5,6,11,12,15,1,10,15,3,2,9,14,9,6,6,2,14,0,6,6,2,6,7,2,15,0,4,4,5,12,0,1,14,6,12,14,6,14,13,4,4,6,11,6,13,13,11,14,14,6,12,10,2,4,0,6,1,5,2,3,2,2,15,14,0,2,9,10,8,6,12,1,10,1,14,10,5,8,8,15,8,13,1,13,15,12,6,13,3,3,7,14,14,11,5,6,4,6,12,0,15,13,10,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"2\", \"3\", \"6\"], \"clip_start\": 173.0, \"clip_end\": 178.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,4,2,8,6,8,10,0,11,14,0,2,13,10,6,14,3,7,6,11,3,9,5,2,1,7,11,5,13,8,14,2,6,3,1,2,15,12,15,5,9,3,6,9,2,7,14,12,13,7,14,14,5,4,5,12,1,5,6,1,9,1,1,4,11,7,0,15,14,10,5,3,5,6,5,1,7,14,6,0,6,12,5,9,6,12,13,5,2,0,4,7,1,4,5,3,7,3,13,13,5,13,5,6,15,1,11,3,12,6,10,8,5,5,4,3,11,9,13,13,11,9,6,14,3,11,4,7,1,2,7,14,10,5,3,12,5,8,9,7,3,11,15,10,10,6,5,9,1,4,8,12,9,1,4,7,10,8,5,5,15,10,7,3,4,0,8,9,8,2,4,5,3,10,2,3,6,2,3,12,7,5,11,5,15,1,14,2,7,12,0,2,10,15,0,3,3,0,9,15,10,11,4,10,14,5,0,9,15,13,10,3,1,3,14,5,6,7,3,0,13,5,14,7,5,14,14,15,7,13,14,1,8,0,13,10,15,10,13,13,3,9,14,5,3,2,10,13,2,13,5,0,0,14,6,6,2,4,8,8,2,1,8,12,12,8,0,10,2,10,11,6,9,11,2,4,1,0,4,4,11,6,5,13,12,11,0,14,9,5,0,15,1,2,4,3,13,1,15,2,15,5,2,6,7,5,1,4,0,2,11,3,3,13,1,2,2,14,0,15,4,8,14,0,1,15,11,13,2,12,8,4,14,7,14,8,3,6,1,13,1,7,10,4,2,8,3,8,11,13,1,14,9,10,4,2,8,5,4,14,9,13,13,1,14,4,8,12,14,14,6,10,15,10,0,11,12,5,0,13,4,0,12,9,10,8,13,6,4,11,4,0,6,13,14,14,2,4,6,2,15,11,3,6,5,4,9,5,0,1,1,6,5,2,9,6,12,12,13,15,11,10,10,4,10,3,3,11,0,12,10,14,2,7,5,4,3,10,14,9,4,7,10,1,8,7,4,13,8,9,9,10,3,13,7,9,4,14,8,12,8,0,0,1,2,8,11,11,2,0,8,15,2,7,3,11,14,0,15,13,12,14,10,4,1,14,8,2,5,0,15,5,8,4,8,8,14,15,1,6,12,13,11,2,13,14,14,6,15,3,2,4,14,6,14,10,10,14,8,1,15,12,5,3,11,12,12,5,4,14,13,4,15,12,12,1,1,13,15,10,13,6,9,9,3,14,4,7,6,7,11,0,1,8,9,12,1,15,4,9,3,14,10,12,8,13,6,14,5,8,7,11,6,4,14,2,2,10,7,2,5,14,5,7,6,12,6,2,15,12,2,5,7,12,11,9,13,14,1,8,1,9,9,13,11,7,12,10,2,7,8,0,6,11,14,13,5,1,14,4,8,4,3,13,7,9,3,3,12,8,3,4,14,6,14,7,9,2,8,9,9,6,10,8,9,12,15,10,5,7,1,7,3,12,13,8,2,6,11,5,1,1,4,12,10,3,9,2,7,1,1,1,7,10,9,9,13,3,1,2,9,0,13,7,13,15,7,3,4,13,6,3,7,9,1,0,11,7,14,1,1,13,13,5,14,1,13,8,11,4,10,2,6,12,0,8,7,10,1,11,9,2,6,6,8,2,14,3,7,9,4,5,3,10,9,14,13,1,10,15,13,10,0,12,1,7,13,0,14,5,0,0,2,0,11,12,0,13,5,6,5,8,7,1,1,9,6,1,8,3,2,4,0,11,10,9,12,3,2,1,5,4,8,4,12,1,0,3,6,5,14,12,10,2,13,1,12,11,12,14,13,12,14,11,0,5,8,3,15,7,15,1,3,1,10,5,9,12,1,0,4,13,3,11,10,2,15,8,1,15,13,7,6,3,7,3,13,4,10,6,7,13,9,12,7,12,11,11,10,14,12,14,10,3,15,10,9,5,1,6,13,13,9,10,14,13,4,1,11,15,14,12,2,14,6,11,11,14,13,1,3,0,3,2,5,1,4,1,1,3,10,12,0,6,15,9,7,9,12,6,7,13,1,11,13,9,12,9,13,4,1,11,3,1,14,7,5,6,11,12,15,1,10,15,3,2,9,14,9,6,6,2,14,0,6,6,2,6,7,2,15,0,4,4,5,12,0,1,14,6,12,14,6,14,13,4,4,6,11,6,13,13,11,14,14,6,12,10,2,4,0,6,1,5,2,3,2,2,15,14,0,2,9,10,8,6,12,1,10,1,14,10,5,8,8,15,8,13,1,13,15,12,6,13,3,3,7,14,14,11,5,6,4,6,12,0,15,13,10,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"14\", \"9\", \"4\", \"7\"], \"clip_start\": 438.0, \"clip_end\": 443.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,4,2,8,6,8,10,0,11,14,0,2,13,10,6,14,3,7,6,11,3,9,5,2,1,7,11,5,13,8,14,2,6,3,1,2,15,12,15,5,9,3,6,9,2,7,14,12,13,7,14,14,5,4,5,12,1,5,6,1,9,1,1,4,11,7,0,15,14,10,5,3,5,6,5,1,7,14,6,0,6,12,5,9,6,12,13,5,2,0,4,7,1,4,5,3,7,3,13,13,5,13,5,6,15,1,11,3,12,6,10,8,5,5,4,3,11,9,13,13,11,9,6,14,3,11,4,7,1,2,7,14,10,5,3,12,5,8,9,7,3,11,15,10,10,6,5,9,1,4,8,12,9,1,4,7,10,8,5,5,15,10,7,3,4,0,8,9,8,2,4,5,3,10,2,3,6,2,3,12,7,5,11,5,15,1,14,2,7,12,0,2,10,15,0,3,3,0,9,15,10,11,4,10,14,5,0,9,15,13,10,3,1,3,14,5,6,7,3,0,13,5,14,7,5,14,14,15,7,13,14,1,8,0,13,10,15,10,13,13,3,9,14,5,3,2,10,13,2,13,5,0,0,14,6,6,2,4,8,8,2,1,8,12,12,8,0,10,2,10,11,6,9,11,2,4,1,0,4,4,11,6,5,13,12,11,0,14,9,5,0,15,1,2,4,3,13,1,15,2,15,5,2,6,7,5,1,4,0,2,11,3,3,13,1,2,2,14,0,15,4,8,14,0,1,15,11,13,2,12,8,4,14,7,14,8,3,6,1,13,1,7,10,4,2,8,3,8,11,13,1,14,9,10,4,2,8,5,4,14,9,13,13,1,14,4,8,12,14,14,6,10,15,10,0,11,12,5,0,13,4,0,12,9,10,8,13,6,4,11,4,0,6,13,14,14,2,4,6,2,15,11,3,6,5,4,9,5,0,1,1,6,5,2,9,6,12,12,13,15,11,10,10,4,10,3,3,11,0,12,10,14,2,7,5,4,3,10,14,9,4,7,10,1,8,7,4,13,8,9,9,10,3,13,7,9,4,14,8,12,8,0,0,1,2,8,11,11,2,0,8,15,2,7,3,11,14,0,15,13,12,14,10,4,1,14,8,2,5,0,15,5,8,4,8,8,14,15,1,6,12,13,11,2,13,14,14,6,15,3,2,4,14,6,14,10,10,14,8,1,15,12,5,3,11,12,12,5,4,14,13,4,15,12,12,1,1,13,15,10,13,6,9,9,3,14,4,7,6,7,11,0,1,8,9,12,1,15,4,9,3,14,10,12,8,13,6,14,5,8,7,11,6,4,14,2,2,10,7,2,5,14,5,7,6,12,6,2,15,12,2,5,7,12,11,9,13,14,1,8,1,9,9,13,11,7,12,10,2,7,8,0,6,11,14,13,5,1,14,4,8,4,3,13,7,9,3,3,12,8,3,4,14,6,14,7,9,2,8,9,9,6,10,8,9,12,15,10,5,7,1,7,3,12,13,8,2,6,11,5,1,1,4,12,10,3,9,2,7,1,1,1,7,10,9,9,13,3,1,2,9,0,13,7,13,15,7,3,4,13,6,3,7,9,1,0,11,7,14,1,1,13,13,5,14,1,13,8,11,4,10,2,6,12,0,8,7,10,1,11,9,2,6,6,8,2,14,3,7,9,4,5,3,10,9,14,13,1,10,15,13,10,0,12,1,7,13,0,14,5,0,0,2,0,11,12,0,13,5,6,5,8,7,1,1,9,6,1,8,3,2,4,0,11,10,9,12,3,2,1,5,4,8,4,12,1,0,3,6,5,14,12,10,2,13,1,12,11,12,14,13,12,14,11,0,5,8,3,15,7,15,1,3,1,10,5,9,12,1,0,4,13,3,11,10,2,15,8,1,15,13,7,6,3,7,3,13,4,10,6,7,13,9,12,7,12,11,11,10,14,12,14,10,3,15,10,9,5,1,6,13,13,9,10,14,13,4,1,11,15,14,12,2,14,6,11,11,14,13,1,3,0,3,2,5,1,4,1,1,3,10,12,0,6,15,9,7,9,12,6,7,13,1,11,13,9,12,9,13,4,1,11,3,1,14,7,5,6,11,12,15,1,10,15,3,2,9,14,9,6,6,2,14,0,6,6,2,6,7,2,15,0,4,4,5,12,0,1,14,6,12,14,6,14,13,4,4,6,11,6,13,13,11,14,14,6,12,10,2,4,0,6,1,5,2,3,2,2,15,14,0,2,9,10,8,6,12,1,10,1,14,10,5,8,8,15,8,13,1,13,15,12,6,13,3,3,7,14,14,11,5,6,4,6,12,0,15,13,10,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"4\", \"10\"], \"clip_start\": 201.0, \"clip_end\": 205.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,4,2,8,6,8,10,0,11,14,0,2,13,10,6,14,3,7,6,11,3,9,5,2,1,7,11,5,13,8,14,2,6,3,1,2,15,12,15,5,9,3,6,9,2,7,14,12,13,7,14,14,5,4,5,12,1,5,6,1,9,1,1,4,11,7,0,15,14,10,5,3,5,6,5,1,7,14,6,0,6,12,5,9,6,12,13,5,2,0,4,7,1,4,5,3,7,3,13,13,5,13,5,6,15,1,11,3,12,6,10,8,5,5,4,3,11,9,13,13,11,9,6,14,3,11,4,7,1,2,7,14,10,5,3,12,5,8,9,7,3,11,15,10,10,6,5,9,1,4,8,12,9,1,4,7,10,8,5,5,15,10,7,3,4,0,8,9,8,2,4,5,3,10,2,3,6,2,3,12,7,5,11,5,15,1,14,2,7,12,0,2,10,15,0,3,3,0,9,15,10,11,4,10,14,5,0,9,15,13,10,3,1,3,14,5,6,7,3,0,13,5,14,7,5,14,14,15,7,13,14,1,8,0,13,10,15,10,13,13,3,9,14,5,3,2,10,13,2,13,5,0,0,14,6,6,2,4,8,8,2,1,8,12,12,8,0,10,2,10,11,6,9,11,2,4,1,0,4,4,11,6,5,13,12,11,0,14,9,5,0,15,1,2,4,3,13,1,15,2,15,5,2,6,7,5,1,4,0,2,11,3,3,13,1,2,2,14,0,15,4,8,14,0,1,15,11,13,2,12,8,4,14,7,14,8,3,6,1,13,1,7,10,4,2,8,3,8,11,13,1,14,9,10,4,2,8,5,4,14,9,13,13,1,14,4,8,12,14,14,6,10,15,10,0,11,12,5,0,13,4,0,12,9,10,8,13,6,4,11,4,0,6,13,14,14,2,4,6,2,15,11,3,6,5,4,9,5,0,1,1,6,5,2,9,6,12,12,13,15,11,10,10,4,10,3,3,11,0,12,10,14,2,7,5,4,3,10,14,9,4,7,10,1,8,7,4,13,8,9,9,10,3,13,7,9,4,14,8,12,8,0,0,1,2,8,11,11,2,0,8,15,2,7,3,11,14,0,15,13,12,14,10,4,1,14,8,2,5,0,15,5,8,4,8,8,14,15,1,6,12,13,11,2,13,14,14,6,15,3,2,4,14,6,14,10,10,14,8,1,15,12,5,3,11,12,12,5,4,14,13,4,15,12,12,1,1,13,15,10,13,6,9,9,3,14,4,7,6,7,11,0,1,8,9,12,1,15,4,9,3,14,10,12,8,13,6,14,5,8,7,11,6,4,14,2,2,10,7,2,5,14,5,7,6,12,6,2,15,12,2,5,7,12,11,9,13,14,1,8,1,9,9,13,11,7,12,10,2,7,8,0,6,11,14,13,5,1,14,4,8,4,3,13,7,9,3,3,12,8,3,4,14,6,14,7,9,2,8,9,9,6,10,8,9,12,15,10,5,7,1,7,3,12,13,8,2,6,11,5,1,1,4,12,10,3,9,2,7,1,1,1,7,10,9,9,13,3,1,2,9,0,13,7,13,15,7,3,4,13,6,3,7,9,1,0,11,7,14,1,1,13,13,5,14,1,13,8,11,4,10,2,6,12,0,8,7,10,1,11,9,2,6,6,8,2,14,3,7,9,4,5,3,10,9,14,13,1,10,15,13,10,0,12,1,7,13,0,14,5,0,0,2,0,11,12,0,13,5,6,5,8,7,1,1,9,6,1,8,3,2,4,0,11,10,9,12,3,2,1,5,4,8,4,12,1,0,3,6,5,14,12,10,2,13,1,12,11,12,14,13,12,14,11,0,5,8,3,15,7,15,1,3,1,10,5,9,12,1,0,4,13,3,11,10,2,15,8,1,15,13,7,6,3,7,3,13,4,10,6,7,13,9,12,7,12,11,11,10,14,12,14,10,3,15,10,9,5,1,6,13,13,9,10,14,13,4,1,11,15,14,12,2,14,6,11,11,14,13,1,3,0,3,2,5,1,4,1,1,3,10,12,0,6,15,9,7,9,12,6,7,13,1,11,13,9,12,9,13,4,1,11,3,1,14,7,5,6,11,12,15,1,10,15,3,2,9,14,9,6,6,2,14,0,6,6,2,6,7,2,15,0,4,4,5,12,0,1,14,6,12,14,6,14,13,4,4,6,11,6,13,13,11,14,14,6,12,10,2,4,0,6,1,5,2,3,2,2,15,14,0,2,9,10,8,6,12,1,10,1,14,10,5,8,8,15,8,13,1,13,15,12,6,13,3,3,7,14,14,11,5,6,4,6,12,0,15,13,10,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"6\"], \"clip_start\": 300.0, \"clip_end\": 303.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,4,2,8,6,8,10,0,11,14,0,2,13,10,6,14,3,7,6,11,3,9,5,2,1,7,11,5,13,8,14,2,6,3,1,2,15,12,15,5,9,3,6,9,2,7,14,12,13,7,14,14,5,4,5,12,1,5,6,1,9,1,1,4,11,7,0,15,14,10,5,3,5,6,5,1,7,14,6,0,6,12,5,9,6,12,13,5,2,0,4,7,1,4,5,3,7,3,13,13,5,13,5,6,15,1,11,3,12,6,10,8,5,5,4,3,11,9,13,13,11,9,6,14,3,11,4,7,1,2,7,14,10,5,3,12,5,8,9,7,3,11,15,10,10,6,5,9,1,4,8,12,9,1,4,7,10,8,5,5,15,10,7,3,4,0,8,9,8,2,4,5,3,10,2,3,6,2,3,12,7,5,11,5,15,1,14,2,7,12,0,2,10,15,0,3,3,0,9,15,10,11,4,10,14,5,0,9,15,13,10,3,1,3,14,5,6,7,3,0,13,5,14,7,5,14,14,15,7,13,14,1,8,0,13,10,15,10,13,13,3,9,14,5,3,2,10,13,2,13,5,0,0,14,6,6,2,4,8,8,2,1,8,12,12,8,0,10,2,10,11,6,9,11,2,4,1,0,4,4,11,6,5,13,12,11,0,14,9,5,0,15,1,2,4,3,13,1,15,2,15,5,2,6,7,5,1,4,0,2,11,3,3,13,1,2,2,14,0,15,4,8,14,0,1,15,11,13,2,12,8,4,14,7,14,8,3,6,1,13,1,7,10,4,2,8,3,8,11,13,1,14,9,10,4,2,8,5,4,14,9,13,13,1,14,4,8,12,14,14,6,10,15,10,0,11,12,5,0,13,4,0,12,9,10,8,13,6,4,11,4,0,6,13,14,14,2,4,6,2,15,11,3,6,5,4,9,5,0,1,1,6,5,2,9,6,12,12,13,15,11,10,10,4,10,3,3,11,0,12,10,14,2,7,5,4,3,10,14,9,4,7,10,1,8,7,4,13,8,9,9,10,3,13,7,9,4,14,8,12,8,0,0,1,2,8,11,11,2,0,8,15,2,7,3,11,14,0,15,13,12,14,10,4,1,14,8,2,5,0,15,5,8,4,8,8,14,15,1,6,12,13,11,2,13,14,14,6,15,3,2,4,14,6,14,10,10,14,8,1,15,12,5,3,11,12,12,5,4,14,13,4,15,12,12,1,1,13,15,10,13,6,9,9,3,14,4,7,6,7,11,0,1,8,9,12,1,15,4,9,3,14,10,12,8,13,6,14,5,8,7,11,6,4,14,2,2,10,7,2,5,14,5,7,6,12,6,2,15,12,2,5,7,12,11,9,13,14,1,8,1,9,9,13,11,7,12,10,2,7,8,0,6,11,14,13,5,1,14,4,8,4,3,13,7,9,3,3,12,8,3,4,14,6,14,7,9,2,8,9,9,6,10,8,9,12,15,10,5,7,1,7,3,12,13,8,2,6,11,5,1,1,4,12,10,3,9,2,7,1,1,1,7,10,9,9,13,3,1,2,9,0,13,7,13,15,7,3,4,13,6,3,7,9,1,0,11,7,14,1,1,13,13,5,14,1,13,8,11,4,10,2,6,12,0,8,7,10,1,11,9,2,6,6,8,2,14,3,7,9,4,5,3,10,9,14,13,1,10,15,13,10,0,12,1,7,13,0,14,5,0,0,2,0,11,12,0,13,5,6,5,8,7,1,1,9,6,1,8,3,2,4,0,11,10,9,12,3,2,1,5,4,8,4,12,1,0,3,6,5,14,12,10,2,13,1,12,11,12,14,13,12,14,11,0,5,8,3,15,7,15,1,3,1,10,5,9,12,1,0,4,13,3,11,10,2,15,8,1,15,13,7,6,3,7,3,13,4,10,6,7,13,9,12,7,12,11,11,10,14,12,14,10,3,15,10,9,5,1,6,13,13,9,10,14,13,4,1,11,15,14,12,2,14,6,11,11,14,13,1,3,0,3,2,5,1,4,1,1,3,10,12,0,6,15,9,7,9,12,6,7,13,1,11,13,9,12,9,13,4,1,11,3,1,14,7,5,6,11,12,15,1,10,15,3,2,9,14,9,6,6,2,14,0,6,6,2,6,7,2,15,0,4,4,5,12,0,1,14,6,12,14,6,14,13,4,4,6,11,6,13,13,11,14,14,6,12,10,2,4,0,6,1,5,2,3,2,2,15,14,0,2,9,10,8,6,12,1,10,1,14,10,5,8,8,15,8,13,1,13,15,12,6,13,3,3,7,14,14,11,5,6,4,6,12,0,15,13,10,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"8\", \"6\", \"8\", \"10\", \"0\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q7_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,4,2,8,6,8,10,0,11,14,0,2,13,10,6,14,3,7,6,11,3,9,5,2,1,7,11,5,13,8,14,2,6,3,1,2,15,12,15,5,9,3,6,9,2,7,14,12,13,7,14,14,5,4,5,12,1,5,6,1,9,1,1,4,11,7,0,15,14,10,5,3,5,6,5,1,7,14,6,0,6,12,5,9,6,12,13,5,2,0,4,7,1,4,5,3,7,3,13,13,5,13,5,6,15,1,11,3,12,6,10,8,5,5,4,3,11,9,13,13,11,9,6,14,3,11,4,7,1,2,7,14,10,5,3,12,5,8,9,7,3,11,15,10,10,6,5,9,1,4,8,12,9,1,4,7,10,8,5,5,15,10,7,3,4,0,8,9,8,2,4,5,3,10,2,3,6,2,3,12,7,5,11,5,15,1,14,2,7,12,0,2,10,15,0,3,3,0,9,15,10,11,4,10,14,5,0,9,15,13,10,3,1,3,14,5,6,7,3,0,13,5,14,7,5,14,14,15,7,13,14,1,8,0,13,10,15,10,13,13,3,9,14,5,3,2,10,13,2,13,5,0,0,14,6,6,2,4,8,8,2,1,8,12,12,8,0,10,2,10,11,6,9,11,2,4,1,0,4,4,11,6,5,13,12,11,0,14,9,5,0,15,1,2,4,3,13,1,15,2,15,5,2,6,7,5,1,4,0,2,11,3,3,13,1,2,2,14,0,15,4,8,14,0,1,15,11,13,2,12,8,4,14,7,14,8,3,6,1,13,1,7,10,4,2,8,3,8,11,13,1,14,9,10,4,2,8,5,4,14,9,13,13,1,14,4,8,12,14,14,6,10,15,10,0,11,12,5,0,13,4,0,12,9,10,8,13,6,4,11,4,0,6,13,14,14,2,4,6,2,15,11,3,6,5,4,9,5,0,1,1,6,5,2,9,6,12,12,13,15,11,10,10,4,10,3,3,11,0,12,10,14,2,7,5,4,3,10,14,9,4,7,10,1,8,7,4,13,8,9,9,10,3,13,7,9,4,14,8,12,8,0,0,1,2,8,11,11,2,0,8,15,2,7,3,11,14,0,15,13,12,14,10,4,1,14,8,2,5,0,15,5,8,4,8,8,14,15,1,6,12,13,11,2,13,14,14,6,15,3,2,4,14,6,14,10,10,14,8,1,15,12,5,3,11,12,12,5,4,14,13,4,15,12,12,1,1,13,15,10,13,6,9,9,3,14,4,7,6,7,11,0,1,8,9,12,1,15,4,9,3,14,10,12,8,13,6,14,5,8,7,11,6,4,14,2,2,10,7,2,5,14,5,7,6,12,6,2,15,12,2,5,7,12,11,9,13,14,1,8,1,9,9,13,11,7,12,10,2,7,8,0,6,11,14,13,5,1,14,4,8,4,3,13,7,9,3,3,12,8,3,4,14,6,14,7,9,2,8,9,9,6,10,8,9,12,15,10,5,7,1,7,3,12,13,8,2,6,11,5,1,1,4,12,10,3,9,2,7,1,1,1,7,10,9,9,13,3,1,2,9,0,13,7,13,15,7,3,4,13,6,3,7,9,1,0,11,7,14,1,1,13,13,5,14,1,13,8,11,4,10,2,6,12,0,8,7,10,1,11,9,2,6,6,8,2,14,3,7,9,4,5,3,10,9,14,13,1,10,15,13,10,0,12,1,7,13,0,14,5,0,0,2,0,11,12,0,13,5,6,5,8,7,1,1,9,6,1,8,3,2,4,0,11,10,9,12,3,2,1,5,4,8,4,12,1,0,3,6,5,14,12,10,2,13,1,12,11,12,14,13,12,14,11,0,5,8,3,15,7,15,1,3,1,10,5,9,12,1,0,4,13,3,11,10,2,15,8,1,15,13,7,6,3,7,3,13,4,10,6,7,13,9,12,7,12,11,11,10,14,12,14,10,3,15,10,9,5,1,6,13,13,9,10,14,13,4,1,11,15,14,12,2,14,6,11,11,14,13,1,3,0,3,2,5,1,4,1,1,3,10,12,0,6,15,9,7,9,12,6,7,13,1,11,13,9,12,9,13,4,1,11,3,1,14,7,5,6,11,12,15,1,10,15,3,2,9,14,9,6,6,2,14,0,6,6,2,6,7,2,15,0,4,4,5,12,0,1,14,6,12,14,6,14,13,4,4,6,11,6,13,13,11,14,14,6,12,10,2,4,0,6,1,5,2,3,2,2,15,14,0,2,9,10,8,6,12,1,10,1,14,10,5,8,8,15,8,13,1,13,15,12,6,13,3,3,7,14,14,11,5,6,4,6,12,0,15,13,10,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"0\"], \"clip_start\": 746.0, \"clip_end\": 749.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q8_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,4,2,8,6,8,10,0,11,14,0,2,13,10,6,14,3,7,6,11,3,9,5,2,1,7,11,5,13,8,14,2,6,3,1,2,15,12,15,5,9,3,6,9,2,7,14,12,13,7,14,14,5,4,5,12,1,5,6,1,9,1,1,4,11,7,0,15,14,10,5,3,5,6,5,1,7,14,6,0,6,12,5,9,6,12,13,5,2,0,4,7,1,4,5,3,7,3,13,13,5,13,5,6,15,1,11,3,12,6,10,8,5,5,4,3,11,9,13,13,11,9,6,14,3,11,4,7,1,2,7,14,10,5,3,12,5,8,9,7,3,11,15,10,10,6,5,9,1,4,8,12,9,1,4,7,10,8,5,5,15,10,7,3,4,0,8,9,8,2,4,5,3,10,2,3,6,2,3,12,7,5,11,5,15,1,14,2,7,12,0,2,10,15,0,3,3,0,9,15,10,11,4,10,14,5,0,9,15,13,10,3,1,3,14,5,6,7,3,0,13,5,14,7,5,14,14,15,7,13,14,1,8,0,13,10,15,10,13,13,3,9,14,5,3,2,10,13,2,13,5,0,0,14,6,6,2,4,8,8,2,1,8,12,12,8,0,10,2,10,11,6,9,11,2,4,1,0,4,4,11,6,5,13,12,11,0,14,9,5,0,15,1,2,4,3,13,1,15,2,15,5,2,6,7,5,1,4,0,2,11,3,3,13,1,2,2,14,0,15,4,8,14,0,1,15,11,13,2,12,8,4,14,7,14,8,3,6,1,13,1,7,10,4,2,8,3,8,11,13,1,14,9,10,4,2,8,5,4,14,9,13,13,1,14,4,8,12,14,14,6,10,15,10,0,11,12,5,0,13,4,0,12,9,10,8,13,6,4,11,4,0,6,13,14,14,2,4,6,2,15,11,3,6,5,4,9,5,0,1,1,6,5,2,9,6,12,12,13,15,11,10,10,4,10,3,3,11,0,12,10,14,2,7,5,4,3,10,14,9,4,7,10,1,8,7,4,13,8,9,9,10,3,13,7,9,4,14,8,12,8,0,0,1,2,8,11,11,2,0,8,15,2,7,3,11,14,0,15,13,12,14,10,4,1,14,8,2,5,0,15,5,8,4,8,8,14,15,1,6,12,13,11,2,13,14,14,6,15,3,2,4,14,6,14,10,10,14,8,1,15,12,5,3,11,12,12,5,4,14,13,4,15,12,12,1,1,13,15,10,13,6,9,9,3,14,4,7,6,7,11,0,1,8,9,12,1,15,4,9,3,14,10,12,8,13,6,14,5,8,7,11,6,4,14,2,2,10,7,2,5,14,5,7,6,12,6,2,15,12,2,5,7,12,11,9,13,14,1,8,1,9,9,13,11,7,12,10,2,7,8,0,6,11,14,13,5,1,14,4,8,4,3,13,7,9,3,3,12,8,3,4,14,6,14,7,9,2,8,9,9,6,10,8,9,12,15,10,5,7,1,7,3,12,13,8,2,6,11,5,1,1,4,12,10,3,9,2,7,1,1,1,7,10,9,9,13,3,1,2,9,0,13,7,13,15,7,3,4,13,6,3,7,9,1,0,11,7,14,1,1,13,13,5,14,1,13,8,11,4,10,2,6,12,0,8,7,10,1,11,9,2,6,6,8,2,14,3,7,9,4,5,3,10,9,14,13,1,10,15,13,10,0,12,1,7,13,0,14,5,0,0,2,0,11,12,0,13,5,6,5,8,7,1,1,9,6,1,8,3,2,4,0,11,10,9,12,3,2,1,5,4,8,4,12,1,0,3,6,5,14,12,10,2,13,1,12,11,12,14,13,12,14,11,0,5,8,3,15,7,15,1,3,1,10,5,9,12,1,0,4,13,3,11,10,2,15,8,1,15,13,7,6,3,7,3,13,4,10,6,7,13,9,12,7,12,11,11,10,14,12,14,10,3,15,10,9,5,1,6,13,13,9,10,14,13,4,1,11,15,14,12,2,14,6,11,11,14,13,1,3,0,3,2,5,1,4,1,1,3,10,12,0,6,15,9,7,9,12,6,7,13,1,11,13,9,12,9,13,4,1,11,3,1,14,7,5,6,11,12,15,1,10,15,3,2,9,14,9,6,6,2,14,0,6,6,2,6,7,2,15,0,4,4,5,12,0,1,14,6,12,14,6,14,13,4,4,6,11,6,13,13,11,14,14,6,12,10,2,4,0,6,1,5,2,3,2,2,15,14,0,2,9,10,8,6,12,1,10,1,14,10,5,8,8,15,8,13,1,13,15,12,6,13,3,3,7,14,14,11,5,6,4,6,12,0,15,13,10,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"5\", \"6\", \"7\", \"3\", \"0\"], \"clip_start\": 215.0, \"clip_end\": 221.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,4,2,8,6,8,10,0,11,14,0,2,13,10,6,14,3,7,6,11,3,9,5,2,1,7,11,5,13,8,14,2,6,3,1,2,15,12,15,5,9,3,6,9,2,7,14,12,13,7,14,14,5,4,5,12,1,5,6,1,9,1,1,4,11,7,0,15,14,10,5,3,5,6,5,1,7,14,6,0,6,12,5,9,6,12,13,5,2,0,4,7,1,4,5,3,7,3,13,13,5,13,5,6,15,1,11,3,12,6,10,8,5,5,4,3,11,9,13,13,11,9,6,14,3,11,4,7,1,2,7,14,10,5,3,12,5,8,9,7,3,11,15,10,10,6,5,9,1,4,8,12,9,1,4,7,10,8,5,5,15,10,7,3,4,0,8,9,8,2,4,5,3,10,2,3,6,2,3,12,7,5,11,5,15,1,14,2,7,12,0,2,10,15,0,3,3,0,9,15,10,11,4,10,14,5,0,9,15,13,10,3,1,3,14,5,6,7,3,0,13,5,14,7,5,14,14,15,7,13,14,1,8,0,13,10,15,10,13,13,3,9,14,5,3,2,10,13,2,13,5,0,0,14,6,6,2,4,8,8,2,1,8,12,12,8,0,10,2,10,11,6,9,11,2,4,1,0,4,4,11,6,5,13,12,11,0,14,9,5,0,15,1,2,4,3,13,1,15,2,15,5,2,6,7,5,1,4,0,2,11,3,3,13,1,2,2,14,0,15,4,8,14,0,1,15,11,13,2,12,8,4,14,7,14,8,3,6,1,13,1,7,10,4,2,8,3,8,11,13,1,14,9,10,4,2,8,5,4,14,9,13,13,1,14,4,8,12,14,14,6,10,15,10,0,11,12,5,0,13,4,0,12,9,10,8,13,6,4,11,4,0,6,13,14,14,2,4,6,2,15,11,3,6,5,4,9,5,0,1,1,6,5,2,9,6,12,12,13,15,11,10,10,4,10,3,3,11,0,12,10,14,2,7,5,4,3,10,14,9,4,7,10,1,8,7,4,13,8,9,9,10,3,13,7,9,4,14,8,12,8,0,0,1,2,8,11,11,2,0,8,15,2,7,3,11,14,0,15,13,12,14,10,4,1,14,8,2,5,0,15,5,8,4,8,8,14,15,1,6,12,13,11,2,13,14,14,6,15,3,2,4,14,6,14,10,10,14,8,1,15,12,5,3,11,12,12,5,4,14,13,4,15,12,12,1,1,13,15,10,13,6,9,9,3,14,4,7,6,7,11,0,1,8,9,12,1,15,4,9,3,14,10,12,8,13,6,14,5,8,7,11,6,4,14,2,2,10,7,2,5,14,5,7,6,12,6,2,15,12,2,5,7,12,11,9,13,14,1,8,1,9,9,13,11,7,12,10,2,7,8,0,6,11,14,13,5,1,14,4,8,4,3,13,7,9,3,3,12,8,3,4,14,6,14,7,9,2,8,9,9,6,10,8,9,12,15,10,5,7,1,7,3,12,13,8,2,6,11,5,1,1,4,12,10,3,9,2,7,1,1,1,7,10,9,9,13,3,1,2,9,0,13,7,13,15,7,3,4,13,6,3,7,9,1,0,11,7,14,1,1,13,13,5,14,1,13,8,11,4,10,2,6,12,0,8,7,10,1,11,9,2,6,6,8,2,14,3,7,9,4,5,3,10,9,14,13,1,10,15,13,10,0,12,1,7,13,0,14,5,0,0,2,0,11,12,0,13,5,6,5,8,7,1,1,9,6,1,8,3,2,4,0,11,10,9,12,3,2,1,5,4,8,4,12,1,0,3,6,5,14,12,10,2,13,1,12,11,12,14,13,12,14,11,0,5,8,3,15,7,15,1,3,1,10,5,9,12,1,0,4,13,3,11,10,2,15,8,1,15,13,7,6,3,7,3,13,4,10,6,7,13,9,12,7,12,11,11,10,14,12,14,10,3,15,10,9,5,1,6,13,13,9,10,14,13,4,1,11,15,14,12,2,14,6,11,11,14,13,1,3,0,3,2,5,1,4,1,1,3,10,12,0,6,15,9,7,9,12,6,7,13,1,11,13,9,12,9,13,4,1,11,3,1,14,7,5,6,11,12,15,1,10,15,3,2,9,14,9,6,6,2,14,0,6,6,2,6,7,2,15,0,4,4,5,12,0,1,14,6,12,14,6,14,13,4,4,6,11,6,13,13,11,14,14,6,12,10,2,4,0,6,1,5,2,3,2,2,15,14,0,2,9,10,8,6,12,1,10,1,14,10,5,8,8,15,8,13,1,13,15,12,6,13,3,3,7,14,14,11,5,6,4,6,12,0,15,13,10,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"6\", \"12\", \"12\"], \"clip_start\": 415.0, \"clip_end\": 419.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,4,2,8,6,8,10,0,11,14,0,2,13,10,6,14,3,7,6,11,3,9,5,2,1,7,11,5,13,8,14,2,6,3,1,2,15,12,15,5,9,3,6,9,2,7,14,12,13,7,14,14,5,4,5,12,1,5,6,1,9,1,1,4,11,7,0,15,14,10,5,3,5,6,5,1,7,14,6,0,6,12,5,9,6,12,13,5,2,0,4,7,1,4,5,3,7,3,13,13,5,13,5,6,15,1,11,3,12,6,10,8,5,5,4,3,11,9,13,13,11,9,6,14,3,11,4,7,1,2,7,14,10,5,3,12,5,8,9,7,3,11,15,10,10,6,5,9,1,4,8,12,9,1,4,7,10,8,5,5,15,10,7,3,4,0,8,9,8,2,4,5,3,10,2,3,6,2,3,12,7,5,11,5,15,1,14,2,7,12,0,2,10,15,0,3,3,0,9,15,10,11,4,10,14,5,0,9,15,13,10,3,1,3,14,5,6,7,3,0,13,5,14,7,5,14,14,15,7,13,14,1,8,0,13,10,15,10,13,13,3,9,14,5,3,2,10,13,2,13,5,0,0,14,6,6,2,4,8,8,2,1,8,12,12,8,0,10,2,10,11,6,9,11,2,4,1,0,4,4,11,6,5,13,12,11,0,14,9,5,0,15,1,2,4,3,13,1,15,2,15,5,2,6,7,5,1,4,0,2,11,3,3,13,1,2,2,14,0,15,4,8,14,0,1,15,11,13,2,12,8,4,14,7,14,8,3,6,1,13,1,7,10,4,2,8,3,8,11,13,1,14,9,10,4,2,8,5,4,14,9,13,13,1,14,4,8,12,14,14,6,10,15,10,0,11,12,5,0,13,4,0,12,9,10,8,13,6,4,11,4,0,6,13,14,14,2,4,6,2,15,11,3,6,5,4,9,5,0,1,1,6,5,2,9,6,12,12,13,15,11,10,10,4,10,3,3,11,0,12,10,14,2,7,5,4,3,10,14,9,4,7,10,1,8,7,4,13,8,9,9,10,3,13,7,9,4,14,8,12,8,0,0,1,2,8,11,11,2,0,8,15,2,7,3,11,14,0,15,13,12,14,10,4,1,14,8,2,5,0,15,5,8,4,8,8,14,15,1,6,12,13,11,2,13,14,14,6,15,3,2,4,14,6,14,10,10,14,8,1,15,12,5,3,11,12,12,5,4,14,13,4,15,12,12,1,1,13,15,10,13,6,9,9,3,14,4,7,6,7,11,0,1,8,9,12,1,15,4,9,3,14,10,12,8,13,6,14,5,8,7,11,6,4,14,2,2,10,7,2,5,14,5,7,6,12,6,2,15,12,2,5,7,12,11,9,13,14,1,8,1,9,9,13,11,7,12,10,2,7,8,0,6,11,14,13,5,1,14,4,8,4,3,13,7,9,3,3,12,8,3,4,14,6,14,7,9,2,8,9,9,6,10,8,9,12,15,10,5,7,1,7,3,12,13,8,2,6,11,5,1,1,4,12,10,3,9,2,7,1,1,1,7,10,9,9,13,3,1,2,9,0,13,7,13,15,7,3,4,13,6,3,7,9,1,0,11,7,14,1,1,13,13,5,14,1,13,8,11,4,10,2,6,12,0,8,7,10,1,11,9,2,6,6,8,2,14,3,7,9,4,5,3,10,9,14,13,1,10,15,13,10,0,12,1,7,13,0,14,5,0,0,2,0,11,12,0,13,5,6,5,8,7,1,1,9,6,1,8,3,2,4,0,11,10,9,12,3,2,1,5,4,8,4,12,1,0,3,6,5,14,12,10,2,13,1,12,11,12,14,13,12,14,11,0,5,8,3,15,7,15,1,3,1,10,5,9,12,1,0,4,13,3,11,10,2,15,8,1,15,13,7,6,3,7,3,13,4,10,6,7,13,9,12,7,12,11,11,10,14,12,14,10,3,15,10,9,5,1,6,13,13,9,10,14,13,4,1,11,15,14,12,2,14,6,11,11,14,13,1,3,0,3,2,5,1,4,1,1,3,10,12,0,6,15,9,7,9,12,6,7,13,1,11,13,9,12,9,13,4,1,11,3,1,14,7,5,6,11,12,15,1,10,15,3,2,9,14,9,6,6,2,14,0,6,6,2,6,7,2,15,0,4,4,5,12,0,1,14,6,12,14,6,14,13,4,4,6,11,6,13,13,11,14,14,6,12,10,2,4,0,6,1,5,2,3,2,2,15,14,0,2,9,10,8,6,12,1,10,1,14,10,5,8,8,15,8,13,1,13,15,12,6,13,3,3,7,14,14,11,5,6,4,6,12,0,15,13,10,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"1\", \"6\", \"5\"], \"clip_start\": 409.0, \"clip_end\": 414.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,4,2,8,6,8,10,0,11,14,0,2,13,10,6,14,3,7,6,11,3,9,5,2,1,7,11,5,13,8,14,2,6,3,1,2,15,12,15,5,9,3,6,9,2,7,14,12,13,7,14,14,5,4,5,12,1,5,6,1,9,1,1,4,11,7,0,15,14,10,5,3,5,6,5,1,7,14,6,0,6,12,5,9,6,12,13,5,2,0,4,7,1,4,5,3,7,3,13,13,5,13,5,6,15,1,11,3,12,6,10,8,5,5,4,3,11,9,13,13,11,9,6,14,3,11,4,7,1,2,7,14,10,5,3,12,5,8,9,7,3,11,15,10,10,6,5,9,1,4,8,12,9,1,4,7,10,8,5,5,15,10,7,3,4,0,8,9,8,2,4,5,3,10,2,3,6,2,3,12,7,5,11,5,15,1,14,2,7,12,0,2,10,15,0,3,3,0,9,15,10,11,4,10,14,5,0,9,15,13,10,3,1,3,14,5,6,7,3,0,13,5,14,7,5,14,14,15,7,13,14,1,8,0,13,10,15,10,13,13,3,9,14,5,3,2,10,13,2,13,5,0,0,14,6,6,2,4,8,8,2,1,8,12,12,8,0,10,2,10,11,6,9,11,2,4,1,0,4,4,11,6,5,13,12,11,0,14,9,5,0,15,1,2,4,3,13,1,15,2,15,5,2,6,7,5,1,4,0,2,11,3,3,13,1,2,2,14,0,15,4,8,14,0,1,15,11,13,2,12,8,4,14,7,14,8,3,6,1,13,1,7,10,4,2,8,3,8,11,13,1,14,9,10,4,2,8,5,4,14,9,13,13,1,14,4,8,12,14,14,6,10,15,10,0,11,12,5,0,13,4,0,12,9,10,8,13,6,4,11,4,0,6,13,14,14,2,4,6,2,15,11,3,6,5,4,9,5,0,1,1,6,5,2,9,6,12,12,13,15,11,10,10,4,10,3,3,11,0,12,10,14,2,7,5,4,3,10,14,9,4,7,10,1,8,7,4,13,8,9,9,10,3,13,7,9,4,14,8,12,8,0,0,1,2,8,11,11,2,0,8,15,2,7,3,11,14,0,15,13,12,14,10,4,1,14,8,2,5,0,15,5,8,4,8,8,14,15,1,6,12,13,11,2,13,14,14,6,15,3,2,4,14,6,14,10,10,14,8,1,15,12,5,3,11,12,12,5,4,14,13,4,15,12,12,1,1,13,15,10,13,6,9,9,3,14,4,7,6,7,11,0,1,8,9,12,1,15,4,9,3,14,10,12,8,13,6,14,5,8,7,11,6,4,14,2,2,10,7,2,5,14,5,7,6,12,6,2,15,12,2,5,7,12,11,9,13,14,1,8,1,9,9,13,11,7,12,10,2,7,8,0,6,11,14,13,5,1,14,4,8,4,3,13,7,9,3,3,12,8,3,4,14,6,14,7,9,2,8,9,9,6,10,8,9,12,15,10,5,7,1,7,3,12,13,8,2,6,11,5,1,1,4,12,10,3,9,2,7,1,1,1,7,10,9,9,13,3,1,2,9,0,13,7,13,15,7,3,4,13,6,3,7,9,1,0,11,7,14,1,1,13,13,5,14,1,13,8,11,4,10,2,6,12,0,8,7,10,1,11,9,2,6,6,8,2,14,3,7,9,4,5,3,10,9,14,13,1,10,15,13,10,0,12,1,7,13,0,14,5,0,0,2,0,11,12,0,13,5,6,5,8,7,1,1,9,6,1,8,3,2,4,0,11,10,9,12,3,2,1,5,4,8,4,12,1,0,3,6,5,14,12,10,2,13,1,12,11,12,14,13,12,14,11,0,5,8,3,15,7,15,1,3,1,10,5,9,12,1,0,4,13,3,11,10,2,15,8,1,15,13,7,6,3,7,3,13,4,10,6,7,13,9,12,7,12,11,11,10,14,12,14,10,3,15,10,9,5,1,6,13,13,9,10,14,13,4,1,11,15,14,12,2,14,6,11,11,14,13,1,3,0,3,2,5,1,4,1,1,3,10,12,0,6,15,9,7,9,12,6,7,13,1,11,13,9,12,9,13,4,1,11,3,1,14,7,5,6,11,12,15,1,10,15,3,2,9,14,9,6,6,2,14,0,6,6,2,6,7,2,15,0,4,4,5,12,0,1,14,6,12,14,6,14,13,4,4,6,11,6,13,13,11,14,14,6,12,10,2,4,0,6,1,5,2,3,2,2,15,14,0,2,9,10,8,6,12,1,10,1,14,10,5,8,8,15,8,13,1,13,15,12,6,13,3,3,7,14,14,11,5,6,4,6,12,0,15,13,10,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"9\", \"12\"], \"clip_start\": 774.0, \"clip_end\": 778.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q12_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,4,2,8,6,8,10,0,11,14,0,2,13,10,6,14,3,7,6,11,3,9,5,2,1,7,11,5,13,8,14,2,6,3,1,2,15,12,15,5,9,3,6,9,2,7,14,12,13,7,14,14,5,4,5,12,1,5,6,1,9,1,1,4,11,7,0,15,14,10,5,3,5,6,5,1,7,14,6,0,6,12,5,9,6,12,13,5,2,0,4,7,1,4,5,3,7,3,13,13,5,13,5,6,15,1,11,3,12,6,10,8,5,5,4,3,11,9,13,13,11,9,6,14,3,11,4,7,1,2,7,14,10,5,3,12,5,8,9,7,3,11,15,10,10,6,5,9,1,4,8,12,9,1,4,7,10,8,5,5,15,10,7,3,4,0,8,9,8,2,4,5,3,10,2,3,6,2,3,12,7,5,11,5,15,1,14,2,7,12,0,2,10,15,0,3,3,0,9,15,10,11,4,10,14,5,0,9,15,13,10,3,1,3,14,5,6,7,3,0,13,5,14,7,5,14,14,15,7,13,14,1,8,0,13,10,15,10,13,13,3,9,14,5,3,2,10,13,2,13,5,0,0,14,6,6,2,4,8,8,2,1,8,12,12,8,0,10,2,10,11,6,9,11,2,4,1,0,4,4,11,6,5,13,12,11,0,14,9,5,0,15,1,2,4,3,13,1,15,2,15,5,2,6,7,5,1,4,0,2,11,3,3,13,1,2,2,14,0,15,4,8,14,0,1,15,11,13,2,12,8,4,14,7,14,8,3,6,1,13,1,7,10,4,2,8,3,8,11,13,1,14,9,10,4,2,8,5,4,14,9,13,13,1,14,4,8,12,14,14,6,10,15,10,0,11,12,5,0,13,4,0,12,9,10,8,13,6,4,11,4,0,6,13,14,14,2,4,6,2,15,11,3,6,5,4,9,5,0,1,1,6,5,2,9,6,12,12,13,15,11,10,10,4,10,3,3,11,0,12,10,14,2,7,5,4,3,10,14,9,4,7,10,1,8,7,4,13,8,9,9,10,3,13,7,9,4,14,8,12,8,0,0,1,2,8,11,11,2,0,8,15,2,7,3,11,14,0,15,13,12,14,10,4,1,14,8,2,5,0,15,5,8,4,8,8,14,15,1,6,12,13,11,2,13,14,14,6,15,3,2,4,14,6,14,10,10,14,8,1,15,12,5,3,11,12,12,5,4,14,13,4,15,12,12,1,1,13,15,10,13,6,9,9,3,14,4,7,6,7,11,0,1,8,9,12,1,15,4,9,3,14,10,12,8,13,6,14,5,8,7,11,6,4,14,2,2,10,7,2,5,14,5,7,6,12,6,2,15,12,2,5,7,12,11,9,13,14,1,8,1,9,9,13,11,7,12,10,2,7,8,0,6,11,14,13,5,1,14,4,8,4,3,13,7,9,3,3,12,8,3,4,14,6,14,7,9,2,8,9,9,6,10,8,9,12,15,10,5,7,1,7,3,12,13,8,2,6,11,5,1,1,4,12,10,3,9,2,7,1,1,1,7,10,9,9,13,3,1,2,9,0,13,7,13,15,7,3,4,13,6,3,7,9,1,0,11,7,14,1,1,13,13,5,14,1,13,8,11,4,10,2,6,12,0,8,7,10,1,11,9,2,6,6,8,2,14,3,7,9,4,5,3,10,9,14,13,1,10,15,13,10,0,12,1,7,13,0,14,5,0,0,2,0,11,12,0,13,5,6,5,8,7,1,1,9,6,1,8,3,2,4,0,11,10,9,12,3,2,1,5,4,8,4,12,1,0,3,6,5,14,12,10,2,13,1,12,11,12,14,13,12,14,11,0,5,8,3,15,7,15,1,3,1,10,5,9,12,1,0,4,13,3,11,10,2,15,8,1,15,13,7,6,3,7,3,13,4,10,6,7,13,9,12,7,12,11,11,10,14,12,14,10,3,15,10,9,5,1,6,13,13,9,10,14,13,4,1,11,15,14,12,2,14,6,11,11,14,13,1,3,0,3,2,5,1,4,1,1,3,10,12,0,6,15,9,7,9,12,6,7,13,1,11,13,9,12,9,13,4,1,11,3,1,14,7,5,6,11,12,15,1,10,15,3,2,9,14,9,6,6,2,14,0,6,6,2,6,7,2,15,0,4,4,5,12,0,1,14,6,12,14,6,14,13,4,4,6,11,6,13,13,11,14,14,6,12,10,2,4,0,6,1,5,2,3,2,2,15,14,0,2,9,10,8,6,12,1,10,1,14,10,5,8,8,15,8,13,1,13,15,12,6,13,3,3,7,14,14,11,5,6,4,6,12,0,15,13,10,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"14\", \"4\"], \"clip_start\": 363.0, \"clip_end\": 367.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q13_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,4,2,8,6,8,10,0,11,14,0,2,13,10,6,14,3,7,6,11,3,9,5,2,1,7,11,5,13,8,14,2,6,3,1,2,15,12,15,5,9,3,6,9,2,7,14,12,13,7,14,14,5,4,5,12,1,5,6,1,9,1,1,4,11,7,0,15,14,10,5,3,5,6,5,1,7,14,6,0,6,12,5,9,6,12,13,5,2,0,4,7,1,4,5,3,7,3,13,13,5,13,5,6,15,1,11,3,12,6,10,8,5,5,4,3,11,9,13,13,11,9,6,14,3,11,4,7,1,2,7,14,10,5,3,12,5,8,9,7,3,11,15,10,10,6,5,9,1,4,8,12,9,1,4,7,10,8,5,5,15,10,7,3,4,0,8,9,8,2,4,5,3,10,2,3,6,2,3,12,7,5,11,5,15,1,14,2,7,12,0,2,10,15,0,3,3,0,9,15,10,11,4,10,14,5,0,9,15,13,10,3,1,3,14,5,6,7,3,0,13,5,14,7,5,14,14,15,7,13,14,1,8,0,13,10,15,10,13,13,3,9,14,5,3,2,10,13,2,13,5,0,0,14,6,6,2,4,8,8,2,1,8,12,12,8,0,10,2,10,11,6,9,11,2,4,1,0,4,4,11,6,5,13,12,11,0,14,9,5,0,15,1,2,4,3,13,1,15,2,15,5,2,6,7,5,1,4,0,2,11,3,3,13,1,2,2,14,0,15,4,8,14,0,1,15,11,13,2,12,8,4,14,7,14,8,3,6,1,13,1,7,10,4,2,8,3,8,11,13,1,14,9,10,4,2,8,5,4,14,9,13,13,1,14,4,8,12,14,14,6,10,15,10,0,11,12,5,0,13,4,0,12,9,10,8,13,6,4,11,4,0,6,13,14,14,2,4,6,2,15,11,3,6,5,4,9,5,0,1,1,6,5,2,9,6,12,12,13,15,11,10,10,4,10,3,3,11,0,12,10,14,2,7,5,4,3,10,14,9,4,7,10,1,8,7,4,13,8,9,9,10,3,13,7,9,4,14,8,12,8,0,0,1,2,8,11,11,2,0,8,15,2,7,3,11,14,0,15,13,12,14,10,4,1,14,8,2,5,0,15,5,8,4,8,8,14,15,1,6,12,13,11,2,13,14,14,6,15,3,2,4,14,6,14,10,10,14,8,1,15,12,5,3,11,12,12,5,4,14,13,4,15,12,12,1,1,13,15,10,13,6,9,9,3,14,4,7,6,7,11,0,1,8,9,12,1,15,4,9,3,14,10,12,8,13,6,14,5,8,7,11,6,4,14,2,2,10,7,2,5,14,5,7,6,12,6,2,15,12,2,5,7,12,11,9,13,14,1,8,1,9,9,13,11,7,12,10,2,7,8,0,6,11,14,13,5,1,14,4,8,4,3,13,7,9,3,3,12,8,3,4,14,6,14,7,9,2,8,9,9,6,10,8,9,12,15,10,5,7,1,7,3,12,13,8,2,6,11,5,1,1,4,12,10,3,9,2,7,1,1,1,7,10,9,9,13,3,1,2,9,0,13,7,13,15,7,3,4,13,6,3,7,9,1,0,11,7,14,1,1,13,13,5,14,1,13,8,11,4,10,2,6,12,0,8,7,10,1,11,9,2,6,6,8,2,14,3,7,9,4,5,3,10,9,14,13,1,10,15,13,10,0,12,1,7,13,0,14,5,0,0,2,0,11,12,0,13,5,6,5,8,7,1,1,9,6,1,8,3,2,4,0,11,10,9,12,3,2,1,5,4,8,4,12,1,0,3,6,5,14,12,10,2,13,1,12,11,12,14,13,12,14,11,0,5,8,3,15,7,15,1,3,1,10,5,9,12,1,0,4,13,3,11,10,2,15,8,1,15,13,7,6,3,7,3,13,4,10,6,7,13,9,12,7,12,11,11,10,14,12,14,10,3,15,10,9,5,1,6,13,13,9,10,14,13,4,1,11,15,14,12,2,14,6,11,11,14,13,1,3,0,3,2,5,1,4,1,1,3,10,12,0,6,15,9,7,9,12,6,7,13,1,11,13,9,12,9,13,4,1,11,3,1,14,7,5,6,11,12,15,1,10,15,3,2,9,14,9,6,6,2,14,0,6,6,2,6,7,2,15,0,4,4,5,12,0,1,14,6,12,14,6,14,13,4,4,6,11,6,13,13,11,14,14,6,12,10,2,4,0,6,1,5,2,3,2,2,15,14,0,2,9,10,8,6,12,1,10,1,14,10,5,8,8,15,8,13,1,13,15,12,6,13,3,3,7,14,14,11,5,6,4,6,12,0,15,13,10,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"6\"], \"clip_start\": 391.0, \"clip_end\": 394.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,4,2,8,6,8,10,0,11,14,0,2,13,10,6,14,3,7,6,11,3,9,5,2,1,7,11,5,13,8,14,2,6,3,1,2,15,12,15,5,9,3,6,9,2,7,14,12,13,7,14,14,5,4,5,12,1,5,6,1,9,1,1,4,11,7,0,15,14,10,5,3,5,6,5,1,7,14,6,0,6,12,5,9,6,12,13,5,2,0,4,7,1,4,5,3,7,3,13,13,5,13,5,6,15,1,11,3,12,6,10,8,5,5,4,3,11,9,13,13,11,9,6,14,3,11,4,7,1,2,7,14,10,5,3,12,5,8,9,7,3,11,15,10,10,6,5,9,1,4,8,12,9,1,4,7,10,8,5,5,15,10,7,3,4,0,8,9,8,2,4,5,3,10,2,3,6,2,3,12,7,5,11,5,15,1,14,2,7,12,0,2,10,15,0,3,3,0,9,15,10,11,4,10,14,5,0,9,15,13,10,3,1,3,14,5,6,7,3,0,13,5,14,7,5,14,14,15,7,13,14,1,8,0,13,10,15,10,13,13,3,9,14,5,3,2,10,13,2,13,5,0,0,14,6,6,2,4,8,8,2,1,8,12,12,8,0,10,2,10,11,6,9,11,2,4,1,0,4,4,11,6,5,13,12,11,0,14,9,5,0,15,1,2,4,3,13,1,15,2,15,5,2,6,7,5,1,4,0,2,11,3,3,13,1,2,2,14,0,15,4,8,14,0,1,15,11,13,2,12,8,4,14,7,14,8,3,6,1,13,1,7,10,4,2,8,3,8,11,13,1,14,9,10,4,2,8,5,4,14,9,13,13,1,14,4,8,12,14,14,6,10,15,10,0,11,12,5,0,13,4,0,12,9,10,8,13,6,4,11,4,0,6,13,14,14,2,4,6,2,15,11,3,6,5,4,9,5,0,1,1,6,5,2,9,6,12,12,13,15,11,10,10,4,10,3,3,11,0,12,10,14,2,7,5,4,3,10,14,9,4,7,10,1,8,7,4,13,8,9,9,10,3,13,7,9,4,14,8,12,8,0,0,1,2,8,11,11,2,0,8,15,2,7,3,11,14,0,15,13,12,14,10,4,1,14,8,2,5,0,15,5,8,4,8,8,14,15,1,6,12,13,11,2,13,14,14,6,15,3,2,4,14,6,14,10,10,14,8,1,15,12,5,3,11,12,12,5,4,14,13,4,15,12,12,1,1,13,15,10,13,6,9,9,3,14,4,7,6,7,11,0,1,8,9,12,1,15,4,9,3,14,10,12,8,13,6,14,5,8,7,11,6,4,14,2,2,10,7,2,5,14,5,7,6,12,6,2,15,12,2,5,7,12,11,9,13,14,1,8,1,9,9,13,11,7,12,10,2,7,8,0,6,11,14,13,5,1,14,4,8,4,3,13,7,9,3,3,12,8,3,4,14,6,14,7,9,2,8,9,9,6,10,8,9,12,15,10,5,7,1,7,3,12,13,8,2,6,11,5,1,1,4,12,10,3,9,2,7,1,1,1,7,10,9,9,13,3,1,2,9,0,13,7,13,15,7,3,4,13,6,3,7,9,1,0,11,7,14,1,1,13,13,5,14,1,13,8,11,4,10,2,6,12,0,8,7,10,1,11,9,2,6,6,8,2,14,3,7,9,4,5,3,10,9,14,13,1,10,15,13,10,0,12,1,7,13,0,14,5,0,0,2,0,11,12,0,13,5,6,5,8,7,1,1,9,6,1,8,3,2,4,0,11,10,9,12,3,2,1,5,4,8,4,12,1,0,3,6,5,14,12,10,2,13,1,12,11,12,14,13,12,14,11,0,5,8,3,15,7,15,1,3,1,10,5,9,12,1,0,4,13,3,11,10,2,15,8,1,15,13,7,6,3,7,3,13,4,10,6,7,13,9,12,7,12,11,11,10,14,12,14,10,3,15,10,9,5,1,6,13,13,9,10,14,13,4,1,11,15,14,12,2,14,6,11,11,14,13,1,3,0,3,2,5,1,4,1,1,3,10,12,0,6,15,9,7,9,12,6,7,13,1,11,13,9,12,9,13,4,1,11,3,1,14,7,5,6,11,12,15,1,10,15,3,2,9,14,9,6,6,2,14,0,6,6,2,6,7,2,15,0,4,4,5,12,0,1,14,6,12,14,6,14,13,4,4,6,11,6,13,13,11,14,14,6,12,10,2,4,0,6,1,5,2,3,2,2,15,14,0,2,9,10,8,6,12,1,10,1,14,10,5,8,8,15,8,13,1,13,15,12,6,13,3,3,7,14,14,11,5,6,4,6,12,0,15,13,10,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"0\"], \"clip_start\": 599.0, \"clip_end\": 602.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q15_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,4,2,8,6,8,10,0,11,14,0,2,13,10,6,14,3,7,6,11,3,9,5,2,1,7,11,5,13,8,14,2,6,3,1,2,15,12,15,5,9,3,6,9,2,7,14,12,13,7,14,14,5,4,5,12,1,5,6,1,9,1,1,4,11,7,0,15,14,10,5,3,5,6,5,1,7,14,6,0,6,12,5,9,6,12,13,5,2,0,4,7,1,4,5,3,7,3,13,13,5,13,5,6,15,1,11,3,12,6,10,8,5,5,4,3,11,9,13,13,11,9,6,14,3,11,4,7,1,2,7,14,10,5,3,12,5,8,9,7,3,11,15,10,10,6,5,9,1,4,8,12,9,1,4,7,10,8,5,5,15,10,7,3,4,0,8,9,8,2,4,5,3,10,2,3,6,2,3,12,7,5,11,5,15,1,14,2,7,12,0,2,10,15,0,3,3,0,9,15,10,11,4,10,14,5,0,9,15,13,10,3,1,3,14,5,6,7,3,0,13,5,14,7,5,14,14,15,7,13,14,1,8,0,13,10,15,10,13,13,3,9,14,5,3,2,10,13,2,13,5,0,0,14,6,6,2,4,8,8,2,1,8,12,12,8,0,10,2,10,11,6,9,11,2,4,1,0,4,4,11,6,5,13,12,11,0,14,9,5,0,15,1,2,4,3,13,1,15,2,15,5,2,6,7,5,1,4,0,2,11,3,3,13,1,2,2,14,0,15,4,8,14,0,1,15,11,13,2,12,8,4,14,7,14,8,3,6,1,13,1,7,10,4,2,8,3,8,11,13,1,14,9,10,4,2,8,5,4,14,9,13,13,1,14,4,8,12,14,14,6,10,15,10,0,11,12,5,0,13,4,0,12,9,10,8,13,6,4,11,4,0,6,13,14,14,2,4,6,2,15,11,3,6,5,4,9,5,0,1,1,6,5,2,9,6,12,12,13,15,11,10,10,4,10,3,3,11,0,12,10,14,2,7,5,4,3,10,14,9,4,7,10,1,8,7,4,13,8,9,9,10,3,13,7,9,4,14,8,12,8,0,0,1,2,8,11,11,2,0,8,15,2,7,3,11,14,0,15,13,12,14,10,4,1,14,8,2,5,0,15,5,8,4,8,8,14,15,1,6,12,13,11,2,13,14,14,6,15,3,2,4,14,6,14,10,10,14,8,1,15,12,5,3,11,12,12,5,4,14,13,4,15,12,12,1,1,13,15,10,13,6,9,9,3,14,4,7,6,7,11,0,1,8,9,12,1,15,4,9,3,14,10,12,8,13,6,14,5,8,7,11,6,4,14,2,2,10,7,2,5,14,5,7,6,12,6,2,15,12,2,5,7,12,11,9,13,14,1,8,1,9,9,13,11,7,12,10,2,7,8,0,6,11,14,13,5,1,14,4,8,4,3,13,7,9,3,3,12,8,3,4,14,6,14,7,9,2,8,9,9,6,10,8,9,12,15,10,5,7,1,7,3,12,13,8,2,6,11,5,1,1,4,12,10,3,9,2,7,1,1,1,7,10,9,9,13,3,1,2,9,0,13,7,13,15,7,3,4,13,6,3,7,9,1,0,11,7,14,1,1,13,13,5,14,1,13,8,11,4,10,2,6,12,0,8,7,10,1,11,9,2,6,6,8,2,14,3,7,9,4,5,3,10,9,14,13,1,10,15,13,10,0,12,1,7,13,0,14,5,0,0,2,0,11,12,0,13,5,6,5,8,7,1,1,9,6,1,8,3,2,4,0,11,10,9,12,3,2,1,5,4,8,4,12,1,0,3,6,5,14,12,10,2,13,1,12,11,12,14,13,12,14,11,0,5,8,3,15,7,15,1,3,1,10,5,9,12,1,0,4,13,3,11,10,2,15,8,1,15,13,7,6,3,7,3,13,4,10,6,7,13,9,12,7,12,11,11,10,14,12,14,10,3,15,10,9,5,1,6,13,13,9,10,14,13,4,1,11,15,14,12,2,14,6,11,11,14,13,1,3,0,3,2,5,1,4,1,1,3,10,12,0,6,15,9,7,9,12,6,7,13,1,11,13,9,12,9,13,4,1,11,3,1,14,7,5,6,11,12,15,1,10,15,3,2,9,14,9,6,6,2,14,0,6,6,2,6,7,2,15,0,4,4,5,12,0,1,14,6,12,14,6,14,13,4,4,6,11,6,13,13,11,14,14,6,12,10,2,4,0,6,1,5,2,3,2,2,15,14,0,2,9,10,8,6,12,1,10,1,14,10,5,8,8,15,8,13,1,13,15,12,6,13,3,3,7,14,14,11,5,6,4,6,12,0,15,13,10,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 658.0, \"clip_end\": 662.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,6,3,12,9,0,9,7,2,1,13,12,10,0,11,1,6,9,0,10,6,9,4,15,9,8,9,0,1,9,4,6,8,8,1,11,8,15,2,8,15,7,0,8,13,9,10,2,12,6,12,5,9,2,11,13,1,0,2,7,5,14,11,5,5,12,13,12,1,1,3,10,6,10,0,3,2,6,5,6,6,9,9,4,8,11,9,10,6,15,13,6,8,4,8,4,4,1,8,15,0,11,7,13,2,3,13,5,10,3,2,13,6,10,15,15,10,2,8,5,7,3,5,11,8,12,2,9,12,0,8,15,7,4,14,10,10,6,14,6,1,8,13,1,5,7,11,4,13,5,8,8,2,3,11,10,10,11,1,13,0,6,14,15,1,9,9,14,7,3,0,4,6,14,13,8,0,8,9,7,13,3,15,5,6,5,14,8,8,2,0,8,0,6,1,0,4,9,14,0,0,7,3,6,11,14,5,7,2,6,15,10,4,8,11,4,12,11,3,11,1,7,4,11,10,1,15,7,12,3,14,0,6,3,8,14,3,8,6,10,5,12,9,8,0,9,15,13,15,6,0,7,1,1,11,4,8,4,7,2,14,15,6,3,14,10,3,0,15,3,4,2,9,13,1,9,3,5,12,5,11,13,3,13,6,3,15,1,2,7,0,1,13,13,8,4,2,2,14,12,12,8,3,14,2,0,8,14,1,13,11,5,9,15,12,9,13,15,13,15,0,5,0,0,0,0,7,5,13,12,10,15,7,2,7,4,13,11,1,2,0,13,4,1,13,15,5,6,13,1,13,8,0,6,11,3,6,9,2,4,5,5,13,5,8,9,9,10,10,12,2,4,0,5,13,7,8,5,1,10,13,0,13,12,1,11,10,2,9,1,4,7,2,10,5,13,15,11,12,15,1,10,6,11,1,1,4,13,9,5,4,12,0,8,6,1,13,13,2,14,1,11,11,15,13,6,8,8,14,11,9,8,0,7,7,7,8,10,12,14,7,11,8,3,5,0,8,14,13,1,0,14,5,7,6,10,3,2,9,5,2,7,12,0,10,5,12,9,2,13,0,4,1,9,11,7,10,10,12,11,1,7,15,13,13,0,13,12,7,14,15,7,13,6,11,10,4,10,6,0,6,10,9,8,1,1,4,12,2,1,6,10,2,5,7,5,9,5,13,13,10,14,1,8,10,15,6,9,8,13,14,13,7,7,12,1,9,4,7,13,4,4,4,14,7,11,9,10,8,4,4,7,4,10,1,7,7,4,3,6,15,4,12,6,15,3,5,0,7,3,0,8,11,15,3,0,14,13,9,9,0,6,13,9,3,6,0,5,4,1,7,9,5,4,2,9,14,14,1,15,7,9,1,11,15,7,15,4,15,3,14,4,8,14,14,10,8,1,5,1,4,0,11,1,11,5,12,4,3,14,13,9,4,10,0,5,9,1,10,0,11,2,0,15,14,12,8,8,7,2,10,0,15,11,5,10,15,5,13,10,15,14,13,2,5,8,10,14,10,2,8,14,9,0,12,11,15,5,1,6,6,2,9,5,6,14,13,3,11,3,4,0,7,2,1,14,1,11,9,8,9,1,9,2,4,0,11,14,10,14,4,10,9,4,12,0,10,6,1,2,6,0,8,8,0,2,5,13,3,14,8,7,1,13,10,2,14,0,11,6,0,8,4,14,7,11,10,9,14,14,3,12,7,10,4,10,15,15,13,15,9,0,3,2,2,11,9,13,1,7,11,4,1,15,11,11,8,9,1,14,10,15,4,3,7,4,8,3,8,0,14,3,11,0,8,1,3,9,13,1,3,3,15,2,1,15,5,7,5,0,1,12,8,3,0,10,15,4,10,7,1,11,1,8,13,11,2,12,10,12,11,15,4,12,3,13,9,5,11,2,12,5,8,4,9,15,13,1,10,11,9,1,8,2,2,1,12,9,12,13,6,7,3,6,5,13,5,0,11,13,3,8,10,8,5,15,3,2,5,0,3,15,13,0,10,7,13,8,0,0,3,3,10,11,13,7,14,14,1,15,6,2,10,8,4,9,5,4,2,9,9,4,7,14,12,7,7,14,10,10,8,4,12,11,3,10,1,13,14,15,13,0,12,12,14,6,1,8,12,3,11,13,2,6,11,11,5,10,10,5,4,5,15,10,14,9,12,4,2,13,11,7,7,13,5,4,14,11,11,5,6,1,9,13,7,9,9,6,2,6,7,13,10,12,3,1,3,11,3,6,9,0,2,11,9,5,2,13,14,1,13,4,15,0,3,6,0,14,13,5,14,13,2,4,1,4,12,10,7,2,6,7,6,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"14\", \"14\"], \"clip_start\": 611.0, \"clip_end\": 615.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,6,3,12,9,0,9,7,2,1,13,12,10,0,11,1,6,9,0,10,6,9,4,15,9,8,9,0,1,9,4,6,8,8,1,11,8,15,2,8,15,7,0,8,13,9,10,2,12,6,12,5,9,2,11,13,1,0,2,7,5,14,11,5,5,12,13,12,1,1,3,10,6,10,0,3,2,6,5,6,6,9,9,4,8,11,9,10,6,15,13,6,8,4,8,4,4,1,8,15,0,11,7,13,2,3,13,5,10,3,2,13,6,10,15,15,10,2,8,5,7,3,5,11,8,12,2,9,12,0,8,15,7,4,14,10,10,6,14,6,1,8,13,1,5,7,11,4,13,5,8,8,2,3,11,10,10,11,1,13,0,6,14,15,1,9,9,14,7,3,0,4,6,14,13,8,0,8,9,7,13,3,15,5,6,5,14,8,8,2,0,8,0,6,1,0,4,9,14,0,0,7,3,6,11,14,5,7,2,6,15,10,4,8,11,4,12,11,3,11,1,7,4,11,10,1,15,7,12,3,14,0,6,3,8,14,3,8,6,10,5,12,9,8,0,9,15,13,15,6,0,7,1,1,11,4,8,4,7,2,14,15,6,3,14,10,3,0,15,3,4,2,9,13,1,9,3,5,12,5,11,13,3,13,6,3,15,1,2,7,0,1,13,13,8,4,2,2,14,12,12,8,3,14,2,0,8,14,1,13,11,5,9,15,12,9,13,15,13,15,0,5,0,0,0,0,7,5,13,12,10,15,7,2,7,4,13,11,1,2,0,13,4,1,13,15,5,6,13,1,13,8,0,6,11,3,6,9,2,4,5,5,13,5,8,9,9,10,10,12,2,4,0,5,13,7,8,5,1,10,13,0,13,12,1,11,10,2,9,1,4,7,2,10,5,13,15,11,12,15,1,10,6,11,1,1,4,13,9,5,4,12,0,8,6,1,13,13,2,14,1,11,11,15,13,6,8,8,14,11,9,8,0,7,7,7,8,10,12,14,7,11,8,3,5,0,8,14,13,1,0,14,5,7,6,10,3,2,9,5,2,7,12,0,10,5,12,9,2,13,0,4,1,9,11,7,10,10,12,11,1,7,15,13,13,0,13,12,7,14,15,7,13,6,11,10,4,10,6,0,6,10,9,8,1,1,4,12,2,1,6,10,2,5,7,5,9,5,13,13,10,14,1,8,10,15,6,9,8,13,14,13,7,7,12,1,9,4,7,13,4,4,4,14,7,11,9,10,8,4,4,7,4,10,1,7,7,4,3,6,15,4,12,6,15,3,5,0,7,3,0,8,11,15,3,0,14,13,9,9,0,6,13,9,3,6,0,5,4,1,7,9,5,4,2,9,14,14,1,15,7,9,1,11,15,7,15,4,15,3,14,4,8,14,14,10,8,1,5,1,4,0,11,1,11,5,12,4,3,14,13,9,4,10,0,5,9,1,10,0,11,2,0,15,14,12,8,8,7,2,10,0,15,11,5,10,15,5,13,10,15,14,13,2,5,8,10,14,10,2,8,14,9,0,12,11,15,5,1,6,6,2,9,5,6,14,13,3,11,3,4,0,7,2,1,14,1,11,9,8,9,1,9,2,4,0,11,14,10,14,4,10,9,4,12,0,10,6,1,2,6,0,8,8,0,2,5,13,3,14,8,7,1,13,10,2,14,0,11,6,0,8,4,14,7,11,10,9,14,14,3,12,7,10,4,10,15,15,13,15,9,0,3,2,2,11,9,13,1,7,11,4,1,15,11,11,8,9,1,14,10,15,4,3,7,4,8,3,8,0,14,3,11,0,8,1,3,9,13,1,3,3,15,2,1,15,5,7,5,0,1,12,8,3,0,10,15,4,10,7,1,11,1,8,13,11,2,12,10,12,11,15,4,12,3,13,9,5,11,2,12,5,8,4,9,15,13,1,10,11,9,1,8,2,2,1,12,9,12,13,6,7,3,6,5,13,5,0,11,13,3,8,10,8,5,15,3,2,5,0,3,15,13,0,10,7,13,8,0,0,3,3,10,11,13,7,14,14,1,15,6,2,10,8,4,9,5,4,2,9,9,4,7,14,12,7,7,14,10,10,8,4,12,11,3,10,1,13,14,15,13,0,12,12,14,6,1,8,12,3,11,13,2,6,11,11,5,10,10,5,4,5,15,10,14,9,12,4,2,13,11,7,7,13,5,4,14,11,11,5,6,1,9,13,7,9,9,6,2,6,7,13,10,12,3,1,3,11,3,6,9,0,2,11,9,5,2,13,14,1,13,4,15,0,3,6,0,14,13,5,14,13,2,4,1,4,12,10,7,2,6,7,6,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"7\"], \"clip_start\": 389.0, \"clip_end\": 392.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q2_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,6,3,12,9,0,9,7,2,1,13,12,10,0,11,1,6,9,0,10,6,9,4,15,9,8,9,0,1,9,4,6,8,8,1,11,8,15,2,8,15,7,0,8,13,9,10,2,12,6,12,5,9,2,11,13,1,0,2,7,5,14,11,5,5,12,13,12,1,1,3,10,6,10,0,3,2,6,5,6,6,9,9,4,8,11,9,10,6,15,13,6,8,4,8,4,4,1,8,15,0,11,7,13,2,3,13,5,10,3,2,13,6,10,15,15,10,2,8,5,7,3,5,11,8,12,2,9,12,0,8,15,7,4,14,10,10,6,14,6,1,8,13,1,5,7,11,4,13,5,8,8,2,3,11,10,10,11,1,13,0,6,14,15,1,9,9,14,7,3,0,4,6,14,13,8,0,8,9,7,13,3,15,5,6,5,14,8,8,2,0,8,0,6,1,0,4,9,14,0,0,7,3,6,11,14,5,7,2,6,15,10,4,8,11,4,12,11,3,11,1,7,4,11,10,1,15,7,12,3,14,0,6,3,8,14,3,8,6,10,5,12,9,8,0,9,15,13,15,6,0,7,1,1,11,4,8,4,7,2,14,15,6,3,14,10,3,0,15,3,4,2,9,13,1,9,3,5,12,5,11,13,3,13,6,3,15,1,2,7,0,1,13,13,8,4,2,2,14,12,12,8,3,14,2,0,8,14,1,13,11,5,9,15,12,9,13,15,13,15,0,5,0,0,0,0,7,5,13,12,10,15,7,2,7,4,13,11,1,2,0,13,4,1,13,15,5,6,13,1,13,8,0,6,11,3,6,9,2,4,5,5,13,5,8,9,9,10,10,12,2,4,0,5,13,7,8,5,1,10,13,0,13,12,1,11,10,2,9,1,4,7,2,10,5,13,15,11,12,15,1,10,6,11,1,1,4,13,9,5,4,12,0,8,6,1,13,13,2,14,1,11,11,15,13,6,8,8,14,11,9,8,0,7,7,7,8,10,12,14,7,11,8,3,5,0,8,14,13,1,0,14,5,7,6,10,3,2,9,5,2,7,12,0,10,5,12,9,2,13,0,4,1,9,11,7,10,10,12,11,1,7,15,13,13,0,13,12,7,14,15,7,13,6,11,10,4,10,6,0,6,10,9,8,1,1,4,12,2,1,6,10,2,5,7,5,9,5,13,13,10,14,1,8,10,15,6,9,8,13,14,13,7,7,12,1,9,4,7,13,4,4,4,14,7,11,9,10,8,4,4,7,4,10,1,7,7,4,3,6,15,4,12,6,15,3,5,0,7,3,0,8,11,15,3,0,14,13,9,9,0,6,13,9,3,6,0,5,4,1,7,9,5,4,2,9,14,14,1,15,7,9,1,11,15,7,15,4,15,3,14,4,8,14,14,10,8,1,5,1,4,0,11,1,11,5,12,4,3,14,13,9,4,10,0,5,9,1,10,0,11,2,0,15,14,12,8,8,7,2,10,0,15,11,5,10,15,5,13,10,15,14,13,2,5,8,10,14,10,2,8,14,9,0,12,11,15,5,1,6,6,2,9,5,6,14,13,3,11,3,4,0,7,2,1,14,1,11,9,8,9,1,9,2,4,0,11,14,10,14,4,10,9,4,12,0,10,6,1,2,6,0,8,8,0,2,5,13,3,14,8,7,1,13,10,2,14,0,11,6,0,8,4,14,7,11,10,9,14,14,3,12,7,10,4,10,15,15,13,15,9,0,3,2,2,11,9,13,1,7,11,4,1,15,11,11,8,9,1,14,10,15,4,3,7,4,8,3,8,0,14,3,11,0,8,1,3,9,13,1,3,3,15,2,1,15,5,7,5,0,1,12,8,3,0,10,15,4,10,7,1,11,1,8,13,11,2,12,10,12,11,15,4,12,3,13,9,5,11,2,12,5,8,4,9,15,13,1,10,11,9,1,8,2,2,1,12,9,12,13,6,7,3,6,5,13,5,0,11,13,3,8,10,8,5,15,3,2,5,0,3,15,13,0,10,7,13,8,0,0,3,3,10,11,13,7,14,14,1,15,6,2,10,8,4,9,5,4,2,9,9,4,7,14,12,7,7,14,10,10,8,4,12,11,3,10,1,13,14,15,13,0,12,12,14,6,1,8,12,3,11,13,2,6,11,11,5,10,10,5,4,5,15,10,14,9,12,4,2,13,11,7,7,13,5,4,14,11,11,5,6,1,9,13,7,9,9,6,2,6,7,13,10,12,3,1,3,11,3,6,9,0,2,11,9,5,2,13,14,1,13,4,15,0,3,6,0,14,13,5,14,13,2,4,1,4,12,10,7,2,6,7,6,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"5\", \"8\", \"15\"], \"clip_start\": 161.0, \"clip_end\": 166.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q3_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,6,3,12,9,0,9,7,2,1,13,12,10,0,11,1,6,9,0,10,6,9,4,15,9,8,9,0,1,9,4,6,8,8,1,11,8,15,2,8,15,7,0,8,13,9,10,2,12,6,12,5,9,2,11,13,1,0,2,7,5,14,11,5,5,12,13,12,1,1,3,10,6,10,0,3,2,6,5,6,6,9,9,4,8,11,9,10,6,15,13,6,8,4,8,4,4,1,8,15,0,11,7,13,2,3,13,5,10,3,2,13,6,10,15,15,10,2,8,5,7,3,5,11,8,12,2,9,12,0,8,15,7,4,14,10,10,6,14,6,1,8,13,1,5,7,11,4,13,5,8,8,2,3,11,10,10,11,1,13,0,6,14,15,1,9,9,14,7,3,0,4,6,14,13,8,0,8,9,7,13,3,15,5,6,5,14,8,8,2,0,8,0,6,1,0,4,9,14,0,0,7,3,6,11,14,5,7,2,6,15,10,4,8,11,4,12,11,3,11,1,7,4,11,10,1,15,7,12,3,14,0,6,3,8,14,3,8,6,10,5,12,9,8,0,9,15,13,15,6,0,7,1,1,11,4,8,4,7,2,14,15,6,3,14,10,3,0,15,3,4,2,9,13,1,9,3,5,12,5,11,13,3,13,6,3,15,1,2,7,0,1,13,13,8,4,2,2,14,12,12,8,3,14,2,0,8,14,1,13,11,5,9,15,12,9,13,15,13,15,0,5,0,0,0,0,7,5,13,12,10,15,7,2,7,4,13,11,1,2,0,13,4,1,13,15,5,6,13,1,13,8,0,6,11,3,6,9,2,4,5,5,13,5,8,9,9,10,10,12,2,4,0,5,13,7,8,5,1,10,13,0,13,12,1,11,10,2,9,1,4,7,2,10,5,13,15,11,12,15,1,10,6,11,1,1,4,13,9,5,4,12,0,8,6,1,13,13,2,14,1,11,11,15,13,6,8,8,14,11,9,8,0,7,7,7,8,10,12,14,7,11,8,3,5,0,8,14,13,1,0,14,5,7,6,10,3,2,9,5,2,7,12,0,10,5,12,9,2,13,0,4,1,9,11,7,10,10,12,11,1,7,15,13,13,0,13,12,7,14,15,7,13,6,11,10,4,10,6,0,6,10,9,8,1,1,4,12,2,1,6,10,2,5,7,5,9,5,13,13,10,14,1,8,10,15,6,9,8,13,14,13,7,7,12,1,9,4,7,13,4,4,4,14,7,11,9,10,8,4,4,7,4,10,1,7,7,4,3,6,15,4,12,6,15,3,5,0,7,3,0,8,11,15,3,0,14,13,9,9,0,6,13,9,3,6,0,5,4,1,7,9,5,4,2,9,14,14,1,15,7,9,1,11,15,7,15,4,15,3,14,4,8,14,14,10,8,1,5,1,4,0,11,1,11,5,12,4,3,14,13,9,4,10,0,5,9,1,10,0,11,2,0,15,14,12,8,8,7,2,10,0,15,11,5,10,15,5,13,10,15,14,13,2,5,8,10,14,10,2,8,14,9,0,12,11,15,5,1,6,6,2,9,5,6,14,13,3,11,3,4,0,7,2,1,14,1,11,9,8,9,1,9,2,4,0,11,14,10,14,4,10,9,4,12,0,10,6,1,2,6,0,8,8,0,2,5,13,3,14,8,7,1,13,10,2,14,0,11,6,0,8,4,14,7,11,10,9,14,14,3,12,7,10,4,10,15,15,13,15,9,0,3,2,2,11,9,13,1,7,11,4,1,15,11,11,8,9,1,14,10,15,4,3,7,4,8,3,8,0,14,3,11,0,8,1,3,9,13,1,3,3,15,2,1,15,5,7,5,0,1,12,8,3,0,10,15,4,10,7,1,11,1,8,13,11,2,12,10,12,11,15,4,12,3,13,9,5,11,2,12,5,8,4,9,15,13,1,10,11,9,1,8,2,2,1,12,9,12,13,6,7,3,6,5,13,5,0,11,13,3,8,10,8,5,15,3,2,5,0,3,15,13,0,10,7,13,8,0,0,3,3,10,11,13,7,14,14,1,15,6,2,10,8,4,9,5,4,2,9,9,4,7,14,12,7,7,14,10,10,8,4,12,11,3,10,1,13,14,15,13,0,12,12,14,6,1,8,12,3,11,13,2,6,11,11,5,10,10,5,4,5,15,10,14,9,12,4,2,13,11,7,7,13,5,4,14,11,11,5,6,1,9,13,7,9,9,6,2,6,7,13,10,12,3,1,3,11,3,6,9,0,2,11,9,5,2,13,14,1,13,4,15,0,3,6,0,14,13,5,14,13,2,4,1,4,12,10,7,2,6,7,6,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"1\", \"13\", \"14\", \"15\"], \"clip_start\": 924.0, \"clip_end\": 930.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q4_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,6,3,12,9,0,9,7,2,1,13,12,10,0,11,1,6,9,0,10,6,9,4,15,9,8,9,0,1,9,4,6,8,8,1,11,8,15,2,8,15,7,0,8,13,9,10,2,12,6,12,5,9,2,11,13,1,0,2,7,5,14,11,5,5,12,13,12,1,1,3,10,6,10,0,3,2,6,5,6,6,9,9,4,8,11,9,10,6,15,13,6,8,4,8,4,4,1,8,15,0,11,7,13,2,3,13,5,10,3,2,13,6,10,15,15,10,2,8,5,7,3,5,11,8,12,2,9,12,0,8,15,7,4,14,10,10,6,14,6,1,8,13,1,5,7,11,4,13,5,8,8,2,3,11,10,10,11,1,13,0,6,14,15,1,9,9,14,7,3,0,4,6,14,13,8,0,8,9,7,13,3,15,5,6,5,14,8,8,2,0,8,0,6,1,0,4,9,14,0,0,7,3,6,11,14,5,7,2,6,15,10,4,8,11,4,12,11,3,11,1,7,4,11,10,1,15,7,12,3,14,0,6,3,8,14,3,8,6,10,5,12,9,8,0,9,15,13,15,6,0,7,1,1,11,4,8,4,7,2,14,15,6,3,14,10,3,0,15,3,4,2,9,13,1,9,3,5,12,5,11,13,3,13,6,3,15,1,2,7,0,1,13,13,8,4,2,2,14,12,12,8,3,14,2,0,8,14,1,13,11,5,9,15,12,9,13,15,13,15,0,5,0,0,0,0,7,5,13,12,10,15,7,2,7,4,13,11,1,2,0,13,4,1,13,15,5,6,13,1,13,8,0,6,11,3,6,9,2,4,5,5,13,5,8,9,9,10,10,12,2,4,0,5,13,7,8,5,1,10,13,0,13,12,1,11,10,2,9,1,4,7,2,10,5,13,15,11,12,15,1,10,6,11,1,1,4,13,9,5,4,12,0,8,6,1,13,13,2,14,1,11,11,15,13,6,8,8,14,11,9,8,0,7,7,7,8,10,12,14,7,11,8,3,5,0,8,14,13,1,0,14,5,7,6,10,3,2,9,5,2,7,12,0,10,5,12,9,2,13,0,4,1,9,11,7,10,10,12,11,1,7,15,13,13,0,13,12,7,14,15,7,13,6,11,10,4,10,6,0,6,10,9,8,1,1,4,12,2,1,6,10,2,5,7,5,9,5,13,13,10,14,1,8,10,15,6,9,8,13,14,13,7,7,12,1,9,4,7,13,4,4,4,14,7,11,9,10,8,4,4,7,4,10,1,7,7,4,3,6,15,4,12,6,15,3,5,0,7,3,0,8,11,15,3,0,14,13,9,9,0,6,13,9,3,6,0,5,4,1,7,9,5,4,2,9,14,14,1,15,7,9,1,11,15,7,15,4,15,3,14,4,8,14,14,10,8,1,5,1,4,0,11,1,11,5,12,4,3,14,13,9,4,10,0,5,9,1,10,0,11,2,0,15,14,12,8,8,7,2,10,0,15,11,5,10,15,5,13,10,15,14,13,2,5,8,10,14,10,2,8,14,9,0,12,11,15,5,1,6,6,2,9,5,6,14,13,3,11,3,4,0,7,2,1,14,1,11,9,8,9,1,9,2,4,0,11,14,10,14,4,10,9,4,12,0,10,6,1,2,6,0,8,8,0,2,5,13,3,14,8,7,1,13,10,2,14,0,11,6,0,8,4,14,7,11,10,9,14,14,3,12,7,10,4,10,15,15,13,15,9,0,3,2,2,11,9,13,1,7,11,4,1,15,11,11,8,9,1,14,10,15,4,3,7,4,8,3,8,0,14,3,11,0,8,1,3,9,13,1,3,3,15,2,1,15,5,7,5,0,1,12,8,3,0,10,15,4,10,7,1,11,1,8,13,11,2,12,10,12,11,15,4,12,3,13,9,5,11,2,12,5,8,4,9,15,13,1,10,11,9,1,8,2,2,1,12,9,12,13,6,7,3,6,5,13,5,0,11,13,3,8,10,8,5,15,3,2,5,0,3,15,13,0,10,7,13,8,0,0,3,3,10,11,13,7,14,14,1,15,6,2,10,8,4,9,5,4,2,9,9,4,7,14,12,7,7,14,10,10,8,4,12,11,3,10,1,13,14,15,13,0,12,12,14,6,1,8,12,3,11,13,2,6,11,11,5,10,10,5,4,5,15,10,14,9,12,4,2,13,11,7,7,13,5,4,14,11,11,5,6,1,9,13,7,9,9,6,2,6,7,13,10,12,3,1,3,11,3,6,9,0,2,11,9,5,2,13,14,1,13,4,15,0,3,6,0,14,13,5,14,13,2,4,1,4,12,10,7,2,6,7,6,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"8\", \"14\"], \"clip_start\": 668.0, \"clip_end\": 672.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,6,3,12,9,0,9,7,2,1,13,12,10,0,11,1,6,9,0,10,6,9,4,15,9,8,9,0,1,9,4,6,8,8,1,11,8,15,2,8,15,7,0,8,13,9,10,2,12,6,12,5,9,2,11,13,1,0,2,7,5,14,11,5,5,12,13,12,1,1,3,10,6,10,0,3,2,6,5,6,6,9,9,4,8,11,9,10,6,15,13,6,8,4,8,4,4,1,8,15,0,11,7,13,2,3,13,5,10,3,2,13,6,10,15,15,10,2,8,5,7,3,5,11,8,12,2,9,12,0,8,15,7,4,14,10,10,6,14,6,1,8,13,1,5,7,11,4,13,5,8,8,2,3,11,10,10,11,1,13,0,6,14,15,1,9,9,14,7,3,0,4,6,14,13,8,0,8,9,7,13,3,15,5,6,5,14,8,8,2,0,8,0,6,1,0,4,9,14,0,0,7,3,6,11,14,5,7,2,6,15,10,4,8,11,4,12,11,3,11,1,7,4,11,10,1,15,7,12,3,14,0,6,3,8,14,3,8,6,10,5,12,9,8,0,9,15,13,15,6,0,7,1,1,11,4,8,4,7,2,14,15,6,3,14,10,3,0,15,3,4,2,9,13,1,9,3,5,12,5,11,13,3,13,6,3,15,1,2,7,0,1,13,13,8,4,2,2,14,12,12,8,3,14,2,0,8,14,1,13,11,5,9,15,12,9,13,15,13,15,0,5,0,0,0,0,7,5,13,12,10,15,7,2,7,4,13,11,1,2,0,13,4,1,13,15,5,6,13,1,13,8,0,6,11,3,6,9,2,4,5,5,13,5,8,9,9,10,10,12,2,4,0,5,13,7,8,5,1,10,13,0,13,12,1,11,10,2,9,1,4,7,2,10,5,13,15,11,12,15,1,10,6,11,1,1,4,13,9,5,4,12,0,8,6,1,13,13,2,14,1,11,11,15,13,6,8,8,14,11,9,8,0,7,7,7,8,10,12,14,7,11,8,3,5,0,8,14,13,1,0,14,5,7,6,10,3,2,9,5,2,7,12,0,10,5,12,9,2,13,0,4,1,9,11,7,10,10,12,11,1,7,15,13,13,0,13,12,7,14,15,7,13,6,11,10,4,10,6,0,6,10,9,8,1,1,4,12,2,1,6,10,2,5,7,5,9,5,13,13,10,14,1,8,10,15,6,9,8,13,14,13,7,7,12,1,9,4,7,13,4,4,4,14,7,11,9,10,8,4,4,7,4,10,1,7,7,4,3,6,15,4,12,6,15,3,5,0,7,3,0,8,11,15,3,0,14,13,9,9,0,6,13,9,3,6,0,5,4,1,7,9,5,4,2,9,14,14,1,15,7,9,1,11,15,7,15,4,15,3,14,4,8,14,14,10,8,1,5,1,4,0,11,1,11,5,12,4,3,14,13,9,4,10,0,5,9,1,10,0,11,2,0,15,14,12,8,8,7,2,10,0,15,11,5,10,15,5,13,10,15,14,13,2,5,8,10,14,10,2,8,14,9,0,12,11,15,5,1,6,6,2,9,5,6,14,13,3,11,3,4,0,7,2,1,14,1,11,9,8,9,1,9,2,4,0,11,14,10,14,4,10,9,4,12,0,10,6,1,2,6,0,8,8,0,2,5,13,3,14,8,7,1,13,10,2,14,0,11,6,0,8,4,14,7,11,10,9,14,14,3,12,7,10,4,10,15,15,13,15,9,0,3,2,2,11,9,13,1,7,11,4,1,15,11,11,8,9,1,14,10,15,4,3,7,4,8,3,8,0,14,3,11,0,8,1,3,9,13,1,3,3,15,2,1,15,5,7,5,0,1,12,8,3,0,10,15,4,10,7,1,11,1,8,13,11,2,12,10,12,11,15,4,12,3,13,9,5,11,2,12,5,8,4,9,15,13,1,10,11,9,1,8,2,2,1,12,9,12,13,6,7,3,6,5,13,5,0,11,13,3,8,10,8,5,15,3,2,5,0,3,15,13,0,10,7,13,8,0,0,3,3,10,11,13,7,14,14,1,15,6,2,10,8,4,9,5,4,2,9,9,4,7,14,12,7,7,14,10,10,8,4,12,11,3,10,1,13,14,15,13,0,12,12,14,6,1,8,12,3,11,13,2,6,11,11,5,10,10,5,4,5,15,10,14,9,12,4,2,13,11,7,7,13,5,4,14,11,11,5,6,1,9,13,7,9,9,6,2,6,7,13,10,12,3,1,3,11,3,6,9,0,2,11,9,5,2,13,14,1,13,4,15,0,3,6,0,14,13,5,14,13,2,4,1,4,12,10,7,2,6,7,6,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"2\", \"4\", \"0\", \"11\", \"14\"], \"clip_start\": 702.0, \"clip_end\": 708.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q6_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,6,3,12,9,0,9,7,2,1,13,12,10,0,11,1,6,9,0,10,6,9,4,15,9,8,9,0,1,9,4,6,8,8,1,11,8,15,2,8,15,7,0,8,13,9,10,2,12,6,12,5,9,2,11,13,1,0,2,7,5,14,11,5,5,12,13,12,1,1,3,10,6,10,0,3,2,6,5,6,6,9,9,4,8,11,9,10,6,15,13,6,8,4,8,4,4,1,8,15,0,11,7,13,2,3,13,5,10,3,2,13,6,10,15,15,10,2,8,5,7,3,5,11,8,12,2,9,12,0,8,15,7,4,14,10,10,6,14,6,1,8,13,1,5,7,11,4,13,5,8,8,2,3,11,10,10,11,1,13,0,6,14,15,1,9,9,14,7,3,0,4,6,14,13,8,0,8,9,7,13,3,15,5,6,5,14,8,8,2,0,8,0,6,1,0,4,9,14,0,0,7,3,6,11,14,5,7,2,6,15,10,4,8,11,4,12,11,3,11,1,7,4,11,10,1,15,7,12,3,14,0,6,3,8,14,3,8,6,10,5,12,9,8,0,9,15,13,15,6,0,7,1,1,11,4,8,4,7,2,14,15,6,3,14,10,3,0,15,3,4,2,9,13,1,9,3,5,12,5,11,13,3,13,6,3,15,1,2,7,0,1,13,13,8,4,2,2,14,12,12,8,3,14,2,0,8,14,1,13,11,5,9,15,12,9,13,15,13,15,0,5,0,0,0,0,7,5,13,12,10,15,7,2,7,4,13,11,1,2,0,13,4,1,13,15,5,6,13,1,13,8,0,6,11,3,6,9,2,4,5,5,13,5,8,9,9,10,10,12,2,4,0,5,13,7,8,5,1,10,13,0,13,12,1,11,10,2,9,1,4,7,2,10,5,13,15,11,12,15,1,10,6,11,1,1,4,13,9,5,4,12,0,8,6,1,13,13,2,14,1,11,11,15,13,6,8,8,14,11,9,8,0,7,7,7,8,10,12,14,7,11,8,3,5,0,8,14,13,1,0,14,5,7,6,10,3,2,9,5,2,7,12,0,10,5,12,9,2,13,0,4,1,9,11,7,10,10,12,11,1,7,15,13,13,0,13,12,7,14,15,7,13,6,11,10,4,10,6,0,6,10,9,8,1,1,4,12,2,1,6,10,2,5,7,5,9,5,13,13,10,14,1,8,10,15,6,9,8,13,14,13,7,7,12,1,9,4,7,13,4,4,4,14,7,11,9,10,8,4,4,7,4,10,1,7,7,4,3,6,15,4,12,6,15,3,5,0,7,3,0,8,11,15,3,0,14,13,9,9,0,6,13,9,3,6,0,5,4,1,7,9,5,4,2,9,14,14,1,15,7,9,1,11,15,7,15,4,15,3,14,4,8,14,14,10,8,1,5,1,4,0,11,1,11,5,12,4,3,14,13,9,4,10,0,5,9,1,10,0,11,2,0,15,14,12,8,8,7,2,10,0,15,11,5,10,15,5,13,10,15,14,13,2,5,8,10,14,10,2,8,14,9,0,12,11,15,5,1,6,6,2,9,5,6,14,13,3,11,3,4,0,7,2,1,14,1,11,9,8,9,1,9,2,4,0,11,14,10,14,4,10,9,4,12,0,10,6,1,2,6,0,8,8,0,2,5,13,3,14,8,7,1,13,10,2,14,0,11,6,0,8,4,14,7,11,10,9,14,14,3,12,7,10,4,10,15,15,13,15,9,0,3,2,2,11,9,13,1,7,11,4,1,15,11,11,8,9,1,14,10,15,4,3,7,4,8,3,8,0,14,3,11,0,8,1,3,9,13,1,3,3,15,2,1,15,5,7,5,0,1,12,8,3,0,10,15,4,10,7,1,11,1,8,13,11,2,12,10,12,11,15,4,12,3,13,9,5,11,2,12,5,8,4,9,15,13,1,10,11,9,1,8,2,2,1,12,9,12,13,6,7,3,6,5,13,5,0,11,13,3,8,10,8,5,15,3,2,5,0,3,15,13,0,10,7,13,8,0,0,3,3,10,11,13,7,14,14,1,15,6,2,10,8,4,9,5,4,2,9,9,4,7,14,12,7,7,14,10,10,8,4,12,11,3,10,1,13,14,15,13,0,12,12,14,6,1,8,12,3,11,13,2,6,11,11,5,10,10,5,4,5,15,10,14,9,12,4,2,13,11,7,7,13,5,4,14,11,11,5,6,1,9,13,7,9,9,6,2,6,7,13,10,12,3,1,3,11,3,6,9,0,2,11,9,5,2,13,14,1,13,4,15,0,3,6,0,14,13,5,14,13,2,4,1,4,12,10,7,2,6,7,6,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"1\", \"15\", \"7\", \"9\"], \"clip_start\": 596.0, \"clip_end\": 602.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q7_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,6,3,12,9,0,9,7,2,1,13,12,10,0,11,1,6,9,0,10,6,9,4,15,9,8,9,0,1,9,4,6,8,8,1,11,8,15,2,8,15,7,0,8,13,9,10,2,12,6,12,5,9,2,11,13,1,0,2,7,5,14,11,5,5,12,13,12,1,1,3,10,6,10,0,3,2,6,5,6,6,9,9,4,8,11,9,10,6,15,13,6,8,4,8,4,4,1,8,15,0,11,7,13,2,3,13,5,10,3,2,13,6,10,15,15,10,2,8,5,7,3,5,11,8,12,2,9,12,0,8,15,7,4,14,10,10,6,14,6,1,8,13,1,5,7,11,4,13,5,8,8,2,3,11,10,10,11,1,13,0,6,14,15,1,9,9,14,7,3,0,4,6,14,13,8,0,8,9,7,13,3,15,5,6,5,14,8,8,2,0,8,0,6,1,0,4,9,14,0,0,7,3,6,11,14,5,7,2,6,15,10,4,8,11,4,12,11,3,11,1,7,4,11,10,1,15,7,12,3,14,0,6,3,8,14,3,8,6,10,5,12,9,8,0,9,15,13,15,6,0,7,1,1,11,4,8,4,7,2,14,15,6,3,14,10,3,0,15,3,4,2,9,13,1,9,3,5,12,5,11,13,3,13,6,3,15,1,2,7,0,1,13,13,8,4,2,2,14,12,12,8,3,14,2,0,8,14,1,13,11,5,9,15,12,9,13,15,13,15,0,5,0,0,0,0,7,5,13,12,10,15,7,2,7,4,13,11,1,2,0,13,4,1,13,15,5,6,13,1,13,8,0,6,11,3,6,9,2,4,5,5,13,5,8,9,9,10,10,12,2,4,0,5,13,7,8,5,1,10,13,0,13,12,1,11,10,2,9,1,4,7,2,10,5,13,15,11,12,15,1,10,6,11,1,1,4,13,9,5,4,12,0,8,6,1,13,13,2,14,1,11,11,15,13,6,8,8,14,11,9,8,0,7,7,7,8,10,12,14,7,11,8,3,5,0,8,14,13,1,0,14,5,7,6,10,3,2,9,5,2,7,12,0,10,5,12,9,2,13,0,4,1,9,11,7,10,10,12,11,1,7,15,13,13,0,13,12,7,14,15,7,13,6,11,10,4,10,6,0,6,10,9,8,1,1,4,12,2,1,6,10,2,5,7,5,9,5,13,13,10,14,1,8,10,15,6,9,8,13,14,13,7,7,12,1,9,4,7,13,4,4,4,14,7,11,9,10,8,4,4,7,4,10,1,7,7,4,3,6,15,4,12,6,15,3,5,0,7,3,0,8,11,15,3,0,14,13,9,9,0,6,13,9,3,6,0,5,4,1,7,9,5,4,2,9,14,14,1,15,7,9,1,11,15,7,15,4,15,3,14,4,8,14,14,10,8,1,5,1,4,0,11,1,11,5,12,4,3,14,13,9,4,10,0,5,9,1,10,0,11,2,0,15,14,12,8,8,7,2,10,0,15,11,5,10,15,5,13,10,15,14,13,2,5,8,10,14,10,2,8,14,9,0,12,11,15,5,1,6,6,2,9,5,6,14,13,3,11,3,4,0,7,2,1,14,1,11,9,8,9,1,9,2,4,0,11,14,10,14,4,10,9,4,12,0,10,6,1,2,6,0,8,8,0,2,5,13,3,14,8,7,1,13,10,2,14,0,11,6,0,8,4,14,7,11,10,9,14,14,3,12,7,10,4,10,15,15,13,15,9,0,3,2,2,11,9,13,1,7,11,4,1,15,11,11,8,9,1,14,10,15,4,3,7,4,8,3,8,0,14,3,11,0,8,1,3,9,13,1,3,3,15,2,1,15,5,7,5,0,1,12,8,3,0,10,15,4,10,7,1,11,1,8,13,11,2,12,10,12,11,15,4,12,3,13,9,5,11,2,12,5,8,4,9,15,13,1,10,11,9,1,8,2,2,1,12,9,12,13,6,7,3,6,5,13,5,0,11,13,3,8,10,8,5,15,3,2,5,0,3,15,13,0,10,7,13,8,0,0,3,3,10,11,13,7,14,14,1,15,6,2,10,8,4,9,5,4,2,9,9,4,7,14,12,7,7,14,10,10,8,4,12,11,3,10,1,13,14,15,13,0,12,12,14,6,1,8,12,3,11,13,2,6,11,11,5,10,10,5,4,5,15,10,14,9,12,4,2,13,11,7,7,13,5,4,14,11,11,5,6,1,9,13,7,9,9,6,2,6,7,13,10,12,3,1,3,11,3,6,9,0,2,11,9,5,2,13,14,1,13,4,15,0,3,6,0,14,13,5,14,13,2,4,1,4,12,10,7,2,6,7,6,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"11\", \"7\", \"7\"], \"clip_start\": 958.0, \"clip_end\": 963.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,6,3,12,9,0,9,7,2,1,13,12,10,0,11,1,6,9,0,10,6,9,4,15,9,8,9,0,1,9,4,6,8,8,1,11,8,15,2,8,15,7,0,8,13,9,10,2,12,6,12,5,9,2,11,13,1,0,2,7,5,14,11,5,5,12,13,12,1,1,3,10,6,10,0,3,2,6,5,6,6,9,9,4,8,11,9,10,6,15,13,6,8,4,8,4,4,1,8,15,0,11,7,13,2,3,13,5,10,3,2,13,6,10,15,15,10,2,8,5,7,3,5,11,8,12,2,9,12,0,8,15,7,4,14,10,10,6,14,6,1,8,13,1,5,7,11,4,13,5,8,8,2,3,11,10,10,11,1,13,0,6,14,15,1,9,9,14,7,3,0,4,6,14,13,8,0,8,9,7,13,3,15,5,6,5,14,8,8,2,0,8,0,6,1,0,4,9,14,0,0,7,3,6,11,14,5,7,2,6,15,10,4,8,11,4,12,11,3,11,1,7,4,11,10,1,15,7,12,3,14,0,6,3,8,14,3,8,6,10,5,12,9,8,0,9,15,13,15,6,0,7,1,1,11,4,8,4,7,2,14,15,6,3,14,10,3,0,15,3,4,2,9,13,1,9,3,5,12,5,11,13,3,13,6,3,15,1,2,7,0,1,13,13,8,4,2,2,14,12,12,8,3,14,2,0,8,14,1,13,11,5,9,15,12,9,13,15,13,15,0,5,0,0,0,0,7,5,13,12,10,15,7,2,7,4,13,11,1,2,0,13,4,1,13,15,5,6,13,1,13,8,0,6,11,3,6,9,2,4,5,5,13,5,8,9,9,10,10,12,2,4,0,5,13,7,8,5,1,10,13,0,13,12,1,11,10,2,9,1,4,7,2,10,5,13,15,11,12,15,1,10,6,11,1,1,4,13,9,5,4,12,0,8,6,1,13,13,2,14,1,11,11,15,13,6,8,8,14,11,9,8,0,7,7,7,8,10,12,14,7,11,8,3,5,0,8,14,13,1,0,14,5,7,6,10,3,2,9,5,2,7,12,0,10,5,12,9,2,13,0,4,1,9,11,7,10,10,12,11,1,7,15,13,13,0,13,12,7,14,15,7,13,6,11,10,4,10,6,0,6,10,9,8,1,1,4,12,2,1,6,10,2,5,7,5,9,5,13,13,10,14,1,8,10,15,6,9,8,13,14,13,7,7,12,1,9,4,7,13,4,4,4,14,7,11,9,10,8,4,4,7,4,10,1,7,7,4,3,6,15,4,12,6,15,3,5,0,7,3,0,8,11,15,3,0,14,13,9,9,0,6,13,9,3,6,0,5,4,1,7,9,5,4,2,9,14,14,1,15,7,9,1,11,15,7,15,4,15,3,14,4,8,14,14,10,8,1,5,1,4,0,11,1,11,5,12,4,3,14,13,9,4,10,0,5,9,1,10,0,11,2,0,15,14,12,8,8,7,2,10,0,15,11,5,10,15,5,13,10,15,14,13,2,5,8,10,14,10,2,8,14,9,0,12,11,15,5,1,6,6,2,9,5,6,14,13,3,11,3,4,0,7,2,1,14,1,11,9,8,9,1,9,2,4,0,11,14,10,14,4,10,9,4,12,0,10,6,1,2,6,0,8,8,0,2,5,13,3,14,8,7,1,13,10,2,14,0,11,6,0,8,4,14,7,11,10,9,14,14,3,12,7,10,4,10,15,15,13,15,9,0,3,2,2,11,9,13,1,7,11,4,1,15,11,11,8,9,1,14,10,15,4,3,7,4,8,3,8,0,14,3,11,0,8,1,3,9,13,1,3,3,15,2,1,15,5,7,5,0,1,12,8,3,0,10,15,4,10,7,1,11,1,8,13,11,2,12,10,12,11,15,4,12,3,13,9,5,11,2,12,5,8,4,9,15,13,1,10,11,9,1,8,2,2,1,12,9,12,13,6,7,3,6,5,13,5,0,11,13,3,8,10,8,5,15,3,2,5,0,3,15,13,0,10,7,13,8,0,0,3,3,10,11,13,7,14,14,1,15,6,2,10,8,4,9,5,4,2,9,9,4,7,14,12,7,7,14,10,10,8,4,12,11,3,10,1,13,14,15,13,0,12,12,14,6,1,8,12,3,11,13,2,6,11,11,5,10,10,5,4,5,15,10,14,9,12,4,2,13,11,7,7,13,5,4,14,11,11,5,6,1,9,13,7,9,9,6,2,6,7,13,10,12,3,1,3,11,3,6,9,0,2,11,9,5,2,13,14,1,13,4,15,0,3,6,0,14,13,5,14,13,2,4,1,4,12,10,7,2,6,7,6,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"3\", \"0\", \"4\"], \"clip_start\": 122.0, \"clip_end\": 127.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q9_false_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,6,3,12,9,0,9,7,2,1,13,12,10,0,11,1,6,9,0,10,6,9,4,15,9,8,9,0,1,9,4,6,8,8,1,11,8,15,2,8,15,7,0,8,13,9,10,2,12,6,12,5,9,2,11,13,1,0,2,7,5,14,11,5,5,12,13,12,1,1,3,10,6,10,0,3,2,6,5,6,6,9,9,4,8,11,9,10,6,15,13,6,8,4,8,4,4,1,8,15,0,11,7,13,2,3,13,5,10,3,2,13,6,10,15,15,10,2,8,5,7,3,5,11,8,12,2,9,12,0,8,15,7,4,14,10,10,6,14,6,1,8,13,1,5,7,11,4,13,5,8,8,2,3,11,10,10,11,1,13,0,6,14,15,1,9,9,14,7,3,0,4,6,14,13,8,0,8,9,7,13,3,15,5,6,5,14,8,8,2,0,8,0,6,1,0,4,9,14,0,0,7,3,6,11,14,5,7,2,6,15,10,4,8,11,4,12,11,3,11,1,7,4,11,10,1,15,7,12,3,14,0,6,3,8,14,3,8,6,10,5,12,9,8,0,9,15,13,15,6,0,7,1,1,11,4,8,4,7,2,14,15,6,3,14,10,3,0,15,3,4,2,9,13,1,9,3,5,12,5,11,13,3,13,6,3,15,1,2,7,0,1,13,13,8,4,2,2,14,12,12,8,3,14,2,0,8,14,1,13,11,5,9,15,12,9,13,15,13,15,0,5,0,0,0,0,7,5,13,12,10,15,7,2,7,4,13,11,1,2,0,13,4,1,13,15,5,6,13,1,13,8,0,6,11,3,6,9,2,4,5,5,13,5,8,9,9,10,10,12,2,4,0,5,13,7,8,5,1,10,13,0,13,12,1,11,10,2,9,1,4,7,2,10,5,13,15,11,12,15,1,10,6,11,1,1,4,13,9,5,4,12,0,8,6,1,13,13,2,14,1,11,11,15,13,6,8,8,14,11,9,8,0,7,7,7,8,10,12,14,7,11,8,3,5,0,8,14,13,1,0,14,5,7,6,10,3,2,9,5,2,7,12,0,10,5,12,9,2,13,0,4,1,9,11,7,10,10,12,11,1,7,15,13,13,0,13,12,7,14,15,7,13,6,11,10,4,10,6,0,6,10,9,8,1,1,4,12,2,1,6,10,2,5,7,5,9,5,13,13,10,14,1,8,10,15,6,9,8,13,14,13,7,7,12,1,9,4,7,13,4,4,4,14,7,11,9,10,8,4,4,7,4,10,1,7,7,4,3,6,15,4,12,6,15,3,5,0,7,3,0,8,11,15,3,0,14,13,9,9,0,6,13,9,3,6,0,5,4,1,7,9,5,4,2,9,14,14,1,15,7,9,1,11,15,7,15,4,15,3,14,4,8,14,14,10,8,1,5,1,4,0,11,1,11,5,12,4,3,14,13,9,4,10,0,5,9,1,10,0,11,2,0,15,14,12,8,8,7,2,10,0,15,11,5,10,15,5,13,10,15,14,13,2,5,8,10,14,10,2,8,14,9,0,12,11,15,5,1,6,6,2,9,5,6,14,13,3,11,3,4,0,7,2,1,14,1,11,9,8,9,1,9,2,4,0,11,14,10,14,4,10,9,4,12,0,10,6,1,2,6,0,8,8,0,2,5,13,3,14,8,7,1,13,10,2,14,0,11,6,0,8,4,14,7,11,10,9,14,14,3,12,7,10,4,10,15,15,13,15,9,0,3,2,2,11,9,13,1,7,11,4,1,15,11,11,8,9,1,14,10,15,4,3,7,4,8,3,8,0,14,3,11,0,8,1,3,9,13,1,3,3,15,2,1,15,5,7,5,0,1,12,8,3,0,10,15,4,10,7,1,11,1,8,13,11,2,12,10,12,11,15,4,12,3,13,9,5,11,2,12,5,8,4,9,15,13,1,10,11,9,1,8,2,2,1,12,9,12,13,6,7,3,6,5,13,5,0,11,13,3,8,10,8,5,15,3,2,5,0,3,15,13,0,10,7,13,8,0,0,3,3,10,11,13,7,14,14,1,15,6,2,10,8,4,9,5,4,2,9,9,4,7,14,12,7,7,14,10,10,8,4,12,11,3,10,1,13,14,15,13,0,12,12,14,6,1,8,12,3,11,13,2,6,11,11,5,10,10,5,4,5,15,10,14,9,12,4,2,13,11,7,7,13,5,4,14,11,11,5,6,1,9,13,7,9,9,6,2,6,7,13,10,12,3,1,3,11,3,6,9,0,2,11,9,5,2,13,14,1,13,4,15,0,3,6,0,14,13,5,14,13,2,4,1,4,12,10,7,2,6,7,6,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"5\", \"4\", \"1\", \"7\", \"9\"], \"clip_start\": 586.0, \"clip_end\": 592.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q10_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,6,3,12,9,0,9,7,2,1,13,12,10,0,11,1,6,9,0,10,6,9,4,15,9,8,9,0,1,9,4,6,8,8,1,11,8,15,2,8,15,7,0,8,13,9,10,2,12,6,12,5,9,2,11,13,1,0,2,7,5,14,11,5,5,12,13,12,1,1,3,10,6,10,0,3,2,6,5,6,6,9,9,4,8,11,9,10,6,15,13,6,8,4,8,4,4,1,8,15,0,11,7,13,2,3,13,5,10,3,2,13,6,10,15,15,10,2,8,5,7,3,5,11,8,12,2,9,12,0,8,15,7,4,14,10,10,6,14,6,1,8,13,1,5,7,11,4,13,5,8,8,2,3,11,10,10,11,1,13,0,6,14,15,1,9,9,14,7,3,0,4,6,14,13,8,0,8,9,7,13,3,15,5,6,5,14,8,8,2,0,8,0,6,1,0,4,9,14,0,0,7,3,6,11,14,5,7,2,6,15,10,4,8,11,4,12,11,3,11,1,7,4,11,10,1,15,7,12,3,14,0,6,3,8,14,3,8,6,10,5,12,9,8,0,9,15,13,15,6,0,7,1,1,11,4,8,4,7,2,14,15,6,3,14,10,3,0,15,3,4,2,9,13,1,9,3,5,12,5,11,13,3,13,6,3,15,1,2,7,0,1,13,13,8,4,2,2,14,12,12,8,3,14,2,0,8,14,1,13,11,5,9,15,12,9,13,15,13,15,0,5,0,0,0,0,7,5,13,12,10,15,7,2,7,4,13,11,1,2,0,13,4,1,13,15,5,6,13,1,13,8,0,6,11,3,6,9,2,4,5,5,13,5,8,9,9,10,10,12,2,4,0,5,13,7,8,5,1,10,13,0,13,12,1,11,10,2,9,1,4,7,2,10,5,13,15,11,12,15,1,10,6,11,1,1,4,13,9,5,4,12,0,8,6,1,13,13,2,14,1,11,11,15,13,6,8,8,14,11,9,8,0,7,7,7,8,10,12,14,7,11,8,3,5,0,8,14,13,1,0,14,5,7,6,10,3,2,9,5,2,7,12,0,10,5,12,9,2,13,0,4,1,9,11,7,10,10,12,11,1,7,15,13,13,0,13,12,7,14,15,7,13,6,11,10,4,10,6,0,6,10,9,8,1,1,4,12,2,1,6,10,2,5,7,5,9,5,13,13,10,14,1,8,10,15,6,9,8,13,14,13,7,7,12,1,9,4,7,13,4,4,4,14,7,11,9,10,8,4,4,7,4,10,1,7,7,4,3,6,15,4,12,6,15,3,5,0,7,3,0,8,11,15,3,0,14,13,9,9,0,6,13,9,3,6,0,5,4,1,7,9,5,4,2,9,14,14,1,15,7,9,1,11,15,7,15,4,15,3,14,4,8,14,14,10,8,1,5,1,4,0,11,1,11,5,12,4,3,14,13,9,4,10,0,5,9,1,10,0,11,2,0,15,14,12,8,8,7,2,10,0,15,11,5,10,15,5,13,10,15,14,13,2,5,8,10,14,10,2,8,14,9,0,12,11,15,5,1,6,6,2,9,5,6,14,13,3,11,3,4,0,7,2,1,14,1,11,9,8,9,1,9,2,4,0,11,14,10,14,4,10,9,4,12,0,10,6,1,2,6,0,8,8,0,2,5,13,3,14,8,7,1,13,10,2,14,0,11,6,0,8,4,14,7,11,10,9,14,14,3,12,7,10,4,10,15,15,13,15,9,0,3,2,2,11,9,13,1,7,11,4,1,15,11,11,8,9,1,14,10,15,4,3,7,4,8,3,8,0,14,3,11,0,8,1,3,9,13,1,3,3,15,2,1,15,5,7,5,0,1,12,8,3,0,10,15,4,10,7,1,11,1,8,13,11,2,12,10,12,11,15,4,12,3,13,9,5,11,2,12,5,8,4,9,15,13,1,10,11,9,1,8,2,2,1,12,9,12,13,6,7,3,6,5,13,5,0,11,13,3,8,10,8,5,15,3,2,5,0,3,15,13,0,10,7,13,8,0,0,3,3,10,11,13,7,14,14,1,15,6,2,10,8,4,9,5,4,2,9,9,4,7,14,12,7,7,14,10,10,8,4,12,11,3,10,1,13,14,15,13,0,12,12,14,6,1,8,12,3,11,13,2,6,11,11,5,10,10,5,4,5,15,10,14,9,12,4,2,13,11,7,7,13,5,4,14,11,11,5,6,1,9,13,7,9,9,6,2,6,7,13,10,12,3,1,3,11,3,6,9,0,2,11,9,5,2,13,14,1,13,4,15,0,3,6,0,14,13,5,14,13,2,4,1,4,12,10,7,2,6,7,6,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"7\", \"6\", \"10\", \"3\"], \"clip_start\": 452.0, \"clip_end\": 457.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q11_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,6,3,12,9,0,9,7,2,1,13,12,10,0,11,1,6,9,0,10,6,9,4,15,9,8,9,0,1,9,4,6,8,8,1,11,8,15,2,8,15,7,0,8,13,9,10,2,12,6,12,5,9,2,11,13,1,0,2,7,5,14,11,5,5,12,13,12,1,1,3,10,6,10,0,3,2,6,5,6,6,9,9,4,8,11,9,10,6,15,13,6,8,4,8,4,4,1,8,15,0,11,7,13,2,3,13,5,10,3,2,13,6,10,15,15,10,2,8,5,7,3,5,11,8,12,2,9,12,0,8,15,7,4,14,10,10,6,14,6,1,8,13,1,5,7,11,4,13,5,8,8,2,3,11,10,10,11,1,13,0,6,14,15,1,9,9,14,7,3,0,4,6,14,13,8,0,8,9,7,13,3,15,5,6,5,14,8,8,2,0,8,0,6,1,0,4,9,14,0,0,7,3,6,11,14,5,7,2,6,15,10,4,8,11,4,12,11,3,11,1,7,4,11,10,1,15,7,12,3,14,0,6,3,8,14,3,8,6,10,5,12,9,8,0,9,15,13,15,6,0,7,1,1,11,4,8,4,7,2,14,15,6,3,14,10,3,0,15,3,4,2,9,13,1,9,3,5,12,5,11,13,3,13,6,3,15,1,2,7,0,1,13,13,8,4,2,2,14,12,12,8,3,14,2,0,8,14,1,13,11,5,9,15,12,9,13,15,13,15,0,5,0,0,0,0,7,5,13,12,10,15,7,2,7,4,13,11,1,2,0,13,4,1,13,15,5,6,13,1,13,8,0,6,11,3,6,9,2,4,5,5,13,5,8,9,9,10,10,12,2,4,0,5,13,7,8,5,1,10,13,0,13,12,1,11,10,2,9,1,4,7,2,10,5,13,15,11,12,15,1,10,6,11,1,1,4,13,9,5,4,12,0,8,6,1,13,13,2,14,1,11,11,15,13,6,8,8,14,11,9,8,0,7,7,7,8,10,12,14,7,11,8,3,5,0,8,14,13,1,0,14,5,7,6,10,3,2,9,5,2,7,12,0,10,5,12,9,2,13,0,4,1,9,11,7,10,10,12,11,1,7,15,13,13,0,13,12,7,14,15,7,13,6,11,10,4,10,6,0,6,10,9,8,1,1,4,12,2,1,6,10,2,5,7,5,9,5,13,13,10,14,1,8,10,15,6,9,8,13,14,13,7,7,12,1,9,4,7,13,4,4,4,14,7,11,9,10,8,4,4,7,4,10,1,7,7,4,3,6,15,4,12,6,15,3,5,0,7,3,0,8,11,15,3,0,14,13,9,9,0,6,13,9,3,6,0,5,4,1,7,9,5,4,2,9,14,14,1,15,7,9,1,11,15,7,15,4,15,3,14,4,8,14,14,10,8,1,5,1,4,0,11,1,11,5,12,4,3,14,13,9,4,10,0,5,9,1,10,0,11,2,0,15,14,12,8,8,7,2,10,0,15,11,5,10,15,5,13,10,15,14,13,2,5,8,10,14,10,2,8,14,9,0,12,11,15,5,1,6,6,2,9,5,6,14,13,3,11,3,4,0,7,2,1,14,1,11,9,8,9,1,9,2,4,0,11,14,10,14,4,10,9,4,12,0,10,6,1,2,6,0,8,8,0,2,5,13,3,14,8,7,1,13,10,2,14,0,11,6,0,8,4,14,7,11,10,9,14,14,3,12,7,10,4,10,15,15,13,15,9,0,3,2,2,11,9,13,1,7,11,4,1,15,11,11,8,9,1,14,10,15,4,3,7,4,8,3,8,0,14,3,11,0,8,1,3,9,13,1,3,3,15,2,1,15,5,7,5,0,1,12,8,3,0,10,15,4,10,7,1,11,1,8,13,11,2,12,10,12,11,15,4,12,3,13,9,5,11,2,12,5,8,4,9,15,13,1,10,11,9,1,8,2,2,1,12,9,12,13,6,7,3,6,5,13,5,0,11,13,3,8,10,8,5,15,3,2,5,0,3,15,13,0,10,7,13,8,0,0,3,3,10,11,13,7,14,14,1,15,6,2,10,8,4,9,5,4,2,9,9,4,7,14,12,7,7,14,10,10,8,4,12,11,3,10,1,13,14,15,13,0,12,12,14,6,1,8,12,3,11,13,2,6,11,11,5,10,10,5,4,5,15,10,14,9,12,4,2,13,11,7,7,13,5,4,14,11,11,5,6,1,9,13,7,9,9,6,2,6,7,13,10,12,3,1,3,11,3,6,9,0,2,11,9,5,2,13,14,1,13,4,15,0,3,6,0,14,13,5,14,13,2,4,1,4,12,10,7,2,6,7,6,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"7\", \"6\", \"10\"], \"clip_start\": 452.0, \"clip_end\": 456.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q12_false_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,6,3,12,9,0,9,7,2,1,13,12,10,0,11,1,6,9,0,10,6,9,4,15,9,8,9,0,1,9,4,6,8,8,1,11,8,15,2,8,15,7,0,8,13,9,10,2,12,6,12,5,9,2,11,13,1,0,2,7,5,14,11,5,5,12,13,12,1,1,3,10,6,10,0,3,2,6,5,6,6,9,9,4,8,11,9,10,6,15,13,6,8,4,8,4,4,1,8,15,0,11,7,13,2,3,13,5,10,3,2,13,6,10,15,15,10,2,8,5,7,3,5,11,8,12,2,9,12,0,8,15,7,4,14,10,10,6,14,6,1,8,13,1,5,7,11,4,13,5,8,8,2,3,11,10,10,11,1,13,0,6,14,15,1,9,9,14,7,3,0,4,6,14,13,8,0,8,9,7,13,3,15,5,6,5,14,8,8,2,0,8,0,6,1,0,4,9,14,0,0,7,3,6,11,14,5,7,2,6,15,10,4,8,11,4,12,11,3,11,1,7,4,11,10,1,15,7,12,3,14,0,6,3,8,14,3,8,6,10,5,12,9,8,0,9,15,13,15,6,0,7,1,1,11,4,8,4,7,2,14,15,6,3,14,10,3,0,15,3,4,2,9,13,1,9,3,5,12,5,11,13,3,13,6,3,15,1,2,7,0,1,13,13,8,4,2,2,14,12,12,8,3,14,2,0,8,14,1,13,11,5,9,15,12,9,13,15,13,15,0,5,0,0,0,0,7,5,13,12,10,15,7,2,7,4,13,11,1,2,0,13,4,1,13,15,5,6,13,1,13,8,0,6,11,3,6,9,2,4,5,5,13,5,8,9,9,10,10,12,2,4,0,5,13,7,8,5,1,10,13,0,13,12,1,11,10,2,9,1,4,7,2,10,5,13,15,11,12,15,1,10,6,11,1,1,4,13,9,5,4,12,0,8,6,1,13,13,2,14,1,11,11,15,13,6,8,8,14,11,9,8,0,7,7,7,8,10,12,14,7,11,8,3,5,0,8,14,13,1,0,14,5,7,6,10,3,2,9,5,2,7,12,0,10,5,12,9,2,13,0,4,1,9,11,7,10,10,12,11,1,7,15,13,13,0,13,12,7,14,15,7,13,6,11,10,4,10,6,0,6,10,9,8,1,1,4,12,2,1,6,10,2,5,7,5,9,5,13,13,10,14,1,8,10,15,6,9,8,13,14,13,7,7,12,1,9,4,7,13,4,4,4,14,7,11,9,10,8,4,4,7,4,10,1,7,7,4,3,6,15,4,12,6,15,3,5,0,7,3,0,8,11,15,3,0,14,13,9,9,0,6,13,9,3,6,0,5,4,1,7,9,5,4,2,9,14,14,1,15,7,9,1,11,15,7,15,4,15,3,14,4,8,14,14,10,8,1,5,1,4,0,11,1,11,5,12,4,3,14,13,9,4,10,0,5,9,1,10,0,11,2,0,15,14,12,8,8,7,2,10,0,15,11,5,10,15,5,13,10,15,14,13,2,5,8,10,14,10,2,8,14,9,0,12,11,15,5,1,6,6,2,9,5,6,14,13,3,11,3,4,0,7,2,1,14,1,11,9,8,9,1,9,2,4,0,11,14,10,14,4,10,9,4,12,0,10,6,1,2,6,0,8,8,0,2,5,13,3,14,8,7,1,13,10,2,14,0,11,6,0,8,4,14,7,11,10,9,14,14,3,12,7,10,4,10,15,15,13,15,9,0,3,2,2,11,9,13,1,7,11,4,1,15,11,11,8,9,1,14,10,15,4,3,7,4,8,3,8,0,14,3,11,0,8,1,3,9,13,1,3,3,15,2,1,15,5,7,5,0,1,12,8,3,0,10,15,4,10,7,1,11,1,8,13,11,2,12,10,12,11,15,4,12,3,13,9,5,11,2,12,5,8,4,9,15,13,1,10,11,9,1,8,2,2,1,12,9,12,13,6,7,3,6,5,13,5,0,11,13,3,8,10,8,5,15,3,2,5,0,3,15,13,0,10,7,13,8,0,0,3,3,10,11,13,7,14,14,1,15,6,2,10,8,4,9,5,4,2,9,9,4,7,14,12,7,7,14,10,10,8,4,12,11,3,10,1,13,14,15,13,0,12,12,14,6,1,8,12,3,11,13,2,6,11,11,5,10,10,5,4,5,15,10,14,9,12,4,2,13,11,7,7,13,5,4,14,11,11,5,6,1,9,13,7,9,9,6,2,6,7,13,10,12,3,1,3,11,3,6,9,0,2,11,9,5,2,13,14,1,13,4,15,0,3,6,0,14,13,5,14,13,2,4,1,4,12,10,7,2,6,7,6,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"9\", \"4\", \"7\"], \"clip_start\": 909.0, \"clip_end\": 913.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q13_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,6,3,12,9,0,9,7,2,1,13,12,10,0,11,1,6,9,0,10,6,9,4,15,9,8,9,0,1,9,4,6,8,8,1,11,8,15,2,8,15,7,0,8,13,9,10,2,12,6,12,5,9,2,11,13,1,0,2,7,5,14,11,5,5,12,13,12,1,1,3,10,6,10,0,3,2,6,5,6,6,9,9,4,8,11,9,10,6,15,13,6,8,4,8,4,4,1,8,15,0,11,7,13,2,3,13,5,10,3,2,13,6,10,15,15,10,2,8,5,7,3,5,11,8,12,2,9,12,0,8,15,7,4,14,10,10,6,14,6,1,8,13,1,5,7,11,4,13,5,8,8,2,3,11,10,10,11,1,13,0,6,14,15,1,9,9,14,7,3,0,4,6,14,13,8,0,8,9,7,13,3,15,5,6,5,14,8,8,2,0,8,0,6,1,0,4,9,14,0,0,7,3,6,11,14,5,7,2,6,15,10,4,8,11,4,12,11,3,11,1,7,4,11,10,1,15,7,12,3,14,0,6,3,8,14,3,8,6,10,5,12,9,8,0,9,15,13,15,6,0,7,1,1,11,4,8,4,7,2,14,15,6,3,14,10,3,0,15,3,4,2,9,13,1,9,3,5,12,5,11,13,3,13,6,3,15,1,2,7,0,1,13,13,8,4,2,2,14,12,12,8,3,14,2,0,8,14,1,13,11,5,9,15,12,9,13,15,13,15,0,5,0,0,0,0,7,5,13,12,10,15,7,2,7,4,13,11,1,2,0,13,4,1,13,15,5,6,13,1,13,8,0,6,11,3,6,9,2,4,5,5,13,5,8,9,9,10,10,12,2,4,0,5,13,7,8,5,1,10,13,0,13,12,1,11,10,2,9,1,4,7,2,10,5,13,15,11,12,15,1,10,6,11,1,1,4,13,9,5,4,12,0,8,6,1,13,13,2,14,1,11,11,15,13,6,8,8,14,11,9,8,0,7,7,7,8,10,12,14,7,11,8,3,5,0,8,14,13,1,0,14,5,7,6,10,3,2,9,5,2,7,12,0,10,5,12,9,2,13,0,4,1,9,11,7,10,10,12,11,1,7,15,13,13,0,13,12,7,14,15,7,13,6,11,10,4,10,6,0,6,10,9,8,1,1,4,12,2,1,6,10,2,5,7,5,9,5,13,13,10,14,1,8,10,15,6,9,8,13,14,13,7,7,12,1,9,4,7,13,4,4,4,14,7,11,9,10,8,4,4,7,4,10,1,7,7,4,3,6,15,4,12,6,15,3,5,0,7,3,0,8,11,15,3,0,14,13,9,9,0,6,13,9,3,6,0,5,4,1,7,9,5,4,2,9,14,14,1,15,7,9,1,11,15,7,15,4,15,3,14,4,8,14,14,10,8,1,5,1,4,0,11,1,11,5,12,4,3,14,13,9,4,10,0,5,9,1,10,0,11,2,0,15,14,12,8,8,7,2,10,0,15,11,5,10,15,5,13,10,15,14,13,2,5,8,10,14,10,2,8,14,9,0,12,11,15,5,1,6,6,2,9,5,6,14,13,3,11,3,4,0,7,2,1,14,1,11,9,8,9,1,9,2,4,0,11,14,10,14,4,10,9,4,12,0,10,6,1,2,6,0,8,8,0,2,5,13,3,14,8,7,1,13,10,2,14,0,11,6,0,8,4,14,7,11,10,9,14,14,3,12,7,10,4,10,15,15,13,15,9,0,3,2,2,11,9,13,1,7,11,4,1,15,11,11,8,9,1,14,10,15,4,3,7,4,8,3,8,0,14,3,11,0,8,1,3,9,13,1,3,3,15,2,1,15,5,7,5,0,1,12,8,3,0,10,15,4,10,7,1,11,1,8,13,11,2,12,10,12,11,15,4,12,3,13,9,5,11,2,12,5,8,4,9,15,13,1,10,11,9,1,8,2,2,1,12,9,12,13,6,7,3,6,5,13,5,0,11,13,3,8,10,8,5,15,3,2,5,0,3,15,13,0,10,7,13,8,0,0,3,3,10,11,13,7,14,14,1,15,6,2,10,8,4,9,5,4,2,9,9,4,7,14,12,7,7,14,10,10,8,4,12,11,3,10,1,13,14,15,13,0,12,12,14,6,1,8,12,3,11,13,2,6,11,11,5,10,10,5,4,5,15,10,14,9,12,4,2,13,11,7,7,13,5,4,14,11,11,5,6,1,9,13,7,9,9,6,2,6,7,13,10,12,3,1,3,11,3,6,9,0,2,11,9,5,2,13,14,1,13,4,15,0,3,6,0,14,13,5,14,13,2,4,1,4,12,10,7,2,6,7,6,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"10\", \"9\"], \"clip_start\": 744.0, \"clip_end\": 748.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q14_true_spatial.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,6,3,12,9,0,9,7,2,1,13,12,10,0,11,1,6,9,0,10,6,9,4,15,9,8,9,0,1,9,4,6,8,8,1,11,8,15,2,8,15,7,0,8,13,9,10,2,12,6,12,5,9,2,11,13,1,0,2,7,5,14,11,5,5,12,13,12,1,1,3,10,6,10,0,3,2,6,5,6,6,9,9,4,8,11,9,10,6,15,13,6,8,4,8,4,4,1,8,15,0,11,7,13,2,3,13,5,10,3,2,13,6,10,15,15,10,2,8,5,7,3,5,11,8,12,2,9,12,0,8,15,7,4,14,10,10,6,14,6,1,8,13,1,5,7,11,4,13,5,8,8,2,3,11,10,10,11,1,13,0,6,14,15,1,9,9,14,7,3,0,4,6,14,13,8,0,8,9,7,13,3,15,5,6,5,14,8,8,2,0,8,0,6,1,0,4,9,14,0,0,7,3,6,11,14,5,7,2,6,15,10,4,8,11,4,12,11,3,11,1,7,4,11,10,1,15,7,12,3,14,0,6,3,8,14,3,8,6,10,5,12,9,8,0,9,15,13,15,6,0,7,1,1,11,4,8,4,7,2,14,15,6,3,14,10,3,0,15,3,4,2,9,13,1,9,3,5,12,5,11,13,3,13,6,3,15,1,2,7,0,1,13,13,8,4,2,2,14,12,12,8,3,14,2,0,8,14,1,13,11,5,9,15,12,9,13,15,13,15,0,5,0,0,0,0,7,5,13,12,10,15,7,2,7,4,13,11,1,2,0,13,4,1,13,15,5,6,13,1,13,8,0,6,11,3,6,9,2,4,5,5,13,5,8,9,9,10,10,12,2,4,0,5,13,7,8,5,1,10,13,0,13,12,1,11,10,2,9,1,4,7,2,10,5,13,15,11,12,15,1,10,6,11,1,1,4,13,9,5,4,12,0,8,6,1,13,13,2,14,1,11,11,15,13,6,8,8,14,11,9,8,0,7,7,7,8,10,12,14,7,11,8,3,5,0,8,14,13,1,0,14,5,7,6,10,3,2,9,5,2,7,12,0,10,5,12,9,2,13,0,4,1,9,11,7,10,10,12,11,1,7,15,13,13,0,13,12,7,14,15,7,13,6,11,10,4,10,6,0,6,10,9,8,1,1,4,12,2,1,6,10,2,5,7,5,9,5,13,13,10,14,1,8,10,15,6,9,8,13,14,13,7,7,12,1,9,4,7,13,4,4,4,14,7,11,9,10,8,4,4,7,4,10,1,7,7,4,3,6,15,4,12,6,15,3,5,0,7,3,0,8,11,15,3,0,14,13,9,9,0,6,13,9,3,6,0,5,4,1,7,9,5,4,2,9,14,14,1,15,7,9,1,11,15,7,15,4,15,3,14,4,8,14,14,10,8,1,5,1,4,0,11,1,11,5,12,4,3,14,13,9,4,10,0,5,9,1,10,0,11,2,0,15,14,12,8,8,7,2,10,0,15,11,5,10,15,5,13,10,15,14,13,2,5,8,10,14,10,2,8,14,9,0,12,11,15,5,1,6,6,2,9,5,6,14,13,3,11,3,4,0,7,2,1,14,1,11,9,8,9,1,9,2,4,0,11,14,10,14,4,10,9,4,12,0,10,6,1,2,6,0,8,8,0,2,5,13,3,14,8,7,1,13,10,2,14,0,11,6,0,8,4,14,7,11,10,9,14,14,3,12,7,10,4,10,15,15,13,15,9,0,3,2,2,11,9,13,1,7,11,4,1,15,11,11,8,9,1,14,10,15,4,3,7,4,8,3,8,0,14,3,11,0,8,1,3,9,13,1,3,3,15,2,1,15,5,7,5,0,1,12,8,3,0,10,15,4,10,7,1,11,1,8,13,11,2,12,10,12,11,15,4,12,3,13,9,5,11,2,12,5,8,4,9,15,13,1,10,11,9,1,8,2,2,1,12,9,12,13,6,7,3,6,5,13,5,0,11,13,3,8,10,8,5,15,3,2,5,0,3,15,13,0,10,7,13,8,0,0,3,3,10,11,13,7,14,14,1,15,6,2,10,8,4,9,5,4,2,9,9,4,7,14,12,7,7,14,10,10,8,4,12,11,3,10,1,13,14,15,13,0,12,12,14,6,1,8,12,3,11,13,2,6,11,11,5,10,10,5,4,5,15,10,14,9,12,4,2,13,11,7,7,13,5,4,14,11,11,5,6,1,9,13,7,9,9,6,2,6,7,13,10,12,3,1,3,11,3,6,9,0,2,11,9,5,2,13,14,1,13,4,15,0,3,6,0,14,13,5,14,13,2,4,1,4,12,10,7,2,6,7,6,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L1024_NO_RULES", "source_split": "substream_video", "length_L": 1024, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"14\", \"13\", \"8\", \"0\"], \"clip_start\": 171.0, \"clip_end\": 177.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q15_true_sequential.mp4", "video_path": "videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,6,3,12,9,0,9,7,2,1,13,12,10,0,11,1,6,9,0,10,6,9,4,15,9,8,9,0,1,9,4,6,8,8,1,11,8,15,2,8,15,7,0,8,13,9,10,2,12,6,12,5,9,2,11,13,1,0,2,7,5,14,11,5,5,12,13,12,1,1,3,10,6,10,0,3,2,6,5,6,6,9,9,4,8,11,9,10,6,15,13,6,8,4,8,4,4,1,8,15,0,11,7,13,2,3,13,5,10,3,2,13,6,10,15,15,10,2,8,5,7,3,5,11,8,12,2,9,12,0,8,15,7,4,14,10,10,6,14,6,1,8,13,1,5,7,11,4,13,5,8,8,2,3,11,10,10,11,1,13,0,6,14,15,1,9,9,14,7,3,0,4,6,14,13,8,0,8,9,7,13,3,15,5,6,5,14,8,8,2,0,8,0,6,1,0,4,9,14,0,0,7,3,6,11,14,5,7,2,6,15,10,4,8,11,4,12,11,3,11,1,7,4,11,10,1,15,7,12,3,14,0,6,3,8,14,3,8,6,10,5,12,9,8,0,9,15,13,15,6,0,7,1,1,11,4,8,4,7,2,14,15,6,3,14,10,3,0,15,3,4,2,9,13,1,9,3,5,12,5,11,13,3,13,6,3,15,1,2,7,0,1,13,13,8,4,2,2,14,12,12,8,3,14,2,0,8,14,1,13,11,5,9,15,12,9,13,15,13,15,0,5,0,0,0,0,7,5,13,12,10,15,7,2,7,4,13,11,1,2,0,13,4,1,13,15,5,6,13,1,13,8,0,6,11,3,6,9,2,4,5,5,13,5,8,9,9,10,10,12,2,4,0,5,13,7,8,5,1,10,13,0,13,12,1,11,10,2,9,1,4,7,2,10,5,13,15,11,12,15,1,10,6,11,1,1,4,13,9,5,4,12,0,8,6,1,13,13,2,14,1,11,11,15,13,6,8,8,14,11,9,8,0,7,7,7,8,10,12,14,7,11,8,3,5,0,8,14,13,1,0,14,5,7,6,10,3,2,9,5,2,7,12,0,10,5,12,9,2,13,0,4,1,9,11,7,10,10,12,11,1,7,15,13,13,0,13,12,7,14,15,7,13,6,11,10,4,10,6,0,6,10,9,8,1,1,4,12,2,1,6,10,2,5,7,5,9,5,13,13,10,14,1,8,10,15,6,9,8,13,14,13,7,7,12,1,9,4,7,13,4,4,4,14,7,11,9,10,8,4,4,7,4,10,1,7,7,4,3,6,15,4,12,6,15,3,5,0,7,3,0,8,11,15,3,0,14,13,9,9,0,6,13,9,3,6,0,5,4,1,7,9,5,4,2,9,14,14,1,15,7,9,1,11,15,7,15,4,15,3,14,4,8,14,14,10,8,1,5,1,4,0,11,1,11,5,12,4,3,14,13,9,4,10,0,5,9,1,10,0,11,2,0,15,14,12,8,8,7,2,10,0,15,11,5,10,15,5,13,10,15,14,13,2,5,8,10,14,10,2,8,14,9,0,12,11,15,5,1,6,6,2,9,5,6,14,13,3,11,3,4,0,7,2,1,14,1,11,9,8,9,1,9,2,4,0,11,14,10,14,4,10,9,4,12,0,10,6,1,2,6,0,8,8,0,2,5,13,3,14,8,7,1,13,10,2,14,0,11,6,0,8,4,14,7,11,10,9,14,14,3,12,7,10,4,10,15,15,13,15,9,0,3,2,2,11,9,13,1,7,11,4,1,15,11,11,8,9,1,14,10,15,4,3,7,4,8,3,8,0,14,3,11,0,8,1,3,9,13,1,3,3,15,2,1,15,5,7,5,0,1,12,8,3,0,10,15,4,10,7,1,11,1,8,13,11,2,12,10,12,11,15,4,12,3,13,9,5,11,2,12,5,8,4,9,15,13,1,10,11,9,1,8,2,2,1,12,9,12,13,6,7,3,6,5,13,5,0,11,13,3,8,10,8,5,15,3,2,5,0,3,15,13,0,10,7,13,8,0,0,3,3,10,11,13,7,14,14,1,15,6,2,10,8,4,9,5,4,2,9,9,4,7,14,12,7,7,14,10,10,8,4,12,11,3,10,1,13,14,15,13,0,12,12,14,6,1,8,12,3,11,13,2,6,11,11,5,10,10,5,4,5,15,10,14,9,12,4,2,13,11,7,7,13,5,4,14,11,11,5,6,1,9,13,7,9,9,6,2,6,7,13,10,12,3,1,3,11,3,6,9,0,2,11,9,5,2,13,14,1,13,4,15,0,3,6,0,14,13,5,14,13,2,4,1,4,12,10,7,2,6,7,6,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 122.0, \"clip_end\": 128.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,0,5,9,15,1,7,10,4,1,7,3,9,15,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,11,14,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,4,15,8,2,0,1,7,10,4,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,10,14,13,11,14,1,1,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"1\", \"7\", \"10\"], \"clip_start\": 108.0, \"clip_end\": 112.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,0,5,9,15,1,7,10,4,1,7,3,9,15,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,11,14,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,4,15,8,2,0,1,7,10,4,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,10,14,13,11,14,1,1,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"15\", \"1\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,0,5,9,15,1,7,10,4,1,7,3,9,15,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,11,14,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,4,15,8,2,0,1,7,10,4,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,10,14,13,11,14,1,1,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"1\", \"1\", \"1\", \"7\", \"10\"], \"clip_start\": 82.0, \"clip_end\": 88.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q3_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,0,5,9,15,1,7,10,4,1,7,3,9,15,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,11,14,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,4,15,8,2,0,1,7,10,4,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,10,14,13,11,14,1,1,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"1\", \"1\", \"7\"], \"clip_start\": 37.0, \"clip_end\": 41.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,0,5,9,15,1,7,10,4,1,7,3,9,15,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,11,14,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,4,15,8,2,0,1,7,10,4,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,10,14,13,11,14,1,1,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"14\", \"1\", \"1\", \"7\"], \"clip_start\": 29.0, \"clip_end\": 35.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,0,5,9,15,1,7,10,4,1,7,3,9,15,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,11,14,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,4,15,8,2,0,1,7,10,4,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,10,14,13,11,14,1,1,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"14\", \"1\", \"1\", \"1\", \"7\"], \"clip_start\": 111.0, \"clip_end\": 117.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,0,5,9,15,1,7,10,4,1,7,3,9,15,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,11,14,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,4,15,8,2,0,1,7,10,4,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,10,14,13,11,14,1,1,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"5\"], \"clip_start\": 105.0, \"clip_end\": 109.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,0,5,9,15,1,7,10,4,1,7,3,9,15,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,11,14,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,4,15,8,2,0,1,7,10,4,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,10,14,13,11,14,1,1,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"1\"], \"clip_start\": 58.0, \"clip_end\": 61.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,0,5,9,15,1,7,10,4,1,7,3,9,15,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,11,14,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,4,15,8,2,0,1,7,10,4,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,10,14,13,11,14,1,1,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"7\"], \"clip_start\": 92.0, \"clip_end\": 95.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,0,5,9,15,1,7,10,4,1,7,3,9,15,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,11,14,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,4,15,8,2,0,1,7,10,4,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,10,14,13,11,14,1,1,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"10\", \"1\", \"14\"], \"clip_start\": 15.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,0,5,9,15,1,7,10,4,1,7,3,9,15,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,11,14,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,4,15,8,2,0,1,7,10,4,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,10,14,13,11,14,1,1,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"4\", \"1\", \"7\", \"3\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q11_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,0,5,9,15,1,7,10,4,1,7,3,9,15,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,11,14,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,4,15,8,2,0,1,7,10,4,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,10,14,13,11,14,1,1,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"1\", \"1\", \"1\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q12_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,0,5,9,15,1,7,10,4,1,7,3,9,15,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,11,14,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,4,15,8,2,0,1,7,10,4,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,10,14,13,11,14,1,1,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"1\", \"14\", \"1\", \"1\"], \"clip_start\": 16.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q13_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,0,5,9,15,1,7,10,4,1,7,3,9,15,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,11,14,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,4,15,8,2,0,1,7,10,4,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,10,14,13,11,14,1,1,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"15\", \"3\"], \"clip_start\": 117.0, \"clip_end\": 122.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q14_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,0,5,9,15,1,7,10,4,1,7,3,9,15,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,11,14,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,4,15,8,2,0,1,7,10,4,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,10,14,13,11,14,1,1,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"1\", \"7\", \"10\", \"14\", \"1\"], \"clip_start\": 114.0, \"clip_end\": 120.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,0,5,9,15,1,7,10,4,1,7,3,9,15,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,11,14,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,4,15,8,2,0,1,7,10,4,1,7,10,1,14,1,1,1,7,10,14,1,1,1,7,10,14,13,11,14,1,1,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1,7,10,14,1,1,1", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"4\", \"10\", \"9\"], \"clip_start\": 52.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,5,6,10,6,14,12,15,13,0,8,10,9,14,12,15,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,4,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,4,3,0,9,3,9,8,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"0\", \"8\", \"10\", \"9\"], \"clip_start\": 37.0, \"clip_end\": 43.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,5,6,10,6,14,12,15,13,0,8,10,9,14,12,15,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,4,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,4,3,0,9,3,9,8,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 119.0, \"clip_end\": 125.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,5,6,10,6,14,12,15,13,0,8,10,9,14,12,15,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,4,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,4,3,0,9,3,9,8,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"15\", \"4\", \"3\", \"0\", \"9\"], \"clip_start\": 95.0, \"clip_end\": 101.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,5,6,10,6,14,12,15,13,0,8,10,9,14,12,15,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,4,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,4,3,0,9,3,9,8,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"14\", \"12\", \"15\", \"13\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,5,6,10,6,14,12,15,13,0,8,10,9,14,12,15,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,4,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,4,3,0,9,3,9,8,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"15\", \"13\", \"8\"], \"clip_start\": 77.0, \"clip_end\": 81.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,5,6,10,6,14,12,15,13,0,8,10,9,14,12,15,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,4,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,4,3,0,9,3,9,8,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"0\", \"8\"], \"clip_start\": 118.0, \"clip_end\": 122.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,5,6,10,6,14,12,15,13,0,8,10,9,14,12,15,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,4,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,4,3,0,9,3,9,8,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 40.0, \"clip_end\": 46.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,5,6,10,6,14,12,15,13,0,8,10,9,14,12,15,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,4,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,4,3,0,9,3,9,8,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 96.0, \"clip_end\": 100.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,5,6,10,6,14,12,15,13,0,8,10,9,14,12,15,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,4,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,4,3,0,9,3,9,8,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"15\", \"12\", \"15\"], \"clip_start\": 43.0, \"clip_end\": 48.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,5,6,10,6,14,12,15,13,0,8,10,9,14,12,15,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,4,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,4,3,0,9,3,9,8,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"9\", \"14\", \"12\", \"15\", \"12\"], \"clip_start\": 31.0, \"clip_end\": 37.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,5,6,10,6,14,12,15,13,0,8,10,9,14,12,15,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,4,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,4,3,0,9,3,9,8,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 7.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q11_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,5,6,10,6,14,12,15,13,0,8,10,9,14,12,15,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,4,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,4,3,0,9,3,9,8,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"0\", \"9\", \"3\"], \"clip_start\": 97.0, \"clip_end\": 102.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,5,6,10,6,14,12,15,13,0,8,10,9,14,12,15,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,4,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,4,3,0,9,3,9,8,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"15\", \"13\", \"8\"], \"clip_start\": 108.0, \"clip_end\": 112.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q13_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,5,6,10,6,14,12,15,13,0,8,10,9,14,12,15,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,4,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,4,3,0,9,3,9,8,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"12\"], \"clip_start\": 29.0, \"clip_end\": 33.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,5,6,10,6,14,12,15,13,0,8,10,9,14,12,15,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,4,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,4,3,0,9,3,9,8,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"14\", \"12\", \"14\", \"12\", \"15\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q15_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,5,6,10,6,14,12,15,13,0,8,10,9,14,12,15,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,12,15,12,15,13,0,8,10,9,14,4,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,13,8,8,10,14,12,14,12,15,4,3,0,9,3,9,8,10,9,5,6,12,15,13,8,8,10,14,12,14,12,15,13,0,8,10,9,14,12,15,12", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"7\", \"6\", \"15\", \"1\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,3,8,13,13,5,4,6,15,8,5,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,15,2,6,15,8,5,1,1,3,8,12,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,9,7,12,1,3,11,10,7,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"1\", \"1\", \"3\"], \"clip_start\": 72.0, \"clip_end\": 77.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,3,8,13,13,5,4,6,15,8,5,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,15,2,6,15,8,5,1,1,3,8,12,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,9,7,12,1,3,11,10,7,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"8\", \"13\", \"13\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,3,8,13,13,5,4,6,15,8,5,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,15,2,6,15,8,5,1,1,3,8,12,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,9,7,12,1,3,11,10,7,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"7\", \"6\", \"15\"], \"clip_start\": 115.0, \"clip_end\": 120.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,3,8,13,13,5,4,6,15,8,5,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,15,2,6,15,8,5,1,1,3,8,12,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,9,7,12,1,3,11,10,7,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"8\", \"13\"], \"clip_start\": 84.0, \"clip_end\": 88.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,3,8,13,13,5,4,6,15,8,5,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,15,2,6,15,8,5,1,1,3,8,12,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,9,7,12,1,3,11,10,7,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"13\", \"5\", \"4\", \"6\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q5_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,3,8,13,13,5,4,6,15,8,5,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,15,2,6,15,8,5,1,1,3,8,12,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,9,7,12,1,3,11,10,7,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"13\", \"13\", \"5\"], \"clip_start\": 56.0, \"clip_end\": 61.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,3,8,13,13,5,4,6,15,8,5,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,15,2,6,15,8,5,1,1,3,8,12,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,9,7,12,1,3,11,10,7,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"15\", \"8\", \"5\", \"12\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,3,8,13,13,5,4,6,15,8,5,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,15,2,6,15,8,5,1,1,3,8,12,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,9,7,12,1,3,11,10,7,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"8\", \"13\"], \"clip_start\": 55.0, \"clip_end\": 59.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,3,8,13,13,5,4,6,15,8,5,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,15,2,6,15,8,5,1,1,3,8,12,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,9,7,12,1,3,11,10,7,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"13\", \"5\", \"7\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q9_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,3,8,13,13,5,4,6,15,8,5,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,15,2,6,15,8,5,1,1,3,8,12,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,9,7,12,1,3,11,10,7,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"7\", \"6\", \"15\", \"1\"], \"clip_start\": 88.0, \"clip_end\": 94.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,3,8,13,13,5,4,6,15,8,5,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,15,2,6,15,8,5,1,1,3,8,12,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,9,7,12,1,3,11,10,7,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"7\", \"12\", \"1\", \"3\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q11_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,3,8,13,13,5,4,6,15,8,5,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,15,2,6,15,8,5,1,1,3,8,12,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,9,7,12,1,3,11,10,7,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"13\", \"5\", \"7\", \"6\"], \"clip_start\": 48.0, \"clip_end\": 54.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q12_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,3,8,13,13,5,4,6,15,8,5,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,15,2,6,15,8,5,1,1,3,8,12,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,9,7,12,1,3,11,10,7,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"9\", \"1\", \"6\"], \"clip_start\": 49.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,3,8,13,13,5,4,6,15,8,5,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,15,2,6,15,8,5,1,1,3,8,12,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,9,7,12,1,3,11,10,7,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"1\", \"3\", \"8\", \"13\"], \"clip_start\": 45.0, \"clip_end\": 50.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q14_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,3,8,13,13,5,4,6,15,8,5,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,15,2,6,15,8,5,1,1,3,8,12,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,9,7,12,1,3,11,10,7,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"0\"], \"clip_start\": 53.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,3,8,13,13,5,4,6,15,8,5,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,15,2,6,15,8,5,1,1,3,8,12,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,9,7,12,1,3,11,10,7,12,1,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6,15,1,3,8,13,13,5,7,6", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"13\", \"6\", \"13\", \"5\"], \"clip_start\": 84.0, \"clip_end\": 90.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,13,5,12,1,8,12,5,9,12,8,12,11,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,14,8,1,15,13,6,13,12,11,8,12,13,6,13,12,11,6,13,12,11,10,9,10,7,1,13,6,13,5,12,1,8,12,6,13,5,12,1,8,12,15,12,13,6,13,5,8,12,13,5,14,15,12,13,5,14,15,2,11,8,12,9,14,15,2,6,13,5,12,1,8,12,6,14,8,12,8,12,11,8,12,13,6,13", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"12\", \"1\", \"8\"], \"clip_start\": 78.0, \"clip_end\": 83.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,13,5,12,1,8,12,5,9,12,8,12,11,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,14,8,1,15,13,6,13,12,11,8,12,13,6,13,12,11,6,13,12,11,10,9,10,7,1,13,6,13,5,12,1,8,12,6,13,5,12,1,8,12,15,12,13,6,13,5,8,12,13,5,14,15,12,13,5,14,15,2,11,8,12,9,14,15,2,6,13,5,12,1,8,12,6,14,8,12,8,12,11,8,12,13,6,13", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"14\", \"8\", \"12\"], \"clip_start\": 115.0, \"clip_end\": 120.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,13,5,12,1,8,12,5,9,12,8,12,11,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,14,8,1,15,13,6,13,12,11,8,12,13,6,13,12,11,6,13,12,11,10,9,10,7,1,13,6,13,5,12,1,8,12,6,13,5,12,1,8,12,15,12,13,6,13,5,8,12,13,5,14,15,12,13,5,14,15,2,11,8,12,9,14,15,2,6,13,5,12,1,8,12,6,14,8,12,8,12,11,8,12,13,6,13", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"13\", \"5\", \"12\"], \"clip_start\": 15.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,13,5,12,1,8,12,5,9,12,8,12,11,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,14,8,1,15,13,6,13,12,11,8,12,13,6,13,12,11,6,13,12,11,10,9,10,7,1,13,6,13,5,12,1,8,12,6,13,5,12,1,8,12,15,12,13,6,13,5,8,12,13,5,14,15,12,13,5,14,15,2,11,8,12,9,14,15,2,6,13,5,12,1,8,12,6,14,8,12,8,12,11,8,12,13,6,13", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"12\"], \"clip_start\": 17.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,13,5,12,1,8,12,5,9,12,8,12,11,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,14,8,1,15,13,6,13,12,11,8,12,13,6,13,12,11,6,13,12,11,10,9,10,7,1,13,6,13,5,12,1,8,12,6,13,5,12,1,8,12,15,12,13,6,13,5,8,12,13,5,14,15,12,13,5,14,15,2,11,8,12,9,14,15,2,6,13,5,12,1,8,12,6,14,8,12,8,12,11,8,12,13,6,13", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"8\", \"12\", \"13\", \"5\", \"14\"], \"clip_start\": 89.0, \"clip_end\": 95.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,13,5,12,1,8,12,5,9,12,8,12,11,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,14,8,1,15,13,6,13,12,11,8,12,13,6,13,12,11,6,13,12,11,10,9,10,7,1,13,6,13,5,12,1,8,12,6,13,5,12,1,8,12,15,12,13,6,13,5,8,12,13,5,14,15,12,13,5,14,15,2,11,8,12,9,14,15,2,6,13,5,12,1,8,12,6,14,8,12,8,12,11,8,12,13,6,13", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 65.0, \"clip_end\": 68.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,13,5,12,1,8,12,5,9,12,8,12,11,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,14,8,1,15,13,6,13,12,11,8,12,13,6,13,12,11,6,13,12,11,10,9,10,7,1,13,6,13,5,12,1,8,12,6,13,5,12,1,8,12,15,12,13,6,13,5,8,12,13,5,14,15,12,13,5,14,15,2,11,8,12,9,14,15,2,6,13,5,12,1,8,12,6,14,8,12,8,12,11,8,12,13,6,13", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"12\", \"1\", \"8\", \"12\"], \"clip_start\": 30.0, \"clip_end\": 36.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,13,5,12,1,8,12,5,9,12,8,12,11,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,14,8,1,15,13,6,13,12,11,8,12,13,6,13,12,11,6,13,12,11,10,9,10,7,1,13,6,13,5,12,1,8,12,6,13,5,12,1,8,12,15,12,13,6,13,5,8,12,13,5,14,15,12,13,5,14,15,2,11,8,12,9,14,15,2,6,13,5,12,1,8,12,6,14,8,12,8,12,11,8,12,13,6,13", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"2\", \"11\"], \"clip_start\": 99.0, \"clip_end\": 103.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,13,5,12,1,8,12,5,9,12,8,12,11,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,14,8,1,15,13,6,13,12,11,8,12,13,6,13,12,11,6,13,12,11,10,9,10,7,1,13,6,13,5,12,1,8,12,6,13,5,12,1,8,12,15,12,13,6,13,5,8,12,13,5,14,15,12,13,5,14,15,2,11,8,12,9,14,15,2,6,13,5,12,1,8,12,6,14,8,12,8,12,11,8,12,13,6,13", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"5\", \"12\"], \"clip_start\": 29.0, \"clip_end\": 33.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,13,5,12,1,8,12,5,9,12,8,12,11,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,14,8,1,15,13,6,13,12,11,8,12,13,6,13,12,11,6,13,12,11,10,9,10,7,1,13,6,13,5,12,1,8,12,6,13,5,12,1,8,12,15,12,13,6,13,5,8,12,13,5,14,15,12,13,5,14,15,2,11,8,12,9,14,15,2,6,13,5,12,1,8,12,6,14,8,12,8,12,11,8,12,13,6,13", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"12\", \"8\"], \"clip_start\": 117.0, \"clip_end\": 121.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,13,5,12,1,8,12,5,9,12,8,12,11,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,14,8,1,15,13,6,13,12,11,8,12,13,6,13,12,11,6,13,12,11,10,9,10,7,1,13,6,13,5,12,1,8,12,6,13,5,12,1,8,12,15,12,13,6,13,5,8,12,13,5,14,15,12,13,5,14,15,2,11,8,12,9,14,15,2,6,13,5,12,1,8,12,6,14,8,12,8,12,11,8,12,13,6,13", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,13,5,12,1,8,12,5,9,12,8,12,11,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,14,8,1,15,13,6,13,12,11,8,12,13,6,13,12,11,6,13,12,11,10,9,10,7,1,13,6,13,5,12,1,8,12,6,13,5,12,1,8,12,15,12,13,6,13,5,8,12,13,5,14,15,12,13,5,14,15,2,11,8,12,9,14,15,2,6,13,5,12,1,8,12,6,14,8,12,8,12,11,8,12,13,6,13", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"8\", \"12\", \"6\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,13,5,12,1,8,12,5,9,12,8,12,11,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,14,8,1,15,13,6,13,12,11,8,12,13,6,13,12,11,6,13,12,11,10,9,10,7,1,13,6,13,5,12,1,8,12,6,13,5,12,1,8,12,15,12,13,6,13,5,8,12,13,5,14,15,12,13,5,14,15,2,11,8,12,9,14,15,2,6,13,5,12,1,8,12,6,14,8,12,8,12,11,8,12,13,6,13", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 124.0, \"clip_end\": 127.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,13,5,12,1,8,12,5,9,12,8,12,11,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,14,8,1,15,13,6,13,12,11,8,12,13,6,13,12,11,6,13,12,11,10,9,10,7,1,13,6,13,5,12,1,8,12,6,13,5,12,1,8,12,15,12,13,6,13,5,8,12,13,5,14,15,12,13,5,14,15,2,11,8,12,9,14,15,2,6,13,5,12,1,8,12,6,14,8,12,8,12,11,8,12,13,6,13", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"8\", \"12\"], \"clip_start\": 121.0, \"clip_end\": 125.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,13,5,12,1,8,12,5,9,12,8,12,11,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,14,8,1,15,13,6,13,12,11,8,12,13,6,13,12,11,6,13,12,11,10,9,10,7,1,13,6,13,5,12,1,8,12,6,13,5,12,1,8,12,15,12,13,6,13,5,8,12,13,5,14,15,12,13,5,14,15,2,11,8,12,9,14,15,2,6,13,5,12,1,8,12,6,14,8,12,8,12,11,8,12,13,6,13", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 38.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,13,5,12,1,8,12,5,9,12,8,12,11,6,13,5,12,1,8,12,6,13,5,12,1,8,12,6,14,8,1,15,13,6,13,12,11,8,12,13,6,13,12,11,6,13,12,11,10,9,10,7,1,13,6,13,5,12,1,8,12,6,13,5,12,1,8,12,15,12,13,6,13,5,8,12,13,5,14,15,12,13,5,14,15,2,11,8,12,9,14,15,2,6,13,5,12,1,8,12,6,14,8,12,8,12,11,8,12,13,6,13", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"15\", \"3\", \"7\", \"12\"], \"clip_start\": 53.0, \"clip_end\": 59.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,4,9,3,14,12,9,13,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,10,9,13,10,8,14,3,8,14,6,15,3,7,12,2,15,6,15,3,5,13,13,5,14,0,8,14,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"2\", \"15\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,4,9,3,14,12,9,13,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,10,9,13,10,8,14,3,8,14,6,15,3,7,12,2,15,6,15,3,5,13,13,5,14,0,8,14,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"3\", \"7\", \"12\", \"2\"], \"clip_start\": 46.0, \"clip_end\": 51.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,4,9,3,14,12,9,13,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,10,9,13,10,8,14,3,8,14,6,15,3,7,12,2,15,6,15,3,5,13,13,5,14,0,8,14,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 105.0, \"clip_end\": 110.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,4,9,3,14,12,9,13,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,10,9,13,10,8,14,3,8,14,6,15,3,7,12,2,15,6,15,3,5,13,13,5,14,0,8,14,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 102.0, \"clip_end\": 105.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,4,9,3,14,12,9,13,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,10,9,13,10,8,14,3,8,14,6,15,3,7,12,2,15,6,15,3,5,13,13,5,14,0,8,14,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"0\", \"8\", \"14\", \"6\", \"15\"], \"clip_start\": 84.0, \"clip_end\": 90.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,4,9,3,14,12,9,13,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,10,9,13,10,8,14,3,8,14,6,15,3,7,12,2,15,6,15,3,5,13,13,5,14,0,8,14,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"14\", \"0\"], \"clip_start\": 82.0, \"clip_end\": 86.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,4,9,3,14,12,9,13,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,10,9,13,10,8,14,3,8,14,6,15,3,7,12,2,15,6,15,3,5,13,13,5,14,0,8,14,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"15\", \"7\", \"1\", \"6\", \"15\"], \"clip_start\": 93.0, \"clip_end\": 99.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,4,9,3,14,12,9,13,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,10,9,13,10,8,14,3,8,14,6,15,3,7,12,2,15,6,15,3,5,13,13,5,14,0,8,14,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"3\", \"7\", \"12\", \"2\"], \"clip_start\": 88.0, \"clip_end\": 94.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,4,9,3,14,12,9,13,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,10,9,13,10,8,14,3,8,14,6,15,3,7,12,2,15,6,15,3,5,13,13,5,14,0,8,14,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 58.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,4,9,3,14,12,9,13,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,10,9,13,10,8,14,3,8,14,6,15,3,7,12,2,15,6,15,3,5,13,13,5,14,0,8,14,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 103.0, \"clip_end\": 107.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,4,9,3,14,12,9,13,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,10,9,13,10,8,14,3,8,14,6,15,3,7,12,2,15,6,15,3,5,13,13,5,14,0,8,14,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"14\", \"6\", \"15\", \"3\", \"7\"], \"clip_start\": 68.0, \"clip_end\": 74.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,4,9,3,14,12,9,13,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,10,9,13,10,8,14,3,8,14,6,15,3,7,12,2,15,6,15,3,5,13,13,5,14,0,8,14,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"1\", \"6\"], \"clip_start\": 15.0, \"clip_end\": 19.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,4,9,3,14,12,9,13,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,10,9,13,10,8,14,3,8,14,6,15,3,7,12,2,15,6,15,3,5,13,13,5,14,0,8,14,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"2\", \"15\"], \"clip_start\": 39.0, \"clip_end\": 43.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,4,9,3,14,12,9,13,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,10,9,13,10,8,14,3,8,14,6,15,3,7,12,2,15,6,15,3,5,13,13,5,14,0,8,14,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"2\", \"15\", \"7\", \"1\", \"6\"], \"clip_start\": 22.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,4,9,3,14,12,9,13,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,10,9,13,10,8,14,3,8,14,6,15,3,7,12,2,15,6,15,3,5,13,13,5,14,0,8,14,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"14\", \"3\", \"8\", \"14\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,4,9,3,14,12,9,13,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,10,9,13,10,8,14,3,8,14,6,15,3,7,12,2,15,6,15,3,5,13,13,5,14,0,8,14,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7,12,2,15,7,1,6,15,3,7", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"2\", \"8\", \"14\", \"12\"], \"clip_start\": 100.0, \"clip_end\": 106.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,9,3,2,8,14,0,9,0,0,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,3,0,9,15,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"2\", \"8\", \"14\"], \"clip_start\": 61.0, \"clip_end\": 65.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,9,3,2,8,14,0,9,0,0,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,3,0,9,15,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"0\", \"12\", \"12\", \"12\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,9,3,2,8,14,0,9,0,0,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,3,0,9,15,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 18.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,9,3,2,8,14,0,9,0,0,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,3,0,9,15,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"12\", \"12\", \"2\"], \"clip_start\": 74.0, \"clip_end\": 79.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,9,3,2,8,14,0,9,0,0,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,3,0,9,15,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"12\", \"2\", \"8\", \"14\"], \"clip_start\": 107.0, \"clip_end\": 113.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,9,3,2,8,14,0,9,0,0,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,3,0,9,15,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"9\", \"3\", \"2\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q6_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,9,3,2,8,14,0,9,0,0,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,3,0,9,15,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"12\", \"12\", \"2\", \"8\"], \"clip_start\": 16.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q7_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,9,3,2,8,14,0,9,0,0,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,3,0,9,15,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"0\", \"12\", \"12\"], \"clip_start\": 72.0, \"clip_end\": 77.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,9,3,2,8,14,0,9,0,0,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,3,0,9,15,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"14\", \"12\", \"0\"], \"clip_start\": 95.0, \"clip_end\": 99.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q9_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,9,3,2,8,14,0,9,0,0,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,3,0,9,15,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"2\", \"8\", \"14\", \"12\"], \"clip_start\": 85.0, \"clip_end\": 90.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q10_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,9,3,2,8,14,0,9,0,0,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,3,0,9,15,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"12\", \"12\", \"12\", \"2\"], \"clip_start\": 121.0, \"clip_end\": 127.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,9,3,2,8,14,0,9,0,0,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,3,0,9,15,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"2\", \"8\", \"14\", \"12\", \"0\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,9,3,2,8,14,0,9,0,0,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,3,0,9,15,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"12\", \"12\", \"12\"], \"clip_start\": 97.0, \"clip_end\": 102.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,9,3,2,8,14,0,9,0,0,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,3,0,9,15,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\", \"2\", \"15\", \"0\"], \"clip_start\": 110.0, \"clip_end\": 116.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q14_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,9,3,2,8,14,0,9,0,0,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,3,0,9,15,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"8\", \"14\", \"12\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,9,9,3,2,8,14,0,9,0,0,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,3,0,9,15,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8,14,12,0,12,12,12,2,8", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"2\", \"6\", \"12\"], \"clip_start\": 90.0, \"clip_end\": 95.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,10,6,13,15,0,7,9,5,6,12,9,15,9,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,10,3,11,8,1,2,0,6,14,4,0,15,0,10,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"6\", \"12\"], \"clip_start\": 99.0, \"clip_end\": 103.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,10,6,13,15,0,7,9,5,6,12,9,15,9,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,10,3,11,8,1,2,0,6,14,4,0,15,0,10,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"8\", \"1\"], \"clip_start\": 114.0, \"clip_end\": 118.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,10,6,13,15,0,7,9,5,6,12,9,15,9,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,10,3,11,8,1,2,0,6,14,4,0,15,0,10,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"0\", \"2\", \"4\"], \"clip_start\": 29.0, \"clip_end\": 34.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,10,6,13,15,0,7,9,5,6,12,9,15,9,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,10,3,11,8,1,2,0,6,14,4,0,15,0,10,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 65.0, \"clip_end\": 69.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,10,6,13,15,0,7,9,5,6,12,9,15,9,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,10,3,11,8,1,2,0,6,14,4,0,15,0,10,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"4\", \"9\", \"6\"], \"clip_start\": 58.0, \"clip_end\": 62.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,10,6,13,15,0,7,9,5,6,12,9,15,9,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,10,3,11,8,1,2,0,6,14,4,0,15,0,10,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"4\", \"9\", \"6\"], \"clip_start\": 106.0, \"clip_end\": 110.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,10,6,13,15,0,7,9,5,6,12,9,15,9,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,10,3,11,8,1,2,0,6,14,4,0,15,0,10,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 112.0, \"clip_end\": 117.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,10,6,13,15,0,7,9,5,6,12,9,15,9,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,10,3,11,8,1,2,0,6,14,4,0,15,0,10,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"6\", \"12\"], \"clip_start\": 35.0, \"clip_end\": 39.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,10,6,13,15,0,7,9,5,6,12,9,15,9,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,10,3,11,8,1,2,0,6,14,4,0,15,0,10,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"8\"], \"clip_start\": 109.0, \"clip_end\": 112.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,10,6,13,15,0,7,9,5,6,12,9,15,9,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,10,3,11,8,1,2,0,6,14,4,0,15,0,10,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"2\", \"6\", \"12\", \"0\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,10,6,13,15,0,7,9,5,6,12,9,15,9,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,10,3,11,8,1,2,0,6,14,4,0,15,0,10,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"6\", \"6\"], \"clip_start\": 83.0, \"clip_end\": 87.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q11_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,10,6,13,15,0,7,9,5,6,12,9,15,9,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,10,3,11,8,1,2,0,6,14,4,0,15,0,10,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,10,6,13,15,0,7,9,5,6,12,9,15,9,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,10,3,11,8,1,2,0,6,14,4,0,15,0,10,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"2\", \"4\", \"9\"], \"clip_start\": 95.0, \"clip_end\": 99.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,10,6,13,15,0,7,9,5,6,12,9,15,9,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,10,3,11,8,1,2,0,6,14,4,0,15,0,10,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"6\", \"12\"], \"clip_start\": 85.0, \"clip_end\": 89.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q14_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,10,6,13,15,0,7,9,5,6,12,9,15,9,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,10,3,11,8,1,2,0,6,14,4,0,15,0,10,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"6\", \"12\", \"6\", \"12\"], \"clip_start\": 13.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,10,6,13,15,0,7,9,5,6,12,9,15,9,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,6,12,0,2,4,9,6,6,6,12,6,12,0,2,4,9,6,6,6,12,10,3,11,8,1,2,0,6,14,4,0,15,0,10,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"12\", \"10\", \"12\", \"3\"], \"clip_start\": 103.0, \"clip_end\": 108.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,14,10,14,3,8,13,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,13,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,11,6,4,3,15,10,5,12,15,10,7,4,6,2,4,13,8,15,8,13,1,12,10,12,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"8\", \"13\", \"14\", \"1\"], \"clip_start\": 71.0, \"clip_end\": 77.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,14,10,14,3,8,13,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,13,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,11,6,4,3,15,10,5,12,15,10,7,4,6,2,4,13,8,15,8,13,1,12,10,12,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"1\", \"12\", \"3\", \"3\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,14,10,14,3,8,13,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,13,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,11,6,4,3,15,10,5,12,15,10,7,4,6,2,4,13,8,15,8,13,1,12,10,12,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"13\"], \"clip_start\": 44.0, \"clip_end\": 47.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,14,10,14,3,8,13,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,13,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,11,6,4,3,15,10,5,12,15,10,7,4,6,2,4,13,8,15,8,13,1,12,10,12,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"14\", \"1\", \"12\"], \"clip_start\": 73.0, \"clip_end\": 78.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,14,10,14,3,8,13,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,13,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,11,6,4,3,15,10,5,12,15,10,7,4,6,2,4,13,8,15,8,13,1,12,10,12,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"3\", \"13\", \"8\"], \"clip_start\": 49.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,14,10,14,3,8,13,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,13,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,11,6,4,3,15,10,5,12,15,10,7,4,6,2,4,13,8,15,8,13,1,12,10,12,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"8\", \"13\", \"14\", \"1\"], \"clip_start\": 106.0, \"clip_end\": 112.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,14,10,14,3,8,13,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,13,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,11,6,4,3,15,10,5,12,15,10,7,4,6,2,4,13,8,15,8,13,1,12,10,12,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"4\", \"6\", \"2\", \"4\", \"13\"], \"clip_start\": 93.0, \"clip_end\": 99.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,14,10,14,3,8,13,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,13,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,11,6,4,3,15,10,5,12,15,10,7,4,6,2,4,13,8,15,8,13,1,12,10,12,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\"], \"clip_start\": 119.0, \"clip_end\": 122.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,14,10,14,3,8,13,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,13,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,11,6,4,3,15,10,5,12,15,10,7,4,6,2,4,13,8,15,8,13,1,12,10,12,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"13\", \"3\"], \"clip_start\": 102.0, \"clip_end\": 107.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,14,10,14,3,8,13,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,13,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,11,6,4,3,15,10,5,12,15,10,7,4,6,2,4,13,8,15,8,13,1,12,10,12,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"1\", \"12\", \"3\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q10_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,14,10,14,3,8,13,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,13,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,11,6,4,3,15,10,5,12,15,10,7,4,6,2,4,13,8,15,8,13,1,12,10,12,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"13\", \"8\", \"3\"], \"clip_start\": 50.0, \"clip_end\": 55.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,14,10,14,3,8,13,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,13,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,11,6,4,3,15,10,5,12,15,10,7,4,6,2,4,13,8,15,8,13,1,12,10,12,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"15\", \"9\"], \"clip_start\": 57.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,14,10,14,3,8,13,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,13,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,11,6,4,3,15,10,5,12,15,10,7,4,6,2,4,13,8,15,8,13,1,12,10,12,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"12\", \"10\"], \"clip_start\": 103.0, \"clip_end\": 106.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q13_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,14,10,14,3,8,13,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,13,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,11,6,4,3,15,10,5,12,15,10,7,4,6,2,4,13,8,15,8,13,1,12,10,12,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"1\", \"12\", \"3\", \"3\"], \"clip_start\": 56.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q14_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,14,10,14,3,8,13,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,13,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,11,6,4,3,15,10,5,12,15,10,7,4,6,2,4,13,8,15,8,13,1,12,10,12,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"1\", \"12\", \"3\", \"3\", \"8\"], \"clip_start\": 119.0, \"clip_end\": 125.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,2,14,10,14,3,8,13,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,13,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,11,6,4,3,15,10,5,12,15,10,7,4,6,2,4,13,8,15,8,13,1,12,10,12,3,8,13,14,1,12,3,3,8,3,8,13,14,1,12,3,3,8,3,8,13", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"3\", \"3\", \"12\"], \"clip_start\": 47.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,1,9,2,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,8,14,1,9,2,14,1,13,6,0,12,5,8,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"12\", \"6\", \"15\"], \"clip_start\": 41.0, \"clip_end\": 46.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,1,9,2,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,8,14,1,9,2,14,1,13,6,0,12,5,8,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"12\"], \"clip_start\": 113.0, \"clip_end\": 116.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,1,9,2,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,8,14,1,9,2,14,1,13,6,0,12,5,8,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,1,9,2,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,8,14,1,9,2,14,1,13,6,0,12,5,8,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"4\", \"3\"], \"clip_start\": 46.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,1,9,2,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,8,14,1,9,2,14,1,13,6,0,12,5,8,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"6\", \"4\"], \"clip_start\": 45.0, \"clip_end\": 49.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,1,9,2,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,8,14,1,9,2,14,1,13,6,0,12,5,8,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 116.0, \"clip_end\": 120.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,1,9,2,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,8,14,1,9,2,14,1,13,6,0,12,5,8,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"12\", \"6\", \"15\"], \"clip_start\": 72.0, \"clip_end\": 77.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,1,9,2,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,8,14,1,9,2,14,1,13,6,0,12,5,8,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"6\", \"4\", \"9\", \"12\"], \"clip_start\": 15.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,1,9,2,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,8,14,1,9,2,14,1,13,6,0,12,5,8,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"6\", \"4\", \"3\"], \"clip_start\": 114.0, \"clip_end\": 119.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,1,9,2,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,8,14,1,9,2,14,1,13,6,0,12,5,8,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 46.0, \"clip_end\": 51.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,1,9,2,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,8,14,1,9,2,14,1,13,6,0,12,5,8,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"8\", \"14\", \"1\"], \"clip_start\": 63.0, \"clip_end\": 68.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,1,9,2,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,8,14,1,9,2,14,1,13,6,0,12,5,8,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 29.0, \"clip_end\": 35.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,1,9,2,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,8,14,1,9,2,14,1,13,6,0,12,5,8,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"4\", \"3\", \"3\", \"12\"], \"clip_start\": 107.0, \"clip_end\": 113.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,1,9,2,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,8,14,1,9,2,14,1,13,6,0,12,5,8,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"1\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,1,9,2,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,8,14,1,9,2,14,1,13,6,0,12,5,8,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 68.0, \"clip_end\": 71.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,14,1,9,2,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,8,14,1,9,2,14,1,13,6,0,12,5,8,14,1,9,2,14,1,2,12,12,6,15,6,4,9,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3,12,6,15,12,6,4,3,3", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,8,9,9,6,6,6,9,6,6,9,6,6,9,5,0,11,10,2,6,9,11,11,7,4,3,1,4,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,14,3,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"6\", \"6\", \"9\", \"6\", \"6\"], \"clip_start\": 114.0, \"clip_end\": 120.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,8,9,9,6,6,6,9,6,6,9,6,6,9,5,0,11,10,2,6,9,11,11,7,4,3,1,4,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,14,3,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"6\"], \"clip_start\": 113.0, \"clip_end\": 116.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,8,9,9,6,6,6,9,6,6,9,6,6,9,5,0,11,10,2,6,9,11,11,7,4,3,1,4,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,14,3,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"6\", \"6\"], \"clip_start\": 11.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,8,9,9,6,6,6,9,6,6,9,6,6,9,5,0,11,10,2,6,9,11,11,7,4,3,1,4,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,14,3,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"9\"], \"clip_start\": 76.0, \"clip_end\": 79.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,8,9,9,6,6,6,9,6,6,9,6,6,9,5,0,11,10,2,6,9,11,11,7,4,3,1,4,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,14,3,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"6\", \"6\", \"9\", \"6\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,8,9,9,6,6,6,9,6,6,9,6,6,9,5,0,11,10,2,6,9,11,11,7,4,3,1,4,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,14,3,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"9\", \"6\", \"6\"], \"clip_start\": 52.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,8,9,9,6,6,6,9,6,6,9,6,6,9,5,0,11,10,2,6,9,11,11,7,4,3,1,4,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,14,3,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 78.0, \"clip_end\": 82.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,8,9,9,6,6,6,9,6,6,9,6,6,9,5,0,11,10,2,6,9,11,11,7,4,3,1,4,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,14,3,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"9\", \"6\", \"6\", \"9\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,8,9,9,6,6,6,9,6,6,9,6,6,9,5,0,11,10,2,6,9,11,11,7,4,3,1,4,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,14,3,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"6\", \"6\", \"9\", \"6\"], \"clip_start\": 57.0, \"clip_end\": 62.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,8,9,9,6,6,6,9,6,6,9,6,6,9,5,0,11,10,2,6,9,11,11,7,4,3,1,4,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,14,3,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 109.0, \"clip_end\": 113.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,8,9,9,6,6,6,9,6,6,9,6,6,9,5,0,11,10,2,6,9,11,11,7,4,3,1,4,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,14,3,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"6\", \"6\", \"9\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,8,9,9,6,6,6,9,6,6,9,6,6,9,5,0,11,10,2,6,9,11,11,7,4,3,1,4,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,14,3,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"6\", \"6\"], \"clip_start\": 68.0, \"clip_end\": 72.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,8,9,9,6,6,6,9,6,6,9,6,6,9,5,0,11,10,2,6,9,11,11,7,4,3,1,4,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,14,3,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"9\", \"6\", \"6\", \"9\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,8,9,9,6,6,6,9,6,6,9,6,6,9,5,0,11,10,2,6,9,11,11,7,4,3,1,4,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,14,3,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"9\", \"5\", \"0\", \"11\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,8,9,9,6,6,6,9,6,6,9,6,6,9,5,0,11,10,2,6,9,11,11,7,4,3,1,4,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,14,3,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"9\", \"6\", \"6\", \"9\"], \"clip_start\": 109.0, \"clip_end\": 115.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,11,8,9,9,6,6,6,9,6,6,9,6,6,9,5,0,11,10,2,6,9,11,11,7,4,3,1,4,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,14,3,1,4,14,11,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6,6,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"11\", \"2\", \"11\", \"2\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,11,2,11,2,11,2,11,2,11,2,0,0,4,6,7,11,15,15,14,8,2,4,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 75.0, \"clip_end\": 81.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,11,2,11,2,11,2,11,2,11,2,0,0,4,6,7,11,15,15,14,8,2,4,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"11\", \"2\", \"11\", \"2\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,11,2,11,2,11,2,11,2,11,2,0,0,4,6,7,11,15,15,14,8,2,4,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"11\", \"15\", \"0\", \"4\"], \"clip_start\": 72.0, \"clip_end\": 78.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,11,2,11,2,11,2,11,2,11,2,0,0,4,6,7,11,15,15,14,8,2,4,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"15\", \"0\", \"4\", \"6\"], \"clip_start\": 79.0, \"clip_end\": 85.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,11,2,11,2,11,2,11,2,11,2,0,0,4,6,7,11,15,15,14,8,2,4,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"0\", \"0\", \"4\", \"6\"], \"clip_start\": 61.0, \"clip_end\": 67.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,11,2,11,2,11,2,11,2,11,2,0,0,4,6,7,11,15,15,14,8,2,4,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"0\", \"4\"], \"clip_start\": 115.0, \"clip_end\": 119.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,11,2,11,2,11,2,11,2,11,2,0,0,4,6,7,11,15,15,14,8,2,4,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"0\", \"4\", \"6\", \"7\", \"11\"], \"clip_start\": 122.0, \"clip_end\": 128.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,11,2,11,2,11,2,11,2,11,2,0,0,4,6,7,11,15,15,14,8,2,4,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"4\", \"6\", \"7\"], \"clip_start\": 48.0, \"clip_end\": 52.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,11,2,11,2,11,2,11,2,11,2,0,0,4,6,7,11,15,15,14,8,2,4,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 125.0, \"clip_end\": 128.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,11,2,11,2,11,2,11,2,11,2,0,0,4,6,7,11,15,15,14,8,2,4,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"0\", \"4\", \"6\"], \"clip_start\": 92.0, \"clip_end\": 97.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,11,2,11,2,11,2,11,2,11,2,0,0,4,6,7,11,15,15,14,8,2,4,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"0\", \"4\"], \"clip_start\": 115.0, \"clip_end\": 119.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,11,2,11,2,11,2,11,2,11,2,0,0,4,6,7,11,15,15,14,8,2,4,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"11\", \"15\", \"0\"], \"clip_start\": 84.0, \"clip_end\": 89.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,11,2,11,2,11,2,11,2,11,2,0,0,4,6,7,11,15,15,14,8,2,4,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,11,2,11,2,11,2,11,2,11,2,0,0,4,6,7,11,15,15,14,8,2,4,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"2\", \"0\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,11,2,11,2,11,2,11,2,11,2,0,0,4,6,7,11,15,15,14,8,2,4,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"15\", \"0\", \"4\"], \"clip_start\": 91.0, \"clip_end\": 96.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,2,11,2,11,2,11,2,11,2,11,2,0,0,4,6,7,11,15,15,14,8,2,4,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,7,11,15,11,2,0,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11,15,0,4,6,7,11", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"1\", \"1\", \"2\", \"0\"], \"clip_start\": 104.0, \"clip_end\": 110.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,11,1,8,1,8,6,2,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,5,3,15,13,7,11,1,14,1,8,1,8,1,8,6,2,2,0,1,14,2,0,13,5,5,11,7,12,11,7,2,0,1,1,2,0,1,14,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,3,9,4,11,4,11,7,8,12,13", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"1\"], \"clip_start\": 22.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,11,1,8,1,8,6,2,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,5,3,15,13,7,11,1,14,1,8,1,8,1,8,6,2,2,0,1,14,2,0,13,5,5,11,7,12,11,7,2,0,1,1,2,0,1,14,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,3,9,4,11,4,11,7,8,12,13", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"1\", \"2\", \"0\", \"1\"], \"clip_start\": 106.0, \"clip_end\": 111.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,11,1,8,1,8,6,2,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,5,3,15,13,7,11,1,14,1,8,1,8,1,8,6,2,2,0,1,14,2,0,13,5,5,11,7,12,11,7,2,0,1,1,2,0,1,14,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,3,9,4,11,4,11,7,8,12,13", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"1\", \"1\"], \"clip_start\": 88.0, \"clip_end\": 92.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,11,1,8,1,8,6,2,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,5,3,15,13,7,11,1,14,1,8,1,8,1,8,6,2,2,0,1,14,2,0,13,5,5,11,7,12,11,7,2,0,1,1,2,0,1,14,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,3,9,4,11,4,11,7,8,12,13", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 17.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,11,1,8,1,8,6,2,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,5,3,15,13,7,11,1,14,1,8,1,8,1,8,6,2,2,0,1,14,2,0,13,5,5,11,7,12,11,7,2,0,1,1,2,0,1,14,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,3,9,4,11,4,11,7,8,12,13", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"1\", \"2\", \"0\", \"1\"], \"clip_start\": 38.0, \"clip_end\": 44.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,11,1,8,1,8,6,2,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,5,3,15,13,7,11,1,14,1,8,1,8,1,8,6,2,2,0,1,14,2,0,13,5,5,11,7,12,11,7,2,0,1,1,2,0,1,14,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,3,9,4,11,4,11,7,8,12,13", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"11\", \"7\"], \"clip_start\": 81.0, \"clip_end\": 85.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,11,1,8,1,8,6,2,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,5,3,15,13,7,11,1,14,1,8,1,8,1,8,6,2,2,0,1,14,2,0,13,5,5,11,7,12,11,7,2,0,1,1,2,0,1,14,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,3,9,4,11,4,11,7,8,12,13", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"4\", \"8\", \"6\", \"0\"], \"clip_start\": 110.0, \"clip_end\": 116.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,11,1,8,1,8,6,2,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,5,3,15,13,7,11,1,14,1,8,1,8,1,8,6,2,2,0,1,14,2,0,13,5,5,11,7,12,11,7,2,0,1,1,2,0,1,14,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,3,9,4,11,4,11,7,8,12,13", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"7\"], \"clip_start\": 23.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q8_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,11,1,8,1,8,6,2,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,5,3,15,13,7,11,1,14,1,8,1,8,1,8,6,2,2,0,1,14,2,0,13,5,5,11,7,12,11,7,2,0,1,1,2,0,1,14,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,3,9,4,11,4,11,7,8,12,13", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\", \"15\"], \"clip_start\": 41.0, \"clip_end\": 45.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,11,1,8,1,8,6,2,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,5,3,15,13,7,11,1,14,1,8,1,8,1,8,6,2,2,0,1,14,2,0,13,5,5,11,7,12,11,7,2,0,1,1,2,0,1,14,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,3,9,4,11,4,11,7,8,12,13", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"1\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,11,1,8,1,8,6,2,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,5,3,15,13,7,11,1,14,1,8,1,8,1,8,6,2,2,0,1,14,2,0,13,5,5,11,7,12,11,7,2,0,1,1,2,0,1,14,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,3,9,4,11,4,11,7,8,12,13", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"2\", \"0\", \"13\", \"5\"], \"clip_start\": 76.0, \"clip_end\": 82.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q11_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,11,1,8,1,8,6,2,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,5,3,15,13,7,11,1,14,1,8,1,8,1,8,6,2,2,0,1,14,2,0,13,5,5,11,7,12,11,7,2,0,1,1,2,0,1,14,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,3,9,4,11,4,11,7,8,12,13", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"8\", \"2\", \"5\"], \"clip_start\": 109.0, \"clip_end\": 115.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,11,1,8,1,8,6,2,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,5,3,15,13,7,11,1,14,1,8,1,8,1,8,6,2,2,0,1,14,2,0,13,5,5,11,7,12,11,7,2,0,1,1,2,0,1,14,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,3,9,4,11,4,11,7,8,12,13", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"5\", \"11\"], \"clip_start\": 80.0, \"clip_end\": 84.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,11,1,8,1,8,6,2,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,5,3,15,13,7,11,1,14,1,8,1,8,1,8,6,2,2,0,1,14,2,0,13,5,5,11,7,12,11,7,2,0,1,1,2,0,1,14,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,3,9,4,11,4,11,7,8,12,13", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"1\", \"1\", \"2\", \"0\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q14_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,11,1,8,1,8,6,2,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,5,3,15,13,7,11,1,14,1,8,1,8,1,8,6,2,2,0,1,14,2,0,13,5,5,11,7,12,11,7,2,0,1,1,2,0,1,14,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,3,9,4,11,4,11,7,8,12,13", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"11\", \"12\"], \"clip_start\": 33.0, \"clip_end\": 38.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,11,1,8,1,8,6,2,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,5,3,15,13,7,11,1,14,1,8,1,8,1,8,6,2,2,0,1,14,2,0,13,5,5,11,7,12,11,7,2,0,1,1,2,0,1,14,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,1,1,2,0,3,9,4,11,4,11,7,8,12,13", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"14\", \"11\", \"14\"], \"clip_start\": 112.0, \"clip_end\": 117.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,10,5,7,8,3,13,8,3,8,3,13,7,10,15,11,14,11,14,8,3,13,14,11,14,8,3,0,1,10,15,11,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,8,3,13,14,4,12,11,10,5,7,9,10,15,0,3,13,7,9,10,5,7,9,5,9,10,15,11,14,11,14,2,15,9,5,7,9,10,15,11,14,11,14,8,4,0,1,10,15,11,14,11,14,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"9\", \"10\", \"15\", \"11\"], \"clip_start\": 97.0, \"clip_end\": 102.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,10,5,7,8,3,13,8,3,8,3,13,7,10,15,11,14,11,14,8,3,13,14,11,14,8,3,0,1,10,15,11,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,8,3,13,14,4,12,11,10,5,7,9,10,15,0,3,13,7,9,10,5,7,9,5,9,10,15,11,14,11,14,2,15,9,5,7,9,10,15,11,14,11,14,8,4,0,1,10,15,11,14,11,14,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"14\", \"11\"], \"clip_start\": 20.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,10,5,7,8,3,13,8,3,8,3,13,7,10,15,11,14,11,14,8,3,13,14,11,14,8,3,0,1,10,15,11,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,8,3,13,14,4,12,11,10,5,7,9,10,15,0,3,13,7,9,10,5,7,9,5,9,10,15,11,14,11,14,2,15,9,5,7,9,10,15,11,14,11,14,8,4,0,1,10,15,11,14,11,14,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 34.0, \"clip_end\": 37.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,10,5,7,8,3,13,8,3,8,3,13,7,10,15,11,14,11,14,8,3,13,14,11,14,8,3,0,1,10,15,11,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,8,3,13,14,4,12,11,10,5,7,9,10,15,0,3,13,7,9,10,5,7,9,5,9,10,15,11,14,11,14,2,15,9,5,7,9,10,15,11,14,11,14,8,4,0,1,10,15,11,14,11,14,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,10,5,7,8,3,13,8,3,8,3,13,7,10,15,11,14,11,14,8,3,13,14,11,14,8,3,0,1,10,15,11,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,8,3,13,14,4,12,11,10,5,7,9,10,15,0,3,13,7,9,10,5,7,9,5,9,10,15,11,14,11,14,2,15,9,5,7,9,10,15,11,14,11,14,8,4,0,1,10,15,11,14,11,14,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"11\", \"6\", \"1\"], \"clip_start\": 115.0, \"clip_end\": 120.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q5_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,10,5,7,8,3,13,8,3,8,3,13,7,10,15,11,14,11,14,8,3,13,14,11,14,8,3,0,1,10,15,11,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,8,3,13,14,4,12,11,10,5,7,9,10,15,0,3,13,7,9,10,5,7,9,5,9,10,15,11,14,11,14,2,15,9,5,7,9,10,15,11,14,11,14,8,4,0,1,10,15,11,14,11,14,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"15\", \"11\"], \"clip_start\": 120.0, \"clip_end\": 124.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,10,5,7,8,3,13,8,3,8,3,13,7,10,15,11,14,11,14,8,3,13,14,11,14,8,3,0,1,10,15,11,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,8,3,13,14,4,12,11,10,5,7,9,10,15,0,3,13,7,9,10,5,7,9,5,9,10,15,11,14,11,14,2,15,9,5,7,9,10,15,11,14,11,14,8,4,0,1,10,15,11,14,11,14,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"14\", \"11\", \"14\"], \"clip_start\": 112.0, \"clip_end\": 117.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q7_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,10,5,7,8,3,13,8,3,8,3,13,7,10,15,11,14,11,14,8,3,13,14,11,14,8,3,0,1,10,15,11,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,8,3,13,14,4,12,11,10,5,7,9,10,15,0,3,13,7,9,10,5,7,9,5,9,10,15,11,14,11,14,2,15,9,5,7,9,10,15,11,14,11,14,8,4,0,1,10,15,11,14,11,14,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"14\", \"8\", \"3\"], \"clip_start\": 72.0, \"clip_end\": 77.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,10,5,7,8,3,13,8,3,8,3,13,7,10,15,11,14,11,14,8,3,13,14,11,14,8,3,0,1,10,15,11,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,8,3,13,14,4,12,11,10,5,7,9,10,15,0,3,13,7,9,10,5,7,9,5,9,10,15,11,14,11,14,2,15,9,5,7,9,10,15,11,14,11,14,8,4,0,1,10,15,11,14,11,14,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"8\", \"3\", \"13\", \"14\"], \"clip_start\": 73.0, \"clip_end\": 79.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,10,5,7,8,3,13,8,3,8,3,13,7,10,15,11,14,11,14,8,3,13,14,11,14,8,3,0,1,10,15,11,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,8,3,13,14,4,12,11,10,5,7,9,10,15,0,3,13,7,9,10,5,7,9,5,9,10,15,11,14,11,14,2,15,9,5,7,9,10,15,11,14,11,14,8,4,0,1,10,15,11,14,11,14,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"9\", \"10\", \"15\", \"11\"], \"clip_start\": 96.0, \"clip_end\": 102.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,10,5,7,8,3,13,8,3,8,3,13,7,10,15,11,14,11,14,8,3,13,14,11,14,8,3,0,1,10,15,11,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,8,3,13,14,4,12,11,10,5,7,9,10,15,0,3,13,7,9,10,5,7,9,5,9,10,15,11,14,11,14,2,15,9,5,7,9,10,15,11,14,11,14,8,4,0,1,10,15,11,14,11,14,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"15\", \"11\", \"14\", \"11\"], \"clip_start\": 13.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,10,5,7,8,3,13,8,3,8,3,13,7,10,15,11,14,11,14,8,3,13,14,11,14,8,3,0,1,10,15,11,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,8,3,13,14,4,12,11,10,5,7,9,10,15,0,3,13,7,9,10,5,7,9,5,9,10,15,11,14,11,14,2,15,9,5,7,9,10,15,11,14,11,14,8,4,0,1,10,15,11,14,11,14,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"3\", \"5\"], \"clip_start\": 114.0, \"clip_end\": 118.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,10,5,7,8,3,13,8,3,8,3,13,7,10,15,11,14,11,14,8,3,13,14,11,14,8,3,0,1,10,15,11,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,8,3,13,14,4,12,11,10,5,7,9,10,15,0,3,13,7,9,10,5,7,9,5,9,10,15,11,14,11,14,2,15,9,5,7,9,10,15,11,14,11,14,8,4,0,1,10,15,11,14,11,14,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"10\", \"11\", \"0\", \"0\"], \"clip_start\": 22.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,10,5,7,8,3,13,8,3,8,3,13,7,10,15,11,14,11,14,8,3,13,14,11,14,8,3,0,1,10,15,11,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,8,3,13,14,4,12,11,10,5,7,9,10,15,0,3,13,7,9,10,5,7,9,5,9,10,15,11,14,11,14,2,15,9,5,7,9,10,15,11,14,11,14,8,4,0,1,10,15,11,14,11,14,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"7\", \"9\"], \"clip_start\": 93.0, \"clip_end\": 97.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q14_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,10,5,7,8,3,13,8,3,8,3,13,7,10,15,11,14,11,14,8,3,13,14,11,14,8,3,0,1,10,15,11,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,8,3,13,14,4,12,11,10,5,7,9,10,15,0,3,13,7,9,10,5,7,9,5,9,10,15,11,14,11,14,2,15,9,5,7,9,10,15,11,14,11,14,8,4,0,1,10,15,11,14,11,14,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"0\", \"1\", \"10\", \"15\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,10,5,7,8,3,13,8,3,8,3,13,7,10,15,11,14,11,14,8,3,13,14,11,14,8,3,0,1,10,15,11,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,11,14,8,3,13,14,8,3,13,14,4,12,11,10,5,7,9,10,15,0,3,13,7,9,10,5,7,9,5,9,10,15,11,14,11,14,2,15,9,5,7,9,10,15,11,14,11,14,8,4,0,1,10,15,11,14,11,14,8", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"2\", \"7\"], \"clip_start\": 108.0, \"clip_end\": 112.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,14,9,5,4,10,10,6,2,7,2,7,9,11,5,2,7,9,11,5,1,9,5,7,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"11\", \"5\", \"2\"], \"clip_start\": 86.0, \"clip_end\": 91.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,14,9,5,4,10,10,6,2,7,2,7,9,11,5,2,7,9,11,5,1,9,5,7,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"2\", \"7\", \"9\"], \"clip_start\": 73.0, \"clip_end\": 78.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,14,9,5,4,10,10,6,2,7,2,7,9,11,5,2,7,9,11,5,1,9,5,7,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"9\", \"11\", \"5\", \"2\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,14,9,5,4,10,10,6,2,7,2,7,9,11,5,2,7,9,11,5,1,9,5,7,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"5\"], \"clip_start\": 102.0, \"clip_end\": 105.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,14,9,5,4,10,10,6,2,7,2,7,9,11,5,2,7,9,11,5,1,9,5,7,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\", \"1\"], \"clip_start\": 124.0, \"clip_end\": 128.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q5_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,14,9,5,4,10,10,6,2,7,2,7,9,11,5,2,7,9,11,5,1,9,5,7,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"5\", \"7\", \"3\", \"13\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q6_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,14,9,5,4,10,10,6,2,7,2,7,9,11,5,2,7,9,11,5,1,9,5,7,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"11\", \"5\", \"2\"], \"clip_start\": 116.0, \"clip_end\": 121.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,14,9,5,4,10,10,6,2,7,2,7,9,11,5,2,7,9,11,5,1,9,5,7,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"7\", \"11\", \"5\", \"2\"], \"clip_start\": 50.0, \"clip_end\": 56.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q8_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,14,9,5,4,10,10,6,2,7,2,7,9,11,5,2,7,9,11,5,1,9,5,7,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"7\"], \"clip_start\": 109.0, \"clip_end\": 112.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,14,9,5,4,10,10,6,2,7,2,7,9,11,5,2,7,9,11,5,1,9,5,7,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"10\", \"6\", \"2\", \"7\"], \"clip_start\": 34.0, \"clip_end\": 39.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q10_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,14,9,5,4,10,10,6,2,7,2,7,9,11,5,2,7,9,11,5,1,9,5,7,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"7\", \"9\"], \"clip_start\": 54.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q11_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,14,9,5,4,10,10,6,2,7,2,7,9,11,5,2,7,9,11,5,1,9,5,7,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"10\", \"5\", \"10\", \"7\"], \"clip_start\": 107.0, \"clip_end\": 113.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,14,9,5,4,10,10,6,2,7,2,7,9,11,5,2,7,9,11,5,1,9,5,7,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"15\", \"0\", \"0\", \"10\"], \"clip_start\": 30.0, \"clip_end\": 36.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,14,9,5,4,10,10,6,2,7,2,7,9,11,5,2,7,9,11,5,1,9,5,7,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"7\", \"9\"], \"clip_start\": 43.0, \"clip_end\": 47.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,14,9,5,4,10,10,6,2,7,2,7,9,11,5,2,7,9,11,5,1,9,5,7,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"8\", \"5\", \"10\"], \"clip_start\": 30.0, \"clip_end\": 36.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,14,9,5,4,10,10,6,2,7,2,7,9,11,5,2,7,9,11,5,1,9,5,7,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9,11,5,2,7,9", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"12\"], \"clip_start\": 108.0, \"clip_end\": 111.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,11,3,12,12,5,10,14,10,14,6,3,12,12,6,5,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,0,1,0,2,15,8,3,12,12,5,13,9,14,0,3,12,12,5,10,14,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,0,8,3,12,12,5,10,14,6,3,12,12,6,15,15,14", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 39.0, \"clip_end\": 43.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,11,3,12,12,5,10,14,10,14,6,3,12,12,6,5,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,0,1,0,2,15,8,3,12,12,5,13,9,14,0,3,12,12,5,10,14,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,0,8,3,12,12,5,10,14,6,3,12,12,6,15,15,14", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"12\", \"12\"], \"clip_start\": 91.0, \"clip_end\": 95.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,11,3,12,12,5,10,14,10,14,6,3,12,12,6,5,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,0,1,0,2,15,8,3,12,12,5,13,9,14,0,3,12,12,5,10,14,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,0,8,3,12,12,5,10,14,6,3,12,12,6,15,15,14", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"10\", \"14\", \"6\"], \"clip_start\": 88.0, \"clip_end\": 92.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,11,3,12,12,5,10,14,10,14,6,3,12,12,6,5,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,0,1,0,2,15,8,3,12,12,5,13,9,14,0,3,12,12,5,10,14,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,0,8,3,12,12,5,10,14,6,3,12,12,6,15,15,14", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"2\", \"15\", \"8\", \"3\"], \"clip_start\": 70.0, \"clip_end\": 76.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,11,3,12,12,5,10,14,10,14,6,3,12,12,6,5,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,0,1,0,2,15,8,3,12,12,5,13,9,14,0,3,12,12,5,10,14,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,0,8,3,12,12,5,10,14,6,3,12,12,6,15,15,14", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"14\", \"10\", \"14\"], \"clip_start\": 87.0, \"clip_end\": 91.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,11,3,12,12,5,10,14,10,14,6,3,12,12,6,5,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,0,1,0,2,15,8,3,12,12,5,13,9,14,0,3,12,12,5,10,14,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,0,8,3,12,12,5,10,14,6,3,12,12,6,15,15,14", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"12\", \"6\"], \"clip_start\": 92.0, \"clip_end\": 96.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,11,3,12,12,5,10,14,10,14,6,3,12,12,6,5,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,0,1,0,2,15,8,3,12,12,5,13,9,14,0,3,12,12,5,10,14,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,0,8,3,12,12,5,10,14,6,3,12,12,6,15,15,14", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"12\", \"12\", \"6\", \"3\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,11,3,12,12,5,10,14,10,14,6,3,12,12,6,5,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,0,1,0,2,15,8,3,12,12,5,13,9,14,0,3,12,12,5,10,14,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,0,8,3,12,12,5,10,14,6,3,12,12,6,15,15,14", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"5\", \"13\"], \"clip_start\": 76.0, \"clip_end\": 80.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,11,3,12,12,5,10,14,10,14,6,3,12,12,6,5,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,0,1,0,2,15,8,3,12,12,5,13,9,14,0,3,12,12,5,10,14,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,0,8,3,12,12,5,10,14,6,3,12,12,6,15,15,14", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"3\"], \"clip_start\": 60.0, \"clip_end\": 63.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,11,3,12,12,5,10,14,10,14,6,3,12,12,6,5,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,0,1,0,2,15,8,3,12,12,5,13,9,14,0,3,12,12,5,10,14,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,0,8,3,12,12,5,10,14,6,3,12,12,6,15,15,14", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\"], \"clip_start\": 54.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,11,3,12,12,5,10,14,10,14,6,3,12,12,6,5,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,0,1,0,2,15,8,3,12,12,5,13,9,14,0,3,12,12,5,10,14,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,0,8,3,12,12,5,10,14,6,3,12,12,6,15,15,14", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"11\"], \"clip_start\": 125.0, \"clip_end\": 128.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,11,3,12,12,5,10,14,10,14,6,3,12,12,6,5,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,0,1,0,2,15,8,3,12,12,5,13,9,14,0,3,12,12,5,10,14,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,0,8,3,12,12,5,10,14,6,3,12,12,6,15,15,14", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"6\", \"3\"], \"clip_start\": 105.0, \"clip_end\": 109.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,11,3,12,12,5,10,14,10,14,6,3,12,12,6,5,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,0,1,0,2,15,8,3,12,12,5,13,9,14,0,3,12,12,5,10,14,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,0,8,3,12,12,5,10,14,6,3,12,12,6,15,15,14", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"0\", \"8\", \"3\", \"12\", \"12\"], \"clip_start\": 111.0, \"clip_end\": 117.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,11,3,12,12,5,10,14,10,14,6,3,12,12,6,5,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,0,1,0,2,15,8,3,12,12,5,13,9,14,0,3,12,12,5,10,14,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,0,8,3,12,12,5,10,14,6,3,12,12,6,15,15,14", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"10\", \"14\", \"6\"], \"clip_start\": 117.0, \"clip_end\": 121.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q14_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,11,3,12,12,5,10,14,10,14,6,3,12,12,6,5,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,0,1,0,2,15,8,3,12,12,5,13,9,14,0,3,12,12,5,10,14,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,0,8,3,12,12,5,10,14,6,3,12,12,6,15,15,14", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"12\", \"12\", \"6\"], \"clip_start\": 91.0, \"clip_end\": 96.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,11,3,12,12,5,10,14,10,14,6,3,12,12,6,5,12,5,10,14,6,3,12,12,6,3,12,12,6,3,12,12,0,1,0,2,15,8,3,12,12,5,13,9,14,0,3,12,12,5,10,14,10,14,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,3,12,12,6,0,8,3,12,12,5,10,14,6,3,12,12,6,15,15,14", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"7\", \"6\", \"6\", \"7\"], \"clip_start\": 54.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,10,7,1,12,9,8,15,6,2,10,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"7\", \"6\", \"6\", \"7\"], \"clip_start\": 54.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,10,7,1,12,9,8,15,6,2,10,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"7\", \"2\", \"7\"], \"clip_start\": 78.0, \"clip_end\": 83.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,10,7,1,12,9,8,15,6,2,10,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"7\", \"2\", \"7\"], \"clip_start\": 50.0, \"clip_end\": 55.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,10,7,1,12,9,8,15,6,2,10,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"7\", \"2\", \"7\", \"2\"], \"clip_start\": 99.0, \"clip_end\": 105.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,10,7,1,12,9,8,15,6,2,10,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 101.0, \"clip_end\": 107.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,10,7,1,12,9,8,15,6,2,10,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"2\", \"7\", \"6\", \"6\"], \"clip_start\": 102.0, \"clip_end\": 108.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,10,7,1,12,9,8,15,6,2,10,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 38.0, \"clip_end\": 42.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,10,7,1,12,9,8,15,6,2,10,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"6\", \"6\", \"7\"], \"clip_start\": 13.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,10,7,1,12,9,8,15,6,2,10,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"6\", \"7\", \"2\"], \"clip_start\": 77.0, \"clip_end\": 82.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,10,7,1,12,9,8,15,6,2,10,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 45.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,10,7,1,12,9,8,15,6,2,10,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"7\", \"2\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,10,7,1,12,9,8,15,6,2,10,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"6\", \"6\", \"7\"], \"clip_start\": 34.0, \"clip_end\": 39.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,10,7,1,12,9,8,15,6,2,10,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"7\", \"2\", \"7\"], \"clip_start\": 87.0, \"clip_end\": 92.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,10,7,1,12,9,8,15,6,2,10,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 67.0, \"clip_end\": 73.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,10,7,1,12,9,8,15,6,2,10,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"7\"], \"clip_start\": 73.0, \"clip_end\": 76.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q15_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,10,7,1,12,9,8,15,6,2,10,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6,6,7,2,7,2,7,6", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"12\", \"8\", \"1\"], \"clip_start\": 100.0, \"clip_end\": 104.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,2,12,8,1,2,11,7,11,7,11,12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,13,10,13,0,3,5,4,1,2,8,9,9,14,2,8,3,11,7,11,7,1,2,8,11,7,11,7,11,12,8,1,2,11,7,11,12,8,1,2,11,12,8,1,2,11,12,8,1,12,8,1,12,8,1,2,11,7,11,12,8,1,12,8,1,2,11,7,11,3,11,7,11,12,8,1,12,8,1,2,11,12,8,1,2,11,12,8,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 119.0, \"clip_end\": 124.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,2,12,8,1,2,11,7,11,7,11,12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,13,10,13,0,3,5,4,1,2,8,9,9,14,2,8,3,11,7,11,7,1,2,8,11,7,11,7,11,12,8,1,2,11,7,11,12,8,1,2,11,12,8,1,2,11,12,8,1,12,8,1,12,8,1,2,11,7,11,12,8,1,12,8,1,2,11,7,11,3,11,7,11,12,8,1,12,8,1,2,11,12,8,1,2,11,12,8,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 49.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,2,12,8,1,2,11,7,11,7,11,12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,13,10,13,0,3,5,4,1,2,8,9,9,14,2,8,3,11,7,11,7,1,2,8,11,7,11,7,11,12,8,1,2,11,7,11,12,8,1,2,11,12,8,1,2,11,12,8,1,12,8,1,12,8,1,2,11,7,11,12,8,1,12,8,1,2,11,7,11,3,11,7,11,12,8,1,12,8,1,2,11,12,8,1,2,11,12,8,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"8\", \"1\", \"2\", \"11\"], \"clip_start\": 75.0, \"clip_end\": 80.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,2,12,8,1,2,11,7,11,7,11,12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,13,10,13,0,3,5,4,1,2,8,9,9,14,2,8,3,11,7,11,7,1,2,8,11,7,11,7,11,12,8,1,2,11,7,11,12,8,1,2,11,12,8,1,2,11,12,8,1,12,8,1,12,8,1,2,11,7,11,12,8,1,12,8,1,2,11,7,11,3,11,7,11,12,8,1,12,8,1,2,11,12,8,1,2,11,12,8,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 94.0, \"clip_end\": 98.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,2,12,8,1,2,11,7,11,7,11,12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,13,10,13,0,3,5,4,1,2,8,9,9,14,2,8,3,11,7,11,7,1,2,8,11,7,11,7,11,12,8,1,2,11,7,11,12,8,1,2,11,12,8,1,2,11,12,8,1,12,8,1,12,8,1,2,11,7,11,12,8,1,12,8,1,2,11,7,11,3,11,7,11,12,8,1,12,8,1,2,11,12,8,1,2,11,12,8,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 116.0, \"clip_end\": 121.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,2,12,8,1,2,11,7,11,7,11,12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,13,10,13,0,3,5,4,1,2,8,9,9,14,2,8,3,11,7,11,7,1,2,8,11,7,11,7,11,12,8,1,2,11,7,11,12,8,1,2,11,12,8,1,2,11,12,8,1,12,8,1,12,8,1,2,11,7,11,12,8,1,12,8,1,2,11,7,11,3,11,7,11,12,8,1,12,8,1,2,11,12,8,1,2,11,12,8,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"12\"], \"clip_start\": 86.0, \"clip_end\": 89.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,2,12,8,1,2,11,7,11,7,11,12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,13,10,13,0,3,5,4,1,2,8,9,9,14,2,8,3,11,7,11,7,1,2,8,11,7,11,7,11,12,8,1,2,11,7,11,12,8,1,2,11,12,8,1,2,11,12,8,1,12,8,1,12,8,1,2,11,7,11,12,8,1,12,8,1,2,11,7,11,3,11,7,11,12,8,1,12,8,1,2,11,12,8,1,2,11,12,8,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"12\", \"8\", \"1\"], \"clip_start\": 83.0, \"clip_end\": 88.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,2,12,8,1,2,11,7,11,7,11,12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,13,10,13,0,3,5,4,1,2,8,9,9,14,2,8,3,11,7,11,7,1,2,8,11,7,11,7,11,12,8,1,2,11,7,11,12,8,1,2,11,12,8,1,2,11,12,8,1,12,8,1,12,8,1,2,11,7,11,12,8,1,12,8,1,2,11,7,11,3,11,7,11,12,8,1,12,8,1,2,11,12,8,1,2,11,12,8,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\"], \"clip_start\": 109.0, \"clip_end\": 112.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,2,12,8,1,2,11,7,11,7,11,12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,13,10,13,0,3,5,4,1,2,8,9,9,14,2,8,3,11,7,11,7,1,2,8,11,7,11,7,11,12,8,1,2,11,7,11,12,8,1,2,11,12,8,1,2,11,12,8,1,12,8,1,12,8,1,2,11,7,11,12,8,1,12,8,1,2,11,7,11,3,11,7,11,12,8,1,12,8,1,2,11,12,8,1,2,11,12,8,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"12\", \"8\"], \"clip_start\": 7.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q9_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,2,12,8,1,2,11,7,11,7,11,12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,13,10,13,0,3,5,4,1,2,8,9,9,14,2,8,3,11,7,11,7,1,2,8,11,7,11,7,11,12,8,1,2,11,7,11,12,8,1,2,11,12,8,1,2,11,12,8,1,12,8,1,12,8,1,2,11,7,11,12,8,1,12,8,1,2,11,7,11,3,11,7,11,12,8,1,12,8,1,2,11,12,8,1,2,11,12,8,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"2\", \"11\", \"7\", \"11\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,2,12,8,1,2,11,7,11,7,11,12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,13,10,13,0,3,5,4,1,2,8,9,9,14,2,8,3,11,7,11,7,1,2,8,11,7,11,7,11,12,8,1,2,11,7,11,12,8,1,2,11,12,8,1,2,11,12,8,1,12,8,1,12,8,1,2,11,7,11,12,8,1,12,8,1,2,11,7,11,3,11,7,11,12,8,1,12,8,1,2,11,12,8,1,2,11,12,8,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"8\", \"1\", \"12\"], \"clip_start\": 34.0, \"clip_end\": 38.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q11_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,2,12,8,1,2,11,7,11,7,11,12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,13,10,13,0,3,5,4,1,2,8,9,9,14,2,8,3,11,7,11,7,1,2,8,11,7,11,7,11,12,8,1,2,11,7,11,12,8,1,2,11,12,8,1,2,11,12,8,1,12,8,1,12,8,1,2,11,7,11,12,8,1,12,8,1,2,11,7,11,3,11,7,11,12,8,1,12,8,1,2,11,12,8,1,2,11,12,8,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"2\", \"11\", \"7\", \"11\"], \"clip_start\": 92.0, \"clip_end\": 98.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q12_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,2,12,8,1,2,11,7,11,7,11,12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,13,10,13,0,3,5,4,1,2,8,9,9,14,2,8,3,11,7,11,7,1,2,8,11,7,11,7,11,12,8,1,2,11,7,11,12,8,1,2,11,12,8,1,2,11,12,8,1,12,8,1,12,8,1,2,11,7,11,12,8,1,12,8,1,2,11,7,11,3,11,7,11,12,8,1,12,8,1,2,11,12,8,1,2,11,12,8,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"2\", \"11\"], \"clip_start\": 69.0, \"clip_end\": 73.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q13_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,2,12,8,1,2,11,7,11,7,11,12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,13,10,13,0,3,5,4,1,2,8,9,9,14,2,8,3,11,7,11,7,1,2,8,11,7,11,7,11,12,8,1,2,11,7,11,12,8,1,2,11,12,8,1,2,11,12,8,1,12,8,1,12,8,1,2,11,7,11,12,8,1,12,8,1,2,11,7,11,3,11,7,11,12,8,1,12,8,1,2,11,12,8,1,2,11,12,8,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"11\", \"2\", \"3\"], \"clip_start\": 47.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q14_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,2,12,8,1,2,11,7,11,7,11,12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,13,10,13,0,3,5,4,1,2,8,9,9,14,2,8,3,11,7,11,7,1,2,8,11,7,11,7,11,12,8,1,2,11,7,11,12,8,1,2,11,12,8,1,2,11,12,8,1,12,8,1,12,8,1,2,11,7,11,12,8,1,12,8,1,2,11,7,11,3,11,7,11,12,8,1,12,8,1,2,11,12,8,1,2,11,12,8,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"13\", \"9\", \"14\"], \"clip_start\": 15.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,2,12,8,1,2,11,7,11,7,11,12,8,1,2,11,7,11,7,11,12,8,1,12,8,1,13,10,13,0,3,5,4,1,2,8,9,9,14,2,8,3,11,7,11,7,1,2,8,11,7,11,7,11,12,8,1,2,11,7,11,12,8,1,2,11,12,8,1,2,11,12,8,1,12,8,1,12,8,1,2,11,7,11,12,8,1,12,8,1,2,11,7,11,3,11,7,11,12,8,1,12,8,1,2,11,12,8,1,2,11,12,8,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"2\", \"0\", \"14\", \"2\"], \"clip_start\": 57.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,15,0,9,1,11,6,14,6,5,3,2,11,10,4,5,14,5,9,0,13,9,0,3,1,11,6,9,6,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,9,1,11,6,14,5,9,0,13,9,0,3,2,0,14", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"14\", \"2\"], \"clip_start\": 37.0, \"clip_end\": 41.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,15,0,9,1,11,6,14,6,5,3,2,11,10,4,5,14,5,9,0,13,9,0,3,1,11,6,9,6,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,9,1,11,6,14,5,9,0,13,9,0,3,2,0,14", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"14\", \"2\", \"0\", \"14\", \"2\"], \"clip_start\": 92.0, \"clip_end\": 98.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,15,0,9,1,11,6,14,6,5,3,2,11,10,4,5,14,5,9,0,13,9,0,3,1,11,6,9,6,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,9,1,11,6,14,5,9,0,13,9,0,3,2,0,14", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"11\", \"6\", \"9\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,15,0,9,1,11,6,14,6,5,3,2,11,10,4,5,14,5,9,0,13,9,0,3,1,11,6,9,6,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,9,1,11,6,14,5,9,0,13,9,0,3,2,0,14", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"14\", \"2\", \"0\"], \"clip_start\": 91.0, \"clip_end\": 96.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,15,0,9,1,11,6,14,6,5,3,2,11,10,4,5,14,5,9,0,13,9,0,3,1,11,6,9,6,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,9,1,11,6,14,5,9,0,13,9,0,3,2,0,14", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"3\", \"2\", \"11\", \"10\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,15,0,9,1,11,6,14,6,5,3,2,11,10,4,5,14,5,9,0,13,9,0,3,1,11,6,9,6,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,9,1,11,6,14,5,9,0,13,9,0,3,2,0,14", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"14\", \"2\", \"0\"], \"clip_start\": 46.0, \"clip_end\": 51.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,15,0,9,1,11,6,14,6,5,3,2,11,10,4,5,14,5,9,0,13,9,0,3,1,11,6,9,6,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,9,1,11,6,14,5,9,0,13,9,0,3,2,0,14", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"14\", \"2\", \"0\", \"14\"], \"clip_start\": 107.0, \"clip_end\": 112.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,15,0,9,1,11,6,14,6,5,3,2,11,10,4,5,14,5,9,0,13,9,0,3,1,11,6,9,6,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,9,1,11,6,14,5,9,0,13,9,0,3,2,0,14", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"14\"], \"clip_start\": 100.0, \"clip_end\": 103.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,15,0,9,1,11,6,14,6,5,3,2,11,10,4,5,14,5,9,0,13,9,0,3,1,11,6,9,6,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,9,1,11,6,14,5,9,0,13,9,0,3,2,0,14", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"14\", \"2\", \"0\", \"14\"], \"clip_start\": 70.0, \"clip_end\": 76.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,15,0,9,1,11,6,14,6,5,3,2,11,10,4,5,14,5,9,0,13,9,0,3,1,11,6,9,6,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,9,1,11,6,14,5,9,0,13,9,0,3,2,0,14", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"14\", \"2\"], \"clip_start\": 53.0, \"clip_end\": 56.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,15,0,9,1,11,6,14,6,5,3,2,11,10,4,5,14,5,9,0,13,9,0,3,1,11,6,9,6,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,9,1,11,6,14,5,9,0,13,9,0,3,2,0,14", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"14\", \"2\"], \"clip_start\": 46.0, \"clip_end\": 50.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,15,0,9,1,11,6,14,6,5,3,2,11,10,4,5,14,5,9,0,13,9,0,3,1,11,6,9,6,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,9,1,11,6,14,5,9,0,13,9,0,3,2,0,14", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"14\", \"2\", \"0\", \"14\"], \"clip_start\": 41.0, \"clip_end\": 46.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,15,0,9,1,11,6,14,6,5,3,2,11,10,4,5,14,5,9,0,13,9,0,3,1,11,6,9,6,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,9,1,11,6,14,5,9,0,13,9,0,3,2,0,14", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"14\", \"2\", \"0\", \"14\"], \"clip_start\": 55.0, \"clip_end\": 61.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,15,0,9,1,11,6,14,6,5,3,2,11,10,4,5,14,5,9,0,13,9,0,3,1,11,6,9,6,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,9,1,11,6,14,5,9,0,13,9,0,3,2,0,14", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"2\", \"0\", \"14\", \"2\"], \"clip_start\": 39.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,15,0,9,1,11,6,14,6,5,3,2,11,10,4,5,14,5,9,0,13,9,0,3,1,11,6,9,6,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,9,1,11,6,14,5,9,0,13,9,0,3,2,0,14", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"3\", \"2\", \"11\", \"10\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,15,0,9,1,11,6,14,6,5,3,2,11,10,4,5,14,5,9,0,13,9,0,3,1,11,6,9,6,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,0,14,2,9,1,11,6,14,5,9,0,13,9,0,3,2,0,14", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"9\", \"13\", \"1\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,15,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,15,1,4,13,9,13,1,2,6,10,5,1,4,13,9,13,1,2,15,8,6,10,14,2,13,7,14,2,2,6,10,0,5,15,4,13,9,13,1,2,3,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,9,2,15,8,5,15,4,13,9,13,1,2,15,11,13,6,10,14,2,11,13,7,10,12,4,6,10,5,2,1,4,1,6,10,5,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"2\", \"2\", \"6\", \"10\"], \"clip_start\": 65.0, \"clip_end\": 70.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,15,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,15,1,4,13,9,13,1,2,6,10,5,1,4,13,9,13,1,2,15,8,6,10,14,2,13,7,14,2,2,6,10,0,5,15,4,13,9,13,1,2,3,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,9,2,15,8,5,15,4,13,9,13,1,2,15,11,13,6,10,14,2,11,13,7,10,12,4,6,10,5,2,1,4,1,6,10,5,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"10\", \"12\", \"4\"], \"clip_start\": 112.0, \"clip_end\": 117.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,15,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,15,1,4,13,9,13,1,2,6,10,5,1,4,13,9,13,1,2,15,8,6,10,14,2,13,7,14,2,2,6,10,0,5,15,4,13,9,13,1,2,3,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,9,2,15,8,5,15,4,13,9,13,1,2,15,11,13,6,10,14,2,11,13,7,10,12,4,6,10,5,2,1,4,1,6,10,5,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"4\", \"13\", \"9\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,15,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,15,1,4,13,9,13,1,2,6,10,5,1,4,13,9,13,1,2,15,8,6,10,14,2,13,7,14,2,2,6,10,0,5,15,4,13,9,13,1,2,3,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,9,2,15,8,5,15,4,13,9,13,1,2,15,11,13,6,10,14,2,11,13,7,10,12,4,6,10,5,2,1,4,1,6,10,5,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"4\", \"13\", \"9\"], \"clip_start\": 53.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,15,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,15,1,4,13,9,13,1,2,6,10,5,1,4,13,9,13,1,2,15,8,6,10,14,2,13,7,14,2,2,6,10,0,5,15,4,13,9,13,1,2,3,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,9,2,15,8,5,15,4,13,9,13,1,2,15,11,13,6,10,14,2,11,13,7,10,12,4,6,10,5,2,1,4,1,6,10,5,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"9\", \"13\", \"1\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,15,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,15,1,4,13,9,13,1,2,6,10,5,1,4,13,9,13,1,2,15,8,6,10,14,2,13,7,14,2,2,6,10,0,5,15,4,13,9,13,1,2,3,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,9,2,15,8,5,15,4,13,9,13,1,2,15,11,13,6,10,14,2,11,13,7,10,12,4,6,10,5,2,1,4,1,6,10,5,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 106.0, \"clip_end\": 109.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,15,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,15,1,4,13,9,13,1,2,6,10,5,1,4,13,9,13,1,2,15,8,6,10,14,2,13,7,14,2,2,6,10,0,5,15,4,13,9,13,1,2,3,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,9,2,15,8,5,15,4,13,9,13,1,2,15,11,13,6,10,14,2,11,13,7,10,12,4,6,10,5,2,1,4,1,6,10,5,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"9\", \"13\", \"1\"], \"clip_start\": 34.0, \"clip_end\": 38.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,15,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,15,1,4,13,9,13,1,2,6,10,5,1,4,13,9,13,1,2,15,8,6,10,14,2,13,7,14,2,2,6,10,0,5,15,4,13,9,13,1,2,3,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,9,2,15,8,5,15,4,13,9,13,1,2,15,11,13,6,10,14,2,11,13,7,10,12,4,6,10,5,2,1,4,1,6,10,5,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"13\", \"9\", \"13\"], \"clip_start\": 32.0, \"clip_end\": 37.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,15,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,15,1,4,13,9,13,1,2,6,10,5,1,4,13,9,13,1,2,15,8,6,10,14,2,13,7,14,2,2,6,10,0,5,15,4,13,9,13,1,2,3,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,9,2,15,8,5,15,4,13,9,13,1,2,15,11,13,6,10,14,2,11,13,7,10,12,4,6,10,5,2,1,4,1,6,10,5,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"4\", \"13\", \"9\"], \"clip_start\": 54.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,15,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,15,1,4,13,9,13,1,2,6,10,5,1,4,13,9,13,1,2,15,8,6,10,14,2,13,7,14,2,2,6,10,0,5,15,4,13,9,13,1,2,3,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,9,2,15,8,5,15,4,13,9,13,1,2,15,11,13,6,10,14,2,11,13,7,10,12,4,6,10,5,2,1,4,1,6,10,5,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"1\", \"2\", \"3\"], \"clip_start\": 57.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,15,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,15,1,4,13,9,13,1,2,6,10,5,1,4,13,9,13,1,2,15,8,6,10,14,2,13,7,14,2,2,6,10,0,5,15,4,13,9,13,1,2,3,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,9,2,15,8,5,15,4,13,9,13,1,2,15,11,13,6,10,14,2,11,13,7,10,12,4,6,10,5,2,1,4,1,6,10,5,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"2\", \"2\"], \"clip_start\": 82.0, \"clip_end\": 86.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,15,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,15,1,4,13,9,13,1,2,6,10,5,1,4,13,9,13,1,2,15,8,6,10,14,2,13,7,14,2,2,6,10,0,5,15,4,13,9,13,1,2,3,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,9,2,15,8,5,15,4,13,9,13,1,2,15,11,13,6,10,14,2,11,13,7,10,12,4,6,10,5,2,1,4,1,6,10,5,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\"], \"clip_start\": 40.0, \"clip_end\": 43.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,15,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,15,1,4,13,9,13,1,2,6,10,5,1,4,13,9,13,1,2,15,8,6,10,14,2,13,7,14,2,2,6,10,0,5,15,4,13,9,13,1,2,3,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,9,2,15,8,5,15,4,13,9,13,1,2,15,11,13,6,10,14,2,11,13,7,10,12,4,6,10,5,2,1,4,1,6,10,5,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"2\", \"15\", \"8\", \"6\", \"10\"], \"clip_start\": 37.0, \"clip_end\": 43.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q13_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,15,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,15,1,4,13,9,13,1,2,6,10,5,1,4,13,9,13,1,2,15,8,6,10,14,2,13,7,14,2,2,6,10,0,5,15,4,13,9,13,1,2,3,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,9,2,15,8,5,15,4,13,9,13,1,2,15,11,13,6,10,14,2,11,13,7,10,12,4,6,10,5,2,1,4,1,6,10,5,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"1\", \"6\", \"10\", \"5\"], \"clip_start\": 121.0, \"clip_end\": 127.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,15,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,15,1,4,13,9,13,1,2,6,10,5,1,4,13,9,13,1,2,15,8,6,10,14,2,13,7,14,2,2,6,10,0,5,15,4,13,9,13,1,2,3,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,9,2,15,8,5,15,4,13,9,13,1,2,15,11,13,6,10,14,2,11,13,7,10,12,4,6,10,5,2,1,4,1,6,10,5,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"6\", \"15\", \"1\"], \"clip_start\": 18.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,15,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,15,1,4,13,9,13,1,2,6,10,5,1,4,13,9,13,1,2,15,8,6,10,14,2,13,7,14,2,2,6,10,0,5,15,4,13,9,13,1,2,3,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,14,2,2,6,10,6,11,13,7,9,2,15,8,5,15,4,13,9,13,1,2,15,11,13,6,10,14,2,11,13,7,10,12,4,6,10,5,2,1,4,1,6,10,5,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 80.0, \"clip_end\": 84.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,2,9,8,2,11,13,2,9,2,12,3,15,10,11,12,8,1,3,7,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,8,9,12,3,15,10,7,14,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"2\", \"9\", \"2\"], \"clip_start\": 74.0, \"clip_end\": 78.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,2,9,8,2,11,13,2,9,2,12,3,15,10,11,12,8,1,3,7,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,8,9,12,3,15,10,7,14,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,2,9,8,2,11,13,2,9,2,12,3,15,10,11,12,8,1,3,7,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,8,9,12,3,15,10,7,14,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"13\", \"2\"], \"clip_start\": 72.0, \"clip_end\": 76.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,2,9,8,2,11,13,2,9,2,12,3,15,10,11,12,8,1,3,7,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,8,9,12,3,15,10,7,14,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"6\", \"8\"], \"clip_start\": 95.0, \"clip_end\": 99.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,2,9,8,2,11,13,2,9,2,12,3,15,10,11,12,8,1,3,7,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,8,9,12,3,15,10,7,14,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"2\", \"9\", \"2\", \"9\"], \"clip_start\": 65.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,2,9,8,2,11,13,2,9,2,12,3,15,10,11,12,8,1,3,7,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,8,9,12,3,15,10,7,14,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"12\", \"8\", \"1\"], \"clip_start\": 14.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,2,9,8,2,11,13,2,9,2,12,3,15,10,11,12,8,1,3,7,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,8,9,12,3,15,10,7,14,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"2\", \"9\", \"2\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,2,9,8,2,11,13,2,9,2,12,3,15,10,11,12,8,1,3,7,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,8,9,12,3,15,10,7,14,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"2\", \"11\", \"13\", \"2\", \"9\"], \"clip_start\": 107.0, \"clip_end\": 113.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,2,9,8,2,11,13,2,9,2,12,3,15,10,11,12,8,1,3,7,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,8,9,12,3,15,10,7,14,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"13\", \"2\", \"9\"], \"clip_start\": 99.0, \"clip_end\": 104.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,2,9,8,2,11,13,2,9,2,12,3,15,10,11,12,8,1,3,7,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,8,9,12,3,15,10,7,14,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"2\", \"9\"], \"clip_start\": 109.0, \"clip_end\": 113.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,2,9,8,2,11,13,2,9,2,12,3,15,10,11,12,8,1,3,7,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,8,9,12,3,15,10,7,14,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,2,9,8,2,11,13,2,9,2,12,3,15,10,11,12,8,1,3,7,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,8,9,12,3,15,10,7,14,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"2\", \"9\"], \"clip_start\": 111.0, \"clip_end\": 115.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,2,9,8,2,11,13,2,9,2,12,3,15,10,11,12,8,1,3,7,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,8,9,12,3,15,10,7,14,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"12\"], \"clip_start\": 118.0, \"clip_end\": 121.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,2,9,8,2,11,13,2,9,2,12,3,15,10,11,12,8,1,3,7,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,8,9,12,3,15,10,7,14,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"2\", \"9\", \"6\", \"8\"], \"clip_start\": 46.0, \"clip_end\": 51.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q14_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,2,9,8,2,11,13,2,9,2,12,3,15,10,11,12,8,1,3,7,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,8,9,12,3,15,10,7,14,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_ELOW", "source_split": "substream_video", "length_L": 128, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"2\", \"11\", \"13\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q15_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,2,9,8,2,11,13,2,9,2,12,3,15,10,11,12,8,1,3,7,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,8,9,12,3,15,10,7,14,2,9,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11,13,2,9,2,9,6,8,2,11", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 122.0, \"clip_end\": 128.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,3,5,3,5,3,12,15,0,4,12,15,0,11,5,15,0,3,13,11,3,13,0,5,3,5,3,5,11,9,7,0,15,13,15,0,1,11,4,12,15,13,11,9,10,4,9,11,9,10,4,4,12,15,0,9,6,10,0,7,0,5,3,5,3,12,15,13,6,10,0,8,0,2,14,11,5,3,5,6,10,0,1,11,9,10,4,9,10,4,11,9,10,4,9,3,13,0,4,12,9,10,4,4,12,15,13,4,12,15,0,1,11,9,10,4,4,12,15,0,10,4,10,8,0,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"12\", \"15\"], \"clip_start\": 108.0, \"clip_end\": 112.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,3,5,3,5,3,12,15,0,4,12,15,0,11,5,15,0,3,13,11,3,13,0,5,3,5,3,5,11,9,7,0,15,13,15,0,1,11,4,12,15,13,11,9,10,4,9,11,9,10,4,4,12,15,0,9,6,10,0,7,0,5,3,5,3,12,15,13,6,10,0,8,0,2,14,11,5,3,5,6,10,0,1,11,9,10,4,9,10,4,11,9,10,4,9,3,13,0,4,12,9,10,4,4,12,15,13,4,12,15,0,1,11,9,10,4,4,12,15,0,10,4,10,8,0,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"3\", \"5\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,3,5,3,5,3,12,15,0,4,12,15,0,11,5,15,0,3,13,11,3,13,0,5,3,5,3,5,11,9,7,0,15,13,15,0,1,11,4,12,15,13,11,9,10,4,9,11,9,10,4,4,12,15,0,9,6,10,0,7,0,5,3,5,3,12,15,13,6,10,0,8,0,2,14,11,5,3,5,6,10,0,1,11,9,10,4,9,10,4,11,9,10,4,9,3,13,0,4,12,9,10,4,4,12,15,13,4,12,15,0,1,11,9,10,4,4,12,15,0,10,4,10,8,0,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"1\", \"11\", \"9\", \"10\"], \"clip_start\": 82.0, \"clip_end\": 88.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q3_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,3,5,3,5,3,12,15,0,4,12,15,0,11,5,15,0,3,13,11,3,13,0,5,3,5,3,5,11,9,7,0,15,13,15,0,1,11,4,12,15,13,11,9,10,4,9,11,9,10,4,4,12,15,0,9,6,10,0,7,0,5,3,5,3,12,15,13,6,10,0,8,0,2,14,11,5,3,5,6,10,0,1,11,9,10,4,9,10,4,11,9,10,4,9,3,13,0,4,12,9,10,4,4,12,15,13,4,12,15,0,1,11,9,10,4,4,12,15,0,10,4,10,8,0,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"11\", \"4\"], \"clip_start\": 37.0, \"clip_end\": 41.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,3,5,3,5,3,12,15,0,4,12,15,0,11,5,15,0,3,13,11,3,13,0,5,3,5,3,5,11,9,7,0,15,13,15,0,1,11,4,12,15,13,11,9,10,4,9,11,9,10,4,4,12,15,0,9,6,10,0,7,0,5,3,5,3,12,15,13,6,10,0,8,0,2,14,11,5,3,5,6,10,0,1,11,9,10,4,9,10,4,11,9,10,4,9,3,13,0,4,12,9,10,4,4,12,15,13,4,12,15,0,1,11,9,10,4,4,12,15,0,10,4,10,8,0,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"11\", \"9\", \"7\", \"0\", \"15\"], \"clip_start\": 29.0, \"clip_end\": 35.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,3,5,3,5,3,12,15,0,4,12,15,0,11,5,15,0,3,13,11,3,13,0,5,3,5,3,5,11,9,7,0,15,13,15,0,1,11,4,12,15,13,11,9,10,4,9,11,9,10,4,4,12,15,0,9,6,10,0,7,0,5,3,5,3,12,15,13,6,10,0,8,0,2,14,11,5,3,5,6,10,0,1,11,9,10,4,9,10,4,11,9,10,4,9,3,13,0,4,12,9,10,4,4,12,15,13,4,12,15,0,1,11,9,10,4,4,12,15,0,10,4,10,8,0,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"0\", \"1\", \"11\", \"9\", \"10\"], \"clip_start\": 111.0, \"clip_end\": 117.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,3,5,3,5,3,12,15,0,4,12,15,0,11,5,15,0,3,13,11,3,13,0,5,3,5,3,5,11,9,7,0,15,13,15,0,1,11,4,12,15,13,11,9,10,4,9,11,9,10,4,4,12,15,0,9,6,10,0,7,0,5,3,5,3,12,15,13,6,10,0,8,0,2,14,11,5,3,5,6,10,0,1,11,9,10,4,9,10,4,11,9,10,4,9,3,13,0,4,12,9,10,4,4,12,15,13,4,12,15,0,1,11,9,10,4,4,12,15,0,10,4,10,8,0,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"5\"], \"clip_start\": 105.0, \"clip_end\": 109.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,3,5,3,5,3,12,15,0,4,12,15,0,11,5,15,0,3,13,11,3,13,0,5,3,5,3,5,11,9,7,0,15,13,15,0,1,11,4,12,15,13,11,9,10,4,9,11,9,10,4,4,12,15,0,9,6,10,0,7,0,5,3,5,3,12,15,13,6,10,0,8,0,2,14,11,5,3,5,6,10,0,1,11,9,10,4,9,10,4,11,9,10,4,9,3,13,0,4,12,9,10,4,4,12,15,13,4,12,15,0,1,11,9,10,4,4,12,15,0,10,4,10,8,0,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"0\"], \"clip_start\": 58.0, \"clip_end\": 61.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,3,5,3,5,3,12,15,0,4,12,15,0,11,5,15,0,3,13,11,3,13,0,5,3,5,3,5,11,9,7,0,15,13,15,0,1,11,4,12,15,13,11,9,10,4,9,11,9,10,4,4,12,15,0,9,6,10,0,7,0,5,3,5,3,12,15,13,6,10,0,8,0,2,14,11,5,3,5,6,10,0,1,11,9,10,4,9,10,4,11,9,10,4,9,3,13,0,4,12,9,10,4,4,12,15,13,4,12,15,0,1,11,9,10,4,4,12,15,0,10,4,10,8,0,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"7\"], \"clip_start\": 92.0, \"clip_end\": 95.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,3,5,3,5,3,12,15,0,4,12,15,0,11,5,15,0,3,13,11,3,13,0,5,3,5,3,5,11,9,7,0,15,13,15,0,1,11,4,12,15,13,11,9,10,4,9,11,9,10,4,4,12,15,0,9,6,10,0,7,0,5,3,5,3,12,15,13,6,10,0,8,0,2,14,11,5,3,5,6,10,0,1,11,9,10,4,9,10,4,11,9,10,4,9,3,13,0,4,12,9,10,4,4,12,15,13,4,12,15,0,1,11,9,10,4,4,12,15,0,10,4,10,8,0,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"15\", \"0\", \"3\"], \"clip_start\": 15.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,3,5,3,5,3,12,15,0,4,12,15,0,11,5,15,0,3,13,11,3,13,0,5,3,5,3,5,11,9,7,0,15,13,15,0,1,11,4,12,15,13,11,9,10,4,9,11,9,10,4,4,12,15,0,9,6,10,0,7,0,5,3,5,3,12,15,13,6,10,0,8,0,2,14,11,5,3,5,6,10,0,1,11,9,10,4,9,10,4,11,9,10,4,9,3,13,0,4,12,9,10,4,4,12,15,13,4,12,15,0,1,11,9,10,4,4,12,15,0,10,4,10,8,0,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"15\", \"0\", \"4\", \"12\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q11_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,3,5,3,5,3,12,15,0,4,12,15,0,11,5,15,0,3,13,11,3,13,0,5,3,5,3,5,11,9,7,0,15,13,15,0,1,11,4,12,15,13,11,9,10,4,9,11,9,10,4,4,12,15,0,9,6,10,0,7,0,5,3,5,3,12,15,13,6,10,0,8,0,2,14,11,5,3,5,6,10,0,1,11,9,10,4,9,10,4,11,9,10,4,9,3,13,0,4,12,9,10,4,4,12,15,13,4,12,15,0,1,11,9,10,4,4,12,15,0,10,4,10,8,0,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"11\", \"3\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q12_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,3,5,3,5,3,12,15,0,4,12,15,0,11,5,15,0,3,13,11,3,13,0,5,3,5,3,5,11,9,7,0,15,13,15,0,1,11,4,12,15,13,11,9,10,4,9,11,9,10,4,4,12,15,0,9,6,10,0,7,0,5,3,5,3,12,15,13,6,10,0,8,0,2,14,11,5,3,5,6,10,0,1,11,9,10,4,9,10,4,11,9,10,4,9,3,13,0,4,12,9,10,4,4,12,15,13,4,12,15,0,1,11,9,10,4,4,12,15,0,10,4,10,8,0,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"0\", \"3\", \"13\", \"11\"], \"clip_start\": 16.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q13_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,3,5,3,5,3,12,15,0,4,12,15,0,11,5,15,0,3,13,11,3,13,0,5,3,5,3,5,11,9,7,0,15,13,15,0,1,11,4,12,15,13,11,9,10,4,9,11,9,10,4,4,12,15,0,9,6,10,0,7,0,5,3,5,3,12,15,13,6,10,0,8,0,2,14,11,5,3,5,6,10,0,1,11,9,10,4,9,10,4,11,9,10,4,9,3,13,0,4,12,9,10,4,4,12,15,13,4,12,15,0,1,11,9,10,4,4,12,15,0,10,4,10,8,0,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"15\", \"3\"], \"clip_start\": 117.0, \"clip_end\": 122.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q14_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,3,5,3,5,3,12,15,0,4,12,15,0,11,5,15,0,3,13,11,3,13,0,5,3,5,3,5,11,9,7,0,15,13,15,0,1,11,4,12,15,13,11,9,10,4,9,11,9,10,4,4,12,15,0,9,6,10,0,7,0,5,3,5,3,12,15,13,6,10,0,8,0,2,14,11,5,3,5,6,10,0,1,11,9,10,4,9,10,4,11,9,10,4,9,3,13,0,4,12,9,10,4,4,12,15,13,4,12,15,0,1,11,9,10,4,4,12,15,0,10,4,10,8,0,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"10\", \"4\", \"4\", \"12\"], \"clip_start\": 114.0, \"clip_end\": 120.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,5,3,5,3,5,3,12,15,0,4,12,15,0,11,5,15,0,3,13,11,3,13,0,5,3,5,3,5,11,9,7,0,15,13,15,0,1,11,4,12,15,13,11,9,10,4,9,11,9,10,4,4,12,15,0,9,6,10,0,7,0,5,3,5,3,12,15,13,6,10,0,8,0,2,14,11,5,3,5,6,10,0,1,11,9,10,4,9,10,4,11,9,10,4,9,3,13,0,4,12,9,10,4,4,12,15,13,4,12,15,0,1,11,9,10,4,4,12,15,0,10,4,10,8,0,14", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"2\", \"11\", \"12\", \"6\"], \"clip_start\": 52.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,9,2,4,10,15,10,11,14,2,4,0,9,2,4,10,15,10,11,12,2,4,10,15,10,11,14,2,11,12,14,2,11,14,5,9,10,11,14,2,12,12,10,11,12,12,9,2,4,10,15,14,2,11,12,6,7,6,5,9,2,4,10,15,10,11,12,2,12,1,4,3,6,11,14,2,11,12,1,7,6,5,9,2,4,10,15,10,11,12,10,11,14,2,12,9,9,2,4,10,15,13,2,11,14,2,11,12,4,10,15,10,11,12,3,6,7,6,3,7,6,3,10,11,12,1,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"14\", \"2\", \"12\", \"12\"], \"clip_start\": 37.0, \"clip_end\": 43.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,9,2,4,10,15,10,11,14,2,4,0,9,2,4,10,15,10,11,12,2,4,10,15,10,11,14,2,11,12,14,2,11,14,5,9,10,11,14,2,12,12,10,11,12,12,9,2,4,10,15,14,2,11,12,6,7,6,5,9,2,4,10,15,10,11,12,2,12,1,4,3,6,11,14,2,11,12,1,7,6,5,9,2,4,10,15,10,11,12,10,11,14,2,12,9,9,2,4,10,15,13,2,11,14,2,11,12,4,10,15,10,11,12,3,6,7,6,3,7,6,3,10,11,12,1,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 119.0, \"clip_end\": 125.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,9,2,4,10,15,10,11,14,2,4,0,9,2,4,10,15,10,11,12,2,4,10,15,10,11,14,2,11,12,14,2,11,14,5,9,10,11,14,2,12,12,10,11,12,12,9,2,4,10,15,14,2,11,12,6,7,6,5,9,2,4,10,15,10,11,12,2,12,1,4,3,6,11,14,2,11,12,1,7,6,5,9,2,4,10,15,10,11,12,10,11,14,2,12,9,9,2,4,10,15,13,2,11,14,2,11,12,4,10,15,10,11,12,3,6,7,6,3,7,6,3,10,11,12,1,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"9\", \"2\", \"4\", \"10\"], \"clip_start\": 95.0, \"clip_end\": 101.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,9,2,4,10,15,10,11,14,2,4,0,9,2,4,10,15,10,11,12,2,4,10,15,10,11,14,2,11,12,14,2,11,14,5,9,10,11,14,2,12,12,10,11,12,12,9,2,4,10,15,14,2,11,12,6,7,6,5,9,2,4,10,15,10,11,12,2,12,1,4,3,6,11,14,2,11,12,1,7,6,5,9,2,4,10,15,10,11,12,10,11,14,2,12,9,9,2,4,10,15,13,2,11,14,2,11,12,4,10,15,10,11,12,3,6,7,6,3,7,6,3,10,11,12,1,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"10\", \"15\", \"10\", \"11\", \"14\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,9,2,4,10,15,10,11,14,2,4,0,9,2,4,10,15,10,11,12,2,4,10,15,10,11,14,2,11,12,14,2,11,14,5,9,10,11,14,2,12,12,10,11,12,12,9,2,4,10,15,14,2,11,12,6,7,6,5,9,2,4,10,15,10,11,12,2,12,1,4,3,6,11,14,2,11,12,1,7,6,5,9,2,4,10,15,10,11,12,10,11,14,2,12,9,9,2,4,10,15,13,2,11,14,2,11,12,4,10,15,10,11,12,3,6,7,6,3,7,6,3,10,11,12,1,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"12\", \"1\", \"7\"], \"clip_start\": 77.0, \"clip_end\": 81.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,9,2,4,10,15,10,11,14,2,4,0,9,2,4,10,15,10,11,12,2,4,10,15,10,11,14,2,11,12,14,2,11,14,5,9,10,11,14,2,12,12,10,11,12,12,9,2,4,10,15,14,2,11,12,6,7,6,5,9,2,4,10,15,10,11,12,2,12,1,4,3,6,11,14,2,11,12,1,7,6,5,9,2,4,10,15,10,11,12,10,11,14,2,12,9,9,2,4,10,15,13,2,11,14,2,11,12,4,10,15,10,11,12,3,6,7,6,3,7,6,3,10,11,12,1,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"7\", \"6\"], \"clip_start\": 118.0, \"clip_end\": 122.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,9,2,4,10,15,10,11,14,2,4,0,9,2,4,10,15,10,11,12,2,4,10,15,10,11,14,2,11,12,14,2,11,14,5,9,10,11,14,2,12,12,10,11,12,12,9,2,4,10,15,14,2,11,12,6,7,6,5,9,2,4,10,15,10,11,12,2,12,1,4,3,6,11,14,2,11,12,1,7,6,5,9,2,4,10,15,10,11,12,10,11,14,2,12,9,9,2,4,10,15,13,2,11,14,2,11,12,4,10,15,10,11,12,3,6,7,6,3,7,6,3,10,11,12,1,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 40.0, \"clip_end\": 46.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,9,2,4,10,15,10,11,14,2,4,0,9,2,4,10,15,10,11,12,2,4,10,15,10,11,14,2,11,12,14,2,11,14,5,9,10,11,14,2,12,12,10,11,12,12,9,2,4,10,15,14,2,11,12,6,7,6,5,9,2,4,10,15,10,11,12,2,12,1,4,3,6,11,14,2,11,12,1,7,6,5,9,2,4,10,15,10,11,12,10,11,14,2,12,9,9,2,4,10,15,13,2,11,14,2,11,12,4,10,15,10,11,12,3,6,7,6,3,7,6,3,10,11,12,1,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 96.0, \"clip_end\": 100.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,9,2,4,10,15,10,11,14,2,4,0,9,2,4,10,15,10,11,12,2,4,10,15,10,11,14,2,11,12,14,2,11,14,5,9,10,11,14,2,12,12,10,11,12,12,9,2,4,10,15,14,2,11,12,6,7,6,5,9,2,4,10,15,10,11,12,2,12,1,4,3,6,11,14,2,11,12,1,7,6,5,9,2,4,10,15,10,11,12,10,11,14,2,12,9,9,2,4,10,15,13,2,11,14,2,11,12,4,10,15,10,11,12,3,6,7,6,3,7,6,3,10,11,12,1,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"12\", \"12\", \"9\"], \"clip_start\": 43.0, \"clip_end\": 48.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,9,2,4,10,15,10,11,14,2,4,0,9,2,4,10,15,10,11,12,2,4,10,15,10,11,14,2,11,12,14,2,11,14,5,9,10,11,14,2,12,12,10,11,12,12,9,2,4,10,15,14,2,11,12,6,7,6,5,9,2,4,10,15,10,11,12,2,12,1,4,3,6,11,14,2,11,12,1,7,6,5,9,2,4,10,15,10,11,12,10,11,14,2,12,9,9,2,4,10,15,13,2,11,14,2,11,12,4,10,15,10,11,12,3,6,7,6,3,7,6,3,10,11,12,1,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"2\", \"11\", \"14\", \"5\", \"9\"], \"clip_start\": 31.0, \"clip_end\": 37.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,9,2,4,10,15,10,11,14,2,4,0,9,2,4,10,15,10,11,12,2,4,10,15,10,11,14,2,11,12,14,2,11,14,5,9,10,11,14,2,12,12,10,11,12,12,9,2,4,10,15,14,2,11,12,6,7,6,5,9,2,4,10,15,10,11,12,2,12,1,4,3,6,11,14,2,11,12,1,7,6,5,9,2,4,10,15,10,11,12,10,11,14,2,12,9,9,2,4,10,15,13,2,11,14,2,11,12,4,10,15,10,11,12,3,6,7,6,3,7,6,3,10,11,12,1,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 7.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q11_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,9,2,4,10,15,10,11,14,2,4,0,9,2,4,10,15,10,11,12,2,4,10,15,10,11,14,2,11,12,14,2,11,14,5,9,10,11,14,2,12,12,10,11,12,12,9,2,4,10,15,14,2,11,12,6,7,6,5,9,2,4,10,15,10,11,12,2,12,1,4,3,6,11,14,2,11,12,1,7,6,5,9,2,4,10,15,10,11,12,10,11,14,2,12,9,9,2,4,10,15,13,2,11,14,2,11,12,4,10,15,10,11,12,3,6,7,6,3,7,6,3,10,11,12,1,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"2\", \"4\", \"10\", \"15\"], \"clip_start\": 97.0, \"clip_end\": 102.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,9,2,4,10,15,10,11,14,2,4,0,9,2,4,10,15,10,11,12,2,4,10,15,10,11,14,2,11,12,14,2,11,14,5,9,10,11,14,2,12,12,10,11,12,12,9,2,4,10,15,14,2,11,12,6,7,6,5,9,2,4,10,15,10,11,12,2,12,1,4,3,6,11,14,2,11,12,1,7,6,5,9,2,4,10,15,10,11,12,10,11,14,2,12,9,9,2,4,10,15,13,2,11,14,2,11,12,4,10,15,10,11,12,3,6,7,6,3,7,6,3,10,11,12,1,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"10\", \"15\"], \"clip_start\": 108.0, \"clip_end\": 112.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q13_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,9,2,4,10,15,10,11,14,2,4,0,9,2,4,10,15,10,11,12,2,4,10,15,10,11,14,2,11,12,14,2,11,14,5,9,10,11,14,2,12,12,10,11,12,12,9,2,4,10,15,14,2,11,12,6,7,6,5,9,2,4,10,15,10,11,12,2,12,1,4,3,6,11,14,2,11,12,1,7,6,5,9,2,4,10,15,10,11,12,10,11,14,2,12,9,9,2,4,10,15,13,2,11,14,2,11,12,4,10,15,10,11,12,3,6,7,6,3,7,6,3,10,11,12,1,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"12\"], \"clip_start\": 29.0, \"clip_end\": 33.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,9,2,4,10,15,10,11,14,2,4,0,9,2,4,10,15,10,11,12,2,4,10,15,10,11,14,2,11,12,14,2,11,14,5,9,10,11,14,2,12,12,10,11,12,12,9,2,4,10,15,14,2,11,12,6,7,6,5,9,2,4,10,15,10,11,12,2,12,1,4,3,6,11,14,2,11,12,1,7,6,5,9,2,4,10,15,10,11,12,10,11,14,2,12,9,9,2,4,10,15,13,2,11,14,2,11,12,4,10,15,10,11,12,3,6,7,6,3,7,6,3,10,11,12,1,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"10\", \"11\", \"12\", \"2\", \"12\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q15_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,9,2,4,10,15,10,11,14,2,4,0,9,2,4,10,15,10,11,12,2,4,10,15,10,11,14,2,11,12,14,2,11,14,5,9,10,11,14,2,12,12,10,11,12,12,9,2,4,10,15,14,2,11,12,6,7,6,5,9,2,4,10,15,10,11,12,2,12,1,4,3,6,11,14,2,11,12,1,7,6,5,9,2,4,10,15,10,11,12,10,11,14,2,12,9,9,2,4,10,15,13,2,11,14,2,11,12,4,10,15,10,11,12,3,6,7,6,3,7,6,3,10,11,12,1,4", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"15\", \"4\", \"5\", \"12\", \"12\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,1,9,4,5,12,12,12,2,0,8,5,14,9,4,2,0,8,6,15,4,3,0,15,4,4,0,15,4,5,12,12,4,13,8,5,14,2,5,14,9,4,2,13,8,5,12,12,4,6,2,5,11,13,9,4,7,13,14,9,15,8,5,10,11,13,9,4,5,10,9,15,8,5,10,6,15,4,5,15,4,9,3,0,15,7,13,8,5,14,2,0,8,5,12,12,3,0,15,15,4,11,13,4,0,15,4,10,11,1,9,4,5,8,5,15,4,9,15,8,5,10,14,2,0,15,4,13", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"5\", \"10\", \"6\", \"15\"], \"clip_start\": 72.0, \"clip_end\": 77.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,1,9,4,5,12,12,12,2,0,8,5,14,9,4,2,0,8,6,15,4,3,0,15,4,4,0,15,4,5,12,12,4,13,8,5,14,2,5,14,9,4,2,13,8,5,12,12,4,6,2,5,11,13,9,4,7,13,14,9,15,8,5,10,11,13,9,4,5,10,9,15,8,5,10,6,15,4,5,15,4,9,3,0,15,7,13,8,5,14,2,0,8,5,12,12,3,0,15,15,4,11,13,4,0,15,4,10,11,1,9,4,5,8,5,15,4,9,15,8,5,10,14,2,0,15,4,13", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"1\", \"9\", \"4\", \"5\", \"12\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,1,9,4,5,12,12,12,2,0,8,5,14,9,4,2,0,8,6,15,4,3,0,15,4,4,0,15,4,5,12,12,4,13,8,5,14,2,5,14,9,4,2,13,8,5,12,12,4,6,2,5,11,13,9,4,7,13,14,9,15,8,5,10,11,13,9,4,5,10,9,15,8,5,10,6,15,4,5,15,4,9,3,0,15,7,13,8,5,14,2,0,8,5,12,12,3,0,15,15,4,11,13,4,0,15,4,10,11,1,9,4,5,8,5,15,4,9,15,8,5,10,14,2,0,15,4,13", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"4\", \"9\", \"15\", \"8\"], \"clip_start\": 115.0, \"clip_end\": 120.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,1,9,4,5,12,12,12,2,0,8,5,14,9,4,2,0,8,6,15,4,3,0,15,4,4,0,15,4,5,12,12,4,13,8,5,14,2,5,14,9,4,2,13,8,5,12,12,4,6,2,5,11,13,9,4,7,13,14,9,15,8,5,10,11,13,9,4,5,10,9,15,8,5,10,6,15,4,5,15,4,9,3,0,15,7,13,8,5,14,2,0,8,5,12,12,3,0,15,15,4,11,13,4,0,15,4,10,11,1,9,4,5,8,5,15,4,9,15,8,5,10,14,2,0,15,4,13", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"13\", \"8\"], \"clip_start\": 84.0, \"clip_end\": 88.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,1,9,4,5,12,12,12,2,0,8,5,14,9,4,2,0,8,6,15,4,3,0,15,4,4,0,15,4,5,12,12,4,13,8,5,14,2,5,14,9,4,2,13,8,5,12,12,4,6,2,5,11,13,9,4,7,13,14,9,15,8,5,10,11,13,9,4,5,10,9,15,8,5,10,6,15,4,5,15,4,9,3,0,15,7,13,8,5,14,2,0,8,5,12,12,3,0,15,15,4,11,13,4,0,15,4,10,11,1,9,4,5,8,5,15,4,9,15,8,5,10,14,2,0,15,4,13", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"5\", \"12\", \"12\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q5_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,1,9,4,5,12,12,12,2,0,8,5,14,9,4,2,0,8,6,15,4,3,0,15,4,4,0,15,4,5,12,12,4,13,8,5,14,2,5,14,9,4,2,13,8,5,12,12,4,6,2,5,11,13,9,4,7,13,14,9,15,8,5,10,11,13,9,4,5,10,9,15,8,5,10,6,15,4,5,15,4,9,3,0,15,7,13,8,5,14,2,0,8,5,12,12,3,0,15,15,4,11,13,4,0,15,4,10,11,1,9,4,5,8,5,15,4,9,15,8,5,10,14,2,0,15,4,13", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"14\", \"9\", \"15\"], \"clip_start\": 56.0, \"clip_end\": 61.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,1,9,4,5,12,12,12,2,0,8,5,14,9,4,2,0,8,6,15,4,3,0,15,4,4,0,15,4,5,12,12,4,13,8,5,14,2,5,14,9,4,2,13,8,5,12,12,4,6,2,5,11,13,9,4,7,13,14,9,15,8,5,10,11,13,9,4,5,10,9,15,8,5,10,6,15,4,5,15,4,9,3,0,15,7,13,8,5,14,2,0,8,5,12,12,3,0,15,15,4,11,13,4,0,15,4,10,11,1,9,4,5,8,5,15,4,9,15,8,5,10,14,2,0,15,4,13", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"2\", \"0\", \"8\", \"5\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,1,9,4,5,12,12,12,2,0,8,5,14,9,4,2,0,8,6,15,4,3,0,15,4,4,0,15,4,5,12,12,4,13,8,5,14,2,5,14,9,4,2,13,8,5,12,12,4,6,2,5,11,13,9,4,7,13,14,9,15,8,5,10,11,13,9,4,5,10,9,15,8,5,10,6,15,4,5,15,4,9,3,0,15,7,13,8,5,14,2,0,8,5,12,12,3,0,15,15,4,11,13,4,0,15,4,10,11,1,9,4,5,8,5,15,4,9,15,8,5,10,14,2,0,15,4,13", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"7\", \"13\", \"14\"], \"clip_start\": 55.0, \"clip_end\": 59.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,1,9,4,5,12,12,12,2,0,8,5,14,9,4,2,0,8,6,15,4,3,0,15,4,4,0,15,4,5,12,12,4,13,8,5,14,2,5,14,9,4,2,13,8,5,12,12,4,6,2,5,11,13,9,4,7,13,14,9,15,8,5,10,11,13,9,4,5,10,9,15,8,5,10,6,15,4,5,15,4,9,3,0,15,7,13,8,5,14,2,0,8,5,12,12,3,0,15,15,4,11,13,4,0,15,4,10,11,1,9,4,5,8,5,15,4,9,15,8,5,10,14,2,0,15,4,13", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"0\", \"15\", \"4\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q9_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,1,9,4,5,12,12,12,2,0,8,5,14,9,4,2,0,8,6,15,4,3,0,15,4,4,0,15,4,5,12,12,4,13,8,5,14,2,5,14,9,4,2,13,8,5,12,12,4,6,2,5,11,13,9,4,7,13,14,9,15,8,5,10,11,13,9,4,5,10,9,15,8,5,10,6,15,4,5,15,4,9,3,0,15,7,13,8,5,14,2,0,8,5,12,12,3,0,15,15,4,11,13,4,0,15,4,10,11,1,9,4,5,8,5,15,4,9,15,8,5,10,14,2,0,15,4,13", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"2\", \"0\", \"8\", \"5\"], \"clip_start\": 88.0, \"clip_end\": 94.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,1,9,4,5,12,12,12,2,0,8,5,14,9,4,2,0,8,6,15,4,3,0,15,4,4,0,15,4,5,12,12,4,13,8,5,14,2,5,14,9,4,2,13,8,5,12,12,4,6,2,5,11,13,9,4,7,13,14,9,15,8,5,10,11,13,9,4,5,10,9,15,8,5,10,6,15,4,5,15,4,9,3,0,15,7,13,8,5,14,2,0,8,5,12,12,3,0,15,15,4,11,13,4,0,15,4,10,11,1,9,4,5,8,5,15,4,9,15,8,5,10,14,2,0,15,4,13", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"9\", \"4\", \"5\", \"10\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q11_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,1,9,4,5,12,12,12,2,0,8,5,14,9,4,2,0,8,6,15,4,3,0,15,4,4,0,15,4,5,12,12,4,13,8,5,14,2,5,14,9,4,2,13,8,5,12,12,4,6,2,5,11,13,9,4,7,13,14,9,15,8,5,10,11,13,9,4,5,10,9,15,8,5,10,6,15,4,5,15,4,9,3,0,15,7,13,8,5,14,2,0,8,5,12,12,3,0,15,15,4,11,13,4,0,15,4,10,11,1,9,4,5,8,5,15,4,9,15,8,5,10,14,2,0,15,4,13", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"2\", \"5\", \"11\", \"13\"], \"clip_start\": 48.0, \"clip_end\": 54.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q12_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,1,9,4,5,12,12,12,2,0,8,5,14,9,4,2,0,8,6,15,4,3,0,15,4,4,0,15,4,5,12,12,4,13,8,5,14,2,5,14,9,4,2,13,8,5,12,12,4,6,2,5,11,13,9,4,7,13,14,9,15,8,5,10,11,13,9,4,5,10,9,15,8,5,10,6,15,4,5,15,4,9,3,0,15,7,13,8,5,14,2,0,8,5,12,12,3,0,15,15,4,11,13,4,0,15,4,10,11,1,9,4,5,8,5,15,4,9,15,8,5,10,14,2,0,15,4,13", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"9\", \"1\", \"6\"], \"clip_start\": 49.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,1,9,4,5,12,12,12,2,0,8,5,14,9,4,2,0,8,6,15,4,3,0,15,4,4,0,15,4,5,12,12,4,13,8,5,14,2,5,14,9,4,2,13,8,5,12,12,4,6,2,5,11,13,9,4,7,13,14,9,15,8,5,10,11,13,9,4,5,10,9,15,8,5,10,6,15,4,5,15,4,9,3,0,15,7,13,8,5,14,2,0,8,5,12,12,3,0,15,15,4,11,13,4,0,15,4,10,11,1,9,4,5,8,5,15,4,9,15,8,5,10,14,2,0,15,4,13", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"12\", \"4\", \"6\"], \"clip_start\": 45.0, \"clip_end\": 50.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q14_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,1,9,4,5,12,12,12,2,0,8,5,14,9,4,2,0,8,6,15,4,3,0,15,4,4,0,15,4,5,12,12,4,13,8,5,14,2,5,14,9,4,2,13,8,5,12,12,4,6,2,5,11,13,9,4,7,13,14,9,15,8,5,10,11,13,9,4,5,10,9,15,8,5,10,6,15,4,5,15,4,9,3,0,15,7,13,8,5,14,2,0,8,5,12,12,3,0,15,15,4,11,13,4,0,15,4,10,11,1,9,4,5,8,5,15,4,9,15,8,5,10,14,2,0,15,4,13", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"0\"], \"clip_start\": 53.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,1,9,4,5,12,12,12,2,0,8,5,14,9,4,2,0,8,6,15,4,3,0,15,4,4,0,15,4,5,12,12,4,13,8,5,14,2,5,14,9,4,2,13,8,5,12,12,4,6,2,5,11,13,9,4,7,13,14,9,15,8,5,10,11,13,9,4,5,10,9,15,8,5,10,6,15,4,5,15,4,9,3,0,15,7,13,8,5,14,2,0,8,5,12,12,3,0,15,15,4,11,13,4,0,15,4,10,11,1,9,4,5,8,5,15,4,9,15,8,5,10,14,2,0,15,4,13", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"14\", \"8\", \"7\", \"13\"], \"clip_start\": 84.0, \"clip_end\": 90.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,12,1,0,10,4,9,14,8,5,2,3,13,14,8,7,13,3,7,13,3,13,3,7,12,2,15,12,2,3,7,12,1,11,5,2,3,6,5,2,6,9,13,1,14,11,5,2,3,7,12,1,10,1,10,14,11,5,13,12,1,0,10,0,10,3,13,14,11,5,2,3,13,12,1,6,0,10,2,13,3,7,13,3,7,13,14,8,7,13,14,11,5,2,3,13,3,7,4,2,11,5,2,3,7,12,1,6,0,10,4,9,1,14,8,7,13,12,1,11,5,2,7,12,1,11,5,2", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"3\", \"7\", \"13\"], \"clip_start\": 78.0, \"clip_end\": 83.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,12,1,0,10,4,9,14,8,5,2,3,13,14,8,7,13,3,7,13,3,13,3,7,12,2,15,12,2,3,7,12,1,11,5,2,3,6,5,2,6,9,13,1,14,11,5,2,3,7,12,1,10,1,10,14,11,5,13,12,1,0,10,0,10,3,13,14,11,5,2,3,13,12,1,6,0,10,2,13,3,7,13,3,7,13,14,8,7,13,14,11,5,2,3,13,3,7,4,2,11,5,2,3,7,12,1,6,0,10,4,9,1,14,8,7,13,12,1,11,5,2,7,12,1,11,5,2", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"12\", \"1\", \"11\"], \"clip_start\": 115.0, \"clip_end\": 120.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,12,1,0,10,4,9,14,8,5,2,3,13,14,8,7,13,3,7,13,3,13,3,7,12,2,15,12,2,3,7,12,1,11,5,2,3,6,5,2,6,9,13,1,14,11,5,2,3,7,12,1,10,1,10,14,11,5,13,12,1,0,10,0,10,3,13,14,11,5,2,3,13,12,1,6,0,10,2,13,3,7,13,3,7,13,14,8,7,13,14,11,5,2,3,13,3,7,4,2,11,5,2,3,7,12,1,6,0,10,4,9,1,14,8,7,13,12,1,11,5,2,7,12,1,11,5,2", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"3\", \"7\", \"13\"], \"clip_start\": 15.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,12,1,0,10,4,9,14,8,5,2,3,13,14,8,7,13,3,7,13,3,13,3,7,12,2,15,12,2,3,7,12,1,11,5,2,3,6,5,2,6,9,13,1,14,11,5,2,3,7,12,1,10,1,10,14,11,5,13,12,1,0,10,0,10,3,13,14,11,5,2,3,13,12,1,6,0,10,2,13,3,7,13,3,7,13,14,8,7,13,14,11,5,2,3,13,3,7,4,2,11,5,2,3,7,12,1,6,0,10,4,9,1,14,8,7,13,12,1,11,5,2,7,12,1,11,5,2", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"13\"], \"clip_start\": 17.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,12,1,0,10,4,9,14,8,5,2,3,13,14,8,7,13,3,7,13,3,13,3,7,12,2,15,12,2,3,7,12,1,11,5,2,3,6,5,2,6,9,13,1,14,11,5,2,3,7,12,1,10,1,10,14,11,5,13,12,1,0,10,0,10,3,13,14,11,5,2,3,13,12,1,6,0,10,2,13,3,7,13,3,7,13,14,8,7,13,14,11,5,2,3,13,3,7,4,2,11,5,2,3,7,12,1,6,0,10,4,9,1,14,8,7,13,12,1,11,5,2,7,12,1,11,5,2", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"11\", \"5\", \"2\", \"3\"], \"clip_start\": 89.0, \"clip_end\": 95.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,12,1,0,10,4,9,14,8,5,2,3,13,14,8,7,13,3,7,13,3,13,3,7,12,2,15,12,2,3,7,12,1,11,5,2,3,6,5,2,6,9,13,1,14,11,5,2,3,7,12,1,10,1,10,14,11,5,13,12,1,0,10,0,10,3,13,14,11,5,2,3,13,12,1,6,0,10,2,13,3,7,13,3,7,13,14,8,7,13,14,11,5,2,3,13,3,7,4,2,11,5,2,3,7,12,1,6,0,10,4,9,1,14,8,7,13,12,1,11,5,2,7,12,1,11,5,2", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 65.0, \"clip_end\": 68.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,12,1,0,10,4,9,14,8,5,2,3,13,14,8,7,13,3,7,13,3,13,3,7,12,2,15,12,2,3,7,12,1,11,5,2,3,6,5,2,6,9,13,1,14,11,5,2,3,7,12,1,10,1,10,14,11,5,13,12,1,0,10,0,10,3,13,14,11,5,2,3,13,12,1,6,0,10,2,13,3,7,13,3,7,13,14,8,7,13,14,11,5,2,3,13,3,7,4,2,11,5,2,3,7,12,1,6,0,10,4,9,1,14,8,7,13,12,1,11,5,2,7,12,1,11,5,2", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"1\", \"11\", \"5\", \"2\"], \"clip_start\": 30.0, \"clip_end\": 36.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,12,1,0,10,4,9,14,8,5,2,3,13,14,8,7,13,3,7,13,3,13,3,7,12,2,15,12,2,3,7,12,1,11,5,2,3,6,5,2,6,9,13,1,14,11,5,2,3,7,12,1,10,1,10,14,11,5,13,12,1,0,10,0,10,3,13,14,11,5,2,3,13,12,1,6,0,10,2,13,3,7,13,3,7,13,14,8,7,13,14,11,5,2,3,13,3,7,4,2,11,5,2,3,7,12,1,6,0,10,4,9,1,14,8,7,13,12,1,11,5,2,7,12,1,11,5,2", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"5\", \"2\"], \"clip_start\": 99.0, \"clip_end\": 103.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,12,1,0,10,4,9,14,8,5,2,3,13,14,8,7,13,3,7,13,3,13,3,7,12,2,15,12,2,3,7,12,1,11,5,2,3,6,5,2,6,9,13,1,14,11,5,2,3,7,12,1,10,1,10,14,11,5,13,12,1,0,10,0,10,3,13,14,11,5,2,3,13,12,1,6,0,10,2,13,3,7,13,3,7,13,14,8,7,13,14,11,5,2,3,13,3,7,4,2,11,5,2,3,7,12,1,6,0,10,4,9,1,14,8,7,13,12,1,11,5,2,7,12,1,11,5,2", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"12\", \"1\"], \"clip_start\": 29.0, \"clip_end\": 33.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,12,1,0,10,4,9,14,8,5,2,3,13,14,8,7,13,3,7,13,3,13,3,7,12,2,15,12,2,3,7,12,1,11,5,2,3,6,5,2,6,9,13,1,14,11,5,2,3,7,12,1,10,1,10,14,11,5,13,12,1,0,10,0,10,3,13,14,11,5,2,3,13,12,1,6,0,10,2,13,3,7,13,3,7,13,14,8,7,13,14,11,5,2,3,13,3,7,4,2,11,5,2,3,7,12,1,6,0,10,4,9,1,14,8,7,13,12,1,11,5,2,7,12,1,11,5,2", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"1\", \"11\", \"5\"], \"clip_start\": 117.0, \"clip_end\": 121.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,12,1,0,10,4,9,14,8,5,2,3,13,14,8,7,13,3,7,13,3,13,3,7,12,2,15,12,2,3,7,12,1,11,5,2,3,6,5,2,6,9,13,1,14,11,5,2,3,7,12,1,10,1,10,14,11,5,13,12,1,0,10,0,10,3,13,14,11,5,2,3,13,12,1,6,0,10,2,13,3,7,13,3,7,13,14,8,7,13,14,11,5,2,3,13,3,7,4,2,11,5,2,3,7,12,1,6,0,10,4,9,1,14,8,7,13,12,1,11,5,2,7,12,1,11,5,2", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,12,1,0,10,4,9,14,8,5,2,3,13,14,8,7,13,3,7,13,3,13,3,7,12,2,15,12,2,3,7,12,1,11,5,2,3,6,5,2,6,9,13,1,14,11,5,2,3,7,12,1,10,1,10,14,11,5,13,12,1,0,10,0,10,3,13,14,11,5,2,3,13,12,1,6,0,10,2,13,3,7,13,3,7,13,14,8,7,13,14,11,5,2,3,13,3,7,4,2,11,5,2,3,7,12,1,6,0,10,4,9,1,14,8,7,13,12,1,11,5,2,7,12,1,11,5,2", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"8\", \"5\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,12,1,0,10,4,9,14,8,5,2,3,13,14,8,7,13,3,7,13,3,13,3,7,12,2,15,12,2,3,7,12,1,11,5,2,3,6,5,2,6,9,13,1,14,11,5,2,3,7,12,1,10,1,10,14,11,5,13,12,1,0,10,0,10,3,13,14,11,5,2,3,13,12,1,6,0,10,2,13,3,7,13,3,7,13,14,8,7,13,14,11,5,2,3,13,3,7,4,2,11,5,2,3,7,12,1,6,0,10,4,9,1,14,8,7,13,12,1,11,5,2,7,12,1,11,5,2", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 124.0, \"clip_end\": 127.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,12,1,0,10,4,9,14,8,5,2,3,13,14,8,7,13,3,7,13,3,13,3,7,12,2,15,12,2,3,7,12,1,11,5,2,3,6,5,2,6,9,13,1,14,11,5,2,3,7,12,1,10,1,10,14,11,5,13,12,1,0,10,0,10,3,13,14,11,5,2,3,13,12,1,6,0,10,2,13,3,7,13,3,7,13,14,8,7,13,14,11,5,2,3,13,3,7,4,2,11,5,2,3,7,12,1,6,0,10,4,9,1,14,8,7,13,12,1,11,5,2,7,12,1,11,5,2", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"12\", \"1\"], \"clip_start\": 121.0, \"clip_end\": 125.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,12,1,0,10,4,9,14,8,5,2,3,13,14,8,7,13,3,7,13,3,13,3,7,12,2,15,12,2,3,7,12,1,11,5,2,3,6,5,2,6,9,13,1,14,11,5,2,3,7,12,1,10,1,10,14,11,5,13,12,1,0,10,0,10,3,13,14,11,5,2,3,13,12,1,6,0,10,2,13,3,7,13,3,7,13,14,8,7,13,14,11,5,2,3,13,3,7,4,2,11,5,2,3,7,12,1,6,0,10,4,9,1,14,8,7,13,12,1,11,5,2,7,12,1,11,5,2", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 38.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,12,1,0,10,4,9,14,8,5,2,3,13,14,8,7,13,3,7,13,3,13,3,7,12,2,15,12,2,3,7,12,1,11,5,2,3,6,5,2,6,9,13,1,14,11,5,2,3,7,12,1,10,1,10,14,11,5,13,12,1,0,10,0,10,3,13,14,11,5,2,3,13,12,1,6,0,10,2,13,3,7,13,3,7,13,14,8,7,13,14,11,5,2,3,13,3,7,4,2,11,5,2,3,7,12,1,6,0,10,4,9,1,14,8,7,13,12,1,11,5,2,7,12,1,11,5,2", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"2\", \"12\", \"0\", \"1\", \"14\"], \"clip_start\": 53.0, \"clip_end\": 59.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,2,5,10,1,4,15,0,0,7,10,1,4,15,0,1,1,14,7,10,1,4,15,0,1,1,14,7,2,13,8,0,1,14,0,1,14,2,9,15,0,3,12,0,0,1,1,4,15,0,0,1,14,2,12,0,1,14,7,10,1,4,15,0,0,1,1,8,0,1,14,2,14,7,2,6,11,3,1,8,0,1,1,8,9,3,4,15,0,1,14,2,13,4,15,0,0,1,1,4,15,0,1,14,2,10,1,4,15,0,0,1,1,8,0,1,1,8,0,1,1,9,3,4,15,0,0", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"15\", \"0\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,2,5,10,1,4,15,0,0,7,10,1,4,15,0,1,1,14,7,10,1,4,15,0,1,1,14,7,2,13,8,0,1,14,0,1,14,2,9,15,0,3,12,0,0,1,1,4,15,0,0,1,14,2,12,0,1,14,7,10,1,4,15,0,0,1,1,8,0,1,14,2,14,7,2,6,11,3,1,8,0,1,1,8,9,3,4,15,0,1,14,2,13,4,15,0,0,1,1,4,15,0,1,14,2,10,1,4,15,0,0,1,1,8,0,1,1,8,0,1,1,9,3,4,15,0,0", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"1\", \"4\", \"15\", \"0\"], \"clip_start\": 46.0, \"clip_end\": 51.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,2,5,10,1,4,15,0,0,7,10,1,4,15,0,1,1,14,7,10,1,4,15,0,1,1,14,7,2,13,8,0,1,14,0,1,14,2,9,15,0,3,12,0,0,1,1,4,15,0,0,1,14,2,12,0,1,14,7,10,1,4,15,0,0,1,1,8,0,1,14,2,14,7,2,6,11,3,1,8,0,1,1,8,9,3,4,15,0,1,14,2,13,4,15,0,0,1,1,4,15,0,1,14,2,10,1,4,15,0,0,1,1,8,0,1,1,8,0,1,1,9,3,4,15,0,0", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 105.0, \"clip_end\": 110.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,2,5,10,1,4,15,0,0,7,10,1,4,15,0,1,1,14,7,10,1,4,15,0,1,1,14,7,2,13,8,0,1,14,0,1,14,2,9,15,0,3,12,0,0,1,1,4,15,0,0,1,14,2,12,0,1,14,7,10,1,4,15,0,0,1,1,8,0,1,14,2,14,7,2,6,11,3,1,8,0,1,1,8,9,3,4,15,0,1,14,2,13,4,15,0,0,1,1,4,15,0,1,14,2,10,1,4,15,0,0,1,1,8,0,1,1,8,0,1,1,9,3,4,15,0,0", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 102.0, \"clip_end\": 105.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,2,5,10,1,4,15,0,0,7,10,1,4,15,0,1,1,14,7,10,1,4,15,0,1,1,14,7,2,13,8,0,1,14,0,1,14,2,9,15,0,3,12,0,0,1,1,4,15,0,0,1,14,2,12,0,1,14,7,10,1,4,15,0,0,1,1,8,0,1,14,2,14,7,2,6,11,3,1,8,0,1,1,8,9,3,4,15,0,1,14,2,13,4,15,0,0,1,1,4,15,0,1,14,2,10,1,4,15,0,0,1,1,8,0,1,1,8,0,1,1,9,3,4,15,0,0", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"3\", \"4\", \"15\", \"0\"], \"clip_start\": 84.0, \"clip_end\": 90.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,2,5,10,1,4,15,0,0,7,10,1,4,15,0,1,1,14,7,10,1,4,15,0,1,1,14,7,2,13,8,0,1,14,0,1,14,2,9,15,0,3,12,0,0,1,1,4,15,0,0,1,14,2,12,0,1,14,7,10,1,4,15,0,0,1,1,8,0,1,14,2,14,7,2,6,11,3,1,8,0,1,1,8,9,3,4,15,0,1,14,2,13,4,15,0,0,1,1,4,15,0,1,14,2,10,1,4,15,0,0,1,1,8,0,1,1,8,0,1,1,9,3,4,15,0,0", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"1\", \"8\", \"9\"], \"clip_start\": 82.0, \"clip_end\": 86.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,2,5,10,1,4,15,0,0,7,10,1,4,15,0,1,1,14,7,10,1,4,15,0,1,1,14,7,2,13,8,0,1,14,0,1,14,2,9,15,0,3,12,0,0,1,1,4,15,0,0,1,14,2,12,0,1,14,7,10,1,4,15,0,0,1,1,8,0,1,14,2,14,7,2,6,11,3,1,8,0,1,1,8,9,3,4,15,0,1,14,2,13,4,15,0,0,1,1,4,15,0,1,14,2,10,1,4,15,0,0,1,1,8,0,1,1,8,0,1,1,9,3,4,15,0,0", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"15\", \"0\", \"0\", \"1\"], \"clip_start\": 93.0, \"clip_end\": 99.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,2,5,10,1,4,15,0,0,7,10,1,4,15,0,1,1,14,7,10,1,4,15,0,1,1,14,7,2,13,8,0,1,14,0,1,14,2,9,15,0,3,12,0,0,1,1,4,15,0,0,1,14,2,12,0,1,14,7,10,1,4,15,0,0,1,1,8,0,1,14,2,14,7,2,6,11,3,1,8,0,1,1,8,9,3,4,15,0,1,14,2,13,4,15,0,0,1,1,4,15,0,1,14,2,10,1,4,15,0,0,1,1,8,0,1,1,8,0,1,1,9,3,4,15,0,0", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"0\", \"1\", \"14\", \"2\", \"13\"], \"clip_start\": 88.0, \"clip_end\": 94.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,2,5,10,1,4,15,0,0,7,10,1,4,15,0,1,1,14,7,10,1,4,15,0,1,1,14,7,2,13,8,0,1,14,0,1,14,2,9,15,0,3,12,0,0,1,1,4,15,0,0,1,14,2,12,0,1,14,7,10,1,4,15,0,0,1,1,8,0,1,14,2,14,7,2,6,11,3,1,8,0,1,1,8,9,3,4,15,0,1,14,2,13,4,15,0,0,1,1,4,15,0,1,14,2,10,1,4,15,0,0,1,1,8,0,1,1,8,0,1,1,9,3,4,15,0,0", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 58.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,2,5,10,1,4,15,0,0,7,10,1,4,15,0,1,1,14,7,10,1,4,15,0,1,1,14,7,2,13,8,0,1,14,0,1,14,2,9,15,0,3,12,0,0,1,1,4,15,0,0,1,14,2,12,0,1,14,7,10,1,4,15,0,0,1,1,8,0,1,14,2,14,7,2,6,11,3,1,8,0,1,1,8,9,3,4,15,0,1,14,2,13,4,15,0,0,1,1,4,15,0,1,14,2,10,1,4,15,0,0,1,1,8,0,1,1,8,0,1,1,9,3,4,15,0,0", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 103.0, \"clip_end\": 107.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,2,5,10,1,4,15,0,0,7,10,1,4,15,0,1,1,14,7,10,1,4,15,0,1,1,14,7,2,13,8,0,1,14,0,1,14,2,9,15,0,3,12,0,0,1,1,4,15,0,0,1,14,2,12,0,1,14,7,10,1,4,15,0,0,1,1,8,0,1,14,2,14,7,2,6,11,3,1,8,0,1,1,8,9,3,4,15,0,1,14,2,13,4,15,0,0,1,1,4,15,0,1,14,2,10,1,4,15,0,0,1,1,8,0,1,1,8,0,1,1,9,3,4,15,0,0", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"0\", \"1\", \"14\", \"2\", \"14\"], \"clip_start\": 68.0, \"clip_end\": 74.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,2,5,10,1,4,15,0,0,7,10,1,4,15,0,1,1,14,7,10,1,4,15,0,1,1,14,7,2,13,8,0,1,14,0,1,14,2,9,15,0,3,12,0,0,1,1,4,15,0,0,1,14,2,12,0,1,14,7,10,1,4,15,0,0,1,1,8,0,1,14,2,14,7,2,6,11,3,1,8,0,1,1,8,9,3,4,15,0,1,14,2,13,4,15,0,0,1,1,4,15,0,1,14,2,10,1,4,15,0,0,1,1,8,0,1,1,8,0,1,1,9,3,4,15,0,0", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"1\", \"14\"], \"clip_start\": 15.0, \"clip_end\": 19.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,2,5,10,1,4,15,0,0,7,10,1,4,15,0,1,1,14,7,10,1,4,15,0,1,1,14,7,2,13,8,0,1,14,0,1,14,2,9,15,0,3,12,0,0,1,1,4,15,0,0,1,14,2,12,0,1,14,7,10,1,4,15,0,0,1,1,8,0,1,14,2,14,7,2,6,11,3,1,8,0,1,1,8,9,3,4,15,0,1,14,2,13,4,15,0,0,1,1,4,15,0,1,14,2,10,1,4,15,0,0,1,1,8,0,1,1,8,0,1,1,9,3,4,15,0,0", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"15\", \"0\", \"3\"], \"clip_start\": 39.0, \"clip_end\": 43.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,2,5,10,1,4,15,0,0,7,10,1,4,15,0,1,1,14,7,10,1,4,15,0,1,1,14,7,2,13,8,0,1,14,0,1,14,2,9,15,0,3,12,0,0,1,1,4,15,0,0,1,14,2,12,0,1,14,7,10,1,4,15,0,0,1,1,8,0,1,14,2,14,7,2,6,11,3,1,8,0,1,1,8,9,3,4,15,0,1,14,2,13,4,15,0,0,1,1,4,15,0,1,14,2,10,1,4,15,0,0,1,1,8,0,1,1,8,0,1,1,9,3,4,15,0,0", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"0\", \"1\", \"1\", \"14\"], \"clip_start\": 22.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,2,5,10,1,4,15,0,0,7,10,1,4,15,0,1,1,14,7,10,1,4,15,0,1,1,14,7,2,13,8,0,1,14,0,1,14,2,9,15,0,3,12,0,0,1,1,4,15,0,0,1,14,2,12,0,1,14,7,10,1,4,15,0,0,1,1,8,0,1,14,2,14,7,2,6,11,3,1,8,0,1,1,8,9,3,4,15,0,1,14,2,13,4,15,0,0,1,1,4,15,0,1,14,2,10,1,4,15,0,0,1,1,8,0,1,1,8,0,1,1,9,3,4,15,0,0", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"0\", \"1\", \"1\", \"8\", \"0\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,2,5,10,1,4,15,0,0,7,10,1,4,15,0,1,1,14,7,10,1,4,15,0,1,1,14,7,2,13,8,0,1,14,0,1,14,2,9,15,0,3,12,0,0,1,1,4,15,0,0,1,14,2,12,0,1,14,7,10,1,4,15,0,0,1,1,8,0,1,14,2,14,7,2,6,11,3,1,8,0,1,1,8,9,3,4,15,0,1,14,2,13,4,15,0,0,1,1,4,15,0,1,14,2,10,1,4,15,0,0,1,1,8,0,1,1,8,0,1,1,9,3,4,15,0,0", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"10\", \"13\", \"2\", \"11\"], \"clip_start\": 100.0, \"clip_end\": 106.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,12,7,11,10,13,9,10,13,2,4,0,10,15,10,13,2,12,3,4,4,2,2,1,0,10,13,9,5,1,15,13,5,11,0,14,5,9,15,13,5,6,6,3,4,1,11,7,11,15,10,13,2,1,15,10,13,2,12,11,1,11,0,14,5,9,15,13,5,10,13,2,8,13,9,10,13,11,10,13,9,10,13,9,10,13,2,12,2,10,13,2,3,4,15,13,5,12,3,11,15,10,13,2,11,6,11,2,12,3,4,5,4,6,9,10,13,2,13,2,8,2,15,10,13,2,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"11\", \"0\", \"14\"], \"clip_start\": 61.0, \"clip_end\": 65.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,12,7,11,10,13,9,10,13,2,4,0,10,15,10,13,2,12,3,4,4,2,2,1,0,10,13,9,5,1,15,13,5,11,0,14,5,9,15,13,5,6,6,3,4,1,11,7,11,15,10,13,2,1,15,10,13,2,12,11,1,11,0,14,5,9,15,13,5,10,13,2,8,13,9,10,13,11,10,13,9,10,13,9,10,13,2,12,2,10,13,2,3,4,15,13,5,12,3,11,15,10,13,2,11,6,11,2,12,3,4,5,4,6,9,10,13,2,13,2,8,2,15,10,13,2,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"10\", \"13\", \"2\", \"12\", \"3\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,12,7,11,10,13,9,10,13,2,4,0,10,15,10,13,2,12,3,4,4,2,2,1,0,10,13,9,5,1,15,13,5,11,0,14,5,9,15,13,5,6,6,3,4,1,11,7,11,15,10,13,2,1,15,10,13,2,12,11,1,11,0,14,5,9,15,13,5,10,13,2,8,13,9,10,13,11,10,13,9,10,13,9,10,13,2,12,2,10,13,2,3,4,15,13,5,12,3,11,15,10,13,2,11,6,11,2,12,3,4,5,4,6,9,10,13,2,13,2,8,2,15,10,13,2,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 18.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,12,7,11,10,13,9,10,13,2,4,0,10,15,10,13,2,12,3,4,4,2,2,1,0,10,13,9,5,1,15,13,5,11,0,14,5,9,15,13,5,6,6,3,4,1,11,7,11,15,10,13,2,1,15,10,13,2,12,11,1,11,0,14,5,9,15,13,5,10,13,2,8,13,9,10,13,11,10,13,9,10,13,9,10,13,2,12,2,10,13,2,3,4,15,13,5,12,3,11,15,10,13,2,11,6,11,2,12,3,4,5,4,6,9,10,13,2,13,2,8,2,15,10,13,2,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"9\", \"10\", \"13\", \"11\"], \"clip_start\": 74.0, \"clip_end\": 79.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,12,7,11,10,13,9,10,13,2,4,0,10,15,10,13,2,12,3,4,4,2,2,1,0,10,13,9,5,1,15,13,5,11,0,14,5,9,15,13,5,6,6,3,4,1,11,7,11,15,10,13,2,1,15,10,13,2,12,11,1,11,0,14,5,9,15,13,5,10,13,2,8,13,9,10,13,11,10,13,9,10,13,9,10,13,2,12,2,10,13,2,3,4,15,13,5,12,3,11,15,10,13,2,11,6,11,2,12,3,4,5,4,6,9,10,13,2,13,2,8,2,15,10,13,2,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"12\", \"3\", \"4\", \"5\"], \"clip_start\": 107.0, \"clip_end\": 113.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,12,7,11,10,13,9,10,13,2,4,0,10,15,10,13,2,12,3,4,4,2,2,1,0,10,13,9,5,1,15,13,5,11,0,14,5,9,15,13,5,6,6,3,4,1,11,7,11,15,10,13,2,1,15,10,13,2,12,11,1,11,0,14,5,9,15,13,5,10,13,2,8,13,9,10,13,11,10,13,9,10,13,9,10,13,2,12,2,10,13,2,3,4,15,13,5,12,3,11,15,10,13,2,11,6,11,2,12,3,4,5,4,6,9,10,13,2,13,2,8,2,15,10,13,2,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"4\", \"12\", \"7\", \"11\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q6_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,12,7,11,10,13,9,10,13,2,4,0,10,15,10,13,2,12,3,4,4,2,2,1,0,10,13,9,5,1,15,13,5,11,0,14,5,9,15,13,5,6,6,3,4,1,11,7,11,15,10,13,2,1,15,10,13,2,12,11,1,11,0,14,5,9,15,13,5,10,13,2,8,13,9,10,13,11,10,13,9,10,13,9,10,13,2,12,2,10,13,2,3,4,15,13,5,12,3,11,15,10,13,2,11,6,11,2,12,3,4,5,4,6,9,10,13,2,13,2,8,2,15,10,13,2,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"2\", \"12\", \"3\", \"4\", \"4\"], \"clip_start\": 16.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q7_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,12,7,11,10,13,9,10,13,2,4,0,10,15,10,13,2,12,3,4,4,2,2,1,0,10,13,9,5,1,15,13,5,11,0,14,5,9,15,13,5,6,6,3,4,1,11,7,11,15,10,13,2,1,15,10,13,2,12,11,1,11,0,14,5,9,15,13,5,10,13,2,8,13,9,10,13,11,10,13,9,10,13,9,10,13,2,12,2,10,13,2,3,4,15,13,5,12,3,11,15,10,13,2,11,6,11,2,12,3,4,5,4,6,9,10,13,2,13,2,8,2,15,10,13,2,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"8\", \"13\", \"9\", \"10\"], \"clip_start\": 72.0, \"clip_end\": 77.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,12,7,11,10,13,9,10,13,2,4,0,10,15,10,13,2,12,3,4,4,2,2,1,0,10,13,9,5,1,15,13,5,11,0,14,5,9,15,13,5,6,6,3,4,1,11,7,11,15,10,13,2,1,15,10,13,2,12,11,1,11,0,14,5,9,15,13,5,10,13,2,8,13,9,10,13,11,10,13,9,10,13,9,10,13,2,12,2,10,13,2,3,4,15,13,5,12,3,11,15,10,13,2,11,6,11,2,12,3,4,5,4,6,9,10,13,2,13,2,8,2,15,10,13,2,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"5\", \"12\"], \"clip_start\": 95.0, \"clip_end\": 99.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q9_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,12,7,11,10,13,9,10,13,2,4,0,10,15,10,13,2,12,3,4,4,2,2,1,0,10,13,9,5,1,15,13,5,11,0,14,5,9,15,13,5,6,6,3,4,1,11,7,11,15,10,13,2,1,15,10,13,2,12,11,1,11,0,14,5,9,15,13,5,10,13,2,8,13,9,10,13,11,10,13,9,10,13,9,10,13,2,12,2,10,13,2,3,4,15,13,5,12,3,11,15,10,13,2,11,6,11,2,12,3,4,5,4,6,9,10,13,2,13,2,8,2,15,10,13,2,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"13\", \"2\", \"12\", \"2\"], \"clip_start\": 85.0, \"clip_end\": 90.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q10_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,12,7,11,10,13,9,10,13,2,4,0,10,15,10,13,2,12,3,4,4,2,2,1,0,10,13,9,5,1,15,13,5,11,0,14,5,9,15,13,5,6,6,3,4,1,11,7,11,15,10,13,2,1,15,10,13,2,12,11,1,11,0,14,5,9,15,13,5,10,13,2,8,13,9,10,13,11,10,13,9,10,13,9,10,13,2,12,2,10,13,2,3,4,15,13,5,12,3,11,15,10,13,2,11,6,11,2,12,3,4,5,4,6,9,10,13,2,13,2,8,2,15,10,13,2,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"2\", \"15\", \"10\", \"13\", \"2\"], \"clip_start\": 121.0, \"clip_end\": 127.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,12,7,11,10,13,9,10,13,2,4,0,10,15,10,13,2,12,3,4,4,2,2,1,0,10,13,9,5,1,15,13,5,11,0,14,5,9,15,13,5,6,6,3,4,1,11,7,11,15,10,13,2,1,15,10,13,2,12,11,1,11,0,14,5,9,15,13,5,10,13,2,8,13,9,10,13,11,10,13,9,10,13,9,10,13,2,12,2,10,13,2,3,4,15,13,5,12,3,11,15,10,13,2,11,6,11,2,12,3,4,5,4,6,9,10,13,2,13,2,8,2,15,10,13,2,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"4\", \"4\", \"2\", \"2\", \"1\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,12,7,11,10,13,9,10,13,2,4,0,10,15,10,13,2,12,3,4,4,2,2,1,0,10,13,9,5,1,15,13,5,11,0,14,5,9,15,13,5,6,6,3,4,1,11,7,11,15,10,13,2,1,15,10,13,2,12,11,1,11,0,14,5,9,15,13,5,10,13,2,8,13,9,10,13,11,10,13,9,10,13,9,10,13,2,12,2,10,13,2,3,4,15,13,5,12,3,11,15,10,13,2,11,6,11,2,12,3,4,5,4,6,9,10,13,2,13,2,8,2,15,10,13,2,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"3\", \"11\", \"15\"], \"clip_start\": 97.0, \"clip_end\": 102.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,12,7,11,10,13,9,10,13,2,4,0,10,15,10,13,2,12,3,4,4,2,2,1,0,10,13,9,5,1,15,13,5,11,0,14,5,9,15,13,5,6,6,3,4,1,11,7,11,15,10,13,2,1,15,10,13,2,12,11,1,11,0,14,5,9,15,13,5,10,13,2,8,13,9,10,13,11,10,13,9,10,13,9,10,13,2,12,2,10,13,2,3,4,15,13,5,12,3,11,15,10,13,2,11,6,11,2,12,3,4,5,4,6,9,10,13,2,13,2,8,2,15,10,13,2,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\", \"2\", \"15\", \"0\"], \"clip_start\": 110.0, \"clip_end\": 116.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q14_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,12,7,11,10,13,9,10,13,2,4,0,10,15,10,13,2,12,3,4,4,2,2,1,0,10,13,9,5,1,15,13,5,11,0,14,5,9,15,13,5,6,6,3,4,1,11,7,11,15,10,13,2,1,15,10,13,2,12,11,1,11,0,14,5,9,15,13,5,10,13,2,8,13,9,10,13,11,10,13,9,10,13,9,10,13,2,12,2,10,13,2,3,4,15,13,5,12,3,11,15,10,13,2,11,6,11,2,12,3,4,5,4,6,9,10,13,2,13,2,8,2,15,10,13,2,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"15\", \"10\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,4,12,7,11,10,13,9,10,13,2,4,0,10,15,10,13,2,12,3,4,4,2,2,1,0,10,13,9,5,1,15,13,5,11,0,14,5,9,15,13,5,6,6,3,4,1,11,7,11,15,10,13,2,1,15,10,13,2,12,11,1,11,0,14,5,9,15,13,5,10,13,2,8,13,9,10,13,11,10,13,9,10,13,9,10,13,2,12,2,10,13,2,3,4,15,13,5,12,3,11,15,10,13,2,11,6,11,2,12,3,4,5,4,6,9,10,13,2,13,2,8,2,15,10,13,2,15", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"14\", \"7\", \"14\", \"9\"], \"clip_start\": 90.0, \"clip_end\": 95.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,8,2,9,9,3,4,13,11,7,14,13,12,14,8,2,3,4,7,14,12,14,12,14,14,12,8,2,10,2,7,14,13,3,4,12,14,14,11,7,14,4,15,10,13,11,7,14,2,10,7,14,2,10,10,3,4,10,10,5,6,10,8,2,10,0,12,14,2,10,15,10,9,14,4,13,3,0,14,15,10,14,1,14,11,7,14,1,2,10,14,7,14,9,2,10,13,3,0,15,10,9,13,11,7,14,8,2,9,0,15,4,11,7,14,4,15,10,6,7,14,5,6,3,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"15\", \"10\", \"9\"], \"clip_start\": 99.0, \"clip_end\": 103.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,8,2,9,9,3,4,13,11,7,14,13,12,14,8,2,3,4,7,14,12,14,12,14,14,12,8,2,10,2,7,14,13,3,4,12,14,14,11,7,14,4,15,10,13,11,7,14,2,10,7,14,2,10,10,3,4,10,10,5,6,10,8,2,10,0,12,14,2,10,15,10,9,14,4,13,3,0,14,15,10,14,1,14,11,7,14,1,2,10,14,7,14,9,2,10,13,3,0,15,10,9,13,11,7,14,8,2,9,0,15,4,11,7,14,4,15,10,6,7,14,5,6,3,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"4\", \"15\"], \"clip_start\": 114.0, \"clip_end\": 118.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,8,2,9,9,3,4,13,11,7,14,13,12,14,8,2,3,4,7,14,12,14,12,14,14,12,8,2,10,2,7,14,13,3,4,12,14,14,11,7,14,4,15,10,13,11,7,14,2,10,7,14,2,10,10,3,4,10,10,5,6,10,8,2,10,0,12,14,2,10,15,10,9,14,4,13,3,0,14,15,10,14,1,14,11,7,14,1,2,10,14,7,14,9,2,10,13,3,0,15,10,9,13,11,7,14,8,2,9,0,15,4,11,7,14,4,15,10,6,7,14,5,6,3,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"7\", \"14\", \"13\"], \"clip_start\": 29.0, \"clip_end\": 34.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,8,2,9,9,3,4,13,11,7,14,13,12,14,8,2,3,4,7,14,12,14,12,14,14,12,8,2,10,2,7,14,13,3,4,12,14,14,11,7,14,4,15,10,13,11,7,14,2,10,7,14,2,10,10,3,4,10,10,5,6,10,8,2,10,0,12,14,2,10,15,10,9,14,4,13,3,0,14,15,10,14,1,14,11,7,14,1,2,10,14,7,14,9,2,10,13,3,0,15,10,9,13,11,7,14,8,2,9,0,15,4,11,7,14,4,15,10,6,7,14,5,6,3,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 65.0, \"clip_end\": 69.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,8,2,9,9,3,4,13,11,7,14,13,12,14,8,2,3,4,7,14,12,14,12,14,14,12,8,2,10,2,7,14,13,3,4,12,14,14,11,7,14,4,15,10,13,11,7,14,2,10,7,14,2,10,10,3,4,10,10,5,6,10,8,2,10,0,12,14,2,10,15,10,9,14,4,13,3,0,14,15,10,14,1,14,11,7,14,1,2,10,14,7,14,9,2,10,13,3,0,15,10,9,13,11,7,14,8,2,9,0,15,4,11,7,14,4,15,10,6,7,14,5,6,3,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"10\", \"5\", \"6\"], \"clip_start\": 58.0, \"clip_end\": 62.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,8,2,9,9,3,4,13,11,7,14,13,12,14,8,2,3,4,7,14,12,14,12,14,14,12,8,2,10,2,7,14,13,3,4,12,14,14,11,7,14,4,15,10,13,11,7,14,2,10,7,14,2,10,10,3,4,10,10,5,6,10,8,2,10,0,12,14,2,10,15,10,9,14,4,13,3,0,14,15,10,14,1,14,11,7,14,1,2,10,14,7,14,9,2,10,13,3,0,15,10,9,13,11,7,14,8,2,9,0,15,4,11,7,14,4,15,10,6,7,14,5,6,3,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"2\", \"9\"], \"clip_start\": 106.0, \"clip_end\": 110.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,8,2,9,9,3,4,13,11,7,14,13,12,14,8,2,3,4,7,14,12,14,12,14,14,12,8,2,10,2,7,14,13,3,4,12,14,14,11,7,14,4,15,10,13,11,7,14,2,10,7,14,2,10,10,3,4,10,10,5,6,10,8,2,10,0,12,14,2,10,15,10,9,14,4,13,3,0,14,15,10,14,1,14,11,7,14,1,2,10,14,7,14,9,2,10,13,3,0,15,10,9,13,11,7,14,8,2,9,0,15,4,11,7,14,4,15,10,6,7,14,5,6,3,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 112.0, \"clip_end\": 117.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,8,2,9,9,3,4,13,11,7,14,13,12,14,8,2,3,4,7,14,12,14,12,14,14,12,8,2,10,2,7,14,13,3,4,12,14,14,11,7,14,4,15,10,13,11,7,14,2,10,7,14,2,10,10,3,4,10,10,5,6,10,8,2,10,0,12,14,2,10,15,10,9,14,4,13,3,0,14,15,10,14,1,14,11,7,14,1,2,10,14,7,14,9,2,10,13,3,0,15,10,9,13,11,7,14,8,2,9,0,15,4,11,7,14,4,15,10,6,7,14,5,6,3,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"14\", \"14\"], \"clip_start\": 35.0, \"clip_end\": 39.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,8,2,9,9,3,4,13,11,7,14,13,12,14,8,2,3,4,7,14,12,14,12,14,14,12,8,2,10,2,7,14,13,3,4,12,14,14,11,7,14,4,15,10,13,11,7,14,2,10,7,14,2,10,10,3,4,10,10,5,6,10,8,2,10,0,12,14,2,10,15,10,9,14,4,13,3,0,14,15,10,14,1,14,11,7,14,1,2,10,14,7,14,9,2,10,13,3,0,15,10,9,13,11,7,14,8,2,9,0,15,4,11,7,14,4,15,10,6,7,14,5,6,3,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"7\"], \"clip_start\": 9.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,8,2,9,9,3,4,13,11,7,14,13,12,14,8,2,3,4,7,14,12,14,12,14,14,12,8,2,10,2,7,14,13,3,4,12,14,14,11,7,14,4,15,10,13,11,7,14,2,10,7,14,2,10,10,3,4,10,10,5,6,10,8,2,10,0,12,14,2,10,15,10,9,14,4,13,3,0,14,15,10,14,1,14,11,7,14,1,2,10,14,7,14,9,2,10,13,3,0,15,10,9,13,11,7,14,8,2,9,0,15,4,11,7,14,4,15,10,6,7,14,5,6,3,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"2\", \"10\", \"15\"], \"clip_start\": 67.0, \"clip_end\": 72.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q10_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,8,2,9,9,3,4,13,11,7,14,13,12,14,8,2,3,4,7,14,12,14,12,14,14,12,8,2,10,2,7,14,13,3,4,12,14,14,11,7,14,4,15,10,13,11,7,14,2,10,7,14,2,10,10,3,4,10,10,5,6,10,8,2,10,0,12,14,2,10,15,10,9,14,4,13,3,0,14,15,10,14,1,14,11,7,14,1,2,10,14,7,14,9,2,10,13,3,0,15,10,9,13,11,7,14,8,2,9,0,15,4,11,7,14,4,15,10,6,7,14,5,6,3,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"7\", \"6\", \"7\", \"11\"], \"clip_start\": 80.0, \"clip_end\": 86.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q11_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,8,2,9,9,3,4,13,11,7,14,13,12,14,8,2,3,4,7,14,12,14,12,14,14,12,8,2,10,2,7,14,13,3,4,12,14,14,11,7,14,4,15,10,13,11,7,14,2,10,7,14,2,10,10,3,4,10,10,5,6,10,8,2,10,0,12,14,2,10,15,10,9,14,4,13,3,0,14,15,10,14,1,14,11,7,14,1,2,10,14,7,14,9,2,10,13,3,0,15,10,9,13,11,7,14,8,2,9,0,15,4,11,7,14,4,15,10,6,7,14,5,6,3,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"14\", \"4\", \"12\", \"13\", \"0\"], \"clip_start\": 71.0, \"clip_end\": 77.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,8,2,9,9,3,4,13,11,7,14,13,12,14,8,2,3,4,7,14,12,14,12,14,14,12,8,2,10,2,7,14,13,3,4,12,14,14,11,7,14,4,15,10,13,11,7,14,2,10,7,14,2,10,10,3,4,10,10,5,6,10,8,2,10,0,12,14,2,10,15,10,9,14,4,13,3,0,14,15,10,14,1,14,11,7,14,1,2,10,14,7,14,9,2,10,13,3,0,15,10,9,13,11,7,14,8,2,9,0,15,4,11,7,14,4,15,10,6,7,14,5,6,3,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"0\", \"15\", \"4\", \"11\"], \"clip_start\": 108.0, \"clip_end\": 114.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q13_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,8,2,9,9,3,4,13,11,7,14,13,12,14,8,2,3,4,7,14,12,14,12,14,14,12,8,2,10,2,7,14,13,3,4,12,14,14,11,7,14,4,15,10,13,11,7,14,2,10,7,14,2,10,10,3,4,10,10,5,6,10,8,2,10,0,12,14,2,10,15,10,9,14,4,13,3,0,14,15,10,14,1,14,11,7,14,1,2,10,14,7,14,9,2,10,13,3,0,15,10,9,13,11,7,14,8,2,9,0,15,4,11,7,14,4,15,10,6,7,14,5,6,3,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"7\", \"14\", \"4\", \"15\"], \"clip_start\": 112.0, \"clip_end\": 118.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q14_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,8,2,9,9,3,4,13,11,7,14,13,12,14,8,2,3,4,7,14,12,14,12,14,14,12,8,2,10,2,7,14,13,3,4,12,14,14,11,7,14,4,15,10,13,11,7,14,2,10,7,14,2,10,10,3,4,10,10,5,6,10,8,2,10,0,12,14,2,10,15,10,9,14,4,13,3,0,14,15,10,14,1,14,11,7,14,1,2,10,14,7,14,9,2,10,13,3,0,15,10,9,13,11,7,14,8,2,9,0,15,4,11,7,14,4,15,10,6,7,14,5,6,3,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"4\", \"15\"], \"clip_start\": 40.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,8,2,9,9,3,4,13,11,7,14,13,12,14,8,2,3,4,7,14,12,14,12,14,14,12,8,2,10,2,7,14,13,3,4,12,14,14,11,7,14,4,15,10,13,11,7,14,2,10,7,14,2,10,10,3,4,10,10,5,6,10,8,2,10,0,12,14,2,10,15,10,9,14,4,13,3,0,14,15,10,14,1,14,11,7,14,1,2,10,14,7,14,9,2,10,13,3,0,15,10,9,13,11,7,14,8,2,9,0,15,4,11,7,14,4,15,10,6,7,14,5,6,3,4,1,12", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"12\", \"4\", \"12\"], \"clip_start\": 103.0, \"clip_end\": 108.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,8,4,2,3,11,14,11,10,9,9,2,3,11,14,15,10,5,8,4,2,3,15,6,0,7,6,12,14,10,9,11,14,13,3,9,15,9,0,5,7,6,12,14,6,0,2,3,11,14,15,15,8,1,5,7,6,12,14,6,0,15,12,7,0,9,8,8,12,4,2,1,4,6,0,5,7,6,12,7,6,12,5,8,5,7,6,12,14,10,6,5,7,6,12,7,6,12,4,12,7,6,12,4,12,4,12,7,7,6,4,2,3,2,3,2,3,1,13,0,14,11,5,8,5,5,7", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"4\", \"6\", \"0\", \"5\"], \"clip_start\": 71.0, \"clip_end\": 77.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,8,4,2,3,11,14,11,10,9,9,2,3,11,14,15,10,5,8,4,2,3,15,6,0,7,6,12,14,10,9,11,14,13,3,9,15,9,0,5,7,6,12,14,6,0,2,3,11,14,15,15,8,1,5,7,6,12,14,6,0,15,12,7,0,9,8,8,12,4,2,1,4,6,0,5,7,6,12,7,6,12,5,8,5,7,6,12,14,10,6,5,7,6,12,7,6,12,4,12,7,6,12,4,12,4,12,7,7,6,4,2,3,2,3,2,3,1,13,0,14,11,5,8,5,5,7", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"2\", \"3\", \"15\", \"6\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,8,4,2,3,11,14,11,10,9,9,2,3,11,14,15,10,5,8,4,2,3,15,6,0,7,6,12,14,10,9,11,14,13,3,9,15,9,0,5,7,6,12,14,6,0,2,3,11,14,15,15,8,1,5,7,6,12,14,6,0,15,12,7,0,9,8,8,12,4,2,1,4,6,0,5,7,6,12,7,6,12,5,8,5,7,6,12,14,10,6,5,7,6,12,7,6,12,4,12,7,6,12,4,12,4,12,7,7,6,4,2,3,2,3,2,3,1,13,0,14,11,5,8,5,5,7", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"6\", \"0\"], \"clip_start\": 44.0, \"clip_end\": 47.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,8,4,2,3,11,14,11,10,9,9,2,3,11,14,15,10,5,8,4,2,3,15,6,0,7,6,12,14,10,9,11,14,13,3,9,15,9,0,5,7,6,12,14,6,0,2,3,11,14,15,15,8,1,5,7,6,12,14,6,0,15,12,7,0,9,8,8,12,4,2,1,4,6,0,5,7,6,12,7,6,12,5,8,5,7,6,12,14,10,6,5,7,6,12,7,6,12,4,12,7,6,12,4,12,4,12,7,7,6,4,2,3,2,3,2,3,1,13,0,14,11,5,8,5,5,7", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"0\", \"5\", \"7\"], \"clip_start\": 73.0, \"clip_end\": 78.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,8,4,2,3,11,14,11,10,9,9,2,3,11,14,15,10,5,8,4,2,3,15,6,0,7,6,12,14,10,9,11,14,13,3,9,15,9,0,5,7,6,12,14,6,0,2,3,11,14,15,15,8,1,5,7,6,12,14,6,0,15,12,7,0,9,8,8,12,4,2,1,4,6,0,5,7,6,12,7,6,12,5,8,5,7,6,12,14,10,6,5,7,6,12,7,6,12,4,12,7,6,12,4,12,4,12,7,7,6,4,2,3,2,3,2,3,1,13,0,14,11,5,8,5,5,7", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"15\", \"15\", \"8\"], \"clip_start\": 49.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,8,4,2,3,11,14,11,10,9,9,2,3,11,14,15,10,5,8,4,2,3,15,6,0,7,6,12,14,10,9,11,14,13,3,9,15,9,0,5,7,6,12,14,6,0,2,3,11,14,15,15,8,1,5,7,6,12,14,6,0,15,12,7,0,9,8,8,12,4,2,1,4,6,0,5,7,6,12,7,6,12,5,8,5,7,6,12,14,10,6,5,7,6,12,7,6,12,4,12,7,6,12,4,12,4,12,7,7,6,4,2,3,2,3,2,3,1,13,0,14,11,5,8,5,5,7", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"7\", \"7\", \"6\", \"4\"], \"clip_start\": 106.0, \"clip_end\": 112.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,8,4,2,3,11,14,11,10,9,9,2,3,11,14,15,10,5,8,4,2,3,15,6,0,7,6,12,14,10,9,11,14,13,3,9,15,9,0,5,7,6,12,14,6,0,2,3,11,14,15,15,8,1,5,7,6,12,14,6,0,15,12,7,0,9,8,8,12,4,2,1,4,6,0,5,7,6,12,7,6,12,5,8,5,7,6,12,14,10,6,5,7,6,12,7,6,12,4,12,7,6,12,4,12,4,12,7,7,6,4,2,3,2,3,2,3,1,13,0,14,11,5,8,5,5,7", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"12\", \"7\", \"6\", \"12\"], \"clip_start\": 93.0, \"clip_end\": 99.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,8,4,2,3,11,14,11,10,9,9,2,3,11,14,15,10,5,8,4,2,3,15,6,0,7,6,12,14,10,9,11,14,13,3,9,15,9,0,5,7,6,12,14,6,0,2,3,11,14,15,15,8,1,5,7,6,12,14,6,0,15,12,7,0,9,8,8,12,4,2,1,4,6,0,5,7,6,12,7,6,12,5,8,5,7,6,12,14,10,6,5,7,6,12,7,6,12,4,12,7,6,12,4,12,4,12,7,7,6,4,2,3,2,3,2,3,1,13,0,14,11,5,8,5,5,7", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\"], \"clip_start\": 119.0, \"clip_end\": 122.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,8,4,2,3,11,14,11,10,9,9,2,3,11,14,15,10,5,8,4,2,3,15,6,0,7,6,12,14,10,9,11,14,13,3,9,15,9,0,5,7,6,12,14,6,0,2,3,11,14,15,15,8,1,5,7,6,12,14,6,0,15,12,7,0,9,8,8,12,4,2,1,4,6,0,5,7,6,12,7,6,12,5,8,5,7,6,12,14,10,6,5,7,6,12,7,6,12,4,12,7,6,12,4,12,4,12,7,7,6,4,2,3,2,3,2,3,1,13,0,14,11,5,8,5,5,7", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"13\", \"3\"], \"clip_start\": 102.0, \"clip_end\": 107.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,8,4,2,3,11,14,11,10,9,9,2,3,11,14,15,10,5,8,4,2,3,15,6,0,7,6,12,14,10,9,11,14,13,3,9,15,9,0,5,7,6,12,14,6,0,2,3,11,14,15,15,8,1,5,7,6,12,14,6,0,15,12,7,0,9,8,8,12,4,2,1,4,6,0,5,7,6,12,7,6,12,5,8,5,7,6,12,14,10,6,5,7,6,12,7,6,12,4,12,7,6,12,4,12,4,12,7,7,6,4,2,3,2,3,2,3,1,13,0,14,11,5,8,5,5,7", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"2\", \"3\", \"15\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q10_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,8,4,2,3,11,14,11,10,9,9,2,3,11,14,15,10,5,8,4,2,3,15,6,0,7,6,12,14,10,9,11,14,13,3,9,15,9,0,5,7,6,12,14,6,0,2,3,11,14,15,15,8,1,5,7,6,12,14,6,0,15,12,7,0,9,8,8,12,4,2,1,4,6,0,5,7,6,12,7,6,12,5,8,5,7,6,12,14,10,6,5,7,6,12,7,6,12,4,12,7,6,12,4,12,4,12,7,7,6,4,2,3,2,3,2,3,1,13,0,14,11,5,8,5,5,7", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"15\", \"8\", \"1\"], \"clip_start\": 50.0, \"clip_end\": 55.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,8,4,2,3,11,14,11,10,9,9,2,3,11,14,15,10,5,8,4,2,3,15,6,0,7,6,12,14,10,9,11,14,13,3,9,15,9,0,5,7,6,12,14,6,0,2,3,11,14,15,15,8,1,5,7,6,12,14,6,0,15,12,7,0,9,8,8,12,4,2,1,4,6,0,5,7,6,12,7,6,12,5,8,5,7,6,12,14,10,6,5,7,6,12,7,6,12,4,12,7,6,12,4,12,4,12,7,7,6,4,2,3,2,3,2,3,1,13,0,14,11,5,8,5,5,7", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"15\", \"9\"], \"clip_start\": 57.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,8,4,2,3,11,14,11,10,9,9,2,3,11,14,15,10,5,8,4,2,3,15,6,0,7,6,12,14,10,9,11,14,13,3,9,15,9,0,5,7,6,12,14,6,0,2,3,11,14,15,15,8,1,5,7,6,12,14,6,0,15,12,7,0,9,8,8,12,4,2,1,4,6,0,5,7,6,12,7,6,12,5,8,5,7,6,12,14,10,6,5,7,6,12,7,6,12,4,12,7,6,12,4,12,4,12,7,7,6,4,2,3,2,3,2,3,1,13,0,14,11,5,8,5,5,7", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"12\"], \"clip_start\": 103.0, \"clip_end\": 106.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q13_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,8,4,2,3,11,14,11,10,9,9,2,3,11,14,15,10,5,8,4,2,3,15,6,0,7,6,12,14,10,9,11,14,13,3,9,15,9,0,5,7,6,12,14,6,0,2,3,11,14,15,15,8,1,5,7,6,12,14,6,0,15,12,7,0,9,8,8,12,4,2,1,4,6,0,5,7,6,12,7,6,12,5,8,5,7,6,12,14,10,6,5,7,6,12,7,6,12,4,12,7,6,12,4,12,4,12,7,7,6,4,2,3,2,3,2,3,1,13,0,14,11,5,8,5,5,7", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"12\", \"14\", \"6\", \"0\"], \"clip_start\": 56.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q14_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,8,4,2,3,11,14,11,10,9,9,2,3,11,14,15,10,5,8,4,2,3,15,6,0,7,6,12,14,10,9,11,14,13,3,9,15,9,0,5,7,6,12,14,6,0,2,3,11,14,15,15,8,1,5,7,6,12,14,6,0,15,12,7,0,9,8,8,12,4,2,1,4,6,0,5,7,6,12,7,6,12,5,8,5,7,6,12,14,10,6,5,7,6,12,7,6,12,4,12,7,6,12,4,12,4,12,7,7,6,4,2,3,2,3,2,3,1,13,0,14,11,5,8,5,5,7", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"14\", \"11\", \"5\", \"8\"], \"clip_start\": 119.0, \"clip_end\": 125.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,5,8,4,2,3,11,14,11,10,9,9,2,3,11,14,15,10,5,8,4,2,3,15,6,0,7,6,12,14,10,9,11,14,13,3,9,15,9,0,5,7,6,12,14,6,0,2,3,11,14,15,15,8,1,5,7,6,12,14,6,0,15,12,7,0,9,8,8,12,4,2,1,4,6,0,5,7,6,12,7,6,12,5,8,5,7,6,12,14,10,6,5,7,6,12,7,6,12,4,12,7,6,12,4,12,4,12,7,7,6,4,2,3,2,3,2,3,1,13,0,14,11,5,8,5,5,7", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"8\", \"13\", \"3\"], \"clip_start\": 47.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,2,11,9,1,9,1,9,7,10,13,15,2,11,9,7,10,11,4,12,14,11,1,9,7,10,13,5,11,2,8,13,3,13,3,13,2,13,11,9,1,9,1,6,8,13,3,13,8,13,3,13,9,7,10,11,4,12,15,2,11,5,2,9,7,8,13,3,13,15,2,11,5,2,0,8,13,3,8,13,3,13,6,1,9,1,9,6,5,3,13,14,12,2,13,3,13,2,14,12,14,12,5,11,6,15,2,11,15,2,11,15,2,11,12,5,15,2,11,8,13,3,13,13,15,2,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"1\", \"6\", \"8\"], \"clip_start\": 41.0, \"clip_end\": 46.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,2,11,9,1,9,1,9,7,10,13,15,2,11,9,7,10,11,4,12,14,11,1,9,7,10,13,5,11,2,8,13,3,13,3,13,2,13,11,9,1,9,1,6,8,13,3,13,8,13,3,13,9,7,10,11,4,12,15,2,11,5,2,9,7,8,13,3,13,15,2,11,5,2,0,8,13,3,8,13,3,13,6,1,9,1,9,6,5,3,13,14,12,2,13,3,13,2,14,12,14,12,5,11,6,15,2,11,15,2,11,15,2,11,12,5,15,2,11,8,13,3,13,13,15,2,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"12\"], \"clip_start\": 113.0, \"clip_end\": 116.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,2,11,9,1,9,1,9,7,10,13,15,2,11,9,7,10,11,4,12,14,11,1,9,7,10,13,5,11,2,8,13,3,13,3,13,2,13,11,9,1,9,1,6,8,13,3,13,8,13,3,13,9,7,10,11,4,12,15,2,11,5,2,9,7,8,13,3,13,15,2,11,5,2,0,8,13,3,8,13,3,13,6,1,9,1,9,6,5,3,13,14,12,2,13,3,13,2,14,12,14,12,5,11,6,15,2,11,15,2,11,15,2,11,12,5,15,2,11,8,13,3,13,13,15,2,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,2,11,9,1,9,1,9,7,10,13,15,2,11,9,7,10,11,4,12,14,11,1,9,7,10,13,5,11,2,8,13,3,13,3,13,2,13,11,9,1,9,1,6,8,13,3,13,8,13,3,13,9,7,10,11,4,12,15,2,11,5,2,9,7,8,13,3,13,15,2,11,5,2,0,8,13,3,8,13,3,13,6,1,9,1,9,6,5,3,13,14,12,2,13,3,13,2,14,12,14,12,5,11,6,15,2,11,15,2,11,15,2,11,12,5,15,2,11,8,13,3,13,13,15,2,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"13\", \"8\"], \"clip_start\": 46.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,2,11,9,1,9,1,9,7,10,13,15,2,11,9,7,10,11,4,12,14,11,1,9,7,10,13,5,11,2,8,13,3,13,3,13,2,13,11,9,1,9,1,6,8,13,3,13,8,13,3,13,9,7,10,11,4,12,15,2,11,5,2,9,7,8,13,3,13,15,2,11,5,2,0,8,13,3,8,13,3,13,6,1,9,1,9,6,5,3,13,14,12,2,13,3,13,2,14,12,14,12,5,11,6,15,2,11,15,2,11,15,2,11,12,5,15,2,11,8,13,3,13,13,15,2,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"3\", \"13\"], \"clip_start\": 45.0, \"clip_end\": 49.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,2,11,9,1,9,1,9,7,10,13,15,2,11,9,7,10,11,4,12,14,11,1,9,7,10,13,5,11,2,8,13,3,13,3,13,2,13,11,9,1,9,1,6,8,13,3,13,8,13,3,13,9,7,10,11,4,12,15,2,11,5,2,9,7,8,13,3,13,15,2,11,5,2,0,8,13,3,8,13,3,13,6,1,9,1,9,6,5,3,13,14,12,2,13,3,13,2,14,12,14,12,5,11,6,15,2,11,15,2,11,15,2,11,12,5,15,2,11,8,13,3,13,13,15,2,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 116.0, \"clip_end\": 120.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,2,11,9,1,9,1,9,7,10,13,15,2,11,9,7,10,11,4,12,14,11,1,9,7,10,13,5,11,2,8,13,3,13,3,13,2,13,11,9,1,9,1,6,8,13,3,13,8,13,3,13,9,7,10,11,4,12,15,2,11,5,2,9,7,8,13,3,13,15,2,11,5,2,0,8,13,3,8,13,3,13,6,1,9,1,9,6,5,3,13,14,12,2,13,3,13,2,14,12,14,12,5,11,6,15,2,11,15,2,11,15,2,11,12,5,15,2,11,8,13,3,13,13,15,2,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"2\", \"0\", \"8\"], \"clip_start\": 72.0, \"clip_end\": 77.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,2,11,9,1,9,1,9,7,10,13,15,2,11,9,7,10,11,4,12,14,11,1,9,7,10,13,5,11,2,8,13,3,13,3,13,2,13,11,9,1,9,1,6,8,13,3,13,8,13,3,13,9,7,10,11,4,12,15,2,11,5,2,9,7,8,13,3,13,15,2,11,5,2,0,8,13,3,8,13,3,13,6,1,9,1,9,6,5,3,13,14,12,2,13,3,13,2,14,12,14,12,5,11,6,15,2,11,15,2,11,15,2,11,12,5,15,2,11,8,13,3,13,13,15,2,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"10\", \"11\", \"4\"], \"clip_start\": 15.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,2,11,9,1,9,1,9,7,10,13,15,2,11,9,7,10,11,4,12,14,11,1,9,7,10,13,5,11,2,8,13,3,13,3,13,2,13,11,9,1,9,1,6,8,13,3,13,8,13,3,13,9,7,10,11,4,12,15,2,11,5,2,9,7,8,13,3,13,15,2,11,5,2,0,8,13,3,8,13,3,13,6,1,9,1,9,6,5,3,13,14,12,2,13,3,13,2,14,12,14,12,5,11,6,15,2,11,15,2,11,15,2,11,12,5,15,2,11,8,13,3,13,13,15,2,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"12\", \"5\", \"15\", \"2\"], \"clip_start\": 114.0, \"clip_end\": 119.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,2,11,9,1,9,1,9,7,10,13,15,2,11,9,7,10,11,4,12,14,11,1,9,7,10,13,5,11,2,8,13,3,13,3,13,2,13,11,9,1,9,1,6,8,13,3,13,8,13,3,13,9,7,10,11,4,12,15,2,11,5,2,9,7,8,13,3,13,15,2,11,5,2,0,8,13,3,8,13,3,13,6,1,9,1,9,6,5,3,13,14,12,2,13,3,13,2,14,12,14,12,5,11,6,15,2,11,15,2,11,15,2,11,12,5,15,2,11,8,13,3,13,13,15,2,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 46.0, \"clip_end\": 51.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,2,11,9,1,9,1,9,7,10,13,15,2,11,9,7,10,11,4,12,14,11,1,9,7,10,13,5,11,2,8,13,3,13,3,13,2,13,11,9,1,9,1,6,8,13,3,13,8,13,3,13,9,7,10,11,4,12,15,2,11,5,2,9,7,8,13,3,13,15,2,11,5,2,0,8,13,3,8,13,3,13,6,1,9,1,9,6,5,3,13,14,12,2,13,3,13,2,14,12,14,12,5,11,6,15,2,11,15,2,11,15,2,11,12,5,15,2,11,8,13,3,13,13,15,2,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"7\", \"8\", \"13\"], \"clip_start\": 63.0, \"clip_end\": 68.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,2,11,9,1,9,1,9,7,10,13,15,2,11,9,7,10,11,4,12,14,11,1,9,7,10,13,5,11,2,8,13,3,13,3,13,2,13,11,9,1,9,1,6,8,13,3,13,8,13,3,13,9,7,10,11,4,12,15,2,11,5,2,9,7,8,13,3,13,15,2,11,5,2,0,8,13,3,8,13,3,13,6,1,9,1,9,6,5,3,13,14,12,2,13,3,13,2,14,12,14,12,5,11,6,15,2,11,15,2,11,15,2,11,12,5,15,2,11,8,13,3,13,13,15,2,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 29.0, \"clip_end\": 35.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,2,11,9,1,9,1,9,7,10,13,15,2,11,9,7,10,11,4,12,14,11,1,9,7,10,13,5,11,2,8,13,3,13,3,13,2,13,11,9,1,9,1,6,8,13,3,13,8,13,3,13,9,7,10,11,4,12,15,2,11,5,2,9,7,8,13,3,13,15,2,11,5,2,0,8,13,3,8,13,3,13,6,1,9,1,9,6,5,3,13,14,12,2,13,3,13,2,14,12,14,12,5,11,6,15,2,11,15,2,11,15,2,11,12,5,15,2,11,8,13,3,13,13,15,2,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"15\", \"2\", \"11\", \"15\"], \"clip_start\": 107.0, \"clip_end\": 113.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,2,11,9,1,9,1,9,7,10,13,15,2,11,9,7,10,11,4,12,14,11,1,9,7,10,13,5,11,2,8,13,3,13,3,13,2,13,11,9,1,9,1,6,8,13,3,13,8,13,3,13,9,7,10,11,4,12,15,2,11,5,2,9,7,8,13,3,13,15,2,11,5,2,0,8,13,3,8,13,3,13,6,1,9,1,9,6,5,3,13,14,12,2,13,3,13,2,14,12,14,12,5,11,6,15,2,11,15,2,11,15,2,11,12,5,15,2,11,8,13,3,13,13,15,2,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"1\", \"9\", \"1\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,2,11,9,1,9,1,9,7,10,13,15,2,11,9,7,10,11,4,12,14,11,1,9,7,10,13,5,11,2,8,13,3,13,3,13,2,13,11,9,1,9,1,6,8,13,3,13,8,13,3,13,9,7,10,11,4,12,15,2,11,5,2,9,7,8,13,3,13,15,2,11,5,2,0,8,13,3,8,13,3,13,6,1,9,1,9,6,5,3,13,14,12,2,13,3,13,2,14,12,14,12,5,11,6,15,2,11,15,2,11,15,2,11,12,5,15,2,11,8,13,3,13,13,15,2,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 68.0, \"clip_end\": 71.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,15,2,11,9,1,9,1,9,7,10,13,15,2,11,9,7,10,11,4,12,14,11,1,9,7,10,13,5,11,2,8,13,3,13,3,13,2,13,11,9,1,9,1,6,8,13,3,13,8,13,3,13,9,7,10,11,4,12,15,2,11,5,2,9,7,8,13,3,13,15,2,11,5,2,0,8,13,3,8,13,3,13,6,1,9,1,9,6,5,3,13,14,12,2,13,3,13,2,14,12,14,12,5,11,6,15,2,11,15,2,11,15,2,11,12,5,15,2,11,8,13,3,13,13,15,2,11", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,9,12,4,15,1,4,12,12,14,2,9,1,5,6,8,14,0,4,10,7,4,1,13,0,4,1,13,14,5,6,2,9,1,13,14,13,14,7,4,5,6,4,0,4,8,14,2,9,1,4,9,2,9,12,3,7,4,7,4,0,4,12,11,9,12,4,6,5,6,6,7,4,3,12,11,9,13,14,5,6,2,9,11,4,4,3,12,1,13,0,4,1,13,14,13,14,8,5,6,11,9,2,9,12,1,13,0,4,1,13,0,4,1,13,14,13,0,4,1,13,14,13,0,4,1,3", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"14\", \"13\", \"0\", \"4\"], \"clip_start\": 114.0, \"clip_end\": 120.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,9,12,4,15,1,4,12,12,14,2,9,1,5,6,8,14,0,4,10,7,4,1,13,0,4,1,13,14,5,6,2,9,1,13,14,13,14,7,4,5,6,4,0,4,8,14,2,9,1,4,9,2,9,12,3,7,4,7,4,0,4,12,11,9,12,4,6,5,6,6,7,4,3,12,11,9,13,14,5,6,2,9,11,4,4,3,12,1,13,0,4,1,13,14,13,14,8,5,6,11,9,2,9,12,1,13,0,4,1,13,0,4,1,13,14,13,0,4,1,13,14,13,0,4,1,3", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"1\", \"13\"], \"clip_start\": 113.0, \"clip_end\": 116.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,9,12,4,15,1,4,12,12,14,2,9,1,5,6,8,14,0,4,10,7,4,1,13,0,4,1,13,14,5,6,2,9,1,13,14,13,14,7,4,5,6,4,0,4,8,14,2,9,1,4,9,2,9,12,3,7,4,7,4,0,4,12,11,9,12,4,6,5,6,6,7,4,3,12,11,9,13,14,5,6,2,9,11,4,4,3,12,1,13,0,4,1,13,14,13,14,8,5,6,11,9,2,9,12,1,13,0,4,1,13,0,4,1,13,14,13,0,4,1,13,14,13,0,4,1,3", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"1\"], \"clip_start\": 11.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,9,12,4,15,1,4,12,12,14,2,9,1,5,6,8,14,0,4,10,7,4,1,13,0,4,1,13,14,5,6,2,9,1,13,14,13,14,7,4,5,6,4,0,4,8,14,2,9,1,4,9,2,9,12,3,7,4,7,4,0,4,12,11,9,12,4,6,5,6,6,7,4,3,12,11,9,13,14,5,6,2,9,11,4,4,3,12,1,13,0,4,1,13,14,13,14,8,5,6,11,9,2,9,12,1,13,0,4,1,13,0,4,1,13,14,13,0,4,1,13,14,13,0,4,1,3", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"13\"], \"clip_start\": 76.0, \"clip_end\": 79.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,9,12,4,15,1,4,12,12,14,2,9,1,5,6,8,14,0,4,10,7,4,1,13,0,4,1,13,14,5,6,2,9,1,13,14,13,14,7,4,5,6,4,0,4,8,14,2,9,1,4,9,2,9,12,3,7,4,7,4,0,4,12,11,9,12,4,6,5,6,6,7,4,3,12,11,9,13,14,5,6,2,9,11,4,4,3,12,1,13,0,4,1,13,14,13,14,8,5,6,11,9,2,9,12,1,13,0,4,1,13,0,4,1,13,14,13,0,4,1,13,14,13,0,4,1,3", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"14\", \"2\", \"9\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,9,12,4,15,1,4,12,12,14,2,9,1,5,6,8,14,0,4,10,7,4,1,13,0,4,1,13,14,5,6,2,9,1,13,14,13,14,7,4,5,6,4,0,4,8,14,2,9,1,4,9,2,9,12,3,7,4,7,4,0,4,12,11,9,12,4,6,5,6,6,7,4,3,12,11,9,13,14,5,6,2,9,11,4,4,3,12,1,13,0,4,1,13,14,13,14,8,5,6,11,9,2,9,12,1,13,0,4,1,13,0,4,1,13,14,13,0,4,1,13,14,13,0,4,1,3", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"2\", \"9\", \"12\", \"3\"], \"clip_start\": 52.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,9,12,4,15,1,4,12,12,14,2,9,1,5,6,8,14,0,4,10,7,4,1,13,0,4,1,13,14,5,6,2,9,1,13,14,13,14,7,4,5,6,4,0,4,8,14,2,9,1,4,9,2,9,12,3,7,4,7,4,0,4,12,11,9,12,4,6,5,6,6,7,4,3,12,11,9,13,14,5,6,2,9,11,4,4,3,12,1,13,0,4,1,13,14,13,14,8,5,6,11,9,2,9,12,1,13,0,4,1,13,0,4,1,13,14,13,0,4,1,13,14,13,0,4,1,3", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 78.0, \"clip_end\": 82.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,9,12,4,15,1,4,12,12,14,2,9,1,5,6,8,14,0,4,10,7,4,1,13,0,4,1,13,14,5,6,2,9,1,13,14,13,14,7,4,5,6,4,0,4,8,14,2,9,1,4,9,2,9,12,3,7,4,7,4,0,4,12,11,9,12,4,6,5,6,6,7,4,3,12,11,9,13,14,5,6,2,9,11,4,4,3,12,1,13,0,4,1,13,14,13,14,8,5,6,11,9,2,9,12,1,13,0,4,1,13,0,4,1,13,14,13,0,4,1,13,14,13,0,4,1,3", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"12\", \"12\", \"14\", \"2\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,9,12,4,15,1,4,12,12,14,2,9,1,5,6,8,14,0,4,10,7,4,1,13,0,4,1,13,14,5,6,2,9,1,13,14,13,14,7,4,5,6,4,0,4,8,14,2,9,1,4,9,2,9,12,3,7,4,7,4,0,4,12,11,9,12,4,6,5,6,6,7,4,3,12,11,9,13,14,5,6,2,9,11,4,4,3,12,1,13,0,4,1,13,14,13,14,8,5,6,11,9,2,9,12,1,13,0,4,1,13,0,4,1,13,14,13,0,4,1,13,14,13,0,4,1,3", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"4\", \"7\", \"4\", \"0\"], \"clip_start\": 57.0, \"clip_end\": 62.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,9,12,4,15,1,4,12,12,14,2,9,1,5,6,8,14,0,4,10,7,4,1,13,0,4,1,13,14,5,6,2,9,1,13,14,13,14,7,4,5,6,4,0,4,8,14,2,9,1,4,9,2,9,12,3,7,4,7,4,0,4,12,11,9,12,4,6,5,6,6,7,4,3,12,11,9,13,14,5,6,2,9,11,4,4,3,12,1,13,0,4,1,13,14,13,14,8,5,6,11,9,2,9,12,1,13,0,4,1,13,0,4,1,13,14,13,0,4,1,13,14,13,0,4,1,3", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 109.0, \"clip_end\": 113.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,9,12,4,15,1,4,12,12,14,2,9,1,5,6,8,14,0,4,10,7,4,1,13,0,4,1,13,14,5,6,2,9,1,13,14,13,14,7,4,5,6,4,0,4,8,14,2,9,1,4,9,2,9,12,3,7,4,7,4,0,4,12,11,9,12,4,6,5,6,6,7,4,3,12,11,9,13,14,5,6,2,9,11,4,4,3,12,1,13,0,4,1,13,14,13,14,8,5,6,11,9,2,9,12,1,13,0,4,1,13,0,4,1,13,14,13,0,4,1,13,14,13,0,4,1,3", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"2\", \"9\", \"1\", \"5\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,9,12,4,15,1,4,12,12,14,2,9,1,5,6,8,14,0,4,10,7,4,1,13,0,4,1,13,14,5,6,2,9,1,13,14,13,14,7,4,5,6,4,0,4,8,14,2,9,1,4,9,2,9,12,3,7,4,7,4,0,4,12,11,9,12,4,6,5,6,6,7,4,3,12,11,9,13,14,5,6,2,9,11,4,4,3,12,1,13,0,4,1,13,14,13,14,8,5,6,11,9,2,9,12,1,13,0,4,1,13,0,4,1,13,14,13,0,4,1,13,14,13,0,4,1,3", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"6\", \"6\"], \"clip_start\": 68.0, \"clip_end\": 72.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,9,12,4,15,1,4,12,12,14,2,9,1,5,6,8,14,0,4,10,7,4,1,13,0,4,1,13,14,5,6,2,9,1,13,14,13,14,7,4,5,6,4,0,4,8,14,2,9,1,4,9,2,9,12,3,7,4,7,4,0,4,12,11,9,12,4,6,5,6,6,7,4,3,12,11,9,13,14,5,6,2,9,11,4,4,3,12,1,13,0,4,1,13,14,13,14,8,5,6,11,9,2,9,12,1,13,0,4,1,13,0,4,1,13,14,13,0,4,1,13,14,13,0,4,1,3", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"12\", \"4\", \"6\", \"5\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,9,12,4,15,1,4,12,12,14,2,9,1,5,6,8,14,0,4,10,7,4,1,13,0,4,1,13,14,5,6,2,9,1,13,14,13,14,7,4,5,6,4,0,4,8,14,2,9,1,4,9,2,9,12,3,7,4,7,4,0,4,12,11,9,12,4,6,5,6,6,7,4,3,12,11,9,13,14,5,6,2,9,11,4,4,3,12,1,13,0,4,1,13,14,13,14,8,5,6,11,9,2,9,12,1,13,0,4,1,13,0,4,1,13,14,13,0,4,1,13,14,13,0,4,1,3", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"1\", \"5\", \"6\", \"8\", \"14\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,9,12,4,15,1,4,12,12,14,2,9,1,5,6,8,14,0,4,10,7,4,1,13,0,4,1,13,14,5,6,2,9,1,13,14,13,14,7,4,5,6,4,0,4,8,14,2,9,1,4,9,2,9,12,3,7,4,7,4,0,4,12,11,9,12,4,6,5,6,6,7,4,3,12,11,9,13,14,5,6,2,9,11,4,4,3,12,1,13,0,4,1,13,14,13,14,8,5,6,11,9,2,9,12,1,13,0,4,1,13,0,4,1,13,14,13,0,4,1,13,14,13,0,4,1,3", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"1\", \"13\", \"0\", \"4\", \"1\"], \"clip_start\": 109.0, \"clip_end\": 115.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,2,9,12,4,15,1,4,12,12,14,2,9,1,5,6,8,14,0,4,10,7,4,1,13,0,4,1,13,14,5,6,2,9,1,13,14,13,14,7,4,5,6,4,0,4,8,14,2,9,1,4,9,2,9,12,3,7,4,7,4,0,4,12,11,9,12,4,6,5,6,6,7,4,3,12,11,9,13,14,5,6,2,9,11,4,4,3,12,1,13,0,4,1,13,14,13,14,8,5,6,11,9,2,9,12,1,13,0,4,1,13,0,4,1,13,14,13,0,4,1,13,14,13,0,4,1,3", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"13\", \"15\", \"2\", \"6\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,14,13,7,13,10,5,15,13,15,2,6,7,13,7,13,9,3,9,5,15,13,8,15,0,5,15,13,0,5,15,13,0,10,5,15,13,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,7,4,9,7,13,1,11,11,10,0,10,5,15,13,5,15,5,15,13,8,3,9,3,9,8,3,9,3,9,3,9,3,12,10,5,15,13,7,13,1,13,3,9,3,9,7,13,0,5,15,13,4,14,13,7,13,7,13,7,13,9,13,12,9,4,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 75.0, \"clip_end\": 81.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,14,13,7,13,10,5,15,13,15,2,6,7,13,7,13,9,3,9,5,15,13,8,15,0,5,15,13,0,5,15,13,0,10,5,15,13,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,7,4,9,7,13,1,11,11,10,0,10,5,15,13,5,15,5,15,13,8,3,9,3,9,8,3,9,3,9,3,9,3,12,10,5,15,13,7,13,1,13,3,9,3,9,7,13,0,5,15,13,4,14,13,7,13,7,13,7,13,9,13,12,9,4,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"13\", \"15\", \"2\", \"6\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,14,13,7,13,10,5,15,13,15,2,6,7,13,7,13,9,3,9,5,15,13,8,15,0,5,15,13,0,5,15,13,0,10,5,15,13,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,7,4,9,7,13,1,11,11,10,0,10,5,15,13,5,15,5,15,13,8,3,9,3,9,8,3,9,3,9,3,9,3,12,10,5,15,13,7,13,1,13,3,9,3,9,7,13,0,5,15,13,4,14,13,7,13,7,13,7,13,9,13,12,9,4,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"5\", \"15\", \"5\", \"15\"], \"clip_start\": 72.0, \"clip_end\": 78.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,14,13,7,13,10,5,15,13,15,2,6,7,13,7,13,9,3,9,5,15,13,8,15,0,5,15,13,0,5,15,13,0,10,5,15,13,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,7,4,9,7,13,1,11,11,10,0,10,5,15,13,5,15,5,15,13,8,3,9,3,9,8,3,9,3,9,3,9,3,12,10,5,15,13,7,13,1,13,3,9,3,9,7,13,0,5,15,13,4,14,13,7,13,7,13,7,13,9,13,12,9,4,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"9\", \"3\", \"9\", \"8\"], \"clip_start\": 79.0, \"clip_end\": 85.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,14,13,7,13,10,5,15,13,15,2,6,7,13,7,13,9,3,9,5,15,13,8,15,0,5,15,13,0,5,15,13,0,10,5,15,13,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,7,4,9,7,13,1,11,11,10,0,10,5,15,13,5,15,5,15,13,8,3,9,3,9,8,3,9,3,9,3,9,3,12,10,5,15,13,7,13,1,13,3,9,3,9,7,13,0,5,15,13,4,14,13,7,13,7,13,7,13,9,13,12,9,4,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"7\", \"13\", \"1\", \"11\"], \"clip_start\": 61.0, \"clip_end\": 67.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,14,13,7,13,10,5,15,13,15,2,6,7,13,7,13,9,3,9,5,15,13,8,15,0,5,15,13,0,5,15,13,0,10,5,15,13,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,7,4,9,7,13,1,11,11,10,0,10,5,15,13,5,15,5,15,13,8,3,9,3,9,8,3,9,3,9,3,9,3,12,10,5,15,13,7,13,1,13,3,9,3,9,7,13,0,5,15,13,4,14,13,7,13,7,13,7,13,9,13,12,9,4,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"13\", \"7\"], \"clip_start\": 115.0, \"clip_end\": 119.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,14,13,7,13,10,5,15,13,15,2,6,7,13,7,13,9,3,9,5,15,13,8,15,0,5,15,13,0,5,15,13,0,10,5,15,13,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,7,4,9,7,13,1,11,11,10,0,10,5,15,13,5,15,5,15,13,8,3,9,3,9,8,3,9,3,9,3,9,3,12,10,5,15,13,7,13,1,13,3,9,3,9,7,13,0,5,15,13,4,14,13,7,13,7,13,7,13,9,13,12,9,4,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"4\", \"10\", \"0\", \"10\"], \"clip_start\": 122.0, \"clip_end\": 128.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,14,13,7,13,10,5,15,13,15,2,6,7,13,7,13,9,3,9,5,15,13,8,15,0,5,15,13,0,5,15,13,0,10,5,15,13,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,7,4,9,7,13,1,11,11,10,0,10,5,15,13,5,15,5,15,13,8,3,9,3,9,8,3,9,3,9,3,9,3,12,10,5,15,13,7,13,1,13,3,9,3,9,7,13,0,5,15,13,4,14,13,7,13,7,13,7,13,9,13,12,9,4,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"3\", \"9\"], \"clip_start\": 48.0, \"clip_end\": 52.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,14,13,7,13,10,5,15,13,15,2,6,7,13,7,13,9,3,9,5,15,13,8,15,0,5,15,13,0,5,15,13,0,10,5,15,13,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,7,4,9,7,13,1,11,11,10,0,10,5,15,13,5,15,5,15,13,8,3,9,3,9,8,3,9,3,9,3,9,3,12,10,5,15,13,7,13,1,13,3,9,3,9,7,13,0,5,15,13,4,14,13,7,13,7,13,7,13,9,13,12,9,4,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 125.0, \"clip_end\": 128.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,14,13,7,13,10,5,15,13,15,2,6,7,13,7,13,9,3,9,5,15,13,8,15,0,5,15,13,0,5,15,13,0,10,5,15,13,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,7,4,9,7,13,1,11,11,10,0,10,5,15,13,5,15,5,15,13,8,3,9,3,9,8,3,9,3,9,3,9,3,12,10,5,15,13,7,13,1,13,3,9,3,9,7,13,0,5,15,13,4,14,13,7,13,7,13,7,13,9,13,12,9,4,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"10\", \"5\", \"15\", \"13\"], \"clip_start\": 92.0, \"clip_end\": 97.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,14,13,7,13,10,5,15,13,15,2,6,7,13,7,13,9,3,9,5,15,13,8,15,0,5,15,13,0,5,15,13,0,10,5,15,13,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,7,4,9,7,13,1,11,11,10,0,10,5,15,13,5,15,5,15,13,8,3,9,3,9,8,3,9,3,9,3,9,3,12,10,5,15,13,7,13,1,13,3,9,3,9,7,13,0,5,15,13,4,14,13,7,13,7,13,7,13,9,13,12,9,4,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"13\", \"7\"], \"clip_start\": 115.0, \"clip_end\": 119.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,14,13,7,13,10,5,15,13,15,2,6,7,13,7,13,9,3,9,5,15,13,8,15,0,5,15,13,0,5,15,13,0,10,5,15,13,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,7,4,9,7,13,1,11,11,10,0,10,5,15,13,5,15,5,15,13,8,3,9,3,9,8,3,9,3,9,3,9,3,12,10,5,15,13,7,13,1,13,3,9,3,9,7,13,0,5,15,13,4,14,13,7,13,7,13,7,13,9,13,12,9,4,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"9\", \"3\", \"9\"], \"clip_start\": 84.0, \"clip_end\": 89.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,14,13,7,13,10,5,15,13,15,2,6,7,13,7,13,9,3,9,5,15,13,8,15,0,5,15,13,0,5,15,13,0,10,5,15,13,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,7,4,9,7,13,1,11,11,10,0,10,5,15,13,5,15,5,15,13,8,3,9,3,9,8,3,9,3,9,3,9,3,12,10,5,15,13,7,13,1,13,3,9,3,9,7,13,0,5,15,13,4,14,13,7,13,7,13,7,13,9,13,12,9,4,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,14,13,7,13,10,5,15,13,15,2,6,7,13,7,13,9,3,9,5,15,13,8,15,0,5,15,13,0,5,15,13,0,10,5,15,13,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,7,4,9,7,13,1,11,11,10,0,10,5,15,13,5,15,5,15,13,8,3,9,3,9,8,3,9,3,9,3,9,3,12,10,5,15,13,7,13,1,13,3,9,3,9,7,13,0,5,15,13,4,14,13,7,13,7,13,7,13,9,13,12,9,4,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"6\", \"7\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,14,13,7,13,10,5,15,13,15,2,6,7,13,7,13,9,3,9,5,15,13,8,15,0,5,15,13,0,5,15,13,0,10,5,15,13,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,7,4,9,7,13,1,11,11,10,0,10,5,15,13,5,15,5,15,13,8,3,9,3,9,8,3,9,3,9,3,9,3,12,10,5,15,13,7,13,1,13,3,9,3,9,7,13,0,5,15,13,4,14,13,7,13,7,13,7,13,9,13,12,9,4,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"10\", \"5\", \"15\"], \"clip_start\": 91.0, \"clip_end\": 96.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,14,13,7,13,10,5,15,13,15,2,6,7,13,7,13,9,3,9,5,15,13,8,15,0,5,15,13,0,5,15,13,0,10,5,15,13,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,7,4,9,7,13,1,11,11,10,0,10,5,15,13,5,15,5,15,13,8,3,9,3,9,8,3,9,3,9,3,9,3,12,10,5,15,13,7,13,1,13,3,9,3,9,7,13,0,5,15,13,4,14,13,7,13,7,13,7,13,9,13,12,9,4,10,0,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"0\", \"15\", \"10\"], \"clip_start\": 104.0, \"clip_end\": 110.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,14,6,14,6,3,13,14,6,11,0,15,2,15,14,6,4,15,7,3,13,9,5,4,7,12,7,15,1,3,13,5,8,9,2,2,12,7,3,13,8,15,3,13,14,6,6,1,10,14,6,10,0,15,6,13,14,5,8,15,10,14,6,13,14,5,1,4,12,7,3,13,8,15,5,12,7,3,13,8,15,14,6,10,0,12,7,15,1,10,0,4,1,3,13,4,0,1,3,13,5,15,15,8,9,2,0,15,10,0,4,5,1,3,13,5,15,3,13,14,3,13,5,15,3,13,5", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"4\"], \"clip_start\": 22.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,14,6,14,6,3,13,14,6,11,0,15,2,15,14,6,4,15,7,3,13,9,5,4,7,12,7,15,1,3,13,5,8,9,2,2,12,7,3,13,8,15,3,13,14,6,6,1,10,14,6,10,0,15,6,13,14,5,8,15,10,14,6,13,14,5,1,4,12,7,3,13,8,15,5,12,7,3,13,8,15,14,6,10,0,12,7,15,1,10,0,4,1,3,13,4,0,1,3,13,5,15,15,8,9,2,0,15,10,0,4,5,1,3,13,5,15,3,13,14,3,13,5,15,3,13,5", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"15\", \"10\", \"0\"], \"clip_start\": 106.0, \"clip_end\": 111.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,14,6,14,6,3,13,14,6,11,0,15,2,15,14,6,4,15,7,3,13,9,5,4,7,12,7,15,1,3,13,5,8,9,2,2,12,7,3,13,8,15,3,13,14,6,6,1,10,14,6,10,0,15,6,13,14,5,8,15,10,14,6,13,14,5,1,4,12,7,3,13,8,15,5,12,7,3,13,8,15,14,6,10,0,12,7,15,1,10,0,4,1,3,13,4,0,1,3,13,5,15,15,8,9,2,0,15,10,0,4,5,1,3,13,5,15,3,13,14,3,13,5,15,3,13,5", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"10\", \"0\"], \"clip_start\": 88.0, \"clip_end\": 92.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,14,6,14,6,3,13,14,6,11,0,15,2,15,14,6,4,15,7,3,13,9,5,4,7,12,7,15,1,3,13,5,8,9,2,2,12,7,3,13,8,15,3,13,14,6,6,1,10,14,6,10,0,15,6,13,14,5,8,15,10,14,6,13,14,5,1,4,12,7,3,13,8,15,5,12,7,3,13,8,15,14,6,10,0,12,7,15,1,10,0,4,1,3,13,4,0,1,3,13,5,15,15,8,9,2,0,15,10,0,4,5,1,3,13,5,15,3,13,14,3,13,5,15,3,13,5", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 17.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,14,6,14,6,3,13,14,6,11,0,15,2,15,14,6,4,15,7,3,13,9,5,4,7,12,7,15,1,3,13,5,8,9,2,2,12,7,3,13,8,15,3,13,14,6,6,1,10,14,6,10,0,15,6,13,14,5,8,15,10,14,6,13,14,5,1,4,12,7,3,13,8,15,5,12,7,3,13,8,15,14,6,10,0,12,7,15,1,10,0,4,1,3,13,4,0,1,3,13,5,15,15,8,9,2,0,15,10,0,4,5,1,3,13,5,15,3,13,14,3,13,5,15,3,13,5", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"3\", \"13\", \"8\", \"15\", \"3\"], \"clip_start\": 38.0, \"clip_end\": 44.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,14,6,14,6,3,13,14,6,11,0,15,2,15,14,6,4,15,7,3,13,9,5,4,7,12,7,15,1,3,13,5,8,9,2,2,12,7,3,13,8,15,3,13,14,6,6,1,10,14,6,10,0,15,6,13,14,5,8,15,10,14,6,13,14,5,1,4,12,7,3,13,8,15,5,12,7,3,13,8,15,14,6,10,0,12,7,15,1,10,0,4,1,3,13,4,0,1,3,13,5,15,15,8,9,2,0,15,10,0,4,5,1,3,13,5,15,3,13,14,3,13,5,15,3,13,5", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"6\", \"10\"], \"clip_start\": 81.0, \"clip_end\": 85.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,14,6,14,6,3,13,14,6,11,0,15,2,15,14,6,4,15,7,3,13,9,5,4,7,12,7,15,1,3,13,5,8,9,2,2,12,7,3,13,8,15,3,13,14,6,6,1,10,14,6,10,0,15,6,13,14,5,8,15,10,14,6,13,14,5,1,4,12,7,3,13,8,15,5,12,7,3,13,8,15,14,6,10,0,12,7,15,1,10,0,4,1,3,13,4,0,1,3,13,5,15,15,8,9,2,0,15,10,0,4,5,1,3,13,5,15,3,13,14,3,13,5,15,3,13,5", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"4\", \"8\", \"6\", \"0\"], \"clip_start\": 110.0, \"clip_end\": 116.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,14,6,14,6,3,13,14,6,11,0,15,2,15,14,6,4,15,7,3,13,9,5,4,7,12,7,15,1,3,13,5,8,9,2,2,12,7,3,13,8,15,3,13,14,6,6,1,10,14,6,10,0,15,6,13,14,5,8,15,10,14,6,13,14,5,1,4,12,7,3,13,8,15,5,12,7,3,13,8,15,14,6,10,0,12,7,15,1,10,0,4,1,3,13,4,0,1,3,13,5,15,15,8,9,2,0,15,10,0,4,5,1,3,13,5,15,3,13,14,3,13,5,15,3,13,5", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"7\"], \"clip_start\": 23.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q8_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,14,6,14,6,3,13,14,6,11,0,15,2,15,14,6,4,15,7,3,13,9,5,4,7,12,7,15,1,3,13,5,8,9,2,2,12,7,3,13,8,15,3,13,14,6,6,1,10,14,6,10,0,15,6,13,14,5,8,15,10,14,6,13,14,5,1,4,12,7,3,13,8,15,5,12,7,3,13,8,15,14,6,10,0,12,7,15,1,10,0,4,1,3,13,4,0,1,3,13,5,15,15,8,9,2,0,15,10,0,4,5,1,3,13,5,15,3,13,14,3,13,5,15,3,13,5", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\", \"15\"], \"clip_start\": 41.0, \"clip_end\": 45.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,14,6,14,6,3,13,14,6,11,0,15,2,15,14,6,4,15,7,3,13,9,5,4,7,12,7,15,1,3,13,5,8,9,2,2,12,7,3,13,8,15,3,13,14,6,6,1,10,14,6,10,0,15,6,13,14,5,8,15,10,14,6,13,14,5,1,4,12,7,3,13,8,15,5,12,7,3,13,8,15,14,6,10,0,12,7,15,1,10,0,4,1,3,13,4,0,1,3,13,5,15,15,8,9,2,0,15,10,0,4,5,1,3,13,5,15,3,13,14,3,13,5,15,3,13,5", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"1\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,14,6,14,6,3,13,14,6,11,0,15,2,15,14,6,4,15,7,3,13,9,5,4,7,12,7,15,1,3,13,5,8,9,2,2,12,7,3,13,8,15,3,13,14,6,6,1,10,14,6,10,0,15,6,13,14,5,8,15,10,14,6,13,14,5,1,4,12,7,3,13,8,15,5,12,7,3,13,8,15,14,6,10,0,12,7,15,1,10,0,4,1,3,13,4,0,1,3,13,5,15,15,8,9,2,0,15,10,0,4,5,1,3,13,5,15,3,13,14,3,13,5,15,3,13,5", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"7\", \"3\", \"13\", \"8\", \"15\"], \"clip_start\": 76.0, \"clip_end\": 82.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q11_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,14,6,14,6,3,13,14,6,11,0,15,2,15,14,6,4,15,7,3,13,9,5,4,7,12,7,15,1,3,13,5,8,9,2,2,12,7,3,13,8,15,3,13,14,6,6,1,10,14,6,10,0,15,6,13,14,5,8,15,10,14,6,13,14,5,1,4,12,7,3,13,8,15,5,12,7,3,13,8,15,14,6,10,0,12,7,15,1,10,0,4,1,3,13,4,0,1,3,13,5,15,15,8,9,2,0,15,10,0,4,5,1,3,13,5,15,3,13,14,3,13,5,15,3,13,5", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"8\", \"2\", \"5\"], \"clip_start\": 109.0, \"clip_end\": 115.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,14,6,14,6,3,13,14,6,11,0,15,2,15,14,6,4,15,7,3,13,9,5,4,7,12,7,15,1,3,13,5,8,9,2,2,12,7,3,13,8,15,3,13,14,6,6,1,10,14,6,10,0,15,6,13,14,5,8,15,10,14,6,13,14,5,1,4,12,7,3,13,8,15,5,12,7,3,13,8,15,14,6,10,0,12,7,15,1,10,0,4,1,3,13,4,0,1,3,13,5,15,15,8,9,2,0,15,10,0,4,5,1,3,13,5,15,3,13,14,3,13,5,15,3,13,5", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"15\", \"14\", \"6\"], \"clip_start\": 80.0, \"clip_end\": 84.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,14,6,14,6,3,13,14,6,11,0,15,2,15,14,6,4,15,7,3,13,9,5,4,7,12,7,15,1,3,13,5,8,9,2,2,12,7,3,13,8,15,3,13,14,6,6,1,10,14,6,10,0,15,6,13,14,5,8,15,10,14,6,13,14,5,1,4,12,7,3,13,8,15,5,12,7,3,13,8,15,14,6,10,0,12,7,15,1,10,0,4,1,3,13,4,0,1,3,13,5,15,15,8,9,2,0,15,10,0,4,5,1,3,13,5,15,3,13,14,3,13,5,15,3,13,5", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"0\", \"15\", \"2\", \"15\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q14_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,14,6,14,6,3,13,14,6,11,0,15,2,15,14,6,4,15,7,3,13,9,5,4,7,12,7,15,1,3,13,5,8,9,2,2,12,7,3,13,8,15,3,13,14,6,6,1,10,14,6,10,0,15,6,13,14,5,8,15,10,14,6,13,14,5,1,4,12,7,3,13,8,15,5,12,7,3,13,8,15,14,6,10,0,12,7,15,1,10,0,4,1,3,13,4,0,1,3,13,5,15,15,8,9,2,0,15,10,0,4,5,1,3,13,5,15,3,13,14,3,13,5,15,3,13,5", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"11\", \"12\"], \"clip_start\": 33.0, \"clip_end\": 38.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,13,14,6,14,6,3,13,14,6,11,0,15,2,15,14,6,4,15,7,3,13,9,5,4,7,12,7,15,1,3,13,5,8,9,2,2,12,7,3,13,8,15,3,13,14,6,6,1,10,14,6,10,0,15,6,13,14,5,8,15,10,14,6,13,14,5,1,4,12,7,3,13,8,15,5,12,7,3,13,8,15,14,6,10,0,12,7,15,1,10,0,4,1,3,13,4,0,1,3,13,5,15,15,8,9,2,0,15,10,0,4,5,1,3,13,5,15,3,13,14,3,13,5,15,3,13,5", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"10\", \"14\", \"1\"], \"clip_start\": 112.0, \"clip_end\": 117.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,14,7,2,15,3,14,4,14,2,15,3,14,0,2,9,11,10,14,1,14,1,14,10,14,2,9,11,2,15,3,8,10,14,7,2,9,2,9,11,10,14,1,14,13,1,14,13,9,15,9,11,10,14,1,14,1,14,7,5,9,5,9,11,12,3,14,10,14,3,14,5,15,9,11,14,5,11,2,9,11,2,9,11,10,14,1,14,13,4,14,15,9,11,2,15,14,13,15,9,11,10,14,1,14,13,6,4,14,7,2,9,11,10,14,1,14,13,10,14,14,3,14,9,11,2,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"15\", \"9\", \"11\"], \"clip_start\": 97.0, \"clip_end\": 102.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,14,7,2,15,3,14,4,14,2,15,3,14,0,2,9,11,10,14,1,14,1,14,10,14,2,9,11,2,15,3,8,10,14,7,2,9,2,9,11,10,14,1,14,13,1,14,13,9,15,9,11,10,14,1,14,1,14,7,5,9,5,9,11,12,3,14,10,14,3,14,5,15,9,11,14,5,11,2,9,11,2,9,11,10,14,1,14,13,4,14,15,9,11,2,15,14,13,15,9,11,10,14,1,14,13,6,4,14,7,2,9,11,10,14,1,14,13,10,14,14,3,14,9,11,2,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"1\", \"14\"], \"clip_start\": 20.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,14,7,2,15,3,14,4,14,2,15,3,14,0,2,9,11,10,14,1,14,1,14,10,14,2,9,11,2,15,3,8,10,14,7,2,9,2,9,11,10,14,1,14,13,1,14,13,9,15,9,11,10,14,1,14,1,14,7,5,9,5,9,11,12,3,14,10,14,3,14,5,15,9,11,14,5,11,2,9,11,2,9,11,10,14,1,14,13,4,14,15,9,11,2,15,14,13,15,9,11,10,14,1,14,13,6,4,14,7,2,9,11,10,14,1,14,13,10,14,14,3,14,9,11,2,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 34.0, \"clip_end\": 37.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,14,7,2,15,3,14,4,14,2,15,3,14,0,2,9,11,10,14,1,14,1,14,10,14,2,9,11,2,15,3,8,10,14,7,2,9,2,9,11,10,14,1,14,13,1,14,13,9,15,9,11,10,14,1,14,1,14,7,5,9,5,9,11,12,3,14,10,14,3,14,5,15,9,11,14,5,11,2,9,11,2,9,11,10,14,1,14,13,4,14,15,9,11,2,15,14,13,15,9,11,10,14,1,14,13,6,4,14,7,2,9,11,10,14,1,14,13,10,14,14,3,14,9,11,2,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"14\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,14,7,2,15,3,14,4,14,2,15,3,14,0,2,9,11,10,14,1,14,1,14,10,14,2,9,11,2,15,3,8,10,14,7,2,9,2,9,11,10,14,1,14,13,1,14,13,9,15,9,11,10,14,1,14,1,14,7,5,9,5,9,11,12,3,14,10,14,3,14,5,15,9,11,14,5,11,2,9,11,2,9,11,10,14,1,14,13,4,14,15,9,11,2,15,14,13,15,9,11,10,14,1,14,13,6,4,14,7,2,9,11,10,14,1,14,13,10,14,14,3,14,9,11,2,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"11\", \"6\", \"1\"], \"clip_start\": 115.0, \"clip_end\": 120.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q5_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,14,7,2,15,3,14,4,14,2,15,3,14,0,2,9,11,10,14,1,14,1,14,10,14,2,9,11,2,15,3,8,10,14,7,2,9,2,9,11,10,14,1,14,13,1,14,13,9,15,9,11,10,14,1,14,1,14,7,5,9,5,9,11,12,3,14,10,14,3,14,5,15,9,11,14,5,11,2,9,11,2,9,11,10,14,1,14,13,4,14,15,9,11,2,15,14,13,15,9,11,10,14,1,14,13,6,4,14,7,2,9,11,10,14,1,14,13,10,14,14,3,14,9,11,2,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"3\", \"14\"], \"clip_start\": 120.0, \"clip_end\": 124.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,14,7,2,15,3,14,4,14,2,15,3,14,0,2,9,11,10,14,1,14,1,14,10,14,2,9,11,2,15,3,8,10,14,7,2,9,2,9,11,10,14,1,14,13,1,14,13,9,15,9,11,10,14,1,14,1,14,7,5,9,5,9,11,12,3,14,10,14,3,14,5,15,9,11,14,5,11,2,9,11,2,9,11,10,14,1,14,13,4,14,15,9,11,2,15,14,13,15,9,11,10,14,1,14,13,6,4,14,7,2,9,11,10,14,1,14,13,10,14,14,3,14,9,11,2,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"10\", \"14\", \"1\"], \"clip_start\": 112.0, \"clip_end\": 117.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q7_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,14,7,2,15,3,14,4,14,2,15,3,14,0,2,9,11,10,14,1,14,1,14,10,14,2,9,11,2,15,3,8,10,14,7,2,9,2,9,11,10,14,1,14,13,1,14,13,9,15,9,11,10,14,1,14,1,14,7,5,9,5,9,11,12,3,14,10,14,3,14,5,15,9,11,14,5,11,2,9,11,2,9,11,10,14,1,14,13,4,14,15,9,11,2,15,14,13,15,9,11,10,14,1,14,13,6,4,14,7,2,9,11,10,14,1,14,13,10,14,14,3,14,9,11,2,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"9\", \"11\", \"14\"], \"clip_start\": 72.0, \"clip_end\": 77.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,14,7,2,15,3,14,4,14,2,15,3,14,0,2,9,11,10,14,1,14,1,14,10,14,2,9,11,2,15,3,8,10,14,7,2,9,2,9,11,10,14,1,14,13,1,14,13,9,15,9,11,10,14,1,14,1,14,7,5,9,5,9,11,12,3,14,10,14,3,14,5,15,9,11,14,5,11,2,9,11,2,9,11,10,14,1,14,13,4,14,15,9,11,2,15,14,13,15,9,11,10,14,1,14,13,6,4,14,7,2,9,11,10,14,1,14,13,10,14,14,3,14,9,11,2,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"11\", \"14\", \"5\", \"11\"], \"clip_start\": 73.0, \"clip_end\": 79.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,14,7,2,15,3,14,4,14,2,15,3,14,0,2,9,11,10,14,1,14,1,14,10,14,2,9,11,2,15,3,8,10,14,7,2,9,2,9,11,10,14,1,14,13,1,14,13,9,15,9,11,10,14,1,14,1,14,7,5,9,5,9,11,12,3,14,10,14,3,14,5,15,9,11,14,5,11,2,9,11,2,9,11,10,14,1,14,13,4,14,15,9,11,2,15,14,13,15,9,11,10,14,1,14,13,6,4,14,7,2,9,11,10,14,1,14,13,10,14,14,3,14,9,11,2,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"13\", \"15\", \"9\", \"11\"], \"clip_start\": 96.0, \"clip_end\": 102.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,14,7,2,15,3,14,4,14,2,15,3,14,0,2,9,11,10,14,1,14,1,14,10,14,2,9,11,2,15,3,8,10,14,7,2,9,2,9,11,10,14,1,14,13,1,14,13,9,15,9,11,10,14,1,14,1,14,7,5,9,5,9,11,12,3,14,10,14,3,14,5,15,9,11,14,5,11,2,9,11,2,9,11,10,14,1,14,13,4,14,15,9,11,2,15,14,13,15,9,11,10,14,1,14,13,6,4,14,7,2,9,11,10,14,1,14,13,10,14,14,3,14,9,11,2,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"0\", \"2\", \"9\", \"11\"], \"clip_start\": 13.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,14,7,2,15,3,14,4,14,2,15,3,14,0,2,9,11,10,14,1,14,1,14,10,14,2,9,11,2,15,3,8,10,14,7,2,9,2,9,11,10,14,1,14,13,1,14,13,9,15,9,11,10,14,1,14,1,14,7,5,9,5,9,11,12,3,14,10,14,3,14,5,15,9,11,14,5,11,2,9,11,2,9,11,10,14,1,14,13,4,14,15,9,11,2,15,14,13,15,9,11,10,14,1,14,13,6,4,14,7,2,9,11,10,14,1,14,13,10,14,14,3,14,9,11,2,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"3\", \"5\"], \"clip_start\": 114.0, \"clip_end\": 118.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,14,7,2,15,3,14,4,14,2,15,3,14,0,2,9,11,10,14,1,14,1,14,10,14,2,9,11,2,15,3,8,10,14,7,2,9,2,9,11,10,14,1,14,13,1,14,13,9,15,9,11,10,14,1,14,1,14,7,5,9,5,9,11,12,3,14,10,14,3,14,5,15,9,11,14,5,11,2,9,11,2,9,11,10,14,1,14,13,4,14,15,9,11,2,15,14,13,15,9,11,10,14,1,14,13,6,4,14,7,2,9,11,10,14,1,14,13,10,14,14,3,14,9,11,2,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"10\", \"11\", \"0\", \"0\"], \"clip_start\": 22.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,14,7,2,15,3,14,4,14,2,15,3,14,0,2,9,11,10,14,1,14,1,14,10,14,2,9,11,2,15,3,8,10,14,7,2,9,2,9,11,10,14,1,14,13,1,14,13,9,15,9,11,10,14,1,14,1,14,7,5,9,5,9,11,12,3,14,10,14,3,14,5,15,9,11,14,5,11,2,9,11,2,9,11,10,14,1,14,13,4,14,15,9,11,2,15,14,13,15,9,11,10,14,1,14,13,6,4,14,7,2,9,11,10,14,1,14,13,10,14,14,3,14,9,11,2,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"2\", \"15\"], \"clip_start\": 93.0, \"clip_end\": 97.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q14_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,14,7,2,15,3,14,4,14,2,15,3,14,0,2,9,11,10,14,1,14,1,14,10,14,2,9,11,2,15,3,8,10,14,7,2,9,2,9,11,10,14,1,14,13,1,14,13,9,15,9,11,10,14,1,14,1,14,7,5,9,5,9,11,12,3,14,10,14,3,14,5,15,9,11,14,5,11,2,9,11,2,9,11,10,14,1,14,13,4,14,15,9,11,2,15,14,13,15,9,11,10,14,1,14,13,6,4,14,7,2,9,11,10,14,1,14,13,10,14,14,3,14,9,11,2,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"2\", \"9\", \"11\", \"2\", \"15\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,10,14,7,2,15,3,14,4,14,2,15,3,14,0,2,9,11,10,14,1,14,1,14,10,14,2,9,11,2,15,3,8,10,14,7,2,9,2,9,11,10,14,1,14,13,1,14,13,9,15,9,11,10,14,1,14,1,14,7,5,9,5,9,11,12,3,14,10,14,3,14,5,15,9,11,14,5,11,2,9,11,2,9,11,10,14,1,14,13,4,14,15,9,11,2,15,14,13,15,9,11,10,14,1,14,13,6,4,14,7,2,9,11,10,14,1,14,13,10,14,14,3,14,9,11,2,15", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"13\", \"7\"], \"clip_start\": 108.0, \"clip_end\": 112.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,14,10,13,1,1,3,10,13,1,3,8,14,0,13,6,14,0,9,9,12,6,14,0,13,11,14,0,13,6,6,14,0,13,11,6,14,0,13,11,5,12,0,13,8,15,12,6,14,10,13,1,12,6,14,0,13,11,14,10,13,1,9,15,12,10,13,1,12,6,14,0,13,11,5,0,13,7,0,13,8,6,14,0,13,11,5,4,6,14,10,13,1,0,13,8,8,5,10,13,1,7,0,13,7,0,13,8,7,0,13,7,0,5,15,12,6,14,0,13,11,5,0,13,6,14,10,13", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"6\", \"14\", \"10\"], \"clip_start\": 86.0, \"clip_end\": 91.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,14,10,13,1,1,3,10,13,1,3,8,14,0,13,6,14,0,9,9,12,6,14,0,13,11,14,0,13,6,6,14,0,13,11,6,14,0,13,11,5,12,0,13,8,15,12,6,14,10,13,1,12,6,14,0,13,11,14,10,13,1,9,15,12,10,13,1,12,6,14,0,13,11,5,0,13,7,0,13,8,6,14,0,13,11,5,4,6,14,10,13,1,0,13,8,8,5,10,13,1,7,0,13,7,0,13,8,7,0,13,7,0,5,15,12,6,14,0,13,11,5,0,13,6,14,10,13", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"0\", \"13\", \"7\"], \"clip_start\": 73.0, \"clip_end\": 78.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,14,10,13,1,1,3,10,13,1,3,8,14,0,13,6,14,0,9,9,12,6,14,0,13,11,14,0,13,6,6,14,0,13,11,6,14,0,13,11,5,12,0,13,8,15,12,6,14,10,13,1,12,6,14,0,13,11,14,10,13,1,9,15,12,10,13,1,12,6,14,0,13,11,5,0,13,7,0,13,8,6,14,0,13,11,5,4,6,14,10,13,1,0,13,8,8,5,10,13,1,7,0,13,7,0,13,8,7,0,13,7,0,5,15,12,6,14,0,13,11,5,0,13,6,14,10,13", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"13\", \"1\", \"3\", \"8\", \"14\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,14,10,13,1,1,3,10,13,1,3,8,14,0,13,6,14,0,9,9,12,6,14,0,13,11,14,0,13,6,6,14,0,13,11,6,14,0,13,11,5,12,0,13,8,15,12,6,14,10,13,1,12,6,14,0,13,11,14,10,13,1,9,15,12,10,13,1,12,6,14,0,13,11,5,0,13,7,0,13,8,6,14,0,13,11,5,4,6,14,10,13,1,0,13,8,8,5,10,13,1,7,0,13,7,0,13,8,7,0,13,7,0,5,15,12,6,14,0,13,11,5,0,13,6,14,10,13", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"7\"], \"clip_start\": 102.0, \"clip_end\": 105.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,14,10,13,1,1,3,10,13,1,3,8,14,0,13,6,14,0,9,9,12,6,14,0,13,11,14,0,13,6,6,14,0,13,11,6,14,0,13,11,5,12,0,13,8,15,12,6,14,10,13,1,12,6,14,0,13,11,14,10,13,1,9,15,12,10,13,1,12,6,14,0,13,11,5,0,13,7,0,13,8,6,14,0,13,11,5,4,6,14,10,13,1,0,13,8,8,5,10,13,1,7,0,13,7,0,13,8,7,0,13,7,0,5,15,12,6,14,0,13,11,5,0,13,6,14,10,13", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\", \"1\"], \"clip_start\": 124.0, \"clip_end\": 128.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q5_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,14,10,13,1,1,3,10,13,1,3,8,14,0,13,6,14,0,9,9,12,6,14,0,13,11,14,0,13,6,6,14,0,13,11,6,14,0,13,11,5,12,0,13,8,15,12,6,14,10,13,1,12,6,14,0,13,11,14,10,13,1,9,15,12,10,13,1,12,6,14,0,13,11,5,0,13,7,0,13,8,6,14,0,13,11,5,4,6,14,10,13,1,0,13,8,8,5,10,13,1,7,0,13,7,0,13,8,7,0,13,7,0,5,15,12,6,14,0,13,11,5,0,13,6,14,10,13", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"5\", \"7\", \"3\", \"13\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q6_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,14,10,13,1,1,3,10,13,1,3,8,14,0,13,6,14,0,9,9,12,6,14,0,13,11,14,0,13,6,6,14,0,13,11,6,14,0,13,11,5,12,0,13,8,15,12,6,14,10,13,1,12,6,14,0,13,11,14,10,13,1,9,15,12,10,13,1,12,6,14,0,13,11,5,0,13,7,0,13,8,6,14,0,13,11,5,4,6,14,10,13,1,0,13,8,8,5,10,13,1,7,0,13,7,0,13,8,7,0,13,7,0,5,15,12,6,14,0,13,11,5,0,13,6,14,10,13", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"0\", \"13\", \"11\"], \"clip_start\": 116.0, \"clip_end\": 121.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,14,10,13,1,1,3,10,13,1,3,8,14,0,13,6,14,0,9,9,12,6,14,0,13,11,14,0,13,6,6,14,0,13,11,6,14,0,13,11,5,12,0,13,8,15,12,6,14,10,13,1,12,6,14,0,13,11,14,10,13,1,9,15,12,10,13,1,12,6,14,0,13,11,5,0,13,7,0,13,8,6,14,0,13,11,5,4,6,14,10,13,1,0,13,8,8,5,10,13,1,7,0,13,7,0,13,8,7,0,13,7,0,5,15,12,6,14,0,13,11,5,0,13,6,14,10,13", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"6\", \"14\", \"0\"], \"clip_start\": 50.0, \"clip_end\": 56.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q8_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,14,10,13,1,1,3,10,13,1,3,8,14,0,13,6,14,0,9,9,12,6,14,0,13,11,14,0,13,6,6,14,0,13,11,6,14,0,13,11,5,12,0,13,8,15,12,6,14,10,13,1,12,6,14,0,13,11,14,10,13,1,9,15,12,10,13,1,12,6,14,0,13,11,5,0,13,7,0,13,8,6,14,0,13,11,5,4,6,14,10,13,1,0,13,8,8,5,10,13,1,7,0,13,7,0,13,8,7,0,13,7,0,5,15,12,6,14,0,13,11,5,0,13,6,14,10,13", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"7\"], \"clip_start\": 109.0, \"clip_end\": 112.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,14,10,13,1,1,3,10,13,1,3,8,14,0,13,6,14,0,9,9,12,6,14,0,13,11,14,0,13,6,6,14,0,13,11,6,14,0,13,11,5,12,0,13,8,15,12,6,14,10,13,1,12,6,14,0,13,11,14,10,13,1,9,15,12,10,13,1,12,6,14,0,13,11,5,0,13,7,0,13,8,6,14,0,13,11,5,4,6,14,10,13,1,0,13,8,8,5,10,13,1,7,0,13,7,0,13,8,7,0,13,7,0,5,15,12,6,14,0,13,11,5,0,13,6,14,10,13", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"14\", \"0\", \"13\"], \"clip_start\": 34.0, \"clip_end\": 39.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q10_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,14,10,13,1,1,3,10,13,1,3,8,14,0,13,6,14,0,9,9,12,6,14,0,13,11,14,0,13,6,6,14,0,13,11,6,14,0,13,11,5,12,0,13,8,15,12,6,14,10,13,1,12,6,14,0,13,11,14,10,13,1,9,15,12,10,13,1,12,6,14,0,13,11,5,0,13,7,0,13,8,6,14,0,13,11,5,4,6,14,10,13,1,0,13,8,8,5,10,13,1,7,0,13,7,0,13,8,7,0,13,7,0,5,15,12,6,14,0,13,11,5,0,13,6,14,10,13", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"0\", \"13\", \"11\"], \"clip_start\": 54.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q11_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,14,10,13,1,1,3,10,13,1,3,8,14,0,13,6,14,0,9,9,12,6,14,0,13,11,14,0,13,6,6,14,0,13,11,6,14,0,13,11,5,12,0,13,8,15,12,6,14,10,13,1,12,6,14,0,13,11,14,10,13,1,9,15,12,10,13,1,12,6,14,0,13,11,5,0,13,7,0,13,8,6,14,0,13,11,5,4,6,14,10,13,1,0,13,8,8,5,10,13,1,7,0,13,7,0,13,8,7,0,13,7,0,5,15,12,6,14,0,13,11,5,0,13,6,14,10,13", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"10\", \"5\", \"10\", \"7\"], \"clip_start\": 107.0, \"clip_end\": 113.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,14,10,13,1,1,3,10,13,1,3,8,14,0,13,6,14,0,9,9,12,6,14,0,13,11,14,0,13,6,6,14,0,13,11,6,14,0,13,11,5,12,0,13,8,15,12,6,14,10,13,1,12,6,14,0,13,11,14,10,13,1,9,15,12,10,13,1,12,6,14,0,13,11,5,0,13,7,0,13,8,6,14,0,13,11,5,4,6,14,10,13,1,0,13,8,8,5,10,13,1,7,0,13,7,0,13,8,7,0,13,7,0,5,15,12,6,14,0,13,11,5,0,13,6,14,10,13", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"15\", \"0\", \"0\", \"10\"], \"clip_start\": 30.0, \"clip_end\": 36.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,14,10,13,1,1,3,10,13,1,3,8,14,0,13,6,14,0,9,9,12,6,14,0,13,11,14,0,13,6,6,14,0,13,11,6,14,0,13,11,5,12,0,13,8,15,12,6,14,10,13,1,12,6,14,0,13,11,14,10,13,1,9,15,12,10,13,1,12,6,14,0,13,11,5,0,13,7,0,13,8,6,14,0,13,11,5,4,6,14,10,13,1,0,13,8,8,5,10,13,1,7,0,13,7,0,13,8,7,0,13,7,0,5,15,12,6,14,0,13,11,5,0,13,6,14,10,13", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\"], \"clip_start\": 43.0, \"clip_end\": 47.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,14,10,13,1,1,3,10,13,1,3,8,14,0,13,6,14,0,9,9,12,6,14,0,13,11,14,0,13,6,6,14,0,13,11,6,14,0,13,11,5,12,0,13,8,15,12,6,14,10,13,1,12,6,14,0,13,11,14,10,13,1,9,15,12,10,13,1,12,6,14,0,13,11,5,0,13,7,0,13,8,6,14,0,13,11,5,4,6,14,10,13,1,0,13,8,8,5,10,13,1,7,0,13,7,0,13,8,7,0,13,7,0,5,15,12,6,14,0,13,11,5,0,13,6,14,10,13", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"8\", \"5\", \"10\"], \"clip_start\": 30.0, \"clip_end\": 36.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,14,10,13,1,1,3,10,13,1,3,8,14,0,13,6,14,0,9,9,12,6,14,0,13,11,14,0,13,6,6,14,0,13,11,6,14,0,13,11,5,12,0,13,8,15,12,6,14,10,13,1,12,6,14,0,13,11,14,10,13,1,9,15,12,10,13,1,12,6,14,0,13,11,5,0,13,7,0,13,8,6,14,0,13,11,5,4,6,14,10,13,1,0,13,8,8,5,10,13,1,7,0,13,7,0,13,8,7,0,13,7,0,5,15,12,6,14,0,13,11,5,0,13,6,14,10,13", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"1\"], \"clip_start\": 108.0, \"clip_end\": 111.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,0,14,13,11,15,14,0,14,6,3,15,13,0,14,12,2,6,5,11,0,14,7,4,5,3,14,7,13,11,10,13,0,14,0,14,12,2,0,14,12,2,6,8,6,6,5,11,2,10,13,0,8,7,13,11,0,14,1,4,12,2,6,5,11,15,14,13,0,14,9,11,15,14,2,6,5,11,10,13,0,12,2,6,5,3,8,11,0,14,0,12,2,0,12,2,0,14,0,12,2,0,12,13,7,10,13,0,14,8,1,8,7,15,8,11,10,13,0,14,11,15,14,11,15,14,7,9", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 39.0, \"clip_end\": 43.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,0,14,13,11,15,14,0,14,6,3,15,13,0,14,12,2,6,5,11,0,14,7,4,5,3,14,7,13,11,10,13,0,14,0,14,12,2,0,14,12,2,6,8,6,6,5,11,2,10,13,0,8,7,13,11,0,14,1,4,12,2,6,5,11,15,14,13,0,14,9,11,15,14,2,6,5,11,10,13,0,12,2,6,5,3,8,11,0,14,0,12,2,0,12,2,0,14,0,12,2,0,12,13,7,10,13,0,14,8,1,8,7,15,8,11,10,13,0,14,11,15,14,11,15,14,7,9", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"2\", \"0\", \"12\"], \"clip_start\": 91.0, \"clip_end\": 95.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,0,14,13,11,15,14,0,14,6,3,15,13,0,14,12,2,6,5,11,0,14,7,4,5,3,14,7,13,11,10,13,0,14,0,14,12,2,0,14,12,2,6,8,6,6,5,11,2,10,13,0,8,7,13,11,0,14,1,4,12,2,6,5,11,15,14,13,0,14,9,11,15,14,2,6,5,11,10,13,0,12,2,6,5,3,8,11,0,14,0,12,2,0,12,2,0,14,0,12,2,0,12,13,7,10,13,0,14,8,1,8,7,15,8,11,10,13,0,14,11,15,14,11,15,14,7,9", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"14\", \"0\", \"12\"], \"clip_start\": 88.0, \"clip_end\": 92.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,0,14,13,11,15,14,0,14,6,3,15,13,0,14,12,2,6,5,11,0,14,7,4,5,3,14,7,13,11,10,13,0,14,0,14,12,2,0,14,12,2,6,8,6,6,5,11,2,10,13,0,8,7,13,11,0,14,1,4,12,2,6,5,11,15,14,13,0,14,9,11,15,14,2,6,5,11,10,13,0,12,2,6,5,3,8,11,0,14,0,12,2,0,12,2,0,14,0,12,2,0,12,13,7,10,13,0,14,8,1,8,7,15,8,11,10,13,0,14,11,15,14,11,15,14,7,9", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"15\", \"14\", \"2\", \"6\"], \"clip_start\": 70.0, \"clip_end\": 76.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,0,14,13,11,15,14,0,14,6,3,15,13,0,14,12,2,6,5,11,0,14,7,4,5,3,14,7,13,11,10,13,0,14,0,14,12,2,0,14,12,2,6,8,6,6,5,11,2,10,13,0,8,7,13,11,0,14,1,4,12,2,6,5,11,15,14,13,0,14,9,11,15,14,2,6,5,11,10,13,0,12,2,6,5,3,8,11,0,14,0,12,2,0,12,2,0,14,0,12,2,0,12,13,7,10,13,0,14,8,1,8,7,15,8,11,10,13,0,14,11,15,14,11,15,14,7,9", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"0\", \"14\", \"0\"], \"clip_start\": 87.0, \"clip_end\": 91.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,0,14,13,11,15,14,0,14,6,3,15,13,0,14,12,2,6,5,11,0,14,7,4,5,3,14,7,13,11,10,13,0,14,0,14,12,2,0,14,12,2,6,8,6,6,5,11,2,10,13,0,8,7,13,11,0,14,1,4,12,2,6,5,11,15,14,13,0,14,9,11,15,14,2,6,5,11,10,13,0,12,2,6,5,3,8,11,0,14,0,12,2,0,12,2,0,14,0,12,2,0,12,13,7,10,13,0,14,8,1,8,7,15,8,11,10,13,0,14,11,15,14,11,15,14,7,9", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"12\", \"2\"], \"clip_start\": 92.0, \"clip_end\": 96.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,0,14,13,11,15,14,0,14,6,3,15,13,0,14,12,2,6,5,11,0,14,7,4,5,3,14,7,13,11,10,13,0,14,0,14,12,2,0,14,12,2,6,8,6,6,5,11,2,10,13,0,8,7,13,11,0,14,1,4,12,2,6,5,11,15,14,13,0,14,9,11,15,14,2,6,5,11,10,13,0,12,2,6,5,3,8,11,0,14,0,12,2,0,12,2,0,14,0,12,2,0,12,13,7,10,13,0,14,8,1,8,7,15,8,11,10,13,0,14,11,15,14,11,15,14,7,9", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"13\", \"11\", \"10\", \"13\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,0,14,13,11,15,14,0,14,6,3,15,13,0,14,12,2,6,5,11,0,14,7,4,5,3,14,7,13,11,10,13,0,14,0,14,12,2,0,14,12,2,6,8,6,6,5,11,2,10,13,0,8,7,13,11,0,14,1,4,12,2,6,5,11,15,14,13,0,14,9,11,15,14,2,6,5,11,10,13,0,12,2,6,5,3,8,11,0,14,0,12,2,0,12,2,0,14,0,12,2,0,12,13,7,10,13,0,14,8,1,8,7,15,8,11,10,13,0,14,11,15,14,11,15,14,7,9", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"11\", \"10\", \"13\"], \"clip_start\": 76.0, \"clip_end\": 80.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,0,14,13,11,15,14,0,14,6,3,15,13,0,14,12,2,6,5,11,0,14,7,4,5,3,14,7,13,11,10,13,0,14,0,14,12,2,0,14,12,2,6,8,6,6,5,11,2,10,13,0,8,7,13,11,0,14,1,4,12,2,6,5,11,15,14,13,0,14,9,11,15,14,2,6,5,11,10,13,0,12,2,6,5,3,8,11,0,14,0,12,2,0,12,2,0,14,0,12,2,0,12,13,7,10,13,0,14,8,1,8,7,15,8,11,10,13,0,14,11,15,14,11,15,14,7,9", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"3\"], \"clip_start\": 60.0, \"clip_end\": 63.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,0,14,13,11,15,14,0,14,6,3,15,13,0,14,12,2,6,5,11,0,14,7,4,5,3,14,7,13,11,10,13,0,14,0,14,12,2,0,14,12,2,6,8,6,6,5,11,2,10,13,0,8,7,13,11,0,14,1,4,12,2,6,5,11,15,14,13,0,14,9,11,15,14,2,6,5,11,10,13,0,12,2,6,5,3,8,11,0,14,0,12,2,0,12,2,0,14,0,12,2,0,12,13,7,10,13,0,14,8,1,8,7,15,8,11,10,13,0,14,11,15,14,11,15,14,7,9", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\"], \"clip_start\": 54.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,0,14,13,11,15,14,0,14,6,3,15,13,0,14,12,2,6,5,11,0,14,7,4,5,3,14,7,13,11,10,13,0,14,0,14,12,2,0,14,12,2,6,8,6,6,5,11,2,10,13,0,8,7,13,11,0,14,1,4,12,2,6,5,11,15,14,13,0,14,9,11,15,14,2,6,5,11,10,13,0,12,2,6,5,3,8,11,0,14,0,12,2,0,12,2,0,14,0,12,2,0,12,13,7,10,13,0,14,8,1,8,7,15,8,11,10,13,0,14,11,15,14,11,15,14,7,9", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"11\"], \"clip_start\": 125.0, \"clip_end\": 128.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,0,14,13,11,15,14,0,14,6,3,15,13,0,14,12,2,6,5,11,0,14,7,4,5,3,14,7,13,11,10,13,0,14,0,14,12,2,0,14,12,2,6,8,6,6,5,11,2,10,13,0,8,7,13,11,0,14,1,4,12,2,6,5,11,15,14,13,0,14,9,11,15,14,2,6,5,11,10,13,0,12,2,6,5,3,8,11,0,14,0,12,2,0,12,2,0,14,0,12,2,0,12,13,7,10,13,0,14,8,1,8,7,15,8,11,10,13,0,14,11,15,14,11,15,14,7,9", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"13\", \"0\", \"14\"], \"clip_start\": 105.0, \"clip_end\": 109.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,0,14,13,11,15,14,0,14,6,3,15,13,0,14,12,2,6,5,11,0,14,7,4,5,3,14,7,13,11,10,13,0,14,0,14,12,2,0,14,12,2,6,8,6,6,5,11,2,10,13,0,8,7,13,11,0,14,1,4,12,2,6,5,11,15,14,13,0,14,9,11,15,14,2,6,5,11,10,13,0,12,2,6,5,3,8,11,0,14,0,12,2,0,12,2,0,14,0,12,2,0,12,13,7,10,13,0,14,8,1,8,7,15,8,11,10,13,0,14,11,15,14,11,15,14,7,9", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"15\", \"8\", \"11\", \"10\"], \"clip_start\": 111.0, \"clip_end\": 117.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,0,14,13,11,15,14,0,14,6,3,15,13,0,14,12,2,6,5,11,0,14,7,4,5,3,14,7,13,11,10,13,0,14,0,14,12,2,0,14,12,2,6,8,6,6,5,11,2,10,13,0,8,7,13,11,0,14,1,4,12,2,6,5,11,15,14,13,0,14,9,11,15,14,2,6,5,11,10,13,0,12,2,6,5,3,8,11,0,14,0,12,2,0,12,2,0,14,0,12,2,0,12,13,7,10,13,0,14,8,1,8,7,15,8,11,10,13,0,14,11,15,14,11,15,14,7,9", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"12\", \"12\", \"0\"], \"clip_start\": 80.0, \"clip_end\": 85.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q14_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,0,14,13,11,15,14,0,14,6,3,15,13,0,14,12,2,6,5,11,0,14,7,4,5,3,14,7,13,11,10,13,0,14,0,14,12,2,0,14,12,2,6,8,6,6,5,11,2,10,13,0,8,7,13,11,0,14,1,4,12,2,6,5,11,15,14,13,0,14,9,11,15,14,2,6,5,11,10,13,0,12,2,6,5,3,8,11,0,14,0,12,2,0,12,2,0,14,0,12,2,0,12,13,7,10,13,0,14,8,1,8,7,15,8,11,10,13,0,14,11,15,14,11,15,14,7,9", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"4\", \"13\", \"9\"], \"clip_start\": 16.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,0,14,13,11,15,14,0,14,6,3,15,13,0,14,12,2,6,5,11,0,14,7,4,5,3,14,7,13,11,10,13,0,14,0,14,12,2,0,14,12,2,6,8,6,6,5,11,2,10,13,0,8,7,13,11,0,14,1,4,12,2,6,5,11,15,14,13,0,14,9,11,15,14,2,6,5,11,10,13,0,12,2,6,5,3,8,11,0,14,0,12,2,0,12,2,0,14,0,12,2,0,12,13,7,10,13,0,14,8,1,8,7,15,8,11,10,13,0,14,11,15,14,11,15,14,7,9", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"14\", \"4\", \"10\", \"15\"], \"clip_start\": 54.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,8,7,4,10,3,9,0,8,7,4,10,8,2,9,7,4,3,12,15,1,5,0,8,7,4,1,15,1,5,3,12,1,5,0,8,7,4,10,9,13,11,0,8,7,4,1,5,12,13,11,3,12,1,5,12,14,4,10,15,1,2,6,0,1,5,6,0,8,2,3,5,11,9,11,0,8,2,6,0,13,11,9,8,2,9,6,0,8,2,9,3,12,8,2,0,8,2,6,0,13,11,0,8,7,4,3,12,15,1,5,2,3,5,12,10,2,6,0,14,4,3,9,2,3,5,0,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"14\", \"4\", \"10\", \"15\"], \"clip_start\": 54.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,8,7,4,10,3,9,0,8,7,4,10,8,2,9,7,4,3,12,15,1,5,0,8,7,4,1,15,1,5,3,12,1,5,0,8,7,4,10,9,13,11,0,8,7,4,1,5,12,13,11,3,12,1,5,12,14,4,10,15,1,2,6,0,1,5,6,0,8,2,3,5,11,9,11,0,8,2,6,0,13,11,9,8,2,9,6,0,8,2,9,3,12,8,2,0,8,2,6,0,13,11,0,8,7,4,3,12,15,1,5,2,3,5,12,10,2,6,0,14,4,3,9,2,3,5,0,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"0\", \"13\", \"11\", \"9\"], \"clip_start\": 78.0, \"clip_end\": 83.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,8,7,4,10,3,9,0,8,7,4,10,8,2,9,7,4,3,12,15,1,5,0,8,7,4,1,15,1,5,3,12,1,5,0,8,7,4,10,9,13,11,0,8,7,4,1,5,12,13,11,3,12,1,5,12,14,4,10,15,1,2,6,0,1,5,6,0,8,2,3,5,11,9,11,0,8,2,6,0,13,11,9,8,2,9,6,0,8,2,9,3,12,8,2,0,8,2,6,0,13,11,0,8,7,4,3,12,15,1,5,2,3,5,12,10,2,6,0,14,4,3,9,2,3,5,0,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"12\", \"1\", \"5\"], \"clip_start\": 50.0, \"clip_end\": 55.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,8,7,4,10,3,9,0,8,7,4,10,8,2,9,7,4,3,12,15,1,5,0,8,7,4,1,15,1,5,3,12,1,5,0,8,7,4,10,9,13,11,0,8,7,4,1,5,12,13,11,3,12,1,5,12,14,4,10,15,1,2,6,0,1,5,6,0,8,2,3,5,11,9,11,0,8,2,6,0,13,11,9,8,2,9,6,0,8,2,9,3,12,8,2,0,8,2,6,0,13,11,0,8,7,4,3,12,15,1,5,2,3,5,12,10,2,6,0,14,4,3,9,2,3,5,0,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"11\", \"0\", \"8\", \"7\"], \"clip_start\": 99.0, \"clip_end\": 105.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,8,7,4,10,3,9,0,8,7,4,10,8,2,9,7,4,3,12,15,1,5,0,8,7,4,1,15,1,5,3,12,1,5,0,8,7,4,10,9,13,11,0,8,7,4,1,5,12,13,11,3,12,1,5,12,14,4,10,15,1,2,6,0,1,5,6,0,8,2,3,5,11,9,11,0,8,2,6,0,13,11,9,8,2,9,6,0,8,2,9,3,12,8,2,0,8,2,6,0,13,11,0,8,7,4,3,12,15,1,5,2,3,5,12,10,2,6,0,14,4,3,9,2,3,5,0,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 101.0, \"clip_end\": 107.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,8,7,4,10,3,9,0,8,7,4,10,8,2,9,7,4,3,12,15,1,5,0,8,7,4,1,15,1,5,3,12,1,5,0,8,7,4,10,9,13,11,0,8,7,4,1,5,12,13,11,3,12,1,5,12,14,4,10,15,1,2,6,0,1,5,6,0,8,2,3,5,11,9,11,0,8,2,6,0,13,11,9,8,2,9,6,0,8,2,9,3,12,8,2,0,8,2,6,0,13,11,0,8,7,4,3,12,15,1,5,2,3,5,12,10,2,6,0,14,4,3,9,2,3,5,0,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"7\", \"4\", \"3\", \"12\"], \"clip_start\": 102.0, \"clip_end\": 108.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,8,7,4,10,3,9,0,8,7,4,10,8,2,9,7,4,3,12,15,1,5,0,8,7,4,1,15,1,5,3,12,1,5,0,8,7,4,10,9,13,11,0,8,7,4,1,5,12,13,11,3,12,1,5,12,14,4,10,15,1,2,6,0,1,5,6,0,8,2,3,5,11,9,11,0,8,2,6,0,13,11,9,8,2,9,6,0,8,2,9,3,12,8,2,0,8,2,6,0,13,11,0,8,7,4,3,12,15,1,5,2,3,5,12,10,2,6,0,14,4,3,9,2,3,5,0,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 38.0, \"clip_end\": 42.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,8,7,4,10,3,9,0,8,7,4,10,8,2,9,7,4,3,12,15,1,5,0,8,7,4,1,15,1,5,3,12,1,5,0,8,7,4,10,9,13,11,0,8,7,4,1,5,12,13,11,3,12,1,5,12,14,4,10,15,1,2,6,0,1,5,6,0,8,2,3,5,11,9,11,0,8,2,6,0,13,11,9,8,2,9,6,0,8,2,9,3,12,8,2,0,8,2,6,0,13,11,0,8,7,4,3,12,15,1,5,2,3,5,12,10,2,6,0,14,4,3,9,2,3,5,0,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"7\", \"4\", \"3\"], \"clip_start\": 13.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,8,7,4,10,3,9,0,8,7,4,10,8,2,9,7,4,3,12,15,1,5,0,8,7,4,1,15,1,5,3,12,1,5,0,8,7,4,10,9,13,11,0,8,7,4,1,5,12,13,11,3,12,1,5,12,14,4,10,15,1,2,6,0,1,5,6,0,8,2,3,5,11,9,11,0,8,2,6,0,13,11,9,8,2,9,6,0,8,2,9,3,12,8,2,0,8,2,6,0,13,11,0,8,7,4,3,12,15,1,5,2,3,5,12,10,2,6,0,14,4,3,9,2,3,5,0,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"0\", \"13\", \"11\"], \"clip_start\": 77.0, \"clip_end\": 82.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,8,7,4,10,3,9,0,8,7,4,10,8,2,9,7,4,3,12,15,1,5,0,8,7,4,1,15,1,5,3,12,1,5,0,8,7,4,10,9,13,11,0,8,7,4,1,5,12,13,11,3,12,1,5,12,14,4,10,15,1,2,6,0,1,5,6,0,8,2,3,5,11,9,11,0,8,2,6,0,13,11,9,8,2,9,6,0,8,2,9,3,12,8,2,0,8,2,6,0,13,11,0,8,7,4,3,12,15,1,5,2,3,5,12,10,2,6,0,14,4,3,9,2,3,5,0,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 45.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,8,7,4,10,3,9,0,8,7,4,10,8,2,9,7,4,3,12,15,1,5,0,8,7,4,1,15,1,5,3,12,1,5,0,8,7,4,10,9,13,11,0,8,7,4,1,5,12,13,11,3,12,1,5,12,14,4,10,15,1,2,6,0,1,5,6,0,8,2,3,5,11,9,11,0,8,2,6,0,13,11,9,8,2,9,6,0,8,2,9,3,12,8,2,0,8,2,6,0,13,11,0,8,7,4,3,12,15,1,5,2,3,5,12,10,2,6,0,14,4,3,9,2,3,5,0,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"4\", \"1\", \"15\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,8,7,4,10,3,9,0,8,7,4,10,8,2,9,7,4,3,12,15,1,5,0,8,7,4,1,15,1,5,3,12,1,5,0,8,7,4,10,9,13,11,0,8,7,4,1,5,12,13,11,3,12,1,5,12,14,4,10,15,1,2,6,0,1,5,6,0,8,2,3,5,11,9,11,0,8,2,6,0,13,11,9,8,2,9,6,0,8,2,9,3,12,8,2,0,8,2,6,0,13,11,0,8,7,4,3,12,15,1,5,2,3,5,12,10,2,6,0,14,4,3,9,2,3,5,0,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"7\", \"4\", \"10\"], \"clip_start\": 34.0, \"clip_end\": 39.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,8,7,4,10,3,9,0,8,7,4,10,8,2,9,7,4,3,12,15,1,5,0,8,7,4,1,15,1,5,3,12,1,5,0,8,7,4,10,9,13,11,0,8,7,4,1,5,12,13,11,3,12,1,5,12,14,4,10,15,1,2,6,0,1,5,6,0,8,2,3,5,11,9,11,0,8,2,6,0,13,11,9,8,2,9,6,0,8,2,9,3,12,8,2,0,8,2,6,0,13,11,0,8,7,4,3,12,15,1,5,2,3,5,12,10,2,6,0,14,4,3,9,2,3,5,0,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"2\", \"9\", \"3\"], \"clip_start\": 87.0, \"clip_end\": 92.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,8,7,4,10,3,9,0,8,7,4,10,8,2,9,7,4,3,12,15,1,5,0,8,7,4,1,15,1,5,3,12,1,5,0,8,7,4,10,9,13,11,0,8,7,4,1,5,12,13,11,3,12,1,5,12,14,4,10,15,1,2,6,0,1,5,6,0,8,2,3,5,11,9,11,0,8,2,6,0,13,11,9,8,2,9,6,0,8,2,9,3,12,8,2,0,8,2,6,0,13,11,0,8,7,4,3,12,15,1,5,2,3,5,12,10,2,6,0,14,4,3,9,2,3,5,0,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 67.0, \"clip_end\": 73.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,8,7,4,10,3,9,0,8,7,4,10,8,2,9,7,4,3,12,15,1,5,0,8,7,4,1,15,1,5,3,12,1,5,0,8,7,4,10,9,13,11,0,8,7,4,1,5,12,13,11,3,12,1,5,12,14,4,10,15,1,2,6,0,1,5,6,0,8,2,3,5,11,9,11,0,8,2,6,0,13,11,9,8,2,9,6,0,8,2,9,3,12,8,2,0,8,2,6,0,13,11,0,8,7,4,3,12,15,1,5,2,3,5,12,10,2,6,0,14,4,3,9,2,3,5,0,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"0\"], \"clip_start\": 73.0, \"clip_end\": 76.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q15_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,8,7,4,10,3,9,0,8,7,4,10,8,2,9,7,4,3,12,15,1,5,0,8,7,4,1,15,1,5,3,12,1,5,0,8,7,4,10,9,13,11,0,8,7,4,1,5,12,13,11,3,12,1,5,12,14,4,10,15,1,2,6,0,1,5,6,0,8,2,3,5,11,9,11,0,8,2,6,0,13,11,9,8,2,9,6,0,8,2,9,3,12,8,2,0,8,2,6,0,13,11,0,8,7,4,3,12,15,1,5,2,3,5,12,10,2,6,0,14,4,3,9,2,3,5,0,8", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"5\", \"11\"], \"clip_start\": 100.0, \"clip_end\": 104.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,0,2,1,14,9,15,0,14,11,7,13,1,8,5,11,5,10,5,11,5,11,5,11,5,10,0,11,7,4,6,1,3,12,7,5,11,7,0,15,0,7,2,1,14,14,1,14,14,0,7,15,11,7,12,2,1,14,9,13,15,0,2,1,7,7,0,5,10,5,13,3,4,6,1,3,12,7,6,1,7,9,14,10,5,11,7,15,0,1,7,10,5,10,12,15,0,13,12,1,7,5,11,15,0,6,1,13,10,0,1,7,3,15,0,2,10,11,7,8,7,10,12,0,10,12,2", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 119.0, \"clip_end\": 124.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,0,2,1,14,9,15,0,14,11,7,13,1,8,5,11,5,10,5,11,5,11,5,11,5,10,0,11,7,4,6,1,3,12,7,5,11,7,0,15,0,7,2,1,14,14,1,14,14,0,7,15,11,7,12,2,1,14,9,13,15,0,2,1,7,7,0,5,10,5,13,3,4,6,1,3,12,7,6,1,7,9,14,10,5,11,7,15,0,1,7,10,5,10,12,15,0,13,12,1,7,5,11,15,0,6,1,13,10,0,1,7,3,15,0,2,10,11,7,8,7,10,12,0,10,12,2", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 49.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,0,2,1,14,9,15,0,14,11,7,13,1,8,5,11,5,10,5,11,5,11,5,11,5,10,0,11,7,4,6,1,3,12,7,5,11,7,0,15,0,7,2,1,14,14,1,14,14,0,7,15,11,7,12,2,1,14,9,13,15,0,2,1,7,7,0,5,10,5,13,3,4,6,1,3,12,7,6,1,7,9,14,10,5,11,7,15,0,1,7,10,5,10,12,15,0,13,12,1,7,5,11,15,0,6,1,13,10,0,1,7,3,15,0,2,10,11,7,8,7,10,12,0,10,12,2", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"12\", \"7\", \"6\"], \"clip_start\": 75.0, \"clip_end\": 80.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,0,2,1,14,9,15,0,14,11,7,13,1,8,5,11,5,10,5,11,5,11,5,11,5,10,0,11,7,4,6,1,3,12,7,5,11,7,0,15,0,7,2,1,14,14,1,14,14,0,7,15,11,7,12,2,1,14,9,13,15,0,2,1,7,7,0,5,10,5,13,3,4,6,1,3,12,7,6,1,7,9,14,10,5,11,7,15,0,1,7,10,5,10,12,15,0,13,12,1,7,5,11,15,0,6,1,13,10,0,1,7,3,15,0,2,10,11,7,8,7,10,12,0,10,12,2", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 94.0, \"clip_end\": 98.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,0,2,1,14,9,15,0,14,11,7,13,1,8,5,11,5,10,5,11,5,11,5,11,5,10,0,11,7,4,6,1,3,12,7,5,11,7,0,15,0,7,2,1,14,14,1,14,14,0,7,15,11,7,12,2,1,14,9,13,15,0,2,1,7,7,0,5,10,5,13,3,4,6,1,3,12,7,6,1,7,9,14,10,5,11,7,15,0,1,7,10,5,10,12,15,0,13,12,1,7,5,11,15,0,6,1,13,10,0,1,7,3,15,0,2,10,11,7,8,7,10,12,0,10,12,2", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 116.0, \"clip_end\": 121.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,0,2,1,14,9,15,0,14,11,7,13,1,8,5,11,5,10,5,11,5,11,5,11,5,10,0,11,7,4,6,1,3,12,7,5,11,7,0,15,0,7,2,1,14,14,1,14,14,0,7,15,11,7,12,2,1,14,9,13,15,0,2,1,7,7,0,5,10,5,13,3,4,6,1,3,12,7,6,1,7,9,14,10,5,11,7,15,0,1,7,10,5,10,12,15,0,13,12,1,7,5,11,15,0,6,1,13,10,0,1,7,3,15,0,2,10,11,7,8,7,10,12,0,10,12,2", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"15\"], \"clip_start\": 86.0, \"clip_end\": 89.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,0,2,1,14,9,15,0,14,11,7,13,1,8,5,11,5,10,5,11,5,11,5,11,5,10,0,11,7,4,6,1,3,12,7,5,11,7,0,15,0,7,2,1,14,14,1,14,14,0,7,15,11,7,12,2,1,14,9,13,15,0,2,1,7,7,0,5,10,5,13,3,4,6,1,3,12,7,6,1,7,9,14,10,5,11,7,15,0,1,7,10,5,10,12,15,0,13,12,1,7,5,11,15,0,6,1,13,10,0,1,7,3,15,0,2,10,11,7,8,7,10,12,0,10,12,2", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"10\", \"5\", \"11\", \"7\"], \"clip_start\": 83.0, \"clip_end\": 88.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,0,2,1,14,9,15,0,14,11,7,13,1,8,5,11,5,10,5,11,5,11,5,11,5,10,0,11,7,4,6,1,3,12,7,5,11,7,0,15,0,7,2,1,14,14,1,14,14,0,7,15,11,7,12,2,1,14,9,13,15,0,2,1,7,7,0,5,10,5,13,3,4,6,1,3,12,7,6,1,7,9,14,10,5,11,7,15,0,1,7,10,5,10,12,15,0,13,12,1,7,5,11,15,0,6,1,13,10,0,1,7,3,15,0,2,10,11,7,8,7,10,12,0,10,12,2", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"1\"], \"clip_start\": 109.0, \"clip_end\": 112.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,0,2,1,14,9,15,0,14,11,7,13,1,8,5,11,5,10,5,11,5,11,5,11,5,10,0,11,7,4,6,1,3,12,7,5,11,7,0,15,0,7,2,1,14,14,1,14,14,0,7,15,11,7,12,2,1,14,9,13,15,0,2,1,7,7,0,5,10,5,13,3,4,6,1,3,12,7,6,1,7,9,14,10,5,11,7,15,0,1,7,10,5,10,12,15,0,13,12,1,7,5,11,15,0,6,1,13,10,0,1,7,3,15,0,2,10,11,7,8,7,10,12,0,10,12,2", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"0\", \"14\", \"11\"], \"clip_start\": 7.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q9_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,0,2,1,14,9,15,0,14,11,7,13,1,8,5,11,5,10,5,11,5,11,5,11,5,10,0,11,7,4,6,1,3,12,7,5,11,7,0,15,0,7,2,1,14,14,1,14,14,0,7,15,11,7,12,2,1,14,9,13,15,0,2,1,7,7,0,5,10,5,13,3,4,6,1,3,12,7,6,1,7,9,14,10,5,11,7,15,0,1,7,10,5,10,12,15,0,13,12,1,7,5,11,15,0,6,1,13,10,0,1,7,3,15,0,2,10,11,7,8,7,10,12,0,10,12,2", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"0\", \"2\", \"1\", \"14\", \"9\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,0,2,1,14,9,15,0,14,11,7,13,1,8,5,11,5,10,5,11,5,11,5,11,5,10,0,11,7,4,6,1,3,12,7,5,11,7,0,15,0,7,2,1,14,14,1,14,14,0,7,15,11,7,12,2,1,14,9,13,15,0,2,1,7,7,0,5,10,5,13,3,4,6,1,3,12,7,6,1,7,9,14,10,5,11,7,15,0,1,7,10,5,10,12,15,0,13,12,1,7,5,11,15,0,6,1,13,10,0,1,7,3,15,0,2,10,11,7,8,7,10,12,0,10,12,2", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"7\", \"5\", \"11\"], \"clip_start\": 34.0, \"clip_end\": 38.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q11_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,0,2,1,14,9,15,0,14,11,7,13,1,8,5,11,5,10,5,11,5,11,5,11,5,10,0,11,7,4,6,1,3,12,7,5,11,7,0,15,0,7,2,1,14,14,1,14,14,0,7,15,11,7,12,2,1,14,9,13,15,0,2,1,7,7,0,5,10,5,13,3,4,6,1,3,12,7,6,1,7,9,14,10,5,11,7,15,0,1,7,10,5,10,12,15,0,13,12,1,7,5,11,15,0,6,1,13,10,0,1,7,3,15,0,2,10,11,7,8,7,10,12,0,10,12,2", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"10\", \"12\", \"15\", \"0\"], \"clip_start\": 92.0, \"clip_end\": 98.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q12_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,0,2,1,14,9,15,0,14,11,7,13,1,8,5,11,5,10,5,11,5,11,5,11,5,10,0,11,7,4,6,1,3,12,7,5,11,7,0,15,0,7,2,1,14,14,1,14,14,0,7,15,11,7,12,2,1,14,9,13,15,0,2,1,7,7,0,5,10,5,13,3,4,6,1,3,12,7,6,1,7,9,14,10,5,11,7,15,0,1,7,10,5,10,12,15,0,13,12,1,7,5,11,15,0,6,1,13,10,0,1,7,3,15,0,2,10,11,7,8,7,10,12,0,10,12,2", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"13\", \"3\"], \"clip_start\": 69.0, \"clip_end\": 73.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q13_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,0,2,1,14,9,15,0,14,11,7,13,1,8,5,11,5,10,5,11,5,11,5,11,5,10,0,11,7,4,6,1,3,12,7,5,11,7,0,15,0,7,2,1,14,14,1,14,14,0,7,15,11,7,12,2,1,14,9,13,15,0,2,1,7,7,0,5,10,5,13,3,4,6,1,3,12,7,6,1,7,9,14,10,5,11,7,15,0,1,7,10,5,10,12,15,0,13,12,1,7,5,11,15,0,6,1,13,10,0,1,7,3,15,0,2,10,11,7,8,7,10,12,0,10,12,2", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"11\", \"2\", \"3\"], \"clip_start\": 47.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q14_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,0,2,1,14,9,15,0,14,11,7,13,1,8,5,11,5,10,5,11,5,11,5,11,5,10,0,11,7,4,6,1,3,12,7,5,11,7,0,15,0,7,2,1,14,14,1,14,14,0,7,15,11,7,12,2,1,14,9,13,15,0,2,1,7,7,0,5,10,5,13,3,4,6,1,3,12,7,6,1,7,9,14,10,5,11,7,15,0,1,7,10,5,10,12,15,0,13,12,1,7,5,11,15,0,6,1,13,10,0,1,7,3,15,0,2,10,11,7,8,7,10,12,0,10,12,2", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"13\", \"9\", \"14\"], \"clip_start\": 15.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,0,2,1,14,9,15,0,14,11,7,13,1,8,5,11,5,10,5,11,5,11,5,11,5,10,0,11,7,4,6,1,3,12,7,5,11,7,0,15,0,7,2,1,14,14,1,14,14,0,7,15,11,7,12,2,1,14,9,13,15,0,2,1,7,7,0,5,10,5,13,3,4,6,1,3,12,7,6,1,7,9,14,10,5,11,7,15,0,1,7,10,5,10,12,15,0,13,12,1,7,5,11,15,0,6,1,13,10,0,1,7,3,15,0,2,10,11,7,8,7,10,12,0,10,12,2", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"14\", \"14\", \"14\"], \"clip_start\": 57.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,10,1,9,10,6,11,2,7,9,4,14,14,9,15,14,4,14,14,14,4,14,14,14,10,11,2,7,9,0,1,9,3,4,14,14,10,11,2,7,9,8,8,1,10,5,6,1,3,4,14,14,4,14,14,14,4,14,14,14,8,14,10,11,2,0,1,0,1,2,7,9,15,14,4,14,14,14,9,2,7,9,0,6,10,7,9,7,9,9,6,10,1,14,9,10,0,14,4,14,14,14,7,9,0,14,9,9,4,14,14,10,10,3,2,7,9,15,14,9,12,9,4,14,14,10", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"10\", \"11\", \"2\"], \"clip_start\": 37.0, \"clip_end\": 41.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,10,1,9,10,6,11,2,7,9,4,14,14,9,15,14,4,14,14,14,4,14,14,14,10,11,2,7,9,0,1,9,3,4,14,14,10,11,2,7,9,8,8,1,10,5,6,1,3,4,14,14,4,14,14,14,4,14,14,14,8,14,10,11,2,0,1,0,1,2,7,9,15,14,4,14,14,14,9,2,7,9,0,6,10,7,9,7,9,9,6,10,1,14,9,10,0,14,4,14,14,14,7,9,0,14,9,9,4,14,14,10,10,3,2,7,9,15,14,9,12,9,4,14,14,10", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"1\", \"14\", \"9\", \"10\"], \"clip_start\": 92.0, \"clip_end\": 98.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,10,1,9,10,6,11,2,7,9,4,14,14,9,15,14,4,14,14,14,4,14,14,14,10,11,2,7,9,0,1,9,3,4,14,14,10,11,2,7,9,8,8,1,10,5,6,1,3,4,14,14,4,14,14,14,4,14,14,14,8,14,10,11,2,0,1,0,1,2,7,9,15,14,4,14,14,14,9,2,7,9,0,6,10,7,9,7,9,9,6,10,1,14,9,10,0,14,4,14,14,14,7,9,0,14,9,9,4,14,14,10,10,3,2,7,9,15,14,9,12,9,4,14,14,10", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"10\", \"11\", \"2\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,10,1,9,10,6,11,2,7,9,4,14,14,9,15,14,4,14,14,14,4,14,14,14,10,11,2,7,9,0,1,9,3,4,14,14,10,11,2,7,9,8,8,1,10,5,6,1,3,4,14,14,4,14,14,14,4,14,14,14,8,14,10,11,2,0,1,0,1,2,7,9,15,14,4,14,14,14,9,2,7,9,0,6,10,7,9,7,9,9,6,10,1,14,9,10,0,14,4,14,14,14,7,9,0,14,9,9,4,14,14,10,10,3,2,7,9,15,14,9,12,9,4,14,14,10", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"6\", \"10\", \"1\", \"14\"], \"clip_start\": 91.0, \"clip_end\": 96.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,10,1,9,10,6,11,2,7,9,4,14,14,9,15,14,4,14,14,14,4,14,14,14,10,11,2,7,9,0,1,9,3,4,14,14,10,11,2,7,9,8,8,1,10,5,6,1,3,4,14,14,4,14,14,14,4,14,14,14,8,14,10,11,2,0,1,0,1,2,7,9,15,14,4,14,14,14,9,2,7,9,0,6,10,7,9,7,9,9,6,10,1,14,9,10,0,14,4,14,14,14,7,9,0,14,9,9,4,14,14,10,10,3,2,7,9,15,14,9,12,9,4,14,14,10", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"9\", \"4\", \"14\", \"14\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,10,1,9,10,6,11,2,7,9,4,14,14,9,15,14,4,14,14,14,4,14,14,14,10,11,2,7,9,0,1,9,3,4,14,14,10,11,2,7,9,8,8,1,10,5,6,1,3,4,14,14,4,14,14,14,4,14,14,14,8,14,10,11,2,0,1,0,1,2,7,9,15,14,4,14,14,14,9,2,7,9,0,6,10,7,9,7,9,9,6,10,1,14,9,10,0,14,4,14,14,14,7,9,0,14,9,9,4,14,14,10,10,3,2,7,9,15,14,9,12,9,4,14,14,10", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"6\", \"1\", \"3\"], \"clip_start\": 46.0, \"clip_end\": 51.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,10,1,9,10,6,11,2,7,9,4,14,14,9,15,14,4,14,14,14,4,14,14,14,10,11,2,7,9,0,1,9,3,4,14,14,10,11,2,7,9,8,8,1,10,5,6,1,3,4,14,14,4,14,14,14,4,14,14,14,8,14,10,11,2,0,1,0,1,2,7,9,15,14,4,14,14,14,9,2,7,9,0,6,10,7,9,7,9,9,6,10,1,14,9,10,0,14,4,14,14,14,7,9,0,14,9,9,4,14,14,10,10,3,2,7,9,15,14,9,12,9,4,14,14,10", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"9\", \"4\", \"14\"], \"clip_start\": 107.0, \"clip_end\": 112.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,10,1,9,10,6,11,2,7,9,4,14,14,9,15,14,4,14,14,14,4,14,14,14,10,11,2,7,9,0,1,9,3,4,14,14,10,11,2,7,9,8,8,1,10,5,6,1,3,4,14,14,4,14,14,14,4,14,14,14,8,14,10,11,2,0,1,0,1,2,7,9,15,14,4,14,14,14,9,2,7,9,0,6,10,7,9,7,9,9,6,10,1,14,9,10,0,14,4,14,14,14,7,9,0,14,9,9,4,14,14,10,10,3,2,7,9,15,14,9,12,9,4,14,14,10", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"14\", \"14\"], \"clip_start\": 100.0, \"clip_end\": 103.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,10,1,9,10,6,11,2,7,9,4,14,14,9,15,14,4,14,14,14,4,14,14,14,10,11,2,7,9,0,1,9,3,4,14,14,10,11,2,7,9,8,8,1,10,5,6,1,3,4,14,14,4,14,14,14,4,14,14,14,8,14,10,11,2,0,1,0,1,2,7,9,15,14,4,14,14,14,9,2,7,9,0,6,10,7,9,7,9,9,6,10,1,14,9,10,0,14,4,14,14,14,7,9,0,14,9,9,4,14,14,10,10,3,2,7,9,15,14,9,12,9,4,14,14,10", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"2\", \"7\", \"9\", \"15\", \"14\"], \"clip_start\": 70.0, \"clip_end\": 76.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,10,1,9,10,6,11,2,7,9,4,14,14,9,15,14,4,14,14,14,4,14,14,14,10,11,2,7,9,0,1,9,3,4,14,14,10,11,2,7,9,8,8,1,10,5,6,1,3,4,14,14,4,14,14,14,4,14,14,14,8,14,10,11,2,0,1,0,1,2,7,9,15,14,4,14,14,14,9,2,7,9,0,6,10,7,9,7,9,9,6,10,1,14,9,10,0,14,4,14,14,14,7,9,0,14,9,9,4,14,14,10,10,3,2,7,9,15,14,9,12,9,4,14,14,10", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"14\"], \"clip_start\": 53.0, \"clip_end\": 56.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,10,1,9,10,6,11,2,7,9,4,14,14,9,15,14,4,14,14,14,4,14,14,14,10,11,2,7,9,0,1,9,3,4,14,14,10,11,2,7,9,8,8,1,10,5,6,1,3,4,14,14,4,14,14,14,4,14,14,14,8,14,10,11,2,0,1,0,1,2,7,9,15,14,4,14,14,14,9,2,7,9,0,6,10,7,9,7,9,9,6,10,1,14,9,10,0,14,4,14,14,14,7,9,0,14,9,9,4,14,14,10,10,3,2,7,9,15,14,9,12,9,4,14,14,10", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"6\", \"1\"], \"clip_start\": 46.0, \"clip_end\": 50.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,10,1,9,10,6,11,2,7,9,4,14,14,9,15,14,4,14,14,14,4,14,14,14,10,11,2,7,9,0,1,9,3,4,14,14,10,11,2,7,9,8,8,1,10,5,6,1,3,4,14,14,4,14,14,14,4,14,14,14,8,14,10,11,2,0,1,0,1,2,7,9,15,14,4,14,14,14,9,2,7,9,0,6,10,7,9,7,9,9,6,10,1,14,9,10,0,14,4,14,14,14,7,9,0,14,9,9,4,14,14,10,10,3,2,7,9,15,14,9,12,9,4,14,14,10", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"8\", \"8\", \"1\"], \"clip_start\": 41.0, \"clip_end\": 46.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,10,1,9,10,6,11,2,7,9,4,14,14,9,15,14,4,14,14,14,4,14,14,14,10,11,2,7,9,0,1,9,3,4,14,14,10,11,2,7,9,8,8,1,10,5,6,1,3,4,14,14,4,14,14,14,4,14,14,14,8,14,10,11,2,0,1,0,1,2,7,9,15,14,4,14,14,14,9,2,7,9,0,6,10,7,9,7,9,9,6,10,1,14,9,10,0,14,4,14,14,14,7,9,0,14,9,9,4,14,14,10,10,3,2,7,9,15,14,9,12,9,4,14,14,10", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"14\", \"4\", \"14\", \"14\"], \"clip_start\": 55.0, \"clip_end\": 61.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,10,1,9,10,6,11,2,7,9,4,14,14,9,15,14,4,14,14,14,4,14,14,14,10,11,2,7,9,0,1,9,3,4,14,14,10,11,2,7,9,8,8,1,10,5,6,1,3,4,14,14,4,14,14,14,4,14,14,14,8,14,10,11,2,0,1,0,1,2,7,9,15,14,4,14,14,14,9,2,7,9,0,6,10,7,9,7,9,9,6,10,1,14,9,10,0,14,4,14,14,14,7,9,0,14,9,9,4,14,14,10,10,3,2,7,9,15,14,9,12,9,4,14,14,10", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"7\", \"9\", \"8\"], \"clip_start\": 39.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,10,1,9,10,6,11,2,7,9,4,14,14,9,15,14,4,14,14,14,4,14,14,14,10,11,2,7,9,0,1,9,3,4,14,14,10,11,2,7,9,8,8,1,10,5,6,1,3,4,14,14,4,14,14,14,4,14,14,14,8,14,10,11,2,0,1,0,1,2,7,9,15,14,4,14,14,14,9,2,7,9,0,6,10,7,9,7,9,9,6,10,1,14,9,10,0,14,4,14,14,14,7,9,0,14,9,9,4,14,14,10,10,3,2,7,9,15,14,9,12,9,4,14,14,10", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"4\", \"14\", \"14\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,14,14,10,1,9,10,6,11,2,7,9,4,14,14,9,15,14,4,14,14,14,4,14,14,14,10,11,2,7,9,0,1,9,3,4,14,14,10,11,2,7,9,8,8,1,10,5,6,1,3,4,14,14,4,14,14,14,4,14,14,14,8,14,10,11,2,0,1,0,1,2,7,9,15,14,4,14,14,14,9,2,7,9,0,6,10,7,9,7,9,9,6,10,1,14,9,10,0,14,4,14,14,14,7,9,0,14,9,9,4,14,14,10,10,3,2,7,9,15,14,9,12,9,4,14,14,10", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"8\", \"2\", \"0\", \"14\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,1,6,1,11,5,8,5,5,8,10,10,14,4,1,11,5,8,10,14,14,7,6,8,2,0,14,5,6,12,14,11,11,10,2,0,4,1,6,1,11,5,8,7,6,4,1,11,5,8,9,12,5,15,10,14,10,5,12,14,11,10,11,10,1,11,5,8,10,5,1,11,5,8,10,10,1,11,5,8,15,0,11,10,0,2,0,14,1,11,5,8,10,5,3,7,6,8,1,8,0,15,7,6,8,6,12,14,4,1,6,8,6,12,14,11,10,9,1,11,5,8,10,13,8,7,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"11\", \"5\", \"8\", \"10\"], \"clip_start\": 65.0, \"clip_end\": 70.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,1,6,1,11,5,8,5,5,8,10,10,14,4,1,11,5,8,10,14,14,7,6,8,2,0,14,5,6,12,14,11,11,10,2,0,4,1,6,1,11,5,8,7,6,4,1,11,5,8,9,12,5,15,10,14,10,5,12,14,11,10,11,10,1,11,5,8,10,5,1,11,5,8,10,10,1,11,5,8,15,0,11,10,0,2,0,14,1,11,5,8,10,5,3,7,6,8,1,8,0,15,7,6,8,6,12,14,4,1,6,8,6,12,14,11,10,9,1,11,5,8,10,13,8,7,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"12\", \"14\", \"11\"], \"clip_start\": 112.0, \"clip_end\": 117.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,1,6,1,11,5,8,5,5,8,10,10,14,4,1,11,5,8,10,14,14,7,6,8,2,0,14,5,6,12,14,11,11,10,2,0,4,1,6,1,11,5,8,7,6,4,1,11,5,8,9,12,5,15,10,14,10,5,12,14,11,10,11,10,1,11,5,8,10,5,1,11,5,8,10,10,1,11,5,8,15,0,11,10,0,2,0,14,1,11,5,8,10,5,3,7,6,8,1,8,0,15,7,6,8,6,12,14,4,1,6,8,6,12,14,11,10,9,1,11,5,8,10,13,8,7,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"6\", \"8\", \"2\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,1,6,1,11,5,8,5,5,8,10,10,14,4,1,11,5,8,10,14,14,7,6,8,2,0,14,5,6,12,14,11,11,10,2,0,4,1,6,1,11,5,8,7,6,4,1,11,5,8,9,12,5,15,10,14,10,5,12,14,11,10,11,10,1,11,5,8,10,5,1,11,5,8,10,10,1,11,5,8,15,0,11,10,0,2,0,14,1,11,5,8,10,5,3,7,6,8,1,8,0,15,7,6,8,6,12,14,4,1,6,8,6,12,14,11,10,9,1,11,5,8,10,13,8,7,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"10\", \"14\", \"10\"], \"clip_start\": 53.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,1,6,1,11,5,8,5,5,8,10,10,14,4,1,11,5,8,10,14,14,7,6,8,2,0,14,5,6,12,14,11,11,10,2,0,4,1,6,1,11,5,8,7,6,4,1,11,5,8,9,12,5,15,10,14,10,5,12,14,11,10,11,10,1,11,5,8,10,5,1,11,5,8,10,10,1,11,5,8,15,0,11,10,0,2,0,14,1,11,5,8,10,5,3,7,6,8,1,8,0,15,7,6,8,6,12,14,4,1,6,8,6,12,14,11,10,9,1,11,5,8,10,13,8,7,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"2\", \"0\", \"14\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,1,6,1,11,5,8,5,5,8,10,10,14,4,1,11,5,8,10,14,14,7,6,8,2,0,14,5,6,12,14,11,11,10,2,0,4,1,6,1,11,5,8,7,6,4,1,11,5,8,9,12,5,15,10,14,10,5,12,14,11,10,11,10,1,11,5,8,10,5,1,11,5,8,10,10,1,11,5,8,15,0,11,10,0,2,0,14,1,11,5,8,10,5,3,7,6,8,1,8,0,15,7,6,8,6,12,14,4,1,6,8,6,12,14,11,10,9,1,11,5,8,10,13,8,7,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 106.0, \"clip_end\": 109.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,1,6,1,11,5,8,5,5,8,10,10,14,4,1,11,5,8,10,14,14,7,6,8,2,0,14,5,6,12,14,11,11,10,2,0,4,1,6,1,11,5,8,7,6,4,1,11,5,8,9,12,5,15,10,14,10,5,12,14,11,10,11,10,1,11,5,8,10,5,1,11,5,8,10,10,1,11,5,8,15,0,11,10,0,2,0,14,1,11,5,8,10,5,3,7,6,8,1,8,0,15,7,6,8,6,12,14,4,1,6,8,6,12,14,11,10,9,1,11,5,8,10,13,8,7,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"0\", \"4\"], \"clip_start\": 34.0, \"clip_end\": 38.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,1,6,1,11,5,8,5,5,8,10,10,14,4,1,11,5,8,10,14,14,7,6,8,2,0,14,5,6,12,14,11,11,10,2,0,4,1,6,1,11,5,8,7,6,4,1,11,5,8,9,12,5,15,10,14,10,5,12,14,11,10,11,10,1,11,5,8,10,5,1,11,5,8,10,10,1,11,5,8,15,0,11,10,0,2,0,14,1,11,5,8,10,5,3,7,6,8,1,8,0,15,7,6,8,6,12,14,4,1,6,8,6,12,14,11,10,9,1,11,5,8,10,13,8,7,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"11\", \"10\", \"2\", \"0\"], \"clip_start\": 32.0, \"clip_end\": 37.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,1,6,1,11,5,8,5,5,8,10,10,14,4,1,11,5,8,10,14,14,7,6,8,2,0,14,5,6,12,14,11,11,10,2,0,4,1,6,1,11,5,8,7,6,4,1,11,5,8,9,12,5,15,10,14,10,5,12,14,11,10,11,10,1,11,5,8,10,5,1,11,5,8,10,10,1,11,5,8,15,0,11,10,0,2,0,14,1,11,5,8,10,5,3,7,6,8,1,8,0,15,7,6,8,6,12,14,4,1,6,8,6,12,14,11,10,9,1,11,5,8,10,13,8,7,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"10\", \"14\", \"10\"], \"clip_start\": 54.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,1,6,1,11,5,8,5,5,8,10,10,14,4,1,11,5,8,10,14,14,7,6,8,2,0,14,5,6,12,14,11,11,10,2,0,4,1,6,1,11,5,8,7,6,4,1,11,5,8,9,12,5,15,10,14,10,5,12,14,11,10,11,10,1,11,5,8,10,5,1,11,5,8,10,10,1,11,5,8,15,0,11,10,0,2,0,14,1,11,5,8,10,5,3,7,6,8,1,8,0,15,7,6,8,6,12,14,4,1,6,8,6,12,14,11,10,9,1,11,5,8,10,13,8,7,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"12\", \"14\", \"11\"], \"clip_start\": 57.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,1,6,1,11,5,8,5,5,8,10,10,14,4,1,11,5,8,10,14,14,7,6,8,2,0,14,5,6,12,14,11,11,10,2,0,4,1,6,1,11,5,8,7,6,4,1,11,5,8,9,12,5,15,10,14,10,5,12,14,11,10,11,10,1,11,5,8,10,5,1,11,5,8,10,10,1,11,5,8,15,0,11,10,0,2,0,14,1,11,5,8,10,5,3,7,6,8,1,8,0,15,7,6,8,6,12,14,4,1,6,8,6,12,14,11,10,9,1,11,5,8,10,13,8,7,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"11\", \"10\", \"0\"], \"clip_start\": 82.0, \"clip_end\": 86.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,1,6,1,11,5,8,5,5,8,10,10,14,4,1,11,5,8,10,14,14,7,6,8,2,0,14,5,6,12,14,11,11,10,2,0,4,1,6,1,11,5,8,7,6,4,1,11,5,8,9,12,5,15,10,14,10,5,12,14,11,10,11,10,1,11,5,8,10,5,1,11,5,8,10,10,1,11,5,8,15,0,11,10,0,2,0,14,1,11,5,8,10,5,3,7,6,8,1,8,0,15,7,6,8,6,12,14,4,1,6,8,6,12,14,11,10,9,1,11,5,8,10,13,8,7,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\"], \"clip_start\": 40.0, \"clip_end\": 43.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,1,6,1,11,5,8,5,5,8,10,10,14,4,1,11,5,8,10,14,14,7,6,8,2,0,14,5,6,12,14,11,11,10,2,0,4,1,6,1,11,5,8,7,6,4,1,11,5,8,9,12,5,15,10,14,10,5,12,14,11,10,11,10,1,11,5,8,10,5,1,11,5,8,10,10,1,11,5,8,15,0,11,10,0,2,0,14,1,11,5,8,10,5,3,7,6,8,1,8,0,15,7,6,8,6,12,14,4,1,6,8,6,12,14,11,10,9,1,11,5,8,10,13,8,7,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"1\", \"6\", \"1\", \"11\", \"5\"], \"clip_start\": 37.0, \"clip_end\": 43.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q13_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,1,6,1,11,5,8,5,5,8,10,10,14,4,1,11,5,8,10,14,14,7,6,8,2,0,14,5,6,12,14,11,11,10,2,0,4,1,6,1,11,5,8,7,6,4,1,11,5,8,9,12,5,15,10,14,10,5,12,14,11,10,11,10,1,11,5,8,10,5,1,11,5,8,10,10,1,11,5,8,15,0,11,10,0,2,0,14,1,11,5,8,10,5,3,7,6,8,1,8,0,15,7,6,8,6,12,14,4,1,6,8,6,12,14,11,10,9,1,11,5,8,10,13,8,7,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"8\", \"10\", \"13\", \"8\", \"7\"], \"clip_start\": 121.0, \"clip_end\": 127.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,1,6,1,11,5,8,5,5,8,10,10,14,4,1,11,5,8,10,14,14,7,6,8,2,0,14,5,6,12,14,11,11,10,2,0,4,1,6,1,11,5,8,7,6,4,1,11,5,8,9,12,5,15,10,14,10,5,12,14,11,10,11,10,1,11,5,8,10,5,1,11,5,8,10,10,1,11,5,8,15,0,11,10,0,2,0,14,1,11,5,8,10,5,3,7,6,8,1,8,0,15,7,6,8,6,12,14,4,1,6,8,6,12,14,11,10,9,1,11,5,8,10,13,8,7,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"10\", \"14\", \"14\", \"7\"], \"clip_start\": 18.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,1,6,1,11,5,8,5,5,8,10,10,14,4,1,11,5,8,10,14,14,7,6,8,2,0,14,5,6,12,14,11,11,10,2,0,4,1,6,1,11,5,8,7,6,4,1,11,5,8,9,12,5,15,10,14,10,5,12,14,11,10,11,10,1,11,5,8,10,5,1,11,5,8,10,10,1,11,5,8,15,0,11,10,0,2,0,14,1,11,5,8,10,5,3,7,6,8,1,8,0,15,7,6,8,6,12,14,4,1,6,8,6,12,14,11,10,9,1,11,5,8,10,13,8,7,6", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 80.0, \"clip_end\": 84.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,9,14,5,1,13,12,6,11,4,8,14,5,12,6,1,13,9,14,5,12,6,2,14,5,12,6,7,4,8,9,14,5,1,13,12,0,2,12,6,3,15,10,8,14,5,12,6,13,9,14,5,1,13,12,6,11,4,8,14,12,6,2,6,2,15,8,14,15,10,8,14,5,1,13,12,6,11,4,13,9,14,5,12,6,2,10,8,14,5,1,13,12,6,12,6,13,9,14,12,6,5,3,3,1,13,12,6,12,6,2,0,0,1,13,12,6,12,6,2,13,9,3,11,4,13,9,3", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"12\", \"6\", \"11\"], \"clip_start\": 74.0, \"clip_end\": 78.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,9,14,5,1,13,12,6,11,4,8,14,5,12,6,1,13,9,14,5,12,6,2,14,5,12,6,7,4,8,9,14,5,1,13,12,0,2,12,6,3,15,10,8,14,5,12,6,13,9,14,5,1,13,12,6,11,4,8,14,12,6,2,6,2,15,8,14,15,10,8,14,5,1,13,12,6,11,4,13,9,14,5,12,6,2,10,8,14,5,1,13,12,6,12,6,13,9,14,12,6,5,3,3,1,13,12,6,12,6,2,0,0,1,13,12,6,12,6,2,13,9,3,11,4,13,9,3", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,9,14,5,1,13,12,6,11,4,8,14,5,12,6,1,13,9,14,5,12,6,2,14,5,12,6,7,4,8,9,14,5,1,13,12,0,2,12,6,3,15,10,8,14,5,12,6,13,9,14,5,1,13,12,6,11,4,8,14,12,6,2,6,2,15,8,14,15,10,8,14,5,1,13,12,6,11,4,13,9,14,5,12,6,2,10,8,14,5,1,13,12,6,12,6,13,9,14,12,6,5,3,3,1,13,12,6,12,6,2,0,0,1,13,12,6,12,6,2,13,9,3,11,4,13,9,3", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"13\", \"12\"], \"clip_start\": 72.0, \"clip_end\": 76.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,9,14,5,1,13,12,6,11,4,8,14,5,12,6,1,13,9,14,5,12,6,2,14,5,12,6,7,4,8,9,14,5,1,13,12,0,2,12,6,3,15,10,8,14,5,12,6,13,9,14,5,1,13,12,6,11,4,8,14,12,6,2,6,2,15,8,14,15,10,8,14,5,1,13,12,6,11,4,13,9,14,5,12,6,2,10,8,14,5,1,13,12,6,12,6,13,9,14,12,6,5,3,3,1,13,12,6,12,6,2,0,0,1,13,12,6,12,6,2,13,9,3,11,4,13,9,3", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"9\", \"14\"], \"clip_start\": 95.0, \"clip_end\": 99.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,9,14,5,1,13,12,6,11,4,8,14,5,12,6,1,13,9,14,5,12,6,2,14,5,12,6,7,4,8,9,14,5,1,13,12,0,2,12,6,3,15,10,8,14,5,12,6,13,9,14,5,1,13,12,6,11,4,8,14,12,6,2,6,2,15,8,14,15,10,8,14,5,1,13,12,6,11,4,13,9,14,5,12,6,2,10,8,14,5,1,13,12,6,12,6,13,9,14,12,6,5,3,3,1,13,12,6,12,6,2,0,0,1,13,12,6,12,6,2,13,9,3,11,4,13,9,3", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"8\", \"14\", \"15\", \"10\"], \"clip_start\": 65.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,9,14,5,1,13,12,6,11,4,8,14,5,12,6,1,13,9,14,5,12,6,2,14,5,12,6,7,4,8,9,14,5,1,13,12,0,2,12,6,3,15,10,8,14,5,12,6,13,9,14,5,1,13,12,6,11,4,8,14,12,6,2,6,2,15,8,14,15,10,8,14,5,1,13,12,6,11,4,13,9,14,5,12,6,2,10,8,14,5,1,13,12,6,12,6,13,9,14,12,6,5,3,3,1,13,12,6,12,6,2,0,0,1,13,12,6,12,6,2,13,9,3,11,4,13,9,3", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"1\", \"13\", \"9\", \"14\"], \"clip_start\": 14.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,9,14,5,1,13,12,6,11,4,8,14,5,12,6,1,13,9,14,5,12,6,2,14,5,12,6,7,4,8,9,14,5,1,13,12,0,2,12,6,3,15,10,8,14,5,12,6,13,9,14,5,1,13,12,6,11,4,8,14,12,6,2,6,2,15,8,14,15,10,8,14,5,1,13,12,6,11,4,13,9,14,5,12,6,2,10,8,14,5,1,13,12,6,12,6,13,9,14,12,6,5,3,3,1,13,12,6,12,6,2,0,0,1,13,12,6,12,6,2,13,9,3,11,4,13,9,3", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"11\", \"4\", \"8\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,9,14,5,1,13,12,6,11,4,8,14,5,12,6,1,13,9,14,5,12,6,2,14,5,12,6,7,4,8,9,14,5,1,13,12,0,2,12,6,3,15,10,8,14,5,12,6,13,9,14,5,1,13,12,6,11,4,8,14,12,6,2,6,2,15,8,14,15,10,8,14,5,1,13,12,6,11,4,13,9,14,5,12,6,2,10,8,14,5,1,13,12,6,12,6,13,9,14,12,6,5,3,3,1,13,12,6,12,6,2,0,0,1,13,12,6,12,6,2,13,9,3,11,4,13,9,3", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"6\", \"2\", \"0\", \"0\"], \"clip_start\": 107.0, \"clip_end\": 113.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,9,14,5,1,13,12,6,11,4,8,14,5,12,6,1,13,9,14,5,12,6,2,14,5,12,6,7,4,8,9,14,5,1,13,12,0,2,12,6,3,15,10,8,14,5,12,6,13,9,14,5,1,13,12,6,11,4,8,14,12,6,2,6,2,15,8,14,15,10,8,14,5,1,13,12,6,11,4,13,9,14,5,12,6,2,10,8,14,5,1,13,12,6,12,6,13,9,14,12,6,5,3,3,1,13,12,6,12,6,2,0,0,1,13,12,6,12,6,2,13,9,3,11,4,13,9,3", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"5\", \"3\", \"3\"], \"clip_start\": 99.0, \"clip_end\": 104.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,9,14,5,1,13,12,6,11,4,8,14,5,12,6,1,13,9,14,5,12,6,2,14,5,12,6,7,4,8,9,14,5,1,13,12,0,2,12,6,3,15,10,8,14,5,12,6,13,9,14,5,1,13,12,6,11,4,8,14,12,6,2,6,2,15,8,14,15,10,8,14,5,1,13,12,6,11,4,13,9,14,5,12,6,2,10,8,14,5,1,13,12,6,12,6,13,9,14,12,6,5,3,3,1,13,12,6,12,6,2,0,0,1,13,12,6,12,6,2,13,9,3,11,4,13,9,3", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"0\", \"0\"], \"clip_start\": 109.0, \"clip_end\": 113.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,9,14,5,1,13,12,6,11,4,8,14,5,12,6,1,13,9,14,5,12,6,2,14,5,12,6,7,4,8,9,14,5,1,13,12,0,2,12,6,3,15,10,8,14,5,12,6,13,9,14,5,1,13,12,6,11,4,8,14,12,6,2,6,2,15,8,14,15,10,8,14,5,1,13,12,6,11,4,13,9,14,5,12,6,2,10,8,14,5,1,13,12,6,12,6,13,9,14,12,6,5,3,3,1,13,12,6,12,6,2,0,0,1,13,12,6,12,6,2,13,9,3,11,4,13,9,3", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,9,14,5,1,13,12,6,11,4,8,14,5,12,6,1,13,9,14,5,12,6,2,14,5,12,6,7,4,8,9,14,5,1,13,12,0,2,12,6,3,15,10,8,14,5,12,6,13,9,14,5,1,13,12,6,11,4,8,14,12,6,2,6,2,15,8,14,15,10,8,14,5,1,13,12,6,11,4,13,9,14,5,12,6,2,10,8,14,5,1,13,12,6,12,6,13,9,14,12,6,5,3,3,1,13,12,6,12,6,2,0,0,1,13,12,6,12,6,2,13,9,3,11,4,13,9,3", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"0\", \"1\", \"13\"], \"clip_start\": 111.0, \"clip_end\": 115.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,9,14,5,1,13,12,6,11,4,8,14,5,12,6,1,13,9,14,5,12,6,2,14,5,12,6,7,4,8,9,14,5,1,13,12,0,2,12,6,3,15,10,8,14,5,12,6,13,9,14,5,1,13,12,6,11,4,8,14,12,6,2,6,2,15,8,14,15,10,8,14,5,1,13,12,6,11,4,13,9,14,5,12,6,2,10,8,14,5,1,13,12,6,12,6,13,9,14,12,6,5,3,3,1,13,12,6,12,6,2,0,0,1,13,12,6,12,6,2,13,9,3,11,4,13,9,3", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"12\"], \"clip_start\": 118.0, \"clip_end\": 121.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,9,14,5,1,13,12,6,11,4,8,14,5,12,6,1,13,9,14,5,12,6,2,14,5,12,6,7,4,8,9,14,5,1,13,12,0,2,12,6,3,15,10,8,14,5,12,6,13,9,14,5,1,13,12,6,11,4,8,14,12,6,2,6,2,15,8,14,15,10,8,14,5,1,13,12,6,11,4,13,9,14,5,12,6,2,10,8,14,5,1,13,12,6,12,6,13,9,14,12,6,5,3,3,1,13,12,6,12,6,2,0,0,1,13,12,6,12,6,2,13,9,3,11,4,13,9,3", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"13\", \"9\", \"14\"], \"clip_start\": 46.0, \"clip_end\": 51.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q14_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,9,14,5,1,13,12,6,11,4,8,14,5,12,6,1,13,9,14,5,12,6,2,14,5,12,6,7,4,8,9,14,5,1,13,12,0,2,12,6,3,15,10,8,14,5,12,6,13,9,14,5,1,13,12,6,11,4,8,14,12,6,2,6,2,15,8,14,15,10,8,14,5,1,13,12,6,11,4,13,9,14,5,12,6,2,10,8,14,5,1,13,12,6,12,6,13,9,14,12,6,5,3,3,1,13,12,6,12,6,2,0,0,1,13,12,6,12,6,2,13,9,3,11,4,13,9,3", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_MED", "source_split": "substream_video", "length_L": 128, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"5\", \"12\", \"6\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q15_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,9,14,5,1,13,12,6,11,4,8,14,5,12,6,1,13,9,14,5,12,6,2,14,5,12,6,7,4,8,9,14,5,1,13,12,0,2,12,6,3,15,10,8,14,5,12,6,13,9,14,5,1,13,12,6,11,4,8,14,12,6,2,6,2,15,8,14,15,10,8,14,5,1,13,12,6,11,4,13,9,14,5,12,6,2,10,8,14,5,1,13,12,6,12,6,13,9,14,12,6,5,3,3,1,13,12,6,12,6,2,0,0,1,13,12,6,12,6,2,13,9,3,11,4,13,9,3", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 122.0, \"clip_end\": 128.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,8,14,15,15,11,15,8,0,0,13,9,7,5,2,2,7,9,2,7,0,3,13,13,9,14,1,5,7,8,12,2,14,9,9,15,2,15,11,15,14,2,7,9,9,8,6,1,13,9,15,0,0,12,5,10,14,12,9,3,11,8,9,4,0,7,7,2,1,9,15,2,5,15,2,1,5,15,5,0,7,4,7,15,12,2,12,12,13,3,7,15,1,9,15,5,11,4,7,13,12,1,8,9,6,11,3,14,4,12,2,12,10,3,3,5,9,12,5,15,11,14,12,1,8,3,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"12\", \"2\"], \"clip_start\": 108.0, \"clip_end\": 112.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,8,14,15,15,11,15,8,0,0,13,9,7,5,2,2,7,9,2,7,0,3,13,13,9,14,1,5,7,8,12,2,14,9,9,15,2,15,11,15,14,2,7,9,9,8,6,1,13,9,15,0,0,12,5,10,14,12,9,3,11,8,9,4,0,7,7,2,1,9,15,2,5,15,2,1,5,15,5,0,7,4,7,15,12,2,12,12,13,3,7,15,1,9,15,5,11,4,7,13,12,1,8,9,6,11,3,14,4,12,2,12,10,3,3,5,9,12,5,15,11,14,12,1,8,3,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"11\"], \"clip_start\": 4.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,8,14,15,15,11,15,8,0,0,13,9,7,5,2,2,7,9,2,7,0,3,13,13,9,14,1,5,7,8,12,2,14,9,9,15,2,15,11,15,14,2,7,9,9,8,6,1,13,9,15,0,0,12,5,10,14,12,9,3,11,8,9,4,0,7,7,2,1,9,15,2,5,15,2,1,5,15,5,0,7,4,7,15,12,2,12,12,13,3,7,15,1,9,15,5,11,4,7,13,12,1,8,9,6,11,3,14,4,12,2,12,10,3,3,5,9,12,5,15,11,14,12,1,8,3,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"7\", \"15\", \"12\", \"2\", \"12\"], \"clip_start\": 82.0, \"clip_end\": 88.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q3_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,8,14,15,15,11,15,8,0,0,13,9,7,5,2,2,7,9,2,7,0,3,13,13,9,14,1,5,7,8,12,2,14,9,9,15,2,15,11,15,14,2,7,9,9,8,6,1,13,9,15,0,0,12,5,10,14,12,9,3,11,8,9,4,0,7,7,2,1,9,15,2,5,15,2,1,5,15,5,0,7,4,7,15,12,2,12,12,13,3,7,15,1,9,15,5,11,4,7,13,12,1,8,9,6,11,3,14,4,12,2,12,10,3,3,5,9,12,5,15,11,14,12,1,8,3,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"15\", \"11\", \"15\"], \"clip_start\": 37.0, \"clip_end\": 41.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,8,14,15,15,11,15,8,0,0,13,9,7,5,2,2,7,9,2,7,0,3,13,13,9,14,1,5,7,8,12,2,14,9,9,15,2,15,11,15,14,2,7,9,9,8,6,1,13,9,15,0,0,12,5,10,14,12,9,3,11,8,9,4,0,7,7,2,1,9,15,2,5,15,2,1,5,15,5,0,7,4,7,15,12,2,12,12,13,3,7,15,1,9,15,5,11,4,7,13,12,1,8,9,6,11,3,14,4,12,2,12,10,3,3,5,9,12,5,15,11,14,12,1,8,3,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"8\", \"12\", \"2\", \"14\", \"9\"], \"clip_start\": 29.0, \"clip_end\": 35.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,8,14,15,15,11,15,8,0,0,13,9,7,5,2,2,7,9,2,7,0,3,13,13,9,14,1,5,7,8,12,2,14,9,9,15,2,15,11,15,14,2,7,9,9,8,6,1,13,9,15,0,0,12,5,10,14,12,9,3,11,8,9,4,0,7,7,2,1,9,15,2,5,15,2,1,5,15,5,0,7,4,7,15,12,2,12,12,13,3,7,15,1,9,15,5,11,4,7,13,12,1,8,9,6,11,3,14,4,12,2,12,10,3,3,5,9,12,5,15,11,14,12,1,8,3,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"10\", \"3\", \"3\", \"5\"], \"clip_start\": 111.0, \"clip_end\": 117.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,8,14,15,15,11,15,8,0,0,13,9,7,5,2,2,7,9,2,7,0,3,13,13,9,14,1,5,7,8,12,2,14,9,9,15,2,15,11,15,14,2,7,9,9,8,6,1,13,9,15,0,0,12,5,10,14,12,9,3,11,8,9,4,0,7,7,2,1,9,15,2,5,15,2,1,5,15,5,0,7,4,7,15,12,2,12,12,13,3,7,15,1,9,15,5,11,4,7,13,12,1,8,9,6,11,3,14,4,12,2,12,10,3,3,5,9,12,5,15,11,14,12,1,8,3,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"5\"], \"clip_start\": 105.0, \"clip_end\": 109.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,8,14,15,15,11,15,8,0,0,13,9,7,5,2,2,7,9,2,7,0,3,13,13,9,14,1,5,7,8,12,2,14,9,9,15,2,15,11,15,14,2,7,9,9,8,6,1,13,9,15,0,0,12,5,10,14,12,9,3,11,8,9,4,0,7,7,2,1,9,15,2,5,15,2,1,5,15,5,0,7,4,7,15,12,2,12,12,13,3,7,15,1,9,15,5,11,4,7,13,12,1,8,9,6,11,3,14,4,12,2,12,10,3,3,5,9,12,5,15,11,14,12,1,8,3,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"3\"], \"clip_start\": 58.0, \"clip_end\": 61.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,8,14,15,15,11,15,8,0,0,13,9,7,5,2,2,7,9,2,7,0,3,13,13,9,14,1,5,7,8,12,2,14,9,9,15,2,15,11,15,14,2,7,9,9,8,6,1,13,9,15,0,0,12,5,10,14,12,9,3,11,8,9,4,0,7,7,2,1,9,15,2,5,15,2,1,5,15,5,0,7,4,7,15,12,2,12,12,13,3,7,15,1,9,15,5,11,4,7,13,12,1,8,9,6,11,3,14,4,12,2,12,10,3,3,5,9,12,5,15,11,14,12,1,8,3,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"7\"], \"clip_start\": 92.0, \"clip_end\": 95.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,8,14,15,15,11,15,8,0,0,13,9,7,5,2,2,7,9,2,7,0,3,13,13,9,14,1,5,7,8,12,2,14,9,9,15,2,15,11,15,14,2,7,9,9,8,6,1,13,9,15,0,0,12,5,10,14,12,9,3,11,8,9,4,0,7,7,2,1,9,15,2,5,15,2,1,5,15,5,0,7,4,7,15,12,2,12,12,13,3,7,15,1,9,15,5,11,4,7,13,12,1,8,9,6,11,3,14,4,12,2,12,10,3,3,5,9,12,5,15,11,14,12,1,8,3,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"2\", \"7\", \"9\", \"2\"], \"clip_start\": 15.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,8,14,15,15,11,15,8,0,0,13,9,7,5,2,2,7,9,2,7,0,3,13,13,9,14,1,5,7,8,12,2,14,9,9,15,2,15,11,15,14,2,7,9,9,8,6,1,13,9,15,0,0,12,5,10,14,12,9,3,11,8,9,4,0,7,7,2,1,9,15,2,5,15,2,1,5,15,5,0,7,4,7,15,12,2,12,12,13,3,7,15,1,9,15,5,11,4,7,13,12,1,8,9,6,11,3,14,4,12,2,12,10,3,3,5,9,12,5,15,11,14,12,1,8,3,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"8\", \"0\", \"0\", \"13\", \"9\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q11_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,8,14,15,15,11,15,8,0,0,13,9,7,5,2,2,7,9,2,7,0,3,13,13,9,14,1,5,7,8,12,2,14,9,9,15,2,15,11,15,14,2,7,9,9,8,6,1,13,9,15,0,0,12,5,10,14,12,9,3,11,8,9,4,0,7,7,2,1,9,15,2,5,15,2,1,5,15,5,0,7,4,7,15,12,2,12,12,13,3,7,15,1,9,15,5,11,4,7,13,12,1,8,9,6,11,3,14,4,12,2,12,10,3,3,5,9,12,5,15,11,14,12,1,8,3,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"0\", \"3\"], \"clip_start\": 19.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q12_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,8,14,15,15,11,15,8,0,0,13,9,7,5,2,2,7,9,2,7,0,3,13,13,9,14,1,5,7,8,12,2,14,9,9,15,2,15,11,15,14,2,7,9,9,8,6,1,13,9,15,0,0,12,5,10,14,12,9,3,11,8,9,4,0,7,7,2,1,9,15,2,5,15,2,1,5,15,5,0,7,4,7,15,12,2,12,12,13,3,7,15,1,9,15,5,11,4,7,13,12,1,8,9,6,11,3,14,4,12,2,12,10,3,3,5,9,12,5,15,11,14,12,1,8,3,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"9\", \"2\", \"7\", \"0\"], \"clip_start\": 16.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q13_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,8,14,15,15,11,15,8,0,0,13,9,7,5,2,2,7,9,2,7,0,3,13,13,9,14,1,5,7,8,12,2,14,9,9,15,2,15,11,15,14,2,7,9,9,8,6,1,13,9,15,0,0,12,5,10,14,12,9,3,11,8,9,4,0,7,7,2,1,9,15,2,5,15,2,1,5,15,5,0,7,4,7,15,12,2,12,12,13,3,7,15,1,9,15,5,11,4,7,13,12,1,8,9,6,11,3,14,4,12,2,12,10,3,3,5,9,12,5,15,11,14,12,1,8,3,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"15\", \"3\"], \"clip_start\": 117.0, \"clip_end\": 122.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q14_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,8,14,15,15,11,15,8,0,0,13,9,7,5,2,2,7,9,2,7,0,3,13,13,9,14,1,5,7,8,12,2,14,9,9,15,2,15,11,15,14,2,7,9,9,8,6,1,13,9,15,0,0,12,5,10,14,12,9,3,11,8,9,4,0,7,7,2,1,9,15,2,5,15,2,1,5,15,5,0,7,4,7,15,12,2,12,12,13,3,7,15,1,9,15,5,11,4,7,13,12,1,8,9,6,11,3,14,4,12,2,12,10,3,3,5,9,12,5,15,11,14,12,1,8,3,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"5\", \"9\", \"12\", \"5\"], \"clip_start\": 114.0, \"clip_end\": 120.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,8,14,15,15,11,15,8,0,0,13,9,7,5,2,2,7,9,2,7,0,3,13,13,9,14,1,5,7,8,12,2,14,9,9,15,2,15,11,15,14,2,7,9,9,8,6,1,13,9,15,0,0,12,5,10,14,12,9,3,11,8,9,4,0,7,7,2,1,9,15,2,5,15,2,1,5,15,5,0,7,4,7,15,12,2,12,12,13,3,7,15,1,9,15,5,11,4,7,13,12,1,8,9,6,11,3,14,4,12,2,12,10,3,3,5,9,12,5,15,11,14,12,1,8,3,9", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"14\", \"5\", \"8\"], \"clip_start\": 52.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,2,9,7,8,5,7,12,10,14,14,0,13,0,0,8,13,6,5,2,7,12,2,0,2,2,14,14,15,12,3,2,12,14,11,6,11,8,11,0,12,3,13,13,12,9,15,5,14,6,5,14,15,14,5,8,8,14,1,4,3,14,12,6,13,0,0,7,0,9,10,4,12,10,3,15,4,15,9,7,9,3,7,2,4,7,13,4,8,15,0,2,14,12,12,15,8,11,9,13,9,3,15,0,1,5,9,13,8,15,7,15,11,11,2,7,4,5,14,14,13,11,11,1,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"8\", \"11\", \"0\", \"12\", \"3\"], \"clip_start\": 37.0, \"clip_end\": 43.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,2,9,7,8,5,7,12,10,14,14,0,13,0,0,8,13,6,5,2,7,12,2,0,2,2,14,14,15,12,3,2,12,14,11,6,11,8,11,0,12,3,13,13,12,9,15,5,14,6,5,14,15,14,5,8,8,14,1,4,3,14,12,6,13,0,0,7,0,9,10,4,12,10,3,15,4,15,9,7,9,3,7,2,4,7,13,4,8,15,0,2,14,12,12,15,8,11,9,13,9,3,15,0,1,5,9,13,8,15,7,15,11,11,2,7,4,5,14,14,13,11,11,1,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 119.0, \"clip_end\": 125.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,2,9,7,8,5,7,12,10,14,14,0,13,0,0,8,13,6,5,2,7,12,2,0,2,2,14,14,15,12,3,2,12,14,11,6,11,8,11,0,12,3,13,13,12,9,15,5,14,6,5,14,15,14,5,8,8,14,1,4,3,14,12,6,13,0,0,7,0,9,10,4,12,10,3,15,4,15,9,7,9,3,7,2,4,7,13,4,8,15,0,2,14,12,12,15,8,11,9,13,9,3,15,0,1,5,9,13,8,15,7,15,11,11,2,7,4,5,14,14,13,11,11,1,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"15\", \"8\", \"11\", \"9\", \"13\"], \"clip_start\": 95.0, \"clip_end\": 101.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,2,9,7,8,5,7,12,10,14,14,0,13,0,0,8,13,6,5,2,7,12,2,0,2,2,14,14,15,12,3,2,12,14,11,6,11,8,11,0,12,3,13,13,12,9,15,5,14,6,5,14,15,14,5,8,8,14,1,4,3,14,12,6,13,0,0,7,0,9,10,4,12,10,3,15,4,15,9,7,9,3,7,2,4,7,13,4,8,15,0,2,14,12,12,15,8,11,9,13,9,3,15,0,1,5,9,13,8,15,7,15,11,11,2,7,4,5,14,14,13,11,11,1,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"8\", \"5\", \"7\", \"12\", \"10\"], \"clip_start\": 4.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,2,9,7,8,5,7,12,10,14,14,0,13,0,0,8,13,6,5,2,7,12,2,0,2,2,14,14,15,12,3,2,12,14,11,6,11,8,11,0,12,3,13,13,12,9,15,5,14,6,5,14,15,14,5,8,8,14,1,4,3,14,12,6,13,0,0,7,0,9,10,4,12,10,3,15,4,15,9,7,9,3,7,2,4,7,13,4,8,15,0,2,14,12,12,15,8,11,9,13,9,3,15,0,1,5,9,13,8,15,7,15,11,11,2,7,4,5,14,14,13,11,11,1,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"9\", \"7\"], \"clip_start\": 77.0, \"clip_end\": 81.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,2,9,7,8,5,7,12,10,14,14,0,13,0,0,8,13,6,5,2,7,12,2,0,2,2,14,14,15,12,3,2,12,14,11,6,11,8,11,0,12,3,13,13,12,9,15,5,14,6,5,14,15,14,5,8,8,14,1,4,3,14,12,6,13,0,0,7,0,9,10,4,12,10,3,15,4,15,9,7,9,3,7,2,4,7,13,4,8,15,0,2,14,12,12,15,8,11,9,13,9,3,15,0,1,5,9,13,8,15,7,15,11,11,2,7,4,5,14,14,13,11,11,1,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"14\", \"13\"], \"clip_start\": 118.0, \"clip_end\": 122.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,2,9,7,8,5,7,12,10,14,14,0,13,0,0,8,13,6,5,2,7,12,2,0,2,2,14,14,15,12,3,2,12,14,11,6,11,8,11,0,12,3,13,13,12,9,15,5,14,6,5,14,15,14,5,8,8,14,1,4,3,14,12,6,13,0,0,7,0,9,10,4,12,10,3,15,4,15,9,7,9,3,7,2,4,7,13,4,8,15,0,2,14,12,12,15,8,11,9,13,9,3,15,0,1,5,9,13,8,15,7,15,11,11,2,7,4,5,14,14,13,11,11,1,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 40.0, \"clip_end\": 46.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,2,9,7,8,5,7,12,10,14,14,0,13,0,0,8,13,6,5,2,7,12,2,0,2,2,14,14,15,12,3,2,12,14,11,6,11,8,11,0,12,3,13,13,12,9,15,5,14,6,5,14,15,14,5,8,8,14,1,4,3,14,12,6,13,0,0,7,0,9,10,4,12,10,3,15,4,15,9,7,9,3,7,2,4,7,13,4,8,15,0,2,14,12,12,15,8,11,9,13,9,3,15,0,1,5,9,13,8,15,7,15,11,11,2,7,4,5,14,14,13,11,11,1,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 96.0, \"clip_end\": 100.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,2,9,7,8,5,7,12,10,14,14,0,13,0,0,8,13,6,5,2,7,12,2,0,2,2,14,14,15,12,3,2,12,14,11,6,11,8,11,0,12,3,13,13,12,9,15,5,14,6,5,14,15,14,5,8,8,14,1,4,3,14,12,6,13,0,0,7,0,9,10,4,12,10,3,15,4,15,9,7,9,3,7,2,4,7,13,4,8,15,0,2,14,12,12,15,8,11,9,13,9,3,15,0,1,5,9,13,8,15,7,15,11,11,2,7,4,5,14,14,13,11,11,1,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"13\", \"12\", \"9\", \"15\"], \"clip_start\": 43.0, \"clip_end\": 48.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,2,9,7,8,5,7,12,10,14,14,0,13,0,0,8,13,6,5,2,7,12,2,0,2,2,14,14,15,12,3,2,12,14,11,6,11,8,11,0,12,3,13,13,12,9,15,5,14,6,5,14,15,14,5,8,8,14,1,4,3,14,12,6,13,0,0,7,0,9,10,4,12,10,3,15,4,15,9,7,9,3,7,2,4,7,13,4,8,15,0,2,14,12,12,15,8,11,9,13,9,3,15,0,1,5,9,13,8,15,7,15,11,11,2,7,4,5,14,14,13,11,11,1,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"12\", \"14\", \"11\", \"6\"], \"clip_start\": 31.0, \"clip_end\": 37.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,2,9,7,8,5,7,12,10,14,14,0,13,0,0,8,13,6,5,2,7,12,2,0,2,2,14,14,15,12,3,2,12,14,11,6,11,8,11,0,12,3,13,13,12,9,15,5,14,6,5,14,15,14,5,8,8,14,1,4,3,14,12,6,13,0,0,7,0,9,10,4,12,10,3,15,4,15,9,7,9,3,7,2,4,7,13,4,8,15,0,2,14,12,12,15,8,11,9,13,9,3,15,0,1,5,9,13,8,15,7,15,11,11,2,7,4,5,14,14,13,11,11,1,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 7.0, \"clip_end\": 10.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q11_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,2,9,7,8,5,7,12,10,14,14,0,13,0,0,8,13,6,5,2,7,12,2,0,2,2,14,14,15,12,3,2,12,14,11,6,11,8,11,0,12,3,13,13,12,9,15,5,14,6,5,14,15,14,5,8,8,14,1,4,3,14,12,6,13,0,0,7,0,9,10,4,12,10,3,15,4,15,9,7,9,3,7,2,4,7,13,4,8,15,0,2,14,12,12,15,8,11,9,13,9,3,15,0,1,5,9,13,8,15,7,15,11,11,2,7,4,5,14,14,13,11,11,1,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"13\", \"9\"], \"clip_start\": 97.0, \"clip_end\": 102.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,2,9,7,8,5,7,12,10,14,14,0,13,0,0,8,13,6,5,2,7,12,2,0,2,2,14,14,15,12,3,2,12,14,11,6,11,8,11,0,12,3,13,13,12,9,15,5,14,6,5,14,15,14,5,8,8,14,1,4,3,14,12,6,13,0,0,7,0,9,10,4,12,10,3,15,4,15,9,7,9,3,7,2,4,7,13,4,8,15,0,2,14,12,12,15,8,11,9,13,9,3,15,0,1,5,9,13,8,15,7,15,11,11,2,7,4,5,14,14,13,11,11,1,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"7\"], \"clip_start\": 108.0, \"clip_end\": 112.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q13_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,2,9,7,8,5,7,12,10,14,14,0,13,0,0,8,13,6,5,2,7,12,2,0,2,2,14,14,15,12,3,2,12,14,11,6,11,8,11,0,12,3,13,13,12,9,15,5,14,6,5,14,15,14,5,8,8,14,1,4,3,14,12,6,13,0,0,7,0,9,10,4,12,10,3,15,4,15,9,7,9,3,7,2,4,7,13,4,8,15,0,2,14,12,12,15,8,11,9,13,9,3,15,0,1,5,9,13,8,15,7,15,11,11,2,7,4,5,14,14,13,11,11,1,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"12\"], \"clip_start\": 29.0, \"clip_end\": 33.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,2,9,7,8,5,7,12,10,14,14,0,13,0,0,8,13,6,5,2,7,12,2,0,2,2,14,14,15,12,3,2,12,14,11,6,11,8,11,0,12,3,13,13,12,9,15,5,14,6,5,14,15,14,5,8,8,14,1,4,3,14,12,6,13,0,0,7,0,9,10,4,12,10,3,15,4,15,9,7,9,3,7,2,4,7,13,4,8,15,0,2,14,12,12,15,8,11,9,13,9,3,15,0,1,5,9,13,8,15,7,15,11,11,2,7,4,5,14,14,13,11,11,1,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"0\", \"0\", \"7\", \"0\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q15_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,14,2,9,7,8,5,7,12,10,14,14,0,13,0,0,8,13,6,5,2,7,12,2,0,2,2,14,14,15,12,3,2,12,14,11,6,11,8,11,0,12,3,13,13,12,9,15,5,14,6,5,14,15,14,5,8,8,14,1,4,3,14,12,6,13,0,0,7,0,9,10,4,12,10,3,15,4,15,9,7,9,3,7,2,4,7,13,4,8,15,0,2,14,12,12,15,8,11,9,13,9,3,15,0,1,5,9,13,8,15,7,15,11,11,2,7,4,5,14,14,13,11,11,1,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"12\", \"11\", \"6\", \"1\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,14,6,0,5,9,8,11,1,10,14,15,2,5,3,1,11,2,9,9,12,13,14,14,10,9,8,12,11,6,1,12,5,12,8,11,10,4,7,5,13,15,5,14,6,7,11,6,15,9,11,15,1,0,15,2,8,2,2,11,4,14,14,1,12,2,7,10,8,2,15,7,5,13,5,13,1,12,12,5,5,15,12,9,3,7,0,15,12,0,9,13,11,10,4,1,12,12,6,6,6,4,13,11,8,9,10,2,9,8,6,3,13,1,7,9,4,10,0,11,15,0,7,11,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"13\", \"5\", \"13\"], \"clip_start\": 72.0, \"clip_end\": 77.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,14,6,0,5,9,8,11,1,10,14,15,2,5,3,1,11,2,9,9,12,13,14,14,10,9,8,12,11,6,1,12,5,12,8,11,10,4,7,5,13,15,5,14,6,7,11,6,15,9,11,15,1,0,15,2,8,2,2,11,4,14,14,1,12,2,7,10,8,2,15,7,5,13,5,13,1,12,12,5,5,15,12,9,3,7,0,15,12,0,9,13,11,10,4,1,12,12,6,6,6,4,13,11,8,9,10,2,9,8,6,3,13,1,7,9,4,10,0,11,15,0,7,11,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"14\", \"6\", \"0\", \"5\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,14,6,0,5,9,8,11,1,10,14,15,2,5,3,1,11,2,9,9,12,13,14,14,10,9,8,12,11,6,1,12,5,12,8,11,10,4,7,5,13,15,5,14,6,7,11,6,15,9,11,15,1,0,15,2,8,2,2,11,4,14,14,1,12,2,7,10,8,2,15,7,5,13,5,13,1,12,12,5,5,15,12,9,3,7,0,15,12,0,9,13,11,10,4,1,12,12,6,6,6,4,13,11,8,9,10,2,9,8,6,3,13,1,7,9,4,10,0,11,15,0,7,11,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"4\", \"10\", \"0\"], \"clip_start\": 115.0, \"clip_end\": 120.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,14,6,0,5,9,8,11,1,10,14,15,2,5,3,1,11,2,9,9,12,13,14,14,10,9,8,12,11,6,1,12,5,12,8,11,10,4,7,5,13,15,5,14,6,7,11,6,15,9,11,15,1,0,15,2,8,2,2,11,4,14,14,1,12,2,7,10,8,2,15,7,5,13,5,13,1,12,12,5,5,15,12,9,3,7,0,15,12,0,9,13,11,10,4,1,12,12,6,6,6,4,13,11,8,9,10,2,9,8,6,3,13,1,7,9,4,10,0,11,15,0,7,11,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"7\", \"0\"], \"clip_start\": 84.0, \"clip_end\": 88.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,14,6,0,5,9,8,11,1,10,14,15,2,5,3,1,11,2,9,9,12,13,14,14,10,9,8,12,11,6,1,12,5,12,8,11,10,4,7,5,13,15,5,14,6,7,11,6,15,9,11,15,1,0,15,2,8,2,2,11,4,14,14,1,12,2,7,10,8,2,15,7,5,13,5,13,1,12,12,5,5,15,12,9,3,7,0,15,12,0,9,13,11,10,4,1,12,12,6,6,6,4,13,11,8,9,10,2,9,8,6,3,13,1,7,9,4,10,0,11,15,0,7,11,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"0\", \"5\", \"9\", \"8\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q5_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,14,6,0,5,9,8,11,1,10,14,15,2,5,3,1,11,2,9,9,12,13,14,14,10,9,8,12,11,6,1,12,5,12,8,11,10,4,7,5,13,15,5,14,6,7,11,6,15,9,11,15,1,0,15,2,8,2,2,11,4,14,14,1,12,2,7,10,8,2,15,7,5,13,5,13,1,12,12,5,5,15,12,9,3,7,0,15,12,0,9,13,11,10,4,1,12,12,6,6,6,4,13,11,8,9,10,2,9,8,6,3,13,1,7,9,4,10,0,11,15,0,7,11,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"8\", \"2\", \"2\", \"11\"], \"clip_start\": 56.0, \"clip_end\": 61.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,14,6,0,5,9,8,11,1,10,14,15,2,5,3,1,11,2,9,9,12,13,14,14,10,9,8,12,11,6,1,12,5,12,8,11,10,4,7,5,13,15,5,14,6,7,11,6,15,9,11,15,1,0,15,2,8,2,2,11,4,14,14,1,12,2,7,10,8,2,15,7,5,13,5,13,1,12,12,5,5,15,12,9,3,7,0,15,12,0,9,13,11,10,4,1,12,12,6,6,6,4,13,11,8,9,10,2,9,8,6,3,13,1,7,9,4,10,0,11,15,0,7,11,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"11\", \"1\", \"10\", \"14\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,14,6,0,5,9,8,11,1,10,14,15,2,5,3,1,11,2,9,9,12,13,14,14,10,9,8,12,11,6,1,12,5,12,8,11,10,4,7,5,13,15,5,14,6,7,11,6,15,9,11,15,1,0,15,2,8,2,2,11,4,14,14,1,12,2,7,10,8,2,15,7,5,13,5,13,1,12,12,5,5,15,12,9,3,7,0,15,12,0,9,13,11,10,4,1,12,12,6,6,6,4,13,11,8,9,10,2,9,8,6,3,13,1,7,9,4,10,0,11,15,0,7,11,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"8\", \"2\"], \"clip_start\": 55.0, \"clip_end\": 59.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,14,6,0,5,9,8,11,1,10,14,15,2,5,3,1,11,2,9,9,12,13,14,14,10,9,8,12,11,6,1,12,5,12,8,11,10,4,7,5,13,15,5,14,6,7,11,6,15,9,11,15,1,0,15,2,8,2,2,11,4,14,14,1,12,2,7,10,8,2,15,7,5,13,5,13,1,12,12,5,5,15,12,9,3,7,0,15,12,0,9,13,11,10,4,1,12,12,6,6,6,4,13,11,8,9,10,2,9,8,6,3,13,1,7,9,4,10,0,11,15,0,7,11,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"10\", \"9\", \"8\", \"12\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q9_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,14,6,0,5,9,8,11,1,10,14,15,2,5,3,1,11,2,9,9,12,13,14,14,10,9,8,12,11,6,1,12,5,12,8,11,10,4,7,5,13,15,5,14,6,7,11,6,15,9,11,15,1,0,15,2,8,2,2,11,4,14,14,1,12,2,7,10,8,2,15,7,5,13,5,13,1,12,12,5,5,15,12,9,3,7,0,15,12,0,9,13,11,10,4,1,12,12,6,6,6,4,13,11,8,9,10,2,9,8,6,3,13,1,7,9,4,10,0,11,15,0,7,11,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"0\", \"9\", \"13\", \"11\"], \"clip_start\": 88.0, \"clip_end\": 94.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,14,6,0,5,9,8,11,1,10,14,15,2,5,3,1,11,2,9,9,12,13,14,14,10,9,8,12,11,6,1,12,5,12,8,11,10,4,7,5,13,15,5,14,6,7,11,6,15,9,11,15,1,0,15,2,8,2,2,11,4,14,14,1,12,2,7,10,8,2,15,7,5,13,5,13,1,12,12,5,5,15,12,9,3,7,0,15,12,0,9,13,11,10,4,1,12,12,6,6,6,4,13,11,8,9,10,2,9,8,6,3,13,1,7,9,4,10,0,11,15,0,7,11,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"12\", \"2\", \"7\", \"10\", \"8\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q11_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,14,6,0,5,9,8,11,1,10,14,15,2,5,3,1,11,2,9,9,12,13,14,14,10,9,8,12,11,6,1,12,5,12,8,11,10,4,7,5,13,15,5,14,6,7,11,6,15,9,11,15,1,0,15,2,8,2,2,11,4,14,14,1,12,2,7,10,8,2,15,7,5,13,5,13,1,12,12,5,5,15,12,9,3,7,0,15,12,0,9,13,11,10,4,1,12,12,6,6,6,4,13,11,8,9,10,2,9,8,6,3,13,1,7,9,4,10,0,11,15,0,7,11,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"9\", \"11\", \"15\", \"1\"], \"clip_start\": 48.0, \"clip_end\": 54.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q12_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,14,6,0,5,9,8,11,1,10,14,15,2,5,3,1,11,2,9,9,12,13,14,14,10,9,8,12,11,6,1,12,5,12,8,11,10,4,7,5,13,15,5,14,6,7,11,6,15,9,11,15,1,0,15,2,8,2,2,11,4,14,14,1,12,2,7,10,8,2,15,7,5,13,5,13,1,12,12,5,5,15,12,9,3,7,0,15,12,0,9,13,11,10,4,1,12,12,6,6,6,4,13,11,8,9,10,2,9,8,6,3,13,1,7,9,4,10,0,11,15,0,7,11,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"9\", \"1\", \"6\"], \"clip_start\": 49.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,14,6,0,5,9,8,11,1,10,14,15,2,5,3,1,11,2,9,9,12,13,14,14,10,9,8,12,11,6,1,12,5,12,8,11,10,4,7,5,13,15,5,14,6,7,11,6,15,9,11,15,1,0,15,2,8,2,2,11,4,14,14,1,12,2,7,10,8,2,15,7,5,13,5,13,1,12,12,5,5,15,12,9,3,7,0,15,12,0,9,13,11,10,4,1,12,12,6,6,6,4,13,11,8,9,10,2,9,8,6,3,13,1,7,9,4,10,0,11,15,0,7,11,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"11\", \"6\", \"15\"], \"clip_start\": 45.0, \"clip_end\": 50.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q14_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,14,6,0,5,9,8,11,1,10,14,15,2,5,3,1,11,2,9,9,12,13,14,14,10,9,8,12,11,6,1,12,5,12,8,11,10,4,7,5,13,15,5,14,6,7,11,6,15,9,11,15,1,0,15,2,8,2,2,11,4,14,14,1,12,2,7,10,8,2,15,7,5,13,5,13,1,12,12,5,5,15,12,9,3,7,0,15,12,0,9,13,11,10,4,1,12,12,6,6,6,4,13,11,8,9,10,2,9,8,6,3,13,1,7,9,4,10,0,11,15,0,7,11,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"0\"], \"clip_start\": 53.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,15,14,6,0,5,9,8,11,1,10,14,15,2,5,3,1,11,2,9,9,12,13,14,14,10,9,8,12,11,6,1,12,5,12,8,11,10,4,7,5,13,15,5,14,6,7,11,6,15,9,11,15,1,0,15,2,8,2,2,11,4,14,14,1,12,2,7,10,8,2,15,7,5,13,5,13,1,12,12,5,5,15,12,9,3,7,0,15,12,0,9,13,11,10,4,1,12,12,6,6,6,4,13,11,8,9,10,2,9,8,6,3,13,1,7,9,4,10,0,11,15,0,7,11,3,13,10", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"0\", \"15\", \"11\", \"11\"], \"clip_start\": 84.0, \"clip_end\": 90.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,7,5,13,0,12,8,2,14,6,6,5,8,7,0,15,7,13,14,6,5,5,6,6,11,10,2,1,13,6,4,12,15,15,13,7,4,9,7,1,11,3,4,6,2,8,0,3,1,9,7,7,7,1,4,2,12,1,15,8,11,0,2,12,9,10,4,10,6,15,12,2,7,7,3,0,10,12,2,6,15,12,15,4,12,0,15,11,11,8,13,8,12,0,0,1,15,13,15,9,3,15,14,2,12,5,9,13,7,15,8,4,6,0,1,6,1,8,11,7,14,14,3,2,6,8,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"2\", \"6\", \"15\", \"12\"], \"clip_start\": 78.0, \"clip_end\": 83.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,7,5,13,0,12,8,2,14,6,6,5,8,7,0,15,7,13,14,6,5,5,6,6,11,10,2,1,13,6,4,12,15,15,13,7,4,9,7,1,11,3,4,6,2,8,0,3,1,9,7,7,7,1,4,2,12,1,15,8,11,0,2,12,9,10,4,10,6,15,12,2,7,7,3,0,10,12,2,6,15,12,15,4,12,0,15,11,11,8,13,8,12,0,0,1,15,13,15,9,3,15,14,2,12,5,9,13,7,15,8,4,6,0,1,6,1,8,11,7,14,14,3,2,6,8,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"1\", \"8\", \"11\"], \"clip_start\": 115.0, \"clip_end\": 120.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,7,5,13,0,12,8,2,14,6,6,5,8,7,0,15,7,13,14,6,5,5,6,6,11,10,2,1,13,6,4,12,15,15,13,7,4,9,7,1,11,3,4,6,2,8,0,3,1,9,7,7,7,1,4,2,12,1,15,8,11,0,2,12,9,10,4,10,6,15,12,2,7,7,3,0,10,12,2,6,15,12,15,4,12,0,15,11,11,8,13,8,12,0,0,1,15,13,15,9,3,15,14,2,12,5,9,13,7,15,8,4,6,0,1,6,1,8,11,7,14,14,3,2,6,8,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"15\", \"7\", \"13\", \"14\"], \"clip_start\": 15.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,7,5,13,0,12,8,2,14,6,6,5,8,7,0,15,7,13,14,6,5,5,6,6,11,10,2,1,13,6,4,12,15,15,13,7,4,9,7,1,11,3,4,6,2,8,0,3,1,9,7,7,7,1,4,2,12,1,15,8,11,0,2,12,9,10,4,10,6,15,12,2,7,7,3,0,10,12,2,6,15,12,15,4,12,0,15,11,11,8,13,8,12,0,0,1,15,13,15,9,3,15,14,2,12,5,9,13,7,15,8,4,6,0,1,6,1,8,11,7,14,14,3,2,6,8,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"14\"], \"clip_start\": 17.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,7,5,13,0,12,8,2,14,6,6,5,8,7,0,15,7,13,14,6,5,5,6,6,11,10,2,1,13,6,4,12,15,15,13,7,4,9,7,1,11,3,4,6,2,8,0,3,1,9,7,7,7,1,4,2,12,1,15,8,11,0,2,12,9,10,4,10,6,15,12,2,7,7,3,0,10,12,2,6,15,12,15,4,12,0,15,11,11,8,13,8,12,0,0,1,15,13,15,9,3,15,14,2,12,5,9,13,7,15,8,4,6,0,1,6,1,8,11,7,14,14,3,2,6,8,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"8\", \"13\", \"8\", \"12\", \"0\"], \"clip_start\": 89.0, \"clip_end\": 95.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,7,5,13,0,12,8,2,14,6,6,5,8,7,0,15,7,13,14,6,5,5,6,6,11,10,2,1,13,6,4,12,15,15,13,7,4,9,7,1,11,3,4,6,2,8,0,3,1,9,7,7,7,1,4,2,12,1,15,8,11,0,2,12,9,10,4,10,6,15,12,2,7,7,3,0,10,12,2,6,15,12,15,4,12,0,15,11,11,8,13,8,12,0,0,1,15,13,15,9,3,15,14,2,12,5,9,13,7,15,8,4,6,0,1,6,1,8,11,7,14,14,3,2,6,8,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 65.0, \"clip_end\": 68.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,7,5,13,0,12,8,2,14,6,6,5,8,7,0,15,7,13,14,6,5,5,6,6,11,10,2,1,13,6,4,12,15,15,13,7,4,9,7,1,11,3,4,6,2,8,0,3,1,9,7,7,7,1,4,2,12,1,15,8,11,0,2,12,9,10,4,10,6,15,12,2,7,7,3,0,10,12,2,6,15,12,15,4,12,0,15,11,11,8,13,8,12,0,0,1,15,13,15,9,3,15,14,2,12,5,9,13,7,15,8,4,6,0,1,6,1,8,11,7,14,14,3,2,6,8,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"12\", \"15\", \"15\", \"13\"], \"clip_start\": 30.0, \"clip_end\": 36.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,7,5,13,0,12,8,2,14,6,6,5,8,7,0,15,7,13,14,6,5,5,6,6,11,10,2,1,13,6,4,12,15,15,13,7,4,9,7,1,11,3,4,6,2,8,0,3,1,9,7,7,7,1,4,2,12,1,15,8,11,0,2,12,9,10,4,10,6,15,12,2,7,7,3,0,10,12,2,6,15,12,15,4,12,0,15,11,11,8,13,8,12,0,0,1,15,13,15,9,3,15,14,2,12,5,9,13,7,15,8,4,6,0,1,6,1,8,11,7,14,14,3,2,6,8,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"3\", \"15\"], \"clip_start\": 99.0, \"clip_end\": 103.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,7,5,13,0,12,8,2,14,6,6,5,8,7,0,15,7,13,14,6,5,5,6,6,11,10,2,1,13,6,4,12,15,15,13,7,4,9,7,1,11,3,4,6,2,8,0,3,1,9,7,7,7,1,4,2,12,1,15,8,11,0,2,12,9,10,4,10,6,15,12,2,7,7,3,0,10,12,2,6,15,12,15,4,12,0,15,11,11,8,13,8,12,0,0,1,15,13,15,9,3,15,14,2,12,5,9,13,7,15,8,4,6,0,1,6,1,8,11,7,14,14,3,2,6,8,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"6\", \"4\", \"12\"], \"clip_start\": 29.0, \"clip_end\": 33.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,7,5,13,0,12,8,2,14,6,6,5,8,7,0,15,7,13,14,6,5,5,6,6,11,10,2,1,13,6,4,12,15,15,13,7,4,9,7,1,11,3,4,6,2,8,0,3,1,9,7,7,7,1,4,2,12,1,15,8,11,0,2,12,9,10,4,10,6,15,12,2,7,7,3,0,10,12,2,6,15,12,15,4,12,0,15,11,11,8,13,8,12,0,0,1,15,13,15,9,3,15,14,2,12,5,9,13,7,15,8,4,6,0,1,6,1,8,11,7,14,14,3,2,6,8,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"8\", \"11\", \"7\"], \"clip_start\": 117.0, \"clip_end\": 121.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,7,5,13,0,12,8,2,14,6,6,5,8,7,0,15,7,13,14,6,5,5,6,6,11,10,2,1,13,6,4,12,15,15,13,7,4,9,7,1,11,3,4,6,2,8,0,3,1,9,7,7,7,1,4,2,12,1,15,8,11,0,2,12,9,10,4,10,6,15,12,2,7,7,3,0,10,12,2,6,15,12,15,4,12,0,15,11,11,8,13,8,12,0,0,1,15,13,15,9,3,15,14,2,12,5,9,13,7,15,8,4,6,0,1,6,1,8,11,7,14,14,3,2,6,8,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 8.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,7,5,13,0,12,8,2,14,6,6,5,8,7,0,15,7,13,14,6,5,5,6,6,11,10,2,1,13,6,4,12,15,15,13,7,4,9,7,1,11,3,4,6,2,8,0,3,1,9,7,7,7,1,4,2,12,1,15,8,11,0,2,12,9,10,4,10,6,15,12,2,7,7,3,0,10,12,2,6,15,12,15,4,12,0,15,11,11,8,13,8,12,0,0,1,15,13,15,9,3,15,14,2,12,5,9,13,7,15,8,4,6,0,1,6,1,8,11,7,14,14,3,2,6,8,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"8\", \"2\", \"14\"], \"clip_start\": 6.0, \"clip_end\": 10.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,7,5,13,0,12,8,2,14,6,6,5,8,7,0,15,7,13,14,6,5,5,6,6,11,10,2,1,13,6,4,12,15,15,13,7,4,9,7,1,11,3,4,6,2,8,0,3,1,9,7,7,7,1,4,2,12,1,15,8,11,0,2,12,9,10,4,10,6,15,12,2,7,7,3,0,10,12,2,6,15,12,15,4,12,0,15,11,11,8,13,8,12,0,0,1,15,13,15,9,3,15,14,2,12,5,9,13,7,15,8,4,6,0,1,6,1,8,11,7,14,14,3,2,6,8,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 124.0, \"clip_end\": 127.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,7,5,13,0,12,8,2,14,6,6,5,8,7,0,15,7,13,14,6,5,5,6,6,11,10,2,1,13,6,4,12,15,15,13,7,4,9,7,1,11,3,4,6,2,8,0,3,1,9,7,7,7,1,4,2,12,1,15,8,11,0,2,12,9,10,4,10,6,15,12,2,7,7,3,0,10,12,2,6,15,12,15,4,12,0,15,11,11,8,13,8,12,0,0,1,15,13,15,9,3,15,14,2,12,5,9,13,7,15,8,4,6,0,1,6,1,8,11,7,14,14,3,2,6,8,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"3\", \"2\"], \"clip_start\": 121.0, \"clip_end\": 125.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,7,5,13,0,12,8,2,14,6,6,5,8,7,0,15,7,13,14,6,5,5,6,6,11,10,2,1,13,6,4,12,15,15,13,7,4,9,7,1,11,3,4,6,2,8,0,3,1,9,7,7,7,1,4,2,12,1,15,8,11,0,2,12,9,10,4,10,6,15,12,2,7,7,3,0,10,12,2,6,15,12,15,4,12,0,15,11,11,8,13,8,12,0,0,1,15,13,15,9,3,15,14,2,12,5,9,13,7,15,8,4,6,0,1,6,1,8,11,7,14,14,3,2,6,8,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 38.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,14,7,5,13,0,12,8,2,14,6,6,5,8,7,0,15,7,13,14,6,5,5,6,6,11,10,2,1,13,6,4,12,15,15,13,7,4,9,7,1,11,3,4,6,2,8,0,3,1,9,7,7,7,1,4,2,12,1,15,8,11,0,2,12,9,10,4,10,6,15,12,2,7,7,3,0,10,12,2,6,15,12,15,4,12,0,15,11,11,8,13,8,12,0,0,1,15,13,15,9,3,15,14,2,12,5,9,13,7,15,8,4,6,0,1,6,1,8,11,7,14,14,3,2,6,8,5", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"4\", \"0\", \"0\", \"14\", \"10\"], \"clip_start\": 53.0, \"clip_end\": 59.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,13,11,0,2,6,1,0,15,2,7,12,7,10,4,7,7,3,11,0,9,3,3,15,14,15,15,9,4,14,5,14,14,6,4,15,2,2,5,6,12,13,15,4,4,3,11,1,7,3,14,1,9,4,0,0,14,10,14,14,10,11,1,14,3,2,3,4,11,12,13,15,13,11,12,13,9,2,5,12,9,6,10,11,9,6,7,3,12,11,9,2,13,15,2,0,9,13,2,15,8,4,12,9,11,11,13,4,11,3,14,6,6,14,7,5,8,9,7,0,11,1,15,6,1,14,6", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"7\", \"10\", \"4\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,13,11,0,2,6,1,0,15,2,7,12,7,10,4,7,7,3,11,0,9,3,3,15,14,15,15,9,4,14,5,14,14,6,4,15,2,2,5,6,12,13,15,4,4,3,11,1,7,3,14,1,9,4,0,0,14,10,14,14,10,11,1,14,3,2,3,4,11,12,13,15,13,11,12,13,9,2,5,12,9,6,10,11,9,6,7,3,12,11,9,2,13,15,2,0,9,13,2,15,8,4,12,9,11,11,13,4,11,3,14,6,6,14,7,5,8,9,7,0,11,1,15,6,1,14,6", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"1\", \"7\", \"3\"], \"clip_start\": 46.0, \"clip_end\": 51.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,13,11,0,2,6,1,0,15,2,7,12,7,10,4,7,7,3,11,0,9,3,3,15,14,15,15,9,4,14,5,14,14,6,4,15,2,2,5,6,12,13,15,4,4,3,11,1,7,3,14,1,9,4,0,0,14,10,14,14,10,11,1,14,3,2,3,4,11,12,13,15,13,11,12,13,9,2,5,12,9,6,10,11,9,6,7,3,12,11,9,2,13,15,2,0,9,13,2,15,8,4,12,9,11,11,13,4,11,3,14,6,6,14,7,5,8,9,7,0,11,1,15,6,1,14,6", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 105.0, \"clip_end\": 110.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,13,11,0,2,6,1,0,15,2,7,12,7,10,4,7,7,3,11,0,9,3,3,15,14,15,15,9,4,14,5,14,14,6,4,15,2,2,5,6,12,13,15,4,4,3,11,1,7,3,14,1,9,4,0,0,14,10,14,14,10,11,1,14,3,2,3,4,11,12,13,15,13,11,12,13,9,2,5,12,9,6,10,11,9,6,7,3,12,11,9,2,13,15,2,0,9,13,2,15,8,4,12,9,11,11,13,4,11,3,14,6,6,14,7,5,8,9,7,0,11,1,15,6,1,14,6", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 102.0, \"clip_end\": 105.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,13,11,0,2,6,1,0,15,2,7,12,7,10,4,7,7,3,11,0,9,3,3,15,14,15,15,9,4,14,5,14,14,6,4,15,2,2,5,6,12,13,15,4,4,3,11,1,7,3,14,1,9,4,0,0,14,10,14,14,10,11,1,14,3,2,3,4,11,12,13,15,13,11,12,13,9,2,5,12,9,6,10,11,9,6,7,3,12,11,9,2,13,15,2,0,9,13,2,15,8,4,12,9,11,11,13,4,11,3,14,6,6,14,7,5,8,9,7,0,11,1,15,6,1,14,6", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"6\", \"7\", \"3\", \"12\"], \"clip_start\": 84.0, \"clip_end\": 90.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,13,11,0,2,6,1,0,15,2,7,12,7,10,4,7,7,3,11,0,9,3,3,15,14,15,15,9,4,14,5,14,14,6,4,15,2,2,5,6,12,13,15,4,4,3,11,1,7,3,14,1,9,4,0,0,14,10,14,14,10,11,1,14,3,2,3,4,11,12,13,15,13,11,12,13,9,2,5,12,9,6,10,11,9,6,7,3,12,11,9,2,13,15,2,0,9,13,2,15,8,4,12,9,11,11,13,4,11,3,14,6,6,14,7,5,8,9,7,0,11,1,15,6,1,14,6", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"11\", \"9\"], \"clip_start\": 82.0, \"clip_end\": 86.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,13,11,0,2,6,1,0,15,2,7,12,7,10,4,7,7,3,11,0,9,3,3,15,14,15,15,9,4,14,5,14,14,6,4,15,2,2,5,6,12,13,15,4,4,3,11,1,7,3,14,1,9,4,0,0,14,10,14,14,10,11,1,14,3,2,3,4,11,12,13,15,13,11,12,13,9,2,5,12,9,6,10,11,9,6,7,3,12,11,9,2,13,15,2,0,9,13,2,15,8,4,12,9,11,11,13,4,11,3,14,6,6,14,7,5,8,9,7,0,11,1,15,6,1,14,6", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"15\", \"2\", \"0\", \"9\", \"13\"], \"clip_start\": 93.0, \"clip_end\": 99.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,13,11,0,2,6,1,0,15,2,7,12,7,10,4,7,7,3,11,0,9,3,3,15,14,15,15,9,4,14,5,14,14,6,4,15,2,2,5,6,12,13,15,4,4,3,11,1,7,3,14,1,9,4,0,0,14,10,14,14,10,11,1,14,3,2,3,4,11,12,13,15,13,11,12,13,9,2,5,12,9,6,10,11,9,6,7,3,12,11,9,2,13,15,2,0,9,13,2,15,8,4,12,9,11,11,13,4,11,3,14,6,6,14,7,5,8,9,7,0,11,1,15,6,1,14,6", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"11\", \"9\", \"2\", \"13\"], \"clip_start\": 88.0, \"clip_end\": 94.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,13,11,0,2,6,1,0,15,2,7,12,7,10,4,7,7,3,11,0,9,3,3,15,14,15,15,9,4,14,5,14,14,6,4,15,2,2,5,6,12,13,15,4,4,3,11,1,7,3,14,1,9,4,0,0,14,10,14,14,10,11,1,14,3,2,3,4,11,12,13,15,13,11,12,13,9,2,5,12,9,6,10,11,9,6,7,3,12,11,9,2,13,15,2,0,9,13,2,15,8,4,12,9,11,11,13,4,11,3,14,6,6,14,7,5,8,9,7,0,11,1,15,6,1,14,6", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 58.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,13,11,0,2,6,1,0,15,2,7,12,7,10,4,7,7,3,11,0,9,3,3,15,14,15,15,9,4,14,5,14,14,6,4,15,2,2,5,6,12,13,15,4,4,3,11,1,7,3,14,1,9,4,0,0,14,10,14,14,10,11,1,14,3,2,3,4,11,12,13,15,13,11,12,13,9,2,5,12,9,6,10,11,9,6,7,3,12,11,9,2,13,15,2,0,9,13,2,15,8,4,12,9,11,11,13,4,11,3,14,6,6,14,7,5,8,9,7,0,11,1,15,6,1,14,6", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 103.0, \"clip_end\": 107.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,13,11,0,2,6,1,0,15,2,7,12,7,10,4,7,7,3,11,0,9,3,3,15,14,15,15,9,4,14,5,14,14,6,4,15,2,2,5,6,12,13,15,4,4,3,11,1,7,3,14,1,9,4,0,0,14,10,14,14,10,11,1,14,3,2,3,4,11,12,13,15,13,11,12,13,9,2,5,12,9,6,10,11,9,6,7,3,12,11,9,2,13,15,2,0,9,13,2,15,8,4,12,9,11,11,13,4,11,3,14,6,6,14,7,5,8,9,7,0,11,1,15,6,1,14,6", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"12\", \"13\", \"15\", \"13\"], \"clip_start\": 68.0, \"clip_end\": 74.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,13,11,0,2,6,1,0,15,2,7,12,7,10,4,7,7,3,11,0,9,3,3,15,14,15,15,9,4,14,5,14,14,6,4,15,2,2,5,6,12,13,15,4,4,3,11,1,7,3,14,1,9,4,0,0,14,10,14,14,10,11,1,14,3,2,3,4,11,12,13,15,13,11,12,13,9,2,5,12,9,6,10,11,9,6,7,3,12,11,9,2,13,15,2,0,9,13,2,15,8,4,12,9,11,11,13,4,11,3,14,6,6,14,7,5,8,9,7,0,11,1,15,6,1,14,6", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"7\", \"7\", \"3\"], \"clip_start\": 15.0, \"clip_end\": 19.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,13,11,0,2,6,1,0,15,2,7,12,7,10,4,7,7,3,11,0,9,3,3,15,14,15,15,9,4,14,5,14,14,6,4,15,2,2,5,6,12,13,15,4,4,3,11,1,7,3,14,1,9,4,0,0,14,10,14,14,10,11,1,14,3,2,3,4,11,12,13,15,13,11,12,13,9,2,5,12,9,6,10,11,9,6,7,3,12,11,9,2,13,15,2,0,9,13,2,15,8,4,12,9,11,11,13,4,11,3,14,6,6,14,7,5,8,9,7,0,11,1,15,6,1,14,6", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"6\", \"12\", \"13\"], \"clip_start\": 39.0, \"clip_end\": 43.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,13,11,0,2,6,1,0,15,2,7,12,7,10,4,7,7,3,11,0,9,3,3,15,14,15,15,9,4,14,5,14,14,6,4,15,2,2,5,6,12,13,15,4,4,3,11,1,7,3,14,1,9,4,0,0,14,10,14,14,10,11,1,14,3,2,3,4,11,12,13,15,13,11,12,13,9,2,5,12,9,6,10,11,9,6,7,3,12,11,9,2,13,15,2,0,9,13,2,15,8,4,12,9,11,11,13,4,11,3,14,6,6,14,7,5,8,9,7,0,11,1,15,6,1,14,6", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"15\", \"14\", \"15\", \"15\"], \"clip_start\": 22.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,13,11,0,2,6,1,0,15,2,7,12,7,10,4,7,7,3,11,0,9,3,3,15,14,15,15,9,4,14,5,14,14,6,4,15,2,2,5,6,12,13,15,4,4,3,11,1,7,3,14,1,9,4,0,0,14,10,14,14,10,11,1,14,3,2,3,4,11,12,13,15,13,11,12,13,9,2,5,12,9,6,10,11,9,6,7,3,12,11,9,2,13,15,2,0,9,13,2,15,8,4,12,9,11,11,13,4,11,3,14,6,6,14,7,5,8,9,7,0,11,1,15,6,1,14,6", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"2\", \"3\", \"4\", \"11\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,0,13,11,0,2,6,1,0,15,2,7,12,7,10,4,7,7,3,11,0,9,3,3,15,14,15,15,9,4,14,5,14,14,6,4,15,2,2,5,6,12,13,15,4,4,3,11,1,7,3,14,1,9,4,0,0,14,10,14,14,10,11,1,14,3,2,3,4,11,12,13,15,13,11,12,13,9,2,5,12,9,6,10,11,9,6,7,3,12,11,9,2,13,15,2,0,9,13,2,15,8,4,12,9,11,11,13,4,11,3,14,6,6,14,7,5,8,9,7,0,11,1,15,6,1,14,6", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"10\", \"7\", \"5\", \"13\", \"2\"], \"clip_start\": 100.0, \"clip_end\": 106.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,9,1,4,8,1,6,8,9,6,6,4,8,8,8,12,10,2,13,14,14,7,5,2,12,13,1,5,7,2,3,11,7,4,4,13,14,10,9,3,4,3,7,1,11,14,12,4,2,11,15,0,7,8,0,1,3,0,0,8,12,1,9,10,13,1,13,7,7,2,12,4,13,13,7,7,0,13,15,13,15,12,4,4,9,6,10,11,11,6,3,5,10,11,4,9,11,13,12,2,10,7,5,13,2,12,9,0,6,8,10,7,10,4,3,2,6,15,8,3,6,12,6,1,14,4,4", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"1\", \"9\", \"10\"], \"clip_start\": 61.0, \"clip_end\": 65.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,9,1,4,8,1,6,8,9,6,6,4,8,8,8,12,10,2,13,14,14,7,5,2,12,13,1,5,7,2,3,11,7,4,4,13,14,10,9,3,4,3,7,1,11,14,12,4,2,11,15,0,7,8,0,1,3,0,0,8,12,1,9,10,13,1,13,7,7,2,12,4,13,13,7,7,0,13,15,13,15,12,4,4,9,6,10,11,11,6,3,5,10,11,4,9,11,13,12,2,10,7,5,13,2,12,9,0,6,8,10,7,10,4,3,2,6,15,8,3,6,12,6,1,14,4,4", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"8\", \"12\", \"10\", \"2\", \"13\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,9,1,4,8,1,6,8,9,6,6,4,8,8,8,12,10,2,13,14,14,7,5,2,12,13,1,5,7,2,3,11,7,4,4,13,14,10,9,3,4,3,7,1,11,14,12,4,2,11,15,0,7,8,0,1,3,0,0,8,12,1,9,10,13,1,13,7,7,2,12,4,13,13,7,7,0,13,15,13,15,12,4,4,9,6,10,11,11,6,3,5,10,11,4,9,11,13,12,2,10,7,5,13,2,12,9,0,6,8,10,7,10,4,3,2,6,15,8,3,6,12,6,1,14,4,4", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 18.0, \"clip_end\": 21.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,9,1,4,8,1,6,8,9,6,6,4,8,8,8,12,10,2,13,14,14,7,5,2,12,13,1,5,7,2,3,11,7,4,4,13,14,10,9,3,4,3,7,1,11,14,12,4,2,11,15,0,7,8,0,1,3,0,0,8,12,1,9,10,13,1,13,7,7,2,12,4,13,13,7,7,0,13,15,13,15,12,4,4,9,6,10,11,11,6,3,5,10,11,4,9,11,13,12,2,10,7,5,13,2,12,9,0,6,8,10,7,10,4,3,2,6,15,8,3,6,12,6,1,14,4,4", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"7\", \"0\", \"13\"], \"clip_start\": 74.0, \"clip_end\": 79.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,9,1,4,8,1,6,8,9,6,6,4,8,8,8,12,10,2,13,14,14,7,5,2,12,13,1,5,7,2,3,11,7,4,4,13,14,10,9,3,4,3,7,1,11,14,12,4,2,11,15,0,7,8,0,1,3,0,0,8,12,1,9,10,13,1,13,7,7,2,12,4,13,13,7,7,0,13,15,13,15,12,4,4,9,6,10,11,11,6,3,5,10,11,4,9,11,13,12,2,10,7,5,13,2,12,9,0,6,8,10,7,10,4,3,2,6,15,8,3,6,12,6,1,14,4,4", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"0\", \"6\", \"8\", \"10\", \"7\"], \"clip_start\": 107.0, \"clip_end\": 113.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,9,1,4,8,1,6,8,9,6,6,4,8,8,8,12,10,2,13,14,14,7,5,2,12,13,1,5,7,2,3,11,7,4,4,13,14,10,9,3,4,3,7,1,11,14,12,4,2,11,15,0,7,8,0,1,3,0,0,8,12,1,9,10,13,1,13,7,7,2,12,4,13,13,7,7,0,13,15,13,15,12,4,4,9,6,10,11,11,6,3,5,10,11,4,9,11,13,12,2,10,7,5,13,2,12,9,0,6,8,10,7,10,4,3,2,6,15,8,3,6,12,6,1,14,4,4", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"9\", \"1\", \"4\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q6_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,9,1,4,8,1,6,8,9,6,6,4,8,8,8,12,10,2,13,14,14,7,5,2,12,13,1,5,7,2,3,11,7,4,4,13,14,10,9,3,4,3,7,1,11,14,12,4,2,11,15,0,7,8,0,1,3,0,0,8,12,1,9,10,13,1,13,7,7,2,12,4,13,13,7,7,0,13,15,13,15,12,4,4,9,6,10,11,11,6,3,5,10,11,4,9,11,13,12,2,10,7,5,13,2,12,9,0,6,8,10,7,10,4,3,2,6,15,8,3,6,12,6,1,14,4,4", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"10\", \"2\", \"13\", \"14\", \"14\"], \"clip_start\": 16.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q7_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,9,1,4,8,1,6,8,9,6,6,4,8,8,8,12,10,2,13,14,14,7,5,2,12,13,1,5,7,2,3,11,7,4,4,13,14,10,9,3,4,3,7,1,11,14,12,4,2,11,15,0,7,8,0,1,3,0,0,8,12,1,9,10,13,1,13,7,7,2,12,4,13,13,7,7,0,13,15,13,15,12,4,4,9,6,10,11,11,6,3,5,10,11,4,9,11,13,12,2,10,7,5,13,2,12,9,0,6,8,10,7,10,4,3,2,6,15,8,3,6,12,6,1,14,4,4", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"13\", \"7\", \"7\"], \"clip_start\": 72.0, \"clip_end\": 77.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,9,1,4,8,1,6,8,9,6,6,4,8,8,8,12,10,2,13,14,14,7,5,2,12,13,1,5,7,2,3,11,7,4,4,13,14,10,9,3,4,3,7,1,11,14,12,4,2,11,15,0,7,8,0,1,3,0,0,8,12,1,9,10,13,1,13,7,7,2,12,4,13,13,7,7,0,13,15,13,15,12,4,4,9,6,10,11,11,6,3,5,10,11,4,9,11,13,12,2,10,7,5,13,2,12,9,0,6,8,10,7,10,4,3,2,6,15,8,3,6,12,6,1,14,4,4", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"11\", \"13\"], \"clip_start\": 95.0, \"clip_end\": 99.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q9_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,9,1,4,8,1,6,8,9,6,6,4,8,8,8,12,10,2,13,14,14,7,5,2,12,13,1,5,7,2,3,11,7,4,4,13,14,10,9,3,4,3,7,1,11,14,12,4,2,11,15,0,7,8,0,1,3,0,0,8,12,1,9,10,13,1,13,7,7,2,12,4,13,13,7,7,0,13,15,13,15,12,4,4,9,6,10,11,11,6,3,5,10,11,4,9,11,13,12,2,10,7,5,13,2,12,9,0,6,8,10,7,10,4,3,2,6,15,8,3,6,12,6,1,14,4,4", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"6\", \"10\", \"11\", \"11\"], \"clip_start\": 85.0, \"clip_end\": 90.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q10_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,9,1,4,8,1,6,8,9,6,6,4,8,8,8,12,10,2,13,14,14,7,5,2,12,13,1,5,7,2,3,11,7,4,4,13,14,10,9,3,4,3,7,1,11,14,12,4,2,11,15,0,7,8,0,1,3,0,0,8,12,1,9,10,13,1,13,7,7,2,12,4,13,13,7,7,0,13,15,13,15,12,4,4,9,6,10,11,11,6,3,5,10,11,4,9,11,13,12,2,10,7,5,13,2,12,9,0,6,8,10,7,10,4,3,2,6,15,8,3,6,12,6,1,14,4,4", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"6\", \"1\", \"14\", \"4\"], \"clip_start\": 121.0, \"clip_end\": 127.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,9,1,4,8,1,6,8,9,6,6,4,8,8,8,12,10,2,13,14,14,7,5,2,12,13,1,5,7,2,3,11,7,4,4,13,14,10,9,3,4,3,7,1,11,14,12,4,2,11,15,0,7,8,0,1,3,0,0,8,12,1,9,10,13,1,13,7,7,2,12,4,13,13,7,7,0,13,15,13,15,12,4,4,9,6,10,11,11,6,3,5,10,11,4,9,11,13,12,2,10,7,5,13,2,12,9,0,6,8,10,7,10,4,3,2,6,15,8,3,6,12,6,1,14,4,4", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"14\", \"7\", \"5\", \"2\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,9,1,4,8,1,6,8,9,6,6,4,8,8,8,12,10,2,13,14,14,7,5,2,12,13,1,5,7,2,3,11,7,4,4,13,14,10,9,3,4,3,7,1,11,14,12,4,2,11,15,0,7,8,0,1,3,0,0,8,12,1,9,10,13,1,13,7,7,2,12,4,13,13,7,7,0,13,15,13,15,12,4,4,9,6,10,11,11,6,3,5,10,11,4,9,11,13,12,2,10,7,5,13,2,12,9,0,6,8,10,7,10,4,3,2,6,15,8,3,6,12,6,1,14,4,4", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"12\", \"2\", \"10\"], \"clip_start\": 97.0, \"clip_end\": 102.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,9,1,4,8,1,6,8,9,6,6,4,8,8,8,12,10,2,13,14,14,7,5,2,12,13,1,5,7,2,3,11,7,4,4,13,14,10,9,3,4,3,7,1,11,14,12,4,2,11,15,0,7,8,0,1,3,0,0,8,12,1,9,10,13,1,13,7,7,2,12,4,13,13,7,7,0,13,15,13,15,12,4,4,9,6,10,11,11,6,3,5,10,11,4,9,11,13,12,2,10,7,5,13,2,12,9,0,6,8,10,7,10,4,3,2,6,15,8,3,6,12,6,1,14,4,4", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\", \"2\", \"15\", \"0\"], \"clip_start\": 110.0, \"clip_end\": 116.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q14_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,9,1,4,8,1,6,8,9,6,6,4,8,8,8,12,10,2,13,14,14,7,5,2,12,13,1,5,7,2,3,11,7,4,4,13,14,10,9,3,4,3,7,1,11,14,12,4,2,11,15,0,7,8,0,1,3,0,0,8,12,1,9,10,13,1,13,7,7,2,12,4,13,13,7,7,0,13,15,13,15,12,4,4,9,6,10,11,11,6,3,5,10,11,4,9,11,13,12,2,10,7,5,13,2,12,9,0,6,8,10,7,10,4,3,2,6,15,8,3,6,12,6,1,14,4,4", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"8\", \"8\"], \"clip_start\": 12.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,3,9,1,4,8,1,6,8,9,6,6,4,8,8,8,12,10,2,13,14,14,7,5,2,12,13,1,5,7,2,3,11,7,4,4,13,14,10,9,3,4,3,7,1,11,14,12,4,2,11,15,0,7,8,0,1,3,0,0,8,12,1,9,10,13,1,13,7,7,2,12,4,13,13,7,7,0,13,15,13,15,12,4,4,9,6,10,11,11,6,3,5,10,11,4,9,11,13,12,2,10,7,5,13,2,12,9,0,6,8,10,7,10,4,3,2,6,15,8,3,6,12,6,1,14,4,4", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"6\", \"12\", \"8\"], \"clip_start\": 90.0, \"clip_end\": 95.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,15,5,10,12,6,11,4,15,7,4,8,10,0,9,15,13,14,8,8,1,5,13,6,9,5,4,12,3,13,15,6,6,8,6,11,10,14,15,5,4,2,13,4,14,12,14,5,11,2,3,0,14,15,6,1,11,8,8,7,6,12,14,14,3,0,10,4,14,13,0,8,1,5,9,15,13,8,13,15,7,13,1,12,0,15,6,7,8,0,13,6,12,8,12,9,14,7,2,7,8,11,10,0,10,8,11,0,4,0,12,8,7,9,9,15,11,0,8,9,12,8,10,7,8,0,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"8\", \"11\"], \"clip_start\": 99.0, \"clip_end\": 103.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,15,5,10,12,6,11,4,15,7,4,8,10,0,9,15,13,14,8,8,1,5,13,6,9,5,4,12,3,13,15,6,6,8,6,11,10,14,15,5,4,2,13,4,14,12,14,5,11,2,3,0,14,15,6,1,11,8,8,7,6,12,14,14,3,0,10,4,14,13,0,8,1,5,9,15,13,8,13,15,7,13,1,12,0,15,6,7,8,0,13,6,12,8,12,9,14,7,2,7,8,11,10,0,10,8,11,0,4,0,12,8,7,9,9,15,11,0,8,9,12,8,10,7,8,0,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"9\", \"15\", \"11\"], \"clip_start\": 114.0, \"clip_end\": 118.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,15,5,10,12,6,11,4,15,7,4,8,10,0,9,15,13,14,8,8,1,5,13,6,9,5,4,12,3,13,15,6,6,8,6,11,10,14,15,5,4,2,13,4,14,12,14,5,11,2,3,0,14,15,6,1,11,8,8,7,6,12,14,14,3,0,10,4,14,13,0,8,1,5,9,15,13,8,13,15,7,13,1,12,0,15,6,7,8,0,13,6,12,8,12,9,14,7,2,7,8,11,10,0,10,8,11,0,4,0,12,8,7,9,9,15,11,0,8,9,12,8,10,7,8,0,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"15\", \"6\", \"6\"], \"clip_start\": 29.0, \"clip_end\": 34.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,15,5,10,12,6,11,4,15,7,4,8,10,0,9,15,13,14,8,8,1,5,13,6,9,5,4,12,3,13,15,6,6,8,6,11,10,14,15,5,4,2,13,4,14,12,14,5,11,2,3,0,14,15,6,1,11,8,8,7,6,12,14,14,3,0,10,4,14,13,0,8,1,5,9,15,13,8,13,15,7,13,1,12,0,15,6,7,8,0,13,6,12,8,12,9,14,7,2,7,8,11,10,0,10,8,11,0,4,0,12,8,7,9,9,15,11,0,8,9,12,8,10,7,8,0,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 65.0, \"clip_end\": 69.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,15,5,10,12,6,11,4,15,7,4,8,10,0,9,15,13,14,8,8,1,5,13,6,9,5,4,12,3,13,15,6,6,8,6,11,10,14,15,5,4,2,13,4,14,12,14,5,11,2,3,0,14,15,6,1,11,8,8,7,6,12,14,14,3,0,10,4,14,13,0,8,1,5,9,15,13,8,13,15,7,13,1,12,0,15,6,7,8,0,13,6,12,8,12,9,14,7,2,7,8,11,10,0,10,8,11,0,4,0,12,8,7,9,9,15,11,0,8,9,12,8,10,7,8,0,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"8\", \"7\", \"6\"], \"clip_start\": 58.0, \"clip_end\": 62.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,15,5,10,12,6,11,4,15,7,4,8,10,0,9,15,13,14,8,8,1,5,13,6,9,5,4,12,3,13,15,6,6,8,6,11,10,14,15,5,4,2,13,4,14,12,14,5,11,2,3,0,14,15,6,1,11,8,8,7,6,12,14,14,3,0,10,4,14,13,0,8,1,5,9,15,13,8,13,15,7,13,1,12,0,15,6,7,8,0,13,6,12,8,12,9,14,7,2,7,8,11,10,0,10,8,11,0,4,0,12,8,7,9,9,15,11,0,8,9,12,8,10,7,8,0,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"0\", \"4\"], \"clip_start\": 106.0, \"clip_end\": 110.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,15,5,10,12,6,11,4,15,7,4,8,10,0,9,15,13,14,8,8,1,5,13,6,9,5,4,12,3,13,15,6,6,8,6,11,10,14,15,5,4,2,13,4,14,12,14,5,11,2,3,0,14,15,6,1,11,8,8,7,6,12,14,14,3,0,10,4,14,13,0,8,1,5,9,15,13,8,13,15,7,13,1,12,0,15,6,7,8,0,13,6,12,8,12,9,14,7,2,7,8,11,10,0,10,8,11,0,4,0,12,8,7,9,9,15,11,0,8,9,12,8,10,7,8,0,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 112.0, \"clip_end\": 117.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,15,5,10,12,6,11,4,15,7,4,8,10,0,9,15,13,14,8,8,1,5,13,6,9,5,4,12,3,13,15,6,6,8,6,11,10,14,15,5,4,2,13,4,14,12,14,5,11,2,3,0,14,15,6,1,11,8,8,7,6,12,14,14,3,0,10,4,14,13,0,8,1,5,9,15,13,8,13,15,7,13,1,12,0,15,6,7,8,0,13,6,12,8,12,9,14,7,2,7,8,11,10,0,10,8,11,0,4,0,12,8,7,9,9,15,11,0,8,9,12,8,10,7,8,0,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\", \"14\"], \"clip_start\": 35.0, \"clip_end\": 39.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,15,5,10,12,6,11,4,15,7,4,8,10,0,9,15,13,14,8,8,1,5,13,6,9,5,4,12,3,13,15,6,6,8,6,11,10,14,15,5,4,2,13,4,14,12,14,5,11,2,3,0,14,15,6,1,11,8,8,7,6,12,14,14,3,0,10,4,14,13,0,8,1,5,9,15,13,8,13,15,7,13,1,12,0,15,6,7,8,0,13,6,12,8,12,9,14,7,2,7,8,11,10,0,10,8,11,0,4,0,12,8,7,9,9,15,11,0,8,9,12,8,10,7,8,0,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"8\"], \"clip_start\": 109.0, \"clip_end\": 112.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,15,5,10,12,6,11,4,15,7,4,8,10,0,9,15,13,14,8,8,1,5,13,6,9,5,4,12,3,13,15,6,6,8,6,11,10,14,15,5,4,2,13,4,14,12,14,5,11,2,3,0,14,15,6,1,11,8,8,7,6,12,14,14,3,0,10,4,14,13,0,8,1,5,9,15,13,8,13,15,7,13,1,12,0,15,6,7,8,0,13,6,12,8,12,9,14,7,2,7,8,11,10,0,10,8,11,0,4,0,12,8,7,9,9,15,11,0,8,9,12,8,10,7,8,0,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"6\", \"9\", \"5\", \"4\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,15,5,10,12,6,11,4,15,7,4,8,10,0,9,15,13,14,8,8,1,5,13,6,9,5,4,12,3,13,15,6,6,8,6,11,10,14,15,5,4,2,13,4,14,12,14,5,11,2,3,0,14,15,6,1,11,8,8,7,6,12,14,14,3,0,10,4,14,13,0,8,1,5,9,15,13,8,13,15,7,13,1,12,0,15,6,7,8,0,13,6,12,8,12,9,14,7,2,7,8,11,10,0,10,8,11,0,4,0,12,8,7,9,9,15,11,0,8,9,12,8,10,7,8,0,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"12\", \"0\", \"15\"], \"clip_start\": 83.0, \"clip_end\": 87.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q11_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,15,5,10,12,6,11,4,15,7,4,8,10,0,9,15,13,14,8,8,1,5,13,6,9,5,4,12,3,13,15,6,6,8,6,11,10,14,15,5,4,2,13,4,14,12,14,5,11,2,3,0,14,15,6,1,11,8,8,7,6,12,14,14,3,0,10,4,14,13,0,8,1,5,9,15,13,8,13,15,7,13,1,12,0,15,6,7,8,0,13,6,12,8,12,9,14,7,2,7,8,11,10,0,10,8,11,0,4,0,12,8,7,9,9,15,11,0,8,9,12,8,10,7,8,0,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,15,5,10,12,6,11,4,15,7,4,8,10,0,9,15,13,14,8,8,1,5,13,6,9,5,4,12,3,13,15,6,6,8,6,11,10,14,15,5,4,2,13,4,14,12,14,5,11,2,3,0,14,15,6,1,11,8,8,7,6,12,14,14,3,0,10,4,14,13,0,8,1,5,9,15,13,8,13,15,7,13,1,12,0,15,6,7,8,0,13,6,12,8,12,9,14,7,2,7,8,11,10,0,10,8,11,0,4,0,12,8,7,9,9,15,11,0,8,9,12,8,10,7,8,0,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"14\", \"7\"], \"clip_start\": 95.0, \"clip_end\": 99.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,15,5,10,12,6,11,4,15,7,4,8,10,0,9,15,13,14,8,8,1,5,13,6,9,5,4,12,3,13,15,6,6,8,6,11,10,14,15,5,4,2,13,4,14,12,14,5,11,2,3,0,14,15,6,1,11,8,8,7,6,12,14,14,3,0,10,4,14,13,0,8,1,5,9,15,13,8,13,15,7,13,1,12,0,15,6,7,8,0,13,6,12,8,12,9,14,7,2,7,8,11,10,0,10,8,11,0,4,0,12,8,7,9,9,15,11,0,8,9,12,8,10,7,8,0,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"15\", \"6\", \"7\"], \"clip_start\": 85.0, \"clip_end\": 89.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q14_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,15,5,10,12,6,11,4,15,7,4,8,10,0,9,15,13,14,8,8,1,5,13,6,9,5,4,12,3,13,15,6,6,8,6,11,10,14,15,5,4,2,13,4,14,12,14,5,11,2,3,0,14,15,6,1,11,8,8,7,6,12,14,14,3,0,10,4,14,13,0,8,1,5,9,15,13,8,13,15,7,13,1,12,0,15,6,7,8,0,13,6,12,8,12,9,14,7,2,7,8,11,10,0,10,8,11,0,4,0,12,8,7,9,9,15,11,0,8,9,12,8,10,7,8,0,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"9\", \"15\", \"13\", \"14\"], \"clip_start\": 13.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,15,5,10,12,6,11,4,15,7,4,8,10,0,9,15,13,14,8,8,1,5,13,6,9,5,4,12,3,13,15,6,6,8,6,11,10,14,15,5,4,2,13,4,14,12,14,5,11,2,3,0,14,15,6,1,11,8,8,7,6,12,14,14,3,0,10,4,14,13,0,8,1,5,9,15,13,8,13,15,7,13,1,12,0,15,6,7,8,0,13,6,12,8,12,9,14,7,2,7,8,11,10,0,10,8,11,0,4,0,12,8,7,9,9,15,11,0,8,9,12,8,10,7,8,0,11", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"13\", \"1\", \"2\"], \"clip_start\": 103.0, \"clip_end\": 108.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,8,14,9,1,1,9,4,2,10,5,6,9,3,11,13,0,14,10,14,4,5,14,9,7,2,4,2,12,2,4,5,6,0,3,6,7,0,14,0,5,3,3,10,14,6,3,5,13,12,1,5,9,10,15,5,14,9,14,11,0,2,7,9,4,8,4,0,6,10,2,4,9,0,14,7,13,13,3,5,12,1,15,13,7,3,15,4,5,11,14,15,15,14,1,2,13,7,1,12,1,13,1,13,1,2,11,2,13,9,3,13,1,12,5,8,0,4,4,2,14,11,5,0,14,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"4\", \"9\", \"0\", \"14\"], \"clip_start\": 71.0, \"clip_end\": 77.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,8,14,9,1,1,9,4,2,10,5,6,9,3,11,13,0,14,10,14,4,5,14,9,7,2,4,2,12,2,4,5,6,0,3,6,7,0,14,0,5,3,3,10,14,6,3,5,13,12,1,5,9,10,15,5,14,9,14,11,0,2,7,9,4,8,4,0,6,10,2,4,9,0,14,7,13,13,3,5,12,1,15,13,7,3,15,4,5,11,14,15,15,14,1,2,13,7,1,12,1,13,1,13,1,2,11,2,13,9,3,13,1,12,5,8,0,4,4,2,14,11,5,0,14,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"10\", \"14\", \"4\", \"5\", \"14\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,8,14,9,1,1,9,4,2,10,5,6,9,3,11,13,0,14,10,14,4,5,14,9,7,2,4,2,12,2,4,5,6,0,3,6,7,0,14,0,5,3,3,10,14,6,3,5,13,12,1,5,9,10,15,5,14,9,14,11,0,2,7,9,4,8,4,0,6,10,2,4,9,0,14,7,13,13,3,5,12,1,15,13,7,3,15,4,5,11,14,15,15,14,1,2,13,7,1,12,1,13,1,13,1,2,11,2,13,9,3,13,1,12,5,8,0,4,4,2,14,11,5,0,14,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"14\"], \"clip_start\": 44.0, \"clip_end\": 47.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,8,14,9,1,1,9,4,2,10,5,6,9,3,11,13,0,14,10,14,4,5,14,9,7,2,4,2,12,2,4,5,6,0,3,6,7,0,14,0,5,3,3,10,14,6,3,5,13,12,1,5,9,10,15,5,14,9,14,11,0,2,7,9,4,8,4,0,6,10,2,4,9,0,14,7,13,13,3,5,12,1,15,13,7,3,15,4,5,11,14,15,15,14,1,2,13,7,1,12,1,13,1,13,1,2,11,2,13,9,3,13,1,12,5,8,0,4,4,2,14,11,5,0,14,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"0\", \"14\", \"7\"], \"clip_start\": 73.0, \"clip_end\": 78.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,8,14,9,1,1,9,4,2,10,5,6,9,3,11,13,0,14,10,14,4,5,14,9,7,2,4,2,12,2,4,5,6,0,3,6,7,0,14,0,5,3,3,10,14,6,3,5,13,12,1,5,9,10,15,5,14,9,14,11,0,2,7,9,4,8,4,0,6,10,2,4,9,0,14,7,13,13,3,5,12,1,15,13,7,3,15,4,5,11,14,15,15,14,1,2,13,7,1,12,1,13,1,13,1,2,11,2,13,9,3,13,1,12,5,8,0,4,4,2,14,11,5,0,14,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"13\", \"12\", \"1\", \"5\"], \"clip_start\": 49.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,8,14,9,1,1,9,4,2,10,5,6,9,3,11,13,0,14,10,14,4,5,14,9,7,2,4,2,12,2,4,5,6,0,3,6,7,0,14,0,5,3,3,10,14,6,3,5,13,12,1,5,9,10,15,5,14,9,14,11,0,2,7,9,4,8,4,0,6,10,2,4,9,0,14,7,13,13,3,5,12,1,15,13,7,3,15,4,5,11,14,15,15,14,1,2,13,7,1,12,1,13,1,13,1,2,11,2,13,9,3,13,1,12,5,8,0,4,4,2,14,11,5,0,14,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"2\", \"11\", \"2\", \"13\", \"9\"], \"clip_start\": 106.0, \"clip_end\": 112.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,8,14,9,1,1,9,4,2,10,5,6,9,3,11,13,0,14,10,14,4,5,14,9,7,2,4,2,12,2,4,5,6,0,3,6,7,0,14,0,5,3,3,10,14,6,3,5,13,12,1,5,9,10,15,5,14,9,14,11,0,2,7,9,4,8,4,0,6,10,2,4,9,0,14,7,13,13,3,5,12,1,15,13,7,3,15,4,5,11,14,15,15,14,1,2,13,7,1,12,1,13,1,13,1,2,11,2,13,9,3,13,1,12,5,8,0,4,4,2,14,11,5,0,14,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"14\", \"1\", \"2\", \"13\"], \"clip_start\": 93.0, \"clip_end\": 99.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,8,14,9,1,1,9,4,2,10,5,6,9,3,11,13,0,14,10,14,4,5,14,9,7,2,4,2,12,2,4,5,6,0,3,6,7,0,14,0,5,3,3,10,14,6,3,5,13,12,1,5,9,10,15,5,14,9,14,11,0,2,7,9,4,8,4,0,6,10,2,4,9,0,14,7,13,13,3,5,12,1,15,13,7,3,15,4,5,11,14,15,15,14,1,2,13,7,1,12,1,13,1,13,1,2,11,2,13,9,3,13,1,12,5,8,0,4,4,2,14,11,5,0,14,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\"], \"clip_start\": 119.0, \"clip_end\": 122.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,8,14,9,1,1,9,4,2,10,5,6,9,3,11,13,0,14,10,14,4,5,14,9,7,2,4,2,12,2,4,5,6,0,3,6,7,0,14,0,5,3,3,10,14,6,3,5,13,12,1,5,9,10,15,5,14,9,14,11,0,2,7,9,4,8,4,0,6,10,2,4,9,0,14,7,13,13,3,5,12,1,15,13,7,3,15,4,5,11,14,15,15,14,1,2,13,7,1,12,1,13,1,13,1,2,11,2,13,9,3,13,1,12,5,8,0,4,4,2,14,11,5,0,14,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"13\", \"3\"], \"clip_start\": 102.0, \"clip_end\": 107.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,8,14,9,1,1,9,4,2,10,5,6,9,3,11,13,0,14,10,14,4,5,14,9,7,2,4,2,12,2,4,5,6,0,3,6,7,0,14,0,5,3,3,10,14,6,3,5,13,12,1,5,9,10,15,5,14,9,14,11,0,2,7,9,4,8,4,0,6,10,2,4,9,0,14,7,13,13,3,5,12,1,15,13,7,3,15,4,5,11,14,15,15,14,1,2,13,7,1,12,1,13,1,13,1,2,11,2,13,9,3,13,1,12,5,8,0,4,4,2,14,11,5,0,14,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"10\", \"14\", \"4\", \"5\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q10_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,8,14,9,1,1,9,4,2,10,5,6,9,3,11,13,0,14,10,14,4,5,14,9,7,2,4,2,12,2,4,5,6,0,3,6,7,0,14,0,5,3,3,10,14,6,3,5,13,12,1,5,9,10,15,5,14,9,14,11,0,2,7,9,4,8,4,0,6,10,2,4,9,0,14,7,13,13,3,5,12,1,15,13,7,3,15,4,5,11,14,15,15,14,1,2,13,7,1,12,1,13,1,13,1,2,11,2,13,9,3,13,1,12,5,8,0,4,4,2,14,11,5,0,14,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"12\", \"1\", \"5\", \"9\"], \"clip_start\": 50.0, \"clip_end\": 55.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,8,14,9,1,1,9,4,2,10,5,6,9,3,11,13,0,14,10,14,4,5,14,9,7,2,4,2,12,2,4,5,6,0,3,6,7,0,14,0,5,3,3,10,14,6,3,5,13,12,1,5,9,10,15,5,14,9,14,11,0,2,7,9,4,8,4,0,6,10,2,4,9,0,14,7,13,13,3,5,12,1,15,13,7,3,15,4,5,11,14,15,15,14,1,2,13,7,1,12,1,13,1,13,1,2,11,2,13,9,3,13,1,12,5,8,0,4,4,2,14,11,5,0,14,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"15\", \"9\"], \"clip_start\": 57.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,8,14,9,1,1,9,4,2,10,5,6,9,3,11,13,0,14,10,14,4,5,14,9,7,2,4,2,12,2,4,5,6,0,3,6,7,0,14,0,5,3,3,10,14,6,3,5,13,12,1,5,9,10,15,5,14,9,14,11,0,2,7,9,4,8,4,0,6,10,2,4,9,0,14,7,13,13,3,5,12,1,15,13,7,3,15,4,5,11,14,15,15,14,1,2,13,7,1,12,1,13,1,13,1,2,11,2,13,9,3,13,1,12,5,8,0,4,4,2,14,11,5,0,14,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"13\"], \"clip_start\": 103.0, \"clip_end\": 106.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q13_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,8,14,9,1,1,9,4,2,10,5,6,9,3,11,13,0,14,10,14,4,5,14,9,7,2,4,2,12,2,4,5,6,0,3,6,7,0,14,0,5,3,3,10,14,6,3,5,13,12,1,5,9,10,15,5,14,9,14,11,0,2,7,9,4,8,4,0,6,10,2,4,9,0,14,7,13,13,3,5,12,1,15,13,7,3,15,4,5,11,14,15,15,14,1,2,13,7,1,12,1,13,1,13,1,2,11,2,13,9,3,13,1,12,5,8,0,4,4,2,14,11,5,0,14,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"14\", \"9\", \"14\", \"11\"], \"clip_start\": 56.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q14_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,8,14,9,1,1,9,4,2,10,5,6,9,3,11,13,0,14,10,14,4,5,14,9,7,2,4,2,12,2,4,5,6,0,3,6,7,0,14,0,5,3,3,10,14,6,3,5,13,12,1,5,9,10,15,5,14,9,14,11,0,2,7,9,4,8,4,0,6,10,2,4,9,0,14,7,13,13,3,5,12,1,15,13,7,3,15,4,5,11,14,15,15,14,1,2,13,7,1,12,1,13,1,13,1,2,11,2,13,9,3,13,1,12,5,8,0,4,4,2,14,11,5,0,14,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"2\", \"14\", \"11\", \"5\"], \"clip_start\": 119.0, \"clip_end\": 125.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,14,3,8,14,9,1,1,9,4,2,10,5,6,9,3,11,13,0,14,10,14,4,5,14,9,7,2,4,2,12,2,4,5,6,0,3,6,7,0,14,0,5,3,3,10,14,6,3,5,13,12,1,5,9,10,15,5,14,9,14,11,0,2,7,9,4,8,4,0,6,10,2,4,9,0,14,7,13,13,3,5,12,1,15,13,7,3,15,4,5,11,14,15,15,14,1,2,13,7,1,12,1,13,1,13,1,2,11,2,13,9,3,13,1,12,5,8,0,4,4,2,14,11,5,0,14,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"5\", \"10\", \"9\", \"1\"], \"clip_start\": 47.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,15,7,1,0,10,9,6,3,3,9,10,14,2,7,6,7,4,5,11,11,9,1,2,2,0,13,0,5,9,13,1,9,10,6,2,6,1,6,1,2,10,0,11,15,8,3,5,10,9,1,11,4,13,4,0,0,4,14,5,15,8,11,0,11,5,11,12,2,0,0,9,0,12,0,4,14,14,6,0,12,6,3,2,10,3,2,15,3,11,10,14,12,3,8,11,11,14,6,5,11,3,9,8,12,14,0,10,4,10,7,0,13,3,7,5,11,13,0,9,4,6,4,4,9,0,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"10\", \"0\", \"11\", \"15\"], \"clip_start\": 41.0, \"clip_end\": 46.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,15,7,1,0,10,9,6,3,3,9,10,14,2,7,6,7,4,5,11,11,9,1,2,2,0,13,0,5,9,13,1,9,10,6,2,6,1,6,1,2,10,0,11,15,8,3,5,10,9,1,11,4,13,4,0,0,4,14,5,15,8,11,0,11,5,11,12,2,0,0,9,0,12,0,4,14,14,6,0,12,6,3,2,10,3,2,15,3,11,10,14,12,3,8,11,11,14,6,5,11,3,9,8,12,14,0,10,4,10,7,0,13,3,7,5,11,13,0,9,4,6,4,4,9,0,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"7\"], \"clip_start\": 113.0, \"clip_end\": 116.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,15,7,1,0,10,9,6,3,3,9,10,14,2,7,6,7,4,5,11,11,9,1,2,2,0,13,0,5,9,13,1,9,10,6,2,6,1,6,1,2,10,0,11,15,8,3,5,10,9,1,11,4,13,4,0,0,4,14,5,15,8,11,0,11,5,11,12,2,0,0,9,0,12,0,4,14,14,6,0,12,6,3,2,10,3,2,15,3,11,10,14,12,3,8,11,11,14,6,5,11,3,9,8,12,14,0,10,4,10,7,0,13,3,7,5,11,13,0,9,4,6,4,4,9,0,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,15,7,1,0,10,9,6,3,3,9,10,14,2,7,6,7,4,5,11,11,9,1,2,2,0,13,0,5,9,13,1,9,10,6,2,6,1,6,1,2,10,0,11,15,8,3,5,10,9,1,11,4,13,4,0,0,4,14,5,15,8,11,0,11,5,11,12,2,0,0,9,0,12,0,4,14,14,6,0,12,6,3,2,10,3,2,15,3,11,10,14,12,3,8,11,11,14,6,5,11,3,9,8,12,14,0,10,4,10,7,0,13,3,7,5,11,13,0,9,4,6,4,4,9,0,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"10\"], \"clip_start\": 46.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,15,7,1,0,10,9,6,3,3,9,10,14,2,7,6,7,4,5,11,11,9,1,2,2,0,13,0,5,9,13,1,9,10,6,2,6,1,6,1,2,10,0,11,15,8,3,5,10,9,1,11,4,13,4,0,0,4,14,5,15,8,11,0,11,5,11,12,2,0,0,9,0,12,0,4,14,14,6,0,12,6,3,2,10,3,2,15,3,11,10,14,12,3,8,11,11,14,6,5,11,3,9,8,12,14,0,10,4,10,7,0,13,3,7,5,11,13,0,9,4,6,4,4,9,0,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"8\", \"3\", \"5\"], \"clip_start\": 45.0, \"clip_end\": 49.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,15,7,1,0,10,9,6,3,3,9,10,14,2,7,6,7,4,5,11,11,9,1,2,2,0,13,0,5,9,13,1,9,10,6,2,6,1,6,1,2,10,0,11,15,8,3,5,10,9,1,11,4,13,4,0,0,4,14,5,15,8,11,0,11,5,11,12,2,0,0,9,0,12,0,4,14,14,6,0,12,6,3,2,10,3,2,15,3,11,10,14,12,3,8,11,11,14,6,5,11,3,9,8,12,14,0,10,4,10,7,0,13,3,7,5,11,13,0,9,4,6,4,4,9,0,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 116.0, \"clip_end\": 120.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,15,7,1,0,10,9,6,3,3,9,10,14,2,7,6,7,4,5,11,11,9,1,2,2,0,13,0,5,9,13,1,9,10,6,2,6,1,6,1,2,10,0,11,15,8,3,5,10,9,1,11,4,13,4,0,0,4,14,5,15,8,11,0,11,5,11,12,2,0,0,9,0,12,0,4,14,14,6,0,12,6,3,2,10,3,2,15,3,11,10,14,12,3,8,11,11,14,6,5,11,3,9,8,12,14,0,10,4,10,7,0,13,3,7,5,11,13,0,9,4,6,4,4,9,0,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"0\", \"12\", \"0\", \"4\"], \"clip_start\": 72.0, \"clip_end\": 77.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,15,7,1,0,10,9,6,3,3,9,10,14,2,7,6,7,4,5,11,11,9,1,2,2,0,13,0,5,9,13,1,9,10,6,2,6,1,6,1,2,10,0,11,15,8,3,5,10,9,1,11,4,13,4,0,0,4,14,5,15,8,11,0,11,5,11,12,2,0,0,9,0,12,0,4,14,14,6,0,12,6,3,2,10,3,2,15,3,11,10,14,12,3,8,11,11,14,6,5,11,3,9,8,12,14,0,10,4,10,7,0,13,3,7,5,11,13,0,9,4,6,4,4,9,0,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"7\", \"4\", \"5\"], \"clip_start\": 15.0, \"clip_end\": 20.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,15,7,1,0,10,9,6,3,3,9,10,14,2,7,6,7,4,5,11,11,9,1,2,2,0,13,0,5,9,13,1,9,10,6,2,6,1,6,1,2,10,0,11,15,8,3,5,10,9,1,11,4,13,4,0,0,4,14,5,15,8,11,0,11,5,11,12,2,0,0,9,0,12,0,4,14,14,6,0,12,6,3,2,10,3,2,15,3,11,10,14,12,3,8,11,11,14,6,5,11,3,9,8,12,14,0,10,4,10,7,0,13,3,7,5,11,13,0,9,4,6,4,4,9,0,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"5\", \"11\", \"13\"], \"clip_start\": 114.0, \"clip_end\": 119.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,15,7,1,0,10,9,6,3,3,9,10,14,2,7,6,7,4,5,11,11,9,1,2,2,0,13,0,5,9,13,1,9,10,6,2,6,1,6,1,2,10,0,11,15,8,3,5,10,9,1,11,4,13,4,0,0,4,14,5,15,8,11,0,11,5,11,12,2,0,0,9,0,12,0,4,14,14,6,0,12,6,3,2,10,3,2,15,3,11,10,14,12,3,8,11,11,14,6,5,11,3,9,8,12,14,0,10,4,10,7,0,13,3,7,5,11,13,0,9,4,6,4,4,9,0,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 46.0, \"clip_end\": 51.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,15,7,1,0,10,9,6,3,3,9,10,14,2,7,6,7,4,5,11,11,9,1,2,2,0,13,0,5,9,13,1,9,10,6,2,6,1,6,1,2,10,0,11,15,8,3,5,10,9,1,11,4,13,4,0,0,4,14,5,15,8,11,0,11,5,11,12,2,0,0,9,0,12,0,4,14,14,6,0,12,6,3,2,10,3,2,15,3,11,10,14,12,3,8,11,11,14,6,5,11,3,9,8,12,14,0,10,4,10,7,0,13,3,7,5,11,13,0,9,4,6,4,4,9,0,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"0\", \"11\", \"5\", \"11\"], \"clip_start\": 63.0, \"clip_end\": 68.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,15,7,1,0,10,9,6,3,3,9,10,14,2,7,6,7,4,5,11,11,9,1,2,2,0,13,0,5,9,13,1,9,10,6,2,6,1,6,1,2,10,0,11,15,8,3,5,10,9,1,11,4,13,4,0,0,4,14,5,15,8,11,0,11,5,11,12,2,0,0,9,0,12,0,4,14,14,6,0,12,6,3,2,10,3,2,15,3,11,10,14,12,3,8,11,11,14,6,5,11,3,9,8,12,14,0,10,4,10,7,0,13,3,7,5,11,13,0,9,4,6,4,4,9,0,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 29.0, \"clip_end\": 35.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,15,7,1,0,10,9,6,3,3,9,10,14,2,7,6,7,4,5,11,11,9,1,2,2,0,13,0,5,9,13,1,9,10,6,2,6,1,6,1,2,10,0,11,15,8,3,5,10,9,1,11,4,13,4,0,0,4,14,5,15,8,11,0,11,5,11,12,2,0,0,9,0,12,0,4,14,14,6,0,12,6,3,2,10,3,2,15,3,11,10,14,12,3,8,11,11,14,6,5,11,3,9,8,12,14,0,10,4,10,7,0,13,3,7,5,11,13,0,9,4,6,4,4,9,0,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"4\", \"10\", \"7\", \"0\"], \"clip_start\": 107.0, \"clip_end\": 113.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,15,7,1,0,10,9,6,3,3,9,10,14,2,7,6,7,4,5,11,11,9,1,2,2,0,13,0,5,9,13,1,9,10,6,2,6,1,6,1,2,10,0,11,15,8,3,5,10,9,1,11,4,13,4,0,0,4,14,5,15,8,11,0,11,5,11,12,2,0,0,9,0,12,0,4,14,14,6,0,12,6,3,2,10,3,2,15,3,11,10,14,12,3,8,11,11,14,6,5,11,3,9,8,12,14,0,10,4,10,7,0,13,3,7,5,11,13,0,9,4,6,4,4,9,0,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"10\", \"9\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,15,7,1,0,10,9,6,3,3,9,10,14,2,7,6,7,4,5,11,11,9,1,2,2,0,13,0,5,9,13,1,9,10,6,2,6,1,6,1,2,10,0,11,15,8,3,5,10,9,1,11,4,13,4,0,0,4,14,5,15,8,11,0,11,5,11,12,2,0,0,9,0,12,0,4,14,14,6,0,12,6,3,2,10,3,2,15,3,11,10,14,12,3,8,11,11,14,6,5,11,3,9,8,12,14,0,10,4,10,7,0,13,3,7,5,11,13,0,9,4,6,4,4,9,0,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 68.0, \"clip_end\": 71.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,15,7,1,0,10,9,6,3,3,9,10,14,2,7,6,7,4,5,11,11,9,1,2,2,0,13,0,5,9,13,1,9,10,6,2,6,1,6,1,2,10,0,11,15,8,3,5,10,9,1,11,4,13,4,0,0,4,14,5,15,8,11,0,11,5,11,12,2,0,0,9,0,12,0,4,14,14,6,0,12,6,3,2,10,3,2,15,3,11,10,14,12,3,8,11,11,14,6,5,11,3,9,8,12,14,0,10,4,10,7,0,13,3,7,5,11,13,0,9,4,6,4,4,9,0,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 0.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,12,7,4,4,9,9,7,4,1,7,3,8,2,6,6,8,12,4,0,13,2,0,3,5,10,14,10,0,0,0,9,5,12,14,7,5,7,14,5,4,9,5,11,11,9,0,2,9,6,1,15,1,7,6,5,6,11,5,9,9,12,5,13,10,0,9,14,8,7,15,3,3,8,9,7,11,0,13,3,14,14,11,15,5,14,4,3,11,3,6,4,14,15,9,10,12,15,8,14,0,3,1,9,1,5,10,11,0,5,9,5,4,12,13,6,15,4,1,13,6,0,6,3,15,13,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"6\", \"15\", \"4\", \"1\"], \"clip_start\": 114.0, \"clip_end\": 120.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,12,7,4,4,9,9,7,4,1,7,3,8,2,6,6,8,12,4,0,13,2,0,3,5,10,14,10,0,0,0,9,5,12,14,7,5,7,14,5,4,9,5,11,11,9,0,2,9,6,1,15,1,7,6,5,6,11,5,9,9,12,5,13,10,0,9,14,8,7,15,3,3,8,9,7,11,0,13,3,14,14,11,15,5,14,4,3,11,3,6,4,14,15,9,10,12,15,8,14,0,3,1,9,1,5,10,11,0,5,9,5,4,12,13,6,15,4,1,13,6,0,6,3,15,13,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"13\"], \"clip_start\": 113.0, \"clip_end\": 116.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,12,7,4,4,9,9,7,4,1,7,3,8,2,6,6,8,12,4,0,13,2,0,3,5,10,14,10,0,0,0,9,5,12,14,7,5,7,14,5,4,9,5,11,11,9,0,2,9,6,1,15,1,7,6,5,6,11,5,9,9,12,5,13,10,0,9,14,8,7,15,3,3,8,9,7,11,0,13,3,14,14,11,15,5,14,4,3,11,3,6,4,14,15,9,10,12,15,8,14,0,3,1,9,1,5,10,11,0,5,9,5,4,12,13,6,15,4,1,13,6,0,6,3,15,13,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"3\", \"8\"], \"clip_start\": 11.0, \"clip_end\": 14.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,12,7,4,4,9,9,7,4,1,7,3,8,2,6,6,8,12,4,0,13,2,0,3,5,10,14,10,0,0,0,9,5,12,14,7,5,7,14,5,4,9,5,11,11,9,0,2,9,6,1,15,1,7,6,5,6,11,5,9,9,12,5,13,10,0,9,14,8,7,15,3,3,8,9,7,11,0,13,3,14,14,11,15,5,14,4,3,11,3,6,4,14,15,9,10,12,15,8,14,0,3,1,9,1,5,10,11,0,5,9,5,4,12,13,6,15,4,1,13,6,0,6,3,15,13,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"0\"], \"clip_start\": 76.0, \"clip_end\": 79.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,12,7,4,4,9,9,7,4,1,7,3,8,2,6,6,8,12,4,0,13,2,0,3,5,10,14,10,0,0,0,9,5,12,14,7,5,7,14,5,4,9,5,11,11,9,0,2,9,6,1,15,1,7,6,5,6,11,5,9,9,12,5,13,10,0,9,14,8,7,15,3,3,8,9,7,11,0,13,3,14,14,11,15,5,14,4,3,11,3,6,4,14,15,9,10,12,15,8,14,0,3,1,9,1,5,10,11,0,5,9,5,4,12,13,6,15,4,1,13,6,0,6,3,15,13,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"4\", \"1\", \"7\", \"3\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,12,7,4,4,9,9,7,4,1,7,3,8,2,6,6,8,12,4,0,13,2,0,3,5,10,14,10,0,0,0,9,5,12,14,7,5,7,14,5,4,9,5,11,11,9,0,2,9,6,1,15,1,7,6,5,6,11,5,9,9,12,5,13,10,0,9,14,8,7,15,3,3,8,9,7,11,0,13,3,14,14,11,15,5,14,4,3,11,3,6,4,14,15,9,10,12,15,8,14,0,3,1,9,1,5,10,11,0,5,9,5,4,12,13,6,15,4,1,13,6,0,6,3,15,13,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"7\", \"6\", \"5\"], \"clip_start\": 52.0, \"clip_end\": 57.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,12,7,4,4,9,9,7,4,1,7,3,8,2,6,6,8,12,4,0,13,2,0,3,5,10,14,10,0,0,0,9,5,12,14,7,5,7,14,5,4,9,5,11,11,9,0,2,9,6,1,15,1,7,6,5,6,11,5,9,9,12,5,13,10,0,9,14,8,7,15,3,3,8,9,7,11,0,13,3,14,14,11,15,5,14,4,3,11,3,6,4,14,15,9,10,12,15,8,14,0,3,1,9,1,5,10,11,0,5,9,5,4,12,13,6,15,4,1,13,6,0,6,3,15,13,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 78.0, \"clip_end\": 82.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,12,7,4,4,9,9,7,4,1,7,3,8,2,6,6,8,12,4,0,13,2,0,3,5,10,14,10,0,0,0,9,5,12,14,7,5,7,14,5,4,9,5,11,11,9,0,2,9,6,1,15,1,7,6,5,6,11,5,9,9,12,5,13,10,0,9,14,8,7,15,3,3,8,9,7,11,0,13,3,14,14,11,15,5,14,4,3,11,3,6,4,14,15,9,10,12,15,8,14,0,3,1,9,1,5,10,11,0,5,9,5,4,12,13,6,15,4,1,13,6,0,6,3,15,13,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"9\", \"7\", \"4\", \"1\", \"7\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,12,7,4,4,9,9,7,4,1,7,3,8,2,6,6,8,12,4,0,13,2,0,3,5,10,14,10,0,0,0,9,5,12,14,7,5,7,14,5,4,9,5,11,11,9,0,2,9,6,1,15,1,7,6,5,6,11,5,9,9,12,5,13,10,0,9,14,8,7,15,3,3,8,9,7,11,0,13,3,14,14,11,15,5,14,4,3,11,3,6,4,14,15,9,10,12,15,8,14,0,3,1,9,1,5,10,11,0,5,9,5,4,12,13,6,15,4,1,13,6,0,6,3,15,13,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"5\", \"9\", \"9\"], \"clip_start\": 57.0, \"clip_end\": 62.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,12,7,4,4,9,9,7,4,1,7,3,8,2,6,6,8,12,4,0,13,2,0,3,5,10,14,10,0,0,0,9,5,12,14,7,5,7,14,5,4,9,5,11,11,9,0,2,9,6,1,15,1,7,6,5,6,11,5,9,9,12,5,13,10,0,9,14,8,7,15,3,3,8,9,7,11,0,13,3,14,14,11,15,5,14,4,3,11,3,6,4,14,15,9,10,12,15,8,14,0,3,1,9,1,5,10,11,0,5,9,5,4,12,13,6,15,4,1,13,6,0,6,3,15,13,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 109.0, \"clip_end\": 113.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,12,7,4,4,9,9,7,4,1,7,3,8,2,6,6,8,12,4,0,13,2,0,3,5,10,14,10,0,0,0,9,5,12,14,7,5,7,14,5,4,9,5,11,11,9,0,2,9,6,1,15,1,7,6,5,6,11,5,9,9,12,5,13,10,0,9,14,8,7,15,3,3,8,9,7,11,0,13,3,14,14,11,15,5,14,4,3,11,3,6,4,14,15,9,10,12,15,8,14,0,3,1,9,1,5,10,11,0,5,9,5,4,12,13,6,15,4,1,13,6,0,6,3,15,13,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"3\", \"8\", \"2\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,12,7,4,4,9,9,7,4,1,7,3,8,2,6,6,8,12,4,0,13,2,0,3,5,10,14,10,0,0,0,9,5,12,14,7,5,7,14,5,4,9,5,11,11,9,0,2,9,6,1,15,1,7,6,5,6,11,5,9,9,12,5,13,10,0,9,14,8,7,15,3,3,8,9,7,11,0,13,3,14,14,11,15,5,14,4,3,11,3,6,4,14,15,9,10,12,15,8,14,0,3,1,9,1,5,10,11,0,5,9,5,4,12,13,6,15,4,1,13,6,0,6,3,15,13,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"7\", \"15\"], \"clip_start\": 68.0, \"clip_end\": 72.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,12,7,4,4,9,9,7,4,1,7,3,8,2,6,6,8,12,4,0,13,2,0,3,5,10,14,10,0,0,0,9,5,12,14,7,5,7,14,5,4,9,5,11,11,9,0,2,9,6,1,15,1,7,6,5,6,11,5,9,9,12,5,13,10,0,9,14,8,7,15,3,3,8,9,7,11,0,13,3,14,14,11,15,5,14,4,3,11,3,6,4,14,15,9,10,12,15,8,14,0,3,1,9,1,5,10,11,0,5,9,5,4,12,13,6,15,4,1,13,6,0,6,3,15,13,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"0\", \"9\", \"14\", \"8\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,12,7,4,4,9,9,7,4,1,7,3,8,2,6,6,8,12,4,0,13,2,0,3,5,10,14,10,0,0,0,9,5,12,14,7,5,7,14,5,4,9,5,11,11,9,0,2,9,6,1,15,1,7,6,5,6,11,5,9,9,12,5,13,10,0,9,14,8,7,15,3,3,8,9,7,11,0,13,3,14,14,11,15,5,14,4,3,11,3,6,4,14,15,9,10,12,15,8,14,0,3,1,9,1,5,10,11,0,5,9,5,4,12,13,6,15,4,1,13,6,0,6,3,15,13,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"2\", \"6\", \"6\", \"8\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,12,7,4,4,9,9,7,4,1,7,3,8,2,6,6,8,12,4,0,13,2,0,3,5,10,14,10,0,0,0,9,5,12,14,7,5,7,14,5,4,9,5,11,11,9,0,2,9,6,1,15,1,7,6,5,6,11,5,9,9,12,5,13,10,0,9,14,8,7,15,3,3,8,9,7,11,0,13,3,14,14,11,15,5,14,4,3,11,3,6,4,14,15,9,10,12,15,8,14,0,3,1,9,1,5,10,11,0,5,9,5,4,12,13,6,15,4,1,13,6,0,6,3,15,13,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"5\", \"9\", \"5\", \"4\", \"12\"], \"clip_start\": 109.0, \"clip_end\": 115.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,7,12,7,4,4,9,9,7,4,1,7,3,8,2,6,6,8,12,4,0,13,2,0,3,5,10,14,10,0,0,0,9,5,12,14,7,5,7,14,5,4,9,5,11,11,9,0,2,9,6,1,15,1,7,6,5,6,11,5,9,9,12,5,13,10,0,9,14,8,7,15,3,3,8,9,7,11,0,13,3,14,14,11,15,5,14,4,3,11,3,6,4,14,15,9,10,12,15,8,14,0,3,1,9,1,5,10,11,0,5,9,5,4,12,13,6,15,4,1,13,6,0,6,3,15,13,2", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"14\", \"15\", \"3\", \"9\", \"8\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,8,1,5,11,0,14,15,3,9,8,12,15,9,3,3,4,12,15,8,5,13,13,8,14,14,9,15,9,1,10,8,5,3,13,4,7,6,3,5,8,13,13,0,14,15,5,0,1,3,4,5,5,0,5,13,4,6,12,0,4,15,6,1,4,15,5,3,7,10,12,11,14,15,0,3,8,2,12,8,13,4,15,3,2,14,12,7,2,15,11,8,4,9,15,6,14,13,8,7,9,13,14,8,8,5,2,11,1,12,12,0,7,9,12,4,1,5,4,0,7,8,1,14,9,15,13", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 75.0, \"clip_end\": 81.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,8,1,5,11,0,14,15,3,9,8,12,15,9,3,3,4,12,15,8,5,13,13,8,14,14,9,15,9,1,10,8,5,3,13,4,7,6,3,5,8,13,13,0,14,15,5,0,1,3,4,5,5,0,5,13,4,6,12,0,4,15,6,1,4,15,5,3,7,10,12,11,14,15,0,3,8,2,12,8,13,4,15,3,2,14,12,7,2,15,11,8,4,9,15,6,14,13,8,7,9,13,14,8,8,5,2,11,1,12,12,0,7,9,12,4,1,5,4,0,7,8,1,14,9,15,13", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"14\", \"15\", \"3\", \"9\", \"8\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,8,1,5,11,0,14,15,3,9,8,12,15,9,3,3,4,12,15,8,5,13,13,8,14,14,9,15,9,1,10,8,5,3,13,4,7,6,3,5,8,13,13,0,14,15,5,0,1,3,4,5,5,0,5,13,4,6,12,0,4,15,6,1,4,15,5,3,7,10,12,11,14,15,0,3,8,2,12,8,13,4,15,3,2,14,12,7,2,15,11,8,4,9,15,6,14,13,8,7,9,13,14,8,8,5,2,11,1,12,12,0,7,9,12,4,1,5,4,0,7,8,1,14,9,15,13", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"15\", \"0\", \"3\", \"8\"], \"clip_start\": 72.0, \"clip_end\": 78.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,8,1,5,11,0,14,15,3,9,8,12,15,9,3,3,4,12,15,8,5,13,13,8,14,14,9,15,9,1,10,8,5,3,13,4,7,6,3,5,8,13,13,0,14,15,5,0,1,3,4,5,5,0,5,13,4,6,12,0,4,15,6,1,4,15,5,3,7,10,12,11,14,15,0,3,8,2,12,8,13,4,15,3,2,14,12,7,2,15,11,8,4,9,15,6,14,13,8,7,9,13,14,8,8,5,2,11,1,12,12,0,7,9,12,4,1,5,4,0,7,8,1,14,9,15,13", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"8\", \"13\", \"4\", \"15\", \"3\"], \"clip_start\": 79.0, \"clip_end\": 85.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,8,1,5,11,0,14,15,3,9,8,12,15,9,3,3,4,12,15,8,5,13,13,8,14,14,9,15,9,1,10,8,5,3,13,4,7,6,3,5,8,13,13,0,14,15,5,0,1,3,4,5,5,0,5,13,4,6,12,0,4,15,6,1,4,15,5,3,7,10,12,11,14,15,0,3,8,2,12,8,13,4,15,3,2,14,12,7,2,15,11,8,4,9,15,6,14,13,8,7,9,13,14,8,8,5,2,11,1,12,12,0,7,9,12,4,1,5,4,0,7,8,1,14,9,15,13", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"6\", \"1\", \"4\", \"15\"], \"clip_start\": 61.0, \"clip_end\": 67.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,8,1,5,11,0,14,15,3,9,8,12,15,9,3,3,4,12,15,8,5,13,13,8,14,14,9,15,9,1,10,8,5,3,13,4,7,6,3,5,8,13,13,0,14,15,5,0,1,3,4,5,5,0,5,13,4,6,12,0,4,15,6,1,4,15,5,3,7,10,12,11,14,15,0,3,8,2,12,8,13,4,15,3,2,14,12,7,2,15,11,8,4,9,15,6,14,13,8,7,9,13,14,8,8,5,2,11,1,12,12,0,7,9,12,4,1,5,4,0,7,8,1,14,9,15,13", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"1\", \"5\"], \"clip_start\": 115.0, \"clip_end\": 119.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,8,1,5,11,0,14,15,3,9,8,12,15,9,3,3,4,12,15,8,5,13,13,8,14,14,9,15,9,1,10,8,5,3,13,4,7,6,3,5,8,13,13,0,14,15,5,0,1,3,4,5,5,0,5,13,4,6,12,0,4,15,6,1,4,15,5,3,7,10,12,11,14,15,0,3,8,2,12,8,13,4,15,3,2,14,12,7,2,15,11,8,4,9,15,6,14,13,8,7,9,13,14,8,8,5,2,11,1,12,12,0,7,9,12,4,1,5,4,0,7,8,1,14,9,15,13", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"14\", \"9\", \"15\", \"13\"], \"clip_start\": 122.0, \"clip_end\": 128.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,8,1,5,11,0,14,15,3,9,8,12,15,9,3,3,4,12,15,8,5,13,13,8,14,14,9,15,9,1,10,8,5,3,13,4,7,6,3,5,8,13,13,0,14,15,5,0,1,3,4,5,5,0,5,13,4,6,12,0,4,15,6,1,4,15,5,3,7,10,12,11,14,15,0,3,8,2,12,8,13,4,15,3,2,14,12,7,2,15,11,8,4,9,15,6,14,13,8,7,9,13,14,8,8,5,2,11,1,12,12,0,7,9,12,4,1,5,4,0,7,8,1,14,9,15,13", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"3\", \"4\"], \"clip_start\": 48.0, \"clip_end\": 52.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,8,1,5,11,0,14,15,3,9,8,12,15,9,3,3,4,12,15,8,5,13,13,8,14,14,9,15,9,1,10,8,5,3,13,4,7,6,3,5,8,13,13,0,14,15,5,0,1,3,4,5,5,0,5,13,4,6,12,0,4,15,6,1,4,15,5,3,7,10,12,11,14,15,0,3,8,2,12,8,13,4,15,3,2,14,12,7,2,15,11,8,4,9,15,6,14,13,8,7,9,13,14,8,8,5,2,11,1,12,12,0,7,9,12,4,1,5,4,0,7,8,1,14,9,15,13", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 125.0, \"clip_end\": 128.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,8,1,5,11,0,14,15,3,9,8,12,15,9,3,3,4,12,15,8,5,13,13,8,14,14,9,15,9,1,10,8,5,3,13,4,7,6,3,5,8,13,13,0,14,15,5,0,1,3,4,5,5,0,5,13,4,6,12,0,4,15,6,1,4,15,5,3,7,10,12,11,14,15,0,3,8,2,12,8,13,4,15,3,2,14,12,7,2,15,11,8,4,9,15,6,14,13,8,7,9,13,14,8,8,5,2,11,1,12,12,0,7,9,12,4,1,5,4,0,7,8,1,14,9,15,13", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"9\", \"15\", \"6\"], \"clip_start\": 92.0, \"clip_end\": 97.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,8,1,5,11,0,14,15,3,9,8,12,15,9,3,3,4,12,15,8,5,13,13,8,14,14,9,15,9,1,10,8,5,3,13,4,7,6,3,5,8,13,13,0,14,15,5,0,1,3,4,5,5,0,5,13,4,6,12,0,4,15,6,1,4,15,5,3,7,10,12,11,14,15,0,3,8,2,12,8,13,4,15,3,2,14,12,7,2,15,11,8,4,9,15,6,14,13,8,7,9,13,14,8,8,5,2,11,1,12,12,0,7,9,12,4,1,5,4,0,7,8,1,14,9,15,13", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"1\", \"5\"], \"clip_start\": 115.0, \"clip_end\": 119.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,8,1,5,11,0,14,15,3,9,8,12,15,9,3,3,4,12,15,8,5,13,13,8,14,14,9,15,9,1,10,8,5,3,13,4,7,6,3,5,8,13,13,0,14,15,5,0,1,3,4,5,5,0,5,13,4,6,12,0,4,15,6,1,4,15,5,3,7,10,12,11,14,15,0,3,8,2,12,8,13,4,15,3,2,14,12,7,2,15,11,8,4,9,15,6,14,13,8,7,9,13,14,8,8,5,2,11,1,12,12,0,7,9,12,4,1,5,4,0,7,8,1,14,9,15,13", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"14\", \"12\", \"7\"], \"clip_start\": 84.0, \"clip_end\": 89.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,8,1,5,11,0,14,15,3,9,8,12,15,9,3,3,4,12,15,8,5,13,13,8,14,14,9,15,9,1,10,8,5,3,13,4,7,6,3,5,8,13,13,0,14,15,5,0,1,3,4,5,5,0,5,13,4,6,12,0,4,15,6,1,4,15,5,3,7,10,12,11,14,15,0,3,8,2,12,8,13,4,15,3,2,14,12,7,2,15,11,8,4,9,15,6,14,13,8,7,9,13,14,8,8,5,2,11,1,12,12,0,7,9,12,4,1,5,4,0,7,8,1,14,9,15,13", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,8,1,5,11,0,14,15,3,9,8,12,15,9,3,3,4,12,15,8,5,13,13,8,14,14,9,15,9,1,10,8,5,3,13,4,7,6,3,5,8,13,13,0,14,15,5,0,1,3,4,5,5,0,5,13,4,6,12,0,4,15,6,1,4,15,5,3,7,10,12,11,14,15,0,3,8,2,12,8,13,4,15,3,2,14,12,7,2,15,11,8,4,9,15,6,14,13,8,7,9,13,14,8,8,5,2,11,1,12,12,0,7,9,12,4,1,5,4,0,7,8,1,14,9,15,13", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"8\", \"12\"], \"clip_start\": 9.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,8,1,5,11,0,14,15,3,9,8,12,15,9,3,3,4,12,15,8,5,13,13,8,14,14,9,15,9,1,10,8,5,3,13,4,7,6,3,5,8,13,13,0,14,15,5,0,1,3,4,5,5,0,5,13,4,6,12,0,4,15,6,1,4,15,5,3,7,10,12,11,14,15,0,3,8,2,12,8,13,4,15,3,2,14,12,7,2,15,11,8,4,9,15,6,14,13,8,7,9,13,14,8,8,5,2,11,1,12,12,0,7,9,12,4,1,5,4,0,7,8,1,14,9,15,13", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"8\", \"4\", \"9\", \"15\"], \"clip_start\": 91.0, \"clip_end\": 96.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,8,1,5,11,0,14,15,3,9,8,12,15,9,3,3,4,12,15,8,5,13,13,8,14,14,9,15,9,1,10,8,5,3,13,4,7,6,3,5,8,13,13,0,14,15,5,0,1,3,4,5,5,0,5,13,4,6,12,0,4,15,6,1,4,15,5,3,7,10,12,11,14,15,0,3,8,2,12,8,13,4,15,3,2,14,12,7,2,15,11,8,4,9,15,6,14,13,8,7,9,13,14,8,8,5,2,11,1,12,12,0,7,9,12,4,1,5,4,0,7,8,1,14,9,15,13", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"15\", \"13\", \"7\", \"8\", \"15\"], \"clip_start\": 104.0, \"clip_end\": 110.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,13,1,12,8,2,0,14,2,0,4,12,5,2,5,0,4,4,4,1,7,4,15,0,3,14,9,9,6,13,15,5,11,15,14,10,10,14,4,8,12,7,5,0,1,6,10,4,11,15,5,1,6,13,9,4,8,5,1,8,9,15,14,14,7,1,0,9,8,3,11,9,5,4,3,4,15,12,13,15,6,14,10,1,8,6,10,13,9,10,0,12,9,4,15,8,3,9,14,7,4,15,4,13,15,13,7,8,15,9,0,7,14,9,1,2,15,15,11,10,14,7,4,11,13,11,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"0\"], \"clip_start\": 22.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,13,1,12,8,2,0,14,2,0,4,12,5,2,5,0,4,4,4,1,7,4,15,0,3,14,9,9,6,13,15,5,11,15,14,10,10,14,4,8,12,7,5,0,1,6,10,4,11,15,5,1,6,13,9,4,8,5,1,8,9,15,14,14,7,1,0,9,8,3,11,9,5,4,3,4,15,12,13,15,6,14,10,1,8,6,10,13,9,10,0,12,9,4,15,8,3,9,14,7,4,15,4,13,15,13,7,8,15,9,0,7,14,9,1,2,15,15,11,10,14,7,4,11,13,11,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"8\", \"15\", \"9\"], \"clip_start\": 106.0, \"clip_end\": 111.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,13,1,12,8,2,0,14,2,0,4,12,5,2,5,0,4,4,4,1,7,4,15,0,3,14,9,9,6,13,15,5,11,15,14,10,10,14,4,8,12,7,5,0,1,6,10,4,11,15,5,1,6,13,9,4,8,5,1,8,9,15,14,14,7,1,0,9,8,3,11,9,5,4,3,4,15,12,13,15,6,14,10,1,8,6,10,13,9,10,0,12,9,4,15,8,3,9,14,7,4,15,4,13,15,13,7,8,15,9,0,7,14,9,1,2,15,15,11,10,14,7,4,11,13,11,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"9\", \"10\", \"0\"], \"clip_start\": 88.0, \"clip_end\": 92.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,13,1,12,8,2,0,14,2,0,4,12,5,2,5,0,4,4,4,1,7,4,15,0,3,14,9,9,6,13,15,5,11,15,14,10,10,14,4,8,12,7,5,0,1,6,10,4,11,15,5,1,6,13,9,4,8,5,1,8,9,15,14,14,7,1,0,9,8,3,11,9,5,4,3,4,15,12,13,15,6,14,10,1,8,6,10,13,9,10,0,12,9,4,15,8,3,9,14,7,4,15,4,13,15,13,7,8,15,9,0,7,14,9,1,2,15,15,11,10,14,7,4,11,13,11,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 17.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,13,1,12,8,2,0,14,2,0,4,12,5,2,5,0,4,4,4,1,7,4,15,0,3,14,9,9,6,13,15,5,11,15,14,10,10,14,4,8,12,7,5,0,1,6,10,4,11,15,5,1,6,13,9,4,8,5,1,8,9,15,14,14,7,1,0,9,8,3,11,9,5,4,3,4,15,12,13,15,6,14,10,1,8,6,10,13,9,10,0,12,9,4,15,8,3,9,14,7,4,15,4,13,15,13,7,8,15,9,0,7,14,9,1,2,15,15,11,10,14,7,4,11,13,11,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"8\", \"12\", \"7\", \"5\"], \"clip_start\": 38.0, \"clip_end\": 44.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,13,1,12,8,2,0,14,2,0,4,12,5,2,5,0,4,4,4,1,7,4,15,0,3,14,9,9,6,13,15,5,11,15,14,10,10,14,4,8,12,7,5,0,1,6,10,4,11,15,5,1,6,13,9,4,8,5,1,8,9,15,14,14,7,1,0,9,8,3,11,9,5,4,3,4,15,12,13,15,6,14,10,1,8,6,10,13,9,10,0,12,9,4,15,8,3,9,14,7,4,15,4,13,15,13,7,8,15,9,0,7,14,9,1,2,15,15,11,10,14,7,4,11,13,11,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"10\", \"1\"], \"clip_start\": 81.0, \"clip_end\": 85.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,13,1,12,8,2,0,14,2,0,4,12,5,2,5,0,4,4,4,1,7,4,15,0,3,14,9,9,6,13,15,5,11,15,14,10,10,14,4,8,12,7,5,0,1,6,10,4,11,15,5,1,6,13,9,4,8,5,1,8,9,15,14,14,7,1,0,9,8,3,11,9,5,4,3,4,15,12,13,15,6,14,10,1,8,6,10,13,9,10,0,12,9,4,15,8,3,9,14,7,4,15,4,13,15,13,7,8,15,9,0,7,14,9,1,2,15,15,11,10,14,7,4,11,13,11,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"4\", \"8\", \"6\", \"0\"], \"clip_start\": 110.0, \"clip_end\": 116.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,13,1,12,8,2,0,14,2,0,4,12,5,2,5,0,4,4,4,1,7,4,15,0,3,14,9,9,6,13,15,5,11,15,14,10,10,14,4,8,12,7,5,0,1,6,10,4,11,15,5,1,6,13,9,4,8,5,1,8,9,15,14,14,7,1,0,9,8,3,11,9,5,4,3,4,15,12,13,15,6,14,10,1,8,6,10,13,9,10,0,12,9,4,15,8,3,9,14,7,4,15,4,13,15,13,7,8,15,9,0,7,14,9,1,2,15,15,11,10,14,7,4,11,13,11,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"7\"], \"clip_start\": 23.0, \"clip_end\": 26.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q8_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,13,1,12,8,2,0,14,2,0,4,12,5,2,5,0,4,4,4,1,7,4,15,0,3,14,9,9,6,13,15,5,11,15,14,10,10,14,4,8,12,7,5,0,1,6,10,4,11,15,5,1,6,13,9,4,8,5,1,8,9,15,14,14,7,1,0,9,8,3,11,9,5,4,3,4,15,12,13,15,6,14,10,1,8,6,10,13,9,10,0,12,9,4,15,8,3,9,14,7,4,15,4,13,15,13,7,8,15,9,0,7,14,9,1,2,15,15,11,10,14,7,4,11,13,11,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\", \"15\"], \"clip_start\": 41.0, \"clip_end\": 45.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,13,1,12,8,2,0,14,2,0,4,12,5,2,5,0,4,4,4,1,7,4,15,0,3,14,9,9,6,13,15,5,11,15,14,10,10,14,4,8,12,7,5,0,1,6,10,4,11,15,5,1,6,13,9,4,8,5,1,8,9,15,14,14,7,1,0,9,8,3,11,9,5,4,3,4,15,12,13,15,6,14,10,1,8,6,10,13,9,10,0,12,9,4,15,8,3,9,14,7,4,15,4,13,15,13,7,8,15,9,0,7,14,9,1,2,15,15,11,10,14,7,4,11,13,11,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"1\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,13,1,12,8,2,0,14,2,0,4,12,5,2,5,0,4,4,4,1,7,4,15,0,3,14,9,9,6,13,15,5,11,15,14,10,10,14,4,8,12,7,5,0,1,6,10,4,11,15,5,1,6,13,9,4,8,5,1,8,9,15,14,14,7,1,0,9,8,3,11,9,5,4,3,4,15,12,13,15,6,14,10,1,8,6,10,13,9,10,0,12,9,4,15,8,3,9,14,7,4,15,4,13,15,13,7,8,15,9,0,7,14,9,1,2,15,15,11,10,14,7,4,11,13,11,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"12\", \"13\", \"15\", \"6\"], \"clip_start\": 76.0, \"clip_end\": 82.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q11_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,13,1,12,8,2,0,14,2,0,4,12,5,2,5,0,4,4,4,1,7,4,15,0,3,14,9,9,6,13,15,5,11,15,14,10,10,14,4,8,12,7,5,0,1,6,10,4,11,15,5,1,6,13,9,4,8,5,1,8,9,15,14,14,7,1,0,9,8,3,11,9,5,4,3,4,15,12,13,15,6,14,10,1,8,6,10,13,9,10,0,12,9,4,15,8,3,9,14,7,4,15,4,13,15,13,7,8,15,9,0,7,14,9,1,2,15,15,11,10,14,7,4,11,13,11,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"8\", \"2\", \"5\"], \"clip_start\": 109.0, \"clip_end\": 115.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,13,1,12,8,2,0,14,2,0,4,12,5,2,5,0,4,4,4,1,7,4,15,0,3,14,9,9,6,13,15,5,11,15,14,10,10,14,4,8,12,7,5,0,1,6,10,4,11,15,5,1,6,13,9,4,8,5,1,8,9,15,14,14,7,1,0,9,8,3,11,9,5,4,3,4,15,12,13,15,6,14,10,1,8,6,10,13,9,10,0,12,9,4,15,8,3,9,14,7,4,15,4,13,15,13,7,8,15,9,0,7,14,9,1,2,15,15,11,10,14,7,4,11,13,11,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"6\", \"14\", \"10\"], \"clip_start\": 80.0, \"clip_end\": 84.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,13,1,12,8,2,0,14,2,0,4,12,5,2,5,0,4,4,4,1,7,4,15,0,3,14,9,9,6,13,15,5,11,15,14,10,10,14,4,8,12,7,5,0,1,6,10,4,11,15,5,1,6,13,9,4,8,5,1,8,9,15,14,14,7,1,0,9,8,3,11,9,5,4,3,4,15,12,13,15,6,14,10,1,8,6,10,13,9,10,0,12,9,4,15,8,3,9,14,7,4,15,4,13,15,13,7,8,15,9,0,7,14,9,1,2,15,15,11,10,14,7,4,11,13,11,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"4\", \"12\", \"5\", \"2\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q14_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,13,1,12,8,2,0,14,2,0,4,12,5,2,5,0,4,4,4,1,7,4,15,0,3,14,9,9,6,13,15,5,11,15,14,10,10,14,4,8,12,7,5,0,1,6,10,4,11,15,5,1,6,13,9,4,8,5,1,8,9,15,14,14,7,1,0,9,8,3,11,9,5,4,3,4,15,12,13,15,6,14,10,1,8,6,10,13,9,10,0,12,9,4,15,8,3,9,14,7,4,15,4,13,15,13,7,8,15,9,0,7,14,9,1,2,15,15,11,10,14,7,4,11,13,11,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"11\", \"12\"], \"clip_start\": 33.0, \"clip_end\": 38.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,12,13,1,12,8,2,0,14,2,0,4,12,5,2,5,0,4,4,4,1,7,4,15,0,3,14,9,9,6,13,15,5,11,15,14,10,10,14,4,8,12,7,5,0,1,6,10,4,11,15,5,1,6,13,9,4,8,5,1,8,9,15,14,14,7,1,0,9,8,3,11,9,5,4,3,4,15,12,13,15,6,14,10,1,8,6,10,13,9,10,0,12,9,4,15,8,3,9,14,7,4,15,4,13,15,13,7,8,15,9,0,7,14,9,1,2,15,15,11,10,14,7,4,11,13,11,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"15\", \"6\", \"13\"], \"clip_start\": 112.0, \"clip_end\": 117.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,10,14,4,13,14,0,6,1,15,5,12,3,14,12,4,5,3,0,0,2,15,7,14,10,2,10,11,2,13,8,2,9,14,10,0,7,0,3,9,11,0,10,14,9,13,3,8,6,0,8,7,4,10,5,2,3,6,5,10,1,0,6,10,10,11,5,14,6,1,5,3,11,8,14,6,3,10,5,6,8,14,11,2,15,4,11,9,0,3,6,3,9,14,10,12,4,6,2,13,2,3,0,3,7,8,6,15,1,15,5,6,5,15,6,13,14,15,9,3,9,14,14,8,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"2\", \"13\", \"2\"], \"clip_start\": 97.0, \"clip_end\": 102.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,10,14,4,13,14,0,6,1,15,5,12,3,14,12,4,5,3,0,0,2,15,7,14,10,2,10,11,2,13,8,2,9,14,10,0,7,0,3,9,11,0,10,14,9,13,3,8,6,0,8,7,4,10,5,2,3,6,5,10,1,0,6,10,10,11,5,14,6,1,5,3,11,8,14,6,3,10,5,6,8,14,11,2,15,4,11,9,0,3,6,3,9,14,10,12,4,6,2,13,2,3,0,3,7,8,6,15,1,15,5,6,5,15,6,13,14,15,9,3,9,14,14,8,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"2\", \"15\", \"7\"], \"clip_start\": 20.0, \"clip_end\": 24.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,10,14,4,13,14,0,6,1,15,5,12,3,14,12,4,5,3,0,0,2,15,7,14,10,2,10,11,2,13,8,2,9,14,10,0,7,0,3,9,11,0,10,14,9,13,3,8,6,0,8,7,4,10,5,2,3,6,5,10,1,0,6,10,10,11,5,14,6,1,5,3,11,8,14,6,3,10,5,6,8,14,11,2,15,4,11,9,0,3,6,3,9,14,10,12,4,6,2,13,2,3,0,3,7,8,6,15,1,15,5,6,5,15,6,13,14,15,9,3,9,14,14,8,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 34.0, \"clip_end\": 37.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,10,14,4,13,14,0,6,1,15,5,12,3,14,12,4,5,3,0,0,2,15,7,14,10,2,10,11,2,13,8,2,9,14,10,0,7,0,3,9,11,0,10,14,9,13,3,8,6,0,8,7,4,10,5,2,3,6,5,10,1,0,6,10,10,11,5,14,6,1,5,3,11,8,14,6,3,10,5,6,8,14,11,2,15,4,11,9,0,3,6,3,9,14,10,12,4,6,2,13,2,3,0,3,7,8,6,15,1,15,5,6,5,15,6,13,14,15,9,3,9,14,14,8,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"14\"], \"clip_start\": 1.0, \"clip_end\": 4.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,10,14,4,13,14,0,6,1,15,5,12,3,14,12,4,5,3,0,0,2,15,7,14,10,2,10,11,2,13,8,2,9,14,10,0,7,0,3,9,11,0,10,14,9,13,3,8,6,0,8,7,4,10,5,2,3,6,5,10,1,0,6,10,10,11,5,14,6,1,5,3,11,8,14,6,3,10,5,6,8,14,11,2,15,4,11,9,0,3,6,3,9,14,10,12,4,6,2,13,2,3,0,3,7,8,6,15,1,15,5,6,5,15,6,13,14,15,9,3,9,14,14,8,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"11\", \"6\", \"1\"], \"clip_start\": 115.0, \"clip_end\": 120.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q5_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,10,14,4,13,14,0,6,1,15,5,12,3,14,12,4,5,3,0,0,2,15,7,14,10,2,10,11,2,13,8,2,9,14,10,0,7,0,3,9,11,0,10,14,9,13,3,8,6,0,8,7,4,10,5,2,3,6,5,10,1,0,6,10,10,11,5,14,6,1,5,3,11,8,14,6,3,10,5,6,8,14,11,2,15,4,11,9,0,3,6,3,9,14,10,12,4,6,2,13,2,3,0,3,7,8,6,15,1,15,5,6,5,15,6,13,14,15,9,3,9,14,14,8,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"14\", \"14\"], \"clip_start\": 120.0, \"clip_end\": 124.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,10,14,4,13,14,0,6,1,15,5,12,3,14,12,4,5,3,0,0,2,15,7,14,10,2,10,11,2,13,8,2,9,14,10,0,7,0,3,9,11,0,10,14,9,13,3,8,6,0,8,7,4,10,5,2,3,6,5,10,1,0,6,10,10,11,5,14,6,1,5,3,11,8,14,6,3,10,5,6,8,14,11,2,15,4,11,9,0,3,6,3,9,14,10,12,4,6,2,13,2,3,0,3,7,8,6,15,1,15,5,6,5,15,6,13,14,15,9,3,9,14,14,8,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"15\", \"6\", \"13\"], \"clip_start\": 112.0, \"clip_end\": 117.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q7_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,10,14,4,13,14,0,6,1,15,5,12,3,14,12,4,5,3,0,0,2,15,7,14,10,2,10,11,2,13,8,2,9,14,10,0,7,0,3,9,11,0,10,14,9,13,3,8,6,0,8,7,4,10,5,2,3,6,5,10,1,0,6,10,10,11,5,14,6,1,5,3,11,8,14,6,3,10,5,6,8,14,11,2,15,4,11,9,0,3,6,3,9,14,10,12,4,6,2,13,2,3,0,3,7,8,6,15,1,15,5,6,5,15,6,13,14,15,9,3,9,14,14,8,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"8\", \"14\", \"6\"], \"clip_start\": 72.0, \"clip_end\": 77.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,10,14,4,13,14,0,6,1,15,5,12,3,14,12,4,5,3,0,0,2,15,7,14,10,2,10,11,2,13,8,2,9,14,10,0,7,0,3,9,11,0,10,14,9,13,3,8,6,0,8,7,4,10,5,2,3,6,5,10,1,0,6,10,10,11,5,14,6,1,5,3,11,8,14,6,3,10,5,6,8,14,11,2,15,4,11,9,0,3,6,3,9,14,10,12,4,6,2,13,2,3,0,3,7,8,6,15,1,15,5,6,5,15,6,13,14,15,9,3,9,14,14,8,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"8\", \"14\", \"6\", \"3\", \"10\"], \"clip_start\": 73.0, \"clip_end\": 79.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,10,14,4,13,14,0,6,1,15,5,12,3,14,12,4,5,3,0,0,2,15,7,14,10,2,10,11,2,13,8,2,9,14,10,0,7,0,3,9,11,0,10,14,9,13,3,8,6,0,8,7,4,10,5,2,3,6,5,10,1,0,6,10,10,11,5,14,6,1,5,3,11,8,14,6,3,10,5,6,8,14,11,2,15,4,11,9,0,3,6,3,9,14,10,12,4,6,2,13,2,3,0,3,7,8,6,15,1,15,5,6,5,15,6,13,14,15,9,3,9,14,14,8,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"6\", \"2\", \"13\", \"2\"], \"clip_start\": 96.0, \"clip_end\": 102.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,10,14,4,13,14,0,6,1,15,5,12,3,14,12,4,5,3,0,0,2,15,7,14,10,2,10,11,2,13,8,2,9,14,10,0,7,0,3,9,11,0,10,14,9,13,3,8,6,0,8,7,4,10,5,2,3,6,5,10,1,0,6,10,10,11,5,14,6,1,5,3,11,8,14,6,3,10,5,6,8,14,11,2,15,4,11,9,0,3,6,3,9,14,10,12,4,6,2,13,2,3,0,3,7,8,6,15,1,15,5,6,5,15,6,13,14,15,9,3,9,14,14,8,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"12\", \"4\", \"5\"], \"clip_start\": 13.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,10,14,4,13,14,0,6,1,15,5,12,3,14,12,4,5,3,0,0,2,15,7,14,10,2,10,11,2,13,8,2,9,14,10,0,7,0,3,9,11,0,10,14,9,13,3,8,6,0,8,7,4,10,5,2,3,6,5,10,1,0,6,10,10,11,5,14,6,1,5,3,11,8,14,6,3,10,5,6,8,14,11,2,15,4,11,9,0,3,6,3,9,14,10,12,4,6,2,13,2,3,0,3,7,8,6,15,1,15,5,6,5,15,6,13,14,15,9,3,9,14,14,8,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"3\", \"5\"], \"clip_start\": 114.0, \"clip_end\": 118.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,10,14,4,13,14,0,6,1,15,5,12,3,14,12,4,5,3,0,0,2,15,7,14,10,2,10,11,2,13,8,2,9,14,10,0,7,0,3,9,11,0,10,14,9,13,3,8,6,0,8,7,4,10,5,2,3,6,5,10,1,0,6,10,10,11,5,14,6,1,5,3,11,8,14,6,3,10,5,6,8,14,11,2,15,4,11,9,0,3,6,3,9,14,10,12,4,6,2,13,2,3,0,3,7,8,6,15,1,15,5,6,5,15,6,13,14,15,9,3,9,14,14,8,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"10\", \"11\", \"0\", \"0\"], \"clip_start\": 22.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,10,14,4,13,14,0,6,1,15,5,12,3,14,12,4,5,3,0,0,2,15,7,14,10,2,10,11,2,13,8,2,9,14,10,0,7,0,3,9,11,0,10,14,9,13,3,8,6,0,8,7,4,10,5,2,3,6,5,10,1,0,6,10,10,11,5,14,6,1,5,3,11,8,14,6,3,10,5,6,8,14,11,2,15,4,11,9,0,3,6,3,9,14,10,12,4,6,2,13,2,3,0,3,7,8,6,15,1,15,5,6,5,15,6,13,14,15,9,3,9,14,14,8,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"10\", \"12\"], \"clip_start\": 93.0, \"clip_end\": 97.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q14_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,10,14,4,13,14,0,6,1,15,5,12,3,14,12,4,5,3,0,0,2,15,7,14,10,2,10,11,2,13,8,2,9,14,10,0,7,0,3,9,11,0,10,14,9,13,3,8,6,0,8,7,4,10,5,2,3,6,5,10,1,0,6,10,10,11,5,14,6,1,5,3,11,8,14,6,3,10,5,6,8,14,11,2,15,4,11,9,0,3,6,3,9,14,10,12,4,6,2,13,2,3,0,3,7,8,6,15,1,15,5,6,5,15,6,13,14,15,9,3,9,14,14,8,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"10\", \"11\", \"2\", \"13\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,3,10,14,4,13,14,0,6,1,15,5,12,3,14,12,4,5,3,0,0,2,15,7,14,10,2,10,11,2,13,8,2,9,14,10,0,7,0,3,9,11,0,10,14,9,13,3,8,6,0,8,7,4,10,5,2,3,6,5,10,1,0,6,10,10,11,5,14,6,1,5,3,11,8,14,6,3,10,5,6,8,14,11,2,15,4,11,9,0,3,6,3,9,14,10,12,4,6,2,13,2,3,0,3,7,8,6,15,1,15,5,6,5,15,6,13,14,15,9,3,9,14,14,8,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"8\", \"14\"], \"clip_start\": 108.0, \"clip_end\": 112.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,7,7,10,13,11,5,9,15,9,10,7,7,6,15,9,0,14,6,0,7,2,8,8,8,14,5,3,6,9,12,3,11,9,11,0,0,7,13,4,7,8,6,3,3,8,9,2,8,5,14,6,0,9,12,6,5,11,7,3,10,10,8,6,8,13,14,10,9,11,10,10,0,7,2,9,5,8,8,1,4,3,12,8,6,3,5,13,3,14,4,4,0,6,14,12,15,13,0,12,13,12,3,5,5,6,9,0,14,15,8,14,1,9,8,8,10,15,15,9,11,5,5,15,8,9,1,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"13\", \"3\", \"14\", \"4\"], \"clip_start\": 86.0, \"clip_end\": 91.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,7,7,10,13,11,5,9,15,9,10,7,7,6,15,9,0,14,6,0,7,2,8,8,8,14,5,3,6,9,12,3,11,9,11,0,0,7,13,4,7,8,6,3,3,8,9,2,8,5,14,6,0,9,12,6,5,11,7,3,10,10,8,6,8,13,14,10,9,11,10,10,0,7,2,9,5,8,8,1,4,3,12,8,6,3,5,13,3,14,4,4,0,6,14,12,15,13,0,12,13,12,3,5,5,6,9,0,14,15,8,14,1,9,8,8,10,15,15,9,11,5,5,15,8,9,1,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"9\", \"5\", \"8\"], \"clip_start\": 73.0, \"clip_end\": 78.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,7,7,10,13,11,5,9,15,9,10,7,7,6,15,9,0,14,6,0,7,2,8,8,8,14,5,3,6,9,12,3,11,9,11,0,0,7,13,4,7,8,6,3,3,8,9,2,8,5,14,6,0,9,12,6,5,11,7,3,10,10,8,6,8,13,14,10,9,11,10,10,0,7,2,9,5,8,8,1,4,3,12,8,6,3,5,13,3,14,4,4,0,6,14,12,15,13,0,12,13,12,3,5,5,6,9,0,14,15,8,14,1,9,8,8,10,15,15,9,11,5,5,15,8,9,1,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"15\", \"9\", \"10\", \"7\", \"7\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,7,7,10,13,11,5,9,15,9,10,7,7,6,15,9,0,14,6,0,7,2,8,8,8,14,5,3,6,9,12,3,11,9,11,0,0,7,13,4,7,8,6,3,3,8,9,2,8,5,14,6,0,9,12,6,5,11,7,3,10,10,8,6,8,13,14,10,9,11,10,10,0,7,2,9,5,8,8,1,4,3,12,8,6,3,5,13,3,14,4,4,0,6,14,12,15,13,0,12,13,12,3,5,5,6,9,0,14,15,8,14,1,9,8,8,10,15,15,9,11,5,5,15,8,9,1,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"5\", \"5\"], \"clip_start\": 102.0, \"clip_end\": 105.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,7,7,10,13,11,5,9,15,9,10,7,7,6,15,9,0,14,6,0,7,2,8,8,8,14,5,3,6,9,12,3,11,9,11,0,0,7,13,4,7,8,6,3,3,8,9,2,8,5,14,6,0,9,12,6,5,11,7,3,10,10,8,6,8,13,14,10,9,11,10,10,0,7,2,9,5,8,8,1,4,3,12,8,6,3,5,13,3,14,4,4,0,6,14,12,15,13,0,12,13,12,3,5,5,6,9,0,14,15,8,14,1,9,8,8,10,15,15,9,11,5,5,15,8,9,1,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\", \"1\"], \"clip_start\": 124.0, \"clip_end\": 128.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q5_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,7,7,10,13,11,5,9,15,9,10,7,7,6,15,9,0,14,6,0,7,2,8,8,8,14,5,3,6,9,12,3,11,9,11,0,0,7,13,4,7,8,6,3,3,8,9,2,8,5,14,6,0,9,12,6,5,11,7,3,10,10,8,6,8,13,14,10,9,11,10,10,0,7,2,9,5,8,8,1,4,3,12,8,6,3,5,13,3,14,4,4,0,6,14,12,15,13,0,12,13,12,3,5,5,6,9,0,14,15,8,14,1,9,8,8,10,15,15,9,11,5,5,15,8,9,1,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"5\", \"7\", \"3\", \"13\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q6_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,7,7,10,13,11,5,9,15,9,10,7,7,6,15,9,0,14,6,0,7,2,8,8,8,14,5,3,6,9,12,3,11,9,11,0,0,7,13,4,7,8,6,3,3,8,9,2,8,5,14,6,0,9,12,6,5,11,7,3,10,10,8,6,8,13,14,10,9,11,10,10,0,7,2,9,5,8,8,1,4,3,12,8,6,3,5,13,3,14,4,4,0,6,14,12,15,13,0,12,13,12,3,5,5,6,9,0,14,15,8,14,1,9,8,8,10,15,15,9,11,5,5,15,8,9,1,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"15\", \"15\", \"9\", \"11\"], \"clip_start\": 116.0, \"clip_end\": 121.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,7,7,10,13,11,5,9,15,9,10,7,7,6,15,9,0,14,6,0,7,2,8,8,8,14,5,3,6,9,12,3,11,9,11,0,0,7,13,4,7,8,6,3,3,8,9,2,8,5,14,6,0,9,12,6,5,11,7,3,10,10,8,6,8,13,14,10,9,11,10,10,0,7,2,9,5,8,8,1,4,3,12,8,6,3,5,13,3,14,4,4,0,6,14,12,15,13,0,12,13,12,3,5,5,6,9,0,14,15,8,14,1,9,8,8,10,15,15,9,11,5,5,15,8,9,1,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"6\", \"0\", \"9\", \"12\", \"6\"], \"clip_start\": 50.0, \"clip_end\": 56.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q8_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,7,7,10,13,11,5,9,15,9,10,7,7,6,15,9,0,14,6,0,7,2,8,8,8,14,5,3,6,9,12,3,11,9,11,0,0,7,13,4,7,8,6,3,3,8,9,2,8,5,14,6,0,9,12,6,5,11,7,3,10,10,8,6,8,13,14,10,9,11,10,10,0,7,2,9,5,8,8,1,4,3,12,8,6,3,5,13,3,14,4,4,0,6,14,12,15,13,0,12,13,12,3,5,5,6,9,0,14,15,8,14,1,9,8,8,10,15,15,9,11,5,5,15,8,9,1,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"8\", \"14\"], \"clip_start\": 109.0, \"clip_end\": 112.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,7,7,10,13,11,5,9,15,9,10,7,7,6,15,9,0,14,6,0,7,2,8,8,8,14,5,3,6,9,12,3,11,9,11,0,0,7,13,4,7,8,6,3,3,8,9,2,8,5,14,6,0,9,12,6,5,11,7,3,10,10,8,6,8,13,14,10,9,11,10,10,0,7,2,9,5,8,8,1,4,3,12,8,6,3,5,13,3,14,4,4,0,6,14,12,15,13,0,12,13,12,3,5,5,6,9,0,14,15,8,14,1,9,8,8,10,15,15,9,11,5,5,15,8,9,1,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"0\", \"0\", \"7\", \"13\"], \"clip_start\": 34.0, \"clip_end\": 39.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q10_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,7,7,10,13,11,5,9,15,9,10,7,7,6,15,9,0,14,6,0,7,2,8,8,8,14,5,3,6,9,12,3,11,9,11,0,0,7,13,4,7,8,6,3,3,8,9,2,8,5,14,6,0,9,12,6,5,11,7,3,10,10,8,6,8,13,14,10,9,11,10,10,0,7,2,9,5,8,8,1,4,3,12,8,6,3,5,13,3,14,4,4,0,6,14,12,15,13,0,12,13,12,3,5,5,6,9,0,14,15,8,14,1,9,8,8,10,15,15,9,11,5,5,15,8,9,1,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"5\", \"11\"], \"clip_start\": 54.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q11_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,7,7,10,13,11,5,9,15,9,10,7,7,6,15,9,0,14,6,0,7,2,8,8,8,14,5,3,6,9,12,3,11,9,11,0,0,7,13,4,7,8,6,3,3,8,9,2,8,5,14,6,0,9,12,6,5,11,7,3,10,10,8,6,8,13,14,10,9,11,10,10,0,7,2,9,5,8,8,1,4,3,12,8,6,3,5,13,3,14,4,4,0,6,14,12,15,13,0,12,13,12,3,5,5,6,9,0,14,15,8,14,1,9,8,8,10,15,15,9,11,5,5,15,8,9,1,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"10\", \"5\", \"10\", \"7\"], \"clip_start\": 107.0, \"clip_end\": 113.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,7,7,10,13,11,5,9,15,9,10,7,7,6,15,9,0,14,6,0,7,2,8,8,8,14,5,3,6,9,12,3,11,9,11,0,0,7,13,4,7,8,6,3,3,8,9,2,8,5,14,6,0,9,12,6,5,11,7,3,10,10,8,6,8,13,14,10,9,11,10,10,0,7,2,9,5,8,8,1,4,3,12,8,6,3,5,13,3,14,4,4,0,6,14,12,15,13,0,12,13,12,3,5,5,6,9,0,14,15,8,14,1,9,8,8,10,15,15,9,11,5,5,15,8,9,1,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"15\", \"0\", \"0\", \"10\"], \"clip_start\": 30.0, \"clip_end\": 36.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,7,7,10,13,11,5,9,15,9,10,7,7,6,15,9,0,14,6,0,7,2,8,8,8,14,5,3,6,9,12,3,11,9,11,0,0,7,13,4,7,8,6,3,3,8,9,2,8,5,14,6,0,9,12,6,5,11,7,3,10,10,8,6,8,13,14,10,9,11,10,10,0,7,2,9,5,8,8,1,4,3,12,8,6,3,5,13,3,14,4,4,0,6,14,12,15,13,0,12,13,12,3,5,5,6,9,0,14,15,8,14,1,9,8,8,10,15,15,9,11,5,5,15,8,9,1,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"9\"], \"clip_start\": 43.0, \"clip_end\": 47.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,7,7,10,13,11,5,9,15,9,10,7,7,6,15,9,0,14,6,0,7,2,8,8,8,14,5,3,6,9,12,3,11,9,11,0,0,7,13,4,7,8,6,3,3,8,9,2,8,5,14,6,0,9,12,6,5,11,7,3,10,10,8,6,8,13,14,10,9,11,10,10,0,7,2,9,5,8,8,1,4,3,12,8,6,3,5,13,3,14,4,4,0,6,14,12,15,13,0,12,13,12,3,5,5,6,9,0,14,15,8,14,1,9,8,8,10,15,15,9,11,5,5,15,8,9,1,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"8\", \"5\", \"10\"], \"clip_start\": 30.0, \"clip_end\": 36.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q15_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,7,7,10,13,11,5,9,15,9,10,7,7,6,15,9,0,14,6,0,7,2,8,8,8,14,5,3,6,9,12,3,11,9,11,0,0,7,13,4,7,8,6,3,3,8,9,2,8,5,14,6,0,9,12,6,5,11,7,3,10,10,8,6,8,13,14,10,9,11,10,10,0,7,2,9,5,8,8,1,4,3,12,8,6,3,5,13,3,14,4,4,0,6,14,12,15,13,0,12,13,12,3,5,5,6,9,0,14,15,8,14,1,9,8,8,10,15,15,9,11,5,5,15,8,9,1,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"15\", \"7\"], \"clip_start\": 108.0, \"clip_end\": 111.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,15,0,1,15,8,4,7,10,2,9,2,1,0,1,12,13,1,14,5,12,13,15,9,6,10,0,3,6,14,9,5,1,11,15,4,0,4,14,8,7,1,6,7,11,3,15,4,3,7,6,4,2,12,10,8,14,7,7,3,1,9,1,15,1,12,9,10,3,1,2,12,10,15,0,4,13,15,8,14,0,11,10,15,3,9,2,4,8,12,7,12,6,8,15,6,7,2,15,14,5,9,0,1,5,12,13,4,1,15,7,9,12,4,0,9,5,5,12,6,3,1,12,6,12,13,10,4", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 39.0, \"clip_end\": 43.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,15,0,1,15,8,4,7,10,2,9,2,1,0,1,12,13,1,14,5,12,13,15,9,6,10,0,3,6,14,9,5,1,11,15,4,0,4,14,8,7,1,6,7,11,3,15,4,3,7,6,4,2,12,10,8,14,7,7,3,1,9,1,15,1,12,9,10,3,1,2,12,10,15,0,4,13,15,8,14,0,11,10,15,3,9,2,4,8,12,7,12,6,8,15,6,7,2,15,14,5,9,0,1,5,12,13,4,1,15,7,9,12,4,0,9,5,5,12,6,3,1,12,6,12,13,10,4", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"8\", \"15\"], \"clip_start\": 91.0, \"clip_end\": 95.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,15,0,1,15,8,4,7,10,2,9,2,1,0,1,12,13,1,14,5,12,13,15,9,6,10,0,3,6,14,9,5,1,11,15,4,0,4,14,8,7,1,6,7,11,3,15,4,3,7,6,4,2,12,10,8,14,7,7,3,1,9,1,15,1,12,9,10,3,1,2,12,10,15,0,4,13,15,8,14,0,11,10,15,3,9,2,4,8,12,7,12,6,8,15,6,7,2,15,14,5,9,0,1,5,12,13,4,1,15,7,9,12,4,0,9,5,5,12,6,3,1,12,6,12,13,10,4", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"7\", \"12\"], \"clip_start\": 88.0, \"clip_end\": 92.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,15,0,1,15,8,4,7,10,2,9,2,1,0,1,12,13,1,14,5,12,13,15,9,6,10,0,3,6,14,9,5,1,11,15,4,0,4,14,8,7,1,6,7,11,3,15,4,3,7,6,4,2,12,10,8,14,7,7,3,1,9,1,15,1,12,9,10,3,1,2,12,10,15,0,4,13,15,8,14,0,11,10,15,3,9,2,4,8,12,7,12,6,8,15,6,7,2,15,14,5,9,0,1,5,12,13,4,1,15,7,9,12,4,0,9,5,5,12,6,3,1,12,6,12,13,10,4", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"10\", \"15\", \"0\", \"4\"], \"clip_start\": 70.0, \"clip_end\": 76.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,15,0,1,15,8,4,7,10,2,9,2,1,0,1,12,13,1,14,5,12,13,15,9,6,10,0,3,6,14,9,5,1,11,15,4,0,4,14,8,7,1,6,7,11,3,15,4,3,7,6,4,2,12,10,8,14,7,7,3,1,9,1,15,1,12,9,10,3,1,2,12,10,15,0,4,13,15,8,14,0,11,10,15,3,9,2,4,8,12,7,12,6,8,15,6,7,2,15,14,5,9,0,1,5,12,13,4,1,15,7,9,12,4,0,9,5,5,12,6,3,1,12,6,12,13,10,4", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"12\", \"7\"], \"clip_start\": 87.0, \"clip_end\": 91.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,15,0,1,15,8,4,7,10,2,9,2,1,0,1,12,13,1,14,5,12,13,15,9,6,10,0,3,6,14,9,5,1,11,15,4,0,4,14,8,7,1,6,7,11,3,15,4,3,7,6,4,2,12,10,8,14,7,7,3,1,9,1,15,1,12,9,10,3,1,2,12,10,15,0,4,13,15,8,14,0,11,10,15,3,9,2,4,8,12,7,12,6,8,15,6,7,2,15,14,5,9,0,1,5,12,13,4,1,15,7,9,12,4,0,9,5,5,12,6,3,1,12,6,12,13,10,4", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"8\", \"15\", \"6\"], \"clip_start\": 92.0, \"clip_end\": 96.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,15,0,1,15,8,4,7,10,2,9,2,1,0,1,12,13,1,14,5,12,13,15,9,6,10,0,3,6,14,9,5,1,11,15,4,0,4,14,8,7,1,6,7,11,3,15,4,3,7,6,4,2,12,10,8,14,7,7,3,1,9,1,15,1,12,9,10,3,1,2,12,10,15,0,4,13,15,8,14,0,11,10,15,3,9,2,4,8,12,7,12,6,8,15,6,7,2,15,14,5,9,0,1,5,12,13,4,1,15,7,9,12,4,0,9,5,5,12,6,3,1,12,6,12,13,10,4", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"3\", \"6\", \"14\", \"9\", \"5\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,15,0,1,15,8,4,7,10,2,9,2,1,0,1,12,13,1,14,5,12,13,15,9,6,10,0,3,6,14,9,5,1,11,15,4,0,4,14,8,7,1,6,7,11,3,15,4,3,7,6,4,2,12,10,8,14,7,7,3,1,9,1,15,1,12,9,10,3,1,2,12,10,15,0,4,13,15,8,14,0,11,10,15,3,9,2,4,8,12,7,12,6,8,15,6,7,2,15,14,5,9,0,1,5,12,13,4,1,15,7,9,12,4,0,9,5,5,12,6,3,1,12,6,12,13,10,4", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"15\", \"8\", \"14\"], \"clip_start\": 76.0, \"clip_end\": 80.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,15,0,1,15,8,4,7,10,2,9,2,1,0,1,12,13,1,14,5,12,13,15,9,6,10,0,3,6,14,9,5,1,11,15,4,0,4,14,8,7,1,6,7,11,3,15,4,3,7,6,4,2,12,10,8,14,7,7,3,1,9,1,15,1,12,9,10,3,1,2,12,10,15,0,4,13,15,8,14,0,11,10,15,3,9,2,4,8,12,7,12,6,8,15,6,7,2,15,14,5,9,0,1,5,12,13,4,1,15,7,9,12,4,0,9,5,5,12,6,3,1,12,6,12,13,10,4", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"3\"], \"clip_start\": 60.0, \"clip_end\": 63.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,15,0,1,15,8,4,7,10,2,9,2,1,0,1,12,13,1,14,5,12,13,15,9,6,10,0,3,6,14,9,5,1,11,15,4,0,4,14,8,7,1,6,7,11,3,15,4,3,7,6,4,2,12,10,8,14,7,7,3,1,9,1,15,1,12,9,10,3,1,2,12,10,15,0,4,13,15,8,14,0,11,10,15,3,9,2,4,8,12,7,12,6,8,15,6,7,2,15,14,5,9,0,1,5,12,13,4,1,15,7,9,12,4,0,9,5,5,12,6,3,1,12,6,12,13,10,4", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\"], \"clip_start\": 54.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,15,0,1,15,8,4,7,10,2,9,2,1,0,1,12,13,1,14,5,12,13,15,9,6,10,0,3,6,14,9,5,1,11,15,4,0,4,14,8,7,1,6,7,11,3,15,4,3,7,6,4,2,12,10,8,14,7,7,3,1,9,1,15,1,12,9,10,3,1,2,12,10,15,0,4,13,15,8,14,0,11,10,15,3,9,2,4,8,12,7,12,6,8,15,6,7,2,15,14,5,9,0,1,5,12,13,4,1,15,7,9,12,4,0,9,5,5,12,6,3,1,12,6,12,13,10,4", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"11\"], \"clip_start\": 125.0, \"clip_end\": 128.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,15,0,1,15,8,4,7,10,2,9,2,1,0,1,12,13,1,14,5,12,13,15,9,6,10,0,3,6,14,9,5,1,11,15,4,0,4,14,8,7,1,6,7,11,3,15,4,3,7,6,4,2,12,10,8,14,7,7,3,1,9,1,15,1,12,9,10,3,1,2,12,10,15,0,4,13,15,8,14,0,11,10,15,3,9,2,4,8,12,7,12,6,8,15,6,7,2,15,14,5,9,0,1,5,12,13,4,1,15,7,9,12,4,0,9,5,5,12,6,3,1,12,6,12,13,10,4", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"4\", \"1\"], \"clip_start\": 105.0, \"clip_end\": 109.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,15,0,1,15,8,4,7,10,2,9,2,1,0,1,12,13,1,14,5,12,13,15,9,6,10,0,3,6,14,9,5,1,11,15,4,0,4,14,8,7,1,6,7,11,3,15,4,3,7,6,4,2,12,10,8,14,7,7,3,1,9,1,15,1,12,9,10,3,1,2,12,10,15,0,4,13,15,8,14,0,11,10,15,3,9,2,4,8,12,7,12,6,8,15,6,7,2,15,14,5,9,0,1,5,12,13,4,1,15,7,9,12,4,0,9,5,5,12,6,3,1,12,6,12,13,10,4", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"4\", \"0\", \"9\", \"5\"], \"clip_start\": 111.0, \"clip_end\": 117.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,15,0,1,15,8,4,7,10,2,9,2,1,0,1,12,13,1,14,5,12,13,15,9,6,10,0,3,6,14,9,5,1,11,15,4,0,4,14,8,7,1,6,7,11,3,15,4,3,7,6,4,2,12,10,8,14,7,7,3,1,9,1,15,1,12,9,10,3,1,2,12,10,15,0,4,13,15,8,14,0,11,10,15,3,9,2,4,8,12,7,12,6,8,15,6,7,2,15,14,5,9,0,1,5,12,13,4,1,15,7,9,12,4,0,9,5,5,12,6,3,1,12,6,12,13,10,4", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"6\", \"3\"], \"clip_start\": 117.0, \"clip_end\": 121.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q14_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,15,0,1,15,8,4,7,10,2,9,2,1,0,1,12,13,1,14,5,12,13,15,9,6,10,0,3,6,14,9,5,1,11,15,4,0,4,14,8,7,1,6,7,11,3,15,4,3,7,6,4,2,12,10,8,14,7,7,3,1,9,1,15,1,12,9,10,3,1,2,12,10,15,0,4,13,15,8,14,0,11,10,15,3,9,2,4,8,12,7,12,6,8,15,6,7,2,15,14,5,9,0,1,5,12,13,4,1,15,7,9,12,4,0,9,5,5,12,6,3,1,12,6,12,13,10,4", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"8\", \"15\", \"6\"], \"clip_start\": 91.0, \"clip_end\": 96.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q15_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,15,0,1,15,8,4,7,10,2,9,2,1,0,1,12,13,1,14,5,12,13,15,9,6,10,0,3,6,14,9,5,1,11,15,4,0,4,14,8,7,1,6,7,11,3,15,4,3,7,6,4,2,12,10,8,14,7,7,3,1,9,1,15,1,12,9,10,3,1,2,12,10,15,0,4,13,15,8,14,0,11,10,15,3,9,2,4,8,12,7,12,6,8,15,6,7,2,15,14,5,9,0,1,5,12,13,4,1,15,7,9,12,4,0,9,5,5,12,6,3,1,12,6,12,13,10,4", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"14\", \"1\", \"8\", \"1\"], \"clip_start\": 54.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,11,9,0,6,3,8,10,7,11,7,4,8,11,6,15,12,7,5,6,7,2,8,4,15,7,14,3,3,15,5,5,6,8,0,2,14,1,4,13,9,12,8,2,6,13,10,8,6,14,9,14,3,8,4,6,14,1,8,1,1,9,4,13,6,1,11,6,12,2,6,15,10,13,10,14,4,1,6,15,11,2,12,4,1,11,7,3,5,13,11,11,7,4,11,7,3,11,10,5,0,15,3,8,9,6,15,3,11,4,10,11,7,14,8,4,6,4,15,9,9,11,0,4,13,14,8,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"14\", \"1\", \"8\", \"1\"], \"clip_start\": 54.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,11,9,0,6,3,8,10,7,11,7,4,8,11,6,15,12,7,5,6,7,2,8,4,15,7,14,3,3,15,5,5,6,8,0,2,14,1,4,13,9,12,8,2,6,13,10,8,6,14,9,14,3,8,4,6,14,1,8,1,1,9,4,13,6,1,11,6,12,2,6,15,10,13,10,14,4,1,6,15,11,2,12,4,1,11,7,3,5,13,11,11,7,4,11,7,3,11,10,5,0,15,3,8,9,6,15,3,11,4,10,11,7,14,8,4,6,4,15,9,9,11,0,4,13,14,8,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"11\", \"2\", \"12\"], \"clip_start\": 78.0, \"clip_end\": 83.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,11,9,0,6,3,8,10,7,11,7,4,8,11,6,15,12,7,5,6,7,2,8,4,15,7,14,3,3,15,5,5,6,8,0,2,14,1,4,13,9,12,8,2,6,13,10,8,6,14,9,14,3,8,4,6,14,1,8,1,1,9,4,13,6,1,11,6,12,2,6,15,10,13,10,14,4,1,6,15,11,2,12,4,1,11,7,3,5,13,11,11,7,4,11,7,3,11,10,5,0,15,3,8,9,6,15,3,11,4,10,11,7,14,8,4,6,4,15,9,9,11,0,4,13,14,8,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"3\", \"8\", \"4\"], \"clip_start\": 50.0, \"clip_end\": 55.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,11,9,0,6,3,8,10,7,11,7,4,8,11,6,15,12,7,5,6,7,2,8,4,15,7,14,3,3,15,5,5,6,8,0,2,14,1,4,13,9,12,8,2,6,13,10,8,6,14,9,14,3,8,4,6,14,1,8,1,1,9,4,13,6,1,11,6,12,2,6,15,10,13,10,14,4,1,6,15,11,2,12,4,1,11,7,3,5,13,11,11,7,4,11,7,3,11,10,5,0,15,3,8,9,6,15,3,11,4,10,11,7,14,8,4,6,4,15,9,9,11,0,4,13,14,8,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"15\", \"3\", \"8\", \"9\"], \"clip_start\": 99.0, \"clip_end\": 105.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,11,9,0,6,3,8,10,7,11,7,4,8,11,6,15,12,7,5,6,7,2,8,4,15,7,14,3,3,15,5,5,6,8,0,2,14,1,4,13,9,12,8,2,6,13,10,8,6,14,9,14,3,8,4,6,14,1,8,1,1,9,4,13,6,1,11,6,12,2,6,15,10,13,10,14,4,1,6,15,11,2,12,4,1,11,7,3,5,13,11,11,7,4,11,7,3,11,10,5,0,15,3,8,9,6,15,3,11,4,10,11,7,14,8,4,6,4,15,9,9,11,0,4,13,14,8,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 101.0, \"clip_end\": 107.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,11,9,0,6,3,8,10,7,11,7,4,8,11,6,15,12,7,5,6,7,2,8,4,15,7,14,3,3,15,5,5,6,8,0,2,14,1,4,13,9,12,8,2,6,13,10,8,6,14,9,14,3,8,4,6,14,1,8,1,1,9,4,13,6,1,11,6,12,2,6,15,10,13,10,14,4,1,6,15,11,2,12,4,1,11,7,3,5,13,11,11,7,4,11,7,3,11,10,5,0,15,3,8,9,6,15,3,11,4,10,11,7,14,8,4,6,4,15,9,9,11,0,4,13,14,8,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"9\", \"6\", \"15\", \"3\"], \"clip_start\": 102.0, \"clip_end\": 108.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,11,9,0,6,3,8,10,7,11,7,4,8,11,6,15,12,7,5,6,7,2,8,4,15,7,14,3,3,15,5,5,6,8,0,2,14,1,4,13,9,12,8,2,6,13,10,8,6,14,9,14,3,8,4,6,14,1,8,1,1,9,4,13,6,1,11,6,12,2,6,15,10,13,10,14,4,1,6,15,11,2,12,4,1,11,7,3,5,13,11,11,7,4,11,7,3,11,10,5,0,15,3,8,9,6,15,3,11,4,10,11,7,14,8,4,6,4,15,9,9,11,0,4,13,14,8,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 38.0, \"clip_end\": 42.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,11,9,0,6,3,8,10,7,11,7,4,8,11,6,15,12,7,5,6,7,2,8,4,15,7,14,3,3,15,5,5,6,8,0,2,14,1,4,13,9,12,8,2,6,13,10,8,6,14,9,14,3,8,4,6,14,1,8,1,1,9,4,13,6,1,11,6,12,2,6,15,10,13,10,14,4,1,6,15,11,2,12,4,1,11,7,3,5,13,11,11,7,4,11,7,3,11,10,5,0,15,3,8,9,6,15,3,11,4,10,11,7,14,8,4,6,4,15,9,9,11,0,4,13,14,8,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"15\", \"12\", \"7\"], \"clip_start\": 13.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,11,9,0,6,3,8,10,7,11,7,4,8,11,6,15,12,7,5,6,7,2,8,4,15,7,14,3,3,15,5,5,6,8,0,2,14,1,4,13,9,12,8,2,6,13,10,8,6,14,9,14,3,8,4,6,14,1,8,1,1,9,4,13,6,1,11,6,12,2,6,15,10,13,10,14,4,1,6,15,11,2,12,4,1,11,7,3,5,13,11,11,7,4,11,7,3,11,10,5,0,15,3,8,9,6,15,3,11,4,10,11,7,14,8,4,6,4,15,9,9,11,0,4,13,14,8,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"15\", \"11\", \"2\"], \"clip_start\": 77.0, \"clip_end\": 82.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,11,9,0,6,3,8,10,7,11,7,4,8,11,6,15,12,7,5,6,7,2,8,4,15,7,14,3,3,15,5,5,6,8,0,2,14,1,4,13,9,12,8,2,6,13,10,8,6,14,9,14,3,8,4,6,14,1,8,1,1,9,4,13,6,1,11,6,12,2,6,15,10,13,10,14,4,1,6,15,11,2,12,4,1,11,7,3,5,13,11,11,7,4,11,7,3,11,10,5,0,15,3,8,9,6,15,3,11,4,10,11,7,14,8,4,6,4,15,9,9,11,0,4,13,14,8,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 45.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,11,9,0,6,3,8,10,7,11,7,4,8,11,6,15,12,7,5,6,7,2,8,4,15,7,14,3,3,15,5,5,6,8,0,2,14,1,4,13,9,12,8,2,6,13,10,8,6,14,9,14,3,8,4,6,14,1,8,1,1,9,4,13,6,1,11,6,12,2,6,15,10,13,10,14,4,1,6,15,11,2,12,4,1,11,7,3,5,13,11,11,7,4,11,7,3,11,10,5,0,15,3,8,9,6,15,3,11,4,10,11,7,14,8,4,6,4,15,9,9,11,0,4,13,14,8,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"14\", \"3\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,11,9,0,6,3,8,10,7,11,7,4,8,11,6,15,12,7,5,6,7,2,8,4,15,7,14,3,3,15,5,5,6,8,0,2,14,1,4,13,9,12,8,2,6,13,10,8,6,14,9,14,3,8,4,6,14,1,8,1,1,9,4,13,6,1,11,6,12,2,6,15,10,13,10,14,4,1,6,15,11,2,12,4,1,11,7,3,5,13,11,11,7,4,11,7,3,11,10,5,0,15,3,8,9,6,15,3,11,4,10,11,7,14,8,4,6,4,15,9,9,11,0,4,13,14,8,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"2\", \"14\", \"1\", \"4\"], \"clip_start\": 34.0, \"clip_end\": 39.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,11,9,0,6,3,8,10,7,11,7,4,8,11,6,15,12,7,5,6,7,2,8,4,15,7,14,3,3,15,5,5,6,8,0,2,14,1,4,13,9,12,8,2,6,13,10,8,6,14,9,14,3,8,4,6,14,1,8,1,1,9,4,13,6,1,11,6,12,2,6,15,10,13,10,14,4,1,6,15,11,2,12,4,1,11,7,3,5,13,11,11,7,4,11,7,3,11,10,5,0,15,3,8,9,6,15,3,11,4,10,11,7,14,8,4,6,4,15,9,9,11,0,4,13,14,8,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"5\", \"13\", \"11\", \"11\"], \"clip_start\": 87.0, \"clip_end\": 92.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,11,9,0,6,3,8,10,7,11,7,4,8,11,6,15,12,7,5,6,7,2,8,4,15,7,14,3,3,15,5,5,6,8,0,2,14,1,4,13,9,12,8,2,6,13,10,8,6,14,9,14,3,8,4,6,14,1,8,1,1,9,4,13,6,1,11,6,12,2,6,15,10,13,10,14,4,1,6,15,11,2,12,4,1,11,7,3,5,13,11,11,7,4,11,7,3,11,10,5,0,15,3,8,9,6,15,3,11,4,10,11,7,14,8,4,6,4,15,9,9,11,0,4,13,14,8,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 67.0, \"clip_end\": 73.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,11,9,0,6,3,8,10,7,11,7,4,8,11,6,15,12,7,5,6,7,2,8,4,15,7,14,3,3,15,5,5,6,8,0,2,14,1,4,13,9,12,8,2,6,13,10,8,6,14,9,14,3,8,4,6,14,1,8,1,1,9,4,13,6,1,11,6,12,2,6,15,10,13,10,14,4,1,6,15,11,2,12,4,1,11,7,3,5,13,11,11,7,4,11,7,3,11,10,5,0,15,3,8,9,6,15,3,11,4,10,11,7,14,8,4,6,4,15,9,9,11,0,4,13,14,8,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"14\"], \"clip_start\": 73.0, \"clip_end\": 76.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q15_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,11,9,0,6,3,8,10,7,11,7,4,8,11,6,15,12,7,5,6,7,2,8,4,15,7,14,3,3,15,5,5,6,8,0,2,14,1,4,13,9,12,8,2,6,13,10,8,6,14,9,14,3,8,4,6,14,1,8,1,1,9,4,13,6,1,11,6,12,2,6,15,10,13,10,14,4,1,6,15,11,2,12,4,1,11,7,3,5,13,11,11,7,4,11,7,3,11,10,5,0,15,3,8,9,6,15,3,11,4,10,11,7,14,8,4,6,4,15,9,9,11,0,4,13,14,8,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"8\", \"15\"], \"clip_start\": 100.0, \"clip_end\": 104.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,2,0,0,14,7,14,10,13,7,1,10,5,2,12,4,5,9,2,7,6,6,4,15,4,0,10,3,8,3,10,1,7,1,14,7,4,3,13,12,1,2,12,14,4,14,11,0,8,15,12,11,12,7,3,10,11,4,11,11,1,13,0,14,8,1,13,11,3,12,4,14,7,15,15,10,5,8,2,15,2,8,11,15,13,12,3,14,2,13,1,2,4,8,6,2,6,4,9,15,12,8,15,2,0,8,11,15,3,15,3,2,11,4,7,11,11,3,12,12,11,4,15,6,9,1,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 119.0, \"clip_end\": 124.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,2,0,0,14,7,14,10,13,7,1,10,5,2,12,4,5,9,2,7,6,6,4,15,4,0,10,3,8,3,10,1,7,1,14,7,4,3,13,12,1,2,12,14,4,14,11,0,8,15,12,11,12,7,3,10,11,4,11,11,1,13,0,14,8,1,13,11,3,12,4,14,7,15,15,10,5,8,2,15,2,8,11,15,13,12,3,14,2,13,1,2,4,8,6,2,6,4,9,15,12,8,15,2,0,8,11,15,3,15,3,2,11,4,7,11,11,3,12,12,11,4,15,6,9,1,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 49.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,2,0,0,14,7,14,10,13,7,1,10,5,2,12,4,5,9,2,7,6,6,4,15,4,0,10,3,8,3,10,1,7,1,14,7,4,3,13,12,1,2,12,14,4,14,11,0,8,15,12,11,12,7,3,10,11,4,11,11,1,13,0,14,8,1,13,11,3,12,4,14,7,15,15,10,5,8,2,15,2,8,11,15,13,12,3,14,2,13,1,2,4,8,6,2,6,4,9,15,12,8,15,2,0,8,11,15,3,15,3,2,11,4,7,11,11,3,12,12,11,4,15,6,9,1,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"10\", \"5\", \"8\", \"2\"], \"clip_start\": 75.0, \"clip_end\": 80.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,2,0,0,14,7,14,10,13,7,1,10,5,2,12,4,5,9,2,7,6,6,4,15,4,0,10,3,8,3,10,1,7,1,14,7,4,3,13,12,1,2,12,14,4,14,11,0,8,15,12,11,12,7,3,10,11,4,11,11,1,13,0,14,8,1,13,11,3,12,4,14,7,15,15,10,5,8,2,15,2,8,11,15,13,12,3,14,2,13,1,2,4,8,6,2,6,4,9,15,12,8,15,2,0,8,11,15,3,15,3,2,11,4,7,11,11,3,12,12,11,4,15,6,9,1,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 94.0, \"clip_end\": 98.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,2,0,0,14,7,14,10,13,7,1,10,5,2,12,4,5,9,2,7,6,6,4,15,4,0,10,3,8,3,10,1,7,1,14,7,4,3,13,12,1,2,12,14,4,14,11,0,8,15,12,11,12,7,3,10,11,4,11,11,1,13,0,14,8,1,13,11,3,12,4,14,7,15,15,10,5,8,2,15,2,8,11,15,13,12,3,14,2,13,1,2,4,8,6,2,6,4,9,15,12,8,15,2,0,8,11,15,3,15,3,2,11,4,7,11,11,3,12,12,11,4,15,6,9,1,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 116.0, \"clip_end\": 121.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,2,0,0,14,7,14,10,13,7,1,10,5,2,12,4,5,9,2,7,6,6,4,15,4,0,10,3,8,3,10,1,7,1,14,7,4,3,13,12,1,2,12,14,4,14,11,0,8,15,12,11,12,7,3,10,11,4,11,11,1,13,0,14,8,1,13,11,3,12,4,14,7,15,15,10,5,8,2,15,2,8,11,15,13,12,3,14,2,13,1,2,4,8,6,2,6,4,9,15,12,8,15,2,0,8,11,15,3,15,3,2,11,4,7,11,11,3,12,12,11,4,15,6,9,1,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"14\"], \"clip_start\": 86.0, \"clip_end\": 89.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,2,0,0,14,7,14,10,13,7,1,10,5,2,12,4,5,9,2,7,6,6,4,15,4,0,10,3,8,3,10,1,7,1,14,7,4,3,13,12,1,2,12,14,4,14,11,0,8,15,12,11,12,7,3,10,11,4,11,11,1,13,0,14,8,1,13,11,3,12,4,14,7,15,15,10,5,8,2,15,2,8,11,15,13,12,3,14,2,13,1,2,4,8,6,2,6,4,9,15,12,8,15,2,0,8,11,15,3,15,3,2,11,4,7,11,11,3,12,12,11,4,15,6,9,1,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"0\", \"8\", \"15\", \"12\", \"11\"], \"clip_start\": 47.0, \"clip_end\": 53.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,2,0,0,14,7,14,10,13,7,1,10,5,2,12,4,5,9,2,7,6,6,4,15,4,0,10,3,8,3,10,1,7,1,14,7,4,3,13,12,1,2,12,14,4,14,11,0,8,15,12,11,12,7,3,10,11,4,11,11,1,13,0,14,8,1,13,11,3,12,4,14,7,15,15,10,5,8,2,15,2,8,11,15,13,12,3,14,2,13,1,2,4,8,6,2,6,4,9,15,12,8,15,2,0,8,11,15,3,15,3,2,11,4,7,11,11,3,12,12,11,4,15,6,9,1,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"12\", \"1\", \"2\"], \"clip_start\": 39.0, \"clip_end\": 43.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,2,0,0,14,7,14,10,13,7,1,10,5,2,12,4,5,9,2,7,6,6,4,15,4,0,10,3,8,3,10,1,7,1,14,7,4,3,13,12,1,2,12,14,4,14,11,0,8,15,12,11,12,7,3,10,11,4,11,11,1,13,0,14,8,1,13,11,3,12,4,14,7,15,15,10,5,8,2,15,2,8,11,15,13,12,3,14,2,13,1,2,4,8,6,2,6,4,9,15,12,8,15,2,0,8,11,15,3,15,3,2,11,4,7,11,11,3,12,12,11,4,15,6,9,1,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"15\"], \"clip_start\": 72.0, \"clip_end\": 75.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q9_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,2,0,0,14,7,14,10,13,7,1,10,5,2,12,4,5,9,2,7,6,6,4,15,4,0,10,3,8,3,10,1,7,1,14,7,4,3,13,12,1,2,12,14,4,14,11,0,8,15,12,11,12,7,3,10,11,4,11,11,1,13,0,14,8,1,13,11,3,12,4,14,7,15,15,10,5,8,2,15,2,8,11,15,13,12,3,14,2,13,1,2,4,8,6,2,6,4,9,15,12,8,15,2,0,8,11,15,3,15,3,2,11,4,7,11,11,3,12,12,11,4,15,6,9,1,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"12\", \"7\"], \"clip_start\": 11.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q10_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,2,0,0,14,7,14,10,13,7,1,10,5,2,12,4,5,9,2,7,6,6,4,15,4,0,10,3,8,3,10,1,7,1,14,7,4,3,13,12,1,2,12,14,4,14,11,0,8,15,12,11,12,7,3,10,11,4,11,11,1,13,0,14,8,1,13,11,3,12,4,14,7,15,15,10,5,8,2,15,2,8,11,15,13,12,3,14,2,13,1,2,4,8,6,2,6,4,9,15,12,8,15,2,0,8,11,15,3,15,3,2,11,4,7,11,11,3,12,12,11,4,15,6,9,1,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"2\", \"13\", \"1\"], \"clip_start\": 87.0, \"clip_end\": 92.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q11_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,2,0,0,14,7,14,10,13,7,1,10,5,2,12,4,5,9,2,7,6,6,4,15,4,0,10,3,8,3,10,1,7,1,14,7,4,3,13,12,1,2,12,14,4,14,11,0,8,15,12,11,12,7,3,10,11,4,11,11,1,13,0,14,8,1,13,11,3,12,4,14,7,15,15,10,5,8,2,15,2,8,11,15,13,12,3,14,2,13,1,2,4,8,6,2,6,4,9,15,12,8,15,2,0,8,11,15,3,15,3,2,11,4,7,11,11,3,12,12,11,4,15,6,9,1,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"3\"], \"clip_start\": 24.0, \"clip_end\": 27.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,2,0,0,14,7,14,10,13,7,1,10,5,2,12,4,5,9,2,7,6,6,4,15,4,0,10,3,8,3,10,1,7,1,14,7,4,3,13,12,1,2,12,14,4,14,11,0,8,15,12,11,12,7,3,10,11,4,11,11,1,13,0,14,8,1,13,11,3,12,4,14,7,15,15,10,5,8,2,15,2,8,11,15,13,12,3,14,2,13,1,2,4,8,6,2,6,4,9,15,12,8,15,2,0,8,11,15,3,15,3,2,11,4,7,11,11,3,12,12,11,4,15,6,9,1,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"12\", \"1\", \"2\", \"12\"], \"clip_start\": 38.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q13_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,2,0,0,14,7,14,10,13,7,1,10,5,2,12,4,5,9,2,7,6,6,4,15,4,0,10,3,8,3,10,1,7,1,14,7,4,3,13,12,1,2,12,14,4,14,11,0,8,15,12,11,12,7,3,10,11,4,11,11,1,13,0,14,8,1,13,11,3,12,4,14,7,15,15,10,5,8,2,15,2,8,11,15,13,12,3,14,2,13,1,2,4,8,6,2,6,4,9,15,12,8,15,2,0,8,11,15,3,15,3,2,11,4,7,11,11,3,12,12,11,4,15,6,9,1,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"15\", \"4\", \"0\"], \"clip_start\": 22.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q14_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,2,0,0,14,7,14,10,13,7,1,10,5,2,12,4,5,9,2,7,6,6,4,15,4,0,10,3,8,3,10,1,7,1,14,7,4,3,13,12,1,2,12,14,4,14,11,0,8,15,12,11,12,7,3,10,11,4,11,11,1,13,0,14,8,1,13,11,3,12,4,14,7,15,15,10,5,8,2,15,2,8,11,15,13,12,3,14,2,13,1,2,4,8,6,2,6,4,9,15,12,8,15,2,0,8,11,15,3,15,3,2,11,4,7,11,11,3,12,12,11,4,15,6,9,1,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"6\", \"2\", \"6\"], \"clip_start\": 93.0, \"clip_end\": 98.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q15_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,2,0,0,14,7,14,10,13,7,1,10,5,2,12,4,5,9,2,7,6,6,4,15,4,0,10,3,8,3,10,1,7,1,14,7,4,3,13,12,1,2,12,14,4,14,11,0,8,15,12,11,12,7,3,10,11,4,11,11,1,13,0,14,8,1,13,11,3,12,4,14,7,15,15,10,5,8,2,15,2,8,11,15,13,12,3,14,2,13,1,2,4,8,6,2,6,4,9,15,12,8,15,2,0,8,11,15,3,15,3,2,11,4,7,11,11,3,12,12,11,4,15,6,9,1,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"14\", \"13\"], \"clip_start\": 57.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,7,14,8,3,6,15,11,11,4,7,3,2,1,11,2,1,4,4,12,14,4,7,4,11,8,12,0,12,13,4,1,7,2,8,7,0,2,6,12,8,14,6,9,14,0,7,11,0,11,1,15,3,5,2,6,15,13,11,14,13,1,13,5,10,6,9,1,4,15,3,3,10,2,14,15,15,3,2,8,4,12,4,3,7,2,12,11,0,0,3,4,13,1,2,3,5,10,0,9,3,6,1,8,13,0,5,3,2,1,5,3,10,0,5,11,4,5,1,7,13,13,0,3,6,0,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"2\", \"6\", \"12\"], \"clip_start\": 37.0, \"clip_end\": 41.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q1_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,7,14,8,3,6,15,11,11,4,7,3,2,1,11,2,1,4,4,12,14,4,7,4,11,8,12,0,12,13,4,1,7,2,8,7,0,2,6,12,8,14,6,9,14,0,7,11,0,11,1,15,3,5,2,6,15,13,11,14,13,1,13,5,10,6,9,1,4,15,3,3,10,2,14,15,15,3,2,8,4,12,4,3,7,2,12,11,0,0,3,4,13,1,2,3,5,10,0,9,3,6,1,8,13,0,5,3,2,1,5,3,10,0,5,11,4,5,1,7,13,13,0,3,6,0,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"6\", \"6\", \"5\"], \"clip_start\": 51.0, \"clip_end\": 56.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q2_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,7,14,8,3,6,15,11,11,4,7,3,2,1,11,2,1,4,4,12,14,4,7,4,11,8,12,0,12,13,4,1,7,2,8,7,0,2,6,12,8,14,6,9,14,0,7,11,0,11,1,15,3,5,2,6,15,13,11,14,13,1,13,5,10,6,9,1,4,15,3,3,10,2,14,15,15,3,2,8,4,12,4,3,7,2,12,11,0,0,3,4,13,1,2,3,5,10,0,9,3,6,1,8,13,0,5,3,2,1,5,3,10,0,5,11,4,5,1,7,13,13,0,3,6,0,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"14\", \"4\", \"7\", \"4\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,7,14,8,3,6,15,11,11,4,7,3,2,1,11,2,1,4,4,12,14,4,7,4,11,8,12,0,12,13,4,1,7,2,8,7,0,2,6,12,8,14,6,9,14,0,7,11,0,11,1,15,3,5,2,6,15,13,11,14,13,1,13,5,10,6,9,1,4,15,3,3,10,2,14,15,15,3,2,8,4,12,4,3,7,2,12,11,0,0,3,4,13,1,2,3,5,10,0,9,3,6,1,8,13,0,5,3,2,1,5,3,10,0,5,11,4,5,1,7,13,13,0,3,6,0,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"6\", \"15\", \"11\", \"11\", \"4\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,7,14,8,3,6,15,11,11,4,7,3,2,1,11,2,1,4,4,12,14,4,7,4,11,8,12,0,12,13,4,1,7,2,8,7,0,2,6,12,8,14,6,9,14,0,7,11,0,11,1,15,3,5,2,6,15,13,11,14,13,1,13,5,10,6,9,1,4,15,3,3,10,2,14,15,15,3,2,8,4,12,4,3,7,2,12,11,0,0,3,4,13,1,2,3,5,10,0,9,3,6,1,8,13,0,5,3,2,1,5,3,10,0,5,11,4,5,1,7,13,13,0,3,6,0,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"10\", \"2\", \"14\", \"15\"], \"clip_start\": 71.0, \"clip_end\": 77.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q5_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,7,14,8,3,6,15,11,11,4,7,3,2,1,11,2,1,4,4,12,14,4,7,4,11,8,12,0,12,13,4,1,7,2,8,7,0,2,6,12,8,14,6,9,14,0,7,11,0,11,1,15,3,5,2,6,15,13,11,14,13,1,13,5,10,6,9,1,4,15,3,3,10,2,14,15,15,3,2,8,4,12,4,3,7,2,12,11,0,0,3,4,13,1,2,3,5,10,0,9,3,6,1,8,13,0,5,3,2,1,5,3,10,0,5,11,4,5,1,7,13,13,0,3,6,0,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"14\"], \"clip_start\": 12.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q6_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,7,14,8,3,6,15,11,11,4,7,3,2,1,11,2,1,4,4,12,14,4,7,4,11,8,12,0,12,13,4,1,7,2,8,7,0,2,6,12,8,14,6,9,14,0,7,11,0,11,1,15,3,5,2,6,15,13,11,14,13,1,13,5,10,6,9,1,4,15,3,3,10,2,14,15,15,3,2,8,4,12,4,3,7,2,12,11,0,0,3,4,13,1,2,3,5,10,0,9,3,6,1,8,13,0,5,3,2,1,5,3,10,0,5,11,4,5,1,7,13,13,0,3,6,0,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"0\", \"12\", \"14\", \"1\"], \"clip_start\": 74.0, \"clip_end\": 79.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q7_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,7,14,8,3,6,15,11,11,4,7,3,2,1,11,2,1,4,4,12,14,4,7,4,11,8,12,0,12,13,4,1,7,2,8,7,0,2,6,12,8,14,6,9,14,0,7,11,0,11,1,15,3,5,2,6,15,13,11,14,13,1,13,5,10,6,9,1,4,15,3,3,10,2,14,15,15,3,2,8,4,12,4,3,7,2,12,11,0,0,3,4,13,1,2,3,5,10,0,9,3,6,1,8,13,0,5,3,2,1,5,3,10,0,5,11,4,5,1,7,13,13,0,3,6,0,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"5\", \"3\", \"2\"], \"clip_start\": 106.0, \"clip_end\": 110.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,7,14,8,3,6,15,11,11,4,7,3,2,1,11,2,1,4,4,12,14,4,7,4,11,8,12,0,12,13,4,1,7,2,8,7,0,2,6,12,8,14,6,9,14,0,7,11,0,11,1,15,3,5,2,6,15,13,11,14,13,1,13,5,10,6,9,1,4,15,3,3,10,2,14,15,15,3,2,8,4,12,4,3,7,2,12,11,0,0,3,4,13,1,2,3,5,10,0,9,3,6,1,8,13,0,5,3,2,1,5,3,10,0,5,11,4,5,1,7,13,13,0,3,6,0,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"3\"], \"clip_start\": 69.0, \"clip_end\": 72.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q9_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,7,14,8,3,6,15,11,11,4,7,3,2,1,11,2,1,4,4,12,14,4,7,4,11,8,12,0,12,13,4,1,7,2,8,7,0,2,6,12,8,14,6,9,14,0,7,11,0,11,1,15,3,5,2,6,15,13,11,14,13,1,13,5,10,6,9,1,4,15,3,3,10,2,14,15,15,3,2,8,4,12,4,3,7,2,12,11,0,0,3,4,13,1,2,3,5,10,0,9,3,6,1,8,13,0,5,3,2,1,5,3,10,0,5,11,4,5,1,7,13,13,0,3,6,0,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"11\", \"2\", \"1\"], \"clip_start\": 13.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,7,14,8,3,6,15,11,11,4,7,3,2,1,11,2,1,4,4,12,14,4,7,4,11,8,12,0,12,13,4,1,7,2,8,7,0,2,6,12,8,14,6,9,14,0,7,11,0,11,1,15,3,5,2,6,15,13,11,14,13,1,13,5,10,6,9,1,4,15,3,3,10,2,14,15,15,3,2,8,4,12,4,3,7,2,12,11,0,0,3,4,13,1,2,3,5,10,0,9,3,6,1,8,13,0,5,3,2,1,5,3,10,0,5,11,4,5,1,7,13,13,0,3,6,0,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"15\", \"5\", \"9\"], \"clip_start\": 30.0, \"clip_end\": 35.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q11_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,7,14,8,3,6,15,11,11,4,7,3,2,1,11,2,1,4,4,12,14,4,7,4,11,8,12,0,12,13,4,1,7,2,8,7,0,2,6,12,8,14,6,9,14,0,7,11,0,11,1,15,3,5,2,6,15,13,11,14,13,1,13,5,10,6,9,1,4,15,3,3,10,2,14,15,15,3,2,8,4,12,4,3,7,2,12,11,0,0,3,4,13,1,2,3,5,10,0,9,3,6,1,8,13,0,5,3,2,1,5,3,10,0,5,11,4,5,1,7,13,13,0,3,6,0,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"9\", \"4\", \"2\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,7,14,8,3,6,15,11,11,4,7,3,2,1,11,2,1,4,4,12,14,4,7,4,11,8,12,0,12,13,4,1,7,2,8,7,0,2,6,12,8,14,6,9,14,0,7,11,0,11,1,15,3,5,2,6,15,13,11,14,13,1,13,5,10,6,9,1,4,15,3,3,10,2,14,15,15,3,2,8,4,12,4,3,7,2,12,11,0,0,3,4,13,1,2,3,5,10,0,9,3,6,1,8,13,0,5,3,2,1,5,3,10,0,5,11,4,5,1,7,13,13,0,3,6,0,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"14\", \"4\", \"7\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,7,14,8,3,6,15,11,11,4,7,3,2,1,11,2,1,4,4,12,14,4,7,4,11,8,12,0,12,13,4,1,7,2,8,7,0,2,6,12,8,14,6,9,14,0,7,11,0,11,1,15,3,5,2,6,15,13,11,14,13,1,13,5,10,6,9,1,4,15,3,3,10,2,14,15,15,3,2,8,4,12,4,3,7,2,12,11,0,0,3,4,13,1,2,3,5,10,0,9,3,6,1,8,13,0,5,3,2,1,5,3,10,0,5,11,4,5,1,7,13,13,0,3,6,0,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"3\", \"3\", \"10\", \"2\", \"14\"], \"clip_start\": 70.0, \"clip_end\": 76.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q14_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,7,14,8,3,6,15,11,11,4,7,3,2,1,11,2,1,4,4,12,14,4,7,4,11,8,12,0,12,13,4,1,7,2,8,7,0,2,6,12,8,14,6,9,14,0,7,11,0,11,1,15,3,5,2,6,15,13,11,14,13,1,13,5,10,6,9,1,4,15,3,3,10,2,14,15,15,3,2,8,4,12,4,3,7,2,12,11,0,0,3,4,13,1,2,3,5,10,0,9,3,6,1,8,13,0,5,3,2,1,5,3,10,0,5,11,4,5,1,7,13,13,0,3,6,0,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"11\", \"0\"], \"clip_start\": 85.0, \"clip_end\": 90.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,14,7,14,8,3,6,15,11,11,4,7,3,2,1,11,2,1,4,4,12,14,4,7,4,11,8,12,0,12,13,4,1,7,2,8,7,0,2,6,12,8,14,6,9,14,0,7,11,0,11,1,15,3,5,2,6,15,13,11,14,13,1,13,5,10,6,9,1,4,15,3,3,10,2,14,15,15,3,2,8,4,12,4,3,7,2,12,11,0,0,3,4,13,1,2,3,5,10,0,9,3,6,1,8,13,0,5,3,2,1,5,3,10,0,5,11,4,5,1,7,13,13,0,3,6,0,5", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"9\", \"8\", \"14\", \"11\"], \"clip_start\": 23.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,5,7,0,12,11,8,7,12,8,10,7,15,9,7,1,0,4,4,1,4,13,10,9,8,14,11,6,10,8,5,2,9,12,3,6,6,5,1,14,3,14,6,3,3,2,6,1,5,12,0,2,15,12,15,11,4,5,11,6,1,8,14,0,13,3,11,0,7,9,14,2,2,12,0,9,8,6,13,11,2,8,12,7,8,15,11,12,11,3,0,7,14,14,9,7,12,7,13,15,7,1,10,10,3,11,7,7,11,0,13,11,9,8,8,1,10,10,6,11,7,0,0,5,1,10,5", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"11\", \"0\", \"7\"], \"clip_start\": 65.0, \"clip_end\": 70.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,5,7,0,12,11,8,7,12,8,10,7,15,9,7,1,0,4,4,1,4,13,10,9,8,14,11,6,10,8,5,2,9,12,3,6,6,5,1,14,3,14,6,3,3,2,6,1,5,12,0,2,15,12,15,11,4,5,11,6,1,8,14,0,13,3,11,0,7,9,14,2,2,12,0,9,8,6,13,11,2,8,12,7,8,15,11,12,11,3,0,7,14,14,9,7,12,7,13,15,7,1,10,10,3,11,7,7,11,0,13,11,9,8,8,1,10,10,6,11,7,0,0,5,1,10,5", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"8\", \"8\", \"1\"], \"clip_start\": 112.0, \"clip_end\": 117.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,5,7,0,12,11,8,7,12,8,10,7,15,9,7,1,0,4,4,1,4,13,10,9,8,14,11,6,10,8,5,2,9,12,3,6,6,5,1,14,3,14,6,3,3,2,6,1,5,12,0,2,15,12,15,11,4,5,11,6,1,8,14,0,13,3,11,0,7,9,14,2,2,12,0,9,8,6,13,11,2,8,12,7,8,15,11,12,11,3,0,7,14,14,9,7,12,7,13,15,7,1,10,10,3,11,7,7,11,0,13,11,9,8,8,1,10,10,6,11,7,0,0,5,1,10,5", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"10\", \"9\", \"8\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,5,7,0,12,11,8,7,12,8,10,7,15,9,7,1,0,4,4,1,4,13,10,9,8,14,11,6,10,8,5,2,9,12,3,6,6,5,1,14,3,14,6,3,3,2,6,1,5,12,0,2,15,12,15,11,4,5,11,6,1,8,14,0,13,3,11,0,7,9,14,2,2,12,0,9,8,6,13,11,2,8,12,7,8,15,11,12,11,3,0,7,14,14,9,7,12,7,13,15,7,1,10,10,3,11,7,7,11,0,13,11,9,8,8,1,10,10,6,11,7,0,0,5,1,10,5", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"15\", \"11\", \"4\"], \"clip_start\": 53.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,5,7,0,12,11,8,7,12,8,10,7,15,9,7,1,0,4,4,1,4,13,10,9,8,14,11,6,10,8,5,2,9,12,3,6,6,5,1,14,3,14,6,3,3,2,6,1,5,12,0,2,15,12,15,11,4,5,11,6,1,8,14,0,13,3,11,0,7,9,14,2,2,12,0,9,8,6,13,11,2,8,12,7,8,15,11,12,11,3,0,7,14,14,9,7,12,7,13,15,7,1,10,10,3,11,7,7,11,0,13,11,9,8,8,1,10,10,6,11,7,0,0,5,1,10,5", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"14\", \"11\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,5,7,0,12,11,8,7,12,8,10,7,15,9,7,1,0,4,4,1,4,13,10,9,8,14,11,6,10,8,5,2,9,12,3,6,6,5,1,14,3,14,6,3,3,2,6,1,5,12,0,2,15,12,15,11,4,5,11,6,1,8,14,0,13,3,11,0,7,9,14,2,2,12,0,9,8,6,13,11,2,8,12,7,8,15,11,12,11,3,0,7,14,14,9,7,12,7,13,15,7,1,10,10,3,11,7,7,11,0,13,11,9,8,8,1,10,10,6,11,7,0,0,5,1,10,5", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 106.0, \"clip_end\": 109.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,5,7,0,12,11,8,7,12,8,10,7,15,9,7,1,0,4,4,1,4,13,10,9,8,14,11,6,10,8,5,2,9,12,3,6,6,5,1,14,3,14,6,3,3,2,6,1,5,12,0,2,15,12,15,11,4,5,11,6,1,8,14,0,13,3,11,0,7,9,14,2,2,12,0,9,8,6,13,11,2,8,12,7,8,15,11,12,11,3,0,7,14,14,9,7,12,7,13,15,7,1,10,10,3,11,7,7,11,0,13,11,9,8,8,1,10,10,6,11,7,0,0,5,1,10,5", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"6\", \"6\"], \"clip_start\": 34.0, \"clip_end\": 38.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,5,7,0,12,11,8,7,12,8,10,7,15,9,7,1,0,4,4,1,4,13,10,9,8,14,11,6,10,8,5,2,9,12,3,6,6,5,1,14,3,14,6,3,3,2,6,1,5,12,0,2,15,12,15,11,4,5,11,6,1,8,14,0,13,3,11,0,7,9,14,2,2,12,0,9,8,6,13,11,2,8,12,7,8,15,11,12,11,3,0,7,14,14,9,7,12,7,13,15,7,1,10,10,3,11,7,7,11,0,13,11,9,8,8,1,10,10,6,11,7,0,0,5,1,10,5", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"12\", \"3\", \"6\"], \"clip_start\": 32.0, \"clip_end\": 37.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,5,7,0,12,11,8,7,12,8,10,7,15,9,7,1,0,4,4,1,4,13,10,9,8,14,11,6,10,8,5,2,9,12,3,6,6,5,1,14,3,14,6,3,3,2,6,1,5,12,0,2,15,12,15,11,4,5,11,6,1,8,14,0,13,3,11,0,7,9,14,2,2,12,0,9,8,6,13,11,2,8,12,7,8,15,11,12,11,3,0,7,14,14,9,7,12,7,13,15,7,1,10,10,3,11,7,7,11,0,13,11,9,8,8,1,10,10,6,11,7,0,0,5,1,10,5", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"15\", \"11\", \"4\"], \"clip_start\": 54.0, \"clip_end\": 58.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,5,7,0,12,11,8,7,12,8,10,7,15,9,7,1,0,4,4,1,4,13,10,9,8,14,11,6,10,8,5,2,9,12,3,6,6,5,1,14,3,14,6,3,3,2,6,1,5,12,0,2,15,12,15,11,4,5,11,6,1,8,14,0,13,3,11,0,7,9,14,2,2,12,0,9,8,6,13,11,2,8,12,7,8,15,11,12,11,3,0,7,14,14,9,7,12,7,13,15,7,1,10,10,3,11,7,7,11,0,13,11,9,8,8,1,10,10,6,11,7,0,0,5,1,10,5", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"5\", \"11\", \"6\", \"1\"], \"clip_start\": 57.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,5,7,0,12,11,8,7,12,8,10,7,15,9,7,1,0,4,4,1,4,13,10,9,8,14,11,6,10,8,5,2,9,12,3,6,6,5,1,14,3,14,6,3,3,2,6,1,5,12,0,2,15,12,15,11,4,5,11,6,1,8,14,0,13,3,11,0,7,9,14,2,2,12,0,9,8,6,13,11,2,8,12,7,8,15,11,12,11,3,0,7,14,14,9,7,12,7,13,15,7,1,10,10,3,11,7,7,11,0,13,11,9,8,8,1,10,10,6,11,7,0,0,5,1,10,5", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"7\", \"8\"], \"clip_start\": 82.0, \"clip_end\": 86.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,5,7,0,12,11,8,7,12,8,10,7,15,9,7,1,0,4,4,1,4,13,10,9,8,14,11,6,10,8,5,2,9,12,3,6,6,5,1,14,3,14,6,3,3,2,6,1,5,12,0,2,15,12,15,11,4,5,11,6,1,8,14,0,13,3,11,0,7,9,14,2,2,12,0,9,8,6,13,11,2,8,12,7,8,15,11,12,11,3,0,7,14,14,9,7,12,7,13,15,7,1,10,10,3,11,7,7,11,0,13,11,9,8,8,1,10,10,6,11,7,0,0,5,1,10,5", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\"], \"clip_start\": 40.0, \"clip_end\": 43.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,5,7,0,12,11,8,7,12,8,10,7,15,9,7,1,0,4,4,1,4,13,10,9,8,14,11,6,10,8,5,2,9,12,3,6,6,5,1,14,3,14,6,3,3,2,6,1,5,12,0,2,15,12,15,11,4,5,11,6,1,8,14,0,13,3,11,0,7,9,14,2,2,12,0,9,8,6,13,11,2,8,12,7,8,15,11,12,11,3,0,7,14,14,9,7,12,7,13,15,7,1,10,10,3,11,7,7,11,0,13,11,9,8,8,1,10,10,6,11,7,0,0,5,1,10,5", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"1\", \"14\", \"3\", \"14\"], \"clip_start\": 37.0, \"clip_end\": 43.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q13_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,5,7,0,12,11,8,7,12,8,10,7,15,9,7,1,0,4,4,1,4,13,10,9,8,14,11,6,10,8,5,2,9,12,3,6,6,5,1,14,3,14,6,3,3,2,6,1,5,12,0,2,15,12,15,11,4,5,11,6,1,8,14,0,13,3,11,0,7,9,14,2,2,12,0,9,8,6,13,11,2,8,12,7,8,15,11,12,11,3,0,7,14,14,9,7,12,7,13,15,7,1,10,10,3,11,7,7,11,0,13,11,9,8,8,1,10,10,6,11,7,0,0,5,1,10,5", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"0\", \"5\", \"1\", \"10\"], \"clip_start\": 121.0, \"clip_end\": 127.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,5,7,0,12,11,8,7,12,8,10,7,15,9,7,1,0,4,4,1,4,13,10,9,8,14,11,6,10,8,5,2,9,12,3,6,6,5,1,14,3,14,6,3,3,2,6,1,5,12,0,2,15,12,15,11,4,5,11,6,1,8,14,0,13,3,11,0,7,9,14,2,2,12,0,9,8,6,13,11,2,8,12,7,8,15,11,12,11,3,0,7,14,14,9,7,12,7,13,15,7,1,10,10,3,11,7,7,11,0,13,11,9,8,8,1,10,10,6,11,7,0,0,5,1,10,5", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"1\", \"4\", \"13\"], \"clip_start\": 18.0, \"clip_end\": 23.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,2,5,7,0,12,11,8,7,12,8,10,7,15,9,7,1,0,4,4,1,4,13,10,9,8,14,11,6,10,8,5,2,9,12,3,6,6,5,1,14,3,14,6,3,3,2,6,1,5,12,0,2,15,12,15,11,4,5,11,6,1,8,14,0,13,3,11,0,7,9,14,2,2,12,0,9,8,6,13,11,2,8,12,7,8,15,11,12,11,3,0,7,14,14,9,7,12,7,13,15,7,1,10,10,3,11,7,7,11,0,13,11,9,8,8,1,10,10,6,11,7,0,0,5,1,10,5", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 80.0, \"clip_end\": 84.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,1,13,7,12,2,6,5,7,7,13,8,15,11,4,11,12,10,3,8,8,14,14,12,3,2,3,12,15,1,15,12,9,7,11,14,8,3,4,14,6,9,6,12,6,0,12,1,3,12,4,5,11,6,13,0,13,1,3,2,11,9,0,11,15,4,12,0,8,14,2,4,0,15,6,4,6,8,0,4,0,13,15,10,0,12,0,4,6,1,4,7,8,14,5,3,8,4,3,6,5,6,15,14,13,0,9,6,13,11,7,2,7,12,2,1,0,12,5,12,14,3,14,11,6,1", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"15\", \"6\", \"4\"], \"clip_start\": 74.0, \"clip_end\": 78.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,1,13,7,12,2,6,5,7,7,13,8,15,11,4,11,12,10,3,8,8,14,14,12,3,2,3,12,15,1,15,12,9,7,11,14,8,3,4,14,6,9,6,12,6,0,12,1,3,12,4,5,11,6,13,0,13,1,3,2,11,9,0,11,15,4,12,0,8,14,2,4,0,15,6,4,6,8,0,4,0,13,15,10,0,12,0,4,6,1,4,7,8,14,5,3,8,4,3,6,5,6,15,14,13,0,9,6,13,11,7,2,7,12,2,1,0,12,5,12,14,3,14,11,6,1", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,1,13,7,12,2,6,5,7,7,13,8,15,11,4,11,12,10,3,8,8,14,14,12,3,2,3,12,15,1,15,12,9,7,11,14,8,3,4,14,6,9,6,12,6,0,12,1,3,12,4,5,11,6,13,0,13,1,3,2,11,9,0,11,15,4,12,0,8,14,2,4,0,15,6,4,6,8,0,4,0,13,15,10,0,12,0,4,6,1,4,7,8,14,5,3,8,4,3,6,5,6,15,14,13,0,9,6,13,11,7,2,7,12,2,1,0,12,5,12,14,3,14,11,6,1", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"4\", \"0\", \"15\"], \"clip_start\": 72.0, \"clip_end\": 76.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,1,13,7,12,2,6,5,7,7,13,8,15,11,4,11,12,10,3,8,8,14,14,12,3,2,3,12,15,1,15,12,9,7,11,14,8,3,4,14,6,9,6,12,6,0,12,1,3,12,4,5,11,6,13,0,13,1,3,2,11,9,0,11,15,4,12,0,8,14,2,4,0,15,6,4,6,8,0,4,0,13,15,10,0,12,0,4,6,1,4,7,8,14,5,3,8,4,3,6,5,6,15,14,13,0,9,6,13,11,7,2,7,12,2,1,0,12,5,12,14,3,14,11,6,1", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"5\", \"3\", \"8\"], \"clip_start\": 95.0, \"clip_end\": 99.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,1,13,7,12,2,6,5,7,7,13,8,15,11,4,11,12,10,3,8,8,14,14,12,3,2,3,12,15,1,15,12,9,7,11,14,8,3,4,14,6,9,6,12,6,0,12,1,3,12,4,5,11,6,13,0,13,1,3,2,11,9,0,11,15,4,12,0,8,14,2,4,0,15,6,4,6,8,0,4,0,13,15,10,0,12,0,4,6,1,4,7,8,14,5,3,8,4,3,6,5,6,15,14,13,0,9,6,13,11,7,2,7,12,2,1,0,12,5,12,14,3,14,11,6,1", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"4\", \"12\", \"0\"], \"clip_start\": 65.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,1,13,7,12,2,6,5,7,7,13,8,15,11,4,11,12,10,3,8,8,14,14,12,3,2,3,12,15,1,15,12,9,7,11,14,8,3,4,14,6,9,6,12,6,0,12,1,3,12,4,5,11,6,13,0,13,1,3,2,11,9,0,11,15,4,12,0,8,14,2,4,0,15,6,4,6,8,0,4,0,13,15,10,0,12,0,4,6,1,4,7,8,14,5,3,8,4,3,6,5,6,15,14,13,0,9,6,13,11,7,2,7,12,2,1,0,12,5,12,14,3,14,11,6,1", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\", \"11\", \"12\"], \"clip_start\": 14.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,1,13,7,12,2,6,5,7,7,13,8,15,11,4,11,12,10,3,8,8,14,14,12,3,2,3,12,15,1,15,12,9,7,11,14,8,3,4,14,6,9,6,12,6,0,12,1,3,12,4,5,11,6,13,0,13,1,3,2,11,9,0,11,15,4,12,0,8,14,2,4,0,15,6,4,6,8,0,4,0,13,15,10,0,12,0,4,6,1,4,7,8,14,5,3,8,4,3,6,5,6,15,14,13,0,9,6,13,11,7,2,7,12,2,1,0,12,5,12,14,3,14,11,6,1", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"2\", \"6\", \"5\", \"7\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,1,13,7,12,2,6,5,7,7,13,8,15,11,4,11,12,10,3,8,8,14,14,12,3,2,3,12,15,1,15,12,9,7,11,14,8,3,4,14,6,9,6,12,6,0,12,1,3,12,4,5,11,6,13,0,13,1,3,2,11,9,0,11,15,4,12,0,8,14,2,4,0,15,6,4,6,8,0,4,0,13,15,10,0,12,0,4,6,1,4,7,8,14,5,3,8,4,3,6,5,6,15,14,13,0,9,6,13,11,7,2,7,12,2,1,0,12,5,12,14,3,14,11,6,1", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"6\", \"13\", \"11\", \"7\"], \"clip_start\": 107.0, \"clip_end\": 113.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,1,13,7,12,2,6,5,7,7,13,8,15,11,4,11,12,10,3,8,8,14,14,12,3,2,3,12,15,1,15,12,9,7,11,14,8,3,4,14,6,9,6,12,6,0,12,1,3,12,4,5,11,6,13,0,13,1,3,2,11,9,0,11,15,4,12,0,8,14,2,4,0,15,6,4,6,8,0,4,0,13,15,10,0,12,0,4,6,1,4,7,8,14,5,3,8,4,3,6,5,6,15,14,13,0,9,6,13,11,7,2,7,12,2,1,0,12,5,12,14,3,14,11,6,1", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"6\", \"5\", \"6\"], \"clip_start\": 99.0, \"clip_end\": 104.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,1,13,7,12,2,6,5,7,7,13,8,15,11,4,11,12,10,3,8,8,14,14,12,3,2,3,12,15,1,15,12,9,7,11,14,8,3,4,14,6,9,6,12,6,0,12,1,3,12,4,5,11,6,13,0,13,1,3,2,11,9,0,11,15,4,12,0,8,14,2,4,0,15,6,4,6,8,0,4,0,13,15,10,0,12,0,4,6,1,4,7,8,14,5,3,8,4,3,6,5,6,15,14,13,0,9,6,13,11,7,2,7,12,2,1,0,12,5,12,14,3,14,11,6,1", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"11\", \"7\"], \"clip_start\": 109.0, \"clip_end\": 113.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,1,13,7,12,2,6,5,7,7,13,8,15,11,4,11,12,10,3,8,8,14,14,12,3,2,3,12,15,1,15,12,9,7,11,14,8,3,4,14,6,9,6,12,6,0,12,1,3,12,4,5,11,6,13,0,13,1,3,2,11,9,0,11,15,4,12,0,8,14,2,4,0,15,6,4,6,8,0,4,0,13,15,10,0,12,0,4,6,1,4,7,8,14,5,3,8,4,3,6,5,6,15,14,13,0,9,6,13,11,7,2,7,12,2,1,0,12,5,12,14,3,14,11,6,1", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 5.0, \"clip_end\": 11.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,1,13,7,12,2,6,5,7,7,13,8,15,11,4,11,12,10,3,8,8,14,14,12,3,2,3,12,15,1,15,12,9,7,11,14,8,3,4,14,6,9,6,12,6,0,12,1,3,12,4,5,11,6,13,0,13,1,3,2,11,9,0,11,15,4,12,0,8,14,2,4,0,15,6,4,6,8,0,4,0,13,15,10,0,12,0,4,6,1,4,7,8,14,5,3,8,4,3,6,5,6,15,14,13,0,9,6,13,11,7,2,7,12,2,1,0,12,5,12,14,3,14,11,6,1", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"2\", \"7\"], \"clip_start\": 111.0, \"clip_end\": 115.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,1,13,7,12,2,6,5,7,7,13,8,15,11,4,11,12,10,3,8,8,14,14,12,3,2,3,12,15,1,15,12,9,7,11,14,8,3,4,14,6,9,6,12,6,0,12,1,3,12,4,5,11,6,13,0,13,1,3,2,11,9,0,11,15,4,12,0,8,14,2,4,0,15,6,4,6,8,0,4,0,13,15,10,0,12,0,4,6,1,4,7,8,14,5,3,8,4,3,6,5,6,15,14,13,0,9,6,13,11,7,2,7,12,2,1,0,12,5,12,14,3,14,11,6,1", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"10\"], \"clip_start\": 51.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,1,13,7,12,2,6,5,7,7,13,8,15,11,4,11,12,10,3,8,8,14,14,12,3,2,3,12,15,1,15,12,9,7,11,14,8,3,4,14,6,9,6,12,6,0,12,1,3,12,4,5,11,6,13,0,13,1,3,2,11,9,0,11,15,4,12,0,8,14,2,4,0,15,6,4,6,8,0,4,0,13,15,10,0,12,0,4,6,1,4,7,8,14,5,3,8,4,3,6,5,6,15,14,13,0,9,6,13,11,7,2,7,12,2,1,0,12,5,12,14,3,14,11,6,1", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"11\", \"5\", \"6\", \"6\", \"2\"], \"clip_start\": 101.0, \"clip_end\": 107.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q14_false_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,1,13,7,12,2,6,5,7,7,13,8,15,11,4,11,12,10,3,8,8,14,14,12,3,2,3,12,15,1,15,12,9,7,11,14,8,3,4,14,6,9,6,12,6,0,12,1,3,12,4,5,11,6,13,0,13,1,3,2,11,9,0,11,15,4,12,0,8,14,2,4,0,15,6,4,6,8,0,4,0,13,15,10,0,12,0,4,6,1,4,7,8,14,5,3,8,4,3,6,5,6,15,14,13,0,9,6,13,11,7,2,7,12,2,1,0,12,5,12,14,3,14,11,6,1", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L128_NO_RULES", "source_split": "substream_video", "length_L": 128, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"0\"], \"clip_start\": 62.0, \"clip_end\": 65.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q15_true_sequential.mp4", "video_path": "videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,1,13,7,12,2,6,5,7,7,13,8,15,11,4,11,12,10,3,8,8,14,14,12,3,2,3,12,15,1,15,12,9,7,11,14,8,3,4,14,6,9,6,12,6,0,12,1,3,12,4,5,11,6,13,0,13,1,3,2,11,9,0,11,15,4,12,0,8,14,2,4,0,15,6,4,6,8,0,4,0,13,15,10,0,12,0,4,6,1,4,7,8,14,5,3,8,4,3,6,5,6,15,14,13,0,9,6,13,11,7,2,7,12,2,1,0,12,5,12,14,3,14,11,6,1", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 249.0, \"clip_end\": 255.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,0,13,12,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,7,10,9,12,2,15,14,6,8,15,14,6,11,10,8,0,10,8,0,10,9,12,2,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,1,9,4,13,12,13,12,11,10,8,0,10,2,8,14,2,8,14,9,12,6,6,2,8,14,2,6,1,9,4,6,0,2,4,6,0,2,6,3,2,13,10,4,6,0,2,6,15,14,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,9,4,6,0,15,4,4,6,0,15,4,6,15,14,4,6,0,2,6,15,14,15,13,12,2,4,6,8,4,6,12,15,14,6,8,13,12,2,4,6,8,4,6,12,5,7,4,6,0,15,4,6,15,14,6,8,15,1,9,4,6,0,15,4,6,15,14,14,7,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"8\", \"13\", \"12\"], \"clip_start\": 219.0, \"clip_end\": 223.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,0,13,12,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,7,10,9,12,2,15,14,6,8,15,14,6,11,10,8,0,10,8,0,10,9,12,2,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,1,9,4,13,12,13,12,11,10,8,0,10,2,8,14,2,8,14,9,12,6,6,2,8,14,2,6,1,9,4,6,0,2,4,6,0,2,6,3,2,13,10,4,6,0,2,6,15,14,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,9,4,6,0,15,4,4,6,0,15,4,6,15,14,4,6,0,2,6,15,14,15,13,12,2,4,6,8,4,6,12,15,14,6,8,13,12,2,4,6,8,4,6,12,5,7,4,6,0,15,4,6,15,14,6,8,15,1,9,4,6,0,15,4,6,15,14,14,7,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"6\"], \"clip_start\": 9.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,0,13,12,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,7,10,9,12,2,15,14,6,8,15,14,6,11,10,8,0,10,8,0,10,9,12,2,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,1,9,4,13,12,13,12,11,10,8,0,10,2,8,14,2,8,14,9,12,6,6,2,8,14,2,6,1,9,4,6,0,2,4,6,0,2,6,3,2,13,10,4,6,0,2,6,15,14,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,9,4,6,0,15,4,4,6,0,15,4,6,15,14,4,6,0,2,6,15,14,15,13,12,2,4,6,8,4,6,12,15,14,6,8,13,12,2,4,6,8,4,6,12,5,7,4,6,0,15,4,6,15,14,6,8,15,1,9,4,6,0,15,4,6,15,14,14,7,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"6\", \"8\", \"15\", \"14\", \"6\"], \"clip_start\": 167.0, \"clip_end\": 173.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q3_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,0,13,12,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,7,10,9,12,2,15,14,6,8,15,14,6,11,10,8,0,10,8,0,10,9,12,2,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,1,9,4,13,12,13,12,11,10,8,0,10,2,8,14,2,8,14,9,12,6,6,2,8,14,2,6,1,9,4,6,0,2,4,6,0,2,6,3,2,13,10,4,6,0,2,6,15,14,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,9,4,6,0,15,4,4,6,0,15,4,6,15,14,4,6,0,2,6,15,14,15,13,12,2,4,6,8,4,6,12,15,14,6,8,13,12,2,4,6,8,4,6,12,5,7,4,6,0,15,4,6,15,14,6,8,15,1,9,4,6,0,15,4,6,15,14,14,7,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"6\", \"8\"], \"clip_start\": 76.0, \"clip_end\": 80.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q4_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,0,13,12,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,7,10,9,12,2,15,14,6,8,15,14,6,11,10,8,0,10,8,0,10,9,12,2,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,1,9,4,13,12,13,12,11,10,8,0,10,2,8,14,2,8,14,9,12,6,6,2,8,14,2,6,1,9,4,6,0,2,4,6,0,2,6,3,2,13,10,4,6,0,2,6,15,14,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,9,4,6,0,15,4,4,6,0,15,4,6,15,14,4,6,0,2,6,15,14,15,13,12,2,4,6,8,4,6,12,15,14,6,8,13,12,2,4,6,8,4,6,12,5,7,4,6,0,15,4,6,15,14,6,8,15,1,9,4,6,0,15,4,6,15,14,14,7,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"6\", \"8\", \"15\", \"14\"], \"clip_start\": 60.0, \"clip_end\": 66.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,0,13,12,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,7,10,9,12,2,15,14,6,8,15,14,6,11,10,8,0,10,8,0,10,9,12,2,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,1,9,4,13,12,13,12,11,10,8,0,10,2,8,14,2,8,14,9,12,6,6,2,8,14,2,6,1,9,4,6,0,2,4,6,0,2,6,3,2,13,10,4,6,0,2,6,15,14,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,9,4,6,0,15,4,4,6,0,15,4,6,15,14,4,6,0,2,6,15,14,15,13,12,2,4,6,8,4,6,12,15,14,6,8,13,12,2,4,6,8,4,6,12,5,7,4,6,0,15,4,6,15,14,6,8,15,1,9,4,6,0,15,4,6,15,14,14,7,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"5\", \"7\", \"4\", \"6\"], \"clip_start\": 228.0, \"clip_end\": 234.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,0,13,12,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,7,10,9,12,2,15,14,6,8,15,14,6,11,10,8,0,10,8,0,10,9,12,2,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,1,9,4,13,12,13,12,11,10,8,0,10,2,8,14,2,8,14,9,12,6,6,2,8,14,2,6,1,9,4,6,0,2,4,6,0,2,6,3,2,13,10,4,6,0,2,6,15,14,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,9,4,6,0,15,4,4,6,0,15,4,6,15,14,4,6,0,2,6,15,14,15,13,12,2,4,6,8,4,6,12,15,14,6,8,13,12,2,4,6,8,4,6,12,5,7,4,6,0,15,4,6,15,14,6,8,15,1,9,4,6,0,15,4,6,15,14,14,7,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"5\"], \"clip_start\": 213.0, \"clip_end\": 217.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q7_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,0,13,12,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,7,10,9,12,2,15,14,6,8,15,14,6,11,10,8,0,10,8,0,10,9,12,2,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,1,9,4,13,12,13,12,11,10,8,0,10,2,8,14,2,8,14,9,12,6,6,2,8,14,2,6,1,9,4,6,0,2,4,6,0,2,6,3,2,13,10,4,6,0,2,6,15,14,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,9,4,6,0,15,4,4,6,0,15,4,6,15,14,4,6,0,2,6,15,14,15,13,12,2,4,6,8,4,6,12,15,14,6,8,13,12,2,4,6,8,4,6,12,5,7,4,6,0,15,4,6,15,14,6,8,15,1,9,4,6,0,15,4,6,15,14,14,7,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"4\"], \"clip_start\": 117.0, \"clip_end\": 120.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,0,13,12,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,7,10,9,12,2,15,14,6,8,15,14,6,11,10,8,0,10,8,0,10,9,12,2,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,1,9,4,13,12,13,12,11,10,8,0,10,2,8,14,2,8,14,9,12,6,6,2,8,14,2,6,1,9,4,6,0,2,4,6,0,2,6,3,2,13,10,4,6,0,2,6,15,14,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,9,4,6,0,15,4,4,6,0,15,4,6,15,14,4,6,0,2,6,15,14,15,13,12,2,4,6,8,4,6,12,15,14,6,8,13,12,2,4,6,8,4,6,12,5,7,4,6,0,15,4,6,15,14,6,8,15,1,9,4,6,0,15,4,6,15,14,14,7,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"7\"], \"clip_start\": 186.0, \"clip_end\": 189.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,0,13,12,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,7,10,9,12,2,15,14,6,8,15,14,6,11,10,8,0,10,8,0,10,9,12,2,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,1,9,4,13,12,13,12,11,10,8,0,10,2,8,14,2,8,14,9,12,6,6,2,8,14,2,6,1,9,4,6,0,2,4,6,0,2,6,3,2,13,10,4,6,0,2,6,15,14,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,9,4,6,0,15,4,4,6,0,15,4,6,15,14,4,6,0,2,6,15,14,15,13,12,2,4,6,8,4,6,12,15,14,6,8,13,12,2,4,6,8,4,6,12,5,7,4,6,0,15,4,6,15,14,6,8,15,1,9,4,6,0,15,4,6,15,14,14,7,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\", \"8\", \"0\"], \"clip_start\": 32.0, \"clip_end\": 37.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q10_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,0,13,12,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,7,10,9,12,2,15,14,6,8,15,14,6,11,10,8,0,10,8,0,10,9,12,2,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,1,9,4,13,12,13,12,11,10,8,0,10,2,8,14,2,8,14,9,12,6,6,2,8,14,2,6,1,9,4,6,0,2,4,6,0,2,6,3,2,13,10,4,6,0,2,6,15,14,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,9,4,6,0,15,4,4,6,0,15,4,6,15,14,4,6,0,2,6,15,14,15,13,12,2,4,6,8,4,6,12,15,14,6,8,13,12,2,4,6,8,4,6,12,5,7,4,6,0,15,4,6,15,14,6,8,15,1,9,4,6,0,15,4,6,15,14,14,7,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"8\", \"15\", \"14\", \"6\", \"6\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q11_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,0,13,12,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,7,10,9,12,2,15,14,6,8,15,14,6,11,10,8,0,10,8,0,10,9,12,2,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,1,9,4,13,12,13,12,11,10,8,0,10,2,8,14,2,8,14,9,12,6,6,2,8,14,2,6,1,9,4,6,0,2,4,6,0,2,6,3,2,13,10,4,6,0,2,6,15,14,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,9,4,6,0,15,4,4,6,0,15,4,6,15,14,4,6,0,2,6,15,14,15,13,12,2,4,6,8,4,6,12,15,14,6,8,13,12,2,4,6,8,4,6,12,5,7,4,6,0,15,4,6,15,14,6,8,15,1,9,4,6,0,15,4,6,15,14,14,7,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"0\", \"10\", \"9\"], \"clip_start\": 38.0, \"clip_end\": 42.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q12_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,0,13,12,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,7,10,9,12,2,15,14,6,8,15,14,6,11,10,8,0,10,8,0,10,9,12,2,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,1,9,4,13,12,13,12,11,10,8,0,10,2,8,14,2,8,14,9,12,6,6,2,8,14,2,6,1,9,4,6,0,2,4,6,0,2,6,3,2,13,10,4,6,0,2,6,15,14,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,9,4,6,0,15,4,4,6,0,15,4,6,15,14,4,6,0,2,6,15,14,15,13,12,2,4,6,8,4,6,12,15,14,6,8,13,12,2,4,6,8,4,6,12,5,7,4,6,0,15,4,6,15,14,6,8,15,1,9,4,6,0,15,4,6,15,14,14,7,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"8\", \"0\", \"10\", \"8\"], \"clip_start\": 33.0, \"clip_end\": 39.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q13_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,0,13,12,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,7,10,9,12,2,15,14,6,8,15,14,6,11,10,8,0,10,8,0,10,9,12,2,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,1,9,4,13,12,13,12,11,10,8,0,10,2,8,14,2,8,14,9,12,6,6,2,8,14,2,6,1,9,4,6,0,2,4,6,0,2,6,3,2,13,10,4,6,0,2,6,15,14,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,9,4,6,0,15,4,4,6,0,15,4,6,15,14,4,6,0,2,6,15,14,15,13,12,2,4,6,8,4,6,12,15,14,6,8,13,12,2,4,6,8,4,6,12,5,7,4,6,0,15,4,6,15,14,6,8,15,1,9,4,6,0,15,4,6,15,14,14,7,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"15\", \"3\"], \"clip_start\": 239.0, \"clip_end\": 244.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q14_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,0,13,12,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,7,10,9,12,2,15,14,6,8,15,14,6,11,10,8,0,10,8,0,10,9,12,2,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,1,9,4,13,12,13,12,11,10,8,0,10,2,8,14,2,8,14,9,12,6,6,2,8,14,2,6,1,9,4,6,0,2,4,6,0,2,6,3,2,13,10,4,6,0,2,6,15,14,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,9,4,6,0,15,4,4,6,0,15,4,6,15,14,4,6,0,2,6,15,14,15,13,12,2,4,6,8,4,6,12,15,14,6,8,13,12,2,4,6,8,4,6,12,5,7,4,6,0,15,4,6,15,14,6,8,15,1,9,4,6,0,15,4,6,15,14,14,7,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"0\", \"15\", \"4\", \"6\", \"15\"], \"clip_start\": 233.0, \"clip_end\": 239.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q15_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,8,0,13,12,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,7,10,9,12,2,15,14,6,8,15,14,6,11,10,8,0,10,8,0,10,9,12,2,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,1,9,4,13,12,13,12,11,10,8,0,10,2,8,14,2,8,14,9,12,6,6,2,8,14,2,6,1,9,4,6,0,2,4,6,0,2,6,3,2,13,10,4,6,0,2,6,15,14,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,8,15,14,6,6,9,4,6,0,15,4,4,6,0,15,4,6,15,14,4,6,0,2,6,15,14,15,13,12,2,4,6,8,4,6,12,15,14,6,8,13,12,2,4,6,8,4,6,12,5,7,4,6,0,15,4,6,15,14,6,8,15,1,9,4,6,0,15,4,6,15,14,14,7,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"5\", \"12\", \"5\"], \"clip_start\": 107.0, \"clip_end\": 112.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,15,11,7,14,12,5,3,9,0,11,7,15,5,5,2,13,8,5,4,5,1,7,4,12,5,1,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,5,5,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,15,11,7,14,12,5,14,4,1,15,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,2,2,6,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,2,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,13,12,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"12\", \"5\", \"12\", \"5\"], \"clip_start\": 76.0, \"clip_end\": 82.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,15,11,7,14,12,5,3,9,0,11,7,15,5,5,2,13,8,5,4,5,1,7,4,12,5,1,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,5,5,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,15,11,7,14,12,5,14,4,1,15,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,2,2,6,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,2,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,13,12,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 244.0, \"clip_end\": 250.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,15,11,7,14,12,5,3,9,0,11,7,15,5,5,2,13,8,5,4,5,1,7,4,12,5,1,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,5,5,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,15,11,7,14,12,5,14,4,1,15,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,2,2,6,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,2,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,13,12,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"4\", \"12\", \"5\", \"1\"], \"clip_start\": 195.0, \"clip_end\": 201.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,15,11,7,14,12,5,3,9,0,11,7,15,5,5,2,13,8,5,4,5,1,7,4,12,5,1,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,5,5,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,15,11,7,14,12,5,14,4,1,15,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,2,2,6,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,2,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,13,12,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"0\", \"11\", \"7\", \"15\", \"5\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,15,11,7,14,12,5,3,9,0,11,7,15,5,5,2,13,8,5,4,5,1,7,4,12,5,1,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,5,5,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,15,11,7,14,12,5,14,4,1,15,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,2,2,6,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,2,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,13,12,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"5\", \"12\"], \"clip_start\": 157.0, \"clip_end\": 161.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,15,11,7,14,12,5,3,9,0,11,7,15,5,5,2,13,8,5,4,5,1,7,4,12,5,1,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,5,5,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,15,11,7,14,12,5,14,4,1,15,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,2,2,6,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,2,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,13,12,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"5\", \"1\"], \"clip_start\": 238.0, \"clip_end\": 242.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,15,11,7,14,12,5,3,9,0,11,7,15,5,5,2,13,8,5,4,5,1,7,4,12,5,1,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,5,5,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,15,11,7,14,12,5,14,4,1,15,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,2,2,6,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,2,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,13,12,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 81.0, \"clip_end\": 87.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,15,11,7,14,12,5,3,9,0,11,7,15,5,5,2,13,8,5,4,5,1,7,4,12,5,1,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,5,5,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,15,11,7,14,12,5,14,4,1,15,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,2,2,6,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,2,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,13,12,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 194.0, \"clip_end\": 198.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,15,11,7,14,12,5,3,9,0,11,7,15,5,5,2,13,8,5,4,5,1,7,4,12,5,1,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,5,5,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,15,11,7,14,12,5,14,4,1,15,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,2,2,6,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,2,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,13,12,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"12\", \"5\", \"12\"], \"clip_start\": 88.0, \"clip_end\": 93.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,15,11,7,14,12,5,3,9,0,11,7,15,5,5,2,13,8,5,4,5,1,7,4,12,5,1,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,5,5,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,15,11,7,14,12,5,14,4,1,15,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,2,2,6,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,2,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,13,12,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"12\", \"5\", \"12\", \"5\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,15,11,7,14,12,5,3,9,0,11,7,15,5,5,2,13,8,5,4,5,1,7,4,12,5,1,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,5,5,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,15,11,7,14,12,5,14,4,1,15,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,2,2,6,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,2,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,13,12,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 14.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q11_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,15,11,7,14,12,5,3,9,0,11,7,15,5,5,2,13,8,5,4,5,1,7,4,12,5,1,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,5,5,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,15,11,7,14,12,5,14,4,1,15,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,2,2,6,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,2,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,13,12,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"1\", \"7\", \"4\"], \"clip_start\": 198.0, \"clip_end\": 203.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,15,11,7,14,12,5,3,9,0,11,7,15,5,5,2,13,8,5,4,5,1,7,4,12,5,1,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,5,5,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,15,11,7,14,12,5,14,4,1,15,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,2,2,6,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,2,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,13,12,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"5\", \"12\"], \"clip_start\": 219.0, \"clip_end\": 223.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q13_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,15,11,7,14,12,5,3,9,0,11,7,15,5,5,2,13,8,5,4,5,1,7,4,12,5,1,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,5,5,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,15,11,7,14,12,5,14,4,1,15,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,2,2,6,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,2,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,13,12,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"12\"], \"clip_start\": 60.0, \"clip_end\": 64.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,15,11,7,14,12,5,3,9,0,11,7,15,5,5,2,13,8,5,4,5,1,7,4,12,5,1,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,5,5,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,15,11,7,14,12,5,14,4,1,15,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,2,2,6,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,2,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,13,12,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"5\", \"12\", \"5\", \"12\"], \"clip_start\": 131.0, \"clip_end\": 137.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q15_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,15,11,7,14,12,5,3,9,0,11,7,15,5,5,2,13,8,5,4,5,1,7,4,12,5,1,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,5,5,9,15,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,12,5,15,11,7,14,12,5,14,4,1,15,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,2,2,6,4,12,5,3,9,15,12,5,12,5,12,5,12,5,12,5,2,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,1,7,4,12,5,13,12,5,1,7", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"10\", \"14\", \"15\", \"12\"], \"clip_start\": 54.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,1,4,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,0,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,15,0,9,7,10,14,15,12,3,9,7,10,9,7,10,14,13,5,7,7,5,8,13,9,7,10,9,7,10,14,15,12,3,8,2,15,10,4,3,5,0,12,12,3,10,2,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,6,8,13,4,6,15,10,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,1,2,15,10,4,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,12,3,14,2,15,0,12,3,9,7,10,9,7,10,14,15,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"12\", \"3\", \"9\"], \"clip_start\": 148.0, \"clip_end\": 153.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,1,4,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,0,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,15,0,9,7,10,14,15,12,3,9,7,10,9,7,10,14,13,5,7,7,5,8,13,9,7,10,9,7,10,14,15,12,3,8,2,15,10,4,3,5,0,12,12,3,10,2,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,6,8,13,4,6,15,10,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,1,2,15,10,4,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,12,3,14,2,15,0,12,3,9,7,10,9,7,10,14,15,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"12\", \"3\", \"9\", \"7\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,1,4,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,0,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,15,0,9,7,10,14,15,12,3,9,7,10,9,7,10,14,13,5,7,7,5,8,13,9,7,10,9,7,10,14,15,12,3,8,2,15,10,4,3,5,0,12,12,3,10,2,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,6,8,13,4,6,15,10,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,1,2,15,10,4,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,12,3,14,2,15,0,12,3,9,7,10,9,7,10,14,15,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"10\", \"9\", \"4\"], \"clip_start\": 234.0, \"clip_end\": 239.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,1,4,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,0,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,15,0,9,7,10,14,15,12,3,9,7,10,9,7,10,14,13,5,7,7,5,8,13,9,7,10,9,7,10,14,15,12,3,8,2,15,10,4,3,5,0,12,12,3,10,2,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,6,8,13,4,6,15,10,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,1,2,15,10,4,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,12,3,14,2,15,0,12,3,9,7,10,9,7,10,14,15,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"7\", \"10\"], \"clip_start\": 172.0, \"clip_end\": 176.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,1,4,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,0,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,15,0,9,7,10,14,15,12,3,9,7,10,9,7,10,14,13,5,7,7,5,8,13,9,7,10,9,7,10,14,15,12,3,8,2,15,10,4,3,5,0,12,12,3,10,2,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,6,8,13,4,6,15,10,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,1,2,15,10,4,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,12,3,14,2,15,0,12,3,9,7,10,9,7,10,14,15,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"9\", \"7\", \"10\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q5_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,1,4,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,0,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,15,0,9,7,10,14,15,12,3,9,7,10,9,7,10,14,13,5,7,7,5,8,13,9,7,10,9,7,10,14,15,12,3,8,2,15,10,4,3,5,0,12,12,3,10,2,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,6,8,13,4,6,15,10,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,1,2,15,10,4,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,12,3,14,2,15,0,12,3,9,7,10,9,7,10,14,15,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"7\", \"5\", \"8\", \"13\"], \"clip_start\": 114.0, \"clip_end\": 119.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,1,4,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,0,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,15,0,9,7,10,14,15,12,3,9,7,10,9,7,10,14,13,5,7,7,5,8,13,9,7,10,9,7,10,14,15,12,3,8,2,15,10,4,3,5,0,12,12,3,10,2,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,6,8,13,4,6,15,10,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,1,2,15,10,4,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,12,3,14,2,15,0,12,3,9,7,10,9,7,10,14,15,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"3\", \"9\", \"7\", \"10\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,1,4,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,0,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,15,0,9,7,10,14,15,12,3,9,7,10,9,7,10,14,13,5,7,7,5,8,13,9,7,10,9,7,10,14,15,12,3,8,2,15,10,4,3,5,0,12,12,3,10,2,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,6,8,13,4,6,15,10,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,1,2,15,10,4,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,12,3,14,2,15,0,12,3,9,7,10,9,7,10,14,15,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"5\", \"7\"], \"clip_start\": 111.0, \"clip_end\": 115.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q8_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,1,4,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,0,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,15,0,9,7,10,14,15,12,3,9,7,10,9,7,10,14,13,5,7,7,5,8,13,9,7,10,9,7,10,14,15,12,3,8,2,15,10,4,3,5,0,12,12,3,10,2,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,6,8,13,4,6,15,10,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,1,2,15,10,4,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,12,3,14,2,15,0,12,3,9,7,10,9,7,10,14,15,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"7\", \"10\", \"9\"], \"clip_start\": 50.0, \"clip_end\": 55.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q9_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,1,4,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,0,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,15,0,9,7,10,14,15,12,3,9,7,10,9,7,10,14,13,5,7,7,5,8,13,9,7,10,9,7,10,14,15,12,3,8,2,15,10,4,3,5,0,12,12,3,10,2,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,6,8,13,4,6,15,10,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,1,2,15,10,4,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,12,3,14,2,15,0,12,3,9,7,10,9,7,10,14,15,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"12\", \"3\", \"9\", \"7\"], \"clip_start\": 179.0, \"clip_end\": 185.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q10_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,1,4,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,0,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,15,0,9,7,10,14,15,12,3,9,7,10,9,7,10,14,13,5,7,7,5,8,13,9,7,10,9,7,10,14,15,12,3,8,2,15,10,4,3,5,0,12,12,3,10,2,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,6,8,13,4,6,15,10,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,1,2,15,10,4,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,12,3,14,2,15,0,12,3,9,7,10,9,7,10,14,15,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"15\", \"10\", \"4\", \"3\", \"5\"], \"clip_start\": 130.0, \"clip_end\": 136.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q11_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,1,4,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,0,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,15,0,9,7,10,14,15,12,3,9,7,10,9,7,10,14,13,5,7,7,5,8,13,9,7,10,9,7,10,14,15,12,3,8,2,15,10,4,3,5,0,12,12,3,10,2,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,6,8,13,4,6,15,10,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,1,2,15,10,4,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,12,3,14,2,15,0,12,3,9,7,10,9,7,10,14,15,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"10\", \"14\", \"15\", \"12\"], \"clip_start\": 98.0, \"clip_end\": 104.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q12_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,1,4,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,0,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,15,0,9,7,10,14,15,12,3,9,7,10,9,7,10,14,13,5,7,7,5,8,13,9,7,10,9,7,10,14,15,12,3,8,2,15,10,4,3,5,0,12,12,3,10,2,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,6,8,13,4,6,15,10,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,1,2,15,10,4,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,12,3,14,2,15,0,12,3,9,7,10,9,7,10,14,15,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"9\", \"1\", \"6\"], \"clip_start\": 101.0, \"clip_end\": 106.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q13_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,1,4,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,0,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,15,0,9,7,10,14,15,12,3,9,7,10,9,7,10,14,13,5,7,7,5,8,13,9,7,10,9,7,10,14,15,12,3,8,2,15,10,4,3,5,0,12,12,3,10,2,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,6,8,13,4,6,15,10,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,1,2,15,10,4,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,12,3,14,2,15,0,12,3,9,7,10,9,7,10,14,15,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"7\", \"10\", \"9\"], \"clip_start\": 91.0, \"clip_end\": 96.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q14_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,1,4,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,0,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,15,0,9,7,10,14,15,12,3,9,7,10,9,7,10,14,13,5,7,7,5,8,13,9,7,10,9,7,10,14,15,12,3,8,2,15,10,4,3,5,0,12,12,3,10,2,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,6,8,13,4,6,15,10,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,1,2,15,10,4,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,12,3,14,2,15,0,12,3,9,7,10,9,7,10,14,15,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"0\"], \"clip_start\": 107.0, \"clip_end\": 111.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q15_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,1,4,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,0,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,15,0,9,7,10,14,15,12,3,9,7,10,9,7,10,14,13,5,7,7,5,8,13,9,7,10,9,7,10,14,15,12,3,8,2,15,10,4,3,5,0,12,12,3,10,2,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,6,8,13,4,6,15,10,4,3,5,0,12,12,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,7,10,14,15,1,2,15,10,4,3,9,7,10,9,7,10,14,15,12,3,9,7,10,9,4,12,3,14,2,15,0,12,3,9,7,10,9,7,10,14,15,12", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"4\", \"7\", \"4\", \"14\", \"7\"], \"clip_start\": 172.0, \"clip_end\": 178.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,0,4,13,14,7,7,14,7,4,7,4,14,3,9,15,4,13,14,4,13,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,1,0,14,0,5,8,15,4,15,4,13,14,4,10,3,9,15,15,11,0,8,2,12,4,13,14,7,7,14,7,4,7,4,14,3,9,15,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,3,9,15,4,13,14,4,11,0,8,15,1,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,0,4,13,14,7,7,14,7,4,7,4,14,7,4,8,15,4,13,14,4,13,6,0,14,0,5,1,0,13,10,12,12,3,9,15,4,13,14,4,13,14", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"7\", \"14\", \"7\", \"4\"], \"clip_start\": 159.0, \"clip_end\": 164.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,0,4,13,14,7,7,14,7,4,7,4,14,3,9,15,4,13,14,4,13,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,1,0,14,0,5,8,15,4,15,4,13,14,4,10,3,9,15,15,11,0,8,2,12,4,13,14,7,7,14,7,4,7,4,14,3,9,15,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,3,9,15,4,13,14,4,11,0,8,15,1,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,0,4,13,14,7,7,14,7,4,7,4,14,7,4,8,15,4,13,14,4,13,6,0,14,0,5,1,0,13,10,12,12,3,9,15,4,13,14,4,13,14", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"6\", \"0\", \"14\"], \"clip_start\": 234.0, \"clip_end\": 239.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,0,4,13,14,7,7,14,7,4,7,4,14,3,9,15,4,13,14,4,13,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,1,0,14,0,5,8,15,4,15,4,13,14,4,10,3,9,15,15,11,0,8,2,12,4,13,14,7,7,14,7,4,7,4,14,3,9,15,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,3,9,15,4,13,14,4,11,0,8,15,1,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,0,4,13,14,7,7,14,7,4,7,4,14,7,4,8,15,4,13,14,4,13,6,0,14,0,5,1,0,13,10,12,12,3,9,15,4,13,14,4,13,14", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"13\", \"14\", \"7\"], \"clip_start\": 30.0, \"clip_end\": 35.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,0,4,13,14,7,7,14,7,4,7,4,14,3,9,15,4,13,14,4,13,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,1,0,14,0,5,8,15,4,15,4,13,14,4,10,3,9,15,15,11,0,8,2,12,4,13,14,7,7,14,7,4,7,4,14,3,9,15,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,3,9,15,4,13,14,4,11,0,8,15,1,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,0,4,13,14,7,7,14,7,4,7,4,14,7,4,8,15,4,13,14,4,13,6,0,14,0,5,1,0,13,10,12,12,3,9,15,4,13,14,4,13,14", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"7\"], \"clip_start\": 35.0, \"clip_end\": 38.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,0,4,13,14,7,7,14,7,4,7,4,14,3,9,15,4,13,14,4,13,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,1,0,14,0,5,8,15,4,15,4,13,14,4,10,3,9,15,15,11,0,8,2,12,4,13,14,7,7,14,7,4,7,4,14,3,9,15,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,3,9,15,4,13,14,4,11,0,8,15,1,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,0,4,13,14,7,7,14,7,4,7,4,14,7,4,8,15,4,13,14,4,13,6,0,14,0,5,1,0,13,10,12,12,3,9,15,4,13,14,4,13,14", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"3\", \"9\", \"15\", \"4\"], \"clip_start\": 181.0, \"clip_end\": 187.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,0,4,13,14,7,7,14,7,4,7,4,14,3,9,15,4,13,14,4,13,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,1,0,14,0,5,8,15,4,15,4,13,14,4,10,3,9,15,15,11,0,8,2,12,4,13,14,7,7,14,7,4,7,4,14,3,9,15,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,3,9,15,4,13,14,4,11,0,8,15,1,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,0,4,13,14,7,7,14,7,4,7,4,14,7,4,8,15,4,13,14,4,13,6,0,14,0,5,1,0,13,10,12,12,3,9,15,4,13,14,4,13,14", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 132.0, \"clip_end\": 135.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,0,4,13,14,7,7,14,7,4,7,4,14,3,9,15,4,13,14,4,13,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,1,0,14,0,5,8,15,4,15,4,13,14,4,10,3,9,15,15,11,0,8,2,12,4,13,14,7,7,14,7,4,7,4,14,3,9,15,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,3,9,15,4,13,14,4,11,0,8,15,1,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,0,4,13,14,7,7,14,7,4,7,4,14,7,4,8,15,4,13,14,4,13,6,0,14,0,5,1,0,13,10,12,12,3,9,15,4,13,14,4,13,14", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"4\", \"14\", \"7\", \"4\", \"7\"], \"clip_start\": 62.0, \"clip_end\": 68.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,0,4,13,14,7,7,14,7,4,7,4,14,3,9,15,4,13,14,4,13,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,1,0,14,0,5,8,15,4,15,4,13,14,4,10,3,9,15,15,11,0,8,2,12,4,13,14,7,7,14,7,4,7,4,14,3,9,15,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,3,9,15,4,13,14,4,11,0,8,15,1,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,0,4,13,14,7,7,14,7,4,7,4,14,7,4,8,15,4,13,14,4,13,6,0,14,0,5,1,0,13,10,12,12,3,9,15,4,13,14,4,13,14", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"14\", \"4\"], \"clip_start\": 201.0, \"clip_end\": 205.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,0,4,13,14,7,7,14,7,4,7,4,14,3,9,15,4,13,14,4,13,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,1,0,14,0,5,8,15,4,15,4,13,14,4,10,3,9,15,15,11,0,8,2,12,4,13,14,7,7,14,7,4,7,4,14,3,9,15,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,3,9,15,4,13,14,4,11,0,8,15,1,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,0,4,13,14,7,7,14,7,4,7,4,14,7,4,8,15,4,13,14,4,13,6,0,14,0,5,1,0,13,10,12,12,3,9,15,4,13,14,4,13,14", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"14\", \"7\", \"4\"], \"clip_start\": 58.0, \"clip_end\": 62.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,0,4,13,14,7,7,14,7,4,7,4,14,3,9,15,4,13,14,4,13,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,1,0,14,0,5,8,15,4,15,4,13,14,4,10,3,9,15,15,11,0,8,2,12,4,13,14,7,7,14,7,4,7,4,14,3,9,15,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,3,9,15,4,13,14,4,11,0,8,15,1,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,0,4,13,14,7,7,14,7,4,7,4,14,7,4,8,15,4,13,14,4,13,6,0,14,0,5,1,0,13,10,12,12,3,9,15,4,13,14,4,13,14", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"0\", \"5\", \"1\"], \"clip_start\": 238.0, \"clip_end\": 242.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,0,4,13,14,7,7,14,7,4,7,4,14,3,9,15,4,13,14,4,13,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,1,0,14,0,5,8,15,4,15,4,13,14,4,10,3,9,15,15,11,0,8,2,12,4,13,14,7,7,14,7,4,7,4,14,3,9,15,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,3,9,15,4,13,14,4,11,0,8,15,1,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,0,4,13,14,7,7,14,7,4,7,4,14,7,4,8,15,4,13,14,4,13,6,0,14,0,5,1,0,13,10,12,12,3,9,15,4,13,14,4,13,14", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 16.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,0,4,13,14,7,7,14,7,4,7,4,14,3,9,15,4,13,14,4,13,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,1,0,14,0,5,8,15,4,15,4,13,14,4,10,3,9,15,15,11,0,8,2,12,4,13,14,7,7,14,7,4,7,4,14,3,9,15,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,3,9,15,4,13,14,4,11,0,8,15,1,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,0,4,13,14,7,7,14,7,4,7,4,14,7,4,8,15,4,13,14,4,13,6,0,14,0,5,1,0,13,10,12,12,3,9,15,4,13,14,4,13,14", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"9\", \"15\"], \"clip_start\": 13.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,0,4,13,14,7,7,14,7,4,7,4,14,3,9,15,4,13,14,4,13,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,1,0,14,0,5,8,15,4,15,4,13,14,4,10,3,9,15,15,11,0,8,2,12,4,13,14,7,7,14,7,4,7,4,14,3,9,15,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,3,9,15,4,13,14,4,11,0,8,15,1,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,0,4,13,14,7,7,14,7,4,7,4,14,7,4,8,15,4,13,14,4,13,6,0,14,0,5,1,0,13,10,12,12,3,9,15,4,13,14,4,13,14", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 251.0, \"clip_end\": 254.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,0,4,13,14,7,7,14,7,4,7,4,14,3,9,15,4,13,14,4,13,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,1,0,14,0,5,8,15,4,15,4,13,14,4,10,3,9,15,15,11,0,8,2,12,4,13,14,7,7,14,7,4,7,4,14,3,9,15,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,3,9,15,4,13,14,4,11,0,8,15,1,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,0,4,13,14,7,7,14,7,4,7,4,14,7,4,8,15,4,13,14,4,13,6,0,14,0,5,1,0,13,10,12,12,3,9,15,4,13,14,4,13,14", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"3\", \"9\"], \"clip_start\": 245.0, \"clip_end\": 249.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,0,4,13,14,7,7,14,7,4,7,4,14,3,9,15,4,13,14,4,13,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,1,0,14,0,5,8,15,4,15,4,13,14,4,10,3,9,15,15,11,0,8,2,12,4,13,14,7,7,14,7,4,7,4,14,3,9,15,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,3,9,15,4,13,14,4,11,0,8,15,1,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,0,4,13,14,7,7,14,7,4,7,4,14,7,4,8,15,4,13,14,4,13,6,0,14,0,5,1,0,13,10,12,12,3,9,15,4,13,14,4,13,14", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 79.0, \"clip_end\": 85.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,0,4,13,14,7,7,14,7,4,7,4,14,3,9,15,4,13,14,4,13,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,1,0,14,0,5,8,15,4,15,4,13,14,4,10,3,9,15,15,11,0,8,2,12,4,13,14,7,7,14,7,4,7,4,14,3,9,15,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,4,7,4,14,7,3,9,15,4,13,14,4,11,0,8,15,1,0,14,0,5,8,15,4,13,14,4,13,14,7,7,14,7,4,7,4,14,0,4,13,14,7,7,14,7,4,7,4,14,7,4,8,15,4,13,14,4,13,6,0,14,0,5,1,0,13,10,12,12,3,9,15,4,13,14,4,13,14", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"8\", \"15\", \"3\", \"6\", \"8\"], \"clip_start\": 109.0, \"clip_end\": 115.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,3,3,6,8,15,3,7,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,4,8,3,3,2,10,6,8,10,8,1,11,1,4,8,0,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,6,8,12,2,15,1,8,15,3,6,8,10,8,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,11,1,4,8,13,12,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,8,1,2,6,5,1,5,8,0,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"8\", \"7\", \"8\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,3,3,6,8,15,3,7,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,4,8,3,3,2,10,6,8,10,8,1,11,1,4,8,0,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,6,8,12,2,15,1,8,15,3,6,8,10,8,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,11,1,4,8,13,12,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,8,1,2,6,5,1,5,8,0,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"7\", \"8\", \"10\"], \"clip_start\": 94.0, \"clip_end\": 99.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,3,3,6,8,15,3,7,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,4,8,3,3,2,10,6,8,10,8,1,11,1,4,8,0,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,6,8,12,2,15,1,8,15,3,6,8,10,8,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,11,1,4,8,13,12,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,8,1,2,6,5,1,5,8,0,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 215.0, \"clip_end\": 220.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,3,3,6,8,15,3,7,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,4,8,3,3,2,10,6,8,10,8,1,11,1,4,8,0,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,6,8,12,2,15,1,8,15,3,6,8,10,8,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,11,1,4,8,13,12,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,8,1,2,6,5,1,5,8,0,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 207.0, \"clip_end\": 210.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,3,3,6,8,15,3,7,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,4,8,3,3,2,10,6,8,10,8,1,11,1,4,8,0,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,6,8,12,2,15,1,8,15,3,6,8,10,8,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,11,1,4,8,13,12,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,8,1,2,6,5,1,5,8,0,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"5\", \"8\", \"0\", \"12\"], \"clip_start\": 171.0, \"clip_end\": 177.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,3,3,6,8,15,3,7,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,4,8,3,3,2,10,6,8,10,8,1,11,1,4,8,0,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,6,8,12,2,15,1,8,15,3,6,8,10,8,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,11,1,4,8,13,12,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,8,1,2,6,5,1,5,8,0,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"2\", \"6\"], \"clip_start\": 167.0, \"clip_end\": 171.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,3,3,6,8,15,3,7,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,4,8,3,3,2,10,6,8,10,8,1,11,1,4,8,0,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,6,8,12,2,15,1,8,15,3,6,8,10,8,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,11,1,4,8,13,12,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,8,1,2,6,5,1,5,8,0,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"8\", \"7\", \"7\", \"8\"], \"clip_start\": 190.0, \"clip_end\": 196.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,3,3,6,8,15,3,7,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,4,8,3,3,2,10,6,8,10,8,1,11,1,4,8,0,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,6,8,12,2,15,1,8,15,3,6,8,10,8,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,11,1,4,8,13,12,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,8,1,2,6,5,1,5,8,0,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"6\", \"6\", \"1\", \"8\", \"7\"], \"clip_start\": 179.0, \"clip_end\": 185.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,3,3,6,8,15,3,7,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,4,8,3,3,2,10,6,8,10,8,1,11,1,4,8,0,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,6,8,12,2,15,1,8,15,3,6,8,10,8,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,11,1,4,8,13,12,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,8,1,2,6,5,1,5,8,0,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 118.0, \"clip_end\": 122.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,3,3,6,8,15,3,7,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,4,8,3,3,2,10,6,8,10,8,1,11,1,4,8,0,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,6,8,12,2,15,1,8,15,3,6,8,10,8,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,11,1,4,8,13,12,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,8,1,2,6,5,1,5,8,0,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 209.0, \"clip_end\": 213.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,3,3,6,8,15,3,7,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,4,8,3,3,2,10,6,8,10,8,1,11,1,4,8,0,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,6,8,12,2,15,1,8,15,3,6,8,10,8,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,11,1,4,8,13,12,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,8,1,2,6,5,1,5,8,0,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"13\", \"12\", \"1\", \"8\"], \"clip_start\": 139.0, \"clip_end\": 145.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,3,3,6,8,15,3,7,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,4,8,3,3,2,10,6,8,10,8,1,11,1,4,8,0,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,6,8,12,2,15,1,8,15,3,6,8,10,8,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,11,1,4,8,13,12,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,8,1,2,6,5,1,5,8,0,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"8\", \"7\"], \"clip_start\": 32.0, \"clip_end\": 36.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,3,3,6,8,15,3,7,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,4,8,3,3,2,10,6,8,10,8,1,11,1,4,8,0,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,6,8,12,2,15,1,8,15,3,6,8,10,8,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,11,1,4,8,13,12,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,8,1,2,6,5,1,5,8,0,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"1\", \"5\"], \"clip_start\": 80.0, \"clip_end\": 84.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,3,3,6,8,15,3,7,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,4,8,3,3,2,10,6,8,10,8,1,11,1,4,8,0,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,6,8,12,2,15,1,8,15,3,6,8,10,8,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,11,1,4,8,13,12,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,8,1,2,6,5,1,5,8,0,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"11\", \"1\", \"4\", \"8\"], \"clip_start\": 45.0, \"clip_end\": 51.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,3,3,6,8,15,3,7,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,4,8,3,3,2,10,6,8,10,8,1,11,1,4,8,0,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,6,8,12,2,15,1,8,15,3,6,8,10,8,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,11,1,4,8,13,12,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,8,1,2,6,5,1,5,8,0,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"1\", \"5\", \"1\", \"3\"], \"clip_start\": 131.0, \"clip_end\": 137.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,8,3,3,6,8,15,3,7,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,8,7,4,8,3,3,2,10,6,8,10,8,1,11,1,4,8,0,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,6,8,12,2,15,1,8,15,3,6,8,10,8,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,11,1,4,8,13,12,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,8,1,2,6,5,1,5,8,0,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,3,12,12,1,2,14,6,6,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8,7,7,8,10,5,1,5,1,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"3\", \"3\", \"3\", \"3\"], \"clip_start\": 204.0, \"clip_end\": 210.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,6,11,1,10,9,5,6,13,11,11,2,0,6,1,10,9,5,2,11,3,2,10,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,7,0,6,6,4,15,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,4,12,4,4,7,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7,12,0,13,11,11,2,9,2,2,11,3,3,3,3,3,3,3,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,11,10,6,11,1,10,9,5,6,13,11,11,2,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,1,10,9,11,1,10,3,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"11\", \"11\"], \"clip_start\": 125.0, \"clip_end\": 129.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,6,11,1,10,9,5,6,13,11,11,2,0,6,1,10,9,5,2,11,3,2,10,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,7,0,6,6,4,15,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,4,12,4,4,7,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7,12,0,13,11,11,2,9,2,2,11,3,3,3,3,3,3,3,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,11,10,6,11,1,10,9,5,6,13,11,11,2,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,1,10,9,11,1,10,3,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"3\", \"3\", \"3\", \"3\"], \"clip_start\": 29.0, \"clip_end\": 35.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,6,11,1,10,9,5,6,13,11,11,2,0,6,1,10,9,5,2,11,3,2,10,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,7,0,6,6,4,15,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,4,12,4,4,7,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7,12,0,13,11,11,2,9,2,2,11,3,3,3,3,3,3,3,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,11,10,6,11,1,10,9,5,6,13,11,11,2,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,1,10,9,11,1,10,3,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 36.0, \"clip_end\": 39.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,6,11,1,10,9,5,6,13,11,11,2,0,6,1,10,9,5,2,11,3,2,10,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,7,0,6,6,4,15,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,4,12,4,4,7,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7,12,0,13,11,11,2,9,2,2,11,3,3,3,3,3,3,3,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,11,10,6,11,1,10,9,5,6,13,11,11,2,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,1,10,9,11,1,10,3,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"7\", \"0\", \"9\", \"7\"], \"clip_start\": 151.0, \"clip_end\": 156.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,6,11,1,10,9,5,6,13,11,11,2,0,6,1,10,9,5,2,11,3,2,10,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,7,0,6,6,4,15,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,4,12,4,4,7,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7,12,0,13,11,11,2,9,2,2,11,3,3,3,3,3,3,3,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,11,10,6,11,1,10,9,5,6,13,11,11,2,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,1,10,9,11,1,10,3,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"3\", \"3\", \"3\", \"3\"], \"clip_start\": 219.0, \"clip_end\": 225.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,6,11,1,10,9,5,6,13,11,11,2,0,6,1,10,9,5,2,11,3,2,10,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,7,0,6,6,4,15,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,4,12,4,4,7,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7,12,0,13,11,11,2,9,2,2,11,3,3,3,3,3,3,3,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,11,10,6,11,1,10,9,5,6,13,11,11,2,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,1,10,9,11,1,10,3,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"11\", \"1\", \"10\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q6_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,6,11,1,10,9,5,6,13,11,11,2,0,6,1,10,9,5,2,11,3,2,10,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,7,0,6,6,4,15,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,4,12,4,4,7,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7,12,0,13,11,11,2,9,2,2,11,3,3,3,3,3,3,3,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,11,10,6,11,1,10,9,5,6,13,11,11,2,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,1,10,9,11,1,10,3,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"3\", \"3\", \"3\", \"3\"], \"clip_start\": 33.0, \"clip_end\": 39.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q7_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,6,11,1,10,9,5,6,13,11,11,2,0,6,1,10,9,5,2,11,3,2,10,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,7,0,6,6,4,15,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,4,12,4,4,7,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7,12,0,13,11,11,2,9,2,2,11,3,3,3,3,3,3,3,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,11,10,6,11,1,10,9,5,6,13,11,11,2,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,1,10,9,11,1,10,3,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"2\", \"7\", \"7\", \"7\"], \"clip_start\": 147.0, \"clip_end\": 152.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,6,11,1,10,9,5,6,13,11,11,2,0,6,1,10,9,5,2,11,3,2,10,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,7,0,6,6,4,15,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,4,12,4,4,7,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7,12,0,13,11,11,2,9,2,2,11,3,3,3,3,3,3,3,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,11,10,6,11,1,10,9,5,6,13,11,11,2,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,1,10,9,11,1,10,3,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"3\", \"3\"], \"clip_start\": 194.0, \"clip_end\": 198.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q9_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,6,11,1,10,9,5,6,13,11,11,2,0,6,1,10,9,5,2,11,3,2,10,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,7,0,6,6,4,15,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,4,12,4,4,7,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7,12,0,13,11,11,2,9,2,2,11,3,3,3,3,3,3,3,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,11,10,6,11,1,10,9,5,6,13,11,11,2,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,1,10,9,11,1,10,3,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"2\", \"11\", \"3\", \"3\"], \"clip_start\": 173.0, \"clip_end\": 178.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q10_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,6,11,1,10,9,5,6,13,11,11,2,0,6,1,10,9,5,2,11,3,2,10,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,7,0,6,6,4,15,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,4,12,4,4,7,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7,12,0,13,11,11,2,9,2,2,11,3,3,3,3,3,3,3,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,11,10,6,11,1,10,9,5,6,13,11,11,2,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,1,10,9,11,1,10,3,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"9\", \"7\", \"7\", \"7\"], \"clip_start\": 247.0, \"clip_end\": 253.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,6,11,1,10,9,5,6,13,11,11,2,0,6,1,10,9,5,2,11,3,2,10,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,7,0,6,6,4,15,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,4,12,4,4,7,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7,12,0,13,11,11,2,9,2,2,11,3,3,3,3,3,3,3,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,11,10,6,11,1,10,9,5,6,13,11,11,2,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,1,10,9,11,1,10,3,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"3\", \"3\", \"3\", \"3\"], \"clip_start\": 38.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,6,11,1,10,9,5,6,13,11,11,2,0,6,1,10,9,5,2,11,3,2,10,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,7,0,6,6,4,15,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,4,12,4,4,7,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7,12,0,13,11,11,2,9,2,2,11,3,3,3,3,3,3,3,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,11,10,6,11,1,10,9,5,6,13,11,11,2,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,1,10,9,11,1,10,3,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"3\", \"3\", \"3\"], \"clip_start\": 197.0, \"clip_end\": 202.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q13_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,6,11,1,10,9,5,6,13,11,11,2,0,6,1,10,9,5,2,11,3,2,10,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,7,0,6,6,4,15,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,4,12,4,4,7,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7,12,0,13,11,11,2,9,2,2,11,3,3,3,3,3,3,3,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,11,10,6,11,1,10,9,5,6,13,11,11,2,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,1,10,9,11,1,10,3,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\", \"2\", \"15\", \"0\"], \"clip_start\": 225.0, \"clip_end\": 231.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q14_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,6,11,1,10,9,5,6,13,11,11,2,0,6,1,10,9,5,2,11,3,2,10,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,7,0,6,6,4,15,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,4,12,4,4,7,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7,12,0,13,11,11,2,9,2,2,11,3,3,3,3,3,3,3,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,11,10,6,11,1,10,9,5,6,13,11,11,2,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,1,10,9,11,1,10,3,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"3\", \"3\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q15_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,0,6,11,1,10,9,5,6,13,11,11,2,0,6,1,10,9,5,2,11,3,2,10,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,7,0,6,6,4,15,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,4,12,4,4,7,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7,12,0,13,11,11,2,9,2,2,11,3,3,3,3,3,3,3,7,0,6,12,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,11,10,6,11,1,10,9,5,6,13,11,11,2,2,11,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,1,10,9,11,1,10,3,12,9,9,2,7,7,7,7,0,9,7,7,7,0,9,7,7,7,0,9,7", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"4\", \"6\", \"3\"], \"clip_start\": 184.0, \"clip_end\": 189.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,8,8,15,1,3,14,12,4,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,15,11,0,14,7,8,10,6,7,12,7,8,10,9,14,10,14,10,12,4,0,4,0,7,3,14,3,1,11,14,13,3,3,14,12,4,0,6,1,15,11,3,14,15,15,11,0,14,15,15,11,0,8,15,1,3,14,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,5,14,12,5,14,13,3,4,0,13,4,6,3,0,9,13,1,15,11,3,14,15,15,11,0,14,7,8,10,12,7,8,14,13,3,4,0,13,4,6,3,4,0,13,4,6,3,4,6,15,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,11,11,2,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"13\", \"4\"], \"clip_start\": 201.0, \"clip_end\": 205.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,8,8,15,1,3,14,12,4,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,15,11,0,14,7,8,10,6,7,12,7,8,10,9,14,10,14,10,12,4,0,4,0,7,3,14,3,1,11,14,13,3,3,14,12,4,0,6,1,15,11,3,14,15,15,11,0,14,15,15,11,0,8,15,1,3,14,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,5,14,12,5,14,13,3,4,0,13,4,6,3,0,9,13,1,15,11,3,14,15,15,11,0,14,7,8,10,12,7,8,14,13,3,4,0,13,4,6,3,4,0,13,4,6,3,4,6,15,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,11,11,2,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"4\", \"6\"], \"clip_start\": 231.0, \"clip_end\": 235.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,8,8,15,1,3,14,12,4,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,15,11,0,14,7,8,10,6,7,12,7,8,10,9,14,10,14,10,12,4,0,4,0,7,3,14,3,1,11,14,13,3,3,14,12,4,0,6,1,15,11,3,14,15,15,11,0,14,15,15,11,0,8,15,1,3,14,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,5,14,12,5,14,13,3,4,0,13,4,6,3,0,9,13,1,15,11,3,14,15,15,11,0,14,7,8,10,12,7,8,14,13,3,4,0,13,4,6,3,4,0,13,4,6,3,4,6,15,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,11,11,2,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"0\", \"4\", \"0\"], \"clip_start\": 59.0, \"clip_end\": 64.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,8,8,15,1,3,14,12,4,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,15,11,0,14,7,8,10,6,7,12,7,8,10,9,14,10,14,10,12,4,0,4,0,7,3,14,3,1,11,14,13,3,3,14,12,4,0,6,1,15,11,3,14,15,15,11,0,14,15,15,11,0,8,15,1,3,14,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,5,14,12,5,14,13,3,4,0,13,4,6,3,0,9,13,1,15,11,3,14,15,15,11,0,14,7,8,10,12,7,8,14,13,3,4,0,13,4,6,3,4,0,13,4,6,3,4,6,15,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,11,11,2,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 132.0, \"clip_end\": 136.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,8,8,15,1,3,14,12,4,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,15,11,0,14,7,8,10,6,7,12,7,8,10,9,14,10,14,10,12,4,0,4,0,7,3,14,3,1,11,14,13,3,3,14,12,4,0,6,1,15,11,3,14,15,15,11,0,14,15,15,11,0,8,15,1,3,14,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,5,14,12,5,14,13,3,4,0,13,4,6,3,0,9,13,1,15,11,3,14,15,15,11,0,14,7,8,10,12,7,8,14,13,3,4,0,13,4,6,3,4,0,13,4,6,3,4,6,15,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,11,11,2,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"6\", \"3\"], \"clip_start\": 119.0, \"clip_end\": 123.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,8,8,15,1,3,14,12,4,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,15,11,0,14,7,8,10,6,7,12,7,8,10,9,14,10,14,10,12,4,0,4,0,7,3,14,3,1,11,14,13,3,3,14,12,4,0,6,1,15,11,3,14,15,15,11,0,14,15,15,11,0,8,15,1,3,14,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,5,14,12,5,14,13,3,4,0,13,4,6,3,0,9,13,1,15,11,3,14,15,15,11,0,14,7,8,10,12,7,8,14,13,3,4,0,13,4,6,3,4,0,13,4,6,3,4,6,15,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,11,11,2,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"4\", \"0\"], \"clip_start\": 216.0, \"clip_end\": 220.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,8,8,15,1,3,14,12,4,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,15,11,0,14,7,8,10,6,7,12,7,8,10,9,14,10,14,10,12,4,0,4,0,7,3,14,3,1,11,14,13,3,3,14,12,4,0,6,1,15,11,3,14,15,15,11,0,14,15,15,11,0,8,15,1,3,14,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,5,14,12,5,14,13,3,4,0,13,4,6,3,0,9,13,1,15,11,3,14,15,15,11,0,14,7,8,10,12,7,8,14,13,3,4,0,13,4,6,3,4,0,13,4,6,3,4,6,15,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,11,11,2,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 228.0, \"clip_end\": 233.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,8,8,15,1,3,14,12,4,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,15,11,0,14,7,8,10,6,7,12,7,8,10,9,14,10,14,10,12,4,0,4,0,7,3,14,3,1,11,14,13,3,3,14,12,4,0,6,1,15,11,3,14,15,15,11,0,14,15,15,11,0,8,15,1,3,14,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,5,14,12,5,14,13,3,4,0,13,4,6,3,0,9,13,1,15,11,3,14,15,15,11,0,14,7,8,10,12,7,8,14,13,3,4,0,13,4,6,3,4,0,13,4,6,3,4,6,15,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,11,11,2,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"3\", \"14\"], \"clip_start\": 71.0, \"clip_end\": 75.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,8,8,15,1,3,14,12,4,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,15,11,0,14,7,8,10,6,7,12,7,8,10,9,14,10,14,10,12,4,0,4,0,7,3,14,3,1,11,14,13,3,3,14,12,4,0,6,1,15,11,3,14,15,15,11,0,14,15,15,11,0,8,15,1,3,14,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,5,14,12,5,14,13,3,4,0,13,4,6,3,0,9,13,1,15,11,3,14,15,15,11,0,14,7,8,10,12,7,8,14,13,3,4,0,13,4,6,3,4,0,13,4,6,3,4,6,15,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,11,11,2,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"7\", \"3\", \"11\", \"7\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,8,8,15,1,3,14,12,4,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,15,11,0,14,7,8,10,6,7,12,7,8,10,9,14,10,14,10,12,4,0,4,0,7,3,14,3,1,11,14,13,3,3,14,12,4,0,6,1,15,11,3,14,15,15,11,0,14,15,15,11,0,8,15,1,3,14,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,5,14,12,5,14,13,3,4,0,13,4,6,3,0,9,13,1,15,11,3,14,15,15,11,0,14,7,8,10,12,7,8,14,13,3,4,0,13,4,6,3,4,0,13,4,6,3,4,6,15,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,11,11,2,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"13\", \"3\", \"2\"], \"clip_start\": 30.0, \"clip_end\": 35.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q10_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,8,8,15,1,3,14,12,4,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,15,11,0,14,7,8,10,6,7,12,7,8,10,9,14,10,14,10,12,4,0,4,0,7,3,14,3,1,11,14,13,3,3,14,12,4,0,6,1,15,11,3,14,15,15,11,0,14,15,15,11,0,8,15,1,3,14,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,5,14,12,5,14,13,3,4,0,13,4,6,3,0,9,13,1,15,11,3,14,15,15,11,0,14,7,8,10,12,7,8,14,13,3,4,0,13,4,6,3,4,0,13,4,6,3,4,6,15,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,11,11,2,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"2\", \"2\", \"5\", \"9\"], \"clip_start\": 127.0, \"clip_end\": 133.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q11_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,8,8,15,1,3,14,12,4,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,15,11,0,14,7,8,10,6,7,12,7,8,10,9,14,10,14,10,12,4,0,4,0,7,3,14,3,1,11,14,13,3,3,14,12,4,0,6,1,15,11,3,14,15,15,11,0,14,15,15,11,0,8,15,1,3,14,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,5,14,12,5,14,13,3,4,0,13,4,6,3,0,9,13,1,15,11,3,14,15,15,11,0,14,7,8,10,12,7,8,14,13,3,4,0,13,4,6,3,4,0,13,4,6,3,4,6,15,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,11,11,2,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"1\", \"11\", \"14\", \"12\"], \"clip_start\": 240.0, \"clip_end\": 246.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q12_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,8,8,15,1,3,14,12,4,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,15,11,0,14,7,8,10,6,7,12,7,8,10,9,14,10,14,10,12,4,0,4,0,7,3,14,3,1,11,14,13,3,3,14,12,4,0,6,1,15,11,3,14,15,15,11,0,14,15,15,11,0,8,15,1,3,14,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,5,14,12,5,14,13,3,4,0,13,4,6,3,0,9,13,1,15,11,3,14,15,15,11,0,14,7,8,10,12,7,8,14,13,3,4,0,13,4,6,3,4,0,13,4,6,3,4,6,15,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,11,11,2,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"12\", \"4\"], \"clip_start\": 100.0, \"clip_end\": 104.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q13_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,8,8,15,1,3,14,12,4,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,15,11,0,14,7,8,10,6,7,12,7,8,10,9,14,10,14,10,12,4,0,4,0,7,3,14,3,1,11,14,13,3,3,14,12,4,0,6,1,15,11,3,14,15,15,11,0,14,15,15,11,0,8,15,1,3,14,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,5,14,12,5,14,13,3,4,0,13,4,6,3,0,9,13,1,15,11,3,14,15,15,11,0,14,7,8,10,12,7,8,14,13,3,4,0,13,4,6,3,4,0,13,4,6,3,4,6,15,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,11,11,2,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"4\", \"6\", \"3\", \"4\"], \"clip_start\": 21.0, \"clip_end\": 27.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q14_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,8,8,15,1,3,14,12,4,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,15,11,0,14,7,8,10,6,7,12,7,8,10,9,14,10,14,10,12,4,0,4,0,7,3,14,3,1,11,14,13,3,3,14,12,4,0,6,1,15,11,3,14,15,15,11,0,14,15,15,11,0,8,15,1,3,14,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,5,14,12,5,14,13,3,4,0,13,4,6,3,0,9,13,1,15,11,3,14,15,15,11,0,14,7,8,10,12,7,8,14,13,3,4,0,13,4,6,3,4,0,13,4,6,3,4,6,15,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,11,11,2,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"4\", \"6\", \"3\", \"4\"], \"clip_start\": 196.0, \"clip_end\": 202.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q15_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,8,8,15,1,3,14,12,4,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,15,11,0,14,7,8,10,6,7,12,7,8,10,9,14,10,14,10,12,4,0,4,0,7,3,14,3,1,11,14,13,3,3,14,12,4,0,6,1,15,11,3,14,15,15,11,0,14,15,15,11,0,8,15,1,3,14,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,5,14,12,5,14,13,3,4,0,13,4,6,3,0,9,13,1,15,11,3,14,15,15,11,0,14,7,8,10,12,7,8,14,13,3,4,0,13,4,6,3,4,0,13,4,6,3,4,6,15,12,4,0,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,11,11,2,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,4,0,13,4,6,3,1,11,14,12,4,0,4,0,13,4,6,3,4,0", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"14\", \"4\", \"6\"], \"clip_start\": 210.0, \"clip_end\": 215.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,11,14,0,4,14,12,12,6,11,10,13,9,8,15,4,11,14,0,1,6,11,7,14,4,8,15,4,6,11,3,5,4,11,0,7,6,11,5,5,7,6,11,5,5,14,9,0,4,15,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,6,6,11,7,12,6,11,7,14,4,6,12,7,14,4,6,6,7,6,11,7,14,4,6,6,7,6,11,9,6,11,3,1,3,14,1,14,1,14,1,14,8,9,11,6,11,8,15,11,10,13,9,8,15,7,6,11,9,6,11,3,1,3,10,12,9,11,2,1,3,10,8,15,7,14,4,11,0,7,6,11,9,12,6,11,3,5,4,11,14,0,4,15,0,7,6,11,9,6,11,3,1,9,11,6,11,15,4,6,11,3,5,4,3,14,12,12,6,11,3,5,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,1,6,11,7,14,4,6,6,7,6,11,9,6,11,3,8,6,6,11,8,9,3,10,12,15,13,9,8,9,3,10,8,15,11,3,14,14,12,1,6,11,3,6,11,7,14,4,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"0\", \"7\", \"6\", \"11\", \"9\"], \"clip_start\": 145.0, \"clip_end\": 151.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,11,14,0,4,14,12,12,6,11,10,13,9,8,15,4,11,14,0,1,6,11,7,14,4,8,15,4,6,11,3,5,4,11,0,7,6,11,5,5,7,6,11,5,5,14,9,0,4,15,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,6,6,11,7,12,6,11,7,14,4,6,12,7,14,4,6,6,7,6,11,7,14,4,6,6,7,6,11,9,6,11,3,1,3,14,1,14,1,14,1,14,8,9,11,6,11,8,15,11,10,13,9,8,15,7,6,11,9,6,11,3,1,3,10,12,9,11,2,1,3,10,8,15,7,14,4,11,0,7,6,11,9,12,6,11,3,5,4,11,14,0,4,15,0,7,6,11,9,6,11,3,1,9,11,6,11,15,4,6,11,3,5,4,3,14,12,12,6,11,3,5,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,1,6,11,7,14,4,6,6,7,6,11,9,6,11,3,8,6,6,11,8,9,3,10,12,15,13,9,8,9,3,10,8,15,11,3,14,14,12,1,6,11,3,6,11,7,14,4,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"7\", \"6\", \"11\", \"5\"], \"clip_start\": 39.0, \"clip_end\": 45.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,11,14,0,4,14,12,12,6,11,10,13,9,8,15,4,11,14,0,1,6,11,7,14,4,8,15,4,6,11,3,5,4,11,0,7,6,11,5,5,7,6,11,5,5,14,9,0,4,15,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,6,6,11,7,12,6,11,7,14,4,6,12,7,14,4,6,6,7,6,11,7,14,4,6,6,7,6,11,9,6,11,3,1,3,14,1,14,1,14,1,14,8,9,11,6,11,8,15,11,10,13,9,8,15,7,6,11,9,6,11,3,1,3,10,12,9,11,2,1,3,10,8,15,7,14,4,11,0,7,6,11,9,12,6,11,3,5,4,11,14,0,4,15,0,7,6,11,9,6,11,3,1,9,11,6,11,15,4,6,11,3,5,4,3,14,12,12,6,11,3,5,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,1,6,11,7,14,4,6,6,7,6,11,9,6,11,3,8,6,6,11,8,9,3,10,12,15,13,9,8,9,3,10,8,15,11,3,14,14,12,1,6,11,3,6,11,7,14,4,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"4\"], \"clip_start\": 89.0, \"clip_end\": 92.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,11,14,0,4,14,12,12,6,11,10,13,9,8,15,4,11,14,0,1,6,11,7,14,4,8,15,4,6,11,3,5,4,11,0,7,6,11,5,5,7,6,11,5,5,14,9,0,4,15,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,6,6,11,7,12,6,11,7,14,4,6,12,7,14,4,6,6,7,6,11,7,14,4,6,6,7,6,11,9,6,11,3,1,3,14,1,14,1,14,1,14,8,9,11,6,11,8,15,11,10,13,9,8,15,7,6,11,9,6,11,3,1,3,10,12,9,11,2,1,3,10,8,15,7,14,4,11,0,7,6,11,9,12,6,11,3,5,4,11,14,0,4,15,0,7,6,11,9,6,11,3,1,9,11,6,11,15,4,6,11,3,5,4,3,14,12,12,6,11,3,5,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,1,6,11,7,14,4,6,6,7,6,11,9,6,11,3,8,6,6,11,8,9,3,10,12,15,13,9,8,9,3,10,8,15,11,3,14,14,12,1,6,11,3,6,11,7,14,4,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"6\", \"11\", \"3\"], \"clip_start\": 150.0, \"clip_end\": 155.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,11,14,0,4,14,12,12,6,11,10,13,9,8,15,4,11,14,0,1,6,11,7,14,4,8,15,4,6,11,3,5,4,11,0,7,6,11,5,5,7,6,11,5,5,14,9,0,4,15,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,6,6,11,7,12,6,11,7,14,4,6,12,7,14,4,6,6,7,6,11,7,14,4,6,6,7,6,11,9,6,11,3,1,3,14,1,14,1,14,1,14,8,9,11,6,11,8,15,11,10,13,9,8,15,7,6,11,9,6,11,3,1,3,10,12,9,11,2,1,3,10,8,15,7,14,4,11,0,7,6,11,9,12,6,11,3,5,4,11,14,0,4,15,0,7,6,11,9,6,11,3,1,9,11,6,11,15,4,6,11,3,5,4,3,14,12,12,6,11,3,5,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,1,6,11,7,14,4,6,6,7,6,11,9,6,11,3,8,6,6,11,8,9,3,10,12,15,13,9,8,9,3,10,8,15,11,3,14,14,12,1,6,11,3,6,11,7,14,4,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"14\", \"1\", \"14\"], \"clip_start\": 101.0, \"clip_end\": 106.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,11,14,0,4,14,12,12,6,11,10,13,9,8,15,4,11,14,0,1,6,11,7,14,4,8,15,4,6,11,3,5,4,11,0,7,6,11,5,5,7,6,11,5,5,14,9,0,4,15,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,6,6,11,7,12,6,11,7,14,4,6,12,7,14,4,6,6,7,6,11,7,14,4,6,6,7,6,11,9,6,11,3,1,3,14,1,14,1,14,1,14,8,9,11,6,11,8,15,11,10,13,9,8,15,7,6,11,9,6,11,3,1,3,10,12,9,11,2,1,3,10,8,15,7,14,4,11,0,7,6,11,9,12,6,11,3,5,4,11,14,0,4,15,0,7,6,11,9,6,11,3,1,9,11,6,11,15,4,6,11,3,5,4,3,14,12,12,6,11,3,5,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,1,6,11,7,14,4,6,6,7,6,11,9,6,11,3,8,6,6,11,8,9,3,10,12,15,13,9,8,9,3,10,8,15,11,3,14,14,12,1,6,11,3,6,11,7,14,4,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"11\", \"9\", \"6\", \"11\"], \"clip_start\": 216.0, \"clip_end\": 222.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,11,14,0,4,14,12,12,6,11,10,13,9,8,15,4,11,14,0,1,6,11,7,14,4,8,15,4,6,11,3,5,4,11,0,7,6,11,5,5,7,6,11,5,5,14,9,0,4,15,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,6,6,11,7,12,6,11,7,14,4,6,12,7,14,4,6,6,7,6,11,7,14,4,6,6,7,6,11,9,6,11,3,1,3,14,1,14,1,14,1,14,8,9,11,6,11,8,15,11,10,13,9,8,15,7,6,11,9,6,11,3,1,3,10,12,9,11,2,1,3,10,8,15,7,14,4,11,0,7,6,11,9,12,6,11,3,5,4,11,14,0,4,15,0,7,6,11,9,6,11,3,1,9,11,6,11,15,4,6,11,3,5,4,3,14,12,12,6,11,3,5,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,1,6,11,7,14,4,6,6,7,6,11,9,6,11,3,8,6,6,11,8,9,3,10,12,15,13,9,8,9,3,10,8,15,11,3,14,14,12,1,6,11,3,6,11,7,14,4,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"14\", \"0\", \"7\", \"14\"], \"clip_start\": 190.0, \"clip_end\": 196.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,11,14,0,4,14,12,12,6,11,10,13,9,8,15,4,11,14,0,1,6,11,7,14,4,8,15,4,6,11,3,5,4,11,0,7,6,11,5,5,7,6,11,5,5,14,9,0,4,15,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,6,6,11,7,12,6,11,7,14,4,6,12,7,14,4,6,6,7,6,11,7,14,4,6,6,7,6,11,9,6,11,3,1,3,14,1,14,1,14,1,14,8,9,11,6,11,8,15,11,10,13,9,8,15,7,6,11,9,6,11,3,1,3,10,12,9,11,2,1,3,10,8,15,7,14,4,11,0,7,6,11,9,12,6,11,3,5,4,11,14,0,4,15,0,7,6,11,9,6,11,3,1,9,11,6,11,15,4,6,11,3,5,4,3,14,12,12,6,11,3,5,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,1,6,11,7,14,4,6,6,7,6,11,9,6,11,3,8,6,6,11,8,9,3,10,12,15,13,9,8,9,3,10,8,15,11,3,14,14,12,1,6,11,3,6,11,7,14,4,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"11\"], \"clip_start\": 49.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,11,14,0,4,14,12,12,6,11,10,13,9,8,15,4,11,14,0,1,6,11,7,14,4,8,15,4,6,11,3,5,4,11,0,7,6,11,5,5,7,6,11,5,5,14,9,0,4,15,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,6,6,11,7,12,6,11,7,14,4,6,12,7,14,4,6,6,7,6,11,7,14,4,6,6,7,6,11,9,6,11,3,1,3,14,1,14,1,14,1,14,8,9,11,6,11,8,15,11,10,13,9,8,15,7,6,11,9,6,11,3,1,3,10,12,9,11,2,1,3,10,8,15,7,14,4,11,0,7,6,11,9,12,6,11,3,5,4,11,14,0,4,15,0,7,6,11,9,6,11,3,1,9,11,6,11,15,4,6,11,3,5,4,3,14,12,12,6,11,3,5,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,1,6,11,7,14,4,6,6,7,6,11,9,6,11,3,8,6,6,11,8,9,3,10,12,15,13,9,8,9,3,10,8,15,11,3,14,14,12,1,6,11,3,6,11,7,14,4,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"10\", \"13\"], \"clip_start\": 116.0, \"clip_end\": 120.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q9_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,11,14,0,4,14,12,12,6,11,10,13,9,8,15,4,11,14,0,1,6,11,7,14,4,8,15,4,6,11,3,5,4,11,0,7,6,11,5,5,7,6,11,5,5,14,9,0,4,15,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,6,6,11,7,12,6,11,7,14,4,6,12,7,14,4,6,6,7,6,11,7,14,4,6,6,7,6,11,9,6,11,3,1,3,14,1,14,1,14,1,14,8,9,11,6,11,8,15,11,10,13,9,8,15,7,6,11,9,6,11,3,1,3,10,12,9,11,2,1,3,10,8,15,7,14,4,11,0,7,6,11,9,12,6,11,3,5,4,11,14,0,4,15,0,7,6,11,9,6,11,3,1,9,11,6,11,15,4,6,11,3,5,4,3,14,12,12,6,11,3,5,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,1,6,11,7,14,4,6,6,7,6,11,9,6,11,3,8,6,6,11,8,9,3,10,12,15,13,9,8,9,3,10,8,15,11,3,14,14,12,1,6,11,3,6,11,7,14,4,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"3\", \"1\", \"3\", \"14\"], \"clip_start\": 98.0, \"clip_end\": 104.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q10_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,11,14,0,4,14,12,12,6,11,10,13,9,8,15,4,11,14,0,1,6,11,7,14,4,8,15,4,6,11,3,5,4,11,0,7,6,11,5,5,7,6,11,5,5,14,9,0,4,15,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,6,6,11,7,12,6,11,7,14,4,6,12,7,14,4,6,6,7,6,11,7,14,4,6,6,7,6,11,9,6,11,3,1,3,14,1,14,1,14,1,14,8,9,11,6,11,8,15,11,10,13,9,8,15,7,6,11,9,6,11,3,1,3,10,12,9,11,2,1,3,10,8,15,7,14,4,11,0,7,6,11,9,12,6,11,3,5,4,11,14,0,4,15,0,7,6,11,9,6,11,3,1,9,11,6,11,15,4,6,11,3,5,4,3,14,12,12,6,11,3,5,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,1,6,11,7,14,4,6,6,7,6,11,9,6,11,3,8,6,6,11,8,9,3,10,12,15,13,9,8,9,3,10,8,15,11,3,14,14,12,1,6,11,3,6,11,7,14,4,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"8\", \"4\", \"5\", \"0\"], \"clip_start\": 79.0, \"clip_end\": 84.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q11_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,11,14,0,4,14,12,12,6,11,10,13,9,8,15,4,11,14,0,1,6,11,7,14,4,8,15,4,6,11,3,5,4,11,0,7,6,11,5,5,7,6,11,5,5,14,9,0,4,15,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,6,6,11,7,12,6,11,7,14,4,6,12,7,14,4,6,6,7,6,11,7,14,4,6,6,7,6,11,9,6,11,3,1,3,14,1,14,1,14,1,14,8,9,11,6,11,8,15,11,10,13,9,8,15,7,6,11,9,6,11,3,1,3,10,12,9,11,2,1,3,10,8,15,7,14,4,11,0,7,6,11,9,12,6,11,3,5,4,11,14,0,4,15,0,7,6,11,9,6,11,3,1,9,11,6,11,15,4,6,11,3,5,4,3,14,12,12,6,11,3,5,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,1,6,11,7,14,4,6,6,7,6,11,9,6,11,3,8,6,6,11,8,9,3,10,12,15,13,9,8,9,3,10,8,15,11,3,14,14,12,1,6,11,3,6,11,7,14,4,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"14\", \"4\", \"6\"], \"clip_start\": 251.0, \"clip_end\": 256.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q12_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,11,14,0,4,14,12,12,6,11,10,13,9,8,15,4,11,14,0,1,6,11,7,14,4,8,15,4,6,11,3,5,4,11,0,7,6,11,5,5,7,6,11,5,5,14,9,0,4,15,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,6,6,11,7,12,6,11,7,14,4,6,12,7,14,4,6,6,7,6,11,7,14,4,6,6,7,6,11,9,6,11,3,1,3,14,1,14,1,14,1,14,8,9,11,6,11,8,15,11,10,13,9,8,15,7,6,11,9,6,11,3,1,3,10,12,9,11,2,1,3,10,8,15,7,14,4,11,0,7,6,11,9,12,6,11,3,5,4,11,14,0,4,15,0,7,6,11,9,6,11,3,1,9,11,6,11,15,4,6,11,3,5,4,3,14,12,12,6,11,3,5,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,1,6,11,7,14,4,6,6,7,6,11,9,6,11,3,8,6,6,11,8,9,3,10,12,15,13,9,8,9,3,10,8,15,11,3,14,14,12,1,6,11,3,6,11,7,14,4,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"9\", \"2\", \"12\", \"5\", \"8\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q13_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,11,14,0,4,14,12,12,6,11,10,13,9,8,15,4,11,14,0,1,6,11,7,14,4,8,15,4,6,11,3,5,4,11,0,7,6,11,5,5,7,6,11,5,5,14,9,0,4,15,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,6,6,11,7,12,6,11,7,14,4,6,12,7,14,4,6,6,7,6,11,7,14,4,6,6,7,6,11,9,6,11,3,1,3,14,1,14,1,14,1,14,8,9,11,6,11,8,15,11,10,13,9,8,15,7,6,11,9,6,11,3,1,3,10,12,9,11,2,1,3,10,8,15,7,14,4,11,0,7,6,11,9,12,6,11,3,5,4,11,14,0,4,15,0,7,6,11,9,6,11,3,1,9,11,6,11,15,4,6,11,3,5,4,3,14,12,12,6,11,3,5,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,1,6,11,7,14,4,6,6,7,6,11,9,6,11,3,8,6,6,11,8,9,3,10,12,15,13,9,8,9,3,10,8,15,11,3,14,14,12,1,6,11,3,6,11,7,14,4,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"8\", \"9\", \"3\", \"10\"], \"clip_start\": 225.0, \"clip_end\": 231.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q14_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,11,14,0,4,14,12,12,6,11,10,13,9,8,15,4,11,14,0,1,6,11,7,14,4,8,15,4,6,11,3,5,4,11,0,7,6,11,5,5,7,6,11,5,5,14,9,0,4,15,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,6,6,11,7,12,6,11,7,14,4,6,12,7,14,4,6,6,7,6,11,7,14,4,6,6,7,6,11,9,6,11,3,1,3,14,1,14,1,14,1,14,8,9,11,6,11,8,15,11,10,13,9,8,15,7,6,11,9,6,11,3,1,3,10,12,9,11,2,1,3,10,8,15,7,14,4,11,0,7,6,11,9,12,6,11,3,5,4,11,14,0,4,15,0,7,6,11,9,6,11,3,1,9,11,6,11,15,4,6,11,3,5,4,3,14,12,12,6,11,3,5,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,1,6,11,7,14,4,6,6,7,6,11,9,6,11,3,8,6,6,11,8,9,3,10,12,15,13,9,8,9,3,10,8,15,11,3,14,14,12,1,6,11,3,6,11,7,14,4,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"15\", \"6\", \"9\", \"11\", \"8\"], \"clip_start\": 51.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q15_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,4,11,14,0,4,14,12,12,6,11,10,13,9,8,15,4,11,14,0,1,6,11,7,14,4,8,15,4,6,11,3,5,4,11,0,7,6,11,5,5,7,6,11,5,5,14,9,0,4,15,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,6,6,11,7,12,6,11,7,14,4,6,12,7,14,4,6,6,7,6,11,7,14,4,6,6,7,6,11,9,6,11,3,1,3,14,1,14,1,14,1,14,8,9,11,6,11,8,15,11,10,13,9,8,15,7,6,11,9,6,11,3,1,3,10,12,9,11,2,1,3,10,8,15,7,14,4,11,0,7,6,11,9,12,6,11,3,5,4,11,14,0,4,15,0,7,6,11,9,6,11,3,1,9,11,6,11,15,4,6,11,3,5,4,3,14,12,12,6,11,3,5,4,11,14,0,7,14,4,6,6,7,6,11,9,6,11,3,3,8,1,6,11,7,14,4,6,6,7,6,11,9,6,11,3,8,6,6,11,8,9,3,10,12,15,13,9,8,9,3,10,8,15,11,3,14,14,12,1,6,11,3,6,11,7,14,4,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"1\", \"7\", \"6\"], \"clip_start\": 97.0, \"clip_end\": 102.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,13,1,4,4,6,8,1,3,9,2,12,15,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,13,1,13,1,4,4,6,8,14,3,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,10,0,12,0,9,10,6,8,14,9,2,2,12,9,9,2,12,3,0,9,10,6,8,9,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"14\", \"3\", \"1\", \"1\"], \"clip_start\": 84.0, \"clip_end\": 89.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,13,1,4,4,6,8,1,3,9,2,12,15,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,13,1,13,1,4,4,6,8,14,3,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,10,0,12,0,9,10,6,8,14,9,2,2,12,9,9,2,12,3,0,9,10,6,8,9,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"8\"], \"clip_start\": 228.0, \"clip_end\": 231.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,13,1,4,4,6,8,1,3,9,2,12,15,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,13,1,13,1,4,4,6,8,14,3,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,10,0,12,0,9,10,6,8,14,9,2,2,12,9,9,2,12,3,0,9,10,6,8,9,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 40.0, \"clip_end\": 46.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,13,1,4,4,6,8,1,3,9,2,12,15,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,13,1,13,1,4,4,6,8,14,3,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,10,0,12,0,9,10,6,8,14,9,2,2,12,9,9,2,12,3,0,9,10,6,8,9,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"14\", \"3\", \"1\"], \"clip_start\": 93.0, \"clip_end\": 97.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,13,1,4,4,6,8,1,3,9,2,12,15,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,13,1,13,1,4,4,6,8,14,3,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,10,0,12,0,9,10,6,8,14,9,2,2,12,9,9,2,12,3,0,9,10,6,8,9,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"8\", \"14\", \"3\"], \"clip_start\": 92.0, \"clip_end\": 96.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,13,1,4,4,6,8,1,3,9,2,12,15,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,13,1,13,1,4,4,6,8,14,3,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,10,0,12,0,9,10,6,8,14,9,2,2,12,9,9,2,12,3,0,9,10,6,8,9,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 235.0, \"clip_end\": 239.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,13,1,4,4,6,8,1,3,9,2,12,15,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,13,1,13,1,4,4,6,8,14,3,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,10,0,12,0,9,10,6,8,14,9,2,2,12,9,9,2,12,3,0,9,10,6,8,9,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"8\", \"14\", \"3\"], \"clip_start\": 147.0, \"clip_end\": 152.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,13,1,4,4,6,8,1,3,9,2,12,15,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,13,1,13,1,4,4,6,8,14,3,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,10,0,12,0,9,10,6,8,14,9,2,2,12,9,9,2,12,3,0,9,10,6,8,9,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"6\", \"8\", \"14\"], \"clip_start\": 30.0, \"clip_end\": 35.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,13,1,4,4,6,8,1,3,9,2,12,15,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,13,1,13,1,4,4,6,8,14,3,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,10,0,12,0,9,10,6,8,14,9,2,2,12,9,9,2,12,3,0,9,10,6,8,9,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"1\", \"3\", \"1\"], \"clip_start\": 232.0, \"clip_end\": 237.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,13,1,4,4,6,8,1,3,9,2,12,15,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,13,1,13,1,4,4,6,8,14,3,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,10,0,12,0,9,10,6,8,14,9,2,2,12,9,9,2,12,3,0,9,10,6,8,9,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 94.0, \"clip_end\": 99.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,13,1,4,4,6,8,1,3,9,2,12,15,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,13,1,13,1,4,4,6,8,14,3,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,10,0,12,0,9,10,6,8,14,9,2,2,12,9,9,2,12,3,0,9,10,6,8,9,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"8\", \"14\", \"3\"], \"clip_start\": 129.0, \"clip_end\": 134.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,13,1,4,4,6,8,1,3,9,2,12,15,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,13,1,13,1,4,4,6,8,14,3,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,10,0,12,0,9,10,6,8,14,9,2,2,12,9,9,2,12,3,0,9,10,6,8,9,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 60.0, \"clip_end\": 66.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,13,1,4,4,6,8,1,3,9,2,12,15,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,13,1,13,1,4,4,6,8,14,3,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,10,0,12,0,9,10,6,8,14,9,2,2,12,9,9,2,12,3,0,9,10,6,8,9,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"6\", \"8\", \"14\", \"3\"], \"clip_start\": 218.0, \"clip_end\": 224.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,13,1,4,4,6,8,1,3,9,2,12,15,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,13,1,13,1,4,4,6,8,14,3,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,10,0,12,0,9,10,6,8,14,9,2,2,12,9,9,2,12,3,0,9,10,6,8,9,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"2\", \"12\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,13,1,4,4,6,8,1,3,9,2,12,15,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,13,1,13,1,4,4,6,8,14,3,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,10,0,12,0,9,10,6,8,14,9,2,2,12,9,9,2,12,3,0,9,10,6,8,9,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 137.0, \"clip_end\": 140.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,13,1,4,4,6,8,1,3,9,2,12,15,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,13,1,13,1,4,4,6,8,14,3,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,10,0,12,0,9,10,6,8,14,9,2,2,12,9,9,2,12,3,0,9,10,6,8,9,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7,6,8,14,3,1,1,3,1,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,9,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,13,11,10,10,6,9,3,10,10,6,1,12,11,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,2,9,13,2,10,6,9,15,3,8,4,0,8,4,12,0,6,14,0,8,4,10,6,9,3,10,10,8,4,12,0,11,8,11,13,11,10,0,11,8,11,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,3,8,4,8,5,15,6,14,0,9,1,10,6,9,10,6,9,1,10,6,9,10,0,11,8,6,14,7,6,14,0,11,1,8,4,0,8,4,12,0,8,4,12,0,6,14,0,11,13,11,10,10,6,9,3,10,1,12,6,14,7,6,14,3,8,4,12,11,8,1,4,3,8,4,12,11,8,1,4,3,13,8,4,12,0,8,4,12,1,12,11,13,2,10,6,9,14,6,14,7,6,14,0,8,4,12,0,11,8,11,13,9,13,11,10,10,6,9,3,2,9,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,13,2,10,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"10\", \"6\", \"9\", \"3\"], \"clip_start\": 233.0, \"clip_end\": 239.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,9,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,13,11,10,10,6,9,3,10,10,6,1,12,11,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,2,9,13,2,10,6,9,15,3,8,4,0,8,4,12,0,6,14,0,8,4,10,6,9,3,10,10,8,4,12,0,11,8,11,13,11,10,0,11,8,11,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,3,8,4,8,5,15,6,14,0,9,1,10,6,9,10,6,9,1,10,6,9,10,0,11,8,6,14,7,6,14,0,11,1,8,4,0,8,4,12,0,8,4,12,0,6,14,0,11,13,11,10,10,6,9,3,10,1,12,6,14,7,6,14,3,8,4,12,11,8,1,4,3,8,4,12,11,8,1,4,3,13,8,4,12,0,8,4,12,1,12,11,13,2,10,6,9,14,6,14,7,6,14,0,8,4,12,0,11,8,11,13,9,13,11,10,10,6,9,3,2,9,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,13,2,10,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"3\"], \"clip_start\": 227.0, \"clip_end\": 230.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,9,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,13,11,10,10,6,9,3,10,10,6,1,12,11,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,2,9,13,2,10,6,9,15,3,8,4,0,8,4,12,0,6,14,0,8,4,10,6,9,3,10,10,8,4,12,0,11,8,11,13,11,10,0,11,8,11,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,3,8,4,8,5,15,6,14,0,9,1,10,6,9,10,6,9,1,10,6,9,10,0,11,8,6,14,7,6,14,0,11,1,8,4,0,8,4,12,0,8,4,12,0,6,14,0,11,13,11,10,10,6,9,3,10,1,12,6,14,7,6,14,3,8,4,12,11,8,1,4,3,8,4,12,11,8,1,4,3,13,8,4,12,0,8,4,12,1,12,11,13,2,10,6,9,14,6,14,7,6,14,0,8,4,12,0,11,8,11,13,9,13,11,10,10,6,9,3,2,9,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,13,2,10,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"10\"], \"clip_start\": 22.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,9,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,13,11,10,10,6,9,3,10,10,6,1,12,11,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,2,9,13,2,10,6,9,15,3,8,4,0,8,4,12,0,6,14,0,8,4,10,6,9,3,10,10,8,4,12,0,11,8,11,13,11,10,0,11,8,11,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,3,8,4,8,5,15,6,14,0,9,1,10,6,9,10,6,9,1,10,6,9,10,0,11,8,6,14,7,6,14,0,11,1,8,4,0,8,4,12,0,8,4,12,0,6,14,0,11,13,11,10,10,6,9,3,10,1,12,6,14,7,6,14,3,8,4,12,11,8,1,4,3,8,4,12,11,8,1,4,3,13,8,4,12,0,8,4,12,1,12,11,13,2,10,6,9,14,6,14,7,6,14,0,8,4,12,0,11,8,11,13,9,13,11,10,10,6,9,3,2,9,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,13,2,10,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"6\"], \"clip_start\": 153.0, \"clip_end\": 156.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,9,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,13,11,10,10,6,9,3,10,10,6,1,12,11,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,2,9,13,2,10,6,9,15,3,8,4,0,8,4,12,0,6,14,0,8,4,10,6,9,3,10,10,8,4,12,0,11,8,11,13,11,10,0,11,8,11,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,3,8,4,8,5,15,6,14,0,9,1,10,6,9,10,6,9,1,10,6,9,10,0,11,8,6,14,7,6,14,0,11,1,8,4,0,8,4,12,0,8,4,12,0,6,14,0,11,13,11,10,10,6,9,3,10,1,12,6,14,7,6,14,3,8,4,12,11,8,1,4,3,8,4,12,11,8,1,4,3,13,8,4,12,0,8,4,12,1,12,11,13,2,10,6,9,14,6,14,7,6,14,0,8,4,12,0,11,8,11,13,9,13,11,10,10,6,9,3,2,9,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,13,2,10,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"11\", \"10\", \"10\", \"6\"], \"clip_start\": 17.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,9,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,13,11,10,10,6,9,3,10,10,6,1,12,11,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,2,9,13,2,10,6,9,15,3,8,4,0,8,4,12,0,6,14,0,8,4,10,6,9,3,10,10,8,4,12,0,11,8,11,13,11,10,0,11,8,11,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,3,8,4,8,5,15,6,14,0,9,1,10,6,9,10,6,9,1,10,6,9,10,0,11,8,6,14,7,6,14,0,11,1,8,4,0,8,4,12,0,8,4,12,0,6,14,0,11,13,11,10,10,6,9,3,10,1,12,6,14,7,6,14,3,8,4,12,11,8,1,4,3,8,4,12,11,8,1,4,3,13,8,4,12,0,8,4,12,1,12,11,13,2,10,6,9,14,6,14,7,6,14,0,8,4,12,0,11,8,11,13,9,13,11,10,10,6,9,3,2,9,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,13,2,10,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"10\", \"6\", \"10\"], \"clip_start\": 105.0, \"clip_end\": 110.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,9,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,13,11,10,10,6,9,3,10,10,6,1,12,11,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,2,9,13,2,10,6,9,15,3,8,4,0,8,4,12,0,6,14,0,8,4,10,6,9,3,10,10,8,4,12,0,11,8,11,13,11,10,0,11,8,11,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,3,8,4,8,5,15,6,14,0,9,1,10,6,9,10,6,9,1,10,6,9,10,0,11,8,6,14,7,6,14,0,11,1,8,4,0,8,4,12,0,8,4,12,0,6,14,0,11,13,11,10,10,6,9,3,10,1,12,6,14,7,6,14,3,8,4,12,11,8,1,4,3,8,4,12,11,8,1,4,3,13,8,4,12,0,8,4,12,1,12,11,13,2,10,6,9,14,6,14,7,6,14,0,8,4,12,0,11,8,11,13,9,13,11,10,10,6,9,3,2,9,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,13,2,10,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 158.0, \"clip_end\": 162.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,9,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,13,11,10,10,6,9,3,10,10,6,1,12,11,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,2,9,13,2,10,6,9,15,3,8,4,0,8,4,12,0,6,14,0,8,4,10,6,9,3,10,10,8,4,12,0,11,8,11,13,11,10,0,11,8,11,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,3,8,4,8,5,15,6,14,0,9,1,10,6,9,10,6,9,1,10,6,9,10,0,11,8,6,14,7,6,14,0,11,1,8,4,0,8,4,12,0,8,4,12,0,6,14,0,11,13,11,10,10,6,9,3,10,1,12,6,14,7,6,14,3,8,4,12,11,8,1,4,3,8,4,12,11,8,1,4,3,13,8,4,12,0,8,4,12,1,12,11,13,2,10,6,9,14,6,14,7,6,14,0,8,4,12,0,11,8,11,13,9,13,11,10,10,6,9,3,2,9,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,13,2,10,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"6\", \"10\", \"9\", \"13\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,9,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,13,11,10,10,6,9,3,10,10,6,1,12,11,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,2,9,13,2,10,6,9,15,3,8,4,0,8,4,12,0,6,14,0,8,4,10,6,9,3,10,10,8,4,12,0,11,8,11,13,11,10,0,11,8,11,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,3,8,4,8,5,15,6,14,0,9,1,10,6,9,10,6,9,1,10,6,9,10,0,11,8,6,14,7,6,14,0,11,1,8,4,0,8,4,12,0,8,4,12,0,6,14,0,11,13,11,10,10,6,9,3,10,1,12,6,14,7,6,14,3,8,4,12,11,8,1,4,3,8,4,12,11,8,1,4,3,13,8,4,12,0,8,4,12,1,12,11,13,2,10,6,9,14,6,14,7,6,14,0,8,4,12,0,11,8,11,13,9,13,11,10,10,6,9,3,2,9,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,13,2,10,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"0\", \"9\", \"1\"], \"clip_start\": 117.0, \"clip_end\": 122.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,9,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,13,11,10,10,6,9,3,10,10,6,1,12,11,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,2,9,13,2,10,6,9,15,3,8,4,0,8,4,12,0,6,14,0,8,4,10,6,9,3,10,10,8,4,12,0,11,8,11,13,11,10,0,11,8,11,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,3,8,4,8,5,15,6,14,0,9,1,10,6,9,10,6,9,1,10,6,9,10,0,11,8,6,14,7,6,14,0,11,1,8,4,0,8,4,12,0,8,4,12,0,6,14,0,11,13,11,10,10,6,9,3,10,1,12,6,14,7,6,14,3,8,4,12,11,8,1,4,3,8,4,12,11,8,1,4,3,13,8,4,12,0,8,4,12,1,12,11,13,2,10,6,9,14,6,14,7,6,14,0,8,4,12,0,11,8,11,13,9,13,11,10,10,6,9,3,2,9,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,13,2,10,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 222.0, \"clip_end\": 226.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,9,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,13,11,10,10,6,9,3,10,10,6,1,12,11,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,2,9,13,2,10,6,9,15,3,8,4,0,8,4,12,0,6,14,0,8,4,10,6,9,3,10,10,8,4,12,0,11,8,11,13,11,10,0,11,8,11,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,3,8,4,8,5,15,6,14,0,9,1,10,6,9,10,6,9,1,10,6,9,10,0,11,8,6,14,7,6,14,0,11,1,8,4,0,8,4,12,0,8,4,12,0,6,14,0,11,13,11,10,10,6,9,3,10,1,12,6,14,7,6,14,3,8,4,12,11,8,1,4,3,8,4,12,11,8,1,4,3,13,8,4,12,0,8,4,12,1,12,11,13,2,10,6,9,14,6,14,7,6,14,0,8,4,12,0,11,8,11,13,9,13,11,10,10,6,9,3,2,9,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,13,2,10,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"3\", \"10\", \"10\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,9,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,13,11,10,10,6,9,3,10,10,6,1,12,11,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,2,9,13,2,10,6,9,15,3,8,4,0,8,4,12,0,6,14,0,8,4,10,6,9,3,10,10,8,4,12,0,11,8,11,13,11,10,0,11,8,11,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,3,8,4,8,5,15,6,14,0,9,1,10,6,9,10,6,9,1,10,6,9,10,0,11,8,6,14,7,6,14,0,11,1,8,4,0,8,4,12,0,8,4,12,0,6,14,0,11,13,11,10,10,6,9,3,10,1,12,6,14,7,6,14,3,8,4,12,11,8,1,4,3,8,4,12,11,8,1,4,3,13,8,4,12,0,8,4,12,1,12,11,13,2,10,6,9,14,6,14,7,6,14,0,8,4,12,0,11,8,11,13,9,13,11,10,10,6,9,3,2,9,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,13,2,10,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"6\", \"14\"], \"clip_start\": 137.0, \"clip_end\": 141.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,9,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,13,11,10,10,6,9,3,10,10,6,1,12,11,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,2,9,13,2,10,6,9,15,3,8,4,0,8,4,12,0,6,14,0,8,4,10,6,9,3,10,10,8,4,12,0,11,8,11,13,11,10,0,11,8,11,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,3,8,4,8,5,15,6,14,0,9,1,10,6,9,10,6,9,1,10,6,9,10,0,11,8,6,14,7,6,14,0,11,1,8,4,0,8,4,12,0,8,4,12,0,6,14,0,11,13,11,10,10,6,9,3,10,1,12,6,14,7,6,14,3,8,4,12,11,8,1,4,3,8,4,12,11,8,1,4,3,13,8,4,12,0,8,4,12,1,12,11,13,2,10,6,9,14,6,14,7,6,14,0,8,4,12,0,11,8,11,13,9,13,11,10,10,6,9,3,2,9,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,13,2,10,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"11\", \"8\", \"6\", \"14\"], \"clip_start\": 132.0, \"clip_end\": 138.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,9,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,13,11,10,10,6,9,3,10,10,6,1,12,11,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,2,9,13,2,10,6,9,15,3,8,4,0,8,4,12,0,6,14,0,8,4,10,6,9,3,10,10,8,4,12,0,11,8,11,13,11,10,0,11,8,11,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,3,8,4,8,5,15,6,14,0,9,1,10,6,9,10,6,9,1,10,6,9,10,0,11,8,6,14,7,6,14,0,11,1,8,4,0,8,4,12,0,8,4,12,0,6,14,0,11,13,11,10,10,6,9,3,10,1,12,6,14,7,6,14,3,8,4,12,11,8,1,4,3,8,4,12,11,8,1,4,3,13,8,4,12,0,8,4,12,1,12,11,13,2,10,6,9,14,6,14,7,6,14,0,8,4,12,0,11,8,11,13,9,13,11,10,10,6,9,3,2,9,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,13,2,10,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"1\", \"12\", \"11\", \"13\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,9,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,13,11,10,10,6,9,3,10,10,6,1,12,11,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,2,9,13,2,10,6,9,15,3,8,4,0,8,4,12,0,6,14,0,8,4,10,6,9,3,10,10,8,4,12,0,11,8,11,13,11,10,0,11,8,11,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,3,8,4,8,5,15,6,14,0,9,1,10,6,9,10,6,9,1,10,6,9,10,0,11,8,6,14,7,6,14,0,11,1,8,4,0,8,4,12,0,8,4,12,0,6,14,0,11,13,11,10,10,6,9,3,10,1,12,6,14,7,6,14,3,8,4,12,11,8,1,4,3,8,4,12,11,8,1,4,3,13,8,4,12,0,8,4,12,1,12,11,13,2,10,6,9,14,6,14,7,6,14,0,8,4,12,0,11,8,11,13,9,13,11,10,10,6,9,3,2,9,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,13,2,10,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"11\", \"10\", \"10\", \"6\"], \"clip_start\": 222.0, \"clip_end\": 228.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,9,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,13,11,10,10,6,9,3,10,10,6,1,12,11,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,2,9,13,2,10,6,9,15,3,8,4,0,8,4,12,0,6,14,0,8,4,10,6,9,3,10,10,8,4,12,0,11,8,11,13,11,10,0,11,8,11,13,2,10,6,9,15,7,6,11,8,13,10,6,10,9,3,8,4,8,5,15,6,14,0,9,1,10,6,9,10,6,9,1,10,6,9,10,0,11,8,6,14,7,6,14,0,11,1,8,4,0,8,4,12,0,8,4,12,0,6,14,0,11,13,11,10,10,6,9,3,10,1,12,6,14,7,6,14,3,8,4,12,11,8,1,4,3,8,4,12,11,8,1,4,3,13,8,4,12,0,8,4,12,1,12,11,13,2,10,6,9,14,6,14,7,6,14,0,8,4,12,0,11,8,11,13,9,13,11,10,10,6,9,3,2,9,13,11,10,10,6,9,3,10,10,6,9,3,10,10,6,9,3,10,10,6,13,2,10,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"13\", \"1\", \"13\", \"1\"], \"clip_start\": 13.0, \"clip_end\": 19.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,7,13,15,14,4,2,9,6,14,13,1,13,1,13,1,13,1,7,13,13,1,13,10,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,6,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,0,8,3,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,13,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 154.0, \"clip_end\": 160.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,7,13,15,14,4,2,9,6,14,13,1,13,1,13,1,13,1,7,13,13,1,13,10,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,6,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,0,8,3,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,13,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"1\", \"13\", \"1\", \"13\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,7,13,15,14,4,2,9,6,14,13,1,13,1,13,1,13,1,7,13,13,1,13,10,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,6,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,0,8,3,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,13,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"2\", \"9\", \"6\", \"14\"], \"clip_start\": 147.0, \"clip_end\": 153.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,7,13,15,14,4,2,9,6,14,13,1,13,1,13,1,13,1,7,13,13,1,13,10,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,6,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,0,8,3,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,13,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"11\", \"3\", \"14\", \"7\"], \"clip_start\": 163.0, \"clip_end\": 169.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,7,13,15,14,4,2,9,6,14,13,1,13,1,13,1,13,1,7,13,13,1,13,10,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,6,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,0,8,3,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,13,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"7\", \"2\", \"9\", \"6\"], \"clip_start\": 126.0, \"clip_end\": 132.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,7,13,15,14,4,2,9,6,14,13,1,13,1,13,1,13,1,7,13,13,1,13,10,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,6,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,0,8,3,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,13,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"6\", \"14\"], \"clip_start\": 233.0, \"clip_end\": 237.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,7,13,15,14,4,2,9,6,14,13,1,13,1,13,1,13,1,7,13,13,1,13,10,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,6,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,0,8,3,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,13,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"7\", \"2\", \"9\", \"6\"], \"clip_start\": 250.0, \"clip_end\": 256.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,7,13,15,14,4,2,9,6,14,13,1,13,1,13,1,13,1,7,13,13,1,13,10,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,6,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,0,8,3,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,13,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"2\", \"9\"], \"clip_start\": 97.0, \"clip_end\": 101.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,7,13,15,14,4,2,9,6,14,13,1,13,1,13,1,13,1,7,13,13,1,13,10,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,6,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,0,8,3,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,13,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 252.0, \"clip_end\": 255.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,7,13,15,14,4,2,9,6,14,13,1,13,1,13,1,13,1,7,13,13,1,13,10,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,6,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,0,8,3,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,13,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"9\", \"6\", \"14\"], \"clip_start\": 188.0, \"clip_end\": 193.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,7,13,15,14,4,2,9,6,14,13,1,13,1,13,1,13,1,7,13,13,1,13,10,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,6,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,0,8,3,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,13,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"6\", \"14\"], \"clip_start\": 233.0, \"clip_end\": 237.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,7,13,15,14,4,2,9,6,14,13,1,13,1,13,1,13,1,7,13,13,1,13,10,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,6,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,0,8,3,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,13,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"3\", \"11\", \"11\"], \"clip_start\": 171.0, \"clip_end\": 176.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,7,13,15,14,4,2,9,6,14,13,1,13,1,13,1,13,1,7,13,13,1,13,10,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,6,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,0,8,3,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,13,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 132.0, \"clip_end\": 138.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,7,13,15,14,4,2,9,6,14,13,1,13,1,13,1,13,1,7,13,13,1,13,10,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,6,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,0,8,3,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,13,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"13\", \"13\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,7,13,15,14,4,2,9,6,14,13,1,13,1,13,1,13,1,7,13,13,1,13,10,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,6,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,0,8,3,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,13,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"7\", \"2\", \"9\"], \"clip_start\": 186.0, \"clip_end\": 191.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,5,7,13,15,14,4,2,9,6,14,13,1,13,1,13,1,13,1,7,13,13,1,13,10,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,6,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,0,8,3,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,13,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6,14,3,11,11,3,14,7,2,9,6", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"13\", \"13\", \"2\", \"2\", \"4\"], \"clip_start\": 214.0, \"clip_end\": 220.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,6,8,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,6,8,1,14,0,3,12,2,2,6,8,2,1,2,1,2,15,4,5,13,2,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,9,8,10,14,0,4,5,7,14,6,13,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,0,4,15,12,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"13\", \"2\"], \"clip_start\": 45.0, \"clip_end\": 48.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,6,8,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,6,8,1,14,0,3,12,2,2,6,8,2,1,2,1,2,15,4,5,13,2,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,9,8,10,14,0,4,5,7,14,6,13,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,0,4,15,12,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"13\", \"2\", \"2\", \"4\"], \"clip_start\": 215.0, \"clip_end\": 220.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,6,8,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,6,8,1,14,0,3,12,2,2,6,8,2,1,2,1,2,15,4,5,13,2,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,9,8,10,14,0,4,5,7,14,6,13,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,0,4,15,12,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"13\", \"13\", \"2\"], \"clip_start\": 178.0, \"clip_end\": 182.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,6,8,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,6,8,1,14,0,3,12,2,2,6,8,2,1,2,1,2,15,4,5,13,2,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,9,8,10,14,0,4,5,7,14,6,13,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,0,4,15,12,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 34.0, \"clip_end\": 37.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,6,8,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,6,8,1,14,0,3,12,2,2,6,8,2,1,2,1,2,15,4,5,13,2,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,9,8,10,14,0,4,5,7,14,6,13,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,0,4,15,12,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"2\", \"4\", \"5\", \"13\", \"13\"], \"clip_start\": 77.0, \"clip_end\": 83.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,6,8,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,6,8,1,14,0,3,12,2,2,6,8,2,1,2,1,2,15,4,5,13,2,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,9,8,10,14,0,4,5,7,14,6,13,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,0,4,15,12,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"10\", \"14\", \"0\"], \"clip_start\": 164.0, \"clip_end\": 168.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,6,8,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,6,8,1,14,0,3,12,2,2,6,8,2,1,2,1,2,15,4,5,13,2,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,9,8,10,14,0,4,5,7,14,6,13,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,0,4,15,12,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"4\", \"8\", \"6\", \"0\"], \"clip_start\": 225.0, \"clip_end\": 231.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,6,8,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,6,8,1,14,0,3,12,2,2,6,8,2,1,2,1,2,15,4,5,13,2,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,9,8,10,14,0,4,5,7,14,6,13,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,0,4,15,12,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"7\"], \"clip_start\": 47.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q8_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,6,8,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,6,8,1,14,0,3,12,2,2,6,8,2,1,2,1,2,15,4,5,13,2,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,9,8,10,14,0,4,5,7,14,6,13,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,0,4,15,12,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\", \"15\"], \"clip_start\": 84.0, \"clip_end\": 88.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q9_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,6,8,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,6,8,1,14,0,3,12,2,2,6,8,2,1,2,1,2,15,4,5,13,2,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,9,8,10,14,0,4,5,7,14,6,13,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,0,4,15,12,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"1\"], \"clip_start\": 48.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q10_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,6,8,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,6,8,1,14,0,3,12,2,2,6,8,2,1,2,1,2,15,4,5,13,2,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,9,8,10,14,0,4,5,7,14,6,13,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,0,4,15,12,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"2\", \"2\", \"4\", \"5\", \"13\"], \"clip_start\": 156.0, \"clip_end\": 162.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q11_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,6,8,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,6,8,1,14,0,3,12,2,2,6,8,2,1,2,1,2,15,4,5,13,2,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,9,8,10,14,0,4,5,7,14,6,13,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,0,4,15,12,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"8\", \"2\", \"5\"], \"clip_start\": 223.0, \"clip_end\": 229.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q12_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,6,8,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,6,8,1,14,0,3,12,2,2,6,8,2,1,2,1,2,15,4,5,13,2,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,9,8,10,14,0,4,5,7,14,6,13,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,0,4,15,12,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"10\", \"14\"], \"clip_start\": 163.0, \"clip_end\": 167.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q13_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,6,8,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,6,8,1,14,0,3,12,2,2,6,8,2,1,2,1,2,15,4,5,13,2,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,9,8,10,14,0,4,5,7,14,6,13,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,0,4,15,12,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"2\", \"4\", \"5\", \"13\", \"13\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q14_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,6,8,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,6,8,1,14,0,3,12,2,2,6,8,2,1,2,1,2,15,4,5,13,2,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,9,8,10,14,0,4,5,7,14,6,13,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,0,4,15,12,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"11\", \"12\"], \"clip_start\": 67.0, \"clip_end\": 72.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q15_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,6,8,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,6,8,1,14,0,3,12,2,2,6,8,2,1,2,1,2,15,4,5,13,2,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,9,8,10,14,0,4,5,7,14,6,13,2,1,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,0,4,15,12,7,0,3,12,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4,5,13,13,2,2,4", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"9\", \"8\", \"9\"], \"clip_start\": 229.0, \"clip_end\": 234.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,1,4,2,0,13,7,14,3,15,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,3,15,14,3,15,2,0,10,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,14,13,7,14,3,15,5,13,5,5,2,5,2,13,5,2,3,1,4,7,14,3,15,3,11,7,15,3,11,7,14,3,15,3,15,4,15,11,13,15,4,5,1,4,12,13,1,4,15,11,13,7,14,3,15,3,15,4,15,11,13,15,9,8,12,13,9,8,15,9,8,15,3,15,4,15,11,7,14,3,1,4,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"14\", \"3\", \"7\"], \"clip_start\": 197.0, \"clip_end\": 202.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,1,4,2,0,13,7,14,3,15,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,3,15,14,3,15,2,0,10,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,14,13,7,14,3,15,5,13,5,5,2,5,2,13,5,2,3,1,4,7,14,3,15,3,11,7,15,3,11,7,14,3,15,3,15,4,15,11,13,15,4,5,1,4,12,13,1,4,15,11,13,7,14,3,15,3,15,4,15,11,13,15,9,8,12,13,9,8,15,9,8,15,3,15,4,15,11,7,14,3,1,4,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"15\", \"9\", \"8\"], \"clip_start\": 40.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,1,4,2,0,13,7,14,3,15,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,3,15,14,3,15,2,0,10,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,14,13,7,14,3,15,5,13,5,5,2,5,2,13,5,2,3,1,4,7,14,3,15,3,11,7,15,3,11,7,14,3,15,3,15,4,15,11,13,15,4,5,1,4,12,13,1,4,15,11,13,7,14,3,15,3,15,4,15,11,13,15,9,8,12,13,9,8,15,9,8,15,3,15,4,15,11,7,14,3,1,4,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 69.0, \"clip_end\": 72.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,1,4,2,0,13,7,14,3,15,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,3,15,14,3,15,2,0,10,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,14,13,7,14,3,15,5,13,5,5,2,5,2,13,5,2,3,1,4,7,14,3,15,3,11,7,15,3,11,7,14,3,15,3,15,4,15,11,13,15,4,5,1,4,12,13,1,4,15,11,13,7,14,3,15,3,15,4,15,11,13,15,9,8,12,13,9,8,15,9,8,15,3,15,4,15,11,7,14,3,1,4,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q4_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,1,4,2,0,13,7,14,3,15,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,3,15,14,3,15,2,0,10,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,14,13,7,14,3,15,5,13,5,5,2,5,2,13,5,2,3,1,4,7,14,3,15,3,11,7,15,3,11,7,14,3,15,3,15,4,15,11,13,15,4,5,1,4,12,13,1,4,15,11,13,7,14,3,15,3,15,4,15,11,13,15,9,8,12,13,9,8,15,9,8,15,3,15,4,15,11,7,14,3,1,4,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"11\", \"6\", \"1\"], \"clip_start\": 235.0, \"clip_end\": 240.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q5_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,1,4,2,0,13,7,14,3,15,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,3,15,14,3,15,2,0,10,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,14,13,7,14,3,15,5,13,5,5,2,5,2,13,5,2,3,1,4,7,14,3,15,3,11,7,15,3,11,7,14,3,15,3,15,4,15,11,13,15,4,5,1,4,12,13,1,4,15,11,13,7,14,3,15,3,15,4,15,11,13,15,9,8,12,13,9,8,15,9,8,15,3,15,4,15,11,7,14,3,1,4,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"7\", \"14\"], \"clip_start\": 244.0, \"clip_end\": 248.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q6_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,1,4,2,0,13,7,14,3,15,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,3,15,14,3,15,2,0,10,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,14,13,7,14,3,15,5,13,5,5,2,5,2,13,5,2,3,1,4,7,14,3,15,3,11,7,15,3,11,7,14,3,15,3,15,4,15,11,13,15,4,5,1,4,12,13,1,4,15,11,13,7,14,3,15,3,15,4,15,11,13,15,9,8,12,13,9,8,15,9,8,15,3,15,4,15,11,7,14,3,1,4,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"3\", \"9\", \"8\"], \"clip_start\": 228.0, \"clip_end\": 233.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q7_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,1,4,2,0,13,7,14,3,15,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,3,15,14,3,15,2,0,10,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,14,13,7,14,3,15,5,13,5,5,2,5,2,13,5,2,3,1,4,7,14,3,15,3,11,7,15,3,11,7,14,3,15,3,15,4,15,11,13,15,4,5,1,4,12,13,1,4,15,11,13,7,14,3,15,3,15,4,15,11,13,15,9,8,12,13,9,8,15,9,8,15,3,15,4,15,11,7,14,3,1,4,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"3\", \"15\", \"4\"], \"clip_start\": 148.0, \"clip_end\": 153.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,1,4,2,0,13,7,14,3,15,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,3,15,14,3,15,2,0,10,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,14,13,7,14,3,15,5,13,5,5,2,5,2,13,5,2,3,1,4,7,14,3,15,3,11,7,15,3,11,7,14,3,15,3,15,4,15,11,13,15,4,5,1,4,12,13,1,4,15,11,13,7,14,3,15,3,15,4,15,11,13,15,9,8,12,13,9,8,15,9,8,15,3,15,4,15,11,7,14,3,1,4,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"4\", \"15\", \"11\", \"13\"], \"clip_start\": 150.0, \"clip_end\": 156.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,1,4,2,0,13,7,14,3,15,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,3,15,14,3,15,2,0,10,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,14,13,7,14,3,15,5,13,5,5,2,5,2,13,5,2,3,1,4,7,14,3,15,3,11,7,15,3,11,7,14,3,15,3,15,4,15,11,13,15,4,5,1,4,12,13,1,4,15,11,13,7,14,3,15,3,15,4,15,11,13,15,9,8,12,13,9,8,15,9,8,15,3,15,4,15,11,7,14,3,1,4,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"14\", \"3\", \"7\", \"14\"], \"clip_start\": 197.0, \"clip_end\": 203.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q10_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,1,4,2,0,13,7,14,3,15,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,3,15,14,3,15,2,0,10,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,14,13,7,14,3,15,5,13,5,5,2,5,2,13,5,2,3,1,4,7,14,3,15,3,11,7,15,3,11,7,14,3,15,3,15,4,15,11,13,15,4,5,1,4,12,13,1,4,15,11,13,7,14,3,15,3,15,4,15,11,13,15,9,8,12,13,9,8,15,9,8,15,3,15,4,15,11,7,14,3,1,4,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"7\", \"9\", \"8\"], \"clip_start\": 27.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,1,4,2,0,13,7,14,3,15,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,3,15,14,3,15,2,0,10,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,14,13,7,14,3,15,5,13,5,5,2,5,2,13,5,2,3,1,4,7,14,3,15,3,11,7,15,3,11,7,14,3,15,3,15,4,15,11,13,15,4,5,1,4,12,13,1,4,15,11,13,7,14,3,15,3,15,4,15,11,13,15,9,8,12,13,9,8,15,9,8,15,3,15,4,15,11,7,14,3,1,4,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"3\", \"5\"], \"clip_start\": 231.0, \"clip_end\": 235.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q12_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,1,4,2,0,13,7,14,3,15,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,3,15,14,3,15,2,0,10,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,14,13,7,14,3,15,5,13,5,5,2,5,2,13,5,2,3,1,4,7,14,3,15,3,11,7,15,3,11,7,14,3,15,3,15,4,15,11,13,15,4,5,1,4,12,13,1,4,15,11,13,7,14,3,15,3,15,4,15,11,13,15,9,8,12,13,9,8,15,9,8,15,3,15,4,15,11,7,14,3,1,4,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"10\", \"11\", \"0\", \"0\"], \"clip_start\": 45.0, \"clip_end\": 51.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q13_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,1,4,2,0,13,7,14,3,15,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,3,15,14,3,15,2,0,10,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,14,13,7,14,3,15,5,13,5,5,2,5,2,13,5,2,3,1,4,7,14,3,15,3,11,7,15,3,11,7,14,3,15,3,15,4,15,11,13,15,4,5,1,4,12,13,1,4,15,11,13,7,14,3,15,3,15,4,15,11,13,15,9,8,12,13,9,8,15,9,8,15,3,15,4,15,11,7,14,3,1,4,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"4\", \"15\"], \"clip_start\": 189.0, \"clip_end\": 193.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q14_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,1,4,2,0,13,7,14,3,15,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,3,15,14,3,15,2,0,10,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,14,13,7,14,3,15,5,13,5,5,2,5,2,13,5,2,3,1,4,7,14,3,15,3,11,7,15,3,11,7,14,3,15,3,15,4,15,11,13,15,4,5,1,4,12,13,1,4,15,11,13,7,14,3,15,3,15,4,15,11,13,15,9,8,12,13,9,8,15,9,8,15,3,15,4,15,11,7,14,3,1,4,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"15\", \"9\", \"8\", \"9\"], \"clip_start\": 51.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q15_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,3,1,4,2,0,13,7,14,3,15,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,15,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,3,15,14,3,15,2,0,10,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,14,13,7,14,3,15,5,13,5,5,2,5,2,13,5,2,3,1,4,7,14,3,15,3,11,7,15,3,11,7,14,3,15,3,15,4,15,11,13,15,4,5,1,4,12,13,1,4,15,11,13,7,14,3,15,3,15,4,15,11,13,15,9,8,12,13,9,8,15,9,8,15,3,15,4,15,11,7,14,3,1,4,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,9,7,14,3,7,14,3,9,8,15,9,8,15,4", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"3\", \"3\", \"0\"], \"clip_start\": 220.0, \"clip_end\": 224.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,11,3,8,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,6,4,6,15,14,2,9,13,3,0,8,7,3,3,0,8,13,11,6,4,6,15,14,15,14,15,8,2,9,6,4,6,4,7,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,10,15,14,15,8,7,7,8,1,3,12,12,14,0,3,8,2,9,13,3,0,8,7,3,7,0,13,3,8,2,9,13,3,0,8,7,3,3,6,4,6,15,14,15,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,12,14,0,8,7,0,13,14,0,14,13,2,9,6,15,14,15,8,7,0,13,14,0,14,13,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"6\", \"15\", \"14\", \"15\"], \"clip_start\": 176.0, \"clip_end\": 181.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,11,3,8,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,6,4,6,15,14,2,9,13,3,0,8,7,3,3,0,8,13,11,6,4,6,15,14,15,14,15,8,2,9,6,4,6,4,7,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,10,15,14,15,8,7,7,8,1,3,12,12,14,0,3,8,2,9,13,3,0,8,7,3,7,0,13,3,8,2,9,13,3,0,8,7,3,3,6,4,6,15,14,15,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,12,14,0,8,7,0,13,14,0,14,13,2,9,6,15,14,15,8,7,0,13,14,0,14,13,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"7\", \"3\", \"3\"], \"clip_start\": 149.0, \"clip_end\": 154.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,11,3,8,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,6,4,6,15,14,2,9,13,3,0,8,7,3,3,0,8,13,11,6,4,6,15,14,15,14,15,8,2,9,6,4,6,4,7,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,10,15,14,15,8,7,7,8,1,3,12,12,14,0,3,8,2,9,13,3,0,8,7,3,7,0,13,3,8,2,9,13,3,0,8,7,3,3,6,4,6,15,14,15,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,12,14,0,8,7,0,13,14,0,14,13,2,9,6,15,14,15,8,7,0,13,14,0,14,13,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"3\", \"3\", \"0\", \"8\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,11,3,8,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,6,4,6,15,14,2,9,13,3,0,8,7,3,3,0,8,13,11,6,4,6,15,14,15,14,15,8,2,9,6,4,6,4,7,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,10,15,14,15,8,7,7,8,1,3,12,12,14,0,3,8,2,9,13,3,0,8,7,3,7,0,13,3,8,2,9,13,3,0,8,7,3,3,6,4,6,15,14,15,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,12,14,0,8,7,0,13,14,0,14,13,2,9,6,15,14,15,8,7,0,13,14,0,14,13,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"0\", \"8\"], \"clip_start\": 207.0, \"clip_end\": 210.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,11,3,8,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,6,4,6,15,14,2,9,13,3,0,8,7,3,3,0,8,13,11,6,4,6,15,14,15,14,15,8,2,9,6,4,6,4,7,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,10,15,14,15,8,7,7,8,1,3,12,12,14,0,3,8,2,9,13,3,0,8,7,3,7,0,13,3,8,2,9,13,3,0,8,7,3,3,6,4,6,15,14,15,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,12,14,0,8,7,0,13,14,0,14,13,2,9,6,15,14,15,8,7,0,13,14,0,14,13,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\", \"1\"], \"clip_start\": 252.0, \"clip_end\": 256.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q5_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,11,3,8,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,6,4,6,15,14,2,9,13,3,0,8,7,3,3,0,8,13,11,6,4,6,15,14,15,14,15,8,2,9,6,4,6,4,7,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,10,15,14,15,8,7,7,8,1,3,12,12,14,0,3,8,2,9,13,3,0,8,7,3,7,0,13,3,8,2,9,13,3,0,8,7,3,3,6,4,6,15,14,15,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,12,14,0,8,7,0,13,14,0,14,13,2,9,6,15,14,15,8,7,0,13,14,0,14,13,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"5\", \"7\", \"3\", \"13\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q6_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,11,3,8,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,6,4,6,15,14,2,9,13,3,0,8,7,3,3,0,8,13,11,6,4,6,15,14,15,14,15,8,2,9,6,4,6,4,7,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,10,15,14,15,8,7,7,8,1,3,12,12,14,0,3,8,2,9,13,3,0,8,7,3,7,0,13,3,8,2,9,13,3,0,8,7,3,3,6,4,6,15,14,15,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,12,14,0,8,7,0,13,14,0,14,13,2,9,6,15,14,15,8,7,0,13,14,0,14,13,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"3\", \"3\", \"0\", \"8\"], \"clip_start\": 235.0, \"clip_end\": 240.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,11,3,8,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,6,4,6,15,14,2,9,13,3,0,8,7,3,3,0,8,13,11,6,4,6,15,14,15,14,15,8,2,9,6,4,6,4,7,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,10,15,14,15,8,7,7,8,1,3,12,12,14,0,3,8,2,9,13,3,0,8,7,3,7,0,13,3,8,2,9,13,3,0,8,7,3,3,6,4,6,15,14,15,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,12,14,0,8,7,0,13,14,0,14,13,2,9,6,15,14,15,8,7,0,13,14,0,14,13,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"12\", \"14\", \"0\", \"3\"], \"clip_start\": 103.0, \"clip_end\": 109.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q8_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,11,3,8,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,6,4,6,15,14,2,9,13,3,0,8,7,3,3,0,8,13,11,6,4,6,15,14,15,14,15,8,2,9,6,4,6,4,7,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,10,15,14,15,8,7,7,8,1,3,12,12,14,0,3,8,2,9,13,3,0,8,7,3,7,0,13,3,8,2,9,13,3,0,8,7,3,3,6,4,6,15,14,15,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,12,14,0,8,7,0,13,14,0,14,13,2,9,6,15,14,15,8,7,0,13,14,0,14,13,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"0\"], \"clip_start\": 221.0, \"clip_end\": 224.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,11,3,8,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,6,4,6,15,14,2,9,13,3,0,8,7,3,3,0,8,13,11,6,4,6,15,14,15,14,15,8,2,9,6,4,6,4,7,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,10,15,14,15,8,7,7,8,1,3,12,12,14,0,3,8,2,9,13,3,0,8,7,3,7,0,13,3,8,2,9,13,3,0,8,7,3,3,6,4,6,15,14,15,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,12,14,0,8,7,0,13,14,0,14,13,2,9,6,15,14,15,8,7,0,13,14,0,14,13,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"14\", \"2\", \"9\", \"13\"], \"clip_start\": 69.0, \"clip_end\": 74.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q10_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,11,3,8,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,6,4,6,15,14,2,9,13,3,0,8,7,3,3,0,8,13,11,6,4,6,15,14,15,14,15,8,2,9,6,4,6,4,7,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,10,15,14,15,8,7,7,8,1,3,12,12,14,0,3,8,2,9,13,3,0,8,7,3,7,0,13,3,8,2,9,13,3,0,8,7,3,3,6,4,6,15,14,15,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,12,14,0,8,7,0,13,14,0,14,13,2,9,6,15,14,15,8,7,0,13,14,0,14,13,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"2\", \"9\", \"13\"], \"clip_start\": 109.0, \"clip_end\": 113.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q11_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,11,3,8,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,6,4,6,15,14,2,9,13,3,0,8,7,3,3,0,8,13,11,6,4,6,15,14,15,14,15,8,2,9,6,4,6,4,7,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,10,15,14,15,8,7,7,8,1,3,12,12,14,0,3,8,2,9,13,3,0,8,7,3,7,0,13,3,8,2,9,13,3,0,8,7,3,3,6,4,6,15,14,15,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,12,14,0,8,7,0,13,14,0,14,13,2,9,6,15,14,15,8,7,0,13,14,0,14,13,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"10\", \"5\", \"10\", \"7\"], \"clip_start\": 220.0, \"clip_end\": 226.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q12_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,11,3,8,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,6,4,6,15,14,2,9,13,3,0,8,7,3,3,0,8,13,11,6,4,6,15,14,15,14,15,8,2,9,6,4,6,4,7,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,10,15,14,15,8,7,7,8,1,3,12,12,14,0,3,8,2,9,13,3,0,8,7,3,7,0,13,3,8,2,9,13,3,0,8,7,3,3,6,4,6,15,14,15,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,12,14,0,8,7,0,13,14,0,14,13,2,9,6,15,14,15,8,7,0,13,14,0,14,13,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"15\", \"0\", \"0\", \"10\"], \"clip_start\": 63.0, \"clip_end\": 69.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q13_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,11,3,8,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,6,4,6,15,14,2,9,13,3,0,8,7,3,3,0,8,13,11,6,4,6,15,14,15,14,15,8,2,9,6,4,6,4,7,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,10,15,14,15,8,7,7,8,1,3,12,12,14,0,3,8,2,9,13,3,0,8,7,3,7,0,13,3,8,2,9,13,3,0,8,7,3,3,6,4,6,15,14,15,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,12,14,0,8,7,0,13,14,0,14,13,2,9,6,15,14,15,8,7,0,13,14,0,14,13,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"3\", \"3\", \"0\"], \"clip_start\": 87.0, \"clip_end\": 91.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,11,3,8,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,6,4,6,15,14,2,9,13,3,0,8,7,3,3,0,8,13,11,6,4,6,15,14,15,14,15,8,2,9,6,4,6,4,7,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,10,15,14,15,8,7,7,8,1,3,12,12,14,0,3,8,2,9,13,3,0,8,7,3,7,0,13,3,8,2,9,13,3,0,8,7,3,3,6,4,6,15,14,15,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,12,14,0,8,7,0,13,14,0,14,13,2,9,6,15,14,15,8,7,0,13,14,0,14,13,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"8\", \"5\", \"10\"], \"clip_start\": 61.0, \"clip_end\": 67.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q15_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,5,11,3,8,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,6,4,6,15,14,2,9,13,3,0,8,7,3,3,0,8,13,11,6,4,6,15,14,15,14,15,8,2,9,6,4,6,4,7,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,10,15,14,15,8,7,7,8,1,3,12,12,14,0,3,8,2,9,13,3,0,8,7,3,7,0,13,3,8,2,9,13,3,0,8,7,3,3,6,4,6,15,14,15,8,7,0,13,14,0,14,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,12,14,0,8,7,0,13,14,0,14,13,2,9,6,15,14,15,8,7,0,13,14,0,14,13,2,9,13,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7,3,3,0,8,7", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"2\"], \"clip_start\": 218.0, \"clip_end\": 221.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,0,6,1,0,13,12,13,7,5,7,5,15,7,3,10,0,6,10,15,10,5,12,12,2,14,5,15,13,7,2,2,13,12,9,1,0,15,10,5,13,7,2,2,13,7,2,2,14,5,5,2,14,5,15,13,7,2,4,5,2,14,5,13,7,2,2,14,5,13,7,2,11,14,4,13,12,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,5,5,12,8,14,1,2,14,5,7,12,3,10,0,13,7,2,2,13,7,2,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,4,11,12,9,9,1,15,10,5,0,6,10,15,10,5,13,9,3,7,12,14,1,7,5,15,7,3,10,0,6,10,15,1,0,2,6,6,12,9,1,2,14,5,15,13,7,2,2,14,5,5,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,2,13,13,7,2,2,14,5,13,7,2,15,10,5,12,9,1,0,12,5,12,9,9,1,15,14,4,13,7,2,2,14,5,5,2,14,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 80.0, \"clip_end\": 84.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,0,6,1,0,13,12,13,7,5,7,5,15,7,3,10,0,6,10,15,10,5,12,12,2,14,5,15,13,7,2,2,13,12,9,1,0,15,10,5,13,7,2,2,13,7,2,2,14,5,5,2,14,5,15,13,7,2,4,5,2,14,5,13,7,2,2,14,5,13,7,2,11,14,4,13,12,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,5,5,12,8,14,1,2,14,5,7,12,3,10,0,13,7,2,2,13,7,2,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,4,11,12,9,9,1,15,10,5,0,6,10,15,10,5,13,9,3,7,12,14,1,7,5,15,7,3,10,0,6,10,15,1,0,2,6,6,12,9,1,2,14,5,15,13,7,2,2,14,5,5,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,2,13,13,7,2,2,14,5,13,7,2,15,10,5,12,9,1,0,12,5,12,9,9,1,15,14,4,13,7,2,2,14,5,5,2,14,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"13\", \"7\", \"2\"], \"clip_start\": 184.0, \"clip_end\": 188.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,0,6,1,0,13,12,13,7,5,7,5,15,7,3,10,0,6,10,15,10,5,12,12,2,14,5,15,13,7,2,2,13,12,9,1,0,15,10,5,13,7,2,2,13,7,2,2,14,5,5,2,14,5,15,13,7,2,4,5,2,14,5,13,7,2,2,14,5,13,7,2,11,14,4,13,12,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,5,5,12,8,14,1,2,14,5,7,12,3,10,0,13,7,2,2,13,7,2,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,4,11,12,9,9,1,15,10,5,0,6,10,15,10,5,13,9,3,7,12,14,1,7,5,15,7,3,10,0,6,10,15,1,0,2,6,6,12,9,1,2,14,5,15,13,7,2,2,14,5,5,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,2,13,13,7,2,2,14,5,13,7,2,15,10,5,12,9,1,0,12,5,12,9,9,1,15,14,4,13,7,2,2,14,5,5,2,14,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"5\", \"5\", \"2\"], \"clip_start\": 179.0, \"clip_end\": 183.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,0,6,1,0,13,12,13,7,5,7,5,15,7,3,10,0,6,10,15,10,5,12,12,2,14,5,15,13,7,2,2,13,12,9,1,0,15,10,5,13,7,2,2,13,7,2,2,14,5,5,2,14,5,15,13,7,2,4,5,2,14,5,13,7,2,2,14,5,13,7,2,11,14,4,13,12,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,5,5,12,8,14,1,2,14,5,7,12,3,10,0,13,7,2,2,13,7,2,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,4,11,12,9,9,1,15,10,5,0,6,10,15,10,5,13,9,3,7,12,14,1,7,5,15,7,3,10,0,6,10,15,1,0,2,6,6,12,9,1,2,14,5,15,13,7,2,2,14,5,5,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,2,13,13,7,2,2,14,5,13,7,2,15,10,5,12,9,1,0,12,5,12,9,9,1,15,14,4,13,7,2,2,14,5,5,2,14,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"13\", \"9\", \"3\", \"7\"], \"clip_start\": 144.0, \"clip_end\": 150.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,0,6,1,0,13,12,13,7,5,7,5,15,7,3,10,0,6,10,15,10,5,12,12,2,14,5,15,13,7,2,2,13,12,9,1,0,15,10,5,13,7,2,2,13,7,2,2,14,5,5,2,14,5,15,13,7,2,4,5,2,14,5,13,7,2,2,14,5,13,7,2,11,14,4,13,12,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,5,5,12,8,14,1,2,14,5,7,12,3,10,0,13,7,2,2,13,7,2,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,4,11,12,9,9,1,15,10,5,0,6,10,15,10,5,13,9,3,7,12,14,1,7,5,15,7,3,10,0,6,10,15,1,0,2,6,6,12,9,1,2,14,5,15,13,7,2,2,14,5,5,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,2,13,13,7,2,2,14,5,13,7,2,15,10,5,12,9,1,0,12,5,12,9,9,1,15,14,4,13,7,2,2,14,5,5,2,14,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"2\", \"14\"], \"clip_start\": 176.0, \"clip_end\": 180.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,0,6,1,0,13,12,13,7,5,7,5,15,7,3,10,0,6,10,15,10,5,12,12,2,14,5,15,13,7,2,2,13,12,9,1,0,15,10,5,13,7,2,2,13,7,2,2,14,5,5,2,14,5,15,13,7,2,4,5,2,14,5,13,7,2,2,14,5,13,7,2,11,14,4,13,12,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,5,5,12,8,14,1,2,14,5,7,12,3,10,0,13,7,2,2,13,7,2,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,4,11,12,9,9,1,15,10,5,0,6,10,15,10,5,13,9,3,7,12,14,1,7,5,15,7,3,10,0,6,10,15,1,0,2,6,6,12,9,1,2,14,5,15,13,7,2,2,14,5,5,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,2,13,13,7,2,2,14,5,13,7,2,15,10,5,12,9,1,0,12,5,12,9,9,1,15,14,4,13,7,2,2,14,5,5,2,14,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"2\", \"14\"], \"clip_start\": 186.0, \"clip_end\": 190.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,0,6,1,0,13,12,13,7,5,7,5,15,7,3,10,0,6,10,15,10,5,12,12,2,14,5,15,13,7,2,2,13,12,9,1,0,15,10,5,13,7,2,2,13,7,2,2,14,5,5,2,14,5,15,13,7,2,4,5,2,14,5,13,7,2,2,14,5,13,7,2,11,14,4,13,12,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,5,5,12,8,14,1,2,14,5,7,12,3,10,0,13,7,2,2,13,7,2,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,4,11,12,9,9,1,15,10,5,0,6,10,15,10,5,13,9,3,7,12,14,1,7,5,15,7,3,10,0,6,10,15,1,0,2,6,6,12,9,1,2,14,5,15,13,7,2,2,14,5,5,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,2,13,13,7,2,2,14,5,13,7,2,15,10,5,12,9,1,0,12,5,12,9,9,1,15,14,4,13,7,2,2,14,5,5,2,14,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"13\", \"7\", \"2\", \"4\"], \"clip_start\": 54.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,0,6,1,0,13,12,13,7,5,7,5,15,7,3,10,0,6,10,15,10,5,12,12,2,14,5,15,13,7,2,2,13,12,9,1,0,15,10,5,13,7,2,2,13,7,2,2,14,5,5,2,14,5,15,13,7,2,4,5,2,14,5,13,7,2,2,14,5,13,7,2,11,14,4,13,12,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,5,5,12,8,14,1,2,14,5,7,12,3,10,0,13,7,2,2,13,7,2,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,4,11,12,9,9,1,15,10,5,0,6,10,15,10,5,13,9,3,7,12,14,1,7,5,15,7,3,10,0,6,10,15,1,0,2,6,6,12,9,1,2,14,5,15,13,7,2,2,14,5,5,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,2,13,13,7,2,2,14,5,13,7,2,15,10,5,12,9,1,0,12,5,12,9,9,1,15,14,4,13,7,2,2,14,5,5,2,14,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"15\", \"7\"], \"clip_start\": 153.0, \"clip_end\": 157.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,0,6,1,0,13,12,13,7,5,7,5,15,7,3,10,0,6,10,15,10,5,12,12,2,14,5,15,13,7,2,2,13,12,9,1,0,15,10,5,13,7,2,2,13,7,2,2,14,5,5,2,14,5,15,13,7,2,4,5,2,14,5,13,7,2,2,14,5,13,7,2,11,14,4,13,12,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,5,5,12,8,14,1,2,14,5,7,12,3,10,0,13,7,2,2,13,7,2,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,4,11,12,9,9,1,15,10,5,0,6,10,15,10,5,13,9,3,7,12,14,1,7,5,15,7,3,10,0,6,10,15,1,0,2,6,6,12,9,1,2,14,5,15,13,7,2,2,14,5,5,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,2,13,13,7,2,2,14,5,13,7,2,15,10,5,12,9,1,0,12,5,12,9,9,1,15,14,4,13,7,2,2,14,5,5,2,14,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"3\"], \"clip_start\": 122.0, \"clip_end\": 125.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,0,6,1,0,13,12,13,7,5,7,5,15,7,3,10,0,6,10,15,10,5,12,12,2,14,5,15,13,7,2,2,13,12,9,1,0,15,10,5,13,7,2,2,13,7,2,2,14,5,5,2,14,5,15,13,7,2,4,5,2,14,5,13,7,2,2,14,5,13,7,2,11,14,4,13,12,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,5,5,12,8,14,1,2,14,5,7,12,3,10,0,13,7,2,2,13,7,2,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,4,11,12,9,9,1,15,10,5,0,6,10,15,10,5,13,9,3,7,12,14,1,7,5,15,7,3,10,0,6,10,15,1,0,2,6,6,12,9,1,2,14,5,15,13,7,2,2,14,5,5,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,2,13,13,7,2,2,14,5,13,7,2,15,10,5,12,9,1,0,12,5,12,9,9,1,15,14,4,13,7,2,2,14,5,5,2,14,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\"], \"clip_start\": 109.0, \"clip_end\": 112.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,0,6,1,0,13,12,13,7,5,7,5,15,7,3,10,0,6,10,15,10,5,12,12,2,14,5,15,13,7,2,2,13,12,9,1,0,15,10,5,13,7,2,2,13,7,2,2,14,5,5,2,14,5,15,13,7,2,4,5,2,14,5,13,7,2,2,14,5,13,7,2,11,14,4,13,12,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,5,5,12,8,14,1,2,14,5,7,12,3,10,0,13,7,2,2,13,7,2,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,4,11,12,9,9,1,15,10,5,0,6,10,15,10,5,13,9,3,7,12,14,1,7,5,15,7,3,10,0,6,10,15,1,0,2,6,6,12,9,1,2,14,5,15,13,7,2,2,14,5,5,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,2,13,13,7,2,2,14,5,13,7,2,15,10,5,12,9,1,0,12,5,12,9,9,1,15,14,4,13,7,2,2,14,5,5,2,14,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"11\"], \"clip_start\": 253.0, \"clip_end\": 256.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,0,6,1,0,13,12,13,7,5,7,5,15,7,3,10,0,6,10,15,10,5,12,12,2,14,5,15,13,7,2,2,13,12,9,1,0,15,10,5,13,7,2,2,13,7,2,2,14,5,5,2,14,5,15,13,7,2,4,5,2,14,5,13,7,2,2,14,5,13,7,2,11,14,4,13,12,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,5,5,12,8,14,1,2,14,5,7,12,3,10,0,13,7,2,2,13,7,2,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,4,11,12,9,9,1,15,10,5,0,6,10,15,10,5,13,9,3,7,12,14,1,7,5,15,7,3,10,0,6,10,15,1,0,2,6,6,12,9,1,2,14,5,15,13,7,2,2,14,5,5,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,2,13,13,7,2,2,14,5,13,7,2,15,10,5,12,9,1,0,12,5,12,9,9,1,15,14,4,13,7,2,2,14,5,5,2,14,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"2\", \"14\", \"2\"], \"clip_start\": 213.0, \"clip_end\": 217.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,0,6,1,0,13,12,13,7,5,7,5,15,7,3,10,0,6,10,15,10,5,12,12,2,14,5,15,13,7,2,2,13,12,9,1,0,15,10,5,13,7,2,2,13,7,2,2,14,5,5,2,14,5,15,13,7,2,4,5,2,14,5,13,7,2,2,14,5,13,7,2,11,14,4,13,12,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,5,5,12,8,14,1,2,14,5,7,12,3,10,0,13,7,2,2,13,7,2,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,4,11,12,9,9,1,15,10,5,0,6,10,15,10,5,13,9,3,7,12,14,1,7,5,15,7,3,10,0,6,10,15,1,0,2,6,6,12,9,1,2,14,5,15,13,7,2,2,14,5,5,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,2,13,13,7,2,2,14,5,13,7,2,15,10,5,12,9,1,0,12,5,12,9,9,1,15,14,4,13,7,2,2,14,5,5,2,14,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"10\", \"5\", \"12\", \"9\", \"1\"], \"clip_start\": 227.0, \"clip_end\": 233.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q13_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,0,6,1,0,13,12,13,7,5,7,5,15,7,3,10,0,6,10,15,10,5,12,12,2,14,5,15,13,7,2,2,13,12,9,1,0,15,10,5,13,7,2,2,13,7,2,2,14,5,5,2,14,5,15,13,7,2,4,5,2,14,5,13,7,2,2,14,5,13,7,2,11,14,4,13,12,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,5,5,12,8,14,1,2,14,5,7,12,3,10,0,13,7,2,2,13,7,2,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,4,11,12,9,9,1,15,10,5,0,6,10,15,10,5,13,9,3,7,12,14,1,7,5,15,7,3,10,0,6,10,15,1,0,2,6,6,12,9,1,2,14,5,15,13,7,2,2,14,5,5,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,2,13,13,7,2,2,14,5,13,7,2,15,10,5,12,9,1,0,12,5,12,9,9,1,15,14,4,13,7,2,2,14,5,5,2,14,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"1\", \"15\", \"14\"], \"clip_start\": 238.0, \"clip_end\": 242.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q14_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,0,6,1,0,13,12,13,7,5,7,5,15,7,3,10,0,6,10,15,10,5,12,12,2,14,5,15,13,7,2,2,13,12,9,1,0,15,10,5,13,7,2,2,13,7,2,2,14,5,5,2,14,5,15,13,7,2,4,5,2,14,5,13,7,2,2,14,5,13,7,2,11,14,4,13,12,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,5,5,12,8,14,1,2,14,5,7,12,3,10,0,13,7,2,2,13,7,2,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,4,11,12,9,9,1,15,10,5,0,6,10,15,10,5,13,9,3,7,12,14,1,7,5,15,7,3,10,0,6,10,15,1,0,2,6,6,12,9,1,2,14,5,15,13,7,2,2,14,5,5,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,2,13,13,7,2,2,14,5,13,7,2,15,10,5,12,9,1,0,12,5,12,9,9,1,15,14,4,13,7,2,2,14,5,5,2,14,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"2\", \"2\", \"14\"], \"clip_start\": 185.0, \"clip_end\": 190.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q15_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,0,6,1,0,13,12,13,7,5,7,5,15,7,3,10,0,6,10,15,10,5,12,12,2,14,5,15,13,7,2,2,13,12,9,1,0,15,10,5,13,7,2,2,13,7,2,2,14,5,5,2,14,5,15,13,7,2,4,5,2,14,5,13,7,2,2,14,5,13,7,2,11,14,4,13,12,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,5,5,12,8,14,1,2,14,5,7,12,3,10,0,13,7,2,2,13,7,2,2,14,5,13,7,2,2,13,7,2,2,13,7,2,2,14,4,11,12,9,9,1,15,10,5,0,6,10,15,10,5,13,9,3,7,12,14,1,7,5,15,7,3,10,0,6,10,15,1,0,2,6,6,12,9,1,2,14,5,15,13,7,2,2,14,5,5,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,5,13,7,2,2,14,5,13,7,2,2,13,7,2,2,14,2,13,13,7,2,2,14,5,13,7,2,15,10,5,12,9,1,0,12,5,12,9,9,1,15,14,4,13,7,2,2,14,5,5,2,14,5,13,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"8\", \"11\", \"8\", \"4\", \"6\"], \"clip_start\": 110.0, \"clip_end\": 116.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,3,15,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,13,4,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,14,0,7,0,6,2,14,13,14,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,7,0,7,0,6,2,14,13,6,2,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,3,7,10,11,8,4,9,13,4,1,2,0,6,2,14,13,15,5,4,6,9,9,13,14,1,6,8,1,13,11,8,4,6,9,13,14,0,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"8\", \"4\", \"6\", \"10\"], \"clip_start\": 111.0, \"clip_end\": 117.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,3,15,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,13,4,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,14,0,7,0,6,2,14,13,14,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,7,0,7,0,6,2,14,13,6,2,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,3,7,10,11,8,4,9,13,4,1,2,0,6,2,14,13,15,5,4,6,9,9,13,14,1,6,8,1,13,11,8,4,6,9,13,14,0,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"10\", \"6\", \"8\"], \"clip_start\": 159.0, \"clip_end\": 164.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,3,15,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,13,4,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,14,0,7,0,6,2,14,13,14,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,7,0,7,0,6,2,14,13,6,2,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,3,7,10,11,8,4,9,13,4,1,2,0,6,2,14,13,15,5,4,6,9,9,13,14,1,6,8,1,13,11,8,4,6,9,13,14,0,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"13\", \"11\", \"8\"], \"clip_start\": 102.0, \"clip_end\": 107.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,3,15,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,13,4,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,14,0,7,0,6,2,14,13,14,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,7,0,7,0,6,2,14,13,6,2,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,3,7,10,11,8,4,9,13,4,1,2,0,6,2,14,13,15,5,4,6,9,9,13,14,1,6,8,1,13,11,8,4,6,9,13,14,0,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"14\", \"11\", \"8\", \"4\"], \"clip_start\": 202.0, \"clip_end\": 208.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,3,15,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,13,4,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,14,0,7,0,6,2,14,13,14,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,7,0,7,0,6,2,14,13,6,2,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,3,7,10,11,8,4,9,13,4,1,2,0,6,2,14,13,15,5,4,6,9,9,13,14,1,6,8,1,13,11,8,4,6,9,13,14,0,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 206.0, \"clip_end\": 212.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,3,15,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,13,4,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,14,0,7,0,6,2,14,13,14,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,7,0,7,0,6,2,14,13,6,2,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,3,7,10,11,8,4,9,13,4,1,2,0,6,2,14,13,15,5,4,6,9,9,13,14,1,6,8,1,13,11,8,4,6,9,13,14,0,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"6\", \"8\", \"11\", \"8\"], \"clip_start\": 208.0, \"clip_end\": 214.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,3,15,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,13,4,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,14,0,7,0,6,2,14,13,14,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,7,0,7,0,6,2,14,13,6,2,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,3,7,10,11,8,4,9,13,4,1,2,0,6,2,14,13,15,5,4,6,9,9,13,14,1,6,8,1,13,11,8,4,6,9,13,14,0,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 78.0, \"clip_end\": 82.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,3,15,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,13,4,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,14,0,7,0,6,2,14,13,14,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,7,0,7,0,6,2,14,13,6,2,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,3,7,10,11,8,4,9,13,4,1,2,0,6,2,14,13,15,5,4,6,9,9,13,14,1,6,8,1,13,11,8,4,6,9,13,14,0,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"4\", \"6\", \"14\", \"11\"], \"clip_start\": 27.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,3,15,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,13,4,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,14,0,7,0,6,2,14,13,14,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,7,0,7,0,6,2,14,13,6,2,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,3,7,10,11,8,4,9,13,4,1,2,0,6,2,14,13,15,5,4,6,9,9,13,14,1,6,8,1,13,11,8,4,6,9,13,14,0,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"8\", \"4\", \"6\", \"10\"], \"clip_start\": 157.0, \"clip_end\": 162.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,3,15,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,13,4,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,14,0,7,0,6,2,14,13,14,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,7,0,7,0,6,2,14,13,6,2,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,3,7,10,11,8,4,9,13,4,1,2,0,6,2,14,13,15,5,4,6,9,9,13,14,1,6,8,1,13,11,8,4,6,9,13,14,0,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 93.0, \"clip_end\": 98.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,3,15,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,13,4,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,14,0,7,0,6,2,14,13,14,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,7,0,7,0,6,2,14,13,6,2,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,3,7,10,11,8,4,9,13,4,1,2,0,6,2,14,13,15,5,4,6,9,9,13,14,1,6,8,1,13,11,8,4,6,9,13,14,0,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"8\", \"11\"], \"clip_start\": 49.0, \"clip_end\": 53.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,3,15,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,13,4,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,14,0,7,0,6,2,14,13,14,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,7,0,7,0,6,2,14,13,6,2,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,3,7,10,11,8,4,9,13,4,1,2,0,6,2,14,13,15,5,4,6,9,9,13,14,1,6,8,1,13,11,8,4,6,9,13,14,0,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"13\", \"11\", \"8\"], \"clip_start\": 70.0, \"clip_end\": 75.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,3,15,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,13,4,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,14,0,7,0,6,2,14,13,14,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,7,0,7,0,6,2,14,13,6,2,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,3,7,10,11,8,4,9,13,4,1,2,0,6,2,14,13,15,5,4,6,9,9,13,14,1,6,8,1,13,11,8,4,6,9,13,14,0,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"8\", \"11\", \"8\", \"4\"], \"clip_start\": 177.0, \"clip_end\": 182.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,3,15,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,13,4,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,14,0,7,0,6,2,14,13,14,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,7,0,7,0,6,2,14,13,6,2,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,3,7,10,11,8,4,9,13,4,1,2,0,6,2,14,13,15,5,4,6,9,9,13,14,1,6,8,1,13,11,8,4,6,9,13,14,0,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 138.0, \"clip_end\": 144.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,3,15,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,13,4,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,14,0,7,0,6,2,14,13,14,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,7,0,7,0,6,2,14,13,6,2,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,3,7,10,11,8,4,9,13,4,1,2,0,6,2,14,13,15,5,4,6,9,9,13,14,1,6,8,1,13,11,8,4,6,9,13,14,0,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"13\"], \"clip_start\": 147.0, \"clip_end\": 150.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q15_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,3,15,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,15,13,9,13,14,1,6,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,13,4,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,14,0,7,0,6,2,14,13,14,1,8,1,13,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,7,0,7,0,6,2,14,13,6,2,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,10,6,8,11,8,4,6,14,11,8,4,6,10,6,8,11,8,4,6,10,6,3,7,10,11,8,4,9,13,4,1,2,0,6,2,14,13,15,5,4,6,9,9,13,14,1,6,8,1,13,11,8,4,6,9,13,14,0,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"3\"], \"clip_start\": 202.0, \"clip_end\": 206.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,10,3,14,14,3,11,1,3,11,10,3,14,14,8,6,10,3,14,6,10,3,14,6,10,3,14,0,10,3,8,6,3,3,7,1,6,3,3,7,1,2,15,8,6,10,3,14,6,10,3,14,14,8,6,3,3,7,1,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,8,6,6,3,3,7,1,6,3,3,5,15,2,9,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,8,6,3,3,7,1,6,10,3,14,6,3,3,7,1,2,15,8,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,15,9,10,3,14,0,14,0,11,1,8,13,1,8,10,3,14,6,3,3,7,1,2,15,3,11,10,3,14,0,10,3,5,15,2,15,2,5,15,2,9,9,4,4,11,10,3,14,0,10,3,5,15,2,15,2,5,2,15,3,11,1,8,13,2,2,15,0,14,1,8,10,3,14,6,3,3,5", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 243.0, \"clip_end\": 248.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,10,3,14,14,3,11,1,3,11,10,3,14,14,8,6,10,3,14,6,10,3,14,6,10,3,14,0,10,3,8,6,3,3,7,1,6,3,3,7,1,2,15,8,6,10,3,14,6,10,3,14,14,8,6,3,3,7,1,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,8,6,6,3,3,7,1,6,3,3,5,15,2,9,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,8,6,3,3,7,1,6,10,3,14,6,3,3,7,1,2,15,8,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,15,9,10,3,14,0,14,0,11,1,8,13,1,8,10,3,14,6,3,3,7,1,2,15,3,11,10,3,14,0,10,3,5,15,2,15,2,5,15,2,9,9,4,4,11,10,3,14,0,10,3,5,15,2,15,2,5,2,15,3,11,1,8,13,2,2,15,0,14,1,8,10,3,14,6,3,3,5", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 100.0, \"clip_end\": 105.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,10,3,14,14,3,11,1,3,11,10,3,14,14,8,6,10,3,14,6,10,3,14,6,10,3,14,0,10,3,8,6,3,3,7,1,6,3,3,7,1,2,15,8,6,10,3,14,6,10,3,14,14,8,6,3,3,7,1,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,8,6,6,3,3,7,1,6,3,3,5,15,2,9,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,8,6,3,3,7,1,6,10,3,14,6,3,3,7,1,2,15,8,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,15,9,10,3,14,0,14,0,11,1,8,13,1,8,10,3,14,6,3,3,7,1,2,15,3,11,10,3,14,0,10,3,5,15,2,15,2,5,15,2,9,9,4,4,11,10,3,14,0,10,3,5,15,2,15,2,5,2,15,3,11,1,8,13,2,2,15,0,14,1,8,10,3,14,6,3,3,5", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"6\", \"3\", \"3\"], \"clip_start\": 153.0, \"clip_end\": 158.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,10,3,14,14,3,11,1,3,11,10,3,14,14,8,6,10,3,14,6,10,3,14,6,10,3,14,0,10,3,8,6,3,3,7,1,6,3,3,7,1,2,15,8,6,10,3,14,6,10,3,14,14,8,6,3,3,7,1,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,8,6,6,3,3,7,1,6,3,3,5,15,2,9,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,8,6,3,3,7,1,6,10,3,14,6,3,3,7,1,2,15,8,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,15,9,10,3,14,0,14,0,11,1,8,13,1,8,10,3,14,6,3,3,7,1,2,15,3,11,10,3,14,0,10,3,5,15,2,15,2,5,15,2,9,9,4,4,11,10,3,14,0,10,3,5,15,2,15,2,5,2,15,3,11,1,8,13,2,2,15,0,14,1,8,10,3,14,6,3,3,5", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 191.0, \"clip_end\": 195.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,10,3,14,14,3,11,1,3,11,10,3,14,14,8,6,10,3,14,6,10,3,14,6,10,3,14,0,10,3,8,6,3,3,7,1,6,3,3,7,1,2,15,8,6,10,3,14,6,10,3,14,14,8,6,3,3,7,1,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,8,6,6,3,3,7,1,6,3,3,5,15,2,9,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,8,6,3,3,7,1,6,10,3,14,6,3,3,7,1,2,15,8,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,15,9,10,3,14,0,14,0,11,1,8,13,1,8,10,3,14,6,3,3,7,1,2,15,3,11,10,3,14,0,10,3,5,15,2,15,2,5,15,2,9,9,4,4,11,10,3,14,0,10,3,5,15,2,15,2,5,2,15,3,11,1,8,13,2,2,15,0,14,1,8,10,3,14,6,3,3,5", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 237.0, \"clip_end\": 242.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,10,3,14,14,3,11,1,3,11,10,3,14,14,8,6,10,3,14,6,10,3,14,6,10,3,14,0,10,3,8,6,3,3,7,1,6,3,3,7,1,2,15,8,6,10,3,14,6,10,3,14,14,8,6,3,3,7,1,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,8,6,6,3,3,7,1,6,3,3,5,15,2,9,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,8,6,3,3,7,1,6,10,3,14,6,3,3,7,1,2,15,8,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,15,9,10,3,14,0,14,0,11,1,8,13,1,8,10,3,14,6,3,3,7,1,2,15,3,11,10,3,14,0,10,3,5,15,2,15,2,5,15,2,9,9,4,4,11,10,3,14,0,10,3,5,15,2,15,2,5,2,15,3,11,1,8,13,2,2,15,0,14,1,8,10,3,14,6,3,3,5", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"5\", \"15\"], \"clip_start\": 175.0, \"clip_end\": 178.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,10,3,14,14,3,11,1,3,11,10,3,14,14,8,6,10,3,14,6,10,3,14,6,10,3,14,0,10,3,8,6,3,3,7,1,6,3,3,7,1,2,15,8,6,10,3,14,6,10,3,14,14,8,6,3,3,7,1,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,8,6,6,3,3,7,1,6,3,3,5,15,2,9,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,8,6,3,3,7,1,6,10,3,14,6,3,3,7,1,2,15,8,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,15,9,10,3,14,0,14,0,11,1,8,13,1,8,10,3,14,6,3,3,7,1,2,15,3,11,10,3,14,0,10,3,5,15,2,15,2,5,15,2,9,9,4,4,11,10,3,14,0,10,3,5,15,2,15,2,5,2,15,3,11,1,8,13,2,2,15,0,14,1,8,10,3,14,6,3,3,5", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"5\", \"15\", \"2\", \"15\"], \"clip_start\": 170.0, \"clip_end\": 175.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,10,3,14,14,3,11,1,3,11,10,3,14,14,8,6,10,3,14,6,10,3,14,6,10,3,14,0,10,3,8,6,3,3,7,1,6,3,3,7,1,2,15,8,6,10,3,14,6,10,3,14,14,8,6,3,3,7,1,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,8,6,6,3,3,7,1,6,3,3,5,15,2,9,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,8,6,3,3,7,1,6,10,3,14,6,3,3,7,1,2,15,8,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,15,9,10,3,14,0,14,0,11,1,8,13,1,8,10,3,14,6,3,3,7,1,2,15,3,11,10,3,14,0,10,3,5,15,2,15,2,5,15,2,9,9,4,4,11,10,3,14,0,10,3,5,15,2,15,2,5,2,15,3,11,1,8,13,2,2,15,0,14,1,8,10,3,14,6,3,3,5", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"10\"], \"clip_start\": 221.0, \"clip_end\": 224.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,10,3,14,14,3,11,1,3,11,10,3,14,14,8,6,10,3,14,6,10,3,14,6,10,3,14,0,10,3,8,6,3,3,7,1,6,3,3,7,1,2,15,8,6,10,3,14,6,10,3,14,14,8,6,3,3,7,1,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,8,6,6,3,3,7,1,6,3,3,5,15,2,9,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,8,6,3,3,7,1,6,10,3,14,6,3,3,7,1,2,15,8,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,15,9,10,3,14,0,14,0,11,1,8,13,1,8,10,3,14,6,3,3,7,1,2,15,3,11,10,3,14,0,10,3,5,15,2,15,2,5,15,2,9,9,4,4,11,10,3,14,0,10,3,5,15,2,15,2,5,2,15,3,11,1,8,13,2,2,15,0,14,1,8,10,3,14,6,3,3,5", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"15\", \"2\"], \"clip_start\": 15.0, \"clip_end\": 19.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q9_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,10,3,14,14,3,11,1,3,11,10,3,14,14,8,6,10,3,14,6,10,3,14,6,10,3,14,0,10,3,8,6,3,3,7,1,6,3,3,7,1,2,15,8,6,10,3,14,6,10,3,14,14,8,6,3,3,7,1,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,8,6,6,3,3,7,1,6,3,3,5,15,2,9,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,8,6,3,3,7,1,6,10,3,14,6,3,3,7,1,2,15,8,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,15,9,10,3,14,0,14,0,11,1,8,13,1,8,10,3,14,6,3,3,7,1,2,15,3,11,10,3,14,0,10,3,5,15,2,15,2,5,15,2,9,9,4,4,11,10,3,14,0,10,3,5,15,2,15,2,5,2,15,3,11,1,8,13,2,2,15,0,14,1,8,10,3,14,6,3,3,5", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"5\", \"15\", \"2\", \"15\", \"2\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q10_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,10,3,14,14,3,11,1,3,11,10,3,14,14,8,6,10,3,14,6,10,3,14,6,10,3,14,0,10,3,8,6,3,3,7,1,6,3,3,7,1,2,15,8,6,10,3,14,6,10,3,14,14,8,6,3,3,7,1,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,8,6,6,3,3,7,1,6,3,3,5,15,2,9,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,8,6,3,3,7,1,6,10,3,14,6,3,3,7,1,2,15,8,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,15,9,10,3,14,0,14,0,11,1,8,13,1,8,10,3,14,6,3,3,7,1,2,15,3,11,10,3,14,0,10,3,5,15,2,15,2,5,15,2,9,9,4,4,11,10,3,14,0,10,3,5,15,2,15,2,5,2,15,3,11,1,8,13,2,2,15,0,14,1,8,10,3,14,6,3,3,5", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"14\", \"14\"], \"clip_start\": 69.0, \"clip_end\": 73.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q11_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,10,3,14,14,3,11,1,3,11,10,3,14,14,8,6,10,3,14,6,10,3,14,6,10,3,14,0,10,3,8,6,3,3,7,1,6,3,3,7,1,2,15,8,6,10,3,14,6,10,3,14,14,8,6,3,3,7,1,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,8,6,6,3,3,7,1,6,3,3,5,15,2,9,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,8,6,3,3,7,1,6,10,3,14,6,3,3,7,1,2,15,8,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,15,9,10,3,14,0,14,0,11,1,8,13,1,8,10,3,14,6,3,3,7,1,2,15,3,11,10,3,14,0,10,3,5,15,2,15,2,5,15,2,9,9,4,4,11,10,3,14,0,10,3,5,15,2,15,2,5,2,15,3,11,1,8,13,2,2,15,0,14,1,8,10,3,14,6,3,3,5", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"1\", \"8\", \"10\", \"3\"], \"clip_start\": 188.0, \"clip_end\": 194.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q12_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,10,3,14,14,3,11,1,3,11,10,3,14,14,8,6,10,3,14,6,10,3,14,6,10,3,14,0,10,3,8,6,3,3,7,1,6,3,3,7,1,2,15,8,6,10,3,14,6,10,3,14,14,8,6,3,3,7,1,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,8,6,6,3,3,7,1,6,3,3,5,15,2,9,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,8,6,3,3,7,1,6,10,3,14,6,3,3,7,1,2,15,8,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,15,9,10,3,14,0,14,0,11,1,8,13,1,8,10,3,14,6,3,3,7,1,2,15,3,11,10,3,14,0,10,3,5,15,2,15,2,5,15,2,9,9,4,4,11,10,3,14,0,10,3,5,15,2,15,2,5,2,15,3,11,1,8,13,2,2,15,0,14,1,8,10,3,14,6,3,3,5", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"5\", \"15\", \"2\"], \"clip_start\": 140.0, \"clip_end\": 144.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q13_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,10,3,14,14,3,11,1,3,11,10,3,14,14,8,6,10,3,14,6,10,3,14,6,10,3,14,0,10,3,8,6,3,3,7,1,6,3,3,7,1,2,15,8,6,10,3,14,6,10,3,14,14,8,6,3,3,7,1,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,8,6,6,3,3,7,1,6,3,3,5,15,2,9,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,8,6,3,3,7,1,6,10,3,14,6,3,3,7,1,2,15,8,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,15,9,10,3,14,0,14,0,11,1,8,13,1,8,10,3,14,6,3,3,7,1,2,15,3,11,10,3,14,0,10,3,5,15,2,15,2,5,15,2,9,9,4,4,11,10,3,14,0,10,3,5,15,2,15,2,5,2,15,3,11,1,8,13,2,2,15,0,14,1,8,10,3,14,6,3,3,5", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"11\", \"2\", \"3\"], \"clip_start\": 97.0, \"clip_end\": 102.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q14_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,10,3,14,14,3,11,1,3,11,10,3,14,14,8,6,10,3,14,6,10,3,14,6,10,3,14,0,10,3,8,6,3,3,7,1,6,3,3,7,1,2,15,8,6,10,3,14,6,10,3,14,14,8,6,3,3,7,1,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,8,6,6,3,3,7,1,6,3,3,5,15,2,9,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,8,6,3,3,7,1,6,10,3,14,6,3,3,7,1,2,15,8,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,15,9,10,3,14,0,14,0,11,1,8,13,1,8,10,3,14,6,3,3,7,1,2,15,3,11,10,3,14,0,10,3,5,15,2,15,2,5,15,2,9,9,4,4,11,10,3,14,0,10,3,5,15,2,15,2,5,2,15,3,11,1,8,13,2,2,15,0,14,1,8,10,3,14,6,3,3,5", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"13\", \"9\", \"14\"], \"clip_start\": 31.0, \"clip_end\": 36.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q15_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,10,3,14,14,3,11,1,3,11,10,3,14,14,8,6,10,3,14,6,10,3,14,6,10,3,14,0,10,3,8,6,3,3,7,1,6,3,3,7,1,2,15,8,6,10,3,14,6,10,3,14,14,8,6,3,3,7,1,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,8,6,6,3,3,7,1,6,3,3,5,15,2,9,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,2,15,2,5,15,2,15,8,6,3,3,7,1,6,10,3,14,6,3,3,7,1,2,15,8,6,3,3,5,15,2,15,2,5,15,2,15,2,5,15,15,9,10,3,14,0,14,0,11,1,8,13,1,8,10,3,14,6,3,3,7,1,2,15,3,11,10,3,14,0,10,3,5,15,2,15,2,5,15,2,9,9,4,4,11,10,3,14,0,10,3,5,15,2,15,2,5,2,15,3,11,1,8,13,2,2,15,0,14,1,8,10,3,14,6,3,3,5", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"4\", \"9\", \"4\"], \"clip_start\": 115.0, \"clip_end\": 120.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,7,14,4,9,2,9,14,12,11,6,2,15,8,1,1,4,11,7,2,9,14,12,1,3,7,14,9,10,7,6,2,4,0,7,6,2,6,2,4,6,2,4,9,6,2,6,15,12,1,3,6,2,4,9,4,9,2,9,6,2,6,2,4,9,4,15,8,1,1,7,14,4,11,7,6,2,4,6,2,4,6,2,4,6,2,6,2,6,2,4,9,4,9,2,9,6,2,4,9,4,9,2,9,10,7,6,2,4,0,9,6,2,4,6,2,4,9,4,9,2,9,14,12,11,6,1,3,7,6,2,4,0,7,6,2,6,2,6,14,10,2,9,14,12,6,2,6,2,4,9,9,6,2,4,6,2,6,2,6,2,4,6,2,4,9,4,11,7,6,2,4,0,7,6,2,6,2,4,6,2,6,2,4,6,2,4,9,4,9,12,1,3,7,6,6,2,4,9,4,9,12,1,3,7,6,2,4,0,7,6,2,4,0,7,14,4,9,12,1,8,1,1,3,7,6,2,4,0,7,6,2,4,0,7,6,2,4,6,2,4,9,4,11,7,6,2,6,2,6,2,4,9,4,9", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"2\", \"4\"], \"clip_start\": 75.0, \"clip_end\": 79.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,7,14,4,9,2,9,14,12,11,6,2,15,8,1,1,4,11,7,2,9,14,12,1,3,7,14,9,10,7,6,2,4,0,7,6,2,6,2,4,6,2,4,9,6,2,6,15,12,1,3,6,2,4,9,4,9,2,9,6,2,6,2,4,9,4,15,8,1,1,7,14,4,11,7,6,2,4,6,2,4,6,2,4,6,2,6,2,6,2,4,9,4,9,2,9,6,2,4,9,4,9,2,9,10,7,6,2,4,0,9,6,2,4,6,2,4,9,4,9,2,9,14,12,11,6,1,3,7,6,2,4,0,7,6,2,6,2,6,14,10,2,9,14,12,6,2,6,2,4,9,9,6,2,4,6,2,6,2,6,2,4,6,2,4,9,4,11,7,6,2,4,0,7,6,2,6,2,4,6,2,6,2,4,6,2,4,9,4,9,12,1,3,7,6,6,2,4,9,4,9,12,1,3,7,6,2,4,0,7,6,2,4,0,7,14,4,9,12,1,8,1,1,3,7,6,2,4,0,7,6,2,4,0,7,6,2,4,6,2,4,9,4,11,7,6,2,6,2,6,2,4,9,4,9", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"12\", \"1\", \"3\", \"7\"], \"clip_start\": 189.0, \"clip_end\": 195.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,7,14,4,9,2,9,14,12,11,6,2,15,8,1,1,4,11,7,2,9,14,12,1,3,7,14,9,10,7,6,2,4,0,7,6,2,6,2,4,6,2,4,9,6,2,6,15,12,1,3,6,2,4,9,4,9,2,9,6,2,6,2,4,9,4,15,8,1,1,7,14,4,11,7,6,2,4,6,2,4,6,2,4,6,2,6,2,6,2,4,9,4,9,2,9,6,2,4,9,4,9,2,9,10,7,6,2,4,0,9,6,2,4,6,2,4,9,4,9,2,9,14,12,11,6,1,3,7,6,2,4,0,7,6,2,6,2,6,14,10,2,9,14,12,6,2,6,2,4,9,9,6,2,4,6,2,6,2,6,2,4,6,2,4,9,4,11,7,6,2,4,0,7,6,2,6,2,4,6,2,6,2,4,6,2,4,9,4,9,12,1,3,7,6,6,2,4,9,4,9,12,1,3,7,6,2,4,0,7,6,2,4,0,7,14,4,9,12,1,8,1,1,3,7,6,2,4,0,7,6,2,4,0,7,6,2,4,6,2,4,9,4,11,7,6,2,6,2,6,2,4,9,4,9", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"1\", \"3\", \"6\", \"2\"], \"clip_start\": 49.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,7,14,4,9,2,9,14,12,11,6,2,15,8,1,1,4,11,7,2,9,14,12,1,3,7,14,9,10,7,6,2,4,0,7,6,2,6,2,4,6,2,4,9,6,2,6,15,12,1,3,6,2,4,9,4,9,2,9,6,2,6,2,4,9,4,15,8,1,1,7,14,4,11,7,6,2,4,6,2,4,6,2,4,6,2,6,2,6,2,4,9,4,9,2,9,6,2,4,9,4,9,2,9,10,7,6,2,4,0,9,6,2,4,6,2,4,9,4,9,2,9,14,12,11,6,1,3,7,6,2,4,0,7,6,2,6,2,6,14,10,2,9,14,12,6,2,6,2,4,9,9,6,2,4,6,2,6,2,6,2,4,6,2,4,9,4,11,7,6,2,4,0,7,6,2,6,2,4,6,2,6,2,4,6,2,4,9,4,9,12,1,3,7,6,6,2,4,9,4,9,12,1,3,7,6,2,4,0,7,6,2,4,0,7,14,4,9,12,1,8,1,1,3,7,6,2,4,0,7,6,2,4,0,7,6,2,4,6,2,4,9,4,11,7,6,2,6,2,6,2,4,9,4,9", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"4\", \"9\", \"4\", \"9\"], \"clip_start\": 186.0, \"clip_end\": 191.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,7,14,4,9,2,9,14,12,11,6,2,15,8,1,1,4,11,7,2,9,14,12,1,3,7,14,9,10,7,6,2,4,0,7,6,2,6,2,4,6,2,4,9,6,2,6,15,12,1,3,6,2,4,9,4,9,2,9,6,2,6,2,4,9,4,15,8,1,1,7,14,4,11,7,6,2,4,6,2,4,6,2,4,6,2,6,2,6,2,4,9,4,9,2,9,6,2,4,9,4,9,2,9,10,7,6,2,4,0,9,6,2,4,6,2,4,9,4,9,2,9,14,12,11,6,1,3,7,6,2,4,0,7,6,2,6,2,6,14,10,2,9,14,12,6,2,6,2,4,9,9,6,2,4,6,2,6,2,6,2,4,6,2,4,9,4,11,7,6,2,4,0,7,6,2,6,2,4,6,2,6,2,4,6,2,4,9,4,9,12,1,3,7,6,6,2,4,9,4,9,12,1,3,7,6,2,4,0,7,6,2,4,0,7,14,4,9,12,1,8,1,1,3,7,6,2,4,0,7,6,2,4,0,7,6,2,4,6,2,4,9,4,11,7,6,2,6,2,6,2,4,9,4,9", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"9\", \"14\", \"12\", \"1\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,7,14,4,9,2,9,14,12,11,6,2,15,8,1,1,4,11,7,2,9,14,12,1,3,7,14,9,10,7,6,2,4,0,7,6,2,6,2,4,6,2,4,9,6,2,6,15,12,1,3,6,2,4,9,4,9,2,9,6,2,6,2,4,9,4,15,8,1,1,7,14,4,11,7,6,2,4,6,2,4,6,2,4,6,2,6,2,6,2,4,9,4,9,2,9,6,2,4,9,4,9,2,9,10,7,6,2,4,0,9,6,2,4,6,2,4,9,4,9,2,9,14,12,11,6,1,3,7,6,2,4,0,7,6,2,6,2,6,14,10,2,9,14,12,6,2,6,2,4,9,9,6,2,4,6,2,6,2,6,2,4,6,2,4,9,4,11,7,6,2,4,0,7,6,2,6,2,4,6,2,6,2,4,6,2,4,9,4,9,12,1,3,7,6,6,2,4,9,4,9,12,1,3,7,6,2,4,0,7,6,2,4,0,7,14,4,9,12,1,8,1,1,3,7,6,2,4,0,7,6,2,4,0,7,6,2,4,6,2,4,9,4,11,7,6,2,6,2,6,2,4,9,4,9", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"2\", \"9\", \"6\"], \"clip_start\": 93.0, \"clip_end\": 98.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,7,14,4,9,2,9,14,12,11,6,2,15,8,1,1,4,11,7,2,9,14,12,1,3,7,14,9,10,7,6,2,4,0,7,6,2,6,2,4,6,2,4,9,6,2,6,15,12,1,3,6,2,4,9,4,9,2,9,6,2,6,2,4,9,4,15,8,1,1,7,14,4,11,7,6,2,4,6,2,4,6,2,4,6,2,6,2,6,2,4,9,4,9,2,9,6,2,4,9,4,9,2,9,10,7,6,2,4,0,9,6,2,4,6,2,4,9,4,9,2,9,14,12,11,6,1,3,7,6,2,4,0,7,6,2,6,2,6,14,10,2,9,14,12,6,2,6,2,4,9,9,6,2,4,6,2,6,2,6,2,4,6,2,4,9,4,11,7,6,2,4,0,7,6,2,6,2,4,6,2,6,2,4,6,2,4,9,4,9,12,1,3,7,6,6,2,4,9,4,9,12,1,3,7,6,2,4,0,7,6,2,4,0,7,14,4,9,12,1,8,1,1,3,7,6,2,4,0,7,6,2,4,0,7,6,2,4,6,2,4,9,4,11,7,6,2,6,2,6,2,4,9,4,9", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"1\", \"8\", \"1\", \"1\"], \"clip_start\": 219.0, \"clip_end\": 224.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,7,14,4,9,2,9,14,12,11,6,2,15,8,1,1,4,11,7,2,9,14,12,1,3,7,14,9,10,7,6,2,4,0,7,6,2,6,2,4,6,2,4,9,6,2,6,15,12,1,3,6,2,4,9,4,9,2,9,6,2,6,2,4,9,4,15,8,1,1,7,14,4,11,7,6,2,4,6,2,4,6,2,4,6,2,6,2,6,2,4,9,4,9,2,9,6,2,4,9,4,9,2,9,10,7,6,2,4,0,9,6,2,4,6,2,4,9,4,9,2,9,14,12,11,6,1,3,7,6,2,4,0,7,6,2,6,2,6,14,10,2,9,14,12,6,2,6,2,4,9,9,6,2,4,6,2,6,2,6,2,4,6,2,4,9,4,11,7,6,2,4,0,7,6,2,6,2,4,6,2,6,2,4,6,2,4,9,4,9,12,1,3,7,6,6,2,4,9,4,9,12,1,3,7,6,2,4,0,7,6,2,4,0,7,14,4,9,12,1,8,1,1,3,7,6,2,4,0,7,6,2,4,0,7,6,2,4,6,2,4,9,4,11,7,6,2,6,2,6,2,4,9,4,9", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"1\", \"3\"], \"clip_start\": 202.0, \"clip_end\": 205.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,7,14,4,9,2,9,14,12,11,6,2,15,8,1,1,4,11,7,2,9,14,12,1,3,7,14,9,10,7,6,2,4,0,7,6,2,6,2,4,6,2,4,9,6,2,6,15,12,1,3,6,2,4,9,4,9,2,9,6,2,6,2,4,9,4,15,8,1,1,7,14,4,11,7,6,2,4,6,2,4,6,2,4,6,2,6,2,6,2,4,9,4,9,2,9,6,2,4,9,4,9,2,9,10,7,6,2,4,0,9,6,2,4,6,2,4,9,4,9,2,9,14,12,11,6,1,3,7,6,2,4,0,7,6,2,6,2,6,14,10,2,9,14,12,6,2,6,2,4,9,9,6,2,4,6,2,6,2,6,2,4,6,2,4,9,4,11,7,6,2,4,0,7,6,2,6,2,4,6,2,6,2,4,6,2,4,9,4,9,12,1,3,7,6,6,2,4,9,4,9,12,1,3,7,6,2,4,0,7,6,2,4,0,7,14,4,9,12,1,8,1,1,3,7,6,2,4,0,7,6,2,4,0,7,6,2,4,6,2,4,9,4,11,7,6,2,6,2,6,2,4,9,4,9", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"12\", \"6\", \"2\", \"6\"], \"clip_start\": 143.0, \"clip_end\": 149.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,7,14,4,9,2,9,14,12,11,6,2,15,8,1,1,4,11,7,2,9,14,12,1,3,7,14,9,10,7,6,2,4,0,7,6,2,6,2,4,6,2,4,9,6,2,6,15,12,1,3,6,2,4,9,4,9,2,9,6,2,6,2,4,9,4,15,8,1,1,7,14,4,11,7,6,2,4,6,2,4,6,2,4,6,2,6,2,6,2,4,9,4,9,2,9,6,2,4,9,4,9,2,9,10,7,6,2,4,0,9,6,2,4,6,2,4,9,4,9,2,9,14,12,11,6,1,3,7,6,2,4,0,7,6,2,6,2,6,14,10,2,9,14,12,6,2,6,2,4,9,9,6,2,4,6,2,6,2,6,2,4,6,2,4,9,4,11,7,6,2,4,0,7,6,2,6,2,4,6,2,6,2,4,6,2,4,9,4,9,12,1,3,7,6,6,2,4,9,4,9,12,1,3,7,6,2,4,0,7,6,2,4,0,7,14,4,9,12,1,8,1,1,3,7,6,2,4,0,7,6,2,4,0,7,6,2,4,6,2,4,9,4,11,7,6,2,6,2,6,2,4,9,4,9", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"4\"], \"clip_start\": 107.0, \"clip_end\": 110.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,7,14,4,9,2,9,14,12,11,6,2,15,8,1,1,4,11,7,2,9,14,12,1,3,7,14,9,10,7,6,2,4,0,7,6,2,6,2,4,6,2,4,9,6,2,6,15,12,1,3,6,2,4,9,4,9,2,9,6,2,6,2,4,9,4,15,8,1,1,7,14,4,11,7,6,2,4,6,2,4,6,2,4,6,2,6,2,6,2,4,9,4,9,2,9,6,2,4,9,4,9,2,9,10,7,6,2,4,0,9,6,2,4,6,2,4,9,4,9,2,9,14,12,11,6,1,3,7,6,2,4,0,7,6,2,6,2,6,14,10,2,9,14,12,6,2,6,2,4,9,9,6,2,4,6,2,6,2,6,2,4,6,2,4,9,4,11,7,6,2,4,0,7,6,2,6,2,4,6,2,6,2,4,6,2,4,9,4,9,12,1,3,7,6,6,2,4,9,4,9,12,1,3,7,6,2,4,0,7,6,2,4,0,7,14,4,9,12,1,8,1,1,3,7,6,2,4,0,7,6,2,4,0,7,6,2,4,6,2,4,9,4,11,7,6,2,6,2,6,2,4,9,4,9", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"2\", \"9\"], \"clip_start\": 93.0, \"clip_end\": 97.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,7,14,4,9,2,9,14,12,11,6,2,15,8,1,1,4,11,7,2,9,14,12,1,3,7,14,9,10,7,6,2,4,0,7,6,2,6,2,4,6,2,4,9,6,2,6,15,12,1,3,6,2,4,9,4,9,2,9,6,2,6,2,4,9,4,15,8,1,1,7,14,4,11,7,6,2,4,6,2,4,6,2,4,6,2,6,2,6,2,4,9,4,9,2,9,6,2,4,9,4,9,2,9,10,7,6,2,4,0,9,6,2,4,6,2,4,9,4,9,2,9,14,12,11,6,1,3,7,6,2,4,0,7,6,2,6,2,6,14,10,2,9,14,12,6,2,6,2,4,9,9,6,2,4,6,2,6,2,6,2,4,6,2,4,9,4,11,7,6,2,4,0,7,6,2,6,2,4,6,2,6,2,4,6,2,4,9,4,9,12,1,3,7,6,6,2,4,9,4,9,12,1,3,7,6,2,4,0,7,6,2,4,0,7,14,4,9,12,1,8,1,1,3,7,6,2,4,0,7,6,2,4,0,7,6,2,4,6,2,4,9,4,11,7,6,2,6,2,6,2,4,9,4,9", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"2\", \"6\", \"2\"], \"clip_start\": 84.0, \"clip_end\": 89.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,7,14,4,9,2,9,14,12,11,6,2,15,8,1,1,4,11,7,2,9,14,12,1,3,7,14,9,10,7,6,2,4,0,7,6,2,6,2,4,6,2,4,9,6,2,6,15,12,1,3,6,2,4,9,4,9,2,9,6,2,6,2,4,9,4,15,8,1,1,7,14,4,11,7,6,2,4,6,2,4,6,2,4,6,2,6,2,6,2,4,9,4,9,2,9,6,2,4,9,4,9,2,9,10,7,6,2,4,0,9,6,2,4,6,2,4,9,4,9,2,9,14,12,11,6,1,3,7,6,2,4,0,7,6,2,6,2,6,14,10,2,9,14,12,6,2,6,2,4,9,9,6,2,4,6,2,6,2,6,2,4,6,2,4,9,4,11,7,6,2,4,0,7,6,2,6,2,4,6,2,6,2,4,6,2,4,9,4,9,12,1,3,7,6,6,2,4,9,4,9,12,1,3,7,6,2,4,0,7,6,2,4,0,7,14,4,9,12,1,8,1,1,3,7,6,2,4,0,7,6,2,4,0,7,6,2,4,6,2,4,9,4,11,7,6,2,6,2,6,2,4,9,4,9", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"4\", \"6\", \"2\", \"4\"], \"clip_start\": 112.0, \"clip_end\": 118.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,7,14,4,9,2,9,14,12,11,6,2,15,8,1,1,4,11,7,2,9,14,12,1,3,7,14,9,10,7,6,2,4,0,7,6,2,6,2,4,6,2,4,9,6,2,6,15,12,1,3,6,2,4,9,4,9,2,9,6,2,6,2,4,9,4,15,8,1,1,7,14,4,11,7,6,2,4,6,2,4,6,2,4,6,2,6,2,6,2,4,9,4,9,2,9,6,2,4,9,4,9,2,9,10,7,6,2,4,0,9,6,2,4,6,2,4,9,4,9,2,9,14,12,11,6,1,3,7,6,2,4,0,7,6,2,6,2,6,14,10,2,9,14,12,6,2,6,2,4,9,9,6,2,4,6,2,6,2,6,2,4,6,2,4,9,4,11,7,6,2,4,0,7,6,2,6,2,4,6,2,6,2,4,6,2,4,9,4,9,12,1,3,7,6,6,2,4,9,4,9,12,1,3,7,6,2,4,0,7,6,2,4,0,7,14,4,9,12,1,8,1,1,3,7,6,2,4,0,7,6,2,4,0,7,6,2,4,6,2,4,9,4,11,7,6,2,6,2,6,2,4,9,4,9", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"4\", \"6\", \"2\", \"4\"], \"clip_start\": 80.0, \"clip_end\": 85.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,7,14,4,9,2,9,14,12,11,6,2,15,8,1,1,4,11,7,2,9,14,12,1,3,7,14,9,10,7,6,2,4,0,7,6,2,6,2,4,6,2,4,9,6,2,6,15,12,1,3,6,2,4,9,4,9,2,9,6,2,6,2,4,9,4,15,8,1,1,7,14,4,11,7,6,2,4,6,2,4,6,2,4,6,2,6,2,6,2,4,9,4,9,2,9,6,2,4,9,4,9,2,9,10,7,6,2,4,0,9,6,2,4,6,2,4,9,4,9,2,9,14,12,11,6,1,3,7,6,2,4,0,7,6,2,6,2,6,14,10,2,9,14,12,6,2,6,2,4,9,9,6,2,4,6,2,6,2,6,2,4,6,2,4,9,4,11,7,6,2,4,0,7,6,2,6,2,4,6,2,6,2,4,6,2,4,9,4,9,12,1,3,7,6,6,2,4,9,4,9,12,1,3,7,6,2,4,0,7,6,2,4,0,7,14,4,9,12,1,8,1,1,3,7,6,2,4,0,7,6,2,4,0,7,6,2,4,6,2,4,9,4,11,7,6,2,6,2,6,2,4,9,4,9", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"12\", \"1\", \"3\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,1,7,14,4,9,2,9,14,12,11,6,2,15,8,1,1,4,11,7,2,9,14,12,1,3,7,14,9,10,7,6,2,4,0,7,6,2,6,2,4,6,2,4,9,6,2,6,15,12,1,3,6,2,4,9,4,9,2,9,6,2,6,2,4,9,4,15,8,1,1,7,14,4,11,7,6,2,4,6,2,4,6,2,4,6,2,6,2,6,2,4,9,4,9,2,9,6,2,4,9,4,9,2,9,10,7,6,2,4,0,9,6,2,4,6,2,4,9,4,9,2,9,14,12,11,6,1,3,7,6,2,4,0,7,6,2,6,2,6,14,10,2,9,14,12,6,2,6,2,4,9,9,6,2,4,6,2,6,2,6,2,4,6,2,4,9,4,11,7,6,2,4,0,7,6,2,6,2,4,6,2,6,2,4,6,2,4,9,4,9,12,1,3,7,6,6,2,4,9,4,9,12,1,3,7,6,2,4,0,7,6,2,4,0,7,14,4,9,12,1,8,1,1,3,7,6,2,4,0,7,6,2,4,0,7,6,2,4,6,2,4,9,4,11,7,6,2,6,2,6,2,4,9,4,9", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"5\", \"6\", \"12\"], \"clip_start\": 47.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,6,10,3,14,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,0,0,7,14,12,14,4,2,2,1,6,12,5,6,12,5,6,12,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,4,11,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,12,7,14,10,13,6,10,10,13,1,6,12,5,0,0,7,11,4,11,4,2,2,1,6,12,5,6,12,12,5,6,12,5,6,12,12,5,6,12,5,6,12,12,5,4,1,14,6,6,14,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,10,13,6,10,10,13,14,6,6,12,5,6,12,5,6,12,5,13,3,9,3,0,5,0,12,14,6,6,12,5,6,12,5,6,12,12,5,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"10\", \"13\", \"1\", \"6\"], \"clip_start\": 132.0, \"clip_end\": 137.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,6,10,3,14,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,0,0,7,14,12,14,4,2,2,1,6,12,5,6,12,5,6,12,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,4,11,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,12,7,14,10,13,6,10,10,13,1,6,12,5,0,0,7,11,4,11,4,2,2,1,6,12,5,6,12,12,5,6,12,5,6,12,12,5,6,12,5,6,12,12,5,4,1,14,6,6,14,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,10,13,6,10,10,13,14,6,6,12,5,6,12,5,6,12,5,13,3,9,3,0,5,0,12,14,6,6,12,5,6,12,5,6,12,12,5,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"12\", \"5\", \"6\"], \"clip_start\": 227.0, \"clip_end\": 232.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,6,10,3,14,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,0,0,7,14,12,14,4,2,2,1,6,12,5,6,12,5,6,12,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,4,11,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,12,7,14,10,13,6,10,10,13,1,6,12,5,0,0,7,11,4,11,4,2,2,1,6,12,5,6,12,12,5,6,12,5,6,12,12,5,6,12,5,6,12,12,5,4,1,14,6,6,14,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,10,13,6,10,10,13,14,6,6,12,5,6,12,5,6,12,5,13,3,9,3,0,5,0,12,14,6,6,12,5,6,12,5,6,12,12,5,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"6\", \"12\", \"5\"], \"clip_start\": 42.0, \"clip_end\": 47.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,6,10,3,14,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,0,0,7,14,12,14,4,2,2,1,6,12,5,6,12,5,6,12,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,4,11,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,12,7,14,10,13,6,10,10,13,1,6,12,5,0,0,7,11,4,11,4,2,2,1,6,12,5,6,12,12,5,6,12,5,6,12,12,5,6,12,5,6,12,12,5,4,1,14,6,6,14,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,10,13,6,10,10,13,14,6,6,12,5,6,12,5,6,12,5,13,3,9,3,0,5,0,12,14,6,6,12,5,6,12,5,6,12,12,5,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"6\", \"10\", \"10\", \"13\"], \"clip_start\": 108.0, \"clip_end\": 113.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,6,10,3,14,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,0,0,7,14,12,14,4,2,2,1,6,12,5,6,12,5,6,12,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,4,11,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,12,7,14,10,13,6,10,10,13,1,6,12,5,0,0,7,11,4,11,4,2,2,1,6,12,5,6,12,12,5,6,12,5,6,12,12,5,6,12,5,6,12,12,5,4,1,14,6,6,14,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,10,13,6,10,10,13,14,6,6,12,5,6,12,5,6,12,5,13,3,9,3,0,5,0,12,14,6,6,12,5,6,12,5,6,12,12,5,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"6\", \"12\", \"5\"], \"clip_start\": 49.0, \"clip_end\": 53.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,6,10,3,14,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,0,0,7,14,12,14,4,2,2,1,6,12,5,6,12,5,6,12,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,4,11,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,12,7,14,10,13,6,10,10,13,1,6,12,5,0,0,7,11,4,11,4,2,2,1,6,12,5,6,12,12,5,6,12,5,6,12,12,5,6,12,5,6,12,12,5,4,1,14,6,6,14,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,10,13,6,10,10,13,14,6,6,12,5,6,12,5,6,12,5,13,3,9,3,0,5,0,12,14,6,6,12,5,6,12,5,6,12,12,5,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 214.0, \"clip_end\": 217.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,6,10,3,14,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,0,0,7,14,12,14,4,2,2,1,6,12,5,6,12,5,6,12,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,4,11,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,12,7,14,10,13,6,10,10,13,1,6,12,5,0,0,7,11,4,11,4,2,2,1,6,12,5,6,12,12,5,6,12,5,6,12,12,5,6,12,5,6,12,12,5,4,1,14,6,6,14,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,10,13,6,10,10,13,14,6,6,12,5,6,12,5,6,12,5,13,3,9,3,0,5,0,12,14,6,6,12,5,6,12,5,6,12,12,5,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"4\", \"2\"], \"clip_start\": 70.0, \"clip_end\": 74.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,6,10,3,14,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,0,0,7,14,12,14,4,2,2,1,6,12,5,6,12,5,6,12,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,4,11,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,12,7,14,10,13,6,10,10,13,1,6,12,5,0,0,7,11,4,11,4,2,2,1,6,12,5,6,12,12,5,6,12,5,6,12,12,5,6,12,5,6,12,12,5,4,1,14,6,6,14,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,10,13,6,10,10,13,14,6,6,12,5,6,12,5,6,12,5,13,3,9,3,0,5,0,12,14,6,6,12,5,6,12,5,6,12,12,5,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"0\", \"7\", \"14\"], \"clip_start\": 65.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,6,10,3,14,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,0,0,7,14,12,14,4,2,2,1,6,12,5,6,12,5,6,12,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,4,11,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,12,7,14,10,13,6,10,10,13,1,6,12,5,0,0,7,11,4,11,4,2,2,1,6,12,5,6,12,12,5,6,12,5,6,12,12,5,6,12,5,6,12,12,5,4,1,14,6,6,14,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,10,13,6,10,10,13,14,6,6,12,5,6,12,5,6,12,5,13,3,9,3,0,5,0,12,14,6,6,12,5,6,12,5,6,12,12,5,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"10\", \"13\", \"6\"], \"clip_start\": 110.0, \"clip_end\": 114.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,6,10,3,14,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,0,0,7,14,12,14,4,2,2,1,6,12,5,6,12,5,6,12,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,4,11,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,12,7,14,10,13,6,10,10,13,1,6,12,5,0,0,7,11,4,11,4,2,2,1,6,12,5,6,12,12,5,6,12,5,6,12,12,5,6,12,5,6,12,12,5,4,1,14,6,6,14,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,10,13,6,10,10,13,14,6,6,12,5,6,12,5,6,12,5,13,3,9,3,0,5,0,12,14,6,6,12,5,6,12,5,6,12,12,5,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"6\", \"10\", \"10\", \"13\"], \"clip_start\": 116.0, \"clip_end\": 121.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,6,10,3,14,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,0,0,7,14,12,14,4,2,2,1,6,12,5,6,12,5,6,12,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,4,11,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,12,7,14,10,13,6,10,10,13,1,6,12,5,0,0,7,11,4,11,4,2,2,1,6,12,5,6,12,12,5,6,12,5,6,12,12,5,6,12,5,6,12,12,5,4,1,14,6,6,14,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,10,13,6,10,10,13,14,6,6,12,5,6,12,5,6,12,5,13,3,9,3,0,5,0,12,14,6,6,12,5,6,12,5,6,12,12,5,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"12\", \"5\"], \"clip_start\": 166.0, \"clip_end\": 170.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,6,10,3,14,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,0,0,7,14,12,14,4,2,2,1,6,12,5,6,12,5,6,12,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,4,11,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,12,7,14,10,13,6,10,10,13,1,6,12,5,0,0,7,11,4,11,4,2,2,1,6,12,5,6,12,12,5,6,12,5,6,12,12,5,6,12,5,6,12,12,5,4,1,14,6,6,14,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,10,13,6,10,10,13,14,6,6,12,5,6,12,5,6,12,5,13,3,9,3,0,5,0,12,14,6,6,12,5,6,12,5,6,12,12,5,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\"], \"clip_start\": 81.0, \"clip_end\": 84.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,6,10,3,14,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,0,0,7,14,12,14,4,2,2,1,6,12,5,6,12,5,6,12,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,4,11,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,12,7,14,10,13,6,10,10,13,1,6,12,5,0,0,7,11,4,11,4,2,2,1,6,12,5,6,12,12,5,6,12,5,6,12,12,5,6,12,5,6,12,12,5,4,1,14,6,6,14,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,10,13,6,10,10,13,14,6,6,12,5,6,12,5,6,12,5,13,3,9,3,0,5,0,12,14,6,6,12,5,6,12,5,6,12,12,5,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"5\", \"6\", \"12\", \"5\"], \"clip_start\": 76.0, \"clip_end\": 82.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q13_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,6,10,3,14,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,0,0,7,14,12,14,4,2,2,1,6,12,5,6,12,5,6,12,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,4,11,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,12,7,14,10,13,6,10,10,13,1,6,12,5,0,0,7,11,4,11,4,2,2,1,6,12,5,6,12,12,5,6,12,5,6,12,12,5,6,12,5,6,12,12,5,4,1,14,6,6,14,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,10,13,6,10,10,13,14,6,6,12,5,6,12,5,6,12,5,13,3,9,3,0,5,0,12,14,6,6,12,5,6,12,5,6,12,12,5,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"6\", \"12\", \"5\", \"6\", \"12\"], \"clip_start\": 247.0, \"clip_end\": 253.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,6,10,3,14,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,0,0,7,14,12,14,4,2,2,1,6,12,5,6,12,5,6,12,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,4,11,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,12,7,14,10,13,6,10,10,13,1,6,12,5,0,0,7,11,4,11,4,2,2,1,6,12,5,6,12,12,5,6,12,5,6,12,12,5,6,12,5,6,12,12,5,4,1,14,6,6,14,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,10,13,6,10,10,13,14,6,6,12,5,6,12,5,6,12,5,13,3,9,3,0,5,0,12,14,6,6,12,5,6,12,5,6,12,12,5,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"12\", \"5\", \"6\"], \"clip_start\": 37.0, \"clip_end\": 42.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,13,6,10,3,14,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,0,0,7,14,12,14,4,2,2,1,6,12,5,6,12,5,6,12,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,4,11,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,10,10,13,6,12,7,14,10,13,6,10,10,13,1,6,12,5,0,0,7,11,4,11,4,2,2,1,6,12,5,6,12,12,5,6,12,5,6,12,12,5,6,12,5,6,12,12,5,4,1,14,6,6,14,6,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,5,6,12,12,5,4,11,10,13,6,10,10,13,14,6,6,12,5,6,12,5,6,12,5,13,3,9,3,0,5,0,12,14,6,6,12,5,6,12,5,6,12,12,5,4,2,2,1,6,12,5,6,12,5,6,12,5,6,12,5,6,12", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 163.0, \"clip_end\": 167.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,14,12,11,8,9,6,10,11,6,9,13,5,5,13,13,5,1,8,4,12,13,11,13,13,5,13,10,11,11,8,13,13,5,13,9,7,4,15,9,4,12,13,11,13,13,5,13,5,11,11,9,6,9,13,5,5,2,14,12,12,2,8,13,6,9,13,5,5,13,13,5,13,5,11,11,14,2,8,4,12,2,14,12,11,8,13,6,2,6,10,11,6,9,13,5,5,13,13,5,13,5,11,11,9,13,13,5,13,5,14,2,14,12,12,13,11,13,13,5,13,5,11,11,9,6,11,8,13,5,11,11,9,6,2,6,9,6,9,13,5,5,13,13,5,13,12,13,11,13,13,5,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,6,9,13,5,5,13,13,5,13,5,5,7,6,12,2,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,6,9,6,10", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"13\", \"5\"], \"clip_start\": 151.0, \"clip_end\": 155.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,14,12,11,8,9,6,10,11,6,9,13,5,5,13,13,5,1,8,4,12,13,11,13,13,5,13,10,11,11,8,13,13,5,13,9,7,4,15,9,4,12,13,11,13,13,5,13,5,11,11,9,6,9,13,5,5,2,14,12,12,2,8,13,6,9,13,5,5,13,13,5,13,5,11,11,14,2,8,4,12,2,14,12,11,8,13,6,2,6,10,11,6,9,13,5,5,13,13,5,13,5,11,11,9,13,13,5,13,5,14,2,14,12,12,13,11,13,13,5,13,5,11,11,9,6,11,8,13,5,11,11,9,6,2,6,9,6,9,13,5,5,13,13,5,13,12,13,11,13,13,5,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,6,9,13,5,5,13,13,5,13,5,5,7,6,12,2,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,6,9,6,10", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 10.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,14,12,11,8,9,6,10,11,6,9,13,5,5,13,13,5,1,8,4,12,13,11,13,13,5,13,10,11,11,8,13,13,5,13,9,7,4,15,9,4,12,13,11,13,13,5,13,5,11,11,9,6,9,13,5,5,2,14,12,12,2,8,13,6,9,13,5,5,13,13,5,13,5,11,11,14,2,8,4,12,2,14,12,11,8,13,6,2,6,10,11,6,9,13,5,5,13,13,5,13,5,11,11,9,13,13,5,13,5,14,2,14,12,12,13,11,13,13,5,13,5,11,11,9,6,11,8,13,5,11,11,9,6,2,6,9,6,9,13,5,5,13,13,5,13,12,13,11,13,13,5,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,6,9,13,5,5,13,13,5,13,5,5,7,6,12,2,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,6,9,6,10", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"11\", \"13\"], \"clip_start\": 147.0, \"clip_end\": 151.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,14,12,11,8,9,6,10,11,6,9,13,5,5,13,13,5,1,8,4,12,13,11,13,13,5,13,10,11,11,8,13,13,5,13,9,7,4,15,9,4,12,13,11,13,13,5,13,5,11,11,9,6,9,13,5,5,2,14,12,12,2,8,13,6,9,13,5,5,13,13,5,13,5,11,11,14,2,8,4,12,2,14,12,11,8,13,6,2,6,10,11,6,9,13,5,5,13,13,5,13,5,11,11,9,13,13,5,13,5,14,2,14,12,12,13,11,13,13,5,13,5,11,11,9,6,11,8,13,5,11,11,9,6,2,6,9,6,9,13,5,5,13,13,5,13,12,13,11,13,13,5,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,6,9,13,5,5,13,13,5,13,5,5,7,6,12,2,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,6,9,6,10", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"13\", \"13\", \"5\"], \"clip_start\": 194.0, \"clip_end\": 198.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,14,12,11,8,9,6,10,11,6,9,13,5,5,13,13,5,1,8,4,12,13,11,13,13,5,13,10,11,11,8,13,13,5,13,9,7,4,15,9,4,12,13,11,13,13,5,13,5,11,11,9,6,9,13,5,5,2,14,12,12,2,8,13,6,9,13,5,5,13,13,5,13,5,11,11,14,2,8,4,12,2,14,12,11,8,13,6,2,6,10,11,6,9,13,5,5,13,13,5,13,5,11,11,9,13,13,5,13,5,14,2,14,12,12,13,11,13,13,5,13,5,11,11,9,6,11,8,13,5,11,11,9,6,2,6,9,6,9,13,5,5,13,13,5,13,12,13,11,13,13,5,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,6,9,13,5,5,13,13,5,13,5,5,7,6,12,2,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,6,9,6,10", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"6\", \"2\", \"6\"], \"clip_start\": 132.0, \"clip_end\": 137.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,14,12,11,8,9,6,10,11,6,9,13,5,5,13,13,5,1,8,4,12,13,11,13,13,5,13,10,11,11,8,13,13,5,13,9,7,4,15,9,4,12,13,11,13,13,5,13,5,11,11,9,6,9,13,5,5,2,14,12,12,2,8,13,6,9,13,5,5,13,13,5,13,5,11,11,14,2,8,4,12,2,14,12,11,8,13,6,2,6,10,11,6,9,13,5,5,13,13,5,13,5,11,11,9,13,13,5,13,5,14,2,14,12,12,13,11,13,13,5,13,5,11,11,9,6,11,8,13,5,11,11,9,6,2,6,9,6,9,13,5,5,13,13,5,13,12,13,11,13,13,5,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,6,9,13,5,5,13,13,5,13,5,5,7,6,12,2,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,6,9,6,10", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"11\", \"8\", \"13\", \"13\"], \"clip_start\": 29.0, \"clip_end\": 34.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,14,12,11,8,9,6,10,11,6,9,13,5,5,13,13,5,1,8,4,12,13,11,13,13,5,13,10,11,11,8,13,13,5,13,9,7,4,15,9,4,12,13,11,13,13,5,13,5,11,11,9,6,9,13,5,5,2,14,12,12,2,8,13,6,9,13,5,5,13,13,5,13,5,11,11,14,2,8,4,12,2,14,12,11,8,13,6,2,6,10,11,6,9,13,5,5,13,13,5,13,5,11,11,9,13,13,5,13,5,14,2,14,12,12,13,11,13,13,5,13,5,11,11,9,6,11,8,13,5,11,11,9,6,2,6,9,6,9,13,5,5,13,13,5,13,12,13,11,13,13,5,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,6,9,13,5,5,13,13,5,13,5,5,7,6,12,2,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,6,9,6,10", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"5\", \"13\", \"13\"], \"clip_start\": 12.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,14,12,11,8,9,6,10,11,6,9,13,5,5,13,13,5,1,8,4,12,13,11,13,13,5,13,10,11,11,8,13,13,5,13,9,7,4,15,9,4,12,13,11,13,13,5,13,5,11,11,9,6,9,13,5,5,2,14,12,12,2,8,13,6,9,13,5,5,13,13,5,13,5,11,11,14,2,8,4,12,2,14,12,11,8,13,6,2,6,10,11,6,9,13,5,5,13,13,5,13,5,11,11,9,13,13,5,13,5,14,2,14,12,12,13,11,13,13,5,13,5,11,11,9,6,11,8,13,5,11,11,9,6,2,6,9,6,9,13,5,5,13,13,5,13,12,13,11,13,13,5,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,6,9,13,5,5,13,13,5,13,5,5,7,6,12,2,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,6,9,6,10", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"11\", \"11\", \"9\", \"13\", \"13\"], \"clip_start\": 220.0, \"clip_end\": 226.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,14,12,11,8,9,6,10,11,6,9,13,5,5,13,13,5,1,8,4,12,13,11,13,13,5,13,10,11,11,8,13,13,5,13,9,7,4,15,9,4,12,13,11,13,13,5,13,5,11,11,9,6,9,13,5,5,2,14,12,12,2,8,13,6,9,13,5,5,13,13,5,13,5,11,11,14,2,8,4,12,2,14,12,11,8,13,6,2,6,10,11,6,9,13,5,5,13,13,5,13,5,11,11,9,13,13,5,13,5,14,2,14,12,12,13,11,13,13,5,13,5,11,11,9,6,11,8,13,5,11,11,9,6,2,6,9,6,9,13,5,5,13,13,5,13,12,13,11,13,13,5,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,6,9,13,5,5,13,13,5,13,5,5,7,6,12,2,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,6,9,6,10", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"13\", \"13\", \"5\"], \"clip_start\": 201.0, \"clip_end\": 206.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,14,12,11,8,9,6,10,11,6,9,13,5,5,13,13,5,1,8,4,12,13,11,13,13,5,13,10,11,11,8,13,13,5,13,9,7,4,15,9,4,12,13,11,13,13,5,13,5,11,11,9,6,9,13,5,5,2,14,12,12,2,8,13,6,9,13,5,5,13,13,5,13,5,11,11,14,2,8,4,12,2,14,12,11,8,13,6,2,6,10,11,6,9,13,5,5,13,13,5,13,5,11,11,9,13,13,5,13,5,14,2,14,12,12,13,11,13,13,5,13,5,11,11,9,6,11,8,13,5,11,11,9,6,2,6,9,6,9,13,5,5,13,13,5,13,12,13,11,13,13,5,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,6,9,13,5,5,13,13,5,13,5,5,7,6,12,2,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,6,9,6,10", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"11\", \"9\", \"13\"], \"clip_start\": 221.0, \"clip_end\": 225.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,14,12,11,8,9,6,10,11,6,9,13,5,5,13,13,5,1,8,4,12,13,11,13,13,5,13,10,11,11,8,13,13,5,13,9,7,4,15,9,4,12,13,11,13,13,5,13,5,11,11,9,6,9,13,5,5,2,14,12,12,2,8,13,6,9,13,5,5,13,13,5,13,5,11,11,14,2,8,4,12,2,14,12,11,8,13,6,2,6,10,11,6,9,13,5,5,13,13,5,13,5,11,11,9,13,13,5,13,5,14,2,14,12,12,13,11,13,13,5,13,5,11,11,9,6,11,8,13,5,11,11,9,6,2,6,9,6,9,13,5,5,13,13,5,13,12,13,11,13,13,5,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,6,9,13,5,5,13,13,5,13,5,5,7,6,12,2,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,6,9,6,10", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 11.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,14,12,11,8,9,6,10,11,6,9,13,5,5,13,13,5,1,8,4,12,13,11,13,13,5,13,10,11,11,8,13,13,5,13,9,7,4,15,9,4,12,13,11,13,13,5,13,5,11,11,9,6,9,13,5,5,2,14,12,12,2,8,13,6,9,13,5,5,13,13,5,13,5,11,11,14,2,8,4,12,2,14,12,11,8,13,6,2,6,10,11,6,9,13,5,5,13,13,5,13,5,11,11,9,13,13,5,13,5,14,2,14,12,12,13,11,13,13,5,13,5,11,11,9,6,11,8,13,5,11,11,9,6,2,6,9,6,9,13,5,5,13,13,5,13,12,13,11,13,13,5,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,6,9,13,5,5,13,13,5,13,5,5,7,6,12,2,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,6,9,6,10", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"13\", \"5\", \"7\"], \"clip_start\": 225.0, \"clip_end\": 229.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,14,12,11,8,9,6,10,11,6,9,13,5,5,13,13,5,1,8,4,12,13,11,13,13,5,13,10,11,11,8,13,13,5,13,9,7,4,15,9,4,12,13,11,13,13,5,13,5,11,11,9,6,9,13,5,5,2,14,12,12,2,8,13,6,9,13,5,5,13,13,5,13,5,11,11,14,2,8,4,12,2,14,12,11,8,13,6,2,6,10,11,6,9,13,5,5,13,13,5,13,5,11,11,9,13,13,5,13,5,14,2,14,12,12,13,11,13,13,5,13,5,11,11,9,6,11,8,13,5,11,11,9,6,2,6,9,6,9,13,5,5,13,13,5,13,12,13,11,13,13,5,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,6,9,13,5,5,13,13,5,13,5,5,7,6,12,2,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,6,9,6,10", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"12\"], \"clip_start\": 238.0, \"clip_end\": 241.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,14,12,11,8,9,6,10,11,6,9,13,5,5,13,13,5,1,8,4,12,13,11,13,13,5,13,10,11,11,8,13,13,5,13,9,7,4,15,9,4,12,13,11,13,13,5,13,5,11,11,9,6,9,13,5,5,2,14,12,12,2,8,13,6,9,13,5,5,13,13,5,13,5,11,11,14,2,8,4,12,2,14,12,11,8,13,6,2,6,10,11,6,9,13,5,5,13,13,5,13,5,11,11,9,13,13,5,13,5,14,2,14,12,12,13,11,13,13,5,13,5,11,11,9,6,11,8,13,5,11,11,9,6,2,6,9,6,9,13,5,5,13,13,5,13,12,13,11,13,13,5,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,6,9,13,5,5,13,13,5,13,5,5,7,6,12,2,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,6,9,6,10", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"13\", \"5\", \"5\"], \"clip_start\": 93.0, \"clip_end\": 98.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q14_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,14,12,11,8,9,6,10,11,6,9,13,5,5,13,13,5,1,8,4,12,13,11,13,13,5,13,10,11,11,8,13,13,5,13,9,7,4,15,9,4,12,13,11,13,13,5,13,5,11,11,9,6,9,13,5,5,2,14,12,12,2,8,13,6,9,13,5,5,13,13,5,13,5,11,11,14,2,8,4,12,2,14,12,11,8,13,6,2,6,10,11,6,9,13,5,5,13,13,5,13,5,11,11,9,13,13,5,13,5,14,2,14,12,12,13,11,13,13,5,13,5,11,11,9,6,11,8,13,5,11,11,9,6,2,6,9,6,9,13,5,5,13,13,5,13,12,13,11,13,13,5,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,6,9,13,5,5,13,13,5,13,5,5,7,6,12,2,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,6,9,6,10", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_ELOW", "source_split": "substream_video", "length_L": 256, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"13\", \"5\", \"13\", \"5\"], \"clip_start\": 45.0, \"clip_end\": 50.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q15_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,2,14,12,11,8,9,6,10,11,6,9,13,5,5,13,13,5,1,8,4,12,13,11,13,13,5,13,10,11,11,8,13,13,5,13,9,7,4,15,9,4,12,13,11,13,13,5,13,5,11,11,9,6,9,13,5,5,2,14,12,12,2,8,13,6,9,13,5,5,13,13,5,13,5,11,11,14,2,8,4,12,2,14,12,11,8,13,6,2,6,10,11,6,9,13,5,5,13,13,5,13,5,11,11,9,13,13,5,13,5,14,2,14,12,12,13,11,13,13,5,13,5,11,11,9,6,11,8,13,5,11,11,9,6,2,6,9,6,9,13,5,5,13,13,5,13,12,13,11,13,13,5,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,6,9,13,5,5,13,13,5,13,5,5,7,6,12,2,13,5,11,11,9,13,13,13,5,7,10,7,9,13,13,13,5,7,10,7,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,13,13,13,5,7,6,13,13,5,13,5,11,11,9,6,9,6,10", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 249.0, \"clip_end\": 255.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,4,8,6,7,3,2,0,8,12,14,3,2,8,13,10,7,5,3,1,13,1,6,0,5,6,11,8,9,15,12,9,13,3,8,9,1,13,11,9,15,8,15,12,6,3,8,13,8,6,3,4,1,0,3,14,10,4,2,12,5,2,4,7,10,0,4,14,7,7,7,15,1,0,11,12,9,7,10,15,0,11,14,14,13,9,12,6,9,8,4,6,5,6,4,2,2,14,5,6,0,11,12,12,10,14,2,10,13,2,8,9,6,11,11,9,5,4,2,7,9,5,0,13,4,11,5,10,4,1,13,1,2,14,6,6,11,9,5,3,9,11,12,8,10,0,13,4,14,3,3,14,6,3,10,3,10,3,7,7,2,6,14,1,4,13,15,14,11,10,3,12,4,2,3,3,6,13,5,3,6,10,0,13,8,6,1,15,3,8,4,15,11,7,7,2,15,1,7,5,9,0,4,11,0,13,14,11,11,11,14,15,10,8,12,9,10,3,3,4,13,3,13,1,8,11,15,3,13,11,10,5,13,0,15,14,6,6,1,10,13,12,6,8,15,8,12,8,9,6,11,9,10,11,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"4\", \"13\", \"3\"], \"clip_start\": 219.0, \"clip_end\": 223.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,4,8,6,7,3,2,0,8,12,14,3,2,8,13,10,7,5,3,1,13,1,6,0,5,6,11,8,9,15,12,9,13,3,8,9,1,13,11,9,15,8,15,12,6,3,8,13,8,6,3,4,1,0,3,14,10,4,2,12,5,2,4,7,10,0,4,14,7,7,7,15,1,0,11,12,9,7,10,15,0,11,14,14,13,9,12,6,9,8,4,6,5,6,4,2,2,14,5,6,0,11,12,12,10,14,2,10,13,2,8,9,6,11,11,9,5,4,2,7,9,5,0,13,4,11,5,10,4,1,13,1,2,14,6,6,11,9,5,3,9,11,12,8,10,0,13,4,14,3,3,14,6,3,10,3,10,3,7,7,2,6,14,1,4,13,15,14,11,10,3,12,4,2,3,3,6,13,5,3,6,10,0,13,8,6,1,15,3,8,4,15,11,7,7,2,15,1,7,5,9,0,4,11,0,13,14,11,11,11,14,15,10,8,12,9,10,3,3,4,13,3,13,1,8,11,15,3,13,11,10,5,13,0,15,14,6,6,1,10,13,12,6,8,15,8,12,8,9,6,11,9,10,11,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"14\"], \"clip_start\": 9.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,4,8,6,7,3,2,0,8,12,14,3,2,8,13,10,7,5,3,1,13,1,6,0,5,6,11,8,9,15,12,9,13,3,8,9,1,13,11,9,15,8,15,12,6,3,8,13,8,6,3,4,1,0,3,14,10,4,2,12,5,2,4,7,10,0,4,14,7,7,7,15,1,0,11,12,9,7,10,15,0,11,14,14,13,9,12,6,9,8,4,6,5,6,4,2,2,14,5,6,0,11,12,12,10,14,2,10,13,2,8,9,6,11,11,9,5,4,2,7,9,5,0,13,4,11,5,10,4,1,13,1,2,14,6,6,11,9,5,3,9,11,12,8,10,0,13,4,14,3,3,14,6,3,10,3,10,3,7,7,2,6,14,1,4,13,15,14,11,10,3,12,4,2,3,3,6,13,5,3,6,10,0,13,8,6,1,15,3,8,4,15,11,7,7,2,15,1,7,5,9,0,4,11,0,13,14,11,11,11,14,15,10,8,12,9,10,3,3,4,13,3,13,1,8,11,15,3,13,11,10,5,13,0,15,14,6,6,1,10,13,12,6,8,15,8,12,8,9,6,11,9,10,11,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"11\", \"10\", \"3\", \"12\"], \"clip_start\": 167.0, \"clip_end\": 173.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q3_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,4,8,6,7,3,2,0,8,12,14,3,2,8,13,10,7,5,3,1,13,1,6,0,5,6,11,8,9,15,12,9,13,3,8,9,1,13,11,9,15,8,15,12,6,3,8,13,8,6,3,4,1,0,3,14,10,4,2,12,5,2,4,7,10,0,4,14,7,7,7,15,1,0,11,12,9,7,10,15,0,11,14,14,13,9,12,6,9,8,4,6,5,6,4,2,2,14,5,6,0,11,12,12,10,14,2,10,13,2,8,9,6,11,11,9,5,4,2,7,9,5,0,13,4,11,5,10,4,1,13,1,2,14,6,6,11,9,5,3,9,11,12,8,10,0,13,4,14,3,3,14,6,3,10,3,10,3,7,7,2,6,14,1,4,13,15,14,11,10,3,12,4,2,3,3,6,13,5,3,6,10,0,13,8,6,1,15,3,8,4,15,11,7,7,2,15,1,7,5,9,0,4,11,0,13,14,11,11,11,14,15,10,8,12,9,10,3,3,4,13,3,13,1,8,11,15,3,13,11,10,5,13,0,15,14,6,6,1,10,13,12,6,8,15,8,12,8,9,6,11,9,10,11,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"7\", \"10\"], \"clip_start\": 76.0, \"clip_end\": 80.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q4_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,4,8,6,7,3,2,0,8,12,14,3,2,8,13,10,7,5,3,1,13,1,6,0,5,6,11,8,9,15,12,9,13,3,8,9,1,13,11,9,15,8,15,12,6,3,8,13,8,6,3,4,1,0,3,14,10,4,2,12,5,2,4,7,10,0,4,14,7,7,7,15,1,0,11,12,9,7,10,15,0,11,14,14,13,9,12,6,9,8,4,6,5,6,4,2,2,14,5,6,0,11,12,12,10,14,2,10,13,2,8,9,6,11,11,9,5,4,2,7,9,5,0,13,4,11,5,10,4,1,13,1,2,14,6,6,11,9,5,3,9,11,12,8,10,0,13,4,14,3,3,14,6,3,10,3,10,3,7,7,2,6,14,1,4,13,15,14,11,10,3,12,4,2,3,3,6,13,5,3,6,10,0,13,8,6,1,15,3,8,4,15,11,7,7,2,15,1,7,5,9,0,4,11,0,13,14,11,11,11,14,15,10,8,12,9,10,3,3,4,13,3,13,1,8,11,15,3,13,11,10,5,13,0,15,14,6,6,1,10,13,12,6,8,15,8,12,8,9,6,11,9,10,11,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"2\", \"4\", \"7\", \"10\"], \"clip_start\": 60.0, \"clip_end\": 66.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,4,8,6,7,3,2,0,8,12,14,3,2,8,13,10,7,5,3,1,13,1,6,0,5,6,11,8,9,15,12,9,13,3,8,9,1,13,11,9,15,8,15,12,6,3,8,13,8,6,3,4,1,0,3,14,10,4,2,12,5,2,4,7,10,0,4,14,7,7,7,15,1,0,11,12,9,7,10,15,0,11,14,14,13,9,12,6,9,8,4,6,5,6,4,2,2,14,5,6,0,11,12,12,10,14,2,10,13,2,8,9,6,11,11,9,5,4,2,7,9,5,0,13,4,11,5,10,4,1,13,1,2,14,6,6,11,9,5,3,9,11,12,8,10,0,13,4,14,3,3,14,6,3,10,3,10,3,7,7,2,6,14,1,4,13,15,14,11,10,3,12,4,2,3,3,6,13,5,3,6,10,0,13,8,6,1,15,3,8,4,15,11,7,7,2,15,1,7,5,9,0,4,11,0,13,14,11,11,11,14,15,10,8,12,9,10,3,3,4,13,3,13,1,8,11,15,3,13,11,10,5,13,0,15,14,6,6,1,10,13,12,6,8,15,8,12,8,9,6,11,9,10,11,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"11\", \"10\", \"5\", \"13\"], \"clip_start\": 228.0, \"clip_end\": 234.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,4,8,6,7,3,2,0,8,12,14,3,2,8,13,10,7,5,3,1,13,1,6,0,5,6,11,8,9,15,12,9,13,3,8,9,1,13,11,9,15,8,15,12,6,3,8,13,8,6,3,4,1,0,3,14,10,4,2,12,5,2,4,7,10,0,4,14,7,7,7,15,1,0,11,12,9,7,10,15,0,11,14,14,13,9,12,6,9,8,4,6,5,6,4,2,2,14,5,6,0,11,12,12,10,14,2,10,13,2,8,9,6,11,11,9,5,4,2,7,9,5,0,13,4,11,5,10,4,1,13,1,2,14,6,6,11,9,5,3,9,11,12,8,10,0,13,4,14,3,3,14,6,3,10,3,10,3,7,7,2,6,14,1,4,13,15,14,11,10,3,12,4,2,3,3,6,13,5,3,6,10,0,13,8,6,1,15,3,8,4,15,11,7,7,2,15,1,7,5,9,0,4,11,0,13,14,11,11,11,14,15,10,8,12,9,10,3,3,4,13,3,13,1,8,11,15,3,13,11,10,5,13,0,15,14,6,6,1,10,13,12,6,8,15,8,12,8,9,6,11,9,10,11,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"5\"], \"clip_start\": 213.0, \"clip_end\": 217.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q7_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,4,8,6,7,3,2,0,8,12,14,3,2,8,13,10,7,5,3,1,13,1,6,0,5,6,11,8,9,15,12,9,13,3,8,9,1,13,11,9,15,8,15,12,6,3,8,13,8,6,3,4,1,0,3,14,10,4,2,12,5,2,4,7,10,0,4,14,7,7,7,15,1,0,11,12,9,7,10,15,0,11,14,14,13,9,12,6,9,8,4,6,5,6,4,2,2,14,5,6,0,11,12,12,10,14,2,10,13,2,8,9,6,11,11,9,5,4,2,7,9,5,0,13,4,11,5,10,4,1,13,1,2,14,6,6,11,9,5,3,9,11,12,8,10,0,13,4,14,3,3,14,6,3,10,3,10,3,7,7,2,6,14,1,4,13,15,14,11,10,3,12,4,2,3,3,6,13,5,3,6,10,0,13,8,6,1,15,3,8,4,15,11,7,7,2,15,1,7,5,9,0,4,11,0,13,14,11,11,11,14,15,10,8,12,9,10,3,3,4,13,3,13,1,8,11,15,3,13,11,10,5,13,0,15,14,6,6,1,10,13,12,6,8,15,8,12,8,9,6,11,9,10,11,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"2\"], \"clip_start\": 117.0, \"clip_end\": 120.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,4,8,6,7,3,2,0,8,12,14,3,2,8,13,10,7,5,3,1,13,1,6,0,5,6,11,8,9,15,12,9,13,3,8,9,1,13,11,9,15,8,15,12,6,3,8,13,8,6,3,4,1,0,3,14,10,4,2,12,5,2,4,7,10,0,4,14,7,7,7,15,1,0,11,12,9,7,10,15,0,11,14,14,13,9,12,6,9,8,4,6,5,6,4,2,2,14,5,6,0,11,12,12,10,14,2,10,13,2,8,9,6,11,11,9,5,4,2,7,9,5,0,13,4,11,5,10,4,1,13,1,2,14,6,6,11,9,5,3,9,11,12,8,10,0,13,4,14,3,3,14,6,3,10,3,10,3,7,7,2,6,14,1,4,13,15,14,11,10,3,12,4,2,3,3,6,13,5,3,6,10,0,13,8,6,1,15,3,8,4,15,11,7,7,2,15,1,7,5,9,0,4,11,0,13,14,11,11,11,14,15,10,8,12,9,10,3,3,4,13,3,13,1,8,11,15,3,13,11,10,5,13,0,15,14,6,6,1,10,13,12,6,8,15,8,12,8,9,6,11,9,10,11,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"5\", \"0\"], \"clip_start\": 120.0, \"clip_end\": 124.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q9_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,4,8,6,7,3,2,0,8,12,14,3,2,8,13,10,7,5,3,1,13,1,6,0,5,6,11,8,9,15,12,9,13,3,8,9,1,13,11,9,15,8,15,12,6,3,8,13,8,6,3,4,1,0,3,14,10,4,2,12,5,2,4,7,10,0,4,14,7,7,7,15,1,0,11,12,9,7,10,15,0,11,14,14,13,9,12,6,9,8,4,6,5,6,4,2,2,14,5,6,0,11,12,12,10,14,2,10,13,2,8,9,6,11,11,9,5,4,2,7,9,5,0,13,4,11,5,10,4,1,13,1,2,14,6,6,11,9,5,3,9,11,12,8,10,0,13,4,14,3,3,14,6,3,10,3,10,3,7,7,2,6,14,1,4,13,15,14,11,10,3,12,4,2,3,3,6,13,5,3,6,10,0,13,8,6,1,15,3,8,4,15,11,7,7,2,15,1,7,5,9,0,4,11,0,13,14,11,11,11,14,15,10,8,12,9,10,3,3,4,13,3,13,1,8,11,15,3,13,11,10,5,13,0,15,14,6,6,1,10,13,12,6,8,15,8,12,8,9,6,11,9,10,11,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"3\", \"13\", \"11\"], \"clip_start\": 226.0, \"clip_end\": 231.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q10_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,4,8,6,7,3,2,0,8,12,14,3,2,8,13,10,7,5,3,1,13,1,6,0,5,6,11,8,9,15,12,9,13,3,8,9,1,13,11,9,15,8,15,12,6,3,8,13,8,6,3,4,1,0,3,14,10,4,2,12,5,2,4,7,10,0,4,14,7,7,7,15,1,0,11,12,9,7,10,15,0,11,14,14,13,9,12,6,9,8,4,6,5,6,4,2,2,14,5,6,0,11,12,12,10,14,2,10,13,2,8,9,6,11,11,9,5,4,2,7,9,5,0,13,4,11,5,10,4,1,13,1,2,14,6,6,11,9,5,3,9,11,12,8,10,0,13,4,14,3,3,14,6,3,10,3,10,3,7,7,2,6,14,1,4,13,15,14,11,10,3,12,4,2,3,3,6,13,5,3,6,10,0,13,8,6,1,15,3,8,4,15,11,7,7,2,15,1,7,5,9,0,4,11,0,13,14,11,11,11,14,15,10,8,12,9,10,3,3,4,13,3,13,1,8,11,15,3,13,11,10,5,13,0,15,14,6,6,1,10,13,12,6,8,15,8,12,8,9,6,11,9,10,11,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"13\", \"0\", \"15\"], \"clip_start\": 231.0, \"clip_end\": 236.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q11_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,4,8,6,7,3,2,0,8,12,14,3,2,8,13,10,7,5,3,1,13,1,6,0,5,6,11,8,9,15,12,9,13,3,8,9,1,13,11,9,15,8,15,12,6,3,8,13,8,6,3,4,1,0,3,14,10,4,2,12,5,2,4,7,10,0,4,14,7,7,7,15,1,0,11,12,9,7,10,15,0,11,14,14,13,9,12,6,9,8,4,6,5,6,4,2,2,14,5,6,0,11,12,12,10,14,2,10,13,2,8,9,6,11,11,9,5,4,2,7,9,5,0,13,4,11,5,10,4,1,13,1,2,14,6,6,11,9,5,3,9,11,12,8,10,0,13,4,14,3,3,14,6,3,10,3,10,3,7,7,2,6,14,1,4,13,15,14,11,10,3,12,4,2,3,3,6,13,5,3,6,10,0,13,8,6,1,15,3,8,4,15,11,7,7,2,15,1,7,5,9,0,4,11,0,13,14,11,11,11,14,15,10,8,12,9,10,3,3,4,13,3,13,1,8,11,15,3,13,11,10,5,13,0,15,14,6,6,1,10,13,12,6,8,15,8,12,8,9,6,11,9,10,11,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"1\", \"6\"], \"clip_start\": 20.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q12_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,4,8,6,7,3,2,0,8,12,14,3,2,8,13,10,7,5,3,1,13,1,6,0,5,6,11,8,9,15,12,9,13,3,8,9,1,13,11,9,15,8,15,12,6,3,8,13,8,6,3,4,1,0,3,14,10,4,2,12,5,2,4,7,10,0,4,14,7,7,7,15,1,0,11,12,9,7,10,15,0,11,14,14,13,9,12,6,9,8,4,6,5,6,4,2,2,14,5,6,0,11,12,12,10,14,2,10,13,2,8,9,6,11,11,9,5,4,2,7,9,5,0,13,4,11,5,10,4,1,13,1,2,14,6,6,11,9,5,3,9,11,12,8,10,0,13,4,14,3,3,14,6,3,10,3,10,3,7,7,2,6,14,1,4,13,15,14,11,10,3,12,4,2,3,3,6,13,5,3,6,10,0,13,8,6,1,15,3,8,4,15,11,7,7,2,15,1,7,5,9,0,4,11,0,13,14,11,11,11,14,15,10,8,12,9,10,3,3,4,13,3,13,1,8,11,15,3,13,11,10,5,13,0,15,14,6,6,1,10,13,12,6,8,15,8,12,8,9,6,11,9,10,11,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"3\", \"14\", \"7\"], \"clip_start\": 60.0, \"clip_end\": 65.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q13_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,4,8,6,7,3,2,0,8,12,14,3,2,8,13,10,7,5,3,1,13,1,6,0,5,6,11,8,9,15,12,9,13,3,8,9,1,13,11,9,15,8,15,12,6,3,8,13,8,6,3,4,1,0,3,14,10,4,2,12,5,2,4,7,10,0,4,14,7,7,7,15,1,0,11,12,9,7,10,15,0,11,14,14,13,9,12,6,9,8,4,6,5,6,4,2,2,14,5,6,0,11,12,12,10,14,2,10,13,2,8,9,6,11,11,9,5,4,2,7,9,5,0,13,4,11,5,10,4,1,13,1,2,14,6,6,11,9,5,3,9,11,12,8,10,0,13,4,14,3,3,14,6,3,10,3,10,3,7,7,2,6,14,1,4,13,15,14,11,10,3,12,4,2,3,3,6,13,5,3,6,10,0,13,8,6,1,15,3,8,4,15,11,7,7,2,15,1,7,5,9,0,4,11,0,13,14,11,11,11,14,15,10,8,12,9,10,3,3,4,13,3,13,1,8,11,15,3,13,11,10,5,13,0,15,14,6,6,1,10,13,12,6,8,15,8,12,8,9,6,11,9,10,11,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"7\", \"2\", \"15\"], \"clip_start\": 194.0, \"clip_end\": 198.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q14_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,4,8,6,7,3,2,0,8,12,14,3,2,8,13,10,7,5,3,1,13,1,6,0,5,6,11,8,9,15,12,9,13,3,8,9,1,13,11,9,15,8,15,12,6,3,8,13,8,6,3,4,1,0,3,14,10,4,2,12,5,2,4,7,10,0,4,14,7,7,7,15,1,0,11,12,9,7,10,15,0,11,14,14,13,9,12,6,9,8,4,6,5,6,4,2,2,14,5,6,0,11,12,12,10,14,2,10,13,2,8,9,6,11,11,9,5,4,2,7,9,5,0,13,4,11,5,10,4,1,13,1,2,14,6,6,11,9,5,3,9,11,12,8,10,0,13,4,14,3,3,14,6,3,10,3,10,3,7,7,2,6,14,1,4,13,15,14,11,10,3,12,4,2,3,3,6,13,5,3,6,10,0,13,8,6,1,15,3,8,4,15,11,7,7,2,15,1,7,5,9,0,4,11,0,13,14,11,11,11,14,15,10,8,12,9,10,3,3,4,13,3,13,1,8,11,15,3,13,11,10,5,13,0,15,14,6,6,1,10,13,12,6,8,15,8,12,8,9,6,11,9,10,11,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"9\", \"0\", \"4\"], \"clip_start\": 199.0, \"clip_end\": 204.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q15_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,6,4,8,6,7,3,2,0,8,12,14,3,2,8,13,10,7,5,3,1,13,1,6,0,5,6,11,8,9,15,12,9,13,3,8,9,1,13,11,9,15,8,15,12,6,3,8,13,8,6,3,4,1,0,3,14,10,4,2,12,5,2,4,7,10,0,4,14,7,7,7,15,1,0,11,12,9,7,10,15,0,11,14,14,13,9,12,6,9,8,4,6,5,6,4,2,2,14,5,6,0,11,12,12,10,14,2,10,13,2,8,9,6,11,11,9,5,4,2,7,9,5,0,13,4,11,5,10,4,1,13,1,2,14,6,6,11,9,5,3,9,11,12,8,10,0,13,4,14,3,3,14,6,3,10,3,10,3,7,7,2,6,14,1,4,13,15,14,11,10,3,12,4,2,3,3,6,13,5,3,6,10,0,13,8,6,1,15,3,8,4,15,11,7,7,2,15,1,7,5,9,0,4,11,0,13,14,11,11,11,14,15,10,8,12,9,10,3,3,4,13,3,13,1,8,11,15,3,13,11,10,5,13,0,15,14,6,6,1,10,13,12,6,8,15,8,12,8,9,6,11,9,10,11,5", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"11\", \"11\", \"5\"], \"clip_start\": 107.0, \"clip_end\": 112.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,4,14,14,13,13,0,15,11,4,8,3,9,15,3,13,11,12,12,7,3,2,12,14,11,8,0,15,13,2,10,1,1,0,0,3,7,5,6,6,2,7,11,0,7,14,2,3,11,13,0,10,11,12,10,10,9,13,13,15,3,3,4,11,2,10,15,3,14,0,12,11,6,14,15,15,5,2,8,2,7,2,3,9,11,13,7,4,11,8,0,7,4,15,15,15,13,15,8,9,0,9,3,6,3,15,6,14,11,11,5,2,15,11,9,2,10,0,0,11,1,3,11,7,0,0,14,5,3,10,9,1,9,12,7,14,4,1,1,5,2,2,15,9,6,1,5,14,15,4,6,7,4,5,15,2,0,7,6,9,4,12,11,3,13,14,13,13,0,7,7,10,7,11,13,12,1,4,6,11,1,5,2,15,13,9,7,14,7,0,11,13,13,10,11,13,8,10,0,4,10,11,5,11,7,1,1,8,9,13,10,2,0,12,7,7,3,13,13,9,0,3,8,6,2,15,14,14,0,1,12,6,15,1,9,13,3,1,9,13,2,2,13,13,0,1,1,11,12,15,3,1,9,6,13", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"2\", \"8\", \"2\", \"7\"], \"clip_start\": 76.0, \"clip_end\": 82.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,4,14,14,13,13,0,15,11,4,8,3,9,15,3,13,11,12,12,7,3,2,12,14,11,8,0,15,13,2,10,1,1,0,0,3,7,5,6,6,2,7,11,0,7,14,2,3,11,13,0,10,11,12,10,10,9,13,13,15,3,3,4,11,2,10,15,3,14,0,12,11,6,14,15,15,5,2,8,2,7,2,3,9,11,13,7,4,11,8,0,7,4,15,15,15,13,15,8,9,0,9,3,6,3,15,6,14,11,11,5,2,15,11,9,2,10,0,0,11,1,3,11,7,0,0,14,5,3,10,9,1,9,12,7,14,4,1,1,5,2,2,15,9,6,1,5,14,15,4,6,7,4,5,15,2,0,7,6,9,4,12,11,3,13,14,13,13,0,7,7,10,7,11,13,12,1,4,6,11,1,5,2,15,13,9,7,14,7,0,11,13,13,10,11,13,8,10,0,4,10,11,5,11,7,1,1,8,9,13,10,2,0,12,7,7,3,13,13,9,0,3,8,6,2,15,14,14,0,1,12,6,15,1,9,13,3,1,9,13,2,2,13,13,0,1,1,11,12,15,3,1,9,6,13", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 244.0, \"clip_end\": 250.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,4,14,14,13,13,0,15,11,4,8,3,9,15,3,13,11,12,12,7,3,2,12,14,11,8,0,15,13,2,10,1,1,0,0,3,7,5,6,6,2,7,11,0,7,14,2,3,11,13,0,10,11,12,10,10,9,13,13,15,3,3,4,11,2,10,15,3,14,0,12,11,6,14,15,15,5,2,8,2,7,2,3,9,11,13,7,4,11,8,0,7,4,15,15,15,13,15,8,9,0,9,3,6,3,15,6,14,11,11,5,2,15,11,9,2,10,0,0,11,1,3,11,7,0,0,14,5,3,10,9,1,9,12,7,14,4,1,1,5,2,2,15,9,6,1,5,14,15,4,6,7,4,5,15,2,0,7,6,9,4,12,11,3,13,14,13,13,0,7,7,10,7,11,13,12,1,4,6,11,1,5,2,15,13,9,7,14,7,0,11,13,13,10,11,13,8,10,0,4,10,11,5,11,7,1,1,8,9,13,10,2,0,12,7,7,3,13,13,9,0,3,8,6,2,15,14,14,0,1,12,6,15,1,9,13,3,1,9,13,2,2,13,13,0,1,1,11,12,15,3,1,9,6,13", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"8\", \"10\", \"0\", \"4\"], \"clip_start\": 195.0, \"clip_end\": 201.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,4,14,14,13,13,0,15,11,4,8,3,9,15,3,13,11,12,12,7,3,2,12,14,11,8,0,15,13,2,10,1,1,0,0,3,7,5,6,6,2,7,11,0,7,14,2,3,11,13,0,10,11,12,10,10,9,13,13,15,3,3,4,11,2,10,15,3,14,0,12,11,6,14,15,15,5,2,8,2,7,2,3,9,11,13,7,4,11,8,0,7,4,15,15,15,13,15,8,9,0,9,3,6,3,15,6,14,11,11,5,2,15,11,9,2,10,0,0,11,1,3,11,7,0,0,14,5,3,10,9,1,9,12,7,14,4,1,1,5,2,2,15,9,6,1,5,14,15,4,6,7,4,5,15,2,0,7,6,9,4,12,11,3,13,14,13,13,0,7,7,10,7,11,13,12,1,4,6,11,1,5,2,15,13,9,7,14,7,0,11,13,13,10,11,13,8,10,0,4,10,11,5,11,7,1,1,8,9,13,10,2,0,12,7,7,3,13,13,9,0,3,8,6,2,15,14,14,0,1,12,6,15,1,9,13,3,1,9,13,2,2,13,13,0,1,1,11,12,15,3,1,9,6,13", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"4\", \"8\", \"3\", \"9\", \"15\"], \"clip_start\": 9.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,4,14,14,13,13,0,15,11,4,8,3,9,15,3,13,11,12,12,7,3,2,12,14,11,8,0,15,13,2,10,1,1,0,0,3,7,5,6,6,2,7,11,0,7,14,2,3,11,13,0,10,11,12,10,10,9,13,13,15,3,3,4,11,2,10,15,3,14,0,12,11,6,14,15,15,5,2,8,2,7,2,3,9,11,13,7,4,11,8,0,7,4,15,15,15,13,15,8,9,0,9,3,6,3,15,6,14,11,11,5,2,15,11,9,2,10,0,0,11,1,3,11,7,0,0,14,5,3,10,9,1,9,12,7,14,4,1,1,5,2,2,15,9,6,1,5,14,15,4,6,7,4,5,15,2,0,7,6,9,4,12,11,3,13,14,13,13,0,7,7,10,7,11,13,12,1,4,6,11,1,5,2,15,13,9,7,14,7,0,11,13,13,10,11,13,8,10,0,4,10,11,5,11,7,1,1,8,9,13,10,2,0,12,7,7,3,13,13,9,0,3,8,6,2,15,14,14,0,1,12,6,15,1,9,13,3,1,9,13,2,2,13,13,0,1,1,11,12,15,3,1,9,6,13", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"7\", \"6\", \"9\"], \"clip_start\": 157.0, \"clip_end\": 161.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,4,14,14,13,13,0,15,11,4,8,3,9,15,3,13,11,12,12,7,3,2,12,14,11,8,0,15,13,2,10,1,1,0,0,3,7,5,6,6,2,7,11,0,7,14,2,3,11,13,0,10,11,12,10,10,9,13,13,15,3,3,4,11,2,10,15,3,14,0,12,11,6,14,15,15,5,2,8,2,7,2,3,9,11,13,7,4,11,8,0,7,4,15,15,15,13,15,8,9,0,9,3,6,3,15,6,14,11,11,5,2,15,11,9,2,10,0,0,11,1,3,11,7,0,0,14,5,3,10,9,1,9,12,7,14,4,1,1,5,2,2,15,9,6,1,5,14,15,4,6,7,4,5,15,2,0,7,6,9,4,12,11,3,13,14,13,13,0,7,7,10,7,11,13,12,1,4,6,11,1,5,2,15,13,9,7,14,7,0,11,13,13,10,11,13,8,10,0,4,10,11,5,11,7,1,1,8,9,13,10,2,0,12,7,7,3,13,13,9,0,3,8,6,2,15,14,14,0,1,12,6,15,1,9,13,3,1,9,13,2,2,13,13,0,1,1,11,12,15,3,1,9,6,13", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"13\", \"2\"], \"clip_start\": 238.0, \"clip_end\": 242.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,4,14,14,13,13,0,15,11,4,8,3,9,15,3,13,11,12,12,7,3,2,12,14,11,8,0,15,13,2,10,1,1,0,0,3,7,5,6,6,2,7,11,0,7,14,2,3,11,13,0,10,11,12,10,10,9,13,13,15,3,3,4,11,2,10,15,3,14,0,12,11,6,14,15,15,5,2,8,2,7,2,3,9,11,13,7,4,11,8,0,7,4,15,15,15,13,15,8,9,0,9,3,6,3,15,6,14,11,11,5,2,15,11,9,2,10,0,0,11,1,3,11,7,0,0,14,5,3,10,9,1,9,12,7,14,4,1,1,5,2,2,15,9,6,1,5,14,15,4,6,7,4,5,15,2,0,7,6,9,4,12,11,3,13,14,13,13,0,7,7,10,7,11,13,12,1,4,6,11,1,5,2,15,13,9,7,14,7,0,11,13,13,10,11,13,8,10,0,4,10,11,5,11,7,1,1,8,9,13,10,2,0,12,7,7,3,13,13,9,0,3,8,6,2,15,14,14,0,1,12,6,15,1,9,13,3,1,9,13,2,2,13,13,0,1,1,11,12,15,3,1,9,6,13", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 81.0, \"clip_end\": 87.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,4,14,14,13,13,0,15,11,4,8,3,9,15,3,13,11,12,12,7,3,2,12,14,11,8,0,15,13,2,10,1,1,0,0,3,7,5,6,6,2,7,11,0,7,14,2,3,11,13,0,10,11,12,10,10,9,13,13,15,3,3,4,11,2,10,15,3,14,0,12,11,6,14,15,15,5,2,8,2,7,2,3,9,11,13,7,4,11,8,0,7,4,15,15,15,13,15,8,9,0,9,3,6,3,15,6,14,11,11,5,2,15,11,9,2,10,0,0,11,1,3,11,7,0,0,14,5,3,10,9,1,9,12,7,14,4,1,1,5,2,2,15,9,6,1,5,14,15,4,6,7,4,5,15,2,0,7,6,9,4,12,11,3,13,14,13,13,0,7,7,10,7,11,13,12,1,4,6,11,1,5,2,15,13,9,7,14,7,0,11,13,13,10,11,13,8,10,0,4,10,11,5,11,7,1,1,8,9,13,10,2,0,12,7,7,3,13,13,9,0,3,8,6,2,15,14,14,0,1,12,6,15,1,9,13,3,1,9,13,2,2,13,13,0,1,1,11,12,15,3,1,9,6,13", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 194.0, \"clip_end\": 198.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,4,14,14,13,13,0,15,11,4,8,3,9,15,3,13,11,12,12,7,3,2,12,14,11,8,0,15,13,2,10,1,1,0,0,3,7,5,6,6,2,7,11,0,7,14,2,3,11,13,0,10,11,12,10,10,9,13,13,15,3,3,4,11,2,10,15,3,14,0,12,11,6,14,15,15,5,2,8,2,7,2,3,9,11,13,7,4,11,8,0,7,4,15,15,15,13,15,8,9,0,9,3,6,3,15,6,14,11,11,5,2,15,11,9,2,10,0,0,11,1,3,11,7,0,0,14,5,3,10,9,1,9,12,7,14,4,1,1,5,2,2,15,9,6,1,5,14,15,4,6,7,4,5,15,2,0,7,6,9,4,12,11,3,13,14,13,13,0,7,7,10,7,11,13,12,1,4,6,11,1,5,2,15,13,9,7,14,7,0,11,13,13,10,11,13,8,10,0,4,10,11,5,11,7,1,1,8,9,13,10,2,0,12,7,7,3,13,13,9,0,3,8,6,2,15,14,14,0,1,12,6,15,1,9,13,3,1,9,13,2,2,13,13,0,1,1,11,12,15,3,1,9,6,13", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"8\", \"0\", \"7\"], \"clip_start\": 88.0, \"clip_end\": 93.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,4,14,14,13,13,0,15,11,4,8,3,9,15,3,13,11,12,12,7,3,2,12,14,11,8,0,15,13,2,10,1,1,0,0,3,7,5,6,6,2,7,11,0,7,14,2,3,11,13,0,10,11,12,10,10,9,13,13,15,3,3,4,11,2,10,15,3,14,0,12,11,6,14,15,15,5,2,8,2,7,2,3,9,11,13,7,4,11,8,0,7,4,15,15,15,13,15,8,9,0,9,3,6,3,15,6,14,11,11,5,2,15,11,9,2,10,0,0,11,1,3,11,7,0,0,14,5,3,10,9,1,9,12,7,14,4,1,1,5,2,2,15,9,6,1,5,14,15,4,6,7,4,5,15,2,0,7,6,9,4,12,11,3,13,14,13,13,0,7,7,10,7,11,13,12,1,4,6,11,1,5,2,15,13,9,7,14,7,0,11,13,13,10,11,13,8,10,0,4,10,11,5,11,7,1,1,8,9,13,10,2,0,12,7,7,3,13,13,9,0,3,8,6,2,15,14,14,0,1,12,6,15,1,9,13,3,1,9,13,2,2,13,13,0,1,1,11,12,15,3,1,9,6,13", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"10\", \"15\", \"3\", \"14\"], \"clip_start\": 64.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,4,14,14,13,13,0,15,11,4,8,3,9,15,3,13,11,12,12,7,3,2,12,14,11,8,0,15,13,2,10,1,1,0,0,3,7,5,6,6,2,7,11,0,7,14,2,3,11,13,0,10,11,12,10,10,9,13,13,15,3,3,4,11,2,10,15,3,14,0,12,11,6,14,15,15,5,2,8,2,7,2,3,9,11,13,7,4,11,8,0,7,4,15,15,15,13,15,8,9,0,9,3,6,3,15,6,14,11,11,5,2,15,11,9,2,10,0,0,11,1,3,11,7,0,0,14,5,3,10,9,1,9,12,7,14,4,1,1,5,2,2,15,9,6,1,5,14,15,4,6,7,4,5,15,2,0,7,6,9,4,12,11,3,13,14,13,13,0,7,7,10,7,11,13,12,1,4,6,11,1,5,2,15,13,9,7,14,7,0,11,13,13,10,11,13,8,10,0,4,10,11,5,11,7,1,1,8,9,13,10,2,0,12,7,7,3,13,13,9,0,3,8,6,2,15,14,14,0,1,12,6,15,1,9,13,3,1,9,13,2,2,13,13,0,1,1,11,12,15,3,1,9,6,13", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"6\", \"14\"], \"clip_start\": 106.0, \"clip_end\": 109.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q11_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,4,14,14,13,13,0,15,11,4,8,3,9,15,3,13,11,12,12,7,3,2,12,14,11,8,0,15,13,2,10,1,1,0,0,3,7,5,6,6,2,7,11,0,7,14,2,3,11,13,0,10,11,12,10,10,9,13,13,15,3,3,4,11,2,10,15,3,14,0,12,11,6,14,15,15,5,2,8,2,7,2,3,9,11,13,7,4,11,8,0,7,4,15,15,15,13,15,8,9,0,9,3,6,3,15,6,14,11,11,5,2,15,11,9,2,10,0,0,11,1,3,11,7,0,0,14,5,3,10,9,1,9,12,7,14,4,1,1,5,2,2,15,9,6,1,5,14,15,4,6,7,4,5,15,2,0,7,6,9,4,12,11,3,13,14,13,13,0,7,7,10,7,11,13,12,1,4,6,11,1,5,2,15,13,9,7,14,7,0,11,13,13,10,11,13,8,10,0,4,10,11,5,11,7,1,1,8,9,13,10,2,0,12,7,7,3,13,13,9,0,3,8,6,2,15,14,14,0,1,12,6,15,1,9,13,3,1,9,13,2,2,13,13,0,1,1,11,12,15,3,1,9,6,13", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"0\", \"14\", \"5\"], \"clip_start\": 124.0, \"clip_end\": 129.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,4,14,14,13,13,0,15,11,4,8,3,9,15,3,13,11,12,12,7,3,2,12,14,11,8,0,15,13,2,10,1,1,0,0,3,7,5,6,6,2,7,11,0,7,14,2,3,11,13,0,10,11,12,10,10,9,13,13,15,3,3,4,11,2,10,15,3,14,0,12,11,6,14,15,15,5,2,8,2,7,2,3,9,11,13,7,4,11,8,0,7,4,15,15,15,13,15,8,9,0,9,3,6,3,15,6,14,11,11,5,2,15,11,9,2,10,0,0,11,1,3,11,7,0,0,14,5,3,10,9,1,9,12,7,14,4,1,1,5,2,2,15,9,6,1,5,14,15,4,6,7,4,5,15,2,0,7,6,9,4,12,11,3,13,14,13,13,0,7,7,10,7,11,13,12,1,4,6,11,1,5,2,15,13,9,7,14,7,0,11,13,13,10,11,13,8,10,0,4,10,11,5,11,7,1,1,8,9,13,10,2,0,12,7,7,3,13,13,9,0,3,8,6,2,15,14,14,0,1,12,6,15,1,9,13,3,1,9,13,2,2,13,13,0,1,1,11,12,15,3,1,9,6,13", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"11\", \"9\", \"15\"], \"clip_start\": 127.0, \"clip_end\": 132.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q13_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,4,14,14,13,13,0,15,11,4,8,3,9,15,3,13,11,12,12,7,3,2,12,14,11,8,0,15,13,2,10,1,1,0,0,3,7,5,6,6,2,7,11,0,7,14,2,3,11,13,0,10,11,12,10,10,9,13,13,15,3,3,4,11,2,10,15,3,14,0,12,11,6,14,15,15,5,2,8,2,7,2,3,9,11,13,7,4,11,8,0,7,4,15,15,15,13,15,8,9,0,9,3,6,3,15,6,14,11,11,5,2,15,11,9,2,10,0,0,11,1,3,11,7,0,0,14,5,3,10,9,1,9,12,7,14,4,1,1,5,2,2,15,9,6,1,5,14,15,4,6,7,4,5,15,2,0,7,6,9,4,12,11,3,13,14,13,13,0,7,7,10,7,11,13,12,1,4,6,11,1,5,2,15,13,9,7,14,7,0,11,13,13,10,11,13,8,10,0,4,10,11,5,11,7,1,1,8,9,13,10,2,0,12,7,7,3,13,13,9,0,3,8,6,2,15,14,14,0,1,12,6,15,1,9,13,3,1,9,13,2,2,13,13,0,1,1,11,12,15,3,1,9,6,13", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"12\", \"6\", \"7\"], \"clip_start\": 51.0, \"clip_end\": 56.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,4,14,14,13,13,0,15,11,4,8,3,9,15,3,13,11,12,12,7,3,2,12,14,11,8,0,15,13,2,10,1,1,0,0,3,7,5,6,6,2,7,11,0,7,14,2,3,11,13,0,10,11,12,10,10,9,13,13,15,3,3,4,11,2,10,15,3,14,0,12,11,6,14,15,15,5,2,8,2,7,2,3,9,11,13,7,4,11,8,0,7,4,15,15,15,13,15,8,9,0,9,3,6,3,15,6,14,11,11,5,2,15,11,9,2,10,0,0,11,1,3,11,7,0,0,14,5,3,10,9,1,9,12,7,14,4,1,1,5,2,2,15,9,6,1,5,14,15,4,6,7,4,5,15,2,0,7,6,9,4,12,11,3,13,14,13,13,0,7,7,10,7,11,13,12,1,4,6,11,1,5,2,15,13,9,7,14,7,0,11,13,13,10,11,13,8,10,0,4,10,11,5,11,7,1,1,8,9,13,10,2,0,12,7,7,3,13,13,9,0,3,8,6,2,15,14,14,0,1,12,6,15,1,9,13,3,1,9,13,2,2,13,13,0,1,1,11,12,15,3,1,9,6,13", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"2\", \"1\", \"9\"], \"clip_start\": 9.0, \"clip_end\": 14.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q15_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,8,4,14,14,13,13,0,15,11,4,8,3,9,15,3,13,11,12,12,7,3,2,12,14,11,8,0,15,13,2,10,1,1,0,0,3,7,5,6,6,2,7,11,0,7,14,2,3,11,13,0,10,11,12,10,10,9,13,13,15,3,3,4,11,2,10,15,3,14,0,12,11,6,14,15,15,5,2,8,2,7,2,3,9,11,13,7,4,11,8,0,7,4,15,15,15,13,15,8,9,0,9,3,6,3,15,6,14,11,11,5,2,15,11,9,2,10,0,0,11,1,3,11,7,0,0,14,5,3,10,9,1,9,12,7,14,4,1,1,5,2,2,15,9,6,1,5,14,15,4,6,7,4,5,15,2,0,7,6,9,4,12,11,3,13,14,13,13,0,7,7,10,7,11,13,12,1,4,6,11,1,5,2,15,13,9,7,14,7,0,11,13,13,10,11,13,8,10,0,4,10,11,5,11,7,1,1,8,9,13,10,2,0,12,7,7,3,13,13,9,0,3,8,6,2,15,14,14,0,1,12,6,15,1,9,13,3,1,9,13,2,2,13,13,0,1,1,11,12,15,3,1,9,6,13", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"6\", \"4\", \"7\", \"7\"], \"clip_start\": 54.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,2,10,2,3,0,5,5,4,14,15,4,12,3,3,1,2,6,12,13,15,8,1,1,7,14,14,9,9,1,5,9,12,3,12,12,3,12,11,6,10,11,5,13,6,13,5,8,0,7,6,13,6,14,12,6,4,7,7,2,9,13,1,11,6,8,3,8,10,10,3,11,3,7,5,8,1,10,8,6,11,10,9,14,11,6,2,14,2,11,11,13,14,2,7,13,3,13,9,2,14,4,6,11,10,8,4,6,9,8,15,6,8,10,8,15,5,5,8,5,0,4,2,15,8,1,3,2,6,0,8,4,14,8,2,11,8,2,6,13,14,8,5,13,2,1,13,6,7,3,8,0,9,7,6,15,1,11,8,14,3,0,9,0,13,12,4,1,14,13,3,1,12,10,11,2,13,9,3,1,7,4,12,6,10,4,14,0,1,11,2,2,9,3,1,3,8,9,4,4,11,14,5,3,6,0,9,3,6,1,4,15,7,14,13,4,11,3,8,15,9,15,4,6,2,9,11,13,14,12,9,12,12,9,1,12,15,14,7,15,11,11,3,11,8,8,4,11,12,2,4,7,4,3,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"3\", \"8\", \"0\"], \"clip_start\": 148.0, \"clip_end\": 153.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,2,10,2,3,0,5,5,4,14,15,4,12,3,3,1,2,6,12,13,15,8,1,1,7,14,14,9,9,1,5,9,12,3,12,12,3,12,11,6,10,11,5,13,6,13,5,8,0,7,6,13,6,14,12,6,4,7,7,2,9,13,1,11,6,8,3,8,10,10,3,11,3,7,5,8,1,10,8,6,11,10,9,14,11,6,2,14,2,11,11,13,14,2,7,13,3,13,9,2,14,4,6,11,10,8,4,6,9,8,15,6,8,10,8,15,5,5,8,5,0,4,2,15,8,1,3,2,6,0,8,4,14,8,2,11,8,2,6,13,14,8,5,13,2,1,13,6,7,3,8,0,9,7,6,15,1,11,8,14,3,0,9,0,13,12,4,1,14,13,3,1,12,10,11,2,13,9,3,1,7,4,12,6,10,4,14,0,1,11,2,2,9,3,1,3,8,9,4,4,11,14,5,3,6,0,9,3,6,1,4,15,7,14,13,4,11,3,8,15,9,15,4,6,2,9,11,13,14,12,9,12,12,9,1,12,15,14,7,15,11,11,3,11,8,8,4,11,12,2,4,7,4,3,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"2\", \"10\", \"2\", \"3\", \"0\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,2,10,2,3,0,5,5,4,14,15,4,12,3,3,1,2,6,12,13,15,8,1,1,7,14,14,9,9,1,5,9,12,3,12,12,3,12,11,6,10,11,5,13,6,13,5,8,0,7,6,13,6,14,12,6,4,7,7,2,9,13,1,11,6,8,3,8,10,10,3,11,3,7,5,8,1,10,8,6,11,10,9,14,11,6,2,14,2,11,11,13,14,2,7,13,3,13,9,2,14,4,6,11,10,8,4,6,9,8,15,6,8,10,8,15,5,5,8,5,0,4,2,15,8,1,3,2,6,0,8,4,14,8,2,11,8,2,6,13,14,8,5,13,2,1,13,6,7,3,8,0,9,7,6,15,1,11,8,14,3,0,9,0,13,12,4,1,14,13,3,1,12,10,11,2,13,9,3,1,7,4,12,6,10,4,14,0,1,11,2,2,9,3,1,3,8,9,4,4,11,14,5,3,6,0,9,3,6,1,4,15,7,14,13,4,11,3,8,15,9,15,4,6,2,9,11,13,14,12,9,12,12,9,1,12,15,14,7,15,11,11,3,11,8,8,4,11,12,2,4,7,4,3,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"1\", \"12\", \"15\", \"14\"], \"clip_start\": 234.0, \"clip_end\": 239.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,2,10,2,3,0,5,5,4,14,15,4,12,3,3,1,2,6,12,13,15,8,1,1,7,14,14,9,9,1,5,9,12,3,12,12,3,12,11,6,10,11,5,13,6,13,5,8,0,7,6,13,6,14,12,6,4,7,7,2,9,13,1,11,6,8,3,8,10,10,3,11,3,7,5,8,1,10,8,6,11,10,9,14,11,6,2,14,2,11,11,13,14,2,7,13,3,13,9,2,14,4,6,11,10,8,4,6,9,8,15,6,8,10,8,15,5,5,8,5,0,4,2,15,8,1,3,2,6,0,8,4,14,8,2,11,8,2,6,13,14,8,5,13,2,1,13,6,7,3,8,0,9,7,6,15,1,11,8,14,3,0,9,0,13,12,4,1,14,13,3,1,12,10,11,2,13,9,3,1,7,4,12,6,10,4,14,0,1,11,2,2,9,3,1,3,8,9,4,4,11,14,5,3,6,0,9,3,6,1,4,15,7,14,13,4,11,3,8,15,9,15,4,6,2,9,11,13,14,12,9,12,12,9,1,12,15,14,7,15,11,11,3,11,8,8,4,11,12,2,4,7,4,3,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"12\", \"10\", \"11\"], \"clip_start\": 172.0, \"clip_end\": 176.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,2,10,2,3,0,5,5,4,14,15,4,12,3,3,1,2,6,12,13,15,8,1,1,7,14,14,9,9,1,5,9,12,3,12,12,3,12,11,6,10,11,5,13,6,13,5,8,0,7,6,13,6,14,12,6,4,7,7,2,9,13,1,11,6,8,3,8,10,10,3,11,3,7,5,8,1,10,8,6,11,10,9,14,11,6,2,14,2,11,11,13,14,2,7,13,3,13,9,2,14,4,6,11,10,8,4,6,9,8,15,6,8,10,8,15,5,5,8,5,0,4,2,15,8,1,3,2,6,0,8,4,14,8,2,11,8,2,6,13,14,8,5,13,2,1,13,6,7,3,8,0,9,7,6,15,1,11,8,14,3,0,9,0,13,12,4,1,14,13,3,1,12,10,11,2,13,9,3,1,7,4,12,6,10,4,14,0,1,11,2,2,9,3,1,3,8,9,4,4,11,14,5,3,6,0,9,3,6,1,4,15,7,14,13,4,11,3,8,15,9,15,4,6,2,9,11,13,14,12,9,12,12,9,1,12,15,14,7,15,11,11,3,11,8,8,4,11,12,2,4,7,4,3,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"5\", \"5\", \"4\", \"14\"], \"clip_start\": 6.0, \"clip_end\": 11.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q5_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,2,10,2,3,0,5,5,4,14,15,4,12,3,3,1,2,6,12,13,15,8,1,1,7,14,14,9,9,1,5,9,12,3,12,12,3,12,11,6,10,11,5,13,6,13,5,8,0,7,6,13,6,14,12,6,4,7,7,2,9,13,1,11,6,8,3,8,10,10,3,11,3,7,5,8,1,10,8,6,11,10,9,14,11,6,2,14,2,11,11,13,14,2,7,13,3,13,9,2,14,4,6,11,10,8,4,6,9,8,15,6,8,10,8,15,5,5,8,5,0,4,2,15,8,1,3,2,6,0,8,4,14,8,2,11,8,2,6,13,14,8,5,13,2,1,13,6,7,3,8,0,9,7,6,15,1,11,8,14,3,0,9,0,13,12,4,1,14,13,3,1,12,10,11,2,13,9,3,1,7,4,12,6,10,4,14,0,1,11,2,2,9,3,1,3,8,9,4,4,11,14,5,3,6,0,9,3,6,1,4,15,7,14,13,4,11,3,8,15,9,15,4,6,2,9,11,13,14,12,9,12,12,9,1,12,15,14,7,15,11,11,3,11,8,8,4,11,12,2,4,7,4,3,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"15\", \"5\", \"5\"], \"clip_start\": 114.0, \"clip_end\": 119.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,2,10,2,3,0,5,5,4,14,15,4,12,3,3,1,2,6,12,13,15,8,1,1,7,14,14,9,9,1,5,9,12,3,12,12,3,12,11,6,10,11,5,13,6,13,5,8,0,7,6,13,6,14,12,6,4,7,7,2,9,13,1,11,6,8,3,8,10,10,3,11,3,7,5,8,1,10,8,6,11,10,9,14,11,6,2,14,2,11,11,13,14,2,7,13,3,13,9,2,14,4,6,11,10,8,4,6,9,8,15,6,8,10,8,15,5,5,8,5,0,4,2,15,8,1,3,2,6,0,8,4,14,8,2,11,8,2,6,13,14,8,5,13,2,1,13,6,7,3,8,0,9,7,6,15,1,11,8,14,3,0,9,0,13,12,4,1,14,13,3,1,12,10,11,2,13,9,3,1,7,4,12,6,10,4,14,0,1,11,2,2,9,3,1,3,8,9,4,4,11,14,5,3,6,0,9,3,6,1,4,15,7,14,13,4,11,3,8,15,9,15,4,6,2,9,11,13,14,12,9,12,12,9,1,12,15,14,7,15,11,11,3,11,8,8,4,11,12,2,4,7,4,3,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"3\", \"3\", \"1\", \"2\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,2,10,2,3,0,5,5,4,14,15,4,12,3,3,1,2,6,12,13,15,8,1,1,7,14,14,9,9,1,5,9,12,3,12,12,3,12,11,6,10,11,5,13,6,13,5,8,0,7,6,13,6,14,12,6,4,7,7,2,9,13,1,11,6,8,3,8,10,10,3,11,3,7,5,8,1,10,8,6,11,10,9,14,11,6,2,14,2,11,11,13,14,2,7,13,3,13,9,2,14,4,6,11,10,8,4,6,9,8,15,6,8,10,8,15,5,5,8,5,0,4,2,15,8,1,3,2,6,0,8,4,14,8,2,11,8,2,6,13,14,8,5,13,2,1,13,6,7,3,8,0,9,7,6,15,1,11,8,14,3,0,9,0,13,12,4,1,14,13,3,1,12,10,11,2,13,9,3,1,7,4,12,6,10,4,14,0,1,11,2,2,9,3,1,3,8,9,4,4,11,14,5,3,6,0,9,3,6,1,4,15,7,14,13,4,11,3,8,15,9,15,4,6,2,9,11,13,14,12,9,12,12,9,1,12,15,14,7,15,11,11,3,11,8,8,4,11,12,2,4,7,4,3,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"6\", \"8\", \"10\"], \"clip_start\": 111.0, \"clip_end\": 115.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q8_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,2,10,2,3,0,5,5,4,14,15,4,12,3,3,1,2,6,12,13,15,8,1,1,7,14,14,9,9,1,5,9,12,3,12,12,3,12,11,6,10,11,5,13,6,13,5,8,0,7,6,13,6,14,12,6,4,7,7,2,9,13,1,11,6,8,3,8,10,10,3,11,3,7,5,8,1,10,8,6,11,10,9,14,11,6,2,14,2,11,11,13,14,2,7,13,3,13,9,2,14,4,6,11,10,8,4,6,9,8,15,6,8,10,8,15,5,5,8,5,0,4,2,15,8,1,3,2,6,0,8,4,14,8,2,11,8,2,6,13,14,8,5,13,2,1,13,6,7,3,8,0,9,7,6,15,1,11,8,14,3,0,9,0,13,12,4,1,14,13,3,1,12,10,11,2,13,9,3,1,7,4,12,6,10,4,14,0,1,11,2,2,9,3,1,3,8,9,4,4,11,14,5,3,6,0,9,3,6,1,4,15,7,14,13,4,11,3,8,15,9,15,4,6,2,9,11,13,14,12,9,12,12,9,1,12,15,14,7,15,11,11,3,11,8,8,4,11,12,2,4,7,4,3,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"13\", \"6\", \"14\"], \"clip_start\": 50.0, \"clip_end\": 55.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q9_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,2,10,2,3,0,5,5,4,14,15,4,12,3,3,1,2,6,12,13,15,8,1,1,7,14,14,9,9,1,5,9,12,3,12,12,3,12,11,6,10,11,5,13,6,13,5,8,0,7,6,13,6,14,12,6,4,7,7,2,9,13,1,11,6,8,3,8,10,10,3,11,3,7,5,8,1,10,8,6,11,10,9,14,11,6,2,14,2,11,11,13,14,2,7,13,3,13,9,2,14,4,6,11,10,8,4,6,9,8,15,6,8,10,8,15,5,5,8,5,0,4,2,15,8,1,3,2,6,0,8,4,14,8,2,11,8,2,6,13,14,8,5,13,2,1,13,6,7,3,8,0,9,7,6,15,1,11,8,14,3,0,9,0,13,12,4,1,14,13,3,1,12,10,11,2,13,9,3,1,7,4,12,6,10,4,14,0,1,11,2,2,9,3,1,3,8,9,4,4,11,14,5,3,6,0,9,3,6,1,4,15,7,14,13,4,11,3,8,15,9,15,4,6,2,9,11,13,14,12,9,12,12,9,1,12,15,14,7,15,11,11,3,11,8,8,4,11,12,2,4,7,4,3,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"7\", \"4\", \"12\", \"6\"], \"clip_start\": 179.0, \"clip_end\": 185.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q10_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,2,10,2,3,0,5,5,4,14,15,4,12,3,3,1,2,6,12,13,15,8,1,1,7,14,14,9,9,1,5,9,12,3,12,12,3,12,11,6,10,11,5,13,6,13,5,8,0,7,6,13,6,14,12,6,4,7,7,2,9,13,1,11,6,8,3,8,10,10,3,11,3,7,5,8,1,10,8,6,11,10,9,14,11,6,2,14,2,11,11,13,14,2,7,13,3,13,9,2,14,4,6,11,10,8,4,6,9,8,15,6,8,10,8,15,5,5,8,5,0,4,2,15,8,1,3,2,6,0,8,4,14,8,2,11,8,2,6,13,14,8,5,13,2,1,13,6,7,3,8,0,9,7,6,15,1,11,8,14,3,0,9,0,13,12,4,1,14,13,3,1,12,10,11,2,13,9,3,1,7,4,12,6,10,4,14,0,1,11,2,2,9,3,1,3,8,9,4,4,11,14,5,3,6,0,9,3,6,1,4,15,7,14,13,4,11,3,8,15,9,15,4,6,2,9,11,13,14,12,9,12,12,9,1,12,15,14,7,15,11,11,3,11,8,8,4,11,12,2,4,7,4,3,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"4\", \"14\", \"8\", \"2\"], \"clip_start\": 130.0, \"clip_end\": 136.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q11_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,2,10,2,3,0,5,5,4,14,15,4,12,3,3,1,2,6,12,13,15,8,1,1,7,14,14,9,9,1,5,9,12,3,12,12,3,12,11,6,10,11,5,13,6,13,5,8,0,7,6,13,6,14,12,6,4,7,7,2,9,13,1,11,6,8,3,8,10,10,3,11,3,7,5,8,1,10,8,6,11,10,9,14,11,6,2,14,2,11,11,13,14,2,7,13,3,13,9,2,14,4,6,11,10,8,4,6,9,8,15,6,8,10,8,15,5,5,8,5,0,4,2,15,8,1,3,2,6,0,8,4,14,8,2,11,8,2,6,13,14,8,5,13,2,1,13,6,7,3,8,0,9,7,6,15,1,11,8,14,3,0,9,0,13,12,4,1,14,13,3,1,12,10,11,2,13,9,3,1,7,4,12,6,10,4,14,0,1,11,2,2,9,3,1,3,8,9,4,4,11,14,5,3,6,0,9,3,6,1,4,15,7,14,13,4,11,3,8,15,9,15,4,6,2,9,11,13,14,12,9,12,12,9,1,12,15,14,7,15,11,11,3,11,8,8,4,11,12,2,4,7,4,3,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"9\", \"2\", \"14\", \"4\", \"6\"], \"clip_start\": 98.0, \"clip_end\": 104.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q12_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,2,10,2,3,0,5,5,4,14,15,4,12,3,3,1,2,6,12,13,15,8,1,1,7,14,14,9,9,1,5,9,12,3,12,12,3,12,11,6,10,11,5,13,6,13,5,8,0,7,6,13,6,14,12,6,4,7,7,2,9,13,1,11,6,8,3,8,10,10,3,11,3,7,5,8,1,10,8,6,11,10,9,14,11,6,2,14,2,11,11,13,14,2,7,13,3,13,9,2,14,4,6,11,10,8,4,6,9,8,15,6,8,10,8,15,5,5,8,5,0,4,2,15,8,1,3,2,6,0,8,4,14,8,2,11,8,2,6,13,14,8,5,13,2,1,13,6,7,3,8,0,9,7,6,15,1,11,8,14,3,0,9,0,13,12,4,1,14,13,3,1,12,10,11,2,13,9,3,1,7,4,12,6,10,4,14,0,1,11,2,2,9,3,1,3,8,9,4,4,11,14,5,3,6,0,9,3,6,1,4,15,7,14,13,4,11,3,8,15,9,15,4,6,2,9,11,13,14,12,9,12,12,9,1,12,15,14,7,15,11,11,3,11,8,8,4,11,12,2,4,7,4,3,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"9\", \"1\", \"6\"], \"clip_start\": 101.0, \"clip_end\": 106.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q13_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,2,10,2,3,0,5,5,4,14,15,4,12,3,3,1,2,6,12,13,15,8,1,1,7,14,14,9,9,1,5,9,12,3,12,12,3,12,11,6,10,11,5,13,6,13,5,8,0,7,6,13,6,14,12,6,4,7,7,2,9,13,1,11,6,8,3,8,10,10,3,11,3,7,5,8,1,10,8,6,11,10,9,14,11,6,2,14,2,11,11,13,14,2,7,13,3,13,9,2,14,4,6,11,10,8,4,6,9,8,15,6,8,10,8,15,5,5,8,5,0,4,2,15,8,1,3,2,6,0,8,4,14,8,2,11,8,2,6,13,14,8,5,13,2,1,13,6,7,3,8,0,9,7,6,15,1,11,8,14,3,0,9,0,13,12,4,1,14,13,3,1,12,10,11,2,13,9,3,1,7,4,12,6,10,4,14,0,1,11,2,2,9,3,1,3,8,9,4,4,11,14,5,3,6,0,9,3,6,1,4,15,7,14,13,4,11,3,8,15,9,15,4,6,2,9,11,13,14,12,9,12,12,9,1,12,15,14,7,15,11,11,3,11,8,8,4,11,12,2,4,7,4,3,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"14\", \"2\", \"7\"], \"clip_start\": 91.0, \"clip_end\": 96.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q14_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,2,10,2,3,0,5,5,4,14,15,4,12,3,3,1,2,6,12,13,15,8,1,1,7,14,14,9,9,1,5,9,12,3,12,12,3,12,11,6,10,11,5,13,6,13,5,8,0,7,6,13,6,14,12,6,4,7,7,2,9,13,1,11,6,8,3,8,10,10,3,11,3,7,5,8,1,10,8,6,11,10,9,14,11,6,2,14,2,11,11,13,14,2,7,13,3,13,9,2,14,4,6,11,10,8,4,6,9,8,15,6,8,10,8,15,5,5,8,5,0,4,2,15,8,1,3,2,6,0,8,4,14,8,2,11,8,2,6,13,14,8,5,13,2,1,13,6,7,3,8,0,9,7,6,15,1,11,8,14,3,0,9,0,13,12,4,1,14,13,3,1,12,10,11,2,13,9,3,1,7,4,12,6,10,4,14,0,1,11,2,2,9,3,1,3,8,9,4,4,11,14,5,3,6,0,9,3,6,1,4,15,7,14,13,4,11,3,8,15,9,15,4,6,2,9,11,13,14,12,9,12,12,9,1,12,15,14,7,15,11,11,3,11,8,8,4,11,12,2,4,7,4,3,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"0\"], \"clip_start\": 107.0, \"clip_end\": 111.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q15_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,12,2,10,2,3,0,5,5,4,14,15,4,12,3,3,1,2,6,12,13,15,8,1,1,7,14,14,9,9,1,5,9,12,3,12,12,3,12,11,6,10,11,5,13,6,13,5,8,0,7,6,13,6,14,12,6,4,7,7,2,9,13,1,11,6,8,3,8,10,10,3,11,3,7,5,8,1,10,8,6,11,10,9,14,11,6,2,14,2,11,11,13,14,2,7,13,3,13,9,2,14,4,6,11,10,8,4,6,9,8,15,6,8,10,8,15,5,5,8,5,0,4,2,15,8,1,3,2,6,0,8,4,14,8,2,11,8,2,6,13,14,8,5,13,2,1,13,6,7,3,8,0,9,7,6,15,1,11,8,14,3,0,9,0,13,12,4,1,14,13,3,1,12,10,11,2,13,9,3,1,7,4,12,6,10,4,14,0,1,11,2,2,9,3,1,3,8,9,4,4,11,14,5,3,6,0,9,3,6,1,4,15,7,14,13,4,11,3,8,15,9,15,4,6,2,9,11,13,14,12,9,12,12,9,1,12,15,14,7,15,11,11,3,11,8,8,4,11,12,2,4,7,4,3,4", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"1\", \"0\", \"15\", \"4\"], \"clip_start\": 172.0, \"clip_end\": 178.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,0,11,9,0,13,8,2,6,15,14,9,5,4,0,10,5,10,2,10,10,1,6,3,9,6,10,10,9,15,2,13,14,0,15,14,13,13,0,15,4,5,7,14,2,8,7,8,11,9,14,0,14,4,4,15,13,11,3,13,0,4,10,13,7,7,13,1,10,1,3,13,1,3,15,5,9,3,12,14,12,9,6,6,15,2,5,2,8,13,1,10,10,4,5,14,2,10,5,9,14,3,10,3,7,12,11,11,0,7,8,6,12,5,7,7,8,12,1,13,3,13,1,3,6,15,12,7,11,15,7,2,6,5,10,1,6,14,5,14,12,4,9,13,0,3,8,8,5,15,15,0,7,1,0,0,4,7,5,15,6,0,11,12,11,9,4,6,3,12,13,10,0,1,0,15,4,11,0,5,4,3,6,6,11,3,13,14,15,11,5,6,13,7,7,12,7,15,7,9,13,14,15,3,6,4,8,1,14,14,10,7,14,0,14,5,4,7,11,5,4,6,10,0,4,13,1,4,11,2,15,4,7,5,4,9,3,15,11,6,15,7,12,14,15,10,5,5,5,5,7,11,2,2,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"6\", \"0\", \"11\"], \"clip_start\": 159.0, \"clip_end\": 164.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,0,11,9,0,13,8,2,6,15,14,9,5,4,0,10,5,10,2,10,10,1,6,3,9,6,10,10,9,15,2,13,14,0,15,14,13,13,0,15,4,5,7,14,2,8,7,8,11,9,14,0,14,4,4,15,13,11,3,13,0,4,10,13,7,7,13,1,10,1,3,13,1,3,15,5,9,3,12,14,12,9,6,6,15,2,5,2,8,13,1,10,10,4,5,14,2,10,5,9,14,3,10,3,7,12,11,11,0,7,8,6,12,5,7,7,8,12,1,13,3,13,1,3,6,15,12,7,11,15,7,2,6,5,10,1,6,14,5,14,12,4,9,13,0,3,8,8,5,15,15,0,7,1,0,0,4,7,5,15,6,0,11,12,11,9,4,6,3,12,13,10,0,1,0,15,4,11,0,5,4,3,6,6,11,3,13,14,15,11,5,6,13,7,7,12,7,15,7,9,13,14,15,3,6,4,8,1,14,14,10,7,14,0,14,5,4,7,11,5,4,6,10,0,4,13,1,4,11,2,15,4,7,5,4,9,3,15,11,6,15,7,12,14,15,10,5,5,5,5,7,11,2,2,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"9\", \"3\", \"15\"], \"clip_start\": 234.0, \"clip_end\": 239.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,0,11,9,0,13,8,2,6,15,14,9,5,4,0,10,5,10,2,10,10,1,6,3,9,6,10,10,9,15,2,13,14,0,15,14,13,13,0,15,4,5,7,14,2,8,7,8,11,9,14,0,14,4,4,15,13,11,3,13,0,4,10,13,7,7,13,1,10,1,3,13,1,3,15,5,9,3,12,14,12,9,6,6,15,2,5,2,8,13,1,10,10,4,5,14,2,10,5,9,14,3,10,3,7,12,11,11,0,7,8,6,12,5,7,7,8,12,1,13,3,13,1,3,6,15,12,7,11,15,7,2,6,5,10,1,6,14,5,14,12,4,9,13,0,3,8,8,5,15,15,0,7,1,0,0,4,7,5,15,6,0,11,12,11,9,4,6,3,12,13,10,0,1,0,15,4,11,0,5,4,3,6,6,11,3,13,14,15,11,5,6,13,7,7,12,7,15,7,9,13,14,15,3,6,4,8,1,14,14,10,7,14,0,14,5,4,7,11,5,4,6,10,0,4,13,1,4,11,2,15,4,7,5,4,9,3,15,11,6,15,7,12,14,15,10,5,5,5,5,7,11,2,2,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"13\", \"14\", \"0\"], \"clip_start\": 30.0, \"clip_end\": 35.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,0,11,9,0,13,8,2,6,15,14,9,5,4,0,10,5,10,2,10,10,1,6,3,9,6,10,10,9,15,2,13,14,0,15,14,13,13,0,15,4,5,7,14,2,8,7,8,11,9,14,0,14,4,4,15,13,11,3,13,0,4,10,13,7,7,13,1,10,1,3,13,1,3,15,5,9,3,12,14,12,9,6,6,15,2,5,2,8,13,1,10,10,4,5,14,2,10,5,9,14,3,10,3,7,12,11,11,0,7,8,6,12,5,7,7,8,12,1,13,3,13,1,3,6,15,12,7,11,15,7,2,6,5,10,1,6,14,5,14,12,4,9,13,0,3,8,8,5,15,15,0,7,1,0,0,4,7,5,15,6,0,11,12,11,9,4,6,3,12,13,10,0,1,0,15,4,11,0,5,4,3,6,6,11,3,13,14,15,11,5,6,13,7,7,12,7,15,7,9,13,14,15,3,6,4,8,1,14,14,10,7,14,0,14,5,4,7,11,5,4,6,10,0,4,13,1,4,11,2,15,4,7,5,4,9,3,15,11,6,15,7,12,14,15,10,5,5,5,5,7,11,2,2,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"13\"], \"clip_start\": 35.0, \"clip_end\": 38.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,0,11,9,0,13,8,2,6,15,14,9,5,4,0,10,5,10,2,10,10,1,6,3,9,6,10,10,9,15,2,13,14,0,15,14,13,13,0,15,4,5,7,14,2,8,7,8,11,9,14,0,14,4,4,15,13,11,3,13,0,4,10,13,7,7,13,1,10,1,3,13,1,3,15,5,9,3,12,14,12,9,6,6,15,2,5,2,8,13,1,10,10,4,5,14,2,10,5,9,14,3,10,3,7,12,11,11,0,7,8,6,12,5,7,7,8,12,1,13,3,13,1,3,6,15,12,7,11,15,7,2,6,5,10,1,6,14,5,14,12,4,9,13,0,3,8,8,5,15,15,0,7,1,0,0,4,7,5,15,6,0,11,12,11,9,4,6,3,12,13,10,0,1,0,15,4,11,0,5,4,3,6,6,11,3,13,14,15,11,5,6,13,7,7,12,7,15,7,9,13,14,15,3,6,4,8,1,14,14,10,7,14,0,14,5,4,7,11,5,4,6,10,0,4,13,1,4,11,2,15,4,7,5,4,9,3,15,11,6,15,7,12,14,15,10,5,5,5,5,7,11,2,2,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"6\", \"6\", \"11\", \"3\"], \"clip_start\": 181.0, \"clip_end\": 187.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,0,11,9,0,13,8,2,6,15,14,9,5,4,0,10,5,10,2,10,10,1,6,3,9,6,10,10,9,15,2,13,14,0,15,14,13,13,0,15,4,5,7,14,2,8,7,8,11,9,14,0,14,4,4,15,13,11,3,13,0,4,10,13,7,7,13,1,10,1,3,13,1,3,15,5,9,3,12,14,12,9,6,6,15,2,5,2,8,13,1,10,10,4,5,14,2,10,5,9,14,3,10,3,7,12,11,11,0,7,8,6,12,5,7,7,8,12,1,13,3,13,1,3,6,15,12,7,11,15,7,2,6,5,10,1,6,14,5,14,12,4,9,13,0,3,8,8,5,15,15,0,7,1,0,0,4,7,5,15,6,0,11,12,11,9,4,6,3,12,13,10,0,1,0,15,4,11,0,5,4,3,6,6,11,3,13,14,15,11,5,6,13,7,7,12,7,15,7,9,13,14,15,3,6,4,8,1,14,14,10,7,14,0,14,5,4,7,11,5,4,6,10,0,4,13,1,4,11,2,15,4,7,5,4,9,3,15,11,6,15,7,12,14,15,10,5,5,5,5,7,11,2,2,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 132.0, \"clip_end\": 135.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,0,11,9,0,13,8,2,6,15,14,9,5,4,0,10,5,10,2,10,10,1,6,3,9,6,10,10,9,15,2,13,14,0,15,14,13,13,0,15,4,5,7,14,2,8,7,8,11,9,14,0,14,4,4,15,13,11,3,13,0,4,10,13,7,7,13,1,10,1,3,13,1,3,15,5,9,3,12,14,12,9,6,6,15,2,5,2,8,13,1,10,10,4,5,14,2,10,5,9,14,3,10,3,7,12,11,11,0,7,8,6,12,5,7,7,8,12,1,13,3,13,1,3,6,15,12,7,11,15,7,2,6,5,10,1,6,14,5,14,12,4,9,13,0,3,8,8,5,15,15,0,7,1,0,0,4,7,5,15,6,0,11,12,11,9,4,6,3,12,13,10,0,1,0,15,4,11,0,5,4,3,6,6,11,3,13,14,15,11,5,6,13,7,7,12,7,15,7,9,13,14,15,3,6,4,8,1,14,14,10,7,14,0,14,5,4,7,11,5,4,6,10,0,4,13,1,4,11,2,15,4,7,5,4,9,3,15,11,6,15,7,12,14,15,10,5,5,5,5,7,11,2,2,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"10\", \"13\", \"7\", \"7\", \"13\"], \"clip_start\": 62.0, \"clip_end\": 68.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,0,11,9,0,13,8,2,6,15,14,9,5,4,0,10,5,10,2,10,10,1,6,3,9,6,10,10,9,15,2,13,14,0,15,14,13,13,0,15,4,5,7,14,2,8,7,8,11,9,14,0,14,4,4,15,13,11,3,13,0,4,10,13,7,7,13,1,10,1,3,13,1,3,15,5,9,3,12,14,12,9,6,6,15,2,5,2,8,13,1,10,10,4,5,14,2,10,5,9,14,3,10,3,7,12,11,11,0,7,8,6,12,5,7,7,8,12,1,13,3,13,1,3,6,15,12,7,11,15,7,2,6,5,10,1,6,14,5,14,12,4,9,13,0,3,8,8,5,15,15,0,7,1,0,0,4,7,5,15,6,0,11,12,11,9,4,6,3,12,13,10,0,1,0,15,4,11,0,5,4,3,6,6,11,3,13,14,15,11,5,6,13,7,7,12,7,15,7,9,13,14,15,3,6,4,8,1,14,14,10,7,14,0,14,5,4,7,11,5,4,6,10,0,4,13,1,4,11,2,15,4,7,5,4,9,3,15,11,6,15,7,12,14,15,10,5,5,5,5,7,11,2,2,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"15\", \"3\"], \"clip_start\": 201.0, \"clip_end\": 205.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,0,11,9,0,13,8,2,6,15,14,9,5,4,0,10,5,10,2,10,10,1,6,3,9,6,10,10,9,15,2,13,14,0,15,14,13,13,0,15,4,5,7,14,2,8,7,8,11,9,14,0,14,4,4,15,13,11,3,13,0,4,10,13,7,7,13,1,10,1,3,13,1,3,15,5,9,3,12,14,12,9,6,6,15,2,5,2,8,13,1,10,10,4,5,14,2,10,5,9,14,3,10,3,7,12,11,11,0,7,8,6,12,5,7,7,8,12,1,13,3,13,1,3,6,15,12,7,11,15,7,2,6,5,10,1,6,14,5,14,12,4,9,13,0,3,8,8,5,15,15,0,7,1,0,0,4,7,5,15,6,0,11,12,11,9,4,6,3,12,13,10,0,1,0,15,4,11,0,5,4,3,6,6,11,3,13,14,15,11,5,6,13,7,7,12,7,15,7,9,13,14,15,3,6,4,8,1,14,14,10,7,14,0,14,5,4,7,11,5,4,6,10,0,4,13,1,4,11,2,15,4,7,5,4,9,3,15,11,6,15,7,12,14,15,10,5,5,5,5,7,11,2,2,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"13\", \"0\"], \"clip_start\": 58.0, \"clip_end\": 62.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,0,11,9,0,13,8,2,6,15,14,9,5,4,0,10,5,10,2,10,10,1,6,3,9,6,10,10,9,15,2,13,14,0,15,14,13,13,0,15,4,5,7,14,2,8,7,8,11,9,14,0,14,4,4,15,13,11,3,13,0,4,10,13,7,7,13,1,10,1,3,13,1,3,15,5,9,3,12,14,12,9,6,6,15,2,5,2,8,13,1,10,10,4,5,14,2,10,5,9,14,3,10,3,7,12,11,11,0,7,8,6,12,5,7,7,8,12,1,13,3,13,1,3,6,15,12,7,11,15,7,2,6,5,10,1,6,14,5,14,12,4,9,13,0,3,8,8,5,15,15,0,7,1,0,0,4,7,5,15,6,0,11,12,11,9,4,6,3,12,13,10,0,1,0,15,4,11,0,5,4,3,6,6,11,3,13,14,15,11,5,6,13,7,7,12,7,15,7,9,13,14,15,3,6,4,8,1,14,14,10,7,14,0,14,5,4,7,11,5,4,6,10,0,4,13,1,4,11,2,15,4,7,5,4,9,3,15,11,6,15,7,12,14,15,10,5,5,5,5,7,11,2,2,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"6\", \"15\"], \"clip_start\": 238.0, \"clip_end\": 242.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,0,11,9,0,13,8,2,6,15,14,9,5,4,0,10,5,10,2,10,10,1,6,3,9,6,10,10,9,15,2,13,14,0,15,14,13,13,0,15,4,5,7,14,2,8,7,8,11,9,14,0,14,4,4,15,13,11,3,13,0,4,10,13,7,7,13,1,10,1,3,13,1,3,15,5,9,3,12,14,12,9,6,6,15,2,5,2,8,13,1,10,10,4,5,14,2,10,5,9,14,3,10,3,7,12,11,11,0,7,8,6,12,5,7,7,8,12,1,13,3,13,1,3,6,15,12,7,11,15,7,2,6,5,10,1,6,14,5,14,12,4,9,13,0,3,8,8,5,15,15,0,7,1,0,0,4,7,5,15,6,0,11,12,11,9,4,6,3,12,13,10,0,1,0,15,4,11,0,5,4,3,6,6,11,3,13,14,15,11,5,6,13,7,7,12,7,15,7,9,13,14,15,3,6,4,8,1,14,14,10,7,14,0,14,5,4,7,11,5,4,6,10,0,4,13,1,4,11,2,15,4,7,5,4,9,3,15,11,6,15,7,12,14,15,10,5,5,5,5,7,11,2,2,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 16.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,0,11,9,0,13,8,2,6,15,14,9,5,4,0,10,5,10,2,10,10,1,6,3,9,6,10,10,9,15,2,13,14,0,15,14,13,13,0,15,4,5,7,14,2,8,7,8,11,9,14,0,14,4,4,15,13,11,3,13,0,4,10,13,7,7,13,1,10,1,3,13,1,3,15,5,9,3,12,14,12,9,6,6,15,2,5,2,8,13,1,10,10,4,5,14,2,10,5,9,14,3,10,3,7,12,11,11,0,7,8,6,12,5,7,7,8,12,1,13,3,13,1,3,6,15,12,7,11,15,7,2,6,5,10,1,6,14,5,14,12,4,9,13,0,3,8,8,5,15,15,0,7,1,0,0,4,7,5,15,6,0,11,12,11,9,4,6,3,12,13,10,0,1,0,15,4,11,0,5,4,3,6,6,11,3,13,14,15,11,5,6,13,7,7,12,7,15,7,9,13,14,15,3,6,4,8,1,14,14,10,7,14,0,14,5,4,7,11,5,4,6,10,0,4,13,1,4,11,2,15,4,7,5,4,9,3,15,11,6,15,7,12,14,15,10,5,5,5,5,7,11,2,2,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"0\", \"10\"], \"clip_start\": 13.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,0,11,9,0,13,8,2,6,15,14,9,5,4,0,10,5,10,2,10,10,1,6,3,9,6,10,10,9,15,2,13,14,0,15,14,13,13,0,15,4,5,7,14,2,8,7,8,11,9,14,0,14,4,4,15,13,11,3,13,0,4,10,13,7,7,13,1,10,1,3,13,1,3,15,5,9,3,12,14,12,9,6,6,15,2,5,2,8,13,1,10,10,4,5,14,2,10,5,9,14,3,10,3,7,12,11,11,0,7,8,6,12,5,7,7,8,12,1,13,3,13,1,3,6,15,12,7,11,15,7,2,6,5,10,1,6,14,5,14,12,4,9,13,0,3,8,8,5,15,15,0,7,1,0,0,4,7,5,15,6,0,11,12,11,9,4,6,3,12,13,10,0,1,0,15,4,11,0,5,4,3,6,6,11,3,13,14,15,11,5,6,13,7,7,12,7,15,7,9,13,14,15,3,6,4,8,1,14,14,10,7,14,0,14,5,4,7,11,5,4,6,10,0,4,13,1,4,11,2,15,4,7,5,4,9,3,15,11,6,15,7,12,14,15,10,5,5,5,5,7,11,2,2,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 251.0, \"clip_end\": 254.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,0,11,9,0,13,8,2,6,15,14,9,5,4,0,10,5,10,2,10,10,1,6,3,9,6,10,10,9,15,2,13,14,0,15,14,13,13,0,15,4,5,7,14,2,8,7,8,11,9,14,0,14,4,4,15,13,11,3,13,0,4,10,13,7,7,13,1,10,1,3,13,1,3,15,5,9,3,12,14,12,9,6,6,15,2,5,2,8,13,1,10,10,4,5,14,2,10,5,9,14,3,10,3,7,12,11,11,0,7,8,6,12,5,7,7,8,12,1,13,3,13,1,3,6,15,12,7,11,15,7,2,6,5,10,1,6,14,5,14,12,4,9,13,0,3,8,8,5,15,15,0,7,1,0,0,4,7,5,15,6,0,11,12,11,9,4,6,3,12,13,10,0,1,0,15,4,11,0,5,4,3,6,6,11,3,13,14,15,11,5,6,13,7,7,12,7,15,7,9,13,14,15,3,6,4,8,1,14,14,10,7,14,0,14,5,4,7,11,5,4,6,10,0,4,13,1,4,11,2,15,4,7,5,4,9,3,15,11,6,15,7,12,14,15,10,5,5,5,5,7,11,2,2,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"10\", \"5\", \"5\"], \"clip_start\": 245.0, \"clip_end\": 249.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,0,11,9,0,13,8,2,6,15,14,9,5,4,0,10,5,10,2,10,10,1,6,3,9,6,10,10,9,15,2,13,14,0,15,14,13,13,0,15,4,5,7,14,2,8,7,8,11,9,14,0,14,4,4,15,13,11,3,13,0,4,10,13,7,7,13,1,10,1,3,13,1,3,15,5,9,3,12,14,12,9,6,6,15,2,5,2,8,13,1,10,10,4,5,14,2,10,5,9,14,3,10,3,7,12,11,11,0,7,8,6,12,5,7,7,8,12,1,13,3,13,1,3,6,15,12,7,11,15,7,2,6,5,10,1,6,14,5,14,12,4,9,13,0,3,8,8,5,15,15,0,7,1,0,0,4,7,5,15,6,0,11,12,11,9,4,6,3,12,13,10,0,1,0,15,4,11,0,5,4,3,6,6,11,3,13,14,15,11,5,6,13,7,7,12,7,15,7,9,13,14,15,3,6,4,8,1,14,14,10,7,14,0,14,5,4,7,11,5,4,6,10,0,4,13,1,4,11,2,15,4,7,5,4,9,3,15,11,6,15,7,12,14,15,10,5,5,5,5,7,11,2,2,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 79.0, \"clip_end\": 85.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,7,0,11,9,0,13,8,2,6,15,14,9,5,4,0,10,5,10,2,10,10,1,6,3,9,6,10,10,9,15,2,13,14,0,15,14,13,13,0,15,4,5,7,14,2,8,7,8,11,9,14,0,14,4,4,15,13,11,3,13,0,4,10,13,7,7,13,1,10,1,3,13,1,3,15,5,9,3,12,14,12,9,6,6,15,2,5,2,8,13,1,10,10,4,5,14,2,10,5,9,14,3,10,3,7,12,11,11,0,7,8,6,12,5,7,7,8,12,1,13,3,13,1,3,6,15,12,7,11,15,7,2,6,5,10,1,6,14,5,14,12,4,9,13,0,3,8,8,5,15,15,0,7,1,0,0,4,7,5,15,6,0,11,12,11,9,4,6,3,12,13,10,0,1,0,15,4,11,0,5,4,3,6,6,11,3,13,14,15,11,5,6,13,7,7,12,7,15,7,9,13,14,15,3,6,4,8,1,14,14,10,7,14,0,14,5,4,7,11,5,4,6,10,0,4,13,1,4,11,2,15,4,7,5,4,9,3,15,11,6,15,7,12,14,15,10,5,5,5,5,7,11,2,2,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"15\", \"4\", \"15\", \"3\"], \"clip_start\": 109.0, \"clip_end\": 115.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,8,2,8,6,10,12,6,0,12,8,3,0,12,14,12,8,1,12,9,3,0,0,13,7,6,12,0,6,11,7,7,5,12,14,15,9,15,8,3,0,12,15,6,10,4,5,14,0,15,7,14,12,3,7,1,13,13,10,12,14,6,15,15,9,14,3,4,0,2,11,0,6,4,11,13,6,12,5,2,14,3,10,11,7,2,13,1,5,8,12,11,15,14,2,5,14,6,10,1,14,9,1,6,14,9,3,0,4,4,15,4,15,3,4,2,10,8,5,6,10,14,1,9,8,0,13,0,6,0,4,3,3,3,5,13,12,5,6,15,5,8,6,9,3,15,12,10,13,12,1,11,14,11,7,13,12,9,14,13,3,5,10,12,9,4,6,5,4,5,10,10,15,3,11,11,12,14,13,1,14,8,1,1,2,4,15,9,3,2,3,2,4,1,2,11,9,5,0,2,9,2,6,10,14,10,8,6,6,7,13,6,13,6,4,9,9,12,15,0,8,7,5,4,0,13,10,10,2,12,3,2,15,1,10,8,7,15,12,7,8,8,11,9,10,15,0,12,14,8,12,7,15,11,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"12\", \"0\"], \"clip_start\": 25.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,8,2,8,6,10,12,6,0,12,8,3,0,12,14,12,8,1,12,9,3,0,0,13,7,6,12,0,6,11,7,7,5,12,14,15,9,15,8,3,0,12,15,6,10,4,5,14,0,15,7,14,12,3,7,1,13,13,10,12,14,6,15,15,9,14,3,4,0,2,11,0,6,4,11,13,6,12,5,2,14,3,10,11,7,2,13,1,5,8,12,11,15,14,2,5,14,6,10,1,14,9,1,6,14,9,3,0,4,4,15,4,15,3,4,2,10,8,5,6,10,14,1,9,8,0,13,0,6,0,4,3,3,3,5,13,12,5,6,15,5,8,6,9,3,15,12,10,13,12,1,11,14,11,7,13,12,9,14,13,3,5,10,12,9,4,6,5,4,5,10,10,15,3,11,11,12,14,13,1,14,8,1,1,2,4,15,9,3,2,3,2,4,1,2,11,9,5,0,2,9,2,6,10,14,10,8,6,6,7,13,6,13,6,4,9,9,12,15,0,8,7,5,4,0,13,10,10,2,12,3,2,15,1,10,8,7,15,12,7,8,8,11,9,10,15,0,12,14,8,12,7,15,11,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"2\", \"5\", \"14\", \"6\"], \"clip_start\": 94.0, \"clip_end\": 99.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,8,2,8,6,10,12,6,0,12,8,3,0,12,14,12,8,1,12,9,3,0,0,13,7,6,12,0,6,11,7,7,5,12,14,15,9,15,8,3,0,12,15,6,10,4,5,14,0,15,7,14,12,3,7,1,13,13,10,12,14,6,15,15,9,14,3,4,0,2,11,0,6,4,11,13,6,12,5,2,14,3,10,11,7,2,13,1,5,8,12,11,15,14,2,5,14,6,10,1,14,9,1,6,14,9,3,0,4,4,15,4,15,3,4,2,10,8,5,6,10,14,1,9,8,0,13,0,6,0,4,3,3,3,5,13,12,5,6,15,5,8,6,9,3,15,12,10,13,12,1,11,14,11,7,13,12,9,14,13,3,5,10,12,9,4,6,5,4,5,10,10,15,3,11,11,12,14,13,1,14,8,1,1,2,4,15,9,3,2,3,2,4,1,2,11,9,5,0,2,9,2,6,10,14,10,8,6,6,7,13,6,13,6,4,9,9,12,15,0,8,7,5,4,0,13,10,10,2,12,3,2,15,1,10,8,7,15,12,7,8,8,11,9,10,15,0,12,14,8,12,7,15,11,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 215.0, \"clip_end\": 220.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,8,2,8,6,10,12,6,0,12,8,3,0,12,14,12,8,1,12,9,3,0,0,13,7,6,12,0,6,11,7,7,5,12,14,15,9,15,8,3,0,12,15,6,10,4,5,14,0,15,7,14,12,3,7,1,13,13,10,12,14,6,15,15,9,14,3,4,0,2,11,0,6,4,11,13,6,12,5,2,14,3,10,11,7,2,13,1,5,8,12,11,15,14,2,5,14,6,10,1,14,9,1,6,14,9,3,0,4,4,15,4,15,3,4,2,10,8,5,6,10,14,1,9,8,0,13,0,6,0,4,3,3,3,5,13,12,5,6,15,5,8,6,9,3,15,12,10,13,12,1,11,14,11,7,13,12,9,14,13,3,5,10,12,9,4,6,5,4,5,10,10,15,3,11,11,12,14,13,1,14,8,1,1,2,4,15,9,3,2,3,2,4,1,2,11,9,5,0,2,9,2,6,10,14,10,8,6,6,7,13,6,13,6,4,9,9,12,15,0,8,7,5,4,0,13,10,10,2,12,3,2,15,1,10,8,7,15,12,7,8,8,11,9,10,15,0,12,14,8,12,7,15,11,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 207.0, \"clip_end\": 210.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,8,2,8,6,10,12,6,0,12,8,3,0,12,14,12,8,1,12,9,3,0,0,13,7,6,12,0,6,11,7,7,5,12,14,15,9,15,8,3,0,12,15,6,10,4,5,14,0,15,7,14,12,3,7,1,13,13,10,12,14,6,15,15,9,14,3,4,0,2,11,0,6,4,11,13,6,12,5,2,14,3,10,11,7,2,13,1,5,8,12,11,15,14,2,5,14,6,10,1,14,9,1,6,14,9,3,0,4,4,15,4,15,3,4,2,10,8,5,6,10,14,1,9,8,0,13,0,6,0,4,3,3,3,5,13,12,5,6,15,5,8,6,9,3,15,12,10,13,12,1,11,14,11,7,13,12,9,14,13,3,5,10,12,9,4,6,5,4,5,10,10,15,3,11,11,12,14,13,1,14,8,1,1,2,4,15,9,3,2,3,2,4,1,2,11,9,5,0,2,9,2,6,10,14,10,8,6,6,7,13,6,13,6,4,9,9,12,15,0,8,7,5,4,0,13,10,10,2,12,3,2,15,1,10,8,7,15,12,7,8,8,11,9,10,15,0,12,14,8,12,7,15,11,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"10\", \"15\", \"3\", \"11\", \"11\"], \"clip_start\": 171.0, \"clip_end\": 177.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,8,2,8,6,10,12,6,0,12,8,3,0,12,14,12,8,1,12,9,3,0,0,13,7,6,12,0,6,11,7,7,5,12,14,15,9,15,8,3,0,12,15,6,10,4,5,14,0,15,7,14,12,3,7,1,13,13,10,12,14,6,15,15,9,14,3,4,0,2,11,0,6,4,11,13,6,12,5,2,14,3,10,11,7,2,13,1,5,8,12,11,15,14,2,5,14,6,10,1,14,9,1,6,14,9,3,0,4,4,15,4,15,3,4,2,10,8,5,6,10,14,1,9,8,0,13,0,6,0,4,3,3,3,5,13,12,5,6,15,5,8,6,9,3,15,12,10,13,12,1,11,14,11,7,13,12,9,14,13,3,5,10,12,9,4,6,5,4,5,10,10,15,3,11,11,12,14,13,1,14,8,1,1,2,4,15,9,3,2,3,2,4,1,2,11,9,5,0,2,9,2,6,10,14,10,8,6,6,7,13,6,13,6,4,9,9,12,15,0,8,7,5,4,0,13,10,10,2,12,3,2,15,1,10,8,7,15,12,7,8,8,11,9,10,15,0,12,14,8,12,7,15,11,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"4\", \"5\"], \"clip_start\": 167.0, \"clip_end\": 171.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,8,2,8,6,10,12,6,0,12,8,3,0,12,14,12,8,1,12,9,3,0,0,13,7,6,12,0,6,11,7,7,5,12,14,15,9,15,8,3,0,12,15,6,10,4,5,14,0,15,7,14,12,3,7,1,13,13,10,12,14,6,15,15,9,14,3,4,0,2,11,0,6,4,11,13,6,12,5,2,14,3,10,11,7,2,13,1,5,8,12,11,15,14,2,5,14,6,10,1,14,9,1,6,14,9,3,0,4,4,15,4,15,3,4,2,10,8,5,6,10,14,1,9,8,0,13,0,6,0,4,3,3,3,5,13,12,5,6,15,5,8,6,9,3,15,12,10,13,12,1,11,14,11,7,13,12,9,14,13,3,5,10,12,9,4,6,5,4,5,10,10,15,3,11,11,12,14,13,1,14,8,1,1,2,4,15,9,3,2,3,2,4,1,2,11,9,5,0,2,9,2,6,10,14,10,8,6,6,7,13,6,13,6,4,9,9,12,15,0,8,7,5,4,0,13,10,10,2,12,3,2,15,1,10,8,7,15,12,7,8,8,11,9,10,15,0,12,14,8,12,7,15,11,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"2\", \"4\", \"1\", \"2\"], \"clip_start\": 190.0, \"clip_end\": 196.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,8,2,8,6,10,12,6,0,12,8,3,0,12,14,12,8,1,12,9,3,0,0,13,7,6,12,0,6,11,7,7,5,12,14,15,9,15,8,3,0,12,15,6,10,4,5,14,0,15,7,14,12,3,7,1,13,13,10,12,14,6,15,15,9,14,3,4,0,2,11,0,6,4,11,13,6,12,5,2,14,3,10,11,7,2,13,1,5,8,12,11,15,14,2,5,14,6,10,1,14,9,1,6,14,9,3,0,4,4,15,4,15,3,4,2,10,8,5,6,10,14,1,9,8,0,13,0,6,0,4,3,3,3,5,13,12,5,6,15,5,8,6,9,3,15,12,10,13,12,1,11,14,11,7,13,12,9,14,13,3,5,10,12,9,4,6,5,4,5,10,10,15,3,11,11,12,14,13,1,14,8,1,1,2,4,15,9,3,2,3,2,4,1,2,11,9,5,0,2,9,2,6,10,14,10,8,6,6,7,13,6,13,6,4,9,9,12,15,0,8,7,5,4,0,13,10,10,2,12,3,2,15,1,10,8,7,15,12,7,8,8,11,9,10,15,0,12,14,8,12,7,15,11,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"14\", \"8\", \"1\", \"1\"], \"clip_start\": 179.0, \"clip_end\": 185.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,8,2,8,6,10,12,6,0,12,8,3,0,12,14,12,8,1,12,9,3,0,0,13,7,6,12,0,6,11,7,7,5,12,14,15,9,15,8,3,0,12,15,6,10,4,5,14,0,15,7,14,12,3,7,1,13,13,10,12,14,6,15,15,9,14,3,4,0,2,11,0,6,4,11,13,6,12,5,2,14,3,10,11,7,2,13,1,5,8,12,11,15,14,2,5,14,6,10,1,14,9,1,6,14,9,3,0,4,4,15,4,15,3,4,2,10,8,5,6,10,14,1,9,8,0,13,0,6,0,4,3,3,3,5,13,12,5,6,15,5,8,6,9,3,15,12,10,13,12,1,11,14,11,7,13,12,9,14,13,3,5,10,12,9,4,6,5,4,5,10,10,15,3,11,11,12,14,13,1,14,8,1,1,2,4,15,9,3,2,3,2,4,1,2,11,9,5,0,2,9,2,6,10,14,10,8,6,6,7,13,6,13,6,4,9,9,12,15,0,8,7,5,4,0,13,10,10,2,12,3,2,15,1,10,8,7,15,12,7,8,8,11,9,10,15,0,12,14,8,12,7,15,11,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 118.0, \"clip_end\": 122.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,8,2,8,6,10,12,6,0,12,8,3,0,12,14,12,8,1,12,9,3,0,0,13,7,6,12,0,6,11,7,7,5,12,14,15,9,15,8,3,0,12,15,6,10,4,5,14,0,15,7,14,12,3,7,1,13,13,10,12,14,6,15,15,9,14,3,4,0,2,11,0,6,4,11,13,6,12,5,2,14,3,10,11,7,2,13,1,5,8,12,11,15,14,2,5,14,6,10,1,14,9,1,6,14,9,3,0,4,4,15,4,15,3,4,2,10,8,5,6,10,14,1,9,8,0,13,0,6,0,4,3,3,3,5,13,12,5,6,15,5,8,6,9,3,15,12,10,13,12,1,11,14,11,7,13,12,9,14,13,3,5,10,12,9,4,6,5,4,5,10,10,15,3,11,11,12,14,13,1,14,8,1,1,2,4,15,9,3,2,3,2,4,1,2,11,9,5,0,2,9,2,6,10,14,10,8,6,6,7,13,6,13,6,4,9,9,12,15,0,8,7,5,4,0,13,10,10,2,12,3,2,15,1,10,8,7,15,12,7,8,8,11,9,10,15,0,12,14,8,12,7,15,11,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 209.0, \"clip_end\": 213.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,8,2,8,6,10,12,6,0,12,8,3,0,12,14,12,8,1,12,9,3,0,0,13,7,6,12,0,6,11,7,7,5,12,14,15,9,15,8,3,0,12,15,6,10,4,5,14,0,15,7,14,12,3,7,1,13,13,10,12,14,6,15,15,9,14,3,4,0,2,11,0,6,4,11,13,6,12,5,2,14,3,10,11,7,2,13,1,5,8,12,11,15,14,2,5,14,6,10,1,14,9,1,6,14,9,3,0,4,4,15,4,15,3,4,2,10,8,5,6,10,14,1,9,8,0,13,0,6,0,4,3,3,3,5,13,12,5,6,15,5,8,6,9,3,15,12,10,13,12,1,11,14,11,7,13,12,9,14,13,3,5,10,12,9,4,6,5,4,5,10,10,15,3,11,11,12,14,13,1,14,8,1,1,2,4,15,9,3,2,3,2,4,1,2,11,9,5,0,2,9,2,6,10,14,10,8,6,6,7,13,6,13,6,4,9,9,12,15,0,8,7,5,4,0,13,10,10,2,12,3,2,15,1,10,8,7,15,12,7,8,8,11,9,10,15,0,12,14,8,12,7,15,11,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"5\", \"8\", \"6\", \"9\"], \"clip_start\": 139.0, \"clip_end\": 145.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,8,2,8,6,10,12,6,0,12,8,3,0,12,14,12,8,1,12,9,3,0,0,13,7,6,12,0,6,11,7,7,5,12,14,15,9,15,8,3,0,12,15,6,10,4,5,14,0,15,7,14,12,3,7,1,13,13,10,12,14,6,15,15,9,14,3,4,0,2,11,0,6,4,11,13,6,12,5,2,14,3,10,11,7,2,13,1,5,8,12,11,15,14,2,5,14,6,10,1,14,9,1,6,14,9,3,0,4,4,15,4,15,3,4,2,10,8,5,6,10,14,1,9,8,0,13,0,6,0,4,3,3,3,5,13,12,5,6,15,5,8,6,9,3,15,12,10,13,12,1,11,14,11,7,13,12,9,14,13,3,5,10,12,9,4,6,5,4,5,10,10,15,3,11,11,12,14,13,1,14,8,1,1,2,4,15,9,3,2,3,2,4,1,2,11,9,5,0,2,9,2,6,10,14,10,8,6,6,7,13,6,13,6,4,9,9,12,15,0,8,7,5,4,0,13,10,10,2,12,3,2,15,1,10,8,7,15,12,7,8,8,11,9,10,15,0,12,14,8,12,7,15,11,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"12\", \"14\"], \"clip_start\": 32.0, \"clip_end\": 36.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,8,2,8,6,10,12,6,0,12,8,3,0,12,14,12,8,1,12,9,3,0,0,13,7,6,12,0,6,11,7,7,5,12,14,15,9,15,8,3,0,12,15,6,10,4,5,14,0,15,7,14,12,3,7,1,13,13,10,12,14,6,15,15,9,14,3,4,0,2,11,0,6,4,11,13,6,12,5,2,14,3,10,11,7,2,13,1,5,8,12,11,15,14,2,5,14,6,10,1,14,9,1,6,14,9,3,0,4,4,15,4,15,3,4,2,10,8,5,6,10,14,1,9,8,0,13,0,6,0,4,3,3,3,5,13,12,5,6,15,5,8,6,9,3,15,12,10,13,12,1,11,14,11,7,13,12,9,14,13,3,5,10,12,9,4,6,5,4,5,10,10,15,3,11,11,12,14,13,1,14,8,1,1,2,4,15,9,3,2,3,2,4,1,2,11,9,5,0,2,9,2,6,10,14,10,8,6,6,7,13,6,13,6,4,9,9,12,15,0,8,7,5,4,0,13,10,10,2,12,3,2,15,1,10,8,7,15,12,7,8,8,11,9,10,15,0,12,14,8,12,7,15,11,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"3\", \"10\"], \"clip_start\": 80.0, \"clip_end\": 84.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,8,2,8,6,10,12,6,0,12,8,3,0,12,14,12,8,1,12,9,3,0,0,13,7,6,12,0,6,11,7,7,5,12,14,15,9,15,8,3,0,12,15,6,10,4,5,14,0,15,7,14,12,3,7,1,13,13,10,12,14,6,15,15,9,14,3,4,0,2,11,0,6,4,11,13,6,12,5,2,14,3,10,11,7,2,13,1,5,8,12,11,15,14,2,5,14,6,10,1,14,9,1,6,14,9,3,0,4,4,15,4,15,3,4,2,10,8,5,6,10,14,1,9,8,0,13,0,6,0,4,3,3,3,5,13,12,5,6,15,5,8,6,9,3,15,12,10,13,12,1,11,14,11,7,13,12,9,14,13,3,5,10,12,9,4,6,5,4,5,10,10,15,3,11,11,12,14,13,1,14,8,1,1,2,4,15,9,3,2,3,2,4,1,2,11,9,5,0,2,9,2,6,10,14,10,8,6,6,7,13,6,13,6,4,9,9,12,15,0,8,7,5,4,0,13,10,10,2,12,3,2,15,1,10,8,7,15,12,7,8,8,11,9,10,15,0,12,14,8,12,7,15,11,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"5\", \"14\", \"0\", \"15\"], \"clip_start\": 45.0, \"clip_end\": 51.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,8,2,8,6,10,12,6,0,12,8,3,0,12,14,12,8,1,12,9,3,0,0,13,7,6,12,0,6,11,7,7,5,12,14,15,9,15,8,3,0,12,15,6,10,4,5,14,0,15,7,14,12,3,7,1,13,13,10,12,14,6,15,15,9,14,3,4,0,2,11,0,6,4,11,13,6,12,5,2,14,3,10,11,7,2,13,1,5,8,12,11,15,14,2,5,14,6,10,1,14,9,1,6,14,9,3,0,4,4,15,4,15,3,4,2,10,8,5,6,10,14,1,9,8,0,13,0,6,0,4,3,3,3,5,13,12,5,6,15,5,8,6,9,3,15,12,10,13,12,1,11,14,11,7,13,12,9,14,13,3,5,10,12,9,4,6,5,4,5,10,10,15,3,11,11,12,14,13,1,14,8,1,1,2,4,15,9,3,2,3,2,4,1,2,11,9,5,0,2,9,2,6,10,14,10,8,6,6,7,13,6,13,6,4,9,9,12,15,0,8,7,5,4,0,13,10,10,2,12,3,2,15,1,10,8,7,15,12,7,8,8,11,9,10,15,0,12,14,8,12,7,15,11,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"3\", \"3\", \"5\", \"13\"], \"clip_start\": 131.0, \"clip_end\": 137.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,1,8,2,8,6,10,12,6,0,12,8,3,0,12,14,12,8,1,12,9,3,0,0,13,7,6,12,0,6,11,7,7,5,12,14,15,9,15,8,3,0,12,15,6,10,4,5,14,0,15,7,14,12,3,7,1,13,13,10,12,14,6,15,15,9,14,3,4,0,2,11,0,6,4,11,13,6,12,5,2,14,3,10,11,7,2,13,1,5,8,12,11,15,14,2,5,14,6,10,1,14,9,1,6,14,9,3,0,4,4,15,4,15,3,4,2,10,8,5,6,10,14,1,9,8,0,13,0,6,0,4,3,3,3,5,13,12,5,6,15,5,8,6,9,3,15,12,10,13,12,1,11,14,11,7,13,12,9,14,13,3,5,10,12,9,4,6,5,4,5,10,10,15,3,11,11,12,14,13,1,14,8,1,1,2,4,15,9,3,2,3,2,4,1,2,11,9,5,0,2,9,2,6,10,14,10,8,6,6,7,13,6,13,6,4,9,9,12,15,0,8,7,5,4,0,13,10,10,2,12,3,2,15,1,10,8,7,15,12,7,8,8,11,9,10,15,0,12,14,8,12,7,15,11,8", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"2\", \"15\", \"3\", \"7\"], \"clip_start\": 204.0, \"clip_end\": 210.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,8,3,3,4,11,13,1,7,12,4,12,7,9,12,8,12,3,1,5,5,12,15,6,10,7,3,9,0,11,15,2,15,3,7,12,9,4,12,14,6,10,1,10,2,13,9,9,8,15,15,13,9,9,2,1,4,4,13,9,2,9,13,14,4,3,11,5,2,2,4,10,8,14,5,9,13,13,12,13,3,1,6,8,9,7,10,2,6,12,2,3,7,9,15,9,7,2,7,9,6,6,11,15,0,13,10,14,9,12,8,5,9,12,14,13,8,7,12,11,12,3,4,11,1,7,6,7,2,4,5,8,0,3,11,14,0,2,13,12,10,12,14,4,7,8,4,13,2,10,14,8,2,8,5,3,8,0,14,7,10,12,0,9,6,15,1,6,11,12,11,13,10,8,8,2,2,14,3,11,5,8,8,12,15,0,0,5,4,4,14,0,0,5,15,8,4,13,4,14,0,1,12,3,11,2,15,3,7,0,0,2,8,12,9,10,12,6,6,7,5,5,8,13,2,1,0,12,6,9,1,8,7,0,3,9,15,5,10,9,1,6,9,12,7,5,0,1,1,12,14,6,0,12,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"6\", \"7\"], \"clip_start\": 125.0, \"clip_end\": 129.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,8,3,3,4,11,13,1,7,12,4,12,7,9,12,8,12,3,1,5,5,12,15,6,10,7,3,9,0,11,15,2,15,3,7,12,9,4,12,14,6,10,1,10,2,13,9,9,8,15,15,13,9,9,2,1,4,4,13,9,2,9,13,14,4,3,11,5,2,2,4,10,8,14,5,9,13,13,12,13,3,1,6,8,9,7,10,2,6,12,2,3,7,9,15,9,7,2,7,9,6,6,11,15,0,13,10,14,9,12,8,5,9,12,14,13,8,7,12,11,12,3,4,11,1,7,6,7,2,4,5,8,0,3,11,14,0,2,13,12,10,12,14,4,7,8,4,13,2,10,14,8,2,8,5,3,8,0,14,7,10,12,0,9,6,15,1,6,11,12,11,13,10,8,8,2,2,14,3,11,5,8,8,12,15,0,0,5,4,4,14,0,0,5,15,8,4,13,4,14,0,1,12,3,11,2,15,3,7,0,0,2,8,12,9,10,12,6,6,7,5,5,8,13,2,1,0,12,6,9,1,8,7,0,3,9,15,5,10,9,1,6,9,12,7,5,0,1,1,12,14,6,0,12,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"11\", \"15\", \"2\", \"15\", \"3\"], \"clip_start\": 29.0, \"clip_end\": 35.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,8,3,3,4,11,13,1,7,12,4,12,7,9,12,8,12,3,1,5,5,12,15,6,10,7,3,9,0,11,15,2,15,3,7,12,9,4,12,14,6,10,1,10,2,13,9,9,8,15,15,13,9,9,2,1,4,4,13,9,2,9,13,14,4,3,11,5,2,2,4,10,8,14,5,9,13,13,12,13,3,1,6,8,9,7,10,2,6,12,2,3,7,9,15,9,7,2,7,9,6,6,11,15,0,13,10,14,9,12,8,5,9,12,14,13,8,7,12,11,12,3,4,11,1,7,6,7,2,4,5,8,0,3,11,14,0,2,13,12,10,12,14,4,7,8,4,13,2,10,14,8,2,8,5,3,8,0,14,7,10,12,0,9,6,15,1,6,11,12,11,13,10,8,8,2,2,14,3,11,5,8,8,12,15,0,0,5,4,4,14,0,0,5,15,8,4,13,4,14,0,1,12,3,11,2,15,3,7,0,0,2,8,12,9,10,12,6,6,7,5,5,8,13,2,1,0,12,6,9,1,8,7,0,3,9,15,5,10,9,1,6,9,12,7,5,0,1,1,12,14,6,0,12,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 36.0, \"clip_end\": 39.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,8,3,3,4,11,13,1,7,12,4,12,7,9,12,8,12,3,1,5,5,12,15,6,10,7,3,9,0,11,15,2,15,3,7,12,9,4,12,14,6,10,1,10,2,13,9,9,8,15,15,13,9,9,2,1,4,4,13,9,2,9,13,14,4,3,11,5,2,2,4,10,8,14,5,9,13,13,12,13,3,1,6,8,9,7,10,2,6,12,2,3,7,9,15,9,7,2,7,9,6,6,11,15,0,13,10,14,9,12,8,5,9,12,14,13,8,7,12,11,12,3,4,11,1,7,6,7,2,4,5,8,0,3,11,14,0,2,13,12,10,12,14,4,7,8,4,13,2,10,14,8,2,8,5,3,8,0,14,7,10,12,0,9,6,15,1,6,11,12,11,13,10,8,8,2,2,14,3,11,5,8,8,12,15,0,0,5,4,4,14,0,0,5,15,8,4,13,4,14,0,1,12,3,11,2,15,3,7,0,0,2,8,12,9,10,12,6,6,7,5,5,8,13,2,1,0,12,6,9,1,8,7,0,3,9,15,5,10,9,1,6,9,12,7,5,0,1,1,12,14,6,0,12,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"2\", \"8\", \"5\"], \"clip_start\": 151.0, \"clip_end\": 156.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,8,3,3,4,11,13,1,7,12,4,12,7,9,12,8,12,3,1,5,5,12,15,6,10,7,3,9,0,11,15,2,15,3,7,12,9,4,12,14,6,10,1,10,2,13,9,9,8,15,15,13,9,9,2,1,4,4,13,9,2,9,13,14,4,3,11,5,2,2,4,10,8,14,5,9,13,13,12,13,3,1,6,8,9,7,10,2,6,12,2,3,7,9,15,9,7,2,7,9,6,6,11,15,0,13,10,14,9,12,8,5,9,12,14,13,8,7,12,11,12,3,4,11,1,7,6,7,2,4,5,8,0,3,11,14,0,2,13,12,10,12,14,4,7,8,4,13,2,10,14,8,2,8,5,3,8,0,14,7,10,12,0,9,6,15,1,6,11,12,11,13,10,8,8,2,2,14,3,11,5,8,8,12,15,0,0,5,4,4,14,0,0,5,15,8,4,13,4,14,0,1,12,3,11,2,15,3,7,0,0,2,8,12,9,10,12,6,6,7,5,5,8,13,2,1,0,12,6,9,1,8,7,0,3,9,15,5,10,9,1,6,9,12,7,5,0,1,1,12,14,6,0,12,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"5\", \"5\", \"8\", \"13\"], \"clip_start\": 219.0, \"clip_end\": 225.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,8,3,3,4,11,13,1,7,12,4,12,7,9,12,8,12,3,1,5,5,12,15,6,10,7,3,9,0,11,15,2,15,3,7,12,9,4,12,14,6,10,1,10,2,13,9,9,8,15,15,13,9,9,2,1,4,4,13,9,2,9,13,14,4,3,11,5,2,2,4,10,8,14,5,9,13,13,12,13,3,1,6,8,9,7,10,2,6,12,2,3,7,9,15,9,7,2,7,9,6,6,11,15,0,13,10,14,9,12,8,5,9,12,14,13,8,7,12,11,12,3,4,11,1,7,6,7,2,4,5,8,0,3,11,14,0,2,13,12,10,12,14,4,7,8,4,13,2,10,14,8,2,8,5,3,8,0,14,7,10,12,0,9,6,15,1,6,11,12,11,13,10,8,8,2,2,14,3,11,5,8,8,12,15,0,0,5,4,4,14,0,0,5,15,8,4,13,4,14,0,1,12,3,11,2,15,3,7,0,0,2,8,12,9,10,12,6,6,7,5,5,8,13,2,1,0,12,6,9,1,8,7,0,3,9,15,5,10,9,1,6,9,12,7,5,0,1,1,12,14,6,0,12,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"8\", \"3\", \"3\", \"4\"], \"clip_start\": 1.0, \"clip_end\": 6.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q6_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,8,3,3,4,11,13,1,7,12,4,12,7,9,12,8,12,3,1,5,5,12,15,6,10,7,3,9,0,11,15,2,15,3,7,12,9,4,12,14,6,10,1,10,2,13,9,9,8,15,15,13,9,9,2,1,4,4,13,9,2,9,13,14,4,3,11,5,2,2,4,10,8,14,5,9,13,13,12,13,3,1,6,8,9,7,10,2,6,12,2,3,7,9,15,9,7,2,7,9,6,6,11,15,0,13,10,14,9,12,8,5,9,12,14,13,8,7,12,11,12,3,4,11,1,7,6,7,2,4,5,8,0,3,11,14,0,2,13,12,10,12,14,4,7,8,4,13,2,10,14,8,2,8,5,3,8,0,14,7,10,12,0,9,6,15,1,6,11,12,11,13,10,8,8,2,2,14,3,11,5,8,8,12,15,0,0,5,4,4,14,0,0,5,15,8,4,13,4,14,0,1,12,3,11,2,15,3,7,0,0,2,8,12,9,10,12,6,6,7,5,5,8,13,2,1,0,12,6,9,1,8,7,0,3,9,15,5,10,9,1,6,9,12,7,5,0,1,1,12,14,6,0,12,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"3\", \"7\", \"12\", \"9\", \"4\"], \"clip_start\": 33.0, \"clip_end\": 39.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q7_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,8,3,3,4,11,13,1,7,12,4,12,7,9,12,8,12,3,1,5,5,12,15,6,10,7,3,9,0,11,15,2,15,3,7,12,9,4,12,14,6,10,1,10,2,13,9,9,8,15,15,13,9,9,2,1,4,4,13,9,2,9,13,14,4,3,11,5,2,2,4,10,8,14,5,9,13,13,12,13,3,1,6,8,9,7,10,2,6,12,2,3,7,9,15,9,7,2,7,9,6,6,11,15,0,13,10,14,9,12,8,5,9,12,14,13,8,7,12,11,12,3,4,11,1,7,6,7,2,4,5,8,0,3,11,14,0,2,13,12,10,12,14,4,7,8,4,13,2,10,14,8,2,8,5,3,8,0,14,7,10,12,0,9,6,15,1,6,11,12,11,13,10,8,8,2,2,14,3,11,5,8,8,12,15,0,0,5,4,4,14,0,0,5,15,8,4,13,4,14,0,1,12,3,11,2,15,3,7,0,0,2,8,12,9,10,12,6,6,7,5,5,8,13,2,1,0,12,6,9,1,8,7,0,3,9,15,5,10,9,1,6,9,12,7,5,0,1,1,12,14,6,0,12,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"2\", \"10\", \"14\"], \"clip_start\": 147.0, \"clip_end\": 152.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,8,3,3,4,11,13,1,7,12,4,12,7,9,12,8,12,3,1,5,5,12,15,6,10,7,3,9,0,11,15,2,15,3,7,12,9,4,12,14,6,10,1,10,2,13,9,9,8,15,15,13,9,9,2,1,4,4,13,9,2,9,13,14,4,3,11,5,2,2,4,10,8,14,5,9,13,13,12,13,3,1,6,8,9,7,10,2,6,12,2,3,7,9,15,9,7,2,7,9,6,6,11,15,0,13,10,14,9,12,8,5,9,12,14,13,8,7,12,11,12,3,4,11,1,7,6,7,2,4,5,8,0,3,11,14,0,2,13,12,10,12,14,4,7,8,4,13,2,10,14,8,2,8,5,3,8,0,14,7,10,12,0,9,6,15,1,6,11,12,11,13,10,8,8,2,2,14,3,11,5,8,8,12,15,0,0,5,4,4,14,0,0,5,15,8,4,13,4,14,0,1,12,3,11,2,15,3,7,0,0,2,8,12,9,10,12,6,6,7,5,5,8,13,2,1,0,12,6,9,1,8,7,0,3,9,15,5,10,9,1,6,9,12,7,5,0,1,1,12,14,6,0,12,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"8\", \"4\"], \"clip_start\": 194.0, \"clip_end\": 198.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q9_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,8,3,3,4,11,13,1,7,12,4,12,7,9,12,8,12,3,1,5,5,12,15,6,10,7,3,9,0,11,15,2,15,3,7,12,9,4,12,14,6,10,1,10,2,13,9,9,8,15,15,13,9,9,2,1,4,4,13,9,2,9,13,14,4,3,11,5,2,2,4,10,8,14,5,9,13,13,12,13,3,1,6,8,9,7,10,2,6,12,2,3,7,9,15,9,7,2,7,9,6,6,11,15,0,13,10,14,9,12,8,5,9,12,14,13,8,7,12,11,12,3,4,11,1,7,6,7,2,4,5,8,0,3,11,14,0,2,13,12,10,12,14,4,7,8,4,13,2,10,14,8,2,8,5,3,8,0,14,7,10,12,0,9,6,15,1,6,11,12,11,13,10,8,8,2,2,14,3,11,5,8,8,12,15,0,0,5,4,4,14,0,0,5,15,8,4,13,4,14,0,1,12,3,11,2,15,3,7,0,0,2,8,12,9,10,12,6,6,7,5,5,8,13,2,1,0,12,6,9,1,8,7,0,3,9,15,5,10,9,1,6,9,12,7,5,0,1,1,12,14,6,0,12,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"8\", \"2\", \"2\"], \"clip_start\": 173.0, \"clip_end\": 178.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q10_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,8,3,3,4,11,13,1,7,12,4,12,7,9,12,8,12,3,1,5,5,12,15,6,10,7,3,9,0,11,15,2,15,3,7,12,9,4,12,14,6,10,1,10,2,13,9,9,8,15,15,13,9,9,2,1,4,4,13,9,2,9,13,14,4,3,11,5,2,2,4,10,8,14,5,9,13,13,12,13,3,1,6,8,9,7,10,2,6,12,2,3,7,9,15,9,7,2,7,9,6,6,11,15,0,13,10,14,9,12,8,5,9,12,14,13,8,7,12,11,12,3,4,11,1,7,6,7,2,4,5,8,0,3,11,14,0,2,13,12,10,12,14,4,7,8,4,13,2,10,14,8,2,8,5,3,8,0,14,7,10,12,0,9,6,15,1,6,11,12,11,13,10,8,8,2,2,14,3,11,5,8,8,12,15,0,0,5,4,4,14,0,0,5,15,8,4,13,4,14,0,1,12,3,11,2,15,3,7,0,0,2,8,12,9,10,12,6,6,7,5,5,8,13,2,1,0,12,6,9,1,8,7,0,3,9,15,5,10,9,1,6,9,12,7,5,0,1,1,12,14,6,0,12,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"1\", \"12\", \"14\", \"6\"], \"clip_start\": 247.0, \"clip_end\": 253.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,8,3,3,4,11,13,1,7,12,4,12,7,9,12,8,12,3,1,5,5,12,15,6,10,7,3,9,0,11,15,2,15,3,7,12,9,4,12,14,6,10,1,10,2,13,9,9,8,15,15,13,9,9,2,1,4,4,13,9,2,9,13,14,4,3,11,5,2,2,4,10,8,14,5,9,13,13,12,13,3,1,6,8,9,7,10,2,6,12,2,3,7,9,15,9,7,2,7,9,6,6,11,15,0,13,10,14,9,12,8,5,9,12,14,13,8,7,12,11,12,3,4,11,1,7,6,7,2,4,5,8,0,3,11,14,0,2,13,12,10,12,14,4,7,8,4,13,2,10,14,8,2,8,5,3,8,0,14,7,10,12,0,9,6,15,1,6,11,12,11,13,10,8,8,2,2,14,3,11,5,8,8,12,15,0,0,5,4,4,14,0,0,5,15,8,4,13,4,14,0,1,12,3,11,2,15,3,7,0,0,2,8,12,9,10,12,6,6,7,5,5,8,13,2,1,0,12,6,9,1,8,7,0,3,9,15,5,10,9,1,6,9,12,7,5,0,1,1,12,14,6,0,12,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"14\", \"6\", \"10\", \"1\"], \"clip_start\": 38.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,8,3,3,4,11,13,1,7,12,4,12,7,9,12,8,12,3,1,5,5,12,15,6,10,7,3,9,0,11,15,2,15,3,7,12,9,4,12,14,6,10,1,10,2,13,9,9,8,15,15,13,9,9,2,1,4,4,13,9,2,9,13,14,4,3,11,5,2,2,4,10,8,14,5,9,13,13,12,13,3,1,6,8,9,7,10,2,6,12,2,3,7,9,15,9,7,2,7,9,6,6,11,15,0,13,10,14,9,12,8,5,9,12,14,13,8,7,12,11,12,3,4,11,1,7,6,7,2,4,5,8,0,3,11,14,0,2,13,12,10,12,14,4,7,8,4,13,2,10,14,8,2,8,5,3,8,0,14,7,10,12,0,9,6,15,1,6,11,12,11,13,10,8,8,2,2,14,3,11,5,8,8,12,15,0,0,5,4,4,14,0,0,5,15,8,4,13,4,14,0,1,12,3,11,2,15,3,7,0,0,2,8,12,9,10,12,6,6,7,5,5,8,13,2,1,0,12,6,9,1,8,7,0,3,9,15,5,10,9,1,6,9,12,7,5,0,1,1,12,14,6,0,12,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"4\", \"14\", \"0\"], \"clip_start\": 197.0, \"clip_end\": 202.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q13_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,8,3,3,4,11,13,1,7,12,4,12,7,9,12,8,12,3,1,5,5,12,15,6,10,7,3,9,0,11,15,2,15,3,7,12,9,4,12,14,6,10,1,10,2,13,9,9,8,15,15,13,9,9,2,1,4,4,13,9,2,9,13,14,4,3,11,5,2,2,4,10,8,14,5,9,13,13,12,13,3,1,6,8,9,7,10,2,6,12,2,3,7,9,15,9,7,2,7,9,6,6,11,15,0,13,10,14,9,12,8,5,9,12,14,13,8,7,12,11,12,3,4,11,1,7,6,7,2,4,5,8,0,3,11,14,0,2,13,12,10,12,14,4,7,8,4,13,2,10,14,8,2,8,5,3,8,0,14,7,10,12,0,9,6,15,1,6,11,12,11,13,10,8,8,2,2,14,3,11,5,8,8,12,15,0,0,5,4,4,14,0,0,5,15,8,4,13,4,14,0,1,12,3,11,2,15,3,7,0,0,2,8,12,9,10,12,6,6,7,5,5,8,13,2,1,0,12,6,9,1,8,7,0,3,9,15,5,10,9,1,6,9,12,7,5,0,1,1,12,14,6,0,12,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\", \"2\", \"15\", \"0\"], \"clip_start\": 225.0, \"clip_end\": 231.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q14_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,8,3,3,4,11,13,1,7,12,4,12,7,9,12,8,12,3,1,5,5,12,15,6,10,7,3,9,0,11,15,2,15,3,7,12,9,4,12,14,6,10,1,10,2,13,9,9,8,15,15,13,9,9,2,1,4,4,13,9,2,9,13,14,4,3,11,5,2,2,4,10,8,14,5,9,13,13,12,13,3,1,6,8,9,7,10,2,6,12,2,3,7,9,15,9,7,2,7,9,6,6,11,15,0,13,10,14,9,12,8,5,9,12,14,13,8,7,12,11,12,3,4,11,1,7,6,7,2,4,5,8,0,3,11,14,0,2,13,12,10,12,14,4,7,8,4,13,2,10,14,8,2,8,5,3,8,0,14,7,10,12,0,9,6,15,1,6,11,12,11,13,10,8,8,2,2,14,3,11,5,8,8,12,15,0,0,5,4,4,14,0,0,5,15,8,4,13,4,14,0,1,12,3,11,2,15,3,7,0,0,2,8,12,9,10,12,6,6,7,5,5,8,13,2,1,0,12,6,9,1,8,7,0,3,9,15,5,10,9,1,6,9,12,7,5,0,1,1,12,14,6,0,12,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"7\", \"3\"], \"clip_start\": 24.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q15_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,1,8,3,3,4,11,13,1,7,12,4,12,7,9,12,8,12,3,1,5,5,12,15,6,10,7,3,9,0,11,15,2,15,3,7,12,9,4,12,14,6,10,1,10,2,13,9,9,8,15,15,13,9,9,2,1,4,4,13,9,2,9,13,14,4,3,11,5,2,2,4,10,8,14,5,9,13,13,12,13,3,1,6,8,9,7,10,2,6,12,2,3,7,9,15,9,7,2,7,9,6,6,11,15,0,13,10,14,9,12,8,5,9,12,14,13,8,7,12,11,12,3,4,11,1,7,6,7,2,4,5,8,0,3,11,14,0,2,13,12,10,12,14,4,7,8,4,13,2,10,14,8,2,8,5,3,8,0,14,7,10,12,0,9,6,15,1,6,11,12,11,13,10,8,8,2,2,14,3,11,5,8,8,12,15,0,0,5,4,4,14,0,0,5,15,8,4,13,4,14,0,1,12,3,11,2,15,3,7,0,0,2,8,12,9,10,12,6,6,7,5,5,8,13,2,1,0,12,6,9,1,8,7,0,3,9,15,5,10,9,1,6,9,12,7,5,0,1,1,12,14,6,0,12,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"14\", \"8\", \"7\"], \"clip_start\": 184.0, \"clip_end\": 189.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,11,7,11,14,1,6,0,6,14,0,15,10,14,10,10,11,4,8,3,14,8,1,11,12,3,1,3,1,7,5,14,12,10,9,0,6,9,5,3,11,9,8,3,15,15,12,14,7,10,13,15,6,14,14,13,4,13,8,3,14,7,7,7,9,12,12,3,12,14,1,10,0,15,0,4,12,7,14,15,8,5,11,12,14,3,13,2,5,14,13,11,3,6,1,14,15,7,1,9,9,8,4,12,13,7,6,13,9,10,15,12,15,2,10,4,10,11,15,13,2,9,8,2,13,8,15,13,9,5,0,7,0,10,13,4,13,11,15,11,1,13,12,0,7,11,5,1,5,11,1,6,12,10,14,5,13,12,7,5,3,3,10,13,12,0,12,9,7,10,4,5,14,4,11,14,14,3,13,11,0,2,7,4,4,14,8,7,6,10,14,2,4,15,5,5,14,5,13,15,7,12,8,7,15,8,12,3,7,8,10,3,9,4,8,10,6,13,10,7,9,15,6,9,0,11,12,2,8,0,15,4,5,2,14,0,10,11,3,12,4,11,0,0,7,7,4,0,4,14,4,3,15,15,1", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"8\", \"7\"], \"clip_start\": 201.0, \"clip_end\": 205.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,11,7,11,14,1,6,0,6,14,0,15,10,14,10,10,11,4,8,3,14,8,1,11,12,3,1,3,1,7,5,14,12,10,9,0,6,9,5,3,11,9,8,3,15,15,12,14,7,10,13,15,6,14,14,13,4,13,8,3,14,7,7,7,9,12,12,3,12,14,1,10,0,15,0,4,12,7,14,15,8,5,11,12,14,3,13,2,5,14,13,11,3,6,1,14,15,7,1,9,9,8,4,12,13,7,6,13,9,10,15,12,15,2,10,4,10,11,15,13,2,9,8,2,13,8,15,13,9,5,0,7,0,10,13,4,13,11,15,11,1,13,12,0,7,11,5,1,5,11,1,6,12,10,14,5,13,12,7,5,3,3,10,13,12,0,12,9,7,10,4,5,14,4,11,14,14,3,13,11,0,2,7,4,4,14,8,7,6,10,14,2,4,15,5,5,14,5,13,15,7,12,8,7,15,8,12,3,7,8,10,3,9,4,8,10,6,13,10,7,9,15,6,9,0,11,12,2,8,0,15,4,5,2,14,0,10,11,3,12,4,11,0,0,7,7,4,0,4,14,4,3,15,15,1", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"4\", \"5\", \"2\"], \"clip_start\": 231.0, \"clip_end\": 235.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,11,7,11,14,1,6,0,6,14,0,15,10,14,10,10,11,4,8,3,14,8,1,11,12,3,1,3,1,7,5,14,12,10,9,0,6,9,5,3,11,9,8,3,15,15,12,14,7,10,13,15,6,14,14,13,4,13,8,3,14,7,7,7,9,12,12,3,12,14,1,10,0,15,0,4,12,7,14,15,8,5,11,12,14,3,13,2,5,14,13,11,3,6,1,14,15,7,1,9,9,8,4,12,13,7,6,13,9,10,15,12,15,2,10,4,10,11,15,13,2,9,8,2,13,8,15,13,9,5,0,7,0,10,13,4,13,11,15,11,1,13,12,0,7,11,5,1,5,11,1,6,12,10,14,5,13,12,7,5,3,3,10,13,12,0,12,9,7,10,4,5,14,4,11,14,14,3,13,11,0,2,7,4,4,14,8,7,6,10,14,2,4,15,5,5,14,5,13,15,7,12,8,7,15,8,12,3,7,8,10,3,9,4,8,10,6,13,10,7,9,15,6,9,0,11,12,2,8,0,15,4,5,2,14,0,10,11,3,12,4,11,0,0,7,7,4,0,4,14,4,3,15,15,1", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"14\", \"7\", \"7\"], \"clip_start\": 59.0, \"clip_end\": 64.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,11,7,11,14,1,6,0,6,14,0,15,10,14,10,10,11,4,8,3,14,8,1,11,12,3,1,3,1,7,5,14,12,10,9,0,6,9,5,3,11,9,8,3,15,15,12,14,7,10,13,15,6,14,14,13,4,13,8,3,14,7,7,7,9,12,12,3,12,14,1,10,0,15,0,4,12,7,14,15,8,5,11,12,14,3,13,2,5,14,13,11,3,6,1,14,15,7,1,9,9,8,4,12,13,7,6,13,9,10,15,12,15,2,10,4,10,11,15,13,2,9,8,2,13,8,15,13,9,5,0,7,0,10,13,4,13,11,15,11,1,13,12,0,7,11,5,1,5,11,1,6,12,10,14,5,13,12,7,5,3,3,10,13,12,0,12,9,7,10,4,5,14,4,11,14,14,3,13,11,0,2,7,4,4,14,8,7,6,10,14,2,4,15,5,5,14,5,13,15,7,12,8,7,15,8,12,3,7,8,10,3,9,4,8,10,6,13,10,7,9,15,6,9,0,11,12,2,8,0,15,4,5,2,14,0,10,11,3,12,4,11,0,0,7,7,4,0,4,14,4,3,15,15,1", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 132.0, \"clip_end\": 136.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,11,7,11,14,1,6,0,6,14,0,15,10,14,10,10,11,4,8,3,14,8,1,11,12,3,1,3,1,7,5,14,12,10,9,0,6,9,5,3,11,9,8,3,15,15,12,14,7,10,13,15,6,14,14,13,4,13,8,3,14,7,7,7,9,12,12,3,12,14,1,10,0,15,0,4,12,7,14,15,8,5,11,12,14,3,13,2,5,14,13,11,3,6,1,14,15,7,1,9,9,8,4,12,13,7,6,13,9,10,15,12,15,2,10,4,10,11,15,13,2,9,8,2,13,8,15,13,9,5,0,7,0,10,13,4,13,11,15,11,1,13,12,0,7,11,5,1,5,11,1,6,12,10,14,5,13,12,7,5,3,3,10,13,12,0,12,9,7,10,4,5,14,4,11,14,14,3,13,11,0,2,7,4,4,14,8,7,6,10,14,2,4,15,5,5,14,5,13,15,7,12,8,7,15,8,12,3,7,8,10,3,9,4,8,10,6,13,10,7,9,15,6,9,0,11,12,2,8,0,15,4,5,2,14,0,10,11,3,12,4,11,0,0,7,7,4,0,4,14,4,3,15,15,1", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"2\", \"9\"], \"clip_start\": 119.0, \"clip_end\": 123.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,11,7,11,14,1,6,0,6,14,0,15,10,14,10,10,11,4,8,3,14,8,1,11,12,3,1,3,1,7,5,14,12,10,9,0,6,9,5,3,11,9,8,3,15,15,12,14,7,10,13,15,6,14,14,13,4,13,8,3,14,7,7,7,9,12,12,3,12,14,1,10,0,15,0,4,12,7,14,15,8,5,11,12,14,3,13,2,5,14,13,11,3,6,1,14,15,7,1,9,9,8,4,12,13,7,6,13,9,10,15,12,15,2,10,4,10,11,15,13,2,9,8,2,13,8,15,13,9,5,0,7,0,10,13,4,13,11,15,11,1,13,12,0,7,11,5,1,5,11,1,6,12,10,14,5,13,12,7,5,3,3,10,13,12,0,12,9,7,10,4,5,14,4,11,14,14,3,13,11,0,2,7,4,4,14,8,7,6,10,14,2,4,15,5,5,14,5,13,15,7,12,8,7,15,8,12,3,7,8,10,3,9,4,8,10,6,13,10,7,9,15,6,9,0,11,12,2,8,0,15,4,5,2,14,0,10,11,3,12,4,11,0,0,7,7,4,0,4,14,4,3,15,15,1", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"13\", \"10\"], \"clip_start\": 216.0, \"clip_end\": 220.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,11,7,11,14,1,6,0,6,14,0,15,10,14,10,10,11,4,8,3,14,8,1,11,12,3,1,3,1,7,5,14,12,10,9,0,6,9,5,3,11,9,8,3,15,15,12,14,7,10,13,15,6,14,14,13,4,13,8,3,14,7,7,7,9,12,12,3,12,14,1,10,0,15,0,4,12,7,14,15,8,5,11,12,14,3,13,2,5,14,13,11,3,6,1,14,15,7,1,9,9,8,4,12,13,7,6,13,9,10,15,12,15,2,10,4,10,11,15,13,2,9,8,2,13,8,15,13,9,5,0,7,0,10,13,4,13,11,15,11,1,13,12,0,7,11,5,1,5,11,1,6,12,10,14,5,13,12,7,5,3,3,10,13,12,0,12,9,7,10,4,5,14,4,11,14,14,3,13,11,0,2,7,4,4,14,8,7,6,10,14,2,4,15,5,5,14,5,13,15,7,12,8,7,15,8,12,3,7,8,10,3,9,4,8,10,6,13,10,7,9,15,6,9,0,11,12,2,8,0,15,4,5,2,14,0,10,11,3,12,4,11,0,0,7,7,4,0,4,14,4,3,15,15,1", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 228.0, \"clip_end\": 233.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,11,7,11,14,1,6,0,6,14,0,15,10,14,10,10,11,4,8,3,14,8,1,11,12,3,1,3,1,7,5,14,12,10,9,0,6,9,5,3,11,9,8,3,15,15,12,14,7,10,13,15,6,14,14,13,4,13,8,3,14,7,7,7,9,12,12,3,12,14,1,10,0,15,0,4,12,7,14,15,8,5,11,12,14,3,13,2,5,14,13,11,3,6,1,14,15,7,1,9,9,8,4,12,13,7,6,13,9,10,15,12,15,2,10,4,10,11,15,13,2,9,8,2,13,8,15,13,9,5,0,7,0,10,13,4,13,11,15,11,1,13,12,0,7,11,5,1,5,11,1,6,12,10,14,5,13,12,7,5,3,3,10,13,12,0,12,9,7,10,4,5,14,4,11,14,14,3,13,11,0,2,7,4,4,14,8,7,6,10,14,2,4,15,5,5,14,5,13,15,7,12,8,7,15,8,12,3,7,8,10,3,9,4,8,10,6,13,10,7,9,15,6,9,0,11,12,2,8,0,15,4,5,2,14,0,10,11,3,12,4,11,0,0,7,7,4,0,4,14,4,3,15,15,1", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"0\", \"15\"], \"clip_start\": 71.0, \"clip_end\": 75.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,11,7,11,14,1,6,0,6,14,0,15,10,14,10,10,11,4,8,3,14,8,1,11,12,3,1,3,1,7,5,14,12,10,9,0,6,9,5,3,11,9,8,3,15,15,12,14,7,10,13,15,6,14,14,13,4,13,8,3,14,7,7,7,9,12,12,3,12,14,1,10,0,15,0,4,12,7,14,15,8,5,11,12,14,3,13,2,5,14,13,11,3,6,1,14,15,7,1,9,9,8,4,12,13,7,6,13,9,10,15,12,15,2,10,4,10,11,15,13,2,9,8,2,13,8,15,13,9,5,0,7,0,10,13,4,13,11,15,11,1,13,12,0,7,11,5,1,5,11,1,6,12,10,14,5,13,12,7,5,3,3,10,13,12,0,12,9,7,10,4,5,14,4,11,14,14,3,13,11,0,2,7,4,4,14,8,7,6,10,14,2,4,15,5,5,14,5,13,15,7,12,8,7,15,8,12,3,7,8,10,3,9,4,8,10,6,13,10,7,9,15,6,9,0,11,12,2,8,0,15,4,5,2,14,0,10,11,3,12,4,11,0,0,7,7,4,0,4,14,4,3,15,15,1", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"8\"], \"clip_start\": 220.0, \"clip_end\": 223.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,11,7,11,14,1,6,0,6,14,0,15,10,14,10,10,11,4,8,3,14,8,1,11,12,3,1,3,1,7,5,14,12,10,9,0,6,9,5,3,11,9,8,3,15,15,12,14,7,10,13,15,6,14,14,13,4,13,8,3,14,7,7,7,9,12,12,3,12,14,1,10,0,15,0,4,12,7,14,15,8,5,11,12,14,3,13,2,5,14,13,11,3,6,1,14,15,7,1,9,9,8,4,12,13,7,6,13,9,10,15,12,15,2,10,4,10,11,15,13,2,9,8,2,13,8,15,13,9,5,0,7,0,10,13,4,13,11,15,11,1,13,12,0,7,11,5,1,5,11,1,6,12,10,14,5,13,12,7,5,3,3,10,13,12,0,12,9,7,10,4,5,14,4,11,14,14,3,13,11,0,2,7,4,4,14,8,7,6,10,14,2,4,15,5,5,14,5,13,15,7,12,8,7,15,8,12,3,7,8,10,3,9,4,8,10,6,13,10,7,9,15,6,9,0,11,12,2,8,0,15,4,5,2,14,0,10,11,3,12,4,11,0,0,7,7,4,0,4,14,4,3,15,15,1", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"10\", \"13\", \"15\"], \"clip_start\": 48.0, \"clip_end\": 53.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q10_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,11,7,11,14,1,6,0,6,14,0,15,10,14,10,10,11,4,8,3,14,8,1,11,12,3,1,3,1,7,5,14,12,10,9,0,6,9,5,3,11,9,8,3,15,15,12,14,7,10,13,15,6,14,14,13,4,13,8,3,14,7,7,7,9,12,12,3,12,14,1,10,0,15,0,4,12,7,14,15,8,5,11,12,14,3,13,2,5,14,13,11,3,6,1,14,15,7,1,9,9,8,4,12,13,7,6,13,9,10,15,12,15,2,10,4,10,11,15,13,2,9,8,2,13,8,15,13,9,5,0,7,0,10,13,4,13,11,15,11,1,13,12,0,7,11,5,1,5,11,1,6,12,10,14,5,13,12,7,5,3,3,10,13,12,0,12,9,7,10,4,5,14,4,11,14,14,3,13,11,0,2,7,4,4,14,8,7,6,10,14,2,4,15,5,5,14,5,13,15,7,12,8,7,15,8,12,3,7,8,10,3,9,4,8,10,6,13,10,7,9,15,6,9,0,11,12,2,8,0,15,4,5,2,14,0,10,11,3,12,4,11,0,0,7,7,4,0,4,14,4,3,15,15,1", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"4\", \"5\"], \"clip_start\": 169.0, \"clip_end\": 173.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q11_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,11,7,11,14,1,6,0,6,14,0,15,10,14,10,10,11,4,8,3,14,8,1,11,12,3,1,3,1,7,5,14,12,10,9,0,6,9,5,3,11,9,8,3,15,15,12,14,7,10,13,15,6,14,14,13,4,13,8,3,14,7,7,7,9,12,12,3,12,14,1,10,0,15,0,4,12,7,14,15,8,5,11,12,14,3,13,2,5,14,13,11,3,6,1,14,15,7,1,9,9,8,4,12,13,7,6,13,9,10,15,12,15,2,10,4,10,11,15,13,2,9,8,2,13,8,15,13,9,5,0,7,0,10,13,4,13,11,15,11,1,13,12,0,7,11,5,1,5,11,1,6,12,10,14,5,13,12,7,5,3,3,10,13,12,0,12,9,7,10,4,5,14,4,11,14,14,3,13,11,0,2,7,4,4,14,8,7,6,10,14,2,4,15,5,5,14,5,13,15,7,12,8,7,15,8,12,3,7,8,10,3,9,4,8,10,6,13,10,7,9,15,6,9,0,11,12,2,8,0,15,4,5,2,14,0,10,11,3,12,4,11,0,0,7,7,4,0,4,14,4,3,15,15,1", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\"], \"clip_start\": 25.0, \"clip_end\": 28.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q12_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,11,7,11,14,1,6,0,6,14,0,15,10,14,10,10,11,4,8,3,14,8,1,11,12,3,1,3,1,7,5,14,12,10,9,0,6,9,5,3,11,9,8,3,15,15,12,14,7,10,13,15,6,14,14,13,4,13,8,3,14,7,7,7,9,12,12,3,12,14,1,10,0,15,0,4,12,7,14,15,8,5,11,12,14,3,13,2,5,14,13,11,3,6,1,14,15,7,1,9,9,8,4,12,13,7,6,13,9,10,15,12,15,2,10,4,10,11,15,13,2,9,8,2,13,8,15,13,9,5,0,7,0,10,13,4,13,11,15,11,1,13,12,0,7,11,5,1,5,11,1,6,12,10,14,5,13,12,7,5,3,3,10,13,12,0,12,9,7,10,4,5,14,4,11,14,14,3,13,11,0,2,7,4,4,14,8,7,6,10,14,2,4,15,5,5,14,5,13,15,7,12,8,7,15,8,12,3,7,8,10,3,9,4,8,10,6,13,10,7,9,15,6,9,0,11,12,2,8,0,15,4,5,2,14,0,10,11,3,12,4,11,0,0,7,7,4,0,4,14,4,3,15,15,1", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"5\", \"14\"], \"clip_start\": 194.0, \"clip_end\": 198.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q13_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,11,7,11,14,1,6,0,6,14,0,15,10,14,10,10,11,4,8,3,14,8,1,11,12,3,1,3,1,7,5,14,12,10,9,0,6,9,5,3,11,9,8,3,15,15,12,14,7,10,13,15,6,14,14,13,4,13,8,3,14,7,7,7,9,12,12,3,12,14,1,10,0,15,0,4,12,7,14,15,8,5,11,12,14,3,13,2,5,14,13,11,3,6,1,14,15,7,1,9,9,8,4,12,13,7,6,13,9,10,15,12,15,2,10,4,10,11,15,13,2,9,8,2,13,8,15,13,9,5,0,7,0,10,13,4,13,11,15,11,1,13,12,0,7,11,5,1,5,11,1,6,12,10,14,5,13,12,7,5,3,3,10,13,12,0,12,9,7,10,4,5,14,4,11,14,14,3,13,11,0,2,7,4,4,14,8,7,6,10,14,2,4,15,5,5,14,5,13,15,7,12,8,7,15,8,12,3,7,8,10,3,9,4,8,10,6,13,10,7,9,15,6,9,0,11,12,2,8,0,15,4,5,2,14,0,10,11,3,12,4,11,0,0,7,7,4,0,4,14,4,3,15,15,1", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"11\", \"14\"], \"clip_start\": 173.0, \"clip_end\": 177.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q14_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,11,7,11,14,1,6,0,6,14,0,15,10,14,10,10,11,4,8,3,14,8,1,11,12,3,1,3,1,7,5,14,12,10,9,0,6,9,5,3,11,9,8,3,15,15,12,14,7,10,13,15,6,14,14,13,4,13,8,3,14,7,7,7,9,12,12,3,12,14,1,10,0,15,0,4,12,7,14,15,8,5,11,12,14,3,13,2,5,14,13,11,3,6,1,14,15,7,1,9,9,8,4,12,13,7,6,13,9,10,15,12,15,2,10,4,10,11,15,13,2,9,8,2,13,8,15,13,9,5,0,7,0,10,13,4,13,11,15,11,1,13,12,0,7,11,5,1,5,11,1,6,12,10,14,5,13,12,7,5,3,3,10,13,12,0,12,9,7,10,4,5,14,4,11,14,14,3,13,11,0,2,7,4,4,14,8,7,6,10,14,2,4,15,5,5,14,5,13,15,7,12,8,7,15,8,12,3,7,8,10,3,9,4,8,10,6,13,10,7,9,15,6,9,0,11,12,2,8,0,15,4,5,2,14,0,10,11,3,12,4,11,0,0,7,7,4,0,4,14,4,3,15,15,1", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"3\", \"1\", \"7\", \"5\"], \"clip_start\": 26.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q15_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,1,11,7,11,14,1,6,0,6,14,0,15,10,14,10,10,11,4,8,3,14,8,1,11,12,3,1,3,1,7,5,14,12,10,9,0,6,9,5,3,11,9,8,3,15,15,12,14,7,10,13,15,6,14,14,13,4,13,8,3,14,7,7,7,9,12,12,3,12,14,1,10,0,15,0,4,12,7,14,15,8,5,11,12,14,3,13,2,5,14,13,11,3,6,1,14,15,7,1,9,9,8,4,12,13,7,6,13,9,10,15,12,15,2,10,4,10,11,15,13,2,9,8,2,13,8,15,13,9,5,0,7,0,10,13,4,13,11,15,11,1,13,12,0,7,11,5,1,5,11,1,6,12,10,14,5,13,12,7,5,3,3,10,13,12,0,12,9,7,10,4,5,14,4,11,14,14,3,13,11,0,2,7,4,4,14,8,7,6,10,14,2,4,15,5,5,14,5,13,15,7,12,8,7,15,8,12,3,7,8,10,3,9,4,8,10,6,13,10,7,9,15,6,9,0,11,12,2,8,0,15,4,5,2,14,0,10,11,3,12,4,11,0,0,7,7,4,0,4,14,4,3,15,15,1", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"1\", \"14\", \"10\"], \"clip_start\": 210.0, \"clip_end\": 215.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,5,14,4,13,2,8,6,7,14,15,8,7,11,3,9,0,0,15,8,13,4,9,14,5,6,2,8,15,6,3,7,4,1,2,0,5,10,6,8,9,8,10,2,2,5,14,12,0,5,11,12,6,14,2,10,5,11,12,5,14,3,10,1,10,8,13,8,0,2,3,12,7,8,6,0,14,15,2,10,10,2,14,8,4,1,10,9,10,12,7,4,6,4,5,2,6,0,11,13,13,4,13,6,5,10,2,4,5,9,3,15,6,9,12,1,0,6,10,12,11,3,4,12,1,5,8,8,6,4,6,3,8,12,2,14,6,6,9,14,2,7,0,15,7,9,5,1,15,3,1,2,4,9,7,9,14,3,9,1,13,8,4,1,14,2,15,9,4,14,6,8,1,13,4,7,3,1,12,15,8,2,3,0,0,14,10,7,2,2,8,13,15,6,9,3,12,14,1,12,1,15,12,13,8,15,6,5,2,11,3,1,14,10,12,4,12,11,9,6,12,8,0,5,11,0,9,9,7,10,12,0,6,11,1,15,11,10,8,11,12,4,1,13,7,10,4,15,13,0,11,6,9,12,10", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"5\", \"1\", \"15\", \"3\"], \"clip_start\": 145.0, \"clip_end\": 151.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,5,14,4,13,2,8,6,7,14,15,8,7,11,3,9,0,0,15,8,13,4,9,14,5,6,2,8,15,6,3,7,4,1,2,0,5,10,6,8,9,8,10,2,2,5,14,12,0,5,11,12,6,14,2,10,5,11,12,5,14,3,10,1,10,8,13,8,0,2,3,12,7,8,6,0,14,15,2,10,10,2,14,8,4,1,10,9,10,12,7,4,6,4,5,2,6,0,11,13,13,4,13,6,5,10,2,4,5,9,3,15,6,9,12,1,0,6,10,12,11,3,4,12,1,5,8,8,6,4,6,3,8,12,2,14,6,6,9,14,2,7,0,15,7,9,5,1,15,3,1,2,4,9,7,9,14,3,9,1,13,8,4,1,14,2,15,9,4,14,6,8,1,13,4,7,3,1,12,15,8,2,3,0,0,14,10,7,2,2,8,13,15,6,9,3,12,14,1,12,1,15,12,13,8,15,6,5,2,11,3,1,14,10,12,4,12,11,9,6,12,8,0,5,11,0,9,9,7,10,12,0,6,11,1,15,11,10,8,11,12,4,1,13,7,10,4,15,13,0,11,6,9,12,10", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"8\", \"9\", \"8\", \"10\", \"2\"], \"clip_start\": 39.0, \"clip_end\": 45.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,5,14,4,13,2,8,6,7,14,15,8,7,11,3,9,0,0,15,8,13,4,9,14,5,6,2,8,15,6,3,7,4,1,2,0,5,10,6,8,9,8,10,2,2,5,14,12,0,5,11,12,6,14,2,10,5,11,12,5,14,3,10,1,10,8,13,8,0,2,3,12,7,8,6,0,14,15,2,10,10,2,14,8,4,1,10,9,10,12,7,4,6,4,5,2,6,0,11,13,13,4,13,6,5,10,2,4,5,9,3,15,6,9,12,1,0,6,10,12,11,3,4,12,1,5,8,8,6,4,6,3,8,12,2,14,6,6,9,14,2,7,0,15,7,9,5,1,15,3,1,2,4,9,7,9,14,3,9,1,13,8,4,1,14,2,15,9,4,14,6,8,1,13,4,7,3,1,12,15,8,2,3,0,0,14,10,7,2,2,8,13,15,6,9,3,12,14,1,12,1,15,12,13,8,15,6,5,2,11,3,1,14,10,12,4,12,11,9,6,12,8,0,5,11,0,9,9,7,10,12,0,6,11,1,15,11,10,8,11,12,4,1,13,7,10,4,15,13,0,11,6,9,12,10", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"7\"], \"clip_start\": 89.0, \"clip_end\": 92.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,5,14,4,13,2,8,6,7,14,15,8,7,11,3,9,0,0,15,8,13,4,9,14,5,6,2,8,15,6,3,7,4,1,2,0,5,10,6,8,9,8,10,2,2,5,14,12,0,5,11,12,6,14,2,10,5,11,12,5,14,3,10,1,10,8,13,8,0,2,3,12,7,8,6,0,14,15,2,10,10,2,14,8,4,1,10,9,10,12,7,4,6,4,5,2,6,0,11,13,13,4,13,6,5,10,2,4,5,9,3,15,6,9,12,1,0,6,10,12,11,3,4,12,1,5,8,8,6,4,6,3,8,12,2,14,6,6,9,14,2,7,0,15,7,9,5,1,15,3,1,2,4,9,7,9,14,3,9,1,13,8,4,1,14,2,15,9,4,14,6,8,1,13,4,7,3,1,12,15,8,2,3,0,0,14,10,7,2,2,8,13,15,6,9,3,12,14,1,12,1,15,12,13,8,15,6,5,2,11,3,1,14,10,12,4,12,11,9,6,12,8,0,5,11,0,9,9,7,10,12,0,6,11,1,15,11,10,8,11,12,4,1,13,7,10,4,15,13,0,11,6,9,12,10", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"2\", \"4\", \"9\"], \"clip_start\": 150.0, \"clip_end\": 155.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,5,14,4,13,2,8,6,7,14,15,8,7,11,3,9,0,0,15,8,13,4,9,14,5,6,2,8,15,6,3,7,4,1,2,0,5,10,6,8,9,8,10,2,2,5,14,12,0,5,11,12,6,14,2,10,5,11,12,5,14,3,10,1,10,8,13,8,0,2,3,12,7,8,6,0,14,15,2,10,10,2,14,8,4,1,10,9,10,12,7,4,6,4,5,2,6,0,11,13,13,4,13,6,5,10,2,4,5,9,3,15,6,9,12,1,0,6,10,12,11,3,4,12,1,5,8,8,6,4,6,3,8,12,2,14,6,6,9,14,2,7,0,15,7,9,5,1,15,3,1,2,4,9,7,9,14,3,9,1,13,8,4,1,14,2,15,9,4,14,6,8,1,13,4,7,3,1,12,15,8,2,3,0,0,14,10,7,2,2,8,13,15,6,9,3,12,14,1,12,1,15,12,13,8,15,6,5,2,11,3,1,14,10,12,4,12,11,9,6,12,8,0,5,11,0,9,9,7,10,12,0,6,11,1,15,11,10,8,11,12,4,1,13,7,10,4,15,13,0,11,6,9,12,10", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"13\", \"6\", \"5\"], \"clip_start\": 101.0, \"clip_end\": 106.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,5,14,4,13,2,8,6,7,14,15,8,7,11,3,9,0,0,15,8,13,4,9,14,5,6,2,8,15,6,3,7,4,1,2,0,5,10,6,8,9,8,10,2,2,5,14,12,0,5,11,12,6,14,2,10,5,11,12,5,14,3,10,1,10,8,13,8,0,2,3,12,7,8,6,0,14,15,2,10,10,2,14,8,4,1,10,9,10,12,7,4,6,4,5,2,6,0,11,13,13,4,13,6,5,10,2,4,5,9,3,15,6,9,12,1,0,6,10,12,11,3,4,12,1,5,8,8,6,4,6,3,8,12,2,14,6,6,9,14,2,7,0,15,7,9,5,1,15,3,1,2,4,9,7,9,14,3,9,1,13,8,4,1,14,2,15,9,4,14,6,8,1,13,4,7,3,1,12,15,8,2,3,0,0,14,10,7,2,2,8,13,15,6,9,3,12,14,1,12,1,15,12,13,8,15,6,5,2,11,3,1,14,10,12,4,12,11,9,6,12,8,0,5,11,0,9,9,7,10,12,0,6,11,1,15,11,10,8,11,12,4,1,13,7,10,4,15,13,0,11,6,9,12,10", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"11\", \"9\", \"6\", \"12\"], \"clip_start\": 216.0, \"clip_end\": 222.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,5,14,4,13,2,8,6,7,14,15,8,7,11,3,9,0,0,15,8,13,4,9,14,5,6,2,8,15,6,3,7,4,1,2,0,5,10,6,8,9,8,10,2,2,5,14,12,0,5,11,12,6,14,2,10,5,11,12,5,14,3,10,1,10,8,13,8,0,2,3,12,7,8,6,0,14,15,2,10,10,2,14,8,4,1,10,9,10,12,7,4,6,4,5,2,6,0,11,13,13,4,13,6,5,10,2,4,5,9,3,15,6,9,12,1,0,6,10,12,11,3,4,12,1,5,8,8,6,4,6,3,8,12,2,14,6,6,9,14,2,7,0,15,7,9,5,1,15,3,1,2,4,9,7,9,14,3,9,1,13,8,4,1,14,2,15,9,4,14,6,8,1,13,4,7,3,1,12,15,8,2,3,0,0,14,10,7,2,2,8,13,15,6,9,3,12,14,1,12,1,15,12,13,8,15,6,5,2,11,3,1,14,10,12,4,12,11,9,6,12,8,0,5,11,0,9,9,7,10,12,0,6,11,1,15,11,10,8,11,12,4,1,13,7,10,4,15,13,0,11,6,9,12,10", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"8\", \"13\", \"15\", \"6\", \"9\"], \"clip_start\": 190.0, \"clip_end\": 196.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,5,14,4,13,2,8,6,7,14,15,8,7,11,3,9,0,0,15,8,13,4,9,14,5,6,2,8,15,6,3,7,4,1,2,0,5,10,6,8,9,8,10,2,2,5,14,12,0,5,11,12,6,14,2,10,5,11,12,5,14,3,10,1,10,8,13,8,0,2,3,12,7,8,6,0,14,15,2,10,10,2,14,8,4,1,10,9,10,12,7,4,6,4,5,2,6,0,11,13,13,4,13,6,5,10,2,4,5,9,3,15,6,9,12,1,0,6,10,12,11,3,4,12,1,5,8,8,6,4,6,3,8,12,2,14,6,6,9,14,2,7,0,15,7,9,5,1,15,3,1,2,4,9,7,9,14,3,9,1,13,8,4,1,14,2,15,9,4,14,6,8,1,13,4,7,3,1,12,15,8,2,3,0,0,14,10,7,2,2,8,13,15,6,9,3,12,14,1,12,1,15,12,13,8,15,6,5,2,11,3,1,14,10,12,4,12,11,9,6,12,8,0,5,11,0,9,9,7,10,12,0,6,11,1,15,11,10,8,11,12,4,1,13,7,10,4,15,13,0,11,6,9,12,10", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\"], \"clip_start\": 240.0, \"clip_end\": 243.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,5,14,4,13,2,8,6,7,14,15,8,7,11,3,9,0,0,15,8,13,4,9,14,5,6,2,8,15,6,3,7,4,1,2,0,5,10,6,8,9,8,10,2,2,5,14,12,0,5,11,12,6,14,2,10,5,11,12,5,14,3,10,1,10,8,13,8,0,2,3,12,7,8,6,0,14,15,2,10,10,2,14,8,4,1,10,9,10,12,7,4,6,4,5,2,6,0,11,13,13,4,13,6,5,10,2,4,5,9,3,15,6,9,12,1,0,6,10,12,11,3,4,12,1,5,8,8,6,4,6,3,8,12,2,14,6,6,9,14,2,7,0,15,7,9,5,1,15,3,1,2,4,9,7,9,14,3,9,1,13,8,4,1,14,2,15,9,4,14,6,8,1,13,4,7,3,1,12,15,8,2,3,0,0,14,10,7,2,2,8,13,15,6,9,3,12,14,1,12,1,15,12,13,8,15,6,5,2,11,3,1,14,10,12,4,12,11,9,6,12,8,0,5,11,0,9,9,7,10,12,0,6,11,1,15,11,10,8,11,12,4,1,13,7,10,4,15,13,0,11,6,9,12,10", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"13\", \"3\"], \"clip_start\": 207.0, \"clip_end\": 212.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q9_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,5,14,4,13,2,8,6,7,14,15,8,7,11,3,9,0,0,15,8,13,4,9,14,5,6,2,8,15,6,3,7,4,1,2,0,5,10,6,8,9,8,10,2,2,5,14,12,0,5,11,12,6,14,2,10,5,11,12,5,14,3,10,1,10,8,13,8,0,2,3,12,7,8,6,0,14,15,2,10,10,2,14,8,4,1,10,9,10,12,7,4,6,4,5,2,6,0,11,13,13,4,13,6,5,10,2,4,5,9,3,15,6,9,12,1,0,6,10,12,11,3,4,12,1,5,8,8,6,4,6,3,8,12,2,14,6,6,9,14,2,7,0,15,7,9,5,1,15,3,1,2,4,9,7,9,14,3,9,1,13,8,4,1,14,2,15,9,4,14,6,8,1,13,4,7,3,1,12,15,8,2,3,0,0,14,10,7,2,2,8,13,15,6,9,3,12,14,1,12,1,15,12,13,8,15,6,5,2,11,3,1,14,10,12,4,12,11,9,6,12,8,0,5,11,0,9,9,7,10,12,0,6,11,1,15,11,10,8,11,12,4,1,13,7,10,4,15,13,0,11,6,9,12,10", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"8\", \"9\", \"8\", \"10\"], \"clip_start\": 39.0, \"clip_end\": 44.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q10_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,5,14,4,13,2,8,6,7,14,15,8,7,11,3,9,0,0,15,8,13,4,9,14,5,6,2,8,15,6,3,7,4,1,2,0,5,10,6,8,9,8,10,2,2,5,14,12,0,5,11,12,6,14,2,10,5,11,12,5,14,3,10,1,10,8,13,8,0,2,3,12,7,8,6,0,14,15,2,10,10,2,14,8,4,1,10,9,10,12,7,4,6,4,5,2,6,0,11,13,13,4,13,6,5,10,2,4,5,9,3,15,6,9,12,1,0,6,10,12,11,3,4,12,1,5,8,8,6,4,6,3,8,12,2,14,6,6,9,14,2,7,0,15,7,9,5,1,15,3,1,2,4,9,7,9,14,3,9,1,13,8,4,1,14,2,15,9,4,14,6,8,1,13,4,7,3,1,12,15,8,2,3,0,0,14,10,7,2,2,8,13,15,6,9,3,12,14,1,12,1,15,12,13,8,15,6,5,2,11,3,1,14,10,12,4,12,11,9,6,12,8,0,5,11,0,9,9,7,10,12,0,6,11,1,15,11,10,8,11,12,4,1,13,7,10,4,15,13,0,11,6,9,12,10", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"6\", \"5\", \"10\"], \"clip_start\": 102.0, \"clip_end\": 107.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,5,14,4,13,2,8,6,7,14,15,8,7,11,3,9,0,0,15,8,13,4,9,14,5,6,2,8,15,6,3,7,4,1,2,0,5,10,6,8,9,8,10,2,2,5,14,12,0,5,11,12,6,14,2,10,5,11,12,5,14,3,10,1,10,8,13,8,0,2,3,12,7,8,6,0,14,15,2,10,10,2,14,8,4,1,10,9,10,12,7,4,6,4,5,2,6,0,11,13,13,4,13,6,5,10,2,4,5,9,3,15,6,9,12,1,0,6,10,12,11,3,4,12,1,5,8,8,6,4,6,3,8,12,2,14,6,6,9,14,2,7,0,15,7,9,5,1,15,3,1,2,4,9,7,9,14,3,9,1,13,8,4,1,14,2,15,9,4,14,6,8,1,13,4,7,3,1,12,15,8,2,3,0,0,14,10,7,2,2,8,13,15,6,9,3,12,14,1,12,1,15,12,13,8,15,6,5,2,11,3,1,14,10,12,4,12,11,9,6,12,8,0,5,11,0,9,9,7,10,12,0,6,11,1,15,11,10,8,11,12,4,1,13,7,10,4,15,13,0,11,6,9,12,10", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"15\", \"9\"], \"clip_start\": 117.0, \"clip_end\": 122.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q12_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,5,14,4,13,2,8,6,7,14,15,8,7,11,3,9,0,0,15,8,13,4,9,14,5,6,2,8,15,6,3,7,4,1,2,0,5,10,6,8,9,8,10,2,2,5,14,12,0,5,11,12,6,14,2,10,5,11,12,5,14,3,10,1,10,8,13,8,0,2,3,12,7,8,6,0,14,15,2,10,10,2,14,8,4,1,10,9,10,12,7,4,6,4,5,2,6,0,11,13,13,4,13,6,5,10,2,4,5,9,3,15,6,9,12,1,0,6,10,12,11,3,4,12,1,5,8,8,6,4,6,3,8,12,2,14,6,6,9,14,2,7,0,15,7,9,5,1,15,3,1,2,4,9,7,9,14,3,9,1,13,8,4,1,14,2,15,9,4,14,6,8,1,13,4,7,3,1,12,15,8,2,3,0,0,14,10,7,2,2,8,13,15,6,9,3,12,14,1,12,1,15,12,13,8,15,6,5,2,11,3,1,14,10,12,4,12,11,9,6,12,8,0,5,11,0,9,9,7,10,12,0,6,11,1,15,11,10,8,11,12,4,1,13,7,10,4,15,13,0,11,6,9,12,10", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"3\"], \"clip_start\": 209.0, \"clip_end\": 212.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q13_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,5,14,4,13,2,8,6,7,14,15,8,7,11,3,9,0,0,15,8,13,4,9,14,5,6,2,8,15,6,3,7,4,1,2,0,5,10,6,8,9,8,10,2,2,5,14,12,0,5,11,12,6,14,2,10,5,11,12,5,14,3,10,1,10,8,13,8,0,2,3,12,7,8,6,0,14,15,2,10,10,2,14,8,4,1,10,9,10,12,7,4,6,4,5,2,6,0,11,13,13,4,13,6,5,10,2,4,5,9,3,15,6,9,12,1,0,6,10,12,11,3,4,12,1,5,8,8,6,4,6,3,8,12,2,14,6,6,9,14,2,7,0,15,7,9,5,1,15,3,1,2,4,9,7,9,14,3,9,1,13,8,4,1,14,2,15,9,4,14,6,8,1,13,4,7,3,1,12,15,8,2,3,0,0,14,10,7,2,2,8,13,15,6,9,3,12,14,1,12,1,15,12,13,8,15,6,5,2,11,3,1,14,10,12,4,12,11,9,6,12,8,0,5,11,0,9,9,7,10,12,0,6,11,1,15,11,10,8,11,12,4,1,13,7,10,4,15,13,0,11,6,9,12,10", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"10\", \"12\", \"11\"], \"clip_start\": 116.0, \"clip_end\": 122.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q14_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,5,14,4,13,2,8,6,7,14,15,8,7,11,3,9,0,0,15,8,13,4,9,14,5,6,2,8,15,6,3,7,4,1,2,0,5,10,6,8,9,8,10,2,2,5,14,12,0,5,11,12,6,14,2,10,5,11,12,5,14,3,10,1,10,8,13,8,0,2,3,12,7,8,6,0,14,15,2,10,10,2,14,8,4,1,10,9,10,12,7,4,6,4,5,2,6,0,11,13,13,4,13,6,5,10,2,4,5,9,3,15,6,9,12,1,0,6,10,12,11,3,4,12,1,5,8,8,6,4,6,3,8,12,2,14,6,6,9,14,2,7,0,15,7,9,5,1,15,3,1,2,4,9,7,9,14,3,9,1,13,8,4,1,14,2,15,9,4,14,6,8,1,13,4,7,3,1,12,15,8,2,3,0,0,14,10,7,2,2,8,13,15,6,9,3,12,14,1,12,1,15,12,13,8,15,6,5,2,11,3,1,14,10,12,4,12,11,9,6,12,8,0,5,11,0,9,9,7,10,12,0,6,11,1,15,11,10,8,11,12,4,1,13,7,10,4,15,13,0,11,6,9,12,10", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"1\", \"13\", \"7\", \"10\", \"4\"], \"clip_start\": 242.0, \"clip_end\": 248.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q15_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,5,14,4,13,2,8,6,7,14,15,8,7,11,3,9,0,0,15,8,13,4,9,14,5,6,2,8,15,6,3,7,4,1,2,0,5,10,6,8,9,8,10,2,2,5,14,12,0,5,11,12,6,14,2,10,5,11,12,5,14,3,10,1,10,8,13,8,0,2,3,12,7,8,6,0,14,15,2,10,10,2,14,8,4,1,10,9,10,12,7,4,6,4,5,2,6,0,11,13,13,4,13,6,5,10,2,4,5,9,3,15,6,9,12,1,0,6,10,12,11,3,4,12,1,5,8,8,6,4,6,3,8,12,2,14,6,6,9,14,2,7,0,15,7,9,5,1,15,3,1,2,4,9,7,9,14,3,9,1,13,8,4,1,14,2,15,9,4,14,6,8,1,13,4,7,3,1,12,15,8,2,3,0,0,14,10,7,2,2,8,13,15,6,9,3,12,14,1,12,1,15,12,13,8,15,6,5,2,11,3,1,14,10,12,4,12,11,9,6,12,8,0,5,11,0,9,9,7,10,12,0,6,11,1,15,11,10,8,11,12,4,1,13,7,10,4,15,13,0,11,6,9,12,10", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"15\", \"5\", \"14\"], \"clip_start\": 97.0, \"clip_end\": 102.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,3,14,5,0,2,12,4,12,6,14,0,14,8,12,1,0,15,6,10,8,14,13,8,6,13,6,0,8,0,8,3,6,10,1,9,10,9,5,8,9,14,12,15,11,0,1,0,10,1,1,13,10,12,13,0,11,12,14,11,15,2,0,4,14,11,8,0,3,13,5,6,12,8,9,9,10,7,3,8,7,14,13,12,11,4,11,13,0,14,0,4,3,12,7,5,9,3,15,5,14,12,9,0,12,11,6,11,3,15,8,3,6,8,3,14,2,15,1,5,5,12,13,11,14,10,10,0,4,14,5,1,15,2,9,11,14,13,3,12,10,6,5,9,2,10,8,11,12,12,12,15,2,3,5,2,1,8,9,9,15,10,12,14,3,2,9,7,11,8,4,11,12,11,3,14,1,13,0,3,1,10,9,12,0,4,7,15,10,7,2,2,14,2,11,14,2,6,8,1,11,9,0,4,10,2,10,13,1,13,11,6,4,13,7,13,12,9,12,1,0,8,13,10,3,2,9,11,15,12,6,4,12,8,12,3,7,11,11,14,2,12,9,1,15,14,13,11,12,7,15,14,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"4\", \"11\", \"13\"], \"clip_start\": 84.0, \"clip_end\": 89.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,3,14,5,0,2,12,4,12,6,14,0,14,8,12,1,0,15,6,10,8,14,13,8,6,13,6,0,8,0,8,3,6,10,1,9,10,9,5,8,9,14,12,15,11,0,1,0,10,1,1,13,10,12,13,0,11,12,14,11,15,2,0,4,14,11,8,0,3,13,5,6,12,8,9,9,10,7,3,8,7,14,13,12,11,4,11,13,0,14,0,4,3,12,7,5,9,3,15,5,14,12,9,0,12,11,6,11,3,15,8,3,6,8,3,14,2,15,1,5,5,12,13,11,14,10,10,0,4,14,5,1,15,2,9,11,14,13,3,12,10,6,5,9,2,10,8,11,12,12,12,15,2,3,5,2,1,8,9,9,15,10,12,14,3,2,9,7,11,8,4,11,12,11,3,14,1,13,0,3,1,10,9,12,0,4,7,15,10,7,2,2,14,2,11,14,2,6,8,1,11,9,0,4,10,2,10,13,1,13,11,6,4,13,7,13,12,9,12,1,0,8,13,10,3,2,9,11,15,12,6,4,12,8,12,3,7,11,11,14,2,12,9,1,15,14,13,11,12,7,15,14,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"12\"], \"clip_start\": 228.0, \"clip_end\": 231.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,3,14,5,0,2,12,4,12,6,14,0,14,8,12,1,0,15,6,10,8,14,13,8,6,13,6,0,8,0,8,3,6,10,1,9,10,9,5,8,9,14,12,15,11,0,1,0,10,1,1,13,10,12,13,0,11,12,14,11,15,2,0,4,14,11,8,0,3,13,5,6,12,8,9,9,10,7,3,8,7,14,13,12,11,4,11,13,0,14,0,4,3,12,7,5,9,3,15,5,14,12,9,0,12,11,6,11,3,15,8,3,6,8,3,14,2,15,1,5,5,12,13,11,14,10,10,0,4,14,5,1,15,2,9,11,14,13,3,12,10,6,5,9,2,10,8,11,12,12,12,15,2,3,5,2,1,8,9,9,15,10,12,14,3,2,9,7,11,8,4,11,12,11,3,14,1,13,0,3,1,10,9,12,0,4,7,15,10,7,2,2,14,2,11,14,2,6,8,1,11,9,0,4,10,2,10,13,1,13,11,6,4,13,7,13,12,9,12,1,0,8,13,10,3,2,9,11,15,12,6,4,12,8,12,3,7,11,11,14,2,12,9,1,15,14,13,11,12,7,15,14,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 40.0, \"clip_end\": 46.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,3,14,5,0,2,12,4,12,6,14,0,14,8,12,1,0,15,6,10,8,14,13,8,6,13,6,0,8,0,8,3,6,10,1,9,10,9,5,8,9,14,12,15,11,0,1,0,10,1,1,13,10,12,13,0,11,12,14,11,15,2,0,4,14,11,8,0,3,13,5,6,12,8,9,9,10,7,3,8,7,14,13,12,11,4,11,13,0,14,0,4,3,12,7,5,9,3,15,5,14,12,9,0,12,11,6,11,3,15,8,3,6,8,3,14,2,15,1,5,5,12,13,11,14,10,10,0,4,14,5,1,15,2,9,11,14,13,3,12,10,6,5,9,2,10,8,11,12,12,12,15,2,3,5,2,1,8,9,9,15,10,12,14,3,2,9,7,11,8,4,11,12,11,3,14,1,13,0,3,1,10,9,12,0,4,7,15,10,7,2,2,14,2,11,14,2,6,8,1,11,9,0,4,10,2,10,13,1,13,11,6,4,13,7,13,12,9,12,1,0,8,13,10,3,2,9,11,15,12,6,4,12,8,12,3,7,11,11,14,2,12,9,1,15,14,13,11,12,7,15,14,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"7\", \"5\"], \"clip_start\": 93.0, \"clip_end\": 97.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,3,14,5,0,2,12,4,12,6,14,0,14,8,12,1,0,15,6,10,8,14,13,8,6,13,6,0,8,0,8,3,6,10,1,9,10,9,5,8,9,14,12,15,11,0,1,0,10,1,1,13,10,12,13,0,11,12,14,11,15,2,0,4,14,11,8,0,3,13,5,6,12,8,9,9,10,7,3,8,7,14,13,12,11,4,11,13,0,14,0,4,3,12,7,5,9,3,15,5,14,12,9,0,12,11,6,11,3,15,8,3,6,8,3,14,2,15,1,5,5,12,13,11,14,10,10,0,4,14,5,1,15,2,9,11,14,13,3,12,10,6,5,9,2,10,8,11,12,12,12,15,2,3,5,2,1,8,9,9,15,10,12,14,3,2,9,7,11,8,4,11,12,11,3,14,1,13,0,3,1,10,9,12,0,4,7,15,10,7,2,2,14,2,11,14,2,6,8,1,11,9,0,4,10,2,10,13,1,13,11,6,4,13,7,13,12,9,12,1,0,8,13,10,3,2,9,11,15,12,6,4,12,8,12,3,7,11,11,14,2,12,9,1,15,14,13,11,12,7,15,14,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"12\", \"7\"], \"clip_start\": 92.0, \"clip_end\": 96.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,3,14,5,0,2,12,4,12,6,14,0,14,8,12,1,0,15,6,10,8,14,13,8,6,13,6,0,8,0,8,3,6,10,1,9,10,9,5,8,9,14,12,15,11,0,1,0,10,1,1,13,10,12,13,0,11,12,14,11,15,2,0,4,14,11,8,0,3,13,5,6,12,8,9,9,10,7,3,8,7,14,13,12,11,4,11,13,0,14,0,4,3,12,7,5,9,3,15,5,14,12,9,0,12,11,6,11,3,15,8,3,6,8,3,14,2,15,1,5,5,12,13,11,14,10,10,0,4,14,5,1,15,2,9,11,14,13,3,12,10,6,5,9,2,10,8,11,12,12,12,15,2,3,5,2,1,8,9,9,15,10,12,14,3,2,9,7,11,8,4,11,12,11,3,14,1,13,0,3,1,10,9,12,0,4,7,15,10,7,2,2,14,2,11,14,2,6,8,1,11,9,0,4,10,2,10,13,1,13,11,6,4,13,7,13,12,9,12,1,0,8,13,10,3,2,9,11,15,12,6,4,12,8,12,3,7,11,11,14,2,12,9,1,15,14,13,11,12,7,15,14,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 235.0, \"clip_end\": 239.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,3,14,5,0,2,12,4,12,6,14,0,14,8,12,1,0,15,6,10,8,14,13,8,6,13,6,0,8,0,8,3,6,10,1,9,10,9,5,8,9,14,12,15,11,0,1,0,10,1,1,13,10,12,13,0,11,12,14,11,15,2,0,4,14,11,8,0,3,13,5,6,12,8,9,9,10,7,3,8,7,14,13,12,11,4,11,13,0,14,0,4,3,12,7,5,9,3,15,5,14,12,9,0,12,11,6,11,3,15,8,3,6,8,3,14,2,15,1,5,5,12,13,11,14,10,10,0,4,14,5,1,15,2,9,11,14,13,3,12,10,6,5,9,2,10,8,11,12,12,12,15,2,3,5,2,1,8,9,9,15,10,12,14,3,2,9,7,11,8,4,11,12,11,3,14,1,13,0,3,1,10,9,12,0,4,7,15,10,7,2,2,14,2,11,14,2,6,8,1,11,9,0,4,10,2,10,13,1,13,11,6,4,13,7,13,12,9,12,1,0,8,13,10,3,2,9,11,15,12,6,4,12,8,12,3,7,11,11,14,2,12,9,1,15,14,13,11,12,7,15,14,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"12\", \"12\", \"12\"], \"clip_start\": 147.0, \"clip_end\": 152.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,3,14,5,0,2,12,4,12,6,14,0,14,8,12,1,0,15,6,10,8,14,13,8,6,13,6,0,8,0,8,3,6,10,1,9,10,9,5,8,9,14,12,15,11,0,1,0,10,1,1,13,10,12,13,0,11,12,14,11,15,2,0,4,14,11,8,0,3,13,5,6,12,8,9,9,10,7,3,8,7,14,13,12,11,4,11,13,0,14,0,4,3,12,7,5,9,3,15,5,14,12,9,0,12,11,6,11,3,15,8,3,6,8,3,14,2,15,1,5,5,12,13,11,14,10,10,0,4,14,5,1,15,2,9,11,14,13,3,12,10,6,5,9,2,10,8,11,12,12,12,15,2,3,5,2,1,8,9,9,15,10,12,14,3,2,9,7,11,8,4,11,12,11,3,14,1,13,0,3,1,10,9,12,0,4,7,15,10,7,2,2,14,2,11,14,2,6,8,1,11,9,0,4,10,2,10,13,1,13,11,6,4,13,7,13,12,9,12,1,0,8,13,10,3,2,9,11,15,12,6,4,12,8,12,3,7,11,11,14,2,12,9,1,15,14,13,11,12,7,15,14,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"3\", \"6\", \"10\"], \"clip_start\": 30.0, \"clip_end\": 35.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,3,14,5,0,2,12,4,12,6,14,0,14,8,12,1,0,15,6,10,8,14,13,8,6,13,6,0,8,0,8,3,6,10,1,9,10,9,5,8,9,14,12,15,11,0,1,0,10,1,1,13,10,12,13,0,11,12,14,11,15,2,0,4,14,11,8,0,3,13,5,6,12,8,9,9,10,7,3,8,7,14,13,12,11,4,11,13,0,14,0,4,3,12,7,5,9,3,15,5,14,12,9,0,12,11,6,11,3,15,8,3,6,8,3,14,2,15,1,5,5,12,13,11,14,10,10,0,4,14,5,1,15,2,9,11,14,13,3,12,10,6,5,9,2,10,8,11,12,12,12,15,2,3,5,2,1,8,9,9,15,10,12,14,3,2,9,7,11,8,4,11,12,11,3,14,1,13,0,3,1,10,9,12,0,4,7,15,10,7,2,2,14,2,11,14,2,6,8,1,11,9,0,4,10,2,10,13,1,13,11,6,4,13,7,13,12,9,12,1,0,8,13,10,3,2,9,11,15,12,6,4,12,8,12,3,7,11,11,14,2,12,9,1,15,14,13,11,12,7,15,14,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"8\", \"12\", \"3\"], \"clip_start\": 232.0, \"clip_end\": 237.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,3,14,5,0,2,12,4,12,6,14,0,14,8,12,1,0,15,6,10,8,14,13,8,6,13,6,0,8,0,8,3,6,10,1,9,10,9,5,8,9,14,12,15,11,0,1,0,10,1,1,13,10,12,13,0,11,12,14,11,15,2,0,4,14,11,8,0,3,13,5,6,12,8,9,9,10,7,3,8,7,14,13,12,11,4,11,13,0,14,0,4,3,12,7,5,9,3,15,5,14,12,9,0,12,11,6,11,3,15,8,3,6,8,3,14,2,15,1,5,5,12,13,11,14,10,10,0,4,14,5,1,15,2,9,11,14,13,3,12,10,6,5,9,2,10,8,11,12,12,12,15,2,3,5,2,1,8,9,9,15,10,12,14,3,2,9,7,11,8,4,11,12,11,3,14,1,13,0,3,1,10,9,12,0,4,7,15,10,7,2,2,14,2,11,14,2,6,8,1,11,9,0,4,10,2,10,13,1,13,11,6,4,13,7,13,12,9,12,1,0,8,13,10,3,2,9,11,15,12,6,4,12,8,12,3,7,11,11,14,2,12,9,1,15,14,13,11,12,7,15,14,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 94.0, \"clip_end\": 99.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,3,14,5,0,2,12,4,12,6,14,0,14,8,12,1,0,15,6,10,8,14,13,8,6,13,6,0,8,0,8,3,6,10,1,9,10,9,5,8,9,14,12,15,11,0,1,0,10,1,1,13,10,12,13,0,11,12,14,11,15,2,0,4,14,11,8,0,3,13,5,6,12,8,9,9,10,7,3,8,7,14,13,12,11,4,11,13,0,14,0,4,3,12,7,5,9,3,15,5,14,12,9,0,12,11,6,11,3,15,8,3,6,8,3,14,2,15,1,5,5,12,13,11,14,10,10,0,4,14,5,1,15,2,9,11,14,13,3,12,10,6,5,9,2,10,8,11,12,12,12,15,2,3,5,2,1,8,9,9,15,10,12,14,3,2,9,7,11,8,4,11,12,11,3,14,1,13,0,3,1,10,9,12,0,4,7,15,10,7,2,2,14,2,11,14,2,6,8,1,11,9,0,4,10,2,10,13,1,13,11,6,4,13,7,13,12,9,12,1,0,8,13,10,3,2,9,11,15,12,6,4,12,8,12,3,7,11,11,14,2,12,9,1,15,14,13,11,12,7,15,14,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"14\", \"5\", \"1\", \"15\"], \"clip_start\": 129.0, \"clip_end\": 134.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,3,14,5,0,2,12,4,12,6,14,0,14,8,12,1,0,15,6,10,8,14,13,8,6,13,6,0,8,0,8,3,6,10,1,9,10,9,5,8,9,14,12,15,11,0,1,0,10,1,1,13,10,12,13,0,11,12,14,11,15,2,0,4,14,11,8,0,3,13,5,6,12,8,9,9,10,7,3,8,7,14,13,12,11,4,11,13,0,14,0,4,3,12,7,5,9,3,15,5,14,12,9,0,12,11,6,11,3,15,8,3,6,8,3,14,2,15,1,5,5,12,13,11,14,10,10,0,4,14,5,1,15,2,9,11,14,13,3,12,10,6,5,9,2,10,8,11,12,12,12,15,2,3,5,2,1,8,9,9,15,10,12,14,3,2,9,7,11,8,4,11,12,11,3,14,1,13,0,3,1,10,9,12,0,4,7,15,10,7,2,2,14,2,11,14,2,6,8,1,11,9,0,4,10,2,10,13,1,13,11,6,4,13,7,13,12,9,12,1,0,8,13,10,3,2,9,11,15,12,6,4,12,8,12,3,7,11,11,14,2,12,9,1,15,14,13,11,12,7,15,14,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 60.0, \"clip_end\": 66.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,3,14,5,0,2,12,4,12,6,14,0,14,8,12,1,0,15,6,10,8,14,13,8,6,13,6,0,8,0,8,3,6,10,1,9,10,9,5,8,9,14,12,15,11,0,1,0,10,1,1,13,10,12,13,0,11,12,14,11,15,2,0,4,14,11,8,0,3,13,5,6,12,8,9,9,10,7,3,8,7,14,13,12,11,4,11,13,0,14,0,4,3,12,7,5,9,3,15,5,14,12,9,0,12,11,6,11,3,15,8,3,6,8,3,14,2,15,1,5,5,12,13,11,14,10,10,0,4,14,5,1,15,2,9,11,14,13,3,12,10,6,5,9,2,10,8,11,12,12,12,15,2,3,5,2,1,8,9,9,15,10,12,14,3,2,9,7,11,8,4,11,12,11,3,14,1,13,0,3,1,10,9,12,0,4,7,15,10,7,2,2,14,2,11,14,2,6,8,1,11,9,0,4,10,2,10,13,1,13,11,6,4,13,7,13,12,9,12,1,0,8,13,10,3,2,9,11,15,12,6,4,12,8,12,3,7,11,11,14,2,12,9,1,15,14,13,11,12,7,15,14,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"1\", \"0\", \"8\", \"13\"], \"clip_start\": 218.0, \"clip_end\": 224.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,3,14,5,0,2,12,4,12,6,14,0,14,8,12,1,0,15,6,10,8,14,13,8,6,13,6,0,8,0,8,3,6,10,1,9,10,9,5,8,9,14,12,15,11,0,1,0,10,1,1,13,10,12,13,0,11,12,14,11,15,2,0,4,14,11,8,0,3,13,5,6,12,8,9,9,10,7,3,8,7,14,13,12,11,4,11,13,0,14,0,4,3,12,7,5,9,3,15,5,14,12,9,0,12,11,6,11,3,15,8,3,6,8,3,14,2,15,1,5,5,12,13,11,14,10,10,0,4,14,5,1,15,2,9,11,14,13,3,12,10,6,5,9,2,10,8,11,12,12,12,15,2,3,5,2,1,8,9,9,15,10,12,14,3,2,9,7,11,8,4,11,12,11,3,14,1,13,0,3,1,10,9,12,0,4,7,15,10,7,2,2,14,2,11,14,2,6,8,1,11,9,0,4,10,2,10,13,1,13,11,6,4,13,7,13,12,9,12,1,0,8,13,10,3,2,9,11,15,12,6,4,12,8,12,3,7,11,11,14,2,12,9,1,15,14,13,11,12,7,15,14,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"6\", \"14\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,3,14,5,0,2,12,4,12,6,14,0,14,8,12,1,0,15,6,10,8,14,13,8,6,13,6,0,8,0,8,3,6,10,1,9,10,9,5,8,9,14,12,15,11,0,1,0,10,1,1,13,10,12,13,0,11,12,14,11,15,2,0,4,14,11,8,0,3,13,5,6,12,8,9,9,10,7,3,8,7,14,13,12,11,4,11,13,0,14,0,4,3,12,7,5,9,3,15,5,14,12,9,0,12,11,6,11,3,15,8,3,6,8,3,14,2,15,1,5,5,12,13,11,14,10,10,0,4,14,5,1,15,2,9,11,14,13,3,12,10,6,5,9,2,10,8,11,12,12,12,15,2,3,5,2,1,8,9,9,15,10,12,14,3,2,9,7,11,8,4,11,12,11,3,14,1,13,0,3,1,10,9,12,0,4,7,15,10,7,2,2,14,2,11,14,2,6,8,1,11,9,0,4,10,2,10,13,1,13,11,6,4,13,7,13,12,9,12,1,0,8,13,10,3,2,9,11,15,12,6,4,12,8,12,3,7,11,11,14,2,12,9,1,15,14,13,11,12,7,15,14,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 137.0, \"clip_end\": 140.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,15,3,14,5,0,2,12,4,12,6,14,0,14,8,12,1,0,15,6,10,8,14,13,8,6,13,6,0,8,0,8,3,6,10,1,9,10,9,5,8,9,14,12,15,11,0,1,0,10,1,1,13,10,12,13,0,11,12,14,11,15,2,0,4,14,11,8,0,3,13,5,6,12,8,9,9,10,7,3,8,7,14,13,12,11,4,11,13,0,14,0,4,3,12,7,5,9,3,15,5,14,12,9,0,12,11,6,11,3,15,8,3,6,8,3,14,2,15,1,5,5,12,13,11,14,10,10,0,4,14,5,1,15,2,9,11,14,13,3,12,10,6,5,9,2,10,8,11,12,12,12,15,2,3,5,2,1,8,9,9,15,10,12,14,3,2,9,7,11,8,4,11,12,11,3,14,1,13,0,3,1,10,9,12,0,4,7,15,10,7,2,2,14,2,11,14,2,6,8,1,11,9,0,4,10,2,10,13,1,13,11,6,4,13,7,13,12,9,12,1,0,8,13,10,3,2,9,11,15,12,6,4,12,8,12,3,7,11,11,14,2,12,9,1,15,14,13,11,12,7,15,14,9,11,0", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 1.0, \"clip_end\": 7.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,15,4,15,7,13,11,12,0,11,11,9,3,12,10,15,2,8,5,5,14,4,1,13,3,3,6,10,14,10,0,10,15,7,9,11,1,5,9,0,5,3,2,9,12,1,12,8,11,4,5,10,8,11,13,6,9,11,3,6,2,8,11,9,14,4,8,9,5,13,10,0,8,0,9,0,7,10,4,7,6,5,10,12,9,5,6,6,13,13,12,6,9,11,5,12,15,8,10,14,8,14,4,13,10,10,11,0,9,2,12,11,6,1,1,6,8,5,5,0,8,11,5,11,1,7,7,0,15,15,8,2,12,13,15,3,2,6,14,11,1,12,8,15,10,1,7,4,10,11,14,12,9,12,5,0,6,4,3,3,3,2,14,8,3,11,2,8,6,14,15,10,12,4,3,6,8,10,5,9,10,2,2,7,11,7,11,1,6,14,10,9,2,7,7,11,14,8,14,0,8,10,10,0,10,1,9,6,9,1,6,14,8,12,0,7,4,9,2,7,15,4,2,9,9,6,10,4,12,6,5,15,1,11,12,10,0,5,8,0,14,8,1,13,4,7,3,6,11,2,7,13,0,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"11\", \"12\", \"10\", \"0\", \"5\"], \"clip_start\": 233.0, \"clip_end\": 239.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,15,4,15,7,13,11,12,0,11,11,9,3,12,10,15,2,8,5,5,14,4,1,13,3,3,6,10,14,10,0,10,15,7,9,11,1,5,9,0,5,3,2,9,12,1,12,8,11,4,5,10,8,11,13,6,9,11,3,6,2,8,11,9,14,4,8,9,5,13,10,0,8,0,9,0,7,10,4,7,6,5,10,12,9,5,6,6,13,13,12,6,9,11,5,12,15,8,10,14,8,14,4,13,10,10,11,0,9,2,12,11,6,1,1,6,8,5,5,0,8,11,5,11,1,7,7,0,15,15,8,2,12,13,15,3,2,6,14,11,1,12,8,15,10,1,7,4,10,11,14,12,9,12,5,0,6,4,3,3,3,2,14,8,3,11,2,8,6,14,15,10,12,4,3,6,8,10,5,9,10,2,2,7,11,7,11,1,6,14,10,9,2,7,7,11,14,8,14,0,8,10,10,0,10,1,9,6,9,1,6,14,8,12,0,7,4,9,2,7,15,4,2,9,9,6,10,4,12,6,5,15,1,11,12,10,0,5,8,0,14,8,1,13,4,7,3,6,11,2,7,13,0,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"12\"], \"clip_start\": 227.0, \"clip_end\": 230.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,15,4,15,7,13,11,12,0,11,11,9,3,12,10,15,2,8,5,5,14,4,1,13,3,3,6,10,14,10,0,10,15,7,9,11,1,5,9,0,5,3,2,9,12,1,12,8,11,4,5,10,8,11,13,6,9,11,3,6,2,8,11,9,14,4,8,9,5,13,10,0,8,0,9,0,7,10,4,7,6,5,10,12,9,5,6,6,13,13,12,6,9,11,5,12,15,8,10,14,8,14,4,13,10,10,11,0,9,2,12,11,6,1,1,6,8,5,5,0,8,11,5,11,1,7,7,0,15,15,8,2,12,13,15,3,2,6,14,11,1,12,8,15,10,1,7,4,10,11,14,12,9,12,5,0,6,4,3,3,3,2,14,8,3,11,2,8,6,14,15,10,12,4,3,6,8,10,5,9,10,2,2,7,11,7,11,1,6,14,10,9,2,7,7,11,14,8,14,0,8,10,10,0,10,1,9,6,9,1,6,14,8,12,0,7,4,9,2,7,15,4,2,9,9,6,10,4,12,6,5,15,1,11,12,10,0,5,8,0,14,8,1,13,4,7,3,6,11,2,7,13,0,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"1\", \"13\"], \"clip_start\": 22.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,15,4,15,7,13,11,12,0,11,11,9,3,12,10,15,2,8,5,5,14,4,1,13,3,3,6,10,14,10,0,10,15,7,9,11,1,5,9,0,5,3,2,9,12,1,12,8,11,4,5,10,8,11,13,6,9,11,3,6,2,8,11,9,14,4,8,9,5,13,10,0,8,0,9,0,7,10,4,7,6,5,10,12,9,5,6,6,13,13,12,6,9,11,5,12,15,8,10,14,8,14,4,13,10,10,11,0,9,2,12,11,6,1,1,6,8,5,5,0,8,11,5,11,1,7,7,0,15,15,8,2,12,13,15,3,2,6,14,11,1,12,8,15,10,1,7,4,10,11,14,12,9,12,5,0,6,4,3,3,3,2,14,8,3,11,2,8,6,14,15,10,12,4,3,6,8,10,5,9,10,2,2,7,11,7,11,1,6,14,10,9,2,7,7,11,14,8,14,0,8,10,10,0,10,1,9,6,9,1,6,14,8,12,0,7,4,9,2,7,15,4,2,9,9,6,10,4,12,6,5,15,1,11,12,10,0,5,8,0,14,8,1,13,4,7,3,6,11,2,7,13,0,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"5\"], \"clip_start\": 153.0, \"clip_end\": 156.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,15,4,15,7,13,11,12,0,11,11,9,3,12,10,15,2,8,5,5,14,4,1,13,3,3,6,10,14,10,0,10,15,7,9,11,1,5,9,0,5,3,2,9,12,1,12,8,11,4,5,10,8,11,13,6,9,11,3,6,2,8,11,9,14,4,8,9,5,13,10,0,8,0,9,0,7,10,4,7,6,5,10,12,9,5,6,6,13,13,12,6,9,11,5,12,15,8,10,14,8,14,4,13,10,10,11,0,9,2,12,11,6,1,1,6,8,5,5,0,8,11,5,11,1,7,7,0,15,15,8,2,12,13,15,3,2,6,14,11,1,12,8,15,10,1,7,4,10,11,14,12,9,12,5,0,6,4,3,3,3,2,14,8,3,11,2,8,6,14,15,10,12,4,3,6,8,10,5,9,10,2,2,7,11,7,11,1,6,14,10,9,2,7,7,11,14,8,14,0,8,10,10,0,10,1,9,6,9,1,6,14,8,12,0,7,4,9,2,7,15,4,2,9,9,6,10,4,12,6,5,15,1,11,12,10,0,5,8,0,14,8,1,13,4,7,3,6,11,2,7,13,0,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"8\", \"5\", \"5\", \"14\"], \"clip_start\": 17.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,15,4,15,7,13,11,12,0,11,11,9,3,12,10,15,2,8,5,5,14,4,1,13,3,3,6,10,14,10,0,10,15,7,9,11,1,5,9,0,5,3,2,9,12,1,12,8,11,4,5,10,8,11,13,6,9,11,3,6,2,8,11,9,14,4,8,9,5,13,10,0,8,0,9,0,7,10,4,7,6,5,10,12,9,5,6,6,13,13,12,6,9,11,5,12,15,8,10,14,8,14,4,13,10,10,11,0,9,2,12,11,6,1,1,6,8,5,5,0,8,11,5,11,1,7,7,0,15,15,8,2,12,13,15,3,2,6,14,11,1,12,8,15,10,1,7,4,10,11,14,12,9,12,5,0,6,4,3,3,3,2,14,8,3,11,2,8,6,14,15,10,12,4,3,6,8,10,5,9,10,2,2,7,11,7,11,1,6,14,10,9,2,7,7,11,14,8,14,0,8,10,10,0,10,1,9,6,9,1,6,14,8,12,0,7,4,9,2,7,15,4,2,9,9,6,10,4,12,6,5,15,1,11,12,10,0,5,8,0,14,8,1,13,4,7,3,6,11,2,7,13,0,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"10\", \"11\", \"0\", \"9\"], \"clip_start\": 105.0, \"clip_end\": 110.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,15,4,15,7,13,11,12,0,11,11,9,3,12,10,15,2,8,5,5,14,4,1,13,3,3,6,10,14,10,0,10,15,7,9,11,1,5,9,0,5,3,2,9,12,1,12,8,11,4,5,10,8,11,13,6,9,11,3,6,2,8,11,9,14,4,8,9,5,13,10,0,8,0,9,0,7,10,4,7,6,5,10,12,9,5,6,6,13,13,12,6,9,11,5,12,15,8,10,14,8,14,4,13,10,10,11,0,9,2,12,11,6,1,1,6,8,5,5,0,8,11,5,11,1,7,7,0,15,15,8,2,12,13,15,3,2,6,14,11,1,12,8,15,10,1,7,4,10,11,14,12,9,12,5,0,6,4,3,3,3,2,14,8,3,11,2,8,6,14,15,10,12,4,3,6,8,10,5,9,10,2,2,7,11,7,11,1,6,14,10,9,2,7,7,11,14,8,14,0,8,10,10,0,10,1,9,6,9,1,6,14,8,12,0,7,4,9,2,7,15,4,2,9,9,6,10,4,12,6,5,15,1,11,12,10,0,5,8,0,14,8,1,13,4,7,3,6,11,2,7,13,0,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 158.0, \"clip_end\": 162.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,15,4,15,7,13,11,12,0,11,11,9,3,12,10,15,2,8,5,5,14,4,1,13,3,3,6,10,14,10,0,10,15,7,9,11,1,5,9,0,5,3,2,9,12,1,12,8,11,4,5,10,8,11,13,6,9,11,3,6,2,8,11,9,14,4,8,9,5,13,10,0,8,0,9,0,7,10,4,7,6,5,10,12,9,5,6,6,13,13,12,6,9,11,5,12,15,8,10,14,8,14,4,13,10,10,11,0,9,2,12,11,6,1,1,6,8,5,5,0,8,11,5,11,1,7,7,0,15,15,8,2,12,13,15,3,2,6,14,11,1,12,8,15,10,1,7,4,10,11,14,12,9,12,5,0,6,4,3,3,3,2,14,8,3,11,2,8,6,14,15,10,12,4,3,6,8,10,5,9,10,2,2,7,11,7,11,1,6,14,10,9,2,7,7,11,14,8,14,0,8,10,10,0,10,1,9,6,9,1,6,14,8,12,0,7,4,9,2,7,15,4,2,9,9,6,10,4,12,6,5,15,1,11,12,10,0,5,8,0,14,8,1,13,4,7,3,6,11,2,7,13,0,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"12\", \"10\", \"15\", \"2\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,15,4,15,7,13,11,12,0,11,11,9,3,12,10,15,2,8,5,5,14,4,1,13,3,3,6,10,14,10,0,10,15,7,9,11,1,5,9,0,5,3,2,9,12,1,12,8,11,4,5,10,8,11,13,6,9,11,3,6,2,8,11,9,14,4,8,9,5,13,10,0,8,0,9,0,7,10,4,7,6,5,10,12,9,5,6,6,13,13,12,6,9,11,5,12,15,8,10,14,8,14,4,13,10,10,11,0,9,2,12,11,6,1,1,6,8,5,5,0,8,11,5,11,1,7,7,0,15,15,8,2,12,13,15,3,2,6,14,11,1,12,8,15,10,1,7,4,10,11,14,12,9,12,5,0,6,4,3,3,3,2,14,8,3,11,2,8,6,14,15,10,12,4,3,6,8,10,5,9,10,2,2,7,11,7,11,1,6,14,10,9,2,7,7,11,14,8,14,0,8,10,10,0,10,1,9,6,9,1,6,14,8,12,0,7,4,9,2,7,15,4,2,9,9,6,10,4,12,6,5,15,1,11,12,10,0,5,8,0,14,8,1,13,4,7,3,6,11,2,7,13,0,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"5\", \"5\", \"0\", \"8\"], \"clip_start\": 117.0, \"clip_end\": 122.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,15,4,15,7,13,11,12,0,11,11,9,3,12,10,15,2,8,5,5,14,4,1,13,3,3,6,10,14,10,0,10,15,7,9,11,1,5,9,0,5,3,2,9,12,1,12,8,11,4,5,10,8,11,13,6,9,11,3,6,2,8,11,9,14,4,8,9,5,13,10,0,8,0,9,0,7,10,4,7,6,5,10,12,9,5,6,6,13,13,12,6,9,11,5,12,15,8,10,14,8,14,4,13,10,10,11,0,9,2,12,11,6,1,1,6,8,5,5,0,8,11,5,11,1,7,7,0,15,15,8,2,12,13,15,3,2,6,14,11,1,12,8,15,10,1,7,4,10,11,14,12,9,12,5,0,6,4,3,3,3,2,14,8,3,11,2,8,6,14,15,10,12,4,3,6,8,10,5,9,10,2,2,7,11,7,11,1,6,14,10,9,2,7,7,11,14,8,14,0,8,10,10,0,10,1,9,6,9,1,6,14,8,12,0,7,4,9,2,7,15,4,2,9,9,6,10,4,12,6,5,15,1,11,12,10,0,5,8,0,14,8,1,13,4,7,3,6,11,2,7,13,0,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 222.0, \"clip_end\": 226.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,15,4,15,7,13,11,12,0,11,11,9,3,12,10,15,2,8,5,5,14,4,1,13,3,3,6,10,14,10,0,10,15,7,9,11,1,5,9,0,5,3,2,9,12,1,12,8,11,4,5,10,8,11,13,6,9,11,3,6,2,8,11,9,14,4,8,9,5,13,10,0,8,0,9,0,7,10,4,7,6,5,10,12,9,5,6,6,13,13,12,6,9,11,5,12,15,8,10,14,8,14,4,13,10,10,11,0,9,2,12,11,6,1,1,6,8,5,5,0,8,11,5,11,1,7,7,0,15,15,8,2,12,13,15,3,2,6,14,11,1,12,8,15,10,1,7,4,10,11,14,12,9,12,5,0,6,4,3,3,3,2,14,8,3,11,2,8,6,14,15,10,12,4,3,6,8,10,5,9,10,2,2,7,11,7,11,1,6,14,10,9,2,7,7,11,14,8,14,0,8,10,10,0,10,1,9,6,9,1,6,14,8,12,0,7,4,9,2,7,15,4,2,9,9,6,10,4,12,6,5,15,1,11,12,10,0,5,8,0,14,8,1,13,4,7,3,6,11,2,7,13,0,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"1\", \"13\", \"3\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,15,4,15,7,13,11,12,0,11,11,9,3,12,10,15,2,8,5,5,14,4,1,13,3,3,6,10,14,10,0,10,15,7,9,11,1,5,9,0,5,3,2,9,12,1,12,8,11,4,5,10,8,11,13,6,9,11,3,6,2,8,11,9,14,4,8,9,5,13,10,0,8,0,9,0,7,10,4,7,6,5,10,12,9,5,6,6,13,13,12,6,9,11,5,12,15,8,10,14,8,14,4,13,10,10,11,0,9,2,12,11,6,1,1,6,8,5,5,0,8,11,5,11,1,7,7,0,15,15,8,2,12,13,15,3,2,6,14,11,1,12,8,15,10,1,7,4,10,11,14,12,9,12,5,0,6,4,3,3,3,2,14,8,3,11,2,8,6,14,15,10,12,4,3,6,8,10,5,9,10,2,2,7,11,7,11,1,6,14,10,9,2,7,7,11,14,8,14,0,8,10,10,0,10,1,9,6,9,1,6,14,8,12,0,7,4,9,2,7,15,4,2,9,9,6,10,4,12,6,5,15,1,11,12,10,0,5,8,0,14,8,1,13,4,7,3,6,11,2,7,13,0,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"14\", \"11\"], \"clip_start\": 137.0, \"clip_end\": 141.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,15,4,15,7,13,11,12,0,11,11,9,3,12,10,15,2,8,5,5,14,4,1,13,3,3,6,10,14,10,0,10,15,7,9,11,1,5,9,0,5,3,2,9,12,1,12,8,11,4,5,10,8,11,13,6,9,11,3,6,2,8,11,9,14,4,8,9,5,13,10,0,8,0,9,0,7,10,4,7,6,5,10,12,9,5,6,6,13,13,12,6,9,11,5,12,15,8,10,14,8,14,4,13,10,10,11,0,9,2,12,11,6,1,1,6,8,5,5,0,8,11,5,11,1,7,7,0,15,15,8,2,12,13,15,3,2,6,14,11,1,12,8,15,10,1,7,4,10,11,14,12,9,12,5,0,6,4,3,3,3,2,14,8,3,11,2,8,6,14,15,10,12,4,3,6,8,10,5,9,10,2,2,7,11,7,11,1,6,14,10,9,2,7,7,11,14,8,14,0,8,10,10,0,10,1,9,6,9,1,6,14,8,12,0,7,4,9,2,7,15,4,2,9,9,6,10,4,12,6,5,15,1,11,12,10,0,5,8,0,14,8,1,13,4,7,3,6,11,2,7,13,0,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"13\", \"15\", \"3\", \"2\"], \"clip_start\": 132.0, \"clip_end\": 138.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,15,4,15,7,13,11,12,0,11,11,9,3,12,10,15,2,8,5,5,14,4,1,13,3,3,6,10,14,10,0,10,15,7,9,11,1,5,9,0,5,3,2,9,12,1,12,8,11,4,5,10,8,11,13,6,9,11,3,6,2,8,11,9,14,4,8,9,5,13,10,0,8,0,9,0,7,10,4,7,6,5,10,12,9,5,6,6,13,13,12,6,9,11,5,12,15,8,10,14,8,14,4,13,10,10,11,0,9,2,12,11,6,1,1,6,8,5,5,0,8,11,5,11,1,7,7,0,15,15,8,2,12,13,15,3,2,6,14,11,1,12,8,15,10,1,7,4,10,11,14,12,9,12,5,0,6,4,3,3,3,2,14,8,3,11,2,8,6,14,15,10,12,4,3,6,8,10,5,9,10,2,2,7,11,7,11,1,6,14,10,9,2,7,7,11,14,8,14,0,8,10,10,0,10,1,9,6,9,1,6,14,8,12,0,7,4,9,2,7,15,4,2,9,9,6,10,4,12,6,5,15,1,11,12,10,0,5,8,0,14,8,1,13,4,7,3,6,11,2,7,13,0,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"6\", \"10\", \"14\", \"10\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,15,4,15,7,13,11,12,0,11,11,9,3,12,10,15,2,8,5,5,14,4,1,13,3,3,6,10,14,10,0,10,15,7,9,11,1,5,9,0,5,3,2,9,12,1,12,8,11,4,5,10,8,11,13,6,9,11,3,6,2,8,11,9,14,4,8,9,5,13,10,0,8,0,9,0,7,10,4,7,6,5,10,12,9,5,6,6,13,13,12,6,9,11,5,12,15,8,10,14,8,14,4,13,10,10,11,0,9,2,12,11,6,1,1,6,8,5,5,0,8,11,5,11,1,7,7,0,15,15,8,2,12,13,15,3,2,6,14,11,1,12,8,15,10,1,7,4,10,11,14,12,9,12,5,0,6,4,3,3,3,2,14,8,3,11,2,8,6,14,15,10,12,4,3,6,8,10,5,9,10,2,2,7,11,7,11,1,6,14,10,9,2,7,7,11,14,8,14,0,8,10,10,0,10,1,9,6,9,1,6,14,8,12,0,7,4,9,2,7,15,4,2,9,9,6,10,4,12,6,5,15,1,11,12,10,0,5,8,0,14,8,1,13,4,7,3,6,11,2,7,13,0,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"9\", \"9\", \"6\", \"10\"], \"clip_start\": 222.0, \"clip_end\": 228.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,4,15,4,15,7,13,11,12,0,11,11,9,3,12,10,15,2,8,5,5,14,4,1,13,3,3,6,10,14,10,0,10,15,7,9,11,1,5,9,0,5,3,2,9,12,1,12,8,11,4,5,10,8,11,13,6,9,11,3,6,2,8,11,9,14,4,8,9,5,13,10,0,8,0,9,0,7,10,4,7,6,5,10,12,9,5,6,6,13,13,12,6,9,11,5,12,15,8,10,14,8,14,4,13,10,10,11,0,9,2,12,11,6,1,1,6,8,5,5,0,8,11,5,11,1,7,7,0,15,15,8,2,12,13,15,3,2,6,14,11,1,12,8,15,10,1,7,4,10,11,14,12,9,12,5,0,6,4,3,3,3,2,14,8,3,11,2,8,6,14,15,10,12,4,3,6,8,10,5,9,10,2,2,7,11,7,11,1,6,14,10,9,2,7,7,11,14,8,14,0,8,10,10,0,10,1,9,6,9,1,6,14,8,12,0,7,4,9,2,7,15,4,2,9,9,6,10,4,12,6,5,15,1,11,12,10,0,5,8,0,14,8,1,13,4,7,3,6,11,2,7,13,0,9,6", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"7\", \"8\", \"10\", \"0\", \"1\"], \"clip_start\": 13.0, \"clip_end\": 19.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,15,15,13,0,15,11,5,9,15,11,6,4,7,8,10,0,1,3,0,2,1,3,14,10,14,1,0,3,0,8,8,2,6,12,8,10,15,15,10,7,1,7,2,10,3,12,1,5,10,3,6,7,3,14,11,15,0,13,4,13,7,6,6,8,15,10,3,1,12,8,5,6,0,3,2,0,14,15,14,1,3,11,11,12,10,14,9,6,1,8,0,13,14,15,13,8,11,1,14,6,9,0,9,9,4,12,3,14,6,0,0,13,8,11,2,2,13,6,11,7,2,12,11,8,14,1,12,5,15,2,5,0,7,1,12,7,6,11,12,7,12,0,11,9,5,4,13,4,11,6,9,15,9,11,12,4,14,13,11,1,10,4,3,8,12,5,2,7,15,7,8,2,12,15,15,3,8,13,6,15,4,10,7,7,8,7,10,7,7,8,0,0,6,12,2,14,5,1,13,5,1,15,0,3,0,10,10,6,12,12,13,13,2,13,5,10,13,11,15,6,12,3,3,13,10,3,5,15,4,5,12,1,5,15,4,10,12,7,9,12,7,3,5,4,12,9,7,15,1,2,15,8,14,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 154.0, \"clip_end\": 160.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,15,15,13,0,15,11,5,9,15,11,6,4,7,8,10,0,1,3,0,2,1,3,14,10,14,1,0,3,0,8,8,2,6,12,8,10,15,15,10,7,1,7,2,10,3,12,1,5,10,3,6,7,3,14,11,15,0,13,4,13,7,6,6,8,15,10,3,1,12,8,5,6,0,3,2,0,14,15,14,1,3,11,11,12,10,14,9,6,1,8,0,13,14,15,13,8,11,1,14,6,9,0,9,9,4,12,3,14,6,0,0,13,8,11,2,2,13,6,11,7,2,12,11,8,14,1,12,5,15,2,5,0,7,1,12,7,6,11,12,7,12,0,11,9,5,4,13,4,11,6,9,15,9,11,12,4,14,13,11,1,10,4,3,8,12,5,2,7,15,7,8,2,12,15,15,3,8,13,6,15,4,10,7,7,8,7,10,7,7,8,0,0,6,12,2,14,5,1,13,5,1,15,0,3,0,10,10,6,12,12,13,13,2,13,5,10,13,11,15,6,12,3,3,13,10,3,5,15,4,5,12,1,5,15,4,10,12,7,9,12,7,3,5,4,12,9,7,15,1,2,15,8,14,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"7\", \"8\", \"10\", \"0\"], \"clip_start\": 12.0, \"clip_end\": 18.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,15,15,13,0,15,11,5,9,15,11,6,4,7,8,10,0,1,3,0,2,1,3,14,10,14,1,0,3,0,8,8,2,6,12,8,10,15,15,10,7,1,7,2,10,3,12,1,5,10,3,6,7,3,14,11,15,0,13,4,13,7,6,6,8,15,10,3,1,12,8,5,6,0,3,2,0,14,15,14,1,3,11,11,12,10,14,9,6,1,8,0,13,14,15,13,8,11,1,14,6,9,0,9,9,4,12,3,14,6,0,0,13,8,11,2,2,13,6,11,7,2,12,11,8,14,1,12,5,15,2,5,0,7,1,12,7,6,11,12,7,12,0,11,9,5,4,13,4,11,6,9,15,9,11,12,4,14,13,11,1,10,4,3,8,12,5,2,7,15,7,8,2,12,15,15,3,8,13,6,15,4,10,7,7,8,7,10,7,7,8,0,0,6,12,2,14,5,1,13,5,1,15,0,3,0,10,10,6,12,12,13,13,2,13,5,10,13,11,15,6,12,3,3,13,10,3,5,15,4,5,12,1,5,15,4,10,12,7,9,12,7,3,5,4,12,9,7,15,1,2,15,8,14,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"4\", \"11\", \"6\", \"9\"], \"clip_start\": 147.0, \"clip_end\": 153.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,15,15,13,0,15,11,5,9,15,11,6,4,7,8,10,0,1,3,0,2,1,3,14,10,14,1,0,3,0,8,8,2,6,12,8,10,15,15,10,7,1,7,2,10,3,12,1,5,10,3,6,7,3,14,11,15,0,13,4,13,7,6,6,8,15,10,3,1,12,8,5,6,0,3,2,0,14,15,14,1,3,11,11,12,10,14,9,6,1,8,0,13,14,15,13,8,11,1,14,6,9,0,9,9,4,12,3,14,6,0,0,13,8,11,2,2,13,6,11,7,2,12,11,8,14,1,12,5,15,2,5,0,7,1,12,7,6,11,12,7,12,0,11,9,5,4,13,4,11,6,9,15,9,11,12,4,14,13,11,1,10,4,3,8,12,5,2,7,15,7,8,2,12,15,15,3,8,13,6,15,4,10,7,7,8,7,10,7,7,8,0,0,6,12,2,14,5,1,13,5,1,15,0,3,0,10,10,6,12,12,13,13,2,13,5,10,13,11,15,6,12,3,3,13,10,3,5,15,4,5,12,1,5,15,4,10,12,7,9,12,7,3,5,4,12,9,7,15,1,2,15,8,14,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"8\", \"12\", \"5\", \"2\"], \"clip_start\": 163.0, \"clip_end\": 169.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,15,15,13,0,15,11,5,9,15,11,6,4,7,8,10,0,1,3,0,2,1,3,14,10,14,1,0,3,0,8,8,2,6,12,8,10,15,15,10,7,1,7,2,10,3,12,1,5,10,3,6,7,3,14,11,15,0,13,4,13,7,6,6,8,15,10,3,1,12,8,5,6,0,3,2,0,14,15,14,1,3,11,11,12,10,14,9,6,1,8,0,13,14,15,13,8,11,1,14,6,9,0,9,9,4,12,3,14,6,0,0,13,8,11,2,2,13,6,11,7,2,12,11,8,14,1,12,5,15,2,5,0,7,1,12,7,6,11,12,7,12,0,11,9,5,4,13,4,11,6,9,15,9,11,12,4,14,13,11,1,10,4,3,8,12,5,2,7,15,7,8,2,12,15,15,3,8,13,6,15,4,10,7,7,8,7,10,7,7,8,0,0,6,12,2,14,5,1,13,5,1,15,0,3,0,10,10,6,12,12,13,13,2,13,5,10,13,11,15,6,12,3,3,13,10,3,5,15,4,5,12,1,5,15,4,10,12,7,9,12,7,3,5,4,12,9,7,15,1,2,15,8,14,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"1\", \"12\", \"5\", \"15\", \"2\"], \"clip_start\": 126.0, \"clip_end\": 132.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,15,15,13,0,15,11,5,9,15,11,6,4,7,8,10,0,1,3,0,2,1,3,14,10,14,1,0,3,0,8,8,2,6,12,8,10,15,15,10,7,1,7,2,10,3,12,1,5,10,3,6,7,3,14,11,15,0,13,4,13,7,6,6,8,15,10,3,1,12,8,5,6,0,3,2,0,14,15,14,1,3,11,11,12,10,14,9,6,1,8,0,13,14,15,13,8,11,1,14,6,9,0,9,9,4,12,3,14,6,0,0,13,8,11,2,2,13,6,11,7,2,12,11,8,14,1,12,5,15,2,5,0,7,1,12,7,6,11,12,7,12,0,11,9,5,4,13,4,11,6,9,15,9,11,12,4,14,13,11,1,10,4,3,8,12,5,2,7,15,7,8,2,12,15,15,3,8,13,6,15,4,10,7,7,8,7,10,7,7,8,0,0,6,12,2,14,5,1,13,5,1,15,0,3,0,10,10,6,12,12,13,13,2,13,5,10,13,11,15,6,12,3,3,13,10,3,5,15,4,5,12,1,5,15,4,10,12,7,9,12,7,3,5,4,12,9,7,15,1,2,15,8,14,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"15\", \"4\"], \"clip_start\": 233.0, \"clip_end\": 237.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,15,15,13,0,15,11,5,9,15,11,6,4,7,8,10,0,1,3,0,2,1,3,14,10,14,1,0,3,0,8,8,2,6,12,8,10,15,15,10,7,1,7,2,10,3,12,1,5,10,3,6,7,3,14,11,15,0,13,4,13,7,6,6,8,15,10,3,1,12,8,5,6,0,3,2,0,14,15,14,1,3,11,11,12,10,14,9,6,1,8,0,13,14,15,13,8,11,1,14,6,9,0,9,9,4,12,3,14,6,0,0,13,8,11,2,2,13,6,11,7,2,12,11,8,14,1,12,5,15,2,5,0,7,1,12,7,6,11,12,7,12,0,11,9,5,4,13,4,11,6,9,15,9,11,12,4,14,13,11,1,10,4,3,8,12,5,2,7,15,7,8,2,12,15,15,3,8,13,6,15,4,10,7,7,8,7,10,7,7,8,0,0,6,12,2,14,5,1,13,5,1,15,0,3,0,10,10,6,12,12,13,13,2,13,5,10,13,11,15,6,12,3,3,13,10,3,5,15,4,5,12,1,5,15,4,10,12,7,9,12,7,3,5,4,12,9,7,15,1,2,15,8,14,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"2\", \"15\", \"8\", \"14\", \"10\"], \"clip_start\": 250.0, \"clip_end\": 256.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,15,15,13,0,15,11,5,9,15,11,6,4,7,8,10,0,1,3,0,2,1,3,14,10,14,1,0,3,0,8,8,2,6,12,8,10,15,15,10,7,1,7,2,10,3,12,1,5,10,3,6,7,3,14,11,15,0,13,4,13,7,6,6,8,15,10,3,1,12,8,5,6,0,3,2,0,14,15,14,1,3,11,11,12,10,14,9,6,1,8,0,13,14,15,13,8,11,1,14,6,9,0,9,9,4,12,3,14,6,0,0,13,8,11,2,2,13,6,11,7,2,12,11,8,14,1,12,5,15,2,5,0,7,1,12,7,6,11,12,7,12,0,11,9,5,4,13,4,11,6,9,15,9,11,12,4,14,13,11,1,10,4,3,8,12,5,2,7,15,7,8,2,12,15,15,3,8,13,6,15,4,10,7,7,8,7,10,7,7,8,0,0,6,12,2,14,5,1,13,5,1,15,0,3,0,10,10,6,12,12,13,13,2,13,5,10,13,11,15,6,12,3,3,13,10,3,5,15,4,5,12,1,5,15,4,10,12,7,9,12,7,3,5,4,12,9,7,15,1,2,15,8,14,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"1\", \"14\"], \"clip_start\": 97.0, \"clip_end\": 101.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,15,15,13,0,15,11,5,9,15,11,6,4,7,8,10,0,1,3,0,2,1,3,14,10,14,1,0,3,0,8,8,2,6,12,8,10,15,15,10,7,1,7,2,10,3,12,1,5,10,3,6,7,3,14,11,15,0,13,4,13,7,6,6,8,15,10,3,1,12,8,5,6,0,3,2,0,14,15,14,1,3,11,11,12,10,14,9,6,1,8,0,13,14,15,13,8,11,1,14,6,9,0,9,9,4,12,3,14,6,0,0,13,8,11,2,2,13,6,11,7,2,12,11,8,14,1,12,5,15,2,5,0,7,1,12,7,6,11,12,7,12,0,11,9,5,4,13,4,11,6,9,15,9,11,12,4,14,13,11,1,10,4,3,8,12,5,2,7,15,7,8,2,12,15,15,3,8,13,6,15,4,10,7,7,8,7,10,7,7,8,0,0,6,12,2,14,5,1,13,5,1,15,0,3,0,10,10,6,12,12,13,13,2,13,5,10,13,11,15,6,12,3,3,13,10,3,5,15,4,5,12,1,5,15,4,10,12,7,9,12,7,3,5,4,12,9,7,15,1,2,15,8,14,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 252.0, \"clip_end\": 255.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,15,15,13,0,15,11,5,9,15,11,6,4,7,8,10,0,1,3,0,2,1,3,14,10,14,1,0,3,0,8,8,2,6,12,8,10,15,15,10,7,1,7,2,10,3,12,1,5,10,3,6,7,3,14,11,15,0,13,4,13,7,6,6,8,15,10,3,1,12,8,5,6,0,3,2,0,14,15,14,1,3,11,11,12,10,14,9,6,1,8,0,13,14,15,13,8,11,1,14,6,9,0,9,9,4,12,3,14,6,0,0,13,8,11,2,2,13,6,11,7,2,12,11,8,14,1,12,5,15,2,5,0,7,1,12,7,6,11,12,7,12,0,11,9,5,4,13,4,11,6,9,15,9,11,12,4,14,13,11,1,10,4,3,8,12,5,2,7,15,7,8,2,12,15,15,3,8,13,6,15,4,10,7,7,8,7,10,7,7,8,0,0,6,12,2,14,5,1,13,5,1,15,0,3,0,10,10,6,12,12,13,13,2,13,5,10,13,11,15,6,12,3,3,13,10,3,5,15,4,5,12,1,5,15,4,10,12,7,9,12,7,3,5,4,12,9,7,15,1,2,15,8,14,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"7\", \"8\", \"0\"], \"clip_start\": 188.0, \"clip_end\": 193.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,15,15,13,0,15,11,5,9,15,11,6,4,7,8,10,0,1,3,0,2,1,3,14,10,14,1,0,3,0,8,8,2,6,12,8,10,15,15,10,7,1,7,2,10,3,12,1,5,10,3,6,7,3,14,11,15,0,13,4,13,7,6,6,8,15,10,3,1,12,8,5,6,0,3,2,0,14,15,14,1,3,11,11,12,10,14,9,6,1,8,0,13,14,15,13,8,11,1,14,6,9,0,9,9,4,12,3,14,6,0,0,13,8,11,2,2,13,6,11,7,2,12,11,8,14,1,12,5,15,2,5,0,7,1,12,7,6,11,12,7,12,0,11,9,5,4,13,4,11,6,9,15,9,11,12,4,14,13,11,1,10,4,3,8,12,5,2,7,15,7,8,2,12,15,15,3,8,13,6,15,4,10,7,7,8,7,10,7,7,8,0,0,6,12,2,14,5,1,13,5,1,15,0,3,0,10,10,6,12,12,13,13,2,13,5,10,13,11,15,6,12,3,3,13,10,3,5,15,4,5,12,1,5,15,4,10,12,7,9,12,7,3,5,4,12,9,7,15,1,2,15,8,14,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"15\", \"4\"], \"clip_start\": 233.0, \"clip_end\": 237.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,15,15,13,0,15,11,5,9,15,11,6,4,7,8,10,0,1,3,0,2,1,3,14,10,14,1,0,3,0,8,8,2,6,12,8,10,15,15,10,7,1,7,2,10,3,12,1,5,10,3,6,7,3,14,11,15,0,13,4,13,7,6,6,8,15,10,3,1,12,8,5,6,0,3,2,0,14,15,14,1,3,11,11,12,10,14,9,6,1,8,0,13,14,15,13,8,11,1,14,6,9,0,9,9,4,12,3,14,6,0,0,13,8,11,2,2,13,6,11,7,2,12,11,8,14,1,12,5,15,2,5,0,7,1,12,7,6,11,12,7,12,0,11,9,5,4,13,4,11,6,9,15,9,11,12,4,14,13,11,1,10,4,3,8,12,5,2,7,15,7,8,2,12,15,15,3,8,13,6,15,4,10,7,7,8,7,10,7,7,8,0,0,6,12,2,14,5,1,13,5,1,15,0,3,0,10,10,6,12,12,13,13,2,13,5,10,13,11,15,6,12,3,3,13,10,3,5,15,4,5,12,1,5,15,4,10,12,7,9,12,7,3,5,4,12,9,7,15,1,2,15,8,14,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"8\", \"2\", \"12\", \"15\"], \"clip_start\": 171.0, \"clip_end\": 176.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,15,15,13,0,15,11,5,9,15,11,6,4,7,8,10,0,1,3,0,2,1,3,14,10,14,1,0,3,0,8,8,2,6,12,8,10,15,15,10,7,1,7,2,10,3,12,1,5,10,3,6,7,3,14,11,15,0,13,4,13,7,6,6,8,15,10,3,1,12,8,5,6,0,3,2,0,14,15,14,1,3,11,11,12,10,14,9,6,1,8,0,13,14,15,13,8,11,1,14,6,9,0,9,9,4,12,3,14,6,0,0,13,8,11,2,2,13,6,11,7,2,12,11,8,14,1,12,5,15,2,5,0,7,1,12,7,6,11,12,7,12,0,11,9,5,4,13,4,11,6,9,15,9,11,12,4,14,13,11,1,10,4,3,8,12,5,2,7,15,7,8,2,12,15,15,3,8,13,6,15,4,10,7,7,8,7,10,7,7,8,0,0,6,12,2,14,5,1,13,5,1,15,0,3,0,10,10,6,12,12,13,13,2,13,5,10,13,11,15,6,12,3,3,13,10,3,5,15,4,5,12,1,5,15,4,10,12,7,9,12,7,3,5,4,12,9,7,15,1,2,15,8,14,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 132.0, \"clip_end\": 138.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,15,15,13,0,15,11,5,9,15,11,6,4,7,8,10,0,1,3,0,2,1,3,14,10,14,1,0,3,0,8,8,2,6,12,8,10,15,15,10,7,1,7,2,10,3,12,1,5,10,3,6,7,3,14,11,15,0,13,4,13,7,6,6,8,15,10,3,1,12,8,5,6,0,3,2,0,14,15,14,1,3,11,11,12,10,14,9,6,1,8,0,13,14,15,13,8,11,1,14,6,9,0,9,9,4,12,3,14,6,0,0,13,8,11,2,2,13,6,11,7,2,12,11,8,14,1,12,5,15,2,5,0,7,1,12,7,6,11,12,7,12,0,11,9,5,4,13,4,11,6,9,15,9,11,12,4,14,13,11,1,10,4,3,8,12,5,2,7,15,7,8,2,12,15,15,3,8,13,6,15,4,10,7,7,8,7,10,7,7,8,0,0,6,12,2,14,5,1,13,5,1,15,0,3,0,10,10,6,12,12,13,13,2,13,5,10,13,11,15,6,12,3,3,13,10,3,5,15,4,5,12,1,5,15,4,10,12,7,9,12,7,3,5,4,12,9,7,15,1,2,15,8,14,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"0\", \"2\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,15,15,13,0,15,11,5,9,15,11,6,4,7,8,10,0,1,3,0,2,1,3,14,10,14,1,0,3,0,8,8,2,6,12,8,10,15,15,10,7,1,7,2,10,3,12,1,5,10,3,6,7,3,14,11,15,0,13,4,13,7,6,6,8,15,10,3,1,12,8,5,6,0,3,2,0,14,15,14,1,3,11,11,12,10,14,9,6,1,8,0,13,14,15,13,8,11,1,14,6,9,0,9,9,4,12,3,14,6,0,0,13,8,11,2,2,13,6,11,7,2,12,11,8,14,1,12,5,15,2,5,0,7,1,12,7,6,11,12,7,12,0,11,9,5,4,13,4,11,6,9,15,9,11,12,4,14,13,11,1,10,4,3,8,12,5,2,7,15,7,8,2,12,15,15,3,8,13,6,15,4,10,7,7,8,7,10,7,7,8,0,0,6,12,2,14,5,1,13,5,1,15,0,3,0,10,10,6,12,12,13,13,2,13,5,10,13,11,15,6,12,3,3,13,10,3,5,15,4,5,12,1,5,15,4,10,12,7,9,12,7,3,5,4,12,9,7,15,1,2,15,8,14,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"10\", \"7\", \"7\"], \"clip_start\": 186.0, \"clip_end\": 191.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,15,15,13,0,15,11,5,9,15,11,6,4,7,8,10,0,1,3,0,2,1,3,14,10,14,1,0,3,0,8,8,2,6,12,8,10,15,15,10,7,1,7,2,10,3,12,1,5,10,3,6,7,3,14,11,15,0,13,4,13,7,6,6,8,15,10,3,1,12,8,5,6,0,3,2,0,14,15,14,1,3,11,11,12,10,14,9,6,1,8,0,13,14,15,13,8,11,1,14,6,9,0,9,9,4,12,3,14,6,0,0,13,8,11,2,2,13,6,11,7,2,12,11,8,14,1,12,5,15,2,5,0,7,1,12,7,6,11,12,7,12,0,11,9,5,4,13,4,11,6,9,15,9,11,12,4,14,13,11,1,10,4,3,8,12,5,2,7,15,7,8,2,12,15,15,3,8,13,6,15,4,10,7,7,8,7,10,7,7,8,0,0,6,12,2,14,5,1,13,5,1,15,0,3,0,10,10,6,12,12,13,13,2,13,5,10,13,11,15,6,12,3,3,13,10,3,5,15,4,5,12,1,5,15,4,10,12,7,9,12,7,3,5,4,12,9,7,15,1,2,15,8,14,10", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"10\", \"2\", \"0\", \"6\", \"4\"], \"clip_start\": 214.0, \"clip_end\": 220.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,1,12,4,10,14,5,15,4,5,15,3,12,1,12,12,2,0,6,5,1,0,9,1,10,1,5,3,14,6,1,15,15,8,13,10,1,14,15,7,1,2,13,4,3,12,11,8,1,4,15,6,9,14,12,8,15,1,8,15,0,6,2,10,2,14,3,7,7,8,2,3,13,9,0,5,11,9,1,4,9,9,7,1,8,3,15,11,6,3,14,5,15,14,14,5,0,15,9,13,15,13,5,6,8,13,8,6,0,12,4,5,0,5,15,15,7,0,15,3,11,12,11,9,11,13,8,7,5,5,3,12,13,14,15,0,4,7,12,13,13,0,3,11,14,11,3,14,1,0,10,12,13,2,12,4,15,9,5,0,3,12,12,1,11,15,14,6,10,7,12,6,8,8,9,8,3,12,1,1,5,9,11,10,14,4,6,9,3,1,9,2,0,6,15,15,4,14,1,11,13,7,13,6,0,6,11,11,0,13,12,11,8,12,10,2,0,6,4,10,15,2,7,14,11,6,4,0,7,10,4,10,3,0,0,10,11,6,5,1,0,4,13,13,13,11,6,10,10,13,3,15,4,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"11\"], \"clip_start\": 45.0, \"clip_end\": 48.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,1,12,4,10,14,5,15,4,5,15,3,12,1,12,12,2,0,6,5,1,0,9,1,10,1,5,3,14,6,1,15,15,8,13,10,1,14,15,7,1,2,13,4,3,12,11,8,1,4,15,6,9,14,12,8,15,1,8,15,0,6,2,10,2,14,3,7,7,8,2,3,13,9,0,5,11,9,1,4,9,9,7,1,8,3,15,11,6,3,14,5,15,14,14,5,0,15,9,13,15,13,5,6,8,13,8,6,0,12,4,5,0,5,15,15,7,0,15,3,11,12,11,9,11,13,8,7,5,5,3,12,13,14,15,0,4,7,12,13,13,0,3,11,14,11,3,14,1,0,10,12,13,2,12,4,15,9,5,0,3,12,12,1,11,15,14,6,10,7,12,6,8,8,9,8,3,12,1,1,5,9,11,10,14,4,6,9,3,1,9,2,0,6,15,15,4,14,1,11,13,7,13,6,0,6,11,11,0,13,12,11,8,12,10,2,0,6,4,10,15,2,7,14,11,6,4,0,7,10,4,10,3,0,0,10,11,6,5,1,0,4,13,13,13,11,6,10,10,13,3,15,4,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"0\", \"6\", \"4\"], \"clip_start\": 215.0, \"clip_end\": 220.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,1,12,4,10,14,5,15,4,5,15,3,12,1,12,12,2,0,6,5,1,0,9,1,10,1,5,3,14,6,1,15,15,8,13,10,1,14,15,7,1,2,13,4,3,12,11,8,1,4,15,6,9,14,12,8,15,1,8,15,0,6,2,10,2,14,3,7,7,8,2,3,13,9,0,5,11,9,1,4,9,9,7,1,8,3,15,11,6,3,14,5,15,14,14,5,0,15,9,13,15,13,5,6,8,13,8,6,0,12,4,5,0,5,15,15,7,0,15,3,11,12,11,9,11,13,8,7,5,5,3,12,13,14,15,0,4,7,12,13,13,0,3,11,14,11,3,14,1,0,10,12,13,2,12,4,15,9,5,0,3,12,12,1,11,15,14,6,10,7,12,6,8,8,9,8,3,12,1,1,5,9,11,10,14,4,6,9,3,1,9,2,0,6,15,15,4,14,1,11,13,7,13,6,0,6,11,11,0,13,12,11,8,12,10,2,0,6,4,10,15,2,7,14,11,6,4,0,7,10,4,10,3,0,0,10,11,6,5,1,0,4,13,13,13,11,6,10,10,13,3,15,4,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"1\", \"1\", \"5\"], \"clip_start\": 178.0, \"clip_end\": 182.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,1,12,4,10,14,5,15,4,5,15,3,12,1,12,12,2,0,6,5,1,0,9,1,10,1,5,3,14,6,1,15,15,8,13,10,1,14,15,7,1,2,13,4,3,12,11,8,1,4,15,6,9,14,12,8,15,1,8,15,0,6,2,10,2,14,3,7,7,8,2,3,13,9,0,5,11,9,1,4,9,9,7,1,8,3,15,11,6,3,14,5,15,14,14,5,0,15,9,13,15,13,5,6,8,13,8,6,0,12,4,5,0,5,15,15,7,0,15,3,11,12,11,9,11,13,8,7,5,5,3,12,13,14,15,0,4,7,12,13,13,0,3,11,14,11,3,14,1,0,10,12,13,2,12,4,15,9,5,0,3,12,12,1,11,15,14,6,10,7,12,6,8,8,9,8,3,12,1,1,5,9,11,10,14,4,6,9,3,1,9,2,0,6,15,15,4,14,1,11,13,7,13,6,0,6,11,11,0,13,12,11,8,12,10,2,0,6,4,10,15,2,7,14,11,6,4,0,7,10,4,10,3,0,0,10,11,6,5,1,0,4,13,13,13,11,6,10,10,13,3,15,4,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 34.0, \"clip_end\": 37.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,1,12,4,10,14,5,15,4,5,15,3,12,1,12,12,2,0,6,5,1,0,9,1,10,1,5,3,14,6,1,15,15,8,13,10,1,14,15,7,1,2,13,4,3,12,11,8,1,4,15,6,9,14,12,8,15,1,8,15,0,6,2,10,2,14,3,7,7,8,2,3,13,9,0,5,11,9,1,4,9,9,7,1,8,3,15,11,6,3,14,5,15,14,14,5,0,15,9,13,15,13,5,6,8,13,8,6,0,12,4,5,0,5,15,15,7,0,15,3,11,12,11,9,11,13,8,7,5,5,3,12,13,14,15,0,4,7,12,13,13,0,3,11,14,11,3,14,1,0,10,12,13,2,12,4,15,9,5,0,3,12,12,1,11,15,14,6,10,7,12,6,8,8,9,8,3,12,1,1,5,9,11,10,14,4,6,9,3,1,9,2,0,6,15,15,4,14,1,11,13,7,13,6,0,6,11,11,0,13,12,11,8,12,10,2,0,6,4,10,15,2,7,14,11,6,4,0,7,10,4,10,3,0,0,10,11,6,5,1,0,4,13,13,13,11,6,10,10,13,3,15,4,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"1\", \"4\", \"9\", \"9\"], \"clip_start\": 77.0, \"clip_end\": 83.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,1,12,4,10,14,5,15,4,5,15,3,12,1,12,12,2,0,6,5,1,0,9,1,10,1,5,3,14,6,1,15,15,8,13,10,1,14,15,7,1,2,13,4,3,12,11,8,1,4,15,6,9,14,12,8,15,1,8,15,0,6,2,10,2,14,3,7,7,8,2,3,13,9,0,5,11,9,1,4,9,9,7,1,8,3,15,11,6,3,14,5,15,14,14,5,0,15,9,13,15,13,5,6,8,13,8,6,0,12,4,5,0,5,15,15,7,0,15,3,11,12,11,9,11,13,8,7,5,5,3,12,13,14,15,0,4,7,12,13,13,0,3,11,14,11,3,14,1,0,10,12,13,2,12,4,15,9,5,0,3,12,12,1,11,15,14,6,10,7,12,6,8,8,9,8,3,12,1,1,5,9,11,10,14,4,6,9,3,1,9,2,0,6,15,15,4,14,1,11,13,7,13,6,0,6,11,11,0,13,12,11,8,12,10,2,0,6,4,10,15,2,7,14,11,6,4,0,7,10,4,10,3,0,0,10,11,6,5,1,0,4,13,13,13,11,6,10,10,13,3,15,4,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"11\", \"15\", \"14\"], \"clip_start\": 164.0, \"clip_end\": 168.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,1,12,4,10,14,5,15,4,5,15,3,12,1,12,12,2,0,6,5,1,0,9,1,10,1,5,3,14,6,1,15,15,8,13,10,1,14,15,7,1,2,13,4,3,12,11,8,1,4,15,6,9,14,12,8,15,1,8,15,0,6,2,10,2,14,3,7,7,8,2,3,13,9,0,5,11,9,1,4,9,9,7,1,8,3,15,11,6,3,14,5,15,14,14,5,0,15,9,13,15,13,5,6,8,13,8,6,0,12,4,5,0,5,15,15,7,0,15,3,11,12,11,9,11,13,8,7,5,5,3,12,13,14,15,0,4,7,12,13,13,0,3,11,14,11,3,14,1,0,10,12,13,2,12,4,15,9,5,0,3,12,12,1,11,15,14,6,10,7,12,6,8,8,9,8,3,12,1,1,5,9,11,10,14,4,6,9,3,1,9,2,0,6,15,15,4,14,1,11,13,7,13,6,0,6,11,11,0,13,12,11,8,12,10,2,0,6,4,10,15,2,7,14,11,6,4,0,7,10,4,10,3,0,0,10,11,6,5,1,0,4,13,13,13,11,6,10,10,13,3,15,4,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"4\", \"8\", \"6\", \"0\"], \"clip_start\": 225.0, \"clip_end\": 231.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,1,12,4,10,14,5,15,4,5,15,3,12,1,12,12,2,0,6,5,1,0,9,1,10,1,5,3,14,6,1,15,15,8,13,10,1,14,15,7,1,2,13,4,3,12,11,8,1,4,15,6,9,14,12,8,15,1,8,15,0,6,2,10,2,14,3,7,7,8,2,3,13,9,0,5,11,9,1,4,9,9,7,1,8,3,15,11,6,3,14,5,15,14,14,5,0,15,9,13,15,13,5,6,8,13,8,6,0,12,4,5,0,5,15,15,7,0,15,3,11,12,11,9,11,13,8,7,5,5,3,12,13,14,15,0,4,7,12,13,13,0,3,11,14,11,3,14,1,0,10,12,13,2,12,4,15,9,5,0,3,12,12,1,11,15,14,6,10,7,12,6,8,8,9,8,3,12,1,1,5,9,11,10,14,4,6,9,3,1,9,2,0,6,15,15,4,14,1,11,13,7,13,6,0,6,11,11,0,13,12,11,8,12,10,2,0,6,4,10,15,2,7,14,11,6,4,0,7,10,4,10,3,0,0,10,11,6,5,1,0,4,13,13,13,11,6,10,10,13,3,15,4,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"7\"], \"clip_start\": 47.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q8_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,1,12,4,10,14,5,15,4,5,15,3,12,1,12,12,2,0,6,5,1,0,9,1,10,1,5,3,14,6,1,15,15,8,13,10,1,14,15,7,1,2,13,4,3,12,11,8,1,4,15,6,9,14,12,8,15,1,8,15,0,6,2,10,2,14,3,7,7,8,2,3,13,9,0,5,11,9,1,4,9,9,7,1,8,3,15,11,6,3,14,5,15,14,14,5,0,15,9,13,15,13,5,6,8,13,8,6,0,12,4,5,0,5,15,15,7,0,15,3,11,12,11,9,11,13,8,7,5,5,3,12,13,14,15,0,4,7,12,13,13,0,3,11,14,11,3,14,1,0,10,12,13,2,12,4,15,9,5,0,3,12,12,1,11,15,14,6,10,7,12,6,8,8,9,8,3,12,1,1,5,9,11,10,14,4,6,9,3,1,9,2,0,6,15,15,4,14,1,11,13,7,13,6,0,6,11,11,0,13,12,11,8,12,10,2,0,6,4,10,15,2,7,14,11,6,4,0,7,10,4,10,3,0,0,10,11,6,5,1,0,4,13,13,13,11,6,10,10,13,3,15,4,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\", \"15\"], \"clip_start\": 84.0, \"clip_end\": 88.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q9_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,1,12,4,10,14,5,15,4,5,15,3,12,1,12,12,2,0,6,5,1,0,9,1,10,1,5,3,14,6,1,15,15,8,13,10,1,14,15,7,1,2,13,4,3,12,11,8,1,4,15,6,9,14,12,8,15,1,8,15,0,6,2,10,2,14,3,7,7,8,2,3,13,9,0,5,11,9,1,4,9,9,7,1,8,3,15,11,6,3,14,5,15,14,14,5,0,15,9,13,15,13,5,6,8,13,8,6,0,12,4,5,0,5,15,15,7,0,15,3,11,12,11,9,11,13,8,7,5,5,3,12,13,14,15,0,4,7,12,13,13,0,3,11,14,11,3,14,1,0,10,12,13,2,12,4,15,9,5,0,3,12,12,1,11,15,14,6,10,7,12,6,8,8,9,8,3,12,1,1,5,9,11,10,14,4,6,9,3,1,9,2,0,6,15,15,4,14,1,11,13,7,13,6,0,6,11,11,0,13,12,11,8,12,10,2,0,6,4,10,15,2,7,14,11,6,4,0,7,10,4,10,3,0,0,10,11,6,5,1,0,4,13,13,13,11,6,10,10,13,3,15,4,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"1\"], \"clip_start\": 48.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q10_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,1,12,4,10,14,5,15,4,5,15,3,12,1,12,12,2,0,6,5,1,0,9,1,10,1,5,3,14,6,1,15,15,8,13,10,1,14,15,7,1,2,13,4,3,12,11,8,1,4,15,6,9,14,12,8,15,1,8,15,0,6,2,10,2,14,3,7,7,8,2,3,13,9,0,5,11,9,1,4,9,9,7,1,8,3,15,11,6,3,14,5,15,14,14,5,0,15,9,13,15,13,5,6,8,13,8,6,0,12,4,5,0,5,15,15,7,0,15,3,11,12,11,9,11,13,8,7,5,5,3,12,13,14,15,0,4,7,12,13,13,0,3,11,14,11,3,14,1,0,10,12,13,2,12,4,15,9,5,0,3,12,12,1,11,15,14,6,10,7,12,6,8,8,9,8,3,12,1,1,5,9,11,10,14,4,6,9,3,1,9,2,0,6,15,15,4,14,1,11,13,7,13,6,0,6,11,11,0,13,12,11,8,12,10,2,0,6,4,10,15,2,7,14,11,6,4,0,7,10,4,10,3,0,0,10,11,6,5,1,0,4,13,13,13,11,6,10,10,13,3,15,4,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"9\", \"5\", \"0\", \"3\"], \"clip_start\": 156.0, \"clip_end\": 162.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q11_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,1,12,4,10,14,5,15,4,5,15,3,12,1,12,12,2,0,6,5,1,0,9,1,10,1,5,3,14,6,1,15,15,8,13,10,1,14,15,7,1,2,13,4,3,12,11,8,1,4,15,6,9,14,12,8,15,1,8,15,0,6,2,10,2,14,3,7,7,8,2,3,13,9,0,5,11,9,1,4,9,9,7,1,8,3,15,11,6,3,14,5,15,14,14,5,0,15,9,13,15,13,5,6,8,13,8,6,0,12,4,5,0,5,15,15,7,0,15,3,11,12,11,9,11,13,8,7,5,5,3,12,13,14,15,0,4,7,12,13,13,0,3,11,14,11,3,14,1,0,10,12,13,2,12,4,15,9,5,0,3,12,12,1,11,15,14,6,10,7,12,6,8,8,9,8,3,12,1,1,5,9,11,10,14,4,6,9,3,1,9,2,0,6,15,15,4,14,1,11,13,7,13,6,0,6,11,11,0,13,12,11,8,12,10,2,0,6,4,10,15,2,7,14,11,6,4,0,7,10,4,10,3,0,0,10,11,6,5,1,0,4,13,13,13,11,6,10,10,13,3,15,4,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"8\", \"2\", \"5\"], \"clip_start\": 223.0, \"clip_end\": 229.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q12_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,1,12,4,10,14,5,15,4,5,15,3,12,1,12,12,2,0,6,5,1,0,9,1,10,1,5,3,14,6,1,15,15,8,13,10,1,14,15,7,1,2,13,4,3,12,11,8,1,4,15,6,9,14,12,8,15,1,8,15,0,6,2,10,2,14,3,7,7,8,2,3,13,9,0,5,11,9,1,4,9,9,7,1,8,3,15,11,6,3,14,5,15,14,14,5,0,15,9,13,15,13,5,6,8,13,8,6,0,12,4,5,0,5,15,15,7,0,15,3,11,12,11,9,11,13,8,7,5,5,3,12,13,14,15,0,4,7,12,13,13,0,3,11,14,11,3,14,1,0,10,12,13,2,12,4,15,9,5,0,3,12,12,1,11,15,14,6,10,7,12,6,8,8,9,8,3,12,1,1,5,9,11,10,14,4,6,9,3,1,9,2,0,6,15,15,4,14,1,11,13,7,13,6,0,6,11,11,0,13,12,11,8,12,10,2,0,6,4,10,15,2,7,14,11,6,4,0,7,10,4,10,3,0,0,10,11,6,5,1,0,4,13,13,13,11,6,10,10,13,3,15,4,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"1\", \"11\", \"15\"], \"clip_start\": 163.0, \"clip_end\": 167.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q13_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,1,12,4,10,14,5,15,4,5,15,3,12,1,12,12,2,0,6,5,1,0,9,1,10,1,5,3,14,6,1,15,15,8,13,10,1,14,15,7,1,2,13,4,3,12,11,8,1,4,15,6,9,14,12,8,15,1,8,15,0,6,2,10,2,14,3,7,7,8,2,3,13,9,0,5,11,9,1,4,9,9,7,1,8,3,15,11,6,3,14,5,15,14,14,5,0,15,9,13,15,13,5,6,8,13,8,6,0,12,4,5,0,5,15,15,7,0,15,3,11,12,11,9,11,13,8,7,5,5,3,12,13,14,15,0,4,7,12,13,13,0,3,11,14,11,3,14,1,0,10,12,13,2,12,4,15,9,5,0,3,12,12,1,11,15,14,6,10,7,12,6,8,8,9,8,3,12,1,1,5,9,11,10,14,4,6,9,3,1,9,2,0,6,15,15,4,14,1,11,13,7,13,6,0,6,11,11,0,13,12,11,8,12,10,2,0,6,4,10,15,2,7,14,11,6,4,0,7,10,4,10,3,0,0,10,11,6,5,1,0,4,13,13,13,11,6,10,10,13,3,15,4,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"5\", \"1\", \"0\", \"9\"], \"clip_start\": 18.0, \"clip_end\": 24.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q14_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,1,12,4,10,14,5,15,4,5,15,3,12,1,12,12,2,0,6,5,1,0,9,1,10,1,5,3,14,6,1,15,15,8,13,10,1,14,15,7,1,2,13,4,3,12,11,8,1,4,15,6,9,14,12,8,15,1,8,15,0,6,2,10,2,14,3,7,7,8,2,3,13,9,0,5,11,9,1,4,9,9,7,1,8,3,15,11,6,3,14,5,15,14,14,5,0,15,9,13,15,13,5,6,8,13,8,6,0,12,4,5,0,5,15,15,7,0,15,3,11,12,11,9,11,13,8,7,5,5,3,12,13,14,15,0,4,7,12,13,13,0,3,11,14,11,3,14,1,0,10,12,13,2,12,4,15,9,5,0,3,12,12,1,11,15,14,6,10,7,12,6,8,8,9,8,3,12,1,1,5,9,11,10,14,4,6,9,3,1,9,2,0,6,15,15,4,14,1,11,13,7,13,6,0,6,11,11,0,13,12,11,8,12,10,2,0,6,4,10,15,2,7,14,11,6,4,0,7,10,4,10,3,0,0,10,11,6,5,1,0,4,13,13,13,11,6,10,10,13,3,15,4,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"11\", \"12\"], \"clip_start\": 67.0, \"clip_end\": 72.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q15_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,14,1,12,4,10,14,5,15,4,5,15,3,12,1,12,12,2,0,6,5,1,0,9,1,10,1,5,3,14,6,1,15,15,8,13,10,1,14,15,7,1,2,13,4,3,12,11,8,1,4,15,6,9,14,12,8,15,1,8,15,0,6,2,10,2,14,3,7,7,8,2,3,13,9,0,5,11,9,1,4,9,9,7,1,8,3,15,11,6,3,14,5,15,14,14,5,0,15,9,13,15,13,5,6,8,13,8,6,0,12,4,5,0,5,15,15,7,0,15,3,11,12,11,9,11,13,8,7,5,5,3,12,13,14,15,0,4,7,12,13,13,0,3,11,14,11,3,14,1,0,10,12,13,2,12,4,15,9,5,0,3,12,12,1,11,15,14,6,10,7,12,6,8,8,9,8,3,12,1,1,5,9,11,10,14,4,6,9,3,1,9,2,0,6,15,15,4,14,1,11,13,7,13,6,0,6,11,11,0,13,12,11,8,12,10,2,0,6,4,10,15,2,7,14,11,6,4,0,7,10,4,10,3,0,0,10,11,6,5,1,0,4,13,13,13,11,6,10,10,13,3,15,4,8,9", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"3\", \"5\", \"0\"], \"clip_start\": 229.0, \"clip_end\": 234.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,4,6,1,0,11,14,6,0,0,7,12,4,15,12,3,8,8,6,15,3,2,2,4,15,15,4,5,9,9,7,4,6,15,0,9,12,2,12,15,11,9,0,2,1,2,3,7,8,0,13,3,7,6,14,8,2,3,9,14,1,10,4,11,8,1,6,8,8,9,5,4,6,11,15,11,5,0,1,13,10,7,7,3,10,3,3,12,2,8,9,13,15,0,5,4,15,5,7,11,10,13,0,12,14,4,8,7,4,1,4,7,15,4,3,12,4,13,14,7,14,5,3,4,10,12,15,15,9,7,9,5,11,5,0,9,11,1,10,2,10,11,15,14,14,14,14,4,0,10,0,9,14,1,10,7,3,0,10,14,5,3,14,8,13,10,14,3,2,4,6,15,15,14,0,7,0,4,11,5,12,14,8,4,15,3,11,11,2,7,10,0,6,10,10,2,15,4,2,9,12,2,11,4,8,12,3,13,8,8,15,0,12,11,5,9,15,9,6,9,9,10,12,15,15,12,4,15,11,1,4,3,5,0,3,14,14,2,6,15,8,7,12,14,7,7,9,3,6,13,3,2,0,5,3,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"9\", \"12\", \"2\"], \"clip_start\": 197.0, \"clip_end\": 202.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,4,6,1,0,11,14,6,0,0,7,12,4,15,12,3,8,8,6,15,3,2,2,4,15,15,4,5,9,9,7,4,6,15,0,9,12,2,12,15,11,9,0,2,1,2,3,7,8,0,13,3,7,6,14,8,2,3,9,14,1,10,4,11,8,1,6,8,8,9,5,4,6,11,15,11,5,0,1,13,10,7,7,3,10,3,3,12,2,8,9,13,15,0,5,4,15,5,7,11,10,13,0,12,14,4,8,7,4,1,4,7,15,4,3,12,4,13,14,7,14,5,3,4,10,12,15,15,9,7,9,5,11,5,0,9,11,1,10,2,10,11,15,14,14,14,14,4,0,10,0,9,14,1,10,7,3,0,10,14,5,3,14,8,13,10,14,3,2,4,6,15,15,14,0,7,0,4,11,5,12,14,8,4,15,3,11,11,2,7,10,0,6,10,10,2,15,4,2,9,12,2,11,4,8,12,3,13,8,8,15,0,12,11,5,9,15,9,6,9,9,10,12,15,15,12,4,15,11,1,4,3,5,0,3,14,14,2,6,15,8,7,12,14,7,7,9,3,6,13,3,2,0,5,3,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"0\", \"2\"], \"clip_start\": 40.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,4,6,1,0,11,14,6,0,0,7,12,4,15,12,3,8,8,6,15,3,2,2,4,15,15,4,5,9,9,7,4,6,15,0,9,12,2,12,15,11,9,0,2,1,2,3,7,8,0,13,3,7,6,14,8,2,3,9,14,1,10,4,11,8,1,6,8,8,9,5,4,6,11,15,11,5,0,1,13,10,7,7,3,10,3,3,12,2,8,9,13,15,0,5,4,15,5,7,11,10,13,0,12,14,4,8,7,4,1,4,7,15,4,3,12,4,13,14,7,14,5,3,4,10,12,15,15,9,7,9,5,11,5,0,9,11,1,10,2,10,11,15,14,14,14,14,4,0,10,0,9,14,1,10,7,3,0,10,14,5,3,14,8,13,10,14,3,2,4,6,15,15,14,0,7,0,4,11,5,12,14,8,4,15,3,11,11,2,7,10,0,6,10,10,2,15,4,2,9,12,2,11,4,8,12,3,13,8,8,15,0,12,11,5,9,15,9,6,9,9,10,12,15,15,12,4,15,11,1,4,3,5,0,3,14,14,2,6,15,8,7,12,14,7,7,9,3,6,13,3,2,0,5,3,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 69.0, \"clip_end\": 72.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,4,6,1,0,11,14,6,0,0,7,12,4,15,12,3,8,8,6,15,3,2,2,4,15,15,4,5,9,9,7,4,6,15,0,9,12,2,12,15,11,9,0,2,1,2,3,7,8,0,13,3,7,6,14,8,2,3,9,14,1,10,4,11,8,1,6,8,8,9,5,4,6,11,15,11,5,0,1,13,10,7,7,3,10,3,3,12,2,8,9,13,15,0,5,4,15,5,7,11,10,13,0,12,14,4,8,7,4,1,4,7,15,4,3,12,4,13,14,7,14,5,3,4,10,12,15,15,9,7,9,5,11,5,0,9,11,1,10,2,10,11,15,14,14,14,14,4,0,10,0,9,14,1,10,7,3,0,10,14,5,3,14,8,13,10,14,3,2,4,6,15,15,14,0,7,0,4,11,5,12,14,8,4,15,3,11,11,2,7,10,0,6,10,10,2,15,4,2,9,12,2,11,4,8,12,3,13,8,8,15,0,12,11,5,9,15,9,6,9,9,10,12,15,15,12,4,15,11,1,4,3,5,0,3,14,14,2,6,15,8,7,12,14,7,7,9,3,6,13,3,2,0,5,3,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"1\", \"0\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q4_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,4,6,1,0,11,14,6,0,0,7,12,4,15,12,3,8,8,6,15,3,2,2,4,15,15,4,5,9,9,7,4,6,15,0,9,12,2,12,15,11,9,0,2,1,2,3,7,8,0,13,3,7,6,14,8,2,3,9,14,1,10,4,11,8,1,6,8,8,9,5,4,6,11,15,11,5,0,1,13,10,7,7,3,10,3,3,12,2,8,9,13,15,0,5,4,15,5,7,11,10,13,0,12,14,4,8,7,4,1,4,7,15,4,3,12,4,13,14,7,14,5,3,4,10,12,15,15,9,7,9,5,11,5,0,9,11,1,10,2,10,11,15,14,14,14,14,4,0,10,0,9,14,1,10,7,3,0,10,14,5,3,14,8,13,10,14,3,2,4,6,15,15,14,0,7,0,4,11,5,12,14,8,4,15,3,11,11,2,7,10,0,6,10,10,2,15,4,2,9,12,2,11,4,8,12,3,13,8,8,15,0,12,11,5,9,15,9,6,9,9,10,12,15,15,12,4,15,11,1,4,3,5,0,3,14,14,2,6,15,8,7,12,14,7,7,9,3,6,13,3,2,0,5,3,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"11\", \"6\", \"1\"], \"clip_start\": 235.0, \"clip_end\": 240.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q5_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,4,6,1,0,11,14,6,0,0,7,12,4,15,12,3,8,8,6,15,3,2,2,4,15,15,4,5,9,9,7,4,6,15,0,9,12,2,12,15,11,9,0,2,1,2,3,7,8,0,13,3,7,6,14,8,2,3,9,14,1,10,4,11,8,1,6,8,8,9,5,4,6,11,15,11,5,0,1,13,10,7,7,3,10,3,3,12,2,8,9,13,15,0,5,4,15,5,7,11,10,13,0,12,14,4,8,7,4,1,4,7,15,4,3,12,4,13,14,7,14,5,3,4,10,12,15,15,9,7,9,5,11,5,0,9,11,1,10,2,10,11,15,14,14,14,14,4,0,10,0,9,14,1,10,7,3,0,10,14,5,3,14,8,13,10,14,3,2,4,6,15,15,14,0,7,0,4,11,5,12,14,8,4,15,3,11,11,2,7,10,0,6,10,10,2,15,4,2,9,12,2,11,4,8,12,3,13,8,8,15,0,12,11,5,9,15,9,6,9,9,10,12,15,15,12,4,15,11,1,4,3,5,0,3,14,14,2,6,15,8,7,12,14,7,7,9,3,6,13,3,2,0,5,3,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"7\", \"9\", \"3\"], \"clip_start\": 244.0, \"clip_end\": 248.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q6_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,4,6,1,0,11,14,6,0,0,7,12,4,15,12,3,8,8,6,15,3,2,2,4,15,15,4,5,9,9,7,4,6,15,0,9,12,2,12,15,11,9,0,2,1,2,3,7,8,0,13,3,7,6,14,8,2,3,9,14,1,10,4,11,8,1,6,8,8,9,5,4,6,11,15,11,5,0,1,13,10,7,7,3,10,3,3,12,2,8,9,13,15,0,5,4,15,5,7,11,10,13,0,12,14,4,8,7,4,1,4,7,15,4,3,12,4,13,14,7,14,5,3,4,10,12,15,15,9,7,9,5,11,5,0,9,11,1,10,2,10,11,15,14,14,14,14,4,0,10,0,9,14,1,10,7,3,0,10,14,5,3,14,8,13,10,14,3,2,4,6,15,15,14,0,7,0,4,11,5,12,14,8,4,15,3,11,11,2,7,10,0,6,10,10,2,15,4,2,9,12,2,11,4,8,12,3,13,8,8,15,0,12,11,5,9,15,9,6,9,9,10,12,15,15,12,4,15,11,1,4,3,5,0,3,14,14,2,6,15,8,7,12,14,7,7,9,3,6,13,3,2,0,5,3,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"1\", \"4\", \"3\", \"5\"], \"clip_start\": 228.0, \"clip_end\": 233.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q7_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,4,6,1,0,11,14,6,0,0,7,12,4,15,12,3,8,8,6,15,3,2,2,4,15,15,4,5,9,9,7,4,6,15,0,9,12,2,12,15,11,9,0,2,1,2,3,7,8,0,13,3,7,6,14,8,2,3,9,14,1,10,4,11,8,1,6,8,8,9,5,4,6,11,15,11,5,0,1,13,10,7,7,3,10,3,3,12,2,8,9,13,15,0,5,4,15,5,7,11,10,13,0,12,14,4,8,7,4,1,4,7,15,4,3,12,4,13,14,7,14,5,3,4,10,12,15,15,9,7,9,5,11,5,0,9,11,1,10,2,10,11,15,14,14,14,14,4,0,10,0,9,14,1,10,7,3,0,10,14,5,3,14,8,13,10,14,3,2,4,6,15,15,14,0,7,0,4,11,5,12,14,8,4,15,3,11,11,2,7,10,0,6,10,10,2,15,4,2,9,12,2,11,4,8,12,3,13,8,8,15,0,12,11,5,9,15,9,6,9,9,10,12,15,15,12,4,15,11,1,4,3,5,0,3,14,14,2,6,15,8,7,12,14,7,7,9,3,6,13,3,2,0,5,3,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"9\", \"14\"], \"clip_start\": 148.0, \"clip_end\": 153.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,4,6,1,0,11,14,6,0,0,7,12,4,15,12,3,8,8,6,15,3,2,2,4,15,15,4,5,9,9,7,4,6,15,0,9,12,2,12,15,11,9,0,2,1,2,3,7,8,0,13,3,7,6,14,8,2,3,9,14,1,10,4,11,8,1,6,8,8,9,5,4,6,11,15,11,5,0,1,13,10,7,7,3,10,3,3,12,2,8,9,13,15,0,5,4,15,5,7,11,10,13,0,12,14,4,8,7,4,1,4,7,15,4,3,12,4,13,14,7,14,5,3,4,10,12,15,15,9,7,9,5,11,5,0,9,11,1,10,2,10,11,15,14,14,14,14,4,0,10,0,9,14,1,10,7,3,0,10,14,5,3,14,8,13,10,14,3,2,4,6,15,15,14,0,7,0,4,11,5,12,14,8,4,15,3,11,11,2,7,10,0,6,10,10,2,15,4,2,9,12,2,11,4,8,12,3,13,8,8,15,0,12,11,5,9,15,9,6,9,9,10,12,15,15,12,4,15,11,1,4,3,5,0,3,14,14,2,6,15,8,7,12,14,7,7,9,3,6,13,3,2,0,5,3,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"14\", \"1\", \"10\", \"7\"], \"clip_start\": 150.0, \"clip_end\": 156.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,4,6,1,0,11,14,6,0,0,7,12,4,15,12,3,8,8,6,15,3,2,2,4,15,15,4,5,9,9,7,4,6,15,0,9,12,2,12,15,11,9,0,2,1,2,3,7,8,0,13,3,7,6,14,8,2,3,9,14,1,10,4,11,8,1,6,8,8,9,5,4,6,11,15,11,5,0,1,13,10,7,7,3,10,3,3,12,2,8,9,13,15,0,5,4,15,5,7,11,10,13,0,12,14,4,8,7,4,1,4,7,15,4,3,12,4,13,14,7,14,5,3,4,10,12,15,15,9,7,9,5,11,5,0,9,11,1,10,2,10,11,15,14,14,14,14,4,0,10,0,9,14,1,10,7,3,0,10,14,5,3,14,8,13,10,14,3,2,4,6,15,15,14,0,7,0,4,11,5,12,14,8,4,15,3,11,11,2,7,10,0,6,10,10,2,15,4,2,9,12,2,11,4,8,12,3,13,8,8,15,0,12,11,5,9,15,9,6,9,9,10,12,15,15,12,4,15,11,1,4,3,5,0,3,14,14,2,6,15,8,7,12,14,7,7,9,3,6,13,3,2,0,5,3,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"9\", \"12\", \"2\", \"11\"], \"clip_start\": 197.0, \"clip_end\": 203.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q10_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,4,6,1,0,11,14,6,0,0,7,12,4,15,12,3,8,8,6,15,3,2,2,4,15,15,4,5,9,9,7,4,6,15,0,9,12,2,12,15,11,9,0,2,1,2,3,7,8,0,13,3,7,6,14,8,2,3,9,14,1,10,4,11,8,1,6,8,8,9,5,4,6,11,15,11,5,0,1,13,10,7,7,3,10,3,3,12,2,8,9,13,15,0,5,4,15,5,7,11,10,13,0,12,14,4,8,7,4,1,4,7,15,4,3,12,4,13,14,7,14,5,3,4,10,12,15,15,9,7,9,5,11,5,0,9,11,1,10,2,10,11,15,14,14,14,14,4,0,10,0,9,14,1,10,7,3,0,10,14,5,3,14,8,13,10,14,3,2,4,6,15,15,14,0,7,0,4,11,5,12,14,8,4,15,3,11,11,2,7,10,0,6,10,10,2,15,4,2,9,12,2,11,4,8,12,3,13,8,8,15,0,12,11,5,9,15,9,6,9,9,10,12,15,15,12,4,15,11,1,4,3,5,0,3,14,14,2,6,15,8,7,12,14,7,7,9,3,6,13,3,2,0,5,3,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"9\", \"9\", \"7\", \"4\"], \"clip_start\": 27.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,4,6,1,0,11,14,6,0,0,7,12,4,15,12,3,8,8,6,15,3,2,2,4,15,15,4,5,9,9,7,4,6,15,0,9,12,2,12,15,11,9,0,2,1,2,3,7,8,0,13,3,7,6,14,8,2,3,9,14,1,10,4,11,8,1,6,8,8,9,5,4,6,11,15,11,5,0,1,13,10,7,7,3,10,3,3,12,2,8,9,13,15,0,5,4,15,5,7,11,10,13,0,12,14,4,8,7,4,1,4,7,15,4,3,12,4,13,14,7,14,5,3,4,10,12,15,15,9,7,9,5,11,5,0,9,11,1,10,2,10,11,15,14,14,14,14,4,0,10,0,9,14,1,10,7,3,0,10,14,5,3,14,8,13,10,14,3,2,4,6,15,15,14,0,7,0,4,11,5,12,14,8,4,15,3,11,11,2,7,10,0,6,10,10,2,15,4,2,9,12,2,11,4,8,12,3,13,8,8,15,0,12,11,5,9,15,9,6,9,9,10,12,15,15,12,4,15,11,1,4,3,5,0,3,14,14,2,6,15,8,7,12,14,7,7,9,3,6,13,3,2,0,5,3,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"3\", \"5\"], \"clip_start\": 231.0, \"clip_end\": 235.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q12_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,4,6,1,0,11,14,6,0,0,7,12,4,15,12,3,8,8,6,15,3,2,2,4,15,15,4,5,9,9,7,4,6,15,0,9,12,2,12,15,11,9,0,2,1,2,3,7,8,0,13,3,7,6,14,8,2,3,9,14,1,10,4,11,8,1,6,8,8,9,5,4,6,11,15,11,5,0,1,13,10,7,7,3,10,3,3,12,2,8,9,13,15,0,5,4,15,5,7,11,10,13,0,12,14,4,8,7,4,1,4,7,15,4,3,12,4,13,14,7,14,5,3,4,10,12,15,15,9,7,9,5,11,5,0,9,11,1,10,2,10,11,15,14,14,14,14,4,0,10,0,9,14,1,10,7,3,0,10,14,5,3,14,8,13,10,14,3,2,4,6,15,15,14,0,7,0,4,11,5,12,14,8,4,15,3,11,11,2,7,10,0,6,10,10,2,15,4,2,9,12,2,11,4,8,12,3,13,8,8,15,0,12,11,5,9,15,9,6,9,9,10,12,15,15,12,4,15,11,1,4,3,5,0,3,14,14,2,6,15,8,7,12,14,7,7,9,3,6,13,3,2,0,5,3,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"10\", \"11\", \"0\", \"0\"], \"clip_start\": 45.0, \"clip_end\": 51.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q13_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,4,6,1,0,11,14,6,0,0,7,12,4,15,12,3,8,8,6,15,3,2,2,4,15,15,4,5,9,9,7,4,6,15,0,9,12,2,12,15,11,9,0,2,1,2,3,7,8,0,13,3,7,6,14,8,2,3,9,14,1,10,4,11,8,1,6,8,8,9,5,4,6,11,15,11,5,0,1,13,10,7,7,3,10,3,3,12,2,8,9,13,15,0,5,4,15,5,7,11,10,13,0,12,14,4,8,7,4,1,4,7,15,4,3,12,4,13,14,7,14,5,3,4,10,12,15,15,9,7,9,5,11,5,0,9,11,1,10,2,10,11,15,14,14,14,14,4,0,10,0,9,14,1,10,7,3,0,10,14,5,3,14,8,13,10,14,3,2,4,6,15,15,14,0,7,0,4,11,5,12,14,8,4,15,3,11,11,2,7,10,0,6,10,10,2,15,4,2,9,12,2,11,4,8,12,3,13,8,8,15,0,12,11,5,9,15,9,6,9,9,10,12,15,15,12,4,15,11,1,4,3,5,0,3,14,14,2,6,15,8,7,12,14,7,7,9,3,6,13,3,2,0,5,3,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"0\", \"6\"], \"clip_start\": 189.0, \"clip_end\": 193.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q14_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,4,6,1,0,11,14,6,0,0,7,12,4,15,12,3,8,8,6,15,3,2,2,4,15,15,4,5,9,9,7,4,6,15,0,9,12,2,12,15,11,9,0,2,1,2,3,7,8,0,13,3,7,6,14,8,2,3,9,14,1,10,4,11,8,1,6,8,8,9,5,4,6,11,15,11,5,0,1,13,10,7,7,3,10,3,3,12,2,8,9,13,15,0,5,4,15,5,7,11,10,13,0,12,14,4,8,7,4,1,4,7,15,4,3,12,4,13,14,7,14,5,3,4,10,12,15,15,9,7,9,5,11,5,0,9,11,1,10,2,10,11,15,14,14,14,14,4,0,10,0,9,14,1,10,7,3,0,10,14,5,3,14,8,13,10,14,3,2,4,6,15,15,14,0,7,0,4,11,5,12,14,8,4,15,3,11,11,2,7,10,0,6,10,10,2,15,4,2,9,12,2,11,4,8,12,3,13,8,8,15,0,12,11,5,9,15,9,6,9,9,10,12,15,15,12,4,15,11,1,4,3,5,0,3,14,14,2,6,15,8,7,12,14,7,7,9,3,6,13,3,2,0,5,3,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"6\", \"14\", \"8\", \"2\"], \"clip_start\": 51.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q15_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,4,6,1,0,11,14,6,0,0,7,12,4,15,12,3,8,8,6,15,3,2,2,4,15,15,4,5,9,9,7,4,6,15,0,9,12,2,12,15,11,9,0,2,1,2,3,7,8,0,13,3,7,6,14,8,2,3,9,14,1,10,4,11,8,1,6,8,8,9,5,4,6,11,15,11,5,0,1,13,10,7,7,3,10,3,3,12,2,8,9,13,15,0,5,4,15,5,7,11,10,13,0,12,14,4,8,7,4,1,4,7,15,4,3,12,4,13,14,7,14,5,3,4,10,12,15,15,9,7,9,5,11,5,0,9,11,1,10,2,10,11,15,14,14,14,14,4,0,10,0,9,14,1,10,7,3,0,10,14,5,3,14,8,13,10,14,3,2,4,6,15,15,14,0,7,0,4,11,5,12,14,8,4,15,3,11,11,2,7,10,0,6,10,10,2,15,4,2,9,12,2,11,4,8,12,3,13,8,8,15,0,12,11,5,9,15,9,6,9,9,10,12,15,15,12,4,15,11,1,4,3,5,0,3,14,14,2,6,15,8,7,12,14,7,7,9,3,6,13,3,2,0,5,3,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"15\", \"5\", \"3\"], \"clip_start\": 220.0, \"clip_end\": 224.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,0,9,11,5,1,8,9,1,0,14,1,14,9,2,13,6,15,14,9,6,2,14,6,0,2,9,6,4,0,7,6,1,8,4,8,3,14,6,6,2,11,0,0,6,6,4,3,0,7,14,2,15,3,8,3,8,1,14,3,9,8,8,4,14,10,14,2,0,0,14,0,4,10,9,2,8,6,4,6,11,2,2,0,10,11,3,11,5,9,12,12,14,6,0,4,11,0,7,9,3,3,0,4,3,13,15,13,9,1,8,4,1,1,8,9,14,2,15,10,1,14,3,11,10,7,1,5,3,7,14,13,5,12,8,12,0,13,0,0,15,2,15,13,15,15,8,14,7,8,15,5,11,11,14,0,4,15,3,1,11,11,2,3,9,3,5,3,5,10,6,9,14,3,15,14,12,5,1,4,9,10,0,10,14,5,1,7,15,6,1,8,5,9,14,6,14,4,2,8,5,3,13,7,0,10,3,3,11,0,10,10,6,9,3,14,6,13,8,15,5,3,9,12,15,11,13,10,8,8,15,4,13,6,2,2,4,9,0,11,1,12,14,0,4,15,0,0,11,9,13,13,14,3", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"12\", \"5\", \"1\"], \"clip_start\": 176.0, \"clip_end\": 181.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,0,9,11,5,1,8,9,1,0,14,1,14,9,2,13,6,15,14,9,6,2,14,6,0,2,9,6,4,0,7,6,1,8,4,8,3,14,6,6,2,11,0,0,6,6,4,3,0,7,14,2,15,3,8,3,8,1,14,3,9,8,8,4,14,10,14,2,0,0,14,0,4,10,9,2,8,6,4,6,11,2,2,0,10,11,3,11,5,9,12,12,14,6,0,4,11,0,7,9,3,3,0,4,3,13,15,13,9,1,8,4,1,1,8,9,14,2,15,10,1,14,3,11,10,7,1,5,3,7,14,13,5,12,8,12,0,13,0,0,15,2,15,13,15,15,8,14,7,8,15,5,11,11,14,0,4,15,3,1,11,11,2,3,9,3,5,3,5,10,6,9,14,3,15,14,12,5,1,4,9,10,0,10,14,5,1,7,15,6,1,8,5,9,14,6,14,4,2,8,5,3,13,7,0,10,3,3,11,0,10,10,6,9,3,14,6,13,8,15,5,3,9,12,15,11,13,10,8,8,15,4,13,6,2,2,4,9,0,11,1,12,14,0,4,15,0,0,11,9,13,13,14,3", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"8\", \"15\", \"5\"], \"clip_start\": 149.0, \"clip_end\": 154.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,0,9,11,5,1,8,9,1,0,14,1,14,9,2,13,6,15,14,9,6,2,14,6,0,2,9,6,4,0,7,6,1,8,4,8,3,14,6,6,2,11,0,0,6,6,4,3,0,7,14,2,15,3,8,3,8,1,14,3,9,8,8,4,14,10,14,2,0,0,14,0,4,10,9,2,8,6,4,6,11,2,2,0,10,11,3,11,5,9,12,12,14,6,0,4,11,0,7,9,3,3,0,4,3,13,15,13,9,1,8,4,1,1,8,9,14,2,15,10,1,14,3,11,10,7,1,5,3,7,14,13,5,12,8,12,0,13,0,0,15,2,15,13,15,15,8,14,7,8,15,5,11,11,14,0,4,15,3,1,11,11,2,3,9,3,5,3,5,10,6,9,14,3,15,14,12,5,1,4,9,10,0,10,14,5,1,7,15,6,1,8,5,9,14,6,14,4,2,8,5,3,13,7,0,10,3,3,11,0,10,10,6,9,3,14,6,13,8,15,5,3,9,12,15,11,13,10,8,8,15,4,13,6,2,2,4,9,0,11,1,12,14,0,4,15,0,0,11,9,13,13,14,3", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"2\", \"13\", \"6\", \"15\", \"14\"], \"clip_start\": 15.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,0,9,11,5,1,8,9,1,0,14,1,14,9,2,13,6,15,14,9,6,2,14,6,0,2,9,6,4,0,7,6,1,8,4,8,3,14,6,6,2,11,0,0,6,6,4,3,0,7,14,2,15,3,8,3,8,1,14,3,9,8,8,4,14,10,14,2,0,0,14,0,4,10,9,2,8,6,4,6,11,2,2,0,10,11,3,11,5,9,12,12,14,6,0,4,11,0,7,9,3,3,0,4,3,13,15,13,9,1,8,4,1,1,8,9,14,2,15,10,1,14,3,11,10,7,1,5,3,7,14,13,5,12,8,12,0,13,0,0,15,2,15,13,15,15,8,14,7,8,15,5,11,11,14,0,4,15,3,1,11,11,2,3,9,3,5,3,5,10,6,9,14,3,15,14,12,5,1,4,9,10,0,10,14,5,1,7,15,6,1,8,5,9,14,6,14,4,2,8,5,3,13,7,0,10,3,3,11,0,10,10,6,9,3,14,6,13,8,15,5,3,9,12,15,11,13,10,8,8,15,4,13,6,2,2,4,9,0,11,1,12,14,0,4,15,0,0,11,9,13,13,14,3", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"3\"], \"clip_start\": 207.0, \"clip_end\": 210.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,0,9,11,5,1,8,9,1,0,14,1,14,9,2,13,6,15,14,9,6,2,14,6,0,2,9,6,4,0,7,6,1,8,4,8,3,14,6,6,2,11,0,0,6,6,4,3,0,7,14,2,15,3,8,3,8,1,14,3,9,8,8,4,14,10,14,2,0,0,14,0,4,10,9,2,8,6,4,6,11,2,2,0,10,11,3,11,5,9,12,12,14,6,0,4,11,0,7,9,3,3,0,4,3,13,15,13,9,1,8,4,1,1,8,9,14,2,15,10,1,14,3,11,10,7,1,5,3,7,14,13,5,12,8,12,0,13,0,0,15,2,15,13,15,15,8,14,7,8,15,5,11,11,14,0,4,15,3,1,11,11,2,3,9,3,5,3,5,10,6,9,14,3,15,14,12,5,1,4,9,10,0,10,14,5,1,7,15,6,1,8,5,9,14,6,14,4,2,8,5,3,13,7,0,10,3,3,11,0,10,10,6,9,3,14,6,13,8,15,5,3,9,12,15,11,13,10,8,8,15,4,13,6,2,2,4,9,0,11,1,12,14,0,4,15,0,0,11,9,13,13,14,3", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\", \"1\"], \"clip_start\": 252.0, \"clip_end\": 256.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q5_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,0,9,11,5,1,8,9,1,0,14,1,14,9,2,13,6,15,14,9,6,2,14,6,0,2,9,6,4,0,7,6,1,8,4,8,3,14,6,6,2,11,0,0,6,6,4,3,0,7,14,2,15,3,8,3,8,1,14,3,9,8,8,4,14,10,14,2,0,0,14,0,4,10,9,2,8,6,4,6,11,2,2,0,10,11,3,11,5,9,12,12,14,6,0,4,11,0,7,9,3,3,0,4,3,13,15,13,9,1,8,4,1,1,8,9,14,2,15,10,1,14,3,11,10,7,1,5,3,7,14,13,5,12,8,12,0,13,0,0,15,2,15,13,15,15,8,14,7,8,15,5,11,11,14,0,4,15,3,1,11,11,2,3,9,3,5,3,5,10,6,9,14,3,15,14,12,5,1,4,9,10,0,10,14,5,1,7,15,6,1,8,5,9,14,6,14,4,2,8,5,3,13,7,0,10,3,3,11,0,10,10,6,9,3,14,6,13,8,15,5,3,9,12,15,11,13,10,8,8,15,4,13,6,2,2,4,9,0,11,1,12,14,0,4,15,0,0,11,9,13,13,14,3", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"5\", \"7\", \"3\", \"13\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q6_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,0,9,11,5,1,8,9,1,0,14,1,14,9,2,13,6,15,14,9,6,2,14,6,0,2,9,6,4,0,7,6,1,8,4,8,3,14,6,6,2,11,0,0,6,6,4,3,0,7,14,2,15,3,8,3,8,1,14,3,9,8,8,4,14,10,14,2,0,0,14,0,4,10,9,2,8,6,4,6,11,2,2,0,10,11,3,11,5,9,12,12,14,6,0,4,11,0,7,9,3,3,0,4,3,13,15,13,9,1,8,4,1,1,8,9,14,2,15,10,1,14,3,11,10,7,1,5,3,7,14,13,5,12,8,12,0,13,0,0,15,2,15,13,15,15,8,14,7,8,15,5,11,11,14,0,4,15,3,1,11,11,2,3,9,3,5,3,5,10,6,9,14,3,15,14,12,5,1,4,9,10,0,10,14,5,1,7,15,6,1,8,5,9,14,6,14,4,2,8,5,3,13,7,0,10,3,3,11,0,10,10,6,9,3,14,6,13,8,15,5,3,9,12,15,11,13,10,8,8,15,4,13,6,2,2,4,9,0,11,1,12,14,0,4,15,0,0,11,9,13,13,14,3", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"2\", \"4\", \"9\"], \"clip_start\": 235.0, \"clip_end\": 240.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,0,9,11,5,1,8,9,1,0,14,1,14,9,2,13,6,15,14,9,6,2,14,6,0,2,9,6,4,0,7,6,1,8,4,8,3,14,6,6,2,11,0,0,6,6,4,3,0,7,14,2,15,3,8,3,8,1,14,3,9,8,8,4,14,10,14,2,0,0,14,0,4,10,9,2,8,6,4,6,11,2,2,0,10,11,3,11,5,9,12,12,14,6,0,4,11,0,7,9,3,3,0,4,3,13,15,13,9,1,8,4,1,1,8,9,14,2,15,10,1,14,3,11,10,7,1,5,3,7,14,13,5,12,8,12,0,13,0,0,15,2,15,13,15,15,8,14,7,8,15,5,11,11,14,0,4,15,3,1,11,11,2,3,9,3,5,3,5,10,6,9,14,3,15,14,12,5,1,4,9,10,0,10,14,5,1,7,15,6,1,8,5,9,14,6,14,4,2,8,5,3,13,7,0,10,3,3,11,0,10,10,6,9,3,14,6,13,8,15,5,3,9,12,15,11,13,10,8,8,15,4,13,6,2,2,4,9,0,11,1,12,14,0,4,15,0,0,11,9,13,13,14,3", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"0\", \"4\", \"3\", \"13\", \"15\"], \"clip_start\": 103.0, \"clip_end\": 109.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q8_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,0,9,11,5,1,8,9,1,0,14,1,14,9,2,13,6,15,14,9,6,2,14,6,0,2,9,6,4,0,7,6,1,8,4,8,3,14,6,6,2,11,0,0,6,6,4,3,0,7,14,2,15,3,8,3,8,1,14,3,9,8,8,4,14,10,14,2,0,0,14,0,4,10,9,2,8,6,4,6,11,2,2,0,10,11,3,11,5,9,12,12,14,6,0,4,11,0,7,9,3,3,0,4,3,13,15,13,9,1,8,4,1,1,8,9,14,2,15,10,1,14,3,11,10,7,1,5,3,7,14,13,5,12,8,12,0,13,0,0,15,2,15,13,15,15,8,14,7,8,15,5,11,11,14,0,4,15,3,1,11,11,2,3,9,3,5,3,5,10,6,9,14,3,15,14,12,5,1,4,9,10,0,10,14,5,1,7,15,6,1,8,5,9,14,6,14,4,2,8,5,3,13,7,0,10,3,3,11,0,10,10,6,9,3,14,6,13,8,15,5,3,9,12,15,11,13,10,8,8,15,4,13,6,2,2,4,9,0,11,1,12,14,0,4,15,0,0,11,9,13,13,14,3", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"3\"], \"clip_start\": 221.0, \"clip_end\": 224.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,0,9,11,5,1,8,9,1,0,14,1,14,9,2,13,6,15,14,9,6,2,14,6,0,2,9,6,4,0,7,6,1,8,4,8,3,14,6,6,2,11,0,0,6,6,4,3,0,7,14,2,15,3,8,3,8,1,14,3,9,8,8,4,14,10,14,2,0,0,14,0,4,10,9,2,8,6,4,6,11,2,2,0,10,11,3,11,5,9,12,12,14,6,0,4,11,0,7,9,3,3,0,4,3,13,15,13,9,1,8,4,1,1,8,9,14,2,15,10,1,14,3,11,10,7,1,5,3,7,14,13,5,12,8,12,0,13,0,0,15,2,15,13,15,15,8,14,7,8,15,5,11,11,14,0,4,15,3,1,11,11,2,3,9,3,5,3,5,10,6,9,14,3,15,14,12,5,1,4,9,10,0,10,14,5,1,7,15,6,1,8,5,9,14,6,14,4,2,8,5,3,13,7,0,10,3,3,11,0,10,10,6,9,3,14,6,13,8,15,5,3,9,12,15,11,13,10,8,8,15,4,13,6,2,2,4,9,0,11,1,12,14,0,4,15,0,0,11,9,13,13,14,3", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"0\", \"14\", \"0\"], \"clip_start\": 69.0, \"clip_end\": 74.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q10_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,0,9,11,5,1,8,9,1,0,14,1,14,9,2,13,6,15,14,9,6,2,14,6,0,2,9,6,4,0,7,6,1,8,4,8,3,14,6,6,2,11,0,0,6,6,4,3,0,7,14,2,15,3,8,3,8,1,14,3,9,8,8,4,14,10,14,2,0,0,14,0,4,10,9,2,8,6,4,6,11,2,2,0,10,11,3,11,5,9,12,12,14,6,0,4,11,0,7,9,3,3,0,4,3,13,15,13,9,1,8,4,1,1,8,9,14,2,15,10,1,14,3,11,10,7,1,5,3,7,14,13,5,12,8,12,0,13,0,0,15,2,15,13,15,15,8,14,7,8,15,5,11,11,14,0,4,15,3,1,11,11,2,3,9,3,5,3,5,10,6,9,14,3,15,14,12,5,1,4,9,10,0,10,14,5,1,7,15,6,1,8,5,9,14,6,14,4,2,8,5,3,13,7,0,10,3,3,11,0,10,10,6,9,3,14,6,13,8,15,5,3,9,12,15,11,13,10,8,8,15,4,13,6,2,2,4,9,0,11,1,12,14,0,4,15,0,0,11,9,13,13,14,3", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"9\", \"1\", \"8\"], \"clip_start\": 109.0, \"clip_end\": 113.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q11_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,0,9,11,5,1,8,9,1,0,14,1,14,9,2,13,6,15,14,9,6,2,14,6,0,2,9,6,4,0,7,6,1,8,4,8,3,14,6,6,2,11,0,0,6,6,4,3,0,7,14,2,15,3,8,3,8,1,14,3,9,8,8,4,14,10,14,2,0,0,14,0,4,10,9,2,8,6,4,6,11,2,2,0,10,11,3,11,5,9,12,12,14,6,0,4,11,0,7,9,3,3,0,4,3,13,15,13,9,1,8,4,1,1,8,9,14,2,15,10,1,14,3,11,10,7,1,5,3,7,14,13,5,12,8,12,0,13,0,0,15,2,15,13,15,15,8,14,7,8,15,5,11,11,14,0,4,15,3,1,11,11,2,3,9,3,5,3,5,10,6,9,14,3,15,14,12,5,1,4,9,10,0,10,14,5,1,7,15,6,1,8,5,9,14,6,14,4,2,8,5,3,13,7,0,10,3,3,11,0,10,10,6,9,3,14,6,13,8,15,5,3,9,12,15,11,13,10,8,8,15,4,13,6,2,2,4,9,0,11,1,12,14,0,4,15,0,0,11,9,13,13,14,3", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"10\", \"5\", \"10\", \"7\"], \"clip_start\": 220.0, \"clip_end\": 226.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q12_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,0,9,11,5,1,8,9,1,0,14,1,14,9,2,13,6,15,14,9,6,2,14,6,0,2,9,6,4,0,7,6,1,8,4,8,3,14,6,6,2,11,0,0,6,6,4,3,0,7,14,2,15,3,8,3,8,1,14,3,9,8,8,4,14,10,14,2,0,0,14,0,4,10,9,2,8,6,4,6,11,2,2,0,10,11,3,11,5,9,12,12,14,6,0,4,11,0,7,9,3,3,0,4,3,13,15,13,9,1,8,4,1,1,8,9,14,2,15,10,1,14,3,11,10,7,1,5,3,7,14,13,5,12,8,12,0,13,0,0,15,2,15,13,15,15,8,14,7,8,15,5,11,11,14,0,4,15,3,1,11,11,2,3,9,3,5,3,5,10,6,9,14,3,15,14,12,5,1,4,9,10,0,10,14,5,1,7,15,6,1,8,5,9,14,6,14,4,2,8,5,3,13,7,0,10,3,3,11,0,10,10,6,9,3,14,6,13,8,15,5,3,9,12,15,11,13,10,8,8,15,4,13,6,2,2,4,9,0,11,1,12,14,0,4,15,0,0,11,9,13,13,14,3", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"15\", \"0\", \"0\", \"10\"], \"clip_start\": 63.0, \"clip_end\": 69.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q13_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,0,9,11,5,1,8,9,1,0,14,1,14,9,2,13,6,15,14,9,6,2,14,6,0,2,9,6,4,0,7,6,1,8,4,8,3,14,6,6,2,11,0,0,6,6,4,3,0,7,14,2,15,3,8,3,8,1,14,3,9,8,8,4,14,10,14,2,0,0,14,0,4,10,9,2,8,6,4,6,11,2,2,0,10,11,3,11,5,9,12,12,14,6,0,4,11,0,7,9,3,3,0,4,3,13,15,13,9,1,8,4,1,1,8,9,14,2,15,10,1,14,3,11,10,7,1,5,3,7,14,13,5,12,8,12,0,13,0,0,15,2,15,13,15,15,8,14,7,8,15,5,11,11,14,0,4,15,3,1,11,11,2,3,9,3,5,3,5,10,6,9,14,3,15,14,12,5,1,4,9,10,0,10,14,5,1,7,15,6,1,8,5,9,14,6,14,4,2,8,5,3,13,7,0,10,3,3,11,0,10,10,6,9,3,14,6,13,8,15,5,3,9,12,15,11,13,10,8,8,15,4,13,6,2,2,4,9,0,11,1,12,14,0,4,15,0,0,11,9,13,13,14,3", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"11\", \"5\"], \"clip_start\": 87.0, \"clip_end\": 91.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,0,9,11,5,1,8,9,1,0,14,1,14,9,2,13,6,15,14,9,6,2,14,6,0,2,9,6,4,0,7,6,1,8,4,8,3,14,6,6,2,11,0,0,6,6,4,3,0,7,14,2,15,3,8,3,8,1,14,3,9,8,8,4,14,10,14,2,0,0,14,0,4,10,9,2,8,6,4,6,11,2,2,0,10,11,3,11,5,9,12,12,14,6,0,4,11,0,7,9,3,3,0,4,3,13,15,13,9,1,8,4,1,1,8,9,14,2,15,10,1,14,3,11,10,7,1,5,3,7,14,13,5,12,8,12,0,13,0,0,15,2,15,13,15,15,8,14,7,8,15,5,11,11,14,0,4,15,3,1,11,11,2,3,9,3,5,3,5,10,6,9,14,3,15,14,12,5,1,4,9,10,0,10,14,5,1,7,15,6,1,8,5,9,14,6,14,4,2,8,5,3,13,7,0,10,3,3,11,0,10,10,6,9,3,14,6,13,8,15,5,3,9,12,15,11,13,10,8,8,15,4,13,6,2,2,4,9,0,11,1,12,14,0,4,15,0,0,11,9,13,13,14,3", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"8\", \"5\", \"10\"], \"clip_start\": 61.0, \"clip_end\": 67.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q15_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,2,0,9,11,5,1,8,9,1,0,14,1,14,9,2,13,6,15,14,9,6,2,14,6,0,2,9,6,4,0,7,6,1,8,4,8,3,14,6,6,2,11,0,0,6,6,4,3,0,7,14,2,15,3,8,3,8,1,14,3,9,8,8,4,14,10,14,2,0,0,14,0,4,10,9,2,8,6,4,6,11,2,2,0,10,11,3,11,5,9,12,12,14,6,0,4,11,0,7,9,3,3,0,4,3,13,15,13,9,1,8,4,1,1,8,9,14,2,15,10,1,14,3,11,10,7,1,5,3,7,14,13,5,12,8,12,0,13,0,0,15,2,15,13,15,15,8,14,7,8,15,5,11,11,14,0,4,15,3,1,11,11,2,3,9,3,5,3,5,10,6,9,14,3,15,14,12,5,1,4,9,10,0,10,14,5,1,7,15,6,1,8,5,9,14,6,14,4,2,8,5,3,13,7,0,10,3,3,11,0,10,10,6,9,3,14,6,13,8,15,5,3,9,12,15,11,13,10,8,8,15,4,13,6,2,2,4,9,0,11,1,12,14,0,4,15,0,0,11,9,13,13,14,3", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"8\", \"9\"], \"clip_start\": 218.0, \"clip_end\": 221.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,9,8,15,5,13,3,14,10,2,5,1,3,10,1,8,2,14,1,8,3,1,4,12,5,3,4,11,8,12,13,15,11,3,13,1,9,6,13,14,11,9,2,10,5,1,15,11,6,11,8,3,4,10,6,2,14,8,2,14,0,4,10,5,7,5,0,2,15,15,6,10,12,14,11,3,10,7,1,6,5,5,2,7,9,8,1,2,1,10,8,2,15,4,13,14,11,15,10,4,2,12,8,14,14,10,13,5,4,3,13,3,0,5,12,4,15,2,11,3,7,5,11,5,9,6,1,14,11,12,13,9,13,0,9,5,14,12,3,5,13,5,8,1,5,4,5,8,3,12,14,5,1,9,13,12,10,5,10,7,1,5,8,10,0,5,12,13,14,9,13,7,15,11,9,15,7,1,3,12,6,5,15,3,8,6,9,2,5,2,1,13,2,2,10,0,0,2,12,1,13,5,15,2,5,9,4,1,9,11,6,1,12,4,14,11,13,6,8,9,7,4,14,11,11,2,5,4,7,13,4,11,5,6,4,10,10,1,3,8,15,5,8,9,13,3,8,6,1,3,2,15,5,4,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 80.0, \"clip_end\": 84.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,9,8,15,5,13,3,14,10,2,5,1,3,10,1,8,2,14,1,8,3,1,4,12,5,3,4,11,8,12,13,15,11,3,13,1,9,6,13,14,11,9,2,10,5,1,15,11,6,11,8,3,4,10,6,2,14,8,2,14,0,4,10,5,7,5,0,2,15,15,6,10,12,14,11,3,10,7,1,6,5,5,2,7,9,8,1,2,1,10,8,2,15,4,13,14,11,15,10,4,2,12,8,14,14,10,13,5,4,3,13,3,0,5,12,4,15,2,11,3,7,5,11,5,9,6,1,14,11,12,13,9,13,0,9,5,14,12,3,5,13,5,8,1,5,4,5,8,3,12,14,5,1,9,13,12,10,5,10,7,1,5,8,10,0,5,12,13,14,9,13,7,15,11,9,15,7,1,3,12,6,5,15,3,8,6,9,2,5,2,1,13,2,2,10,0,0,2,12,1,13,5,15,2,5,9,4,1,9,11,6,1,12,4,14,11,13,6,8,9,7,4,14,11,11,2,5,4,7,13,4,11,5,6,4,10,10,1,3,8,15,5,8,9,13,3,8,6,1,3,2,15,5,4,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"6\", \"9\"], \"clip_start\": 184.0, \"clip_end\": 188.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,9,8,15,5,13,3,14,10,2,5,1,3,10,1,8,2,14,1,8,3,1,4,12,5,3,4,11,8,12,13,15,11,3,13,1,9,6,13,14,11,9,2,10,5,1,15,11,6,11,8,3,4,10,6,2,14,8,2,14,0,4,10,5,7,5,0,2,15,15,6,10,12,14,11,3,10,7,1,6,5,5,2,7,9,8,1,2,1,10,8,2,15,4,13,14,11,15,10,4,2,12,8,14,14,10,13,5,4,3,13,3,0,5,12,4,15,2,11,3,7,5,11,5,9,6,1,14,11,12,13,9,13,0,9,5,14,12,3,5,13,5,8,1,5,4,5,8,3,12,14,5,1,9,13,12,10,5,10,7,1,5,8,10,0,5,12,13,14,9,13,7,15,11,9,15,7,1,3,12,6,5,15,3,8,6,9,2,5,2,1,13,2,2,10,0,0,2,12,1,13,5,15,2,5,9,4,1,9,11,6,1,12,4,14,11,13,6,8,9,7,4,14,11,11,2,5,4,7,13,4,11,5,6,4,10,10,1,3,8,15,5,8,9,13,3,8,6,1,3,2,15,5,4,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"6\", \"5\"], \"clip_start\": 179.0, \"clip_end\": 183.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,9,8,15,5,13,3,14,10,2,5,1,3,10,1,8,2,14,1,8,3,1,4,12,5,3,4,11,8,12,13,15,11,3,13,1,9,6,13,14,11,9,2,10,5,1,15,11,6,11,8,3,4,10,6,2,14,8,2,14,0,4,10,5,7,5,0,2,15,15,6,10,12,14,11,3,10,7,1,6,5,5,2,7,9,8,1,2,1,10,8,2,15,4,13,14,11,15,10,4,2,12,8,14,14,10,13,5,4,3,13,3,0,5,12,4,15,2,11,3,7,5,11,5,9,6,1,14,11,12,13,9,13,0,9,5,14,12,3,5,13,5,8,1,5,4,5,8,3,12,14,5,1,9,13,12,10,5,10,7,1,5,8,10,0,5,12,13,14,9,13,7,15,11,9,15,7,1,3,12,6,5,15,3,8,6,9,2,5,2,1,13,2,2,10,0,0,2,12,1,13,5,15,2,5,9,4,1,9,11,6,1,12,4,14,11,13,6,8,9,7,4,14,11,11,2,5,4,7,13,4,11,5,6,4,10,10,1,3,8,15,5,8,9,13,3,8,6,1,3,2,15,5,4,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"4\", \"5\", \"8\", \"3\"], \"clip_start\": 144.0, \"clip_end\": 150.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,9,8,15,5,13,3,14,10,2,5,1,3,10,1,8,2,14,1,8,3,1,4,12,5,3,4,11,8,12,13,15,11,3,13,1,9,6,13,14,11,9,2,10,5,1,15,11,6,11,8,3,4,10,6,2,14,8,2,14,0,4,10,5,7,5,0,2,15,15,6,10,12,14,11,3,10,7,1,6,5,5,2,7,9,8,1,2,1,10,8,2,15,4,13,14,11,15,10,4,2,12,8,14,14,10,13,5,4,3,13,3,0,5,12,4,15,2,11,3,7,5,11,5,9,6,1,14,11,12,13,9,13,0,9,5,14,12,3,5,13,5,8,1,5,4,5,8,3,12,14,5,1,9,13,12,10,5,10,7,1,5,8,10,0,5,12,13,14,9,13,7,15,11,9,15,7,1,3,12,6,5,15,3,8,6,9,2,5,2,1,13,2,2,10,0,0,2,12,1,13,5,15,2,5,9,4,1,9,11,6,1,12,4,14,11,13,6,8,9,7,4,14,11,11,2,5,4,7,13,4,11,5,6,4,10,10,1,3,8,15,5,8,9,13,3,8,6,1,3,2,15,5,4,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"1\", \"3\"], \"clip_start\": 176.0, \"clip_end\": 180.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,9,8,15,5,13,3,14,10,2,5,1,3,10,1,8,2,14,1,8,3,1,4,12,5,3,4,11,8,12,13,15,11,3,13,1,9,6,13,14,11,9,2,10,5,1,15,11,6,11,8,3,4,10,6,2,14,8,2,14,0,4,10,5,7,5,0,2,15,15,6,10,12,14,11,3,10,7,1,6,5,5,2,7,9,8,1,2,1,10,8,2,15,4,13,14,11,15,10,4,2,12,8,14,14,10,13,5,4,3,13,3,0,5,12,4,15,2,11,3,7,5,11,5,9,6,1,14,11,12,13,9,13,0,9,5,14,12,3,5,13,5,8,1,5,4,5,8,3,12,14,5,1,9,13,12,10,5,10,7,1,5,8,10,0,5,12,13,14,9,13,7,15,11,9,15,7,1,3,12,6,5,15,3,8,6,9,2,5,2,1,13,2,2,10,0,0,2,12,1,13,5,15,2,5,9,4,1,9,11,6,1,12,4,14,11,13,6,8,9,7,4,14,11,11,2,5,4,7,13,4,11,5,6,4,10,10,1,3,8,15,5,8,9,13,3,8,6,1,3,2,15,5,4,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"9\", \"2\", \"5\"], \"clip_start\": 186.0, \"clip_end\": 190.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,9,8,15,5,13,3,14,10,2,5,1,3,10,1,8,2,14,1,8,3,1,4,12,5,3,4,11,8,12,13,15,11,3,13,1,9,6,13,14,11,9,2,10,5,1,15,11,6,11,8,3,4,10,6,2,14,8,2,14,0,4,10,5,7,5,0,2,15,15,6,10,12,14,11,3,10,7,1,6,5,5,2,7,9,8,1,2,1,10,8,2,15,4,13,14,11,15,10,4,2,12,8,14,14,10,13,5,4,3,13,3,0,5,12,4,15,2,11,3,7,5,11,5,9,6,1,14,11,12,13,9,13,0,9,5,14,12,3,5,13,5,8,1,5,4,5,8,3,12,14,5,1,9,13,12,10,5,10,7,1,5,8,10,0,5,12,13,14,9,13,7,15,11,9,15,7,1,3,12,6,5,15,3,8,6,9,2,5,2,1,13,2,2,10,0,0,2,12,1,13,5,15,2,5,9,4,1,9,11,6,1,12,4,14,11,13,6,8,9,7,4,14,11,11,2,5,4,7,13,4,11,5,6,4,10,10,1,3,8,15,5,8,9,13,3,8,6,1,3,2,15,5,4,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"2\", \"14\", \"8\", \"2\"], \"clip_start\": 54.0, \"clip_end\": 60.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,9,8,15,5,13,3,14,10,2,5,1,3,10,1,8,2,14,1,8,3,1,4,12,5,3,4,11,8,12,13,15,11,3,13,1,9,6,13,14,11,9,2,10,5,1,15,11,6,11,8,3,4,10,6,2,14,8,2,14,0,4,10,5,7,5,0,2,15,15,6,10,12,14,11,3,10,7,1,6,5,5,2,7,9,8,1,2,1,10,8,2,15,4,13,14,11,15,10,4,2,12,8,14,14,10,13,5,4,3,13,3,0,5,12,4,15,2,11,3,7,5,11,5,9,6,1,14,11,12,13,9,13,0,9,5,14,12,3,5,13,5,8,1,5,4,5,8,3,12,14,5,1,9,13,12,10,5,10,7,1,5,8,10,0,5,12,13,14,9,13,7,15,11,9,15,7,1,3,12,6,5,15,3,8,6,9,2,5,2,1,13,2,2,10,0,0,2,12,1,13,5,15,2,5,9,4,1,9,11,6,1,12,4,14,11,13,6,8,9,7,4,14,11,11,2,5,4,7,13,4,11,5,6,4,10,10,1,3,8,15,5,8,9,13,3,8,6,1,3,2,15,5,4,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"13\", \"12\"], \"clip_start\": 153.0, \"clip_end\": 157.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,9,8,15,5,13,3,14,10,2,5,1,3,10,1,8,2,14,1,8,3,1,4,12,5,3,4,11,8,12,13,15,11,3,13,1,9,6,13,14,11,9,2,10,5,1,15,11,6,11,8,3,4,10,6,2,14,8,2,14,0,4,10,5,7,5,0,2,15,15,6,10,12,14,11,3,10,7,1,6,5,5,2,7,9,8,1,2,1,10,8,2,15,4,13,14,11,15,10,4,2,12,8,14,14,10,13,5,4,3,13,3,0,5,12,4,15,2,11,3,7,5,11,5,9,6,1,14,11,12,13,9,13,0,9,5,14,12,3,5,13,5,8,1,5,4,5,8,3,12,14,5,1,9,13,12,10,5,10,7,1,5,8,10,0,5,12,13,14,9,13,7,15,11,9,15,7,1,3,12,6,5,15,3,8,6,9,2,5,2,1,13,2,2,10,0,0,2,12,1,13,5,15,2,5,9,4,1,9,11,6,1,12,4,14,11,13,6,8,9,7,4,14,11,11,2,5,4,7,13,4,11,5,6,4,10,10,1,3,8,15,5,8,9,13,3,8,6,1,3,2,15,5,4,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"10\", \"2\"], \"clip_start\": 54.0, \"clip_end\": 57.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,9,8,15,5,13,3,14,10,2,5,1,3,10,1,8,2,14,1,8,3,1,4,12,5,3,4,11,8,12,13,15,11,3,13,1,9,6,13,14,11,9,2,10,5,1,15,11,6,11,8,3,4,10,6,2,14,8,2,14,0,4,10,5,7,5,0,2,15,15,6,10,12,14,11,3,10,7,1,6,5,5,2,7,9,8,1,2,1,10,8,2,15,4,13,14,11,15,10,4,2,12,8,14,14,10,13,5,4,3,13,3,0,5,12,4,15,2,11,3,7,5,11,5,9,6,1,14,11,12,13,9,13,0,9,5,14,12,3,5,13,5,8,1,5,4,5,8,3,12,14,5,1,9,13,12,10,5,10,7,1,5,8,10,0,5,12,13,14,9,13,7,15,11,9,15,7,1,3,12,6,5,15,3,8,6,9,2,5,2,1,13,2,2,10,0,0,2,12,1,13,5,15,2,5,9,4,1,9,11,6,1,12,4,14,11,13,6,8,9,7,4,14,11,11,2,5,4,7,13,4,11,5,6,4,10,10,1,3,8,15,5,8,9,13,3,8,6,1,3,2,15,5,4,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"12\"], \"clip_start\": 0.0, \"clip_end\": 3.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,9,8,15,5,13,3,14,10,2,5,1,3,10,1,8,2,14,1,8,3,1,4,12,5,3,4,11,8,12,13,15,11,3,13,1,9,6,13,14,11,9,2,10,5,1,15,11,6,11,8,3,4,10,6,2,14,8,2,14,0,4,10,5,7,5,0,2,15,15,6,10,12,14,11,3,10,7,1,6,5,5,2,7,9,8,1,2,1,10,8,2,15,4,13,14,11,15,10,4,2,12,8,14,14,10,13,5,4,3,13,3,0,5,12,4,15,2,11,3,7,5,11,5,9,6,1,14,11,12,13,9,13,0,9,5,14,12,3,5,13,5,8,1,5,4,5,8,3,12,14,5,1,9,13,12,10,5,10,7,1,5,8,10,0,5,12,13,14,9,13,7,15,11,9,15,7,1,3,12,6,5,15,3,8,6,9,2,5,2,1,13,2,2,10,0,0,2,12,1,13,5,15,2,5,9,4,1,9,11,6,1,12,4,14,11,13,6,8,9,7,4,14,11,11,2,5,4,7,13,4,11,5,6,4,10,10,1,3,8,15,5,8,9,13,3,8,6,1,3,2,15,5,4,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"3\", \"13\", \"4\", \"11\"], \"clip_start\": 88.0, \"clip_end\": 94.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,9,8,15,5,13,3,14,10,2,5,1,3,10,1,8,2,14,1,8,3,1,4,12,5,3,4,11,8,12,13,15,11,3,13,1,9,6,13,14,11,9,2,10,5,1,15,11,6,11,8,3,4,10,6,2,14,8,2,14,0,4,10,5,7,5,0,2,15,15,6,10,12,14,11,3,10,7,1,6,5,5,2,7,9,8,1,2,1,10,8,2,15,4,13,14,11,15,10,4,2,12,8,14,14,10,13,5,4,3,13,3,0,5,12,4,15,2,11,3,7,5,11,5,9,6,1,14,11,12,13,9,13,0,9,5,14,12,3,5,13,5,8,1,5,4,5,8,3,12,14,5,1,9,13,12,10,5,10,7,1,5,8,10,0,5,12,13,14,9,13,7,15,11,9,15,7,1,3,12,6,5,15,3,8,6,9,2,5,2,1,13,2,2,10,0,0,2,12,1,13,5,15,2,5,9,4,1,9,11,6,1,12,4,14,11,13,6,8,9,7,4,14,11,11,2,5,4,7,13,4,11,5,6,4,10,10,1,3,8,15,5,8,9,13,3,8,6,1,3,2,15,5,4,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"4\", \"15\", \"2\"], \"clip_start\": 114.0, \"clip_end\": 119.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q12_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,9,8,15,5,13,3,14,10,2,5,1,3,10,1,8,2,14,1,8,3,1,4,12,5,3,4,11,8,12,13,15,11,3,13,1,9,6,13,14,11,9,2,10,5,1,15,11,6,11,8,3,4,10,6,2,14,8,2,14,0,4,10,5,7,5,0,2,15,15,6,10,12,14,11,3,10,7,1,6,5,5,2,7,9,8,1,2,1,10,8,2,15,4,13,14,11,15,10,4,2,12,8,14,14,10,13,5,4,3,13,3,0,5,12,4,15,2,11,3,7,5,11,5,9,6,1,14,11,12,13,9,13,0,9,5,14,12,3,5,13,5,8,1,5,4,5,8,3,12,14,5,1,9,13,12,10,5,10,7,1,5,8,10,0,5,12,13,14,9,13,7,15,11,9,15,7,1,3,12,6,5,15,3,8,6,9,2,5,2,1,13,2,2,10,0,0,2,12,1,13,5,15,2,5,9,4,1,9,11,6,1,12,4,14,11,13,6,8,9,7,4,14,11,11,2,5,4,7,13,4,11,5,6,4,10,10,1,3,8,15,5,8,9,13,3,8,6,1,3,2,15,5,4,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"9\", \"6\"], \"clip_start\": 123.0, \"clip_end\": 127.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q13_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,9,8,15,5,13,3,14,10,2,5,1,3,10,1,8,2,14,1,8,3,1,4,12,5,3,4,11,8,12,13,15,11,3,13,1,9,6,13,14,11,9,2,10,5,1,15,11,6,11,8,3,4,10,6,2,14,8,2,14,0,4,10,5,7,5,0,2,15,15,6,10,12,14,11,3,10,7,1,6,5,5,2,7,9,8,1,2,1,10,8,2,15,4,13,14,11,15,10,4,2,12,8,14,14,10,13,5,4,3,13,3,0,5,12,4,15,2,11,3,7,5,11,5,9,6,1,14,11,12,13,9,13,0,9,5,14,12,3,5,13,5,8,1,5,4,5,8,3,12,14,5,1,9,13,12,10,5,10,7,1,5,8,10,0,5,12,13,14,9,13,7,15,11,9,15,7,1,3,12,6,5,15,3,8,6,9,2,5,2,1,13,2,2,10,0,0,2,12,1,13,5,15,2,5,9,4,1,9,11,6,1,12,4,14,11,13,6,8,9,7,4,14,11,11,2,5,4,7,13,4,11,5,6,4,10,10,1,3,8,15,5,8,9,13,3,8,6,1,3,2,15,5,4,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"1\", \"3\", \"12\"], \"clip_start\": 176.0, \"clip_end\": 181.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q14_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,9,8,15,5,13,3,14,10,2,5,1,3,10,1,8,2,14,1,8,3,1,4,12,5,3,4,11,8,12,13,15,11,3,13,1,9,6,13,14,11,9,2,10,5,1,15,11,6,11,8,3,4,10,6,2,14,8,2,14,0,4,10,5,7,5,0,2,15,15,6,10,12,14,11,3,10,7,1,6,5,5,2,7,9,8,1,2,1,10,8,2,15,4,13,14,11,15,10,4,2,12,8,14,14,10,13,5,4,3,13,3,0,5,12,4,15,2,11,3,7,5,11,5,9,6,1,14,11,12,13,9,13,0,9,5,14,12,3,5,13,5,8,1,5,4,5,8,3,12,14,5,1,9,13,12,10,5,10,7,1,5,8,10,0,5,12,13,14,9,13,7,15,11,9,15,7,1,3,12,6,5,15,3,8,6,9,2,5,2,1,13,2,2,10,0,0,2,12,1,13,5,15,2,5,9,4,1,9,11,6,1,12,4,14,11,13,6,8,9,7,4,14,11,11,2,5,4,7,13,4,11,5,6,4,10,10,1,3,8,15,5,8,9,13,3,8,6,1,3,2,15,5,4,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"2\", \"5\", \"9\", \"4\"], \"clip_start\": 202.0, \"clip_end\": 208.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q15_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,6,9,8,15,5,13,3,14,10,2,5,1,3,10,1,8,2,14,1,8,3,1,4,12,5,3,4,11,8,12,13,15,11,3,13,1,9,6,13,14,11,9,2,10,5,1,15,11,6,11,8,3,4,10,6,2,14,8,2,14,0,4,10,5,7,5,0,2,15,15,6,10,12,14,11,3,10,7,1,6,5,5,2,7,9,8,1,2,1,10,8,2,15,4,13,14,11,15,10,4,2,12,8,14,14,10,13,5,4,3,13,3,0,5,12,4,15,2,11,3,7,5,11,5,9,6,1,14,11,12,13,9,13,0,9,5,14,12,3,5,13,5,8,1,5,4,5,8,3,12,14,5,1,9,13,12,10,5,10,7,1,5,8,10,0,5,12,13,14,9,13,7,15,11,9,15,7,1,3,12,6,5,15,3,8,6,9,2,5,2,1,13,2,2,10,0,0,2,12,1,13,5,15,2,5,9,4,1,9,11,6,1,12,4,14,11,13,6,8,9,7,4,14,11,11,2,5,4,7,13,4,11,5,6,4,10,10,1,3,8,15,5,8,9,13,3,8,6,1,3,2,15,5,4,6", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"6\", \"0\", \"4\", \"9\"], \"clip_start\": 110.0, \"clip_end\": 116.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,10,1,14,9,7,10,11,4,4,7,4,8,5,15,12,2,4,8,12,7,8,1,1,3,1,9,13,4,4,15,12,10,15,13,5,14,11,3,4,13,8,10,15,12,8,9,15,10,10,13,1,2,7,2,8,14,3,13,14,1,10,15,4,7,6,5,10,9,8,8,11,0,14,6,10,9,2,9,10,6,11,6,6,8,5,11,0,11,2,11,12,13,9,9,4,13,8,1,15,15,3,6,13,15,6,4,8,10,7,0,6,0,4,9,10,14,7,5,3,8,0,10,2,3,8,0,6,7,1,4,1,1,4,13,7,1,0,6,11,7,9,15,15,11,10,14,7,5,6,1,4,15,15,12,5,6,13,2,12,14,10,5,7,3,8,9,7,0,8,15,6,14,15,4,6,5,7,9,6,12,10,12,8,5,1,13,11,0,10,7,10,11,11,0,6,8,2,12,5,15,8,1,10,5,10,15,9,2,15,8,4,5,2,12,8,2,12,0,2,2,6,15,8,5,5,8,4,12,13,1,8,0,13,0,5,5,9,11,14,12,14,0,8,7,12,7,12,11,0,13,15,4,15,14", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"0\", \"4\", \"9\", \"10\"], \"clip_start\": 111.0, \"clip_end\": 117.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,10,1,14,9,7,10,11,4,4,7,4,8,5,15,12,2,4,8,12,7,8,1,1,3,1,9,13,4,4,15,12,10,15,13,5,14,11,3,4,13,8,10,15,12,8,9,15,10,10,13,1,2,7,2,8,14,3,13,14,1,10,15,4,7,6,5,10,9,8,8,11,0,14,6,10,9,2,9,10,6,11,6,6,8,5,11,0,11,2,11,12,13,9,9,4,13,8,1,15,15,3,6,13,15,6,4,8,10,7,0,6,0,4,9,10,14,7,5,3,8,0,10,2,3,8,0,6,7,1,4,1,1,4,13,7,1,0,6,11,7,9,15,15,11,10,14,7,5,6,1,4,15,15,12,5,6,13,2,12,14,10,5,7,3,8,9,7,0,8,15,6,14,15,4,6,5,7,9,6,12,10,12,8,5,1,13,11,0,10,7,10,11,11,0,6,8,2,12,5,15,8,1,10,5,10,15,9,2,15,8,4,5,2,12,8,2,12,0,2,2,6,15,8,5,5,8,4,12,13,1,8,0,13,0,5,5,9,11,14,12,14,0,8,7,12,7,12,11,0,13,15,4,15,14", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"14\", \"10\", \"5\"], \"clip_start\": 159.0, \"clip_end\": 164.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,10,1,14,9,7,10,11,4,4,7,4,8,5,15,12,2,4,8,12,7,8,1,1,3,1,9,13,4,4,15,12,10,15,13,5,14,11,3,4,13,8,10,15,12,8,9,15,10,10,13,1,2,7,2,8,14,3,13,14,1,10,15,4,7,6,5,10,9,8,8,11,0,14,6,10,9,2,9,10,6,11,6,6,8,5,11,0,11,2,11,12,13,9,9,4,13,8,1,15,15,3,6,13,15,6,4,8,10,7,0,6,0,4,9,10,14,7,5,3,8,0,10,2,3,8,0,6,7,1,4,1,1,4,13,7,1,0,6,11,7,9,15,15,11,10,14,7,5,6,1,4,15,15,12,5,6,13,2,12,14,10,5,7,3,8,9,7,0,8,15,6,14,15,4,6,5,7,9,6,12,10,12,8,5,1,13,11,0,10,7,10,11,11,0,6,8,2,12,5,15,8,1,10,5,10,15,9,2,15,8,4,5,2,12,8,2,12,0,2,2,6,15,8,5,5,8,4,12,13,1,8,0,13,0,5,5,9,11,14,12,14,0,8,7,12,7,12,11,0,13,15,4,15,14", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"6\", \"13\", \"15\", \"6\"], \"clip_start\": 102.0, \"clip_end\": 107.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,10,1,14,9,7,10,11,4,4,7,4,8,5,15,12,2,4,8,12,7,8,1,1,3,1,9,13,4,4,15,12,10,15,13,5,14,11,3,4,13,8,10,15,12,8,9,15,10,10,13,1,2,7,2,8,14,3,13,14,1,10,15,4,7,6,5,10,9,8,8,11,0,14,6,10,9,2,9,10,6,11,6,6,8,5,11,0,11,2,11,12,13,9,9,4,13,8,1,15,15,3,6,13,15,6,4,8,10,7,0,6,0,4,9,10,14,7,5,3,8,0,10,2,3,8,0,6,7,1,4,1,1,4,13,7,1,0,6,11,7,9,15,15,11,10,14,7,5,6,1,4,15,15,12,5,6,13,2,12,14,10,5,7,3,8,9,7,0,8,15,6,14,15,4,6,5,7,9,6,12,10,12,8,5,1,13,11,0,10,7,10,11,11,0,6,8,2,12,5,15,8,1,10,5,10,15,9,2,15,8,4,5,2,12,8,2,12,0,2,2,6,15,8,5,5,8,4,12,13,1,8,0,13,0,5,5,9,11,14,12,14,0,8,7,12,7,12,11,0,13,15,4,15,14", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"10\", \"5\", \"10\", \"15\"], \"clip_start\": 202.0, \"clip_end\": 208.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,10,1,14,9,7,10,11,4,4,7,4,8,5,15,12,2,4,8,12,7,8,1,1,3,1,9,13,4,4,15,12,10,15,13,5,14,11,3,4,13,8,10,15,12,8,9,15,10,10,13,1,2,7,2,8,14,3,13,14,1,10,15,4,7,6,5,10,9,8,8,11,0,14,6,10,9,2,9,10,6,11,6,6,8,5,11,0,11,2,11,12,13,9,9,4,13,8,1,15,15,3,6,13,15,6,4,8,10,7,0,6,0,4,9,10,14,7,5,3,8,0,10,2,3,8,0,6,7,1,4,1,1,4,13,7,1,0,6,11,7,9,15,15,11,10,14,7,5,6,1,4,15,15,12,5,6,13,2,12,14,10,5,7,3,8,9,7,0,8,15,6,14,15,4,6,5,7,9,6,12,10,12,8,5,1,13,11,0,10,7,10,11,11,0,6,8,2,12,5,15,8,1,10,5,10,15,9,2,15,8,4,5,2,12,8,2,12,0,2,2,6,15,8,5,5,8,4,12,13,1,8,0,13,0,5,5,9,11,14,12,14,0,8,7,12,7,12,11,0,13,15,4,15,14", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 206.0, \"clip_end\": 212.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,10,1,14,9,7,10,11,4,4,7,4,8,5,15,12,2,4,8,12,7,8,1,1,3,1,9,13,4,4,15,12,10,15,13,5,14,11,3,4,13,8,10,15,12,8,9,15,10,10,13,1,2,7,2,8,14,3,13,14,1,10,15,4,7,6,5,10,9,8,8,11,0,14,6,10,9,2,9,10,6,11,6,6,8,5,11,0,11,2,11,12,13,9,9,4,13,8,1,15,15,3,6,13,15,6,4,8,10,7,0,6,0,4,9,10,14,7,5,3,8,0,10,2,3,8,0,6,7,1,4,1,1,4,13,7,1,0,6,11,7,9,15,15,11,10,14,7,5,6,1,4,15,15,12,5,6,13,2,12,14,10,5,7,3,8,9,7,0,8,15,6,14,15,4,6,5,7,9,6,12,10,12,8,5,1,13,11,0,10,7,10,11,11,0,6,8,2,12,5,15,8,1,10,5,10,15,9,2,15,8,4,5,2,12,8,2,12,0,2,2,6,15,8,5,5,8,4,12,13,1,8,0,13,0,5,5,9,11,14,12,14,0,8,7,12,7,12,11,0,13,15,4,15,14", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"2\", \"15\", \"8\", \"4\", \"5\"], \"clip_start\": 208.0, \"clip_end\": 214.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,10,1,14,9,7,10,11,4,4,7,4,8,5,15,12,2,4,8,12,7,8,1,1,3,1,9,13,4,4,15,12,10,15,13,5,14,11,3,4,13,8,10,15,12,8,9,15,10,10,13,1,2,7,2,8,14,3,13,14,1,10,15,4,7,6,5,10,9,8,8,11,0,14,6,10,9,2,9,10,6,11,6,6,8,5,11,0,11,2,11,12,13,9,9,4,13,8,1,15,15,3,6,13,15,6,4,8,10,7,0,6,0,4,9,10,14,7,5,3,8,0,10,2,3,8,0,6,7,1,4,1,1,4,13,7,1,0,6,11,7,9,15,15,11,10,14,7,5,6,1,4,15,15,12,5,6,13,2,12,14,10,5,7,3,8,9,7,0,8,15,6,14,15,4,6,5,7,9,6,12,10,12,8,5,1,13,11,0,10,7,10,11,11,0,6,8,2,12,5,15,8,1,10,5,10,15,9,2,15,8,4,5,2,12,8,2,12,0,2,2,6,15,8,5,5,8,4,12,13,1,8,0,13,0,5,5,9,11,14,12,14,0,8,7,12,7,12,11,0,13,15,4,15,14", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 78.0, \"clip_end\": 82.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,10,1,14,9,7,10,11,4,4,7,4,8,5,15,12,2,4,8,12,7,8,1,1,3,1,9,13,4,4,15,12,10,15,13,5,14,11,3,4,13,8,10,15,12,8,9,15,10,10,13,1,2,7,2,8,14,3,13,14,1,10,15,4,7,6,5,10,9,8,8,11,0,14,6,10,9,2,9,10,6,11,6,6,8,5,11,0,11,2,11,12,13,9,9,4,13,8,1,15,15,3,6,13,15,6,4,8,10,7,0,6,0,4,9,10,14,7,5,3,8,0,10,2,3,8,0,6,7,1,4,1,1,4,13,7,1,0,6,11,7,9,15,15,11,10,14,7,5,6,1,4,15,15,12,5,6,13,2,12,14,10,5,7,3,8,9,7,0,8,15,6,14,15,4,6,5,7,9,6,12,10,12,8,5,1,13,11,0,10,7,10,11,11,0,6,8,2,12,5,15,8,1,10,5,10,15,9,2,15,8,4,5,2,12,8,2,12,0,2,2,6,15,8,5,5,8,4,12,13,1,8,0,13,0,5,5,9,11,14,12,14,0,8,7,12,7,12,11,0,13,15,4,15,14", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"4\", \"4\", \"15\"], \"clip_start\": 27.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,10,1,14,9,7,10,11,4,4,7,4,8,5,15,12,2,4,8,12,7,8,1,1,3,1,9,13,4,4,15,12,10,15,13,5,14,11,3,4,13,8,10,15,12,8,9,15,10,10,13,1,2,7,2,8,14,3,13,14,1,10,15,4,7,6,5,10,9,8,8,11,0,14,6,10,9,2,9,10,6,11,6,6,8,5,11,0,11,2,11,12,13,9,9,4,13,8,1,15,15,3,6,13,15,6,4,8,10,7,0,6,0,4,9,10,14,7,5,3,8,0,10,2,3,8,0,6,7,1,4,1,1,4,13,7,1,0,6,11,7,9,15,15,11,10,14,7,5,6,1,4,15,15,12,5,6,13,2,12,14,10,5,7,3,8,9,7,0,8,15,6,14,15,4,6,5,7,9,6,12,10,12,8,5,1,13,11,0,10,7,10,11,11,0,6,8,2,12,5,15,8,1,10,5,10,15,9,2,15,8,4,5,2,12,8,2,12,0,2,2,6,15,8,5,5,8,4,12,13,1,8,0,13,0,5,5,9,11,14,12,14,0,8,7,12,7,12,11,0,13,15,4,15,14", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"2\", \"12\", \"14\"], \"clip_start\": 157.0, \"clip_end\": 162.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,10,1,14,9,7,10,11,4,4,7,4,8,5,15,12,2,4,8,12,7,8,1,1,3,1,9,13,4,4,15,12,10,15,13,5,14,11,3,4,13,8,10,15,12,8,9,15,10,10,13,1,2,7,2,8,14,3,13,14,1,10,15,4,7,6,5,10,9,8,8,11,0,14,6,10,9,2,9,10,6,11,6,6,8,5,11,0,11,2,11,12,13,9,9,4,13,8,1,15,15,3,6,13,15,6,4,8,10,7,0,6,0,4,9,10,14,7,5,3,8,0,10,2,3,8,0,6,7,1,4,1,1,4,13,7,1,0,6,11,7,9,15,15,11,10,14,7,5,6,1,4,15,15,12,5,6,13,2,12,14,10,5,7,3,8,9,7,0,8,15,6,14,15,4,6,5,7,9,6,12,10,12,8,5,1,13,11,0,10,7,10,11,11,0,6,8,2,12,5,15,8,1,10,5,10,15,9,2,15,8,4,5,2,12,8,2,12,0,2,2,6,15,8,5,5,8,4,12,13,1,8,0,13,0,5,5,9,11,14,12,14,0,8,7,12,7,12,11,0,13,15,4,15,14", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 93.0, \"clip_end\": 98.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,10,1,14,9,7,10,11,4,4,7,4,8,5,15,12,2,4,8,12,7,8,1,1,3,1,9,13,4,4,15,12,10,15,13,5,14,11,3,4,13,8,10,15,12,8,9,15,10,10,13,1,2,7,2,8,14,3,13,14,1,10,15,4,7,6,5,10,9,8,8,11,0,14,6,10,9,2,9,10,6,11,6,6,8,5,11,0,11,2,11,12,13,9,9,4,13,8,1,15,15,3,6,13,15,6,4,8,10,7,0,6,0,4,9,10,14,7,5,3,8,0,10,2,3,8,0,6,7,1,4,1,1,4,13,7,1,0,6,11,7,9,15,15,11,10,14,7,5,6,1,4,15,15,12,5,6,13,2,12,14,10,5,7,3,8,9,7,0,8,15,6,14,15,4,6,5,7,9,6,12,10,12,8,5,1,13,11,0,10,7,10,11,11,0,6,8,2,12,5,15,8,1,10,5,10,15,9,2,15,8,4,5,2,12,8,2,12,0,2,2,6,15,8,5,5,8,4,12,13,1,8,0,13,0,5,5,9,11,14,12,14,0,8,7,12,7,12,11,0,13,15,4,15,14", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"10\", \"13\", \"1\"], \"clip_start\": 49.0, \"clip_end\": 53.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,10,1,14,9,7,10,11,4,4,7,4,8,5,15,12,2,4,8,12,7,8,1,1,3,1,9,13,4,4,15,12,10,15,13,5,14,11,3,4,13,8,10,15,12,8,9,15,10,10,13,1,2,7,2,8,14,3,13,14,1,10,15,4,7,6,5,10,9,8,8,11,0,14,6,10,9,2,9,10,6,11,6,6,8,5,11,0,11,2,11,12,13,9,9,4,13,8,1,15,15,3,6,13,15,6,4,8,10,7,0,6,0,4,9,10,14,7,5,3,8,0,10,2,3,8,0,6,7,1,4,1,1,4,13,7,1,0,6,11,7,9,15,15,11,10,14,7,5,6,1,4,15,15,12,5,6,13,2,12,14,10,5,7,3,8,9,7,0,8,15,6,14,15,4,6,5,7,9,6,12,10,12,8,5,1,13,11,0,10,7,10,11,11,0,6,8,2,12,5,15,8,1,10,5,10,15,9,2,15,8,4,5,2,12,8,2,12,0,2,2,6,15,8,5,5,8,4,12,13,1,8,0,13,0,5,5,9,11,14,12,14,0,8,7,12,7,12,11,0,13,15,4,15,14", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"8\", \"11\", \"0\", \"14\"], \"clip_start\": 70.0, \"clip_end\": 75.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,10,1,14,9,7,10,11,4,4,7,4,8,5,15,12,2,4,8,12,7,8,1,1,3,1,9,13,4,4,15,12,10,15,13,5,14,11,3,4,13,8,10,15,12,8,9,15,10,10,13,1,2,7,2,8,14,3,13,14,1,10,15,4,7,6,5,10,9,8,8,11,0,14,6,10,9,2,9,10,6,11,6,6,8,5,11,0,11,2,11,12,13,9,9,4,13,8,1,15,15,3,6,13,15,6,4,8,10,7,0,6,0,4,9,10,14,7,5,3,8,0,10,2,3,8,0,6,7,1,4,1,1,4,13,7,1,0,6,11,7,9,15,15,11,10,14,7,5,6,1,4,15,15,12,5,6,13,2,12,14,10,5,7,3,8,9,7,0,8,15,6,14,15,4,6,5,7,9,6,12,10,12,8,5,1,13,11,0,10,7,10,11,11,0,6,8,2,12,5,15,8,1,10,5,10,15,9,2,15,8,4,5,2,12,8,2,12,0,2,2,6,15,8,5,5,8,4,12,13,1,8,0,13,0,5,5,9,11,14,12,14,0,8,7,12,7,12,11,0,13,15,4,15,14", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"7\", \"9\", \"6\", \"12\"], \"clip_start\": 177.0, \"clip_end\": 182.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,10,1,14,9,7,10,11,4,4,7,4,8,5,15,12,2,4,8,12,7,8,1,1,3,1,9,13,4,4,15,12,10,15,13,5,14,11,3,4,13,8,10,15,12,8,9,15,10,10,13,1,2,7,2,8,14,3,13,14,1,10,15,4,7,6,5,10,9,8,8,11,0,14,6,10,9,2,9,10,6,11,6,6,8,5,11,0,11,2,11,12,13,9,9,4,13,8,1,15,15,3,6,13,15,6,4,8,10,7,0,6,0,4,9,10,14,7,5,3,8,0,10,2,3,8,0,6,7,1,4,1,1,4,13,7,1,0,6,11,7,9,15,15,11,10,14,7,5,6,1,4,15,15,12,5,6,13,2,12,14,10,5,7,3,8,9,7,0,8,15,6,14,15,4,6,5,7,9,6,12,10,12,8,5,1,13,11,0,10,7,10,11,11,0,6,8,2,12,5,15,8,1,10,5,10,15,9,2,15,8,4,5,2,12,8,2,12,0,2,2,6,15,8,5,5,8,4,12,13,1,8,0,13,0,5,5,9,11,14,12,14,0,8,7,12,7,12,11,0,13,15,4,15,14", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 138.0, \"clip_end\": 144.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,10,1,14,9,7,10,11,4,4,7,4,8,5,15,12,2,4,8,12,7,8,1,1,3,1,9,13,4,4,15,12,10,15,13,5,14,11,3,4,13,8,10,15,12,8,9,15,10,10,13,1,2,7,2,8,14,3,13,14,1,10,15,4,7,6,5,10,9,8,8,11,0,14,6,10,9,2,9,10,6,11,6,6,8,5,11,0,11,2,11,12,13,9,9,4,13,8,1,15,15,3,6,13,15,6,4,8,10,7,0,6,0,4,9,10,14,7,5,3,8,0,10,2,3,8,0,6,7,1,4,1,1,4,13,7,1,0,6,11,7,9,15,15,11,10,14,7,5,6,1,4,15,15,12,5,6,13,2,12,14,10,5,7,3,8,9,7,0,8,15,6,14,15,4,6,5,7,9,6,12,10,12,8,5,1,13,11,0,10,7,10,11,11,0,6,8,2,12,5,15,8,1,10,5,10,15,9,2,15,8,4,5,2,12,8,2,12,0,2,2,6,15,8,5,5,8,4,12,13,1,8,0,13,0,5,5,9,11,14,12,14,0,8,7,12,7,12,11,0,13,15,4,15,14", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"5\"], \"clip_start\": 147.0, \"clip_end\": 150.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q15_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,6,10,1,14,9,7,10,11,4,4,7,4,8,5,15,12,2,4,8,12,7,8,1,1,3,1,9,13,4,4,15,12,10,15,13,5,14,11,3,4,13,8,10,15,12,8,9,15,10,10,13,1,2,7,2,8,14,3,13,14,1,10,15,4,7,6,5,10,9,8,8,11,0,14,6,10,9,2,9,10,6,11,6,6,8,5,11,0,11,2,11,12,13,9,9,4,13,8,1,15,15,3,6,13,15,6,4,8,10,7,0,6,0,4,9,10,14,7,5,3,8,0,10,2,3,8,0,6,7,1,4,1,1,4,13,7,1,0,6,11,7,9,15,15,11,10,14,7,5,6,1,4,15,15,12,5,6,13,2,12,14,10,5,7,3,8,9,7,0,8,15,6,14,15,4,6,5,7,9,6,12,10,12,8,5,1,13,11,0,10,7,10,11,11,0,6,8,2,12,5,15,8,1,10,5,10,15,9,2,15,8,4,5,2,12,8,2,12,0,2,2,6,15,8,5,5,8,4,12,13,1,8,0,13,0,5,5,9,11,14,12,14,0,8,7,12,7,12,11,0,13,15,4,15,14", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"0\", \"2\", \"14\"], \"clip_start\": 202.0, \"clip_end\": 206.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,7,2,9,13,7,8,13,9,15,9,6,14,6,7,12,14,6,14,12,11,2,4,15,5,5,7,7,13,10,1,5,12,13,4,7,0,8,14,6,3,6,15,2,3,11,11,11,7,2,14,9,13,2,10,4,13,2,10,13,3,6,14,6,0,9,2,2,3,1,4,8,15,6,6,11,2,12,1,8,1,13,15,2,8,4,3,14,14,1,12,7,13,8,7,6,4,14,15,0,6,10,5,1,3,1,9,13,13,8,4,1,6,7,10,5,1,9,1,10,8,8,5,12,6,6,9,15,10,6,11,9,4,12,13,0,2,8,7,14,12,5,2,6,11,2,14,6,11,4,3,0,11,7,12,10,13,3,6,14,1,10,12,5,7,13,1,6,8,12,6,4,6,1,9,9,13,8,3,14,12,12,6,7,9,1,15,2,11,4,9,0,12,15,11,9,9,0,14,8,5,0,0,2,14,0,13,7,11,0,0,15,8,4,1,1,2,14,6,13,3,6,9,0,14,6,8,12,14,13,4,11,8,11,4,0,4,14,11,2,5,9,11,15,1,13,15,12,10,0,7,15,5,0,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 243.0, \"clip_end\": 248.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,7,2,9,13,7,8,13,9,15,9,6,14,6,7,12,14,6,14,12,11,2,4,15,5,5,7,7,13,10,1,5,12,13,4,7,0,8,14,6,3,6,15,2,3,11,11,11,7,2,14,9,13,2,10,4,13,2,10,13,3,6,14,6,0,9,2,2,3,1,4,8,15,6,6,11,2,12,1,8,1,13,15,2,8,4,3,14,14,1,12,7,13,8,7,6,4,14,15,0,6,10,5,1,3,1,9,13,13,8,4,1,6,7,10,5,1,9,1,10,8,8,5,12,6,6,9,15,10,6,11,9,4,12,13,0,2,8,7,14,12,5,2,6,11,2,14,6,11,4,3,0,11,7,12,10,13,3,6,14,1,10,12,5,7,13,1,6,8,12,6,4,6,1,9,9,13,8,3,14,12,12,6,7,9,1,15,2,11,4,9,0,12,15,11,9,9,0,14,8,5,0,0,2,14,0,13,7,11,0,0,15,8,4,1,1,2,14,6,13,3,6,9,0,14,6,8,12,14,13,4,11,8,11,4,0,4,14,11,2,5,9,11,15,1,13,15,12,10,0,7,15,5,0,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 100.0, \"clip_end\": 105.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,7,2,9,13,7,8,13,9,15,9,6,14,6,7,12,14,6,14,12,11,2,4,15,5,5,7,7,13,10,1,5,12,13,4,7,0,8,14,6,3,6,15,2,3,11,11,11,7,2,14,9,13,2,10,4,13,2,10,13,3,6,14,6,0,9,2,2,3,1,4,8,15,6,6,11,2,12,1,8,1,13,15,2,8,4,3,14,14,1,12,7,13,8,7,6,4,14,15,0,6,10,5,1,3,1,9,13,13,8,4,1,6,7,10,5,1,9,1,10,8,8,5,12,6,6,9,15,10,6,11,9,4,12,13,0,2,8,7,14,12,5,2,6,11,2,14,6,11,4,3,0,11,7,12,10,13,3,6,14,1,10,12,5,7,13,1,6,8,12,6,4,6,1,9,9,13,8,3,14,12,12,6,7,9,1,15,2,11,4,9,0,12,15,11,9,9,0,14,8,5,0,0,2,14,0,13,7,11,0,0,15,8,4,1,1,2,14,6,13,3,6,9,0,14,6,8,12,14,13,4,11,8,11,4,0,4,14,11,2,5,9,11,15,1,13,15,12,10,0,7,15,5,0,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"12\", \"10\", \"13\"], \"clip_start\": 153.0, \"clip_end\": 158.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,7,2,9,13,7,8,13,9,15,9,6,14,6,7,12,14,6,14,12,11,2,4,15,5,5,7,7,13,10,1,5,12,13,4,7,0,8,14,6,3,6,15,2,3,11,11,11,7,2,14,9,13,2,10,4,13,2,10,13,3,6,14,6,0,9,2,2,3,1,4,8,15,6,6,11,2,12,1,8,1,13,15,2,8,4,3,14,14,1,12,7,13,8,7,6,4,14,15,0,6,10,5,1,3,1,9,13,13,8,4,1,6,7,10,5,1,9,1,10,8,8,5,12,6,6,9,15,10,6,11,9,4,12,13,0,2,8,7,14,12,5,2,6,11,2,14,6,11,4,3,0,11,7,12,10,13,3,6,14,1,10,12,5,7,13,1,6,8,12,6,4,6,1,9,9,13,8,3,14,12,12,6,7,9,1,15,2,11,4,9,0,12,15,11,9,9,0,14,8,5,0,0,2,14,0,13,7,11,0,0,15,8,4,1,1,2,14,6,13,3,6,9,0,14,6,8,12,14,13,4,11,8,11,4,0,4,14,11,2,5,9,11,15,1,13,15,12,10,0,7,15,5,0,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 191.0, \"clip_end\": 195.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,7,2,9,13,7,8,13,9,15,9,6,14,6,7,12,14,6,14,12,11,2,4,15,5,5,7,7,13,10,1,5,12,13,4,7,0,8,14,6,3,6,15,2,3,11,11,11,7,2,14,9,13,2,10,4,13,2,10,13,3,6,14,6,0,9,2,2,3,1,4,8,15,6,6,11,2,12,1,8,1,13,15,2,8,4,3,14,14,1,12,7,13,8,7,6,4,14,15,0,6,10,5,1,3,1,9,13,13,8,4,1,6,7,10,5,1,9,1,10,8,8,5,12,6,6,9,15,10,6,11,9,4,12,13,0,2,8,7,14,12,5,2,6,11,2,14,6,11,4,3,0,11,7,12,10,13,3,6,14,1,10,12,5,7,13,1,6,8,12,6,4,6,1,9,9,13,8,3,14,12,12,6,7,9,1,15,2,11,4,9,0,12,15,11,9,9,0,14,8,5,0,0,2,14,0,13,7,11,0,0,15,8,4,1,1,2,14,6,13,3,6,9,0,14,6,8,12,14,13,4,11,8,11,4,0,4,14,11,2,5,9,11,15,1,13,15,12,10,0,7,15,5,0,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 237.0, \"clip_end\": 242.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,7,2,9,13,7,8,13,9,15,9,6,14,6,7,12,14,6,14,12,11,2,4,15,5,5,7,7,13,10,1,5,12,13,4,7,0,8,14,6,3,6,15,2,3,11,11,11,7,2,14,9,13,2,10,4,13,2,10,13,3,6,14,6,0,9,2,2,3,1,4,8,15,6,6,11,2,12,1,8,1,13,15,2,8,4,3,14,14,1,12,7,13,8,7,6,4,14,15,0,6,10,5,1,3,1,9,13,13,8,4,1,6,7,10,5,1,9,1,10,8,8,5,12,6,6,9,15,10,6,11,9,4,12,13,0,2,8,7,14,12,5,2,6,11,2,14,6,11,4,3,0,11,7,12,10,13,3,6,14,1,10,12,5,7,13,1,6,8,12,6,4,6,1,9,9,13,8,3,14,12,12,6,7,9,1,15,2,11,4,9,0,12,15,11,9,9,0,14,8,5,0,0,2,14,0,13,7,11,0,0,15,8,4,1,1,2,14,6,13,3,6,9,0,14,6,8,12,14,13,4,11,8,11,4,0,4,14,11,2,5,9,11,15,1,13,15,12,10,0,7,15,5,0,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"9\", \"13\"], \"clip_start\": 175.0, \"clip_end\": 178.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,7,2,9,13,7,8,13,9,15,9,6,14,6,7,12,14,6,14,12,11,2,4,15,5,5,7,7,13,10,1,5,12,13,4,7,0,8,14,6,3,6,15,2,3,11,11,11,7,2,14,9,13,2,10,4,13,2,10,13,3,6,14,6,0,9,2,2,3,1,4,8,15,6,6,11,2,12,1,8,1,13,15,2,8,4,3,14,14,1,12,7,13,8,7,6,4,14,15,0,6,10,5,1,3,1,9,13,13,8,4,1,6,7,10,5,1,9,1,10,8,8,5,12,6,6,9,15,10,6,11,9,4,12,13,0,2,8,7,14,12,5,2,6,11,2,14,6,11,4,3,0,11,7,12,10,13,3,6,14,1,10,12,5,7,13,1,6,8,12,6,4,6,1,9,9,13,8,3,14,12,12,6,7,9,1,15,2,11,4,9,0,12,15,11,9,9,0,14,8,5,0,0,2,14,0,13,7,11,0,0,15,8,4,1,1,2,14,6,13,3,6,9,0,14,6,8,12,14,13,4,11,8,11,4,0,4,14,11,2,5,9,11,15,1,13,15,12,10,0,7,15,5,0,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"4\", \"6\", \"1\"], \"clip_start\": 170.0, \"clip_end\": 175.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,7,2,9,13,7,8,13,9,15,9,6,14,6,7,12,14,6,14,12,11,2,4,15,5,5,7,7,13,10,1,5,12,13,4,7,0,8,14,6,3,6,15,2,3,11,11,11,7,2,14,9,13,2,10,4,13,2,10,13,3,6,14,6,0,9,2,2,3,1,4,8,15,6,6,11,2,12,1,8,1,13,15,2,8,4,3,14,14,1,12,7,13,8,7,6,4,14,15,0,6,10,5,1,3,1,9,13,13,8,4,1,6,7,10,5,1,9,1,10,8,8,5,12,6,6,9,15,10,6,11,9,4,12,13,0,2,8,7,14,12,5,2,6,11,2,14,6,11,4,3,0,11,7,12,10,13,3,6,14,1,10,12,5,7,13,1,6,8,12,6,4,6,1,9,9,13,8,3,14,12,12,6,7,9,1,15,2,11,4,9,0,12,15,11,9,9,0,14,8,5,0,0,2,14,0,13,7,11,0,0,15,8,4,1,1,2,14,6,13,3,6,9,0,14,6,8,12,14,13,4,11,8,11,4,0,4,14,11,2,5,9,11,15,1,13,15,12,10,0,7,15,5,0,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"7\", \"2\"], \"clip_start\": 228.0, \"clip_end\": 231.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q8_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,7,2,9,13,7,8,13,9,15,9,6,14,6,7,12,14,6,14,12,11,2,4,15,5,5,7,7,13,10,1,5,12,13,4,7,0,8,14,6,3,6,15,2,3,11,11,11,7,2,14,9,13,2,10,4,13,2,10,13,3,6,14,6,0,9,2,2,3,1,4,8,15,6,6,11,2,12,1,8,1,13,15,2,8,4,3,14,14,1,12,7,13,8,7,6,4,14,15,0,6,10,5,1,3,1,9,13,13,8,4,1,6,7,10,5,1,9,1,10,8,8,5,12,6,6,9,15,10,6,11,9,4,12,13,0,2,8,7,14,12,5,2,6,11,2,14,6,11,4,3,0,11,7,12,10,13,3,6,14,1,10,12,5,7,13,1,6,8,12,6,4,6,1,9,9,13,8,3,14,12,12,6,7,9,1,15,2,11,4,9,0,12,15,11,9,9,0,14,8,5,0,0,2,14,0,13,7,11,0,0,15,8,4,1,1,2,14,6,13,3,6,9,0,14,6,8,12,14,13,4,11,8,11,4,0,4,14,11,2,5,9,11,15,1,13,15,12,10,0,7,15,5,0,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"4\", \"10\", \"9\", \"14\", \"6\"], \"clip_start\": 108.0, \"clip_end\": 114.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q9_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,7,2,9,13,7,8,13,9,15,9,6,14,6,7,12,14,6,14,12,11,2,4,15,5,5,7,7,13,10,1,5,12,13,4,7,0,8,14,6,3,6,15,2,3,11,11,11,7,2,14,9,13,2,10,4,13,2,10,13,3,6,14,6,0,9,2,2,3,1,4,8,15,6,6,11,2,12,1,8,1,13,15,2,8,4,3,14,14,1,12,7,13,8,7,6,4,14,15,0,6,10,5,1,3,1,9,13,13,8,4,1,6,7,10,5,1,9,1,10,8,8,5,12,6,6,9,15,10,6,11,9,4,12,13,0,2,8,7,14,12,5,2,6,11,2,14,6,11,4,3,0,11,7,12,10,13,3,6,14,1,10,12,5,7,13,1,6,8,12,6,4,6,1,9,9,13,8,3,14,12,12,6,7,9,1,15,2,11,4,9,0,12,15,11,9,9,0,14,8,5,0,0,2,14,0,13,7,11,0,0,15,8,4,1,1,2,14,6,13,3,6,9,0,14,6,8,12,14,13,4,11,8,11,4,0,4,14,11,2,5,9,11,15,1,13,15,12,10,0,7,15,5,0,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"6\", \"3\", \"6\", \"15\"], \"clip_start\": 39.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q10_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,7,2,9,13,7,8,13,9,15,9,6,14,6,7,12,14,6,14,12,11,2,4,15,5,5,7,7,13,10,1,5,12,13,4,7,0,8,14,6,3,6,15,2,3,11,11,11,7,2,14,9,13,2,10,4,13,2,10,13,3,6,14,6,0,9,2,2,3,1,4,8,15,6,6,11,2,12,1,8,1,13,15,2,8,4,3,14,14,1,12,7,13,8,7,6,4,14,15,0,6,10,5,1,3,1,9,13,13,8,4,1,6,7,10,5,1,9,1,10,8,8,5,12,6,6,9,15,10,6,11,9,4,12,13,0,2,8,7,14,12,5,2,6,11,2,14,6,11,4,3,0,11,7,12,10,13,3,6,14,1,10,12,5,7,13,1,6,8,12,6,4,6,1,9,9,13,8,3,14,12,12,6,7,9,1,15,2,11,4,9,0,12,15,11,9,9,0,14,8,5,0,0,2,14,0,13,7,11,0,0,15,8,4,1,1,2,14,6,13,3,6,9,0,14,6,8,12,14,13,4,11,8,11,4,0,4,14,11,2,5,9,11,15,1,13,15,12,10,0,7,15,5,0,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"13\", \"8\", \"1\"], \"clip_start\": 10.0, \"clip_end\": 15.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q11_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,7,2,9,13,7,8,13,9,15,9,6,14,6,7,12,14,6,14,12,11,2,4,15,5,5,7,7,13,10,1,5,12,13,4,7,0,8,14,6,3,6,15,2,3,11,11,11,7,2,14,9,13,2,10,4,13,2,10,13,3,6,14,6,0,9,2,2,3,1,4,8,15,6,6,11,2,12,1,8,1,13,15,2,8,4,3,14,14,1,12,7,13,8,7,6,4,14,15,0,6,10,5,1,3,1,9,13,13,8,4,1,6,7,10,5,1,9,1,10,8,8,5,12,6,6,9,15,10,6,11,9,4,12,13,0,2,8,7,14,12,5,2,6,11,2,14,6,11,4,3,0,11,7,12,10,13,3,6,14,1,10,12,5,7,13,1,6,8,12,6,4,6,1,9,9,13,8,3,14,12,12,6,7,9,1,15,2,11,4,9,0,12,15,11,9,9,0,14,8,5,0,0,2,14,0,13,7,11,0,0,15,8,4,1,1,2,14,6,13,3,6,9,0,14,6,8,12,14,13,4,11,8,11,4,0,4,14,11,2,5,9,11,15,1,13,15,12,10,0,7,15,5,0,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"2\"], \"clip_start\": 17.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q12_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,7,2,9,13,7,8,13,9,15,9,6,14,6,7,12,14,6,14,12,11,2,4,15,5,5,7,7,13,10,1,5,12,13,4,7,0,8,14,6,3,6,15,2,3,11,11,11,7,2,14,9,13,2,10,4,13,2,10,13,3,6,14,6,0,9,2,2,3,1,4,8,15,6,6,11,2,12,1,8,1,13,15,2,8,4,3,14,14,1,12,7,13,8,7,6,4,14,15,0,6,10,5,1,3,1,9,13,13,8,4,1,6,7,10,5,1,9,1,10,8,8,5,12,6,6,9,15,10,6,11,9,4,12,13,0,2,8,7,14,12,5,2,6,11,2,14,6,11,4,3,0,11,7,12,10,13,3,6,14,1,10,12,5,7,13,1,6,8,12,6,4,6,1,9,9,13,8,3,14,12,12,6,7,9,1,15,2,11,4,9,0,12,15,11,9,9,0,14,8,5,0,0,2,14,0,13,7,11,0,0,15,8,4,1,1,2,14,6,13,3,6,9,0,14,6,8,12,14,13,4,11,8,11,4,0,4,14,11,2,5,9,11,15,1,13,15,12,10,0,7,15,5,0,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"10\", \"9\", \"14\"], \"clip_start\": 157.0, \"clip_end\": 161.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q13_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,7,2,9,13,7,8,13,9,15,9,6,14,6,7,12,14,6,14,12,11,2,4,15,5,5,7,7,13,10,1,5,12,13,4,7,0,8,14,6,3,6,15,2,3,11,11,11,7,2,14,9,13,2,10,4,13,2,10,13,3,6,14,6,0,9,2,2,3,1,4,8,15,6,6,11,2,12,1,8,1,13,15,2,8,4,3,14,14,1,12,7,13,8,7,6,4,14,15,0,6,10,5,1,3,1,9,13,13,8,4,1,6,7,10,5,1,9,1,10,8,8,5,12,6,6,9,15,10,6,11,9,4,12,13,0,2,8,7,14,12,5,2,6,11,2,14,6,11,4,3,0,11,7,12,10,13,3,6,14,1,10,12,5,7,13,1,6,8,12,6,4,6,1,9,9,13,8,3,14,12,12,6,7,9,1,15,2,11,4,9,0,12,15,11,9,9,0,14,8,5,0,0,2,14,0,13,7,11,0,0,15,8,4,1,1,2,14,6,13,3,6,9,0,14,6,8,12,14,13,4,11,8,11,4,0,4,14,11,2,5,9,11,15,1,13,15,12,10,0,7,15,5,0,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"7\", \"10\", \"5\"], \"clip_start\": 112.0, \"clip_end\": 117.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q14_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,7,2,9,13,7,8,13,9,15,9,6,14,6,7,12,14,6,14,12,11,2,4,15,5,5,7,7,13,10,1,5,12,13,4,7,0,8,14,6,3,6,15,2,3,11,11,11,7,2,14,9,13,2,10,4,13,2,10,13,3,6,14,6,0,9,2,2,3,1,4,8,15,6,6,11,2,12,1,8,1,13,15,2,8,4,3,14,14,1,12,7,13,8,7,6,4,14,15,0,6,10,5,1,3,1,9,13,13,8,4,1,6,7,10,5,1,9,1,10,8,8,5,12,6,6,9,15,10,6,11,9,4,12,13,0,2,8,7,14,12,5,2,6,11,2,14,6,11,4,3,0,11,7,12,10,13,3,6,14,1,10,12,5,7,13,1,6,8,12,6,4,6,1,9,9,13,8,3,14,12,12,6,7,9,1,15,2,11,4,9,0,12,15,11,9,9,0,14,8,5,0,0,2,14,0,13,7,11,0,0,15,8,4,1,1,2,14,6,13,3,6,9,0,14,6,8,12,14,13,4,11,8,11,4,0,4,14,11,2,5,9,11,15,1,13,15,12,10,0,7,15,5,0,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"9\", \"1\", \"10\"], \"clip_start\": 116.0, \"clip_end\": 121.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q15_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,7,2,9,13,7,8,13,9,15,9,6,14,6,7,12,14,6,14,12,11,2,4,15,5,5,7,7,13,10,1,5,12,13,4,7,0,8,14,6,3,6,15,2,3,11,11,11,7,2,14,9,13,2,10,4,13,2,10,13,3,6,14,6,0,9,2,2,3,1,4,8,15,6,6,11,2,12,1,8,1,13,15,2,8,4,3,14,14,1,12,7,13,8,7,6,4,14,15,0,6,10,5,1,3,1,9,13,13,8,4,1,6,7,10,5,1,9,1,10,8,8,5,12,6,6,9,15,10,6,11,9,4,12,13,0,2,8,7,14,12,5,2,6,11,2,14,6,11,4,3,0,11,7,12,10,13,3,6,14,1,10,12,5,7,13,1,6,8,12,6,4,6,1,9,9,13,8,3,14,12,12,6,7,9,1,15,2,11,4,9,0,12,15,11,9,9,0,14,8,5,0,0,2,14,0,13,7,11,0,0,15,8,4,1,1,2,14,6,13,3,6,9,0,14,6,8,12,14,13,4,11,8,11,4,0,4,14,11,2,5,9,11,15,1,13,15,12,10,0,7,15,5,0,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"1\", \"3\", \"10\", \"8\"], \"clip_start\": 115.0, \"clip_end\": 120.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,15,15,9,11,8,10,4,1,1,5,5,5,12,8,11,0,1,5,11,6,7,2,2,10,13,5,13,6,14,4,9,15,15,9,11,11,15,11,6,4,14,0,1,14,7,13,5,15,8,9,4,9,3,10,1,7,1,11,12,7,12,12,9,12,8,10,8,9,1,8,11,3,14,4,12,2,1,10,11,3,13,3,15,4,2,10,10,9,7,3,0,14,7,12,13,4,11,15,10,4,2,0,15,7,7,5,12,6,13,9,3,14,12,12,6,1,3,10,8,3,6,6,8,6,6,2,5,12,10,5,5,5,3,8,14,0,6,13,6,14,12,6,3,12,14,7,1,0,10,9,4,15,13,7,1,13,2,2,1,11,12,4,11,14,0,11,8,0,10,7,3,11,6,12,12,10,1,10,7,5,11,15,3,7,13,1,12,13,5,13,11,0,4,0,9,14,6,2,8,6,13,7,10,0,5,6,3,3,4,8,4,2,5,15,12,1,4,14,14,6,9,7,3,13,15,10,3,11,10,11,14,2,13,1,2,5,2,11,9,13,6,15,12,6,13,13,8,1,11,6,0,5,14,10,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"2\", \"1\", \"10\"], \"clip_start\": 75.0, \"clip_end\": 79.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,15,15,9,11,8,10,4,1,1,5,5,5,12,8,11,0,1,5,11,6,7,2,2,10,13,5,13,6,14,4,9,15,15,9,11,11,15,11,6,4,14,0,1,14,7,13,5,15,8,9,4,9,3,10,1,7,1,11,12,7,12,12,9,12,8,10,8,9,1,8,11,3,14,4,12,2,1,10,11,3,13,3,15,4,2,10,10,9,7,3,0,14,7,12,13,4,11,15,10,4,2,0,15,7,7,5,12,6,13,9,3,14,12,12,6,1,3,10,8,3,6,6,8,6,6,2,5,12,10,5,5,5,3,8,14,0,6,13,6,14,12,6,3,12,14,7,1,0,10,9,4,15,13,7,1,13,2,2,1,11,12,4,11,14,0,11,8,0,10,7,3,11,6,12,12,10,1,10,7,5,11,15,3,7,13,1,12,13,5,13,11,0,4,0,9,14,6,2,8,6,13,7,10,0,5,6,3,3,4,8,4,2,5,15,12,1,4,14,14,6,9,7,3,13,15,10,3,11,10,11,14,2,13,1,2,5,2,11,9,13,6,15,12,6,13,13,8,1,11,6,0,5,14,10,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"13\", \"11\", \"0\", \"4\", \"0\"], \"clip_start\": 189.0, \"clip_end\": 195.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,15,15,9,11,8,10,4,1,1,5,5,5,12,8,11,0,1,5,11,6,7,2,2,10,13,5,13,6,14,4,9,15,15,9,11,11,15,11,6,4,14,0,1,14,7,13,5,15,8,9,4,9,3,10,1,7,1,11,12,7,12,12,9,12,8,10,8,9,1,8,11,3,14,4,12,2,1,10,11,3,13,3,15,4,2,10,10,9,7,3,0,14,7,12,13,4,11,15,10,4,2,0,15,7,7,5,12,6,13,9,3,14,12,12,6,1,3,10,8,3,6,6,8,6,6,2,5,12,10,5,5,5,3,8,14,0,6,13,6,14,12,6,3,12,14,7,1,0,10,9,4,15,13,7,1,13,2,2,1,11,12,4,11,14,0,11,8,0,10,7,3,11,6,12,12,10,1,10,7,5,11,15,3,7,13,1,12,13,5,13,11,0,4,0,9,14,6,2,8,6,13,7,10,0,5,6,3,3,4,8,4,2,5,15,12,1,4,14,14,6,9,7,3,13,15,10,3,11,10,11,14,2,13,1,2,5,2,11,9,13,6,15,12,6,13,13,8,1,11,6,0,5,14,10,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"4\", \"9\", \"3\"], \"clip_start\": 49.0, \"clip_end\": 54.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,15,15,9,11,8,10,4,1,1,5,5,5,12,8,11,0,1,5,11,6,7,2,2,10,13,5,13,6,14,4,9,15,15,9,11,11,15,11,6,4,14,0,1,14,7,13,5,15,8,9,4,9,3,10,1,7,1,11,12,7,12,12,9,12,8,10,8,9,1,8,11,3,14,4,12,2,1,10,11,3,13,3,15,4,2,10,10,9,7,3,0,14,7,12,13,4,11,15,10,4,2,0,15,7,7,5,12,6,13,9,3,14,12,12,6,1,3,10,8,3,6,6,8,6,6,2,5,12,10,5,5,5,3,8,14,0,6,13,6,14,12,6,3,12,14,7,1,0,10,9,4,15,13,7,1,13,2,2,1,11,12,4,11,14,0,11,8,0,10,7,3,11,6,12,12,10,1,10,7,5,11,15,3,7,13,1,12,13,5,13,11,0,4,0,9,14,6,2,8,6,13,7,10,0,5,6,3,3,4,8,4,2,5,15,12,1,4,14,14,6,9,7,3,13,15,10,3,11,10,11,14,2,13,1,2,5,2,11,9,13,6,15,12,6,13,13,8,1,11,6,0,5,14,10,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"12\", \"13\", \"5\", \"13\"], \"clip_start\": 186.0, \"clip_end\": 191.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,15,15,9,11,8,10,4,1,1,5,5,5,12,8,11,0,1,5,11,6,7,2,2,10,13,5,13,6,14,4,9,15,15,9,11,11,15,11,6,4,14,0,1,14,7,13,5,15,8,9,4,9,3,10,1,7,1,11,12,7,12,12,9,12,8,10,8,9,1,8,11,3,14,4,12,2,1,10,11,3,13,3,15,4,2,10,10,9,7,3,0,14,7,12,13,4,11,15,10,4,2,0,15,7,7,5,12,6,13,9,3,14,12,12,6,1,3,10,8,3,6,6,8,6,6,2,5,12,10,5,5,5,3,8,14,0,6,13,6,14,12,6,3,12,14,7,1,0,10,9,4,15,13,7,1,13,2,2,1,11,12,4,11,14,0,11,8,0,10,7,3,11,6,12,12,10,1,10,7,5,11,15,3,7,13,1,12,13,5,13,11,0,4,0,9,14,6,2,8,6,13,7,10,0,5,6,3,3,4,8,4,2,5,15,12,1,4,14,14,6,9,7,3,13,15,10,3,11,10,11,14,2,13,1,2,5,2,11,9,13,6,15,12,6,13,13,8,1,11,6,0,5,14,10,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"7\", \"2\", \"2\", \"10\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,15,15,9,11,8,10,4,1,1,5,5,5,12,8,11,0,1,5,11,6,7,2,2,10,13,5,13,6,14,4,9,15,15,9,11,11,15,11,6,4,14,0,1,14,7,13,5,15,8,9,4,9,3,10,1,7,1,11,12,7,12,12,9,12,8,10,8,9,1,8,11,3,14,4,12,2,1,10,11,3,13,3,15,4,2,10,10,9,7,3,0,14,7,12,13,4,11,15,10,4,2,0,15,7,7,5,12,6,13,9,3,14,12,12,6,1,3,10,8,3,6,6,8,6,6,2,5,12,10,5,5,5,3,8,14,0,6,13,6,14,12,6,3,12,14,7,1,0,10,9,4,15,13,7,1,13,2,2,1,11,12,4,11,14,0,11,8,0,10,7,3,11,6,12,12,10,1,10,7,5,11,15,3,7,13,1,12,13,5,13,11,0,4,0,9,14,6,2,8,6,13,7,10,0,5,6,3,3,4,8,4,2,5,15,12,1,4,14,14,6,9,7,3,13,15,10,3,11,10,11,14,2,13,1,2,5,2,11,9,13,6,15,12,6,13,13,8,1,11,6,0,5,14,10,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"13\", \"4\", \"11\"], \"clip_start\": 93.0, \"clip_end\": 98.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,15,15,9,11,8,10,4,1,1,5,5,5,12,8,11,0,1,5,11,6,7,2,2,10,13,5,13,6,14,4,9,15,15,9,11,11,15,11,6,4,14,0,1,14,7,13,5,15,8,9,4,9,3,10,1,7,1,11,12,7,12,12,9,12,8,10,8,9,1,8,11,3,14,4,12,2,1,10,11,3,13,3,15,4,2,10,10,9,7,3,0,14,7,12,13,4,11,15,10,4,2,0,15,7,7,5,12,6,13,9,3,14,12,12,6,1,3,10,8,3,6,6,8,6,6,2,5,12,10,5,5,5,3,8,14,0,6,13,6,14,12,6,3,12,14,7,1,0,10,9,4,15,13,7,1,13,2,2,1,11,12,4,11,14,0,11,8,0,10,7,3,11,6,12,12,10,1,10,7,5,11,15,3,7,13,1,12,13,5,13,11,0,4,0,9,14,6,2,8,6,13,7,10,0,5,6,3,3,4,8,4,2,5,15,12,1,4,14,14,6,9,7,3,13,15,10,3,11,10,11,14,2,13,1,2,5,2,11,9,13,6,15,12,6,13,13,8,1,11,6,0,5,14,10,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"6\", \"9\", \"7\", \"3\"], \"clip_start\": 219.0, \"clip_end\": 224.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,15,15,9,11,8,10,4,1,1,5,5,5,12,8,11,0,1,5,11,6,7,2,2,10,13,5,13,6,14,4,9,15,15,9,11,11,15,11,6,4,14,0,1,14,7,13,5,15,8,9,4,9,3,10,1,7,1,11,12,7,12,12,9,12,8,10,8,9,1,8,11,3,14,4,12,2,1,10,11,3,13,3,15,4,2,10,10,9,7,3,0,14,7,12,13,4,11,15,10,4,2,0,15,7,7,5,12,6,13,9,3,14,12,12,6,1,3,10,8,3,6,6,8,6,6,2,5,12,10,5,5,5,3,8,14,0,6,13,6,14,12,6,3,12,14,7,1,0,10,9,4,15,13,7,1,13,2,2,1,11,12,4,11,14,0,11,8,0,10,7,3,11,6,12,12,10,1,10,7,5,11,15,3,7,13,1,12,13,5,13,11,0,4,0,9,14,6,2,8,6,13,7,10,0,5,6,3,3,4,8,4,2,5,15,12,1,4,14,14,6,9,7,3,13,15,10,3,11,10,11,14,2,13,1,2,5,2,11,9,13,6,15,12,6,13,13,8,1,11,6,0,5,14,10,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"0\"], \"clip_start\": 202.0, \"clip_end\": 205.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,15,15,9,11,8,10,4,1,1,5,5,5,12,8,11,0,1,5,11,6,7,2,2,10,13,5,13,6,14,4,9,15,15,9,11,11,15,11,6,4,14,0,1,14,7,13,5,15,8,9,4,9,3,10,1,7,1,11,12,7,12,12,9,12,8,10,8,9,1,8,11,3,14,4,12,2,1,10,11,3,13,3,15,4,2,10,10,9,7,3,0,14,7,12,13,4,11,15,10,4,2,0,15,7,7,5,12,6,13,9,3,14,12,12,6,1,3,10,8,3,6,6,8,6,6,2,5,12,10,5,5,5,3,8,14,0,6,13,6,14,12,6,3,12,14,7,1,0,10,9,4,15,13,7,1,13,2,2,1,11,12,4,11,14,0,11,8,0,10,7,3,11,6,12,12,10,1,10,7,5,11,15,3,7,13,1,12,13,5,13,11,0,4,0,9,14,6,2,8,6,13,7,10,0,5,6,3,3,4,8,4,2,5,15,12,1,4,14,14,6,9,7,3,13,15,10,3,11,10,11,14,2,13,1,2,5,2,11,9,13,6,15,12,6,13,13,8,1,11,6,0,5,14,10,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"14\", \"7\", \"1\", \"0\"], \"clip_start\": 143.0, \"clip_end\": 149.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,15,15,9,11,8,10,4,1,1,5,5,5,12,8,11,0,1,5,11,6,7,2,2,10,13,5,13,6,14,4,9,15,15,9,11,11,15,11,6,4,14,0,1,14,7,13,5,15,8,9,4,9,3,10,1,7,1,11,12,7,12,12,9,12,8,10,8,9,1,8,11,3,14,4,12,2,1,10,11,3,13,3,15,4,2,10,10,9,7,3,0,14,7,12,13,4,11,15,10,4,2,0,15,7,7,5,12,6,13,9,3,14,12,12,6,1,3,10,8,3,6,6,8,6,6,2,5,12,10,5,5,5,3,8,14,0,6,13,6,14,12,6,3,12,14,7,1,0,10,9,4,15,13,7,1,13,2,2,1,11,12,4,11,14,0,11,8,0,10,7,3,11,6,12,12,10,1,10,7,5,11,15,3,7,13,1,12,13,5,13,11,0,4,0,9,14,6,2,8,6,13,7,10,0,5,6,3,3,4,8,4,2,5,15,12,1,4,14,14,6,9,7,3,13,15,10,3,11,10,11,14,2,13,1,2,5,2,11,9,13,6,15,12,6,13,13,8,1,11,6,0,5,14,10,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"13\"], \"clip_start\": 107.0, \"clip_end\": 110.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,15,15,9,11,8,10,4,1,1,5,5,5,12,8,11,0,1,5,11,6,7,2,2,10,13,5,13,6,14,4,9,15,15,9,11,11,15,11,6,4,14,0,1,14,7,13,5,15,8,9,4,9,3,10,1,7,1,11,12,7,12,12,9,12,8,10,8,9,1,8,11,3,14,4,12,2,1,10,11,3,13,3,15,4,2,10,10,9,7,3,0,14,7,12,13,4,11,15,10,4,2,0,15,7,7,5,12,6,13,9,3,14,12,12,6,1,3,10,8,3,6,6,8,6,6,2,5,12,10,5,5,5,3,8,14,0,6,13,6,14,12,6,3,12,14,7,1,0,10,9,4,15,13,7,1,13,2,2,1,11,12,4,11,14,0,11,8,0,10,7,3,11,6,12,12,10,1,10,7,5,11,15,3,7,13,1,12,13,5,13,11,0,4,0,9,14,6,2,8,6,13,7,10,0,5,6,3,3,4,8,4,2,5,15,12,1,4,14,14,6,9,7,3,13,15,10,3,11,10,11,14,2,13,1,2,5,2,11,9,13,6,15,12,6,13,13,8,1,11,6,0,5,14,10,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"13\", \"4\"], \"clip_start\": 93.0, \"clip_end\": 97.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,15,15,9,11,8,10,4,1,1,5,5,5,12,8,11,0,1,5,11,6,7,2,2,10,13,5,13,6,14,4,9,15,15,9,11,11,15,11,6,4,14,0,1,14,7,13,5,15,8,9,4,9,3,10,1,7,1,11,12,7,12,12,9,12,8,10,8,9,1,8,11,3,14,4,12,2,1,10,11,3,13,3,15,4,2,10,10,9,7,3,0,14,7,12,13,4,11,15,10,4,2,0,15,7,7,5,12,6,13,9,3,14,12,12,6,1,3,10,8,3,6,6,8,6,6,2,5,12,10,5,5,5,3,8,14,0,6,13,6,14,12,6,3,12,14,7,1,0,10,9,4,15,13,7,1,13,2,2,1,11,12,4,11,14,0,11,8,0,10,7,3,11,6,12,12,10,1,10,7,5,11,15,3,7,13,1,12,13,5,13,11,0,4,0,9,14,6,2,8,6,13,7,10,0,5,6,3,3,4,8,4,2,5,15,12,1,4,14,14,6,9,7,3,13,15,10,3,11,10,11,14,2,13,1,2,5,2,11,9,13,6,15,12,6,13,13,8,1,11,6,0,5,14,10,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"10\", \"10\", \"9\"], \"clip_start\": 84.0, \"clip_end\": 89.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,15,15,9,11,8,10,4,1,1,5,5,5,12,8,11,0,1,5,11,6,7,2,2,10,13,5,13,6,14,4,9,15,15,9,11,11,15,11,6,4,14,0,1,14,7,13,5,15,8,9,4,9,3,10,1,7,1,11,12,7,12,12,9,12,8,10,8,9,1,8,11,3,14,4,12,2,1,10,11,3,13,3,15,4,2,10,10,9,7,3,0,14,7,12,13,4,11,15,10,4,2,0,15,7,7,5,12,6,13,9,3,14,12,12,6,1,3,10,8,3,6,6,8,6,6,2,5,12,10,5,5,5,3,8,14,0,6,13,6,14,12,6,3,12,14,7,1,0,10,9,4,15,13,7,1,13,2,2,1,11,12,4,11,14,0,11,8,0,10,7,3,11,6,12,12,10,1,10,7,5,11,15,3,7,13,1,12,13,5,13,11,0,4,0,9,14,6,2,8,6,13,7,10,0,5,6,3,3,4,8,4,2,5,15,12,1,4,14,14,6,9,7,3,13,15,10,3,11,10,11,14,2,13,1,2,5,2,11,9,13,6,15,12,6,13,13,8,1,11,6,0,5,14,10,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"12\", \"6\", \"1\", \"3\"], \"clip_start\": 112.0, \"clip_end\": 118.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,15,15,9,11,8,10,4,1,1,5,5,5,12,8,11,0,1,5,11,6,7,2,2,10,13,5,13,6,14,4,9,15,15,9,11,11,15,11,6,4,14,0,1,14,7,13,5,15,8,9,4,9,3,10,1,7,1,11,12,7,12,12,9,12,8,10,8,9,1,8,11,3,14,4,12,2,1,10,11,3,13,3,15,4,2,10,10,9,7,3,0,14,7,12,13,4,11,15,10,4,2,0,15,7,7,5,12,6,13,9,3,14,12,12,6,1,3,10,8,3,6,6,8,6,6,2,5,12,10,5,5,5,3,8,14,0,6,13,6,14,12,6,3,12,14,7,1,0,10,9,4,15,13,7,1,13,2,2,1,11,12,4,11,14,0,11,8,0,10,7,3,11,6,12,12,10,1,10,7,5,11,15,3,7,13,1,12,13,5,13,11,0,4,0,9,14,6,2,8,6,13,7,10,0,5,6,3,3,4,8,4,2,5,15,12,1,4,14,14,6,9,7,3,13,15,10,3,11,10,11,14,2,13,1,2,5,2,11,9,13,6,15,12,6,13,13,8,1,11,6,0,5,14,10,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"3\", \"15\", \"4\"], \"clip_start\": 80.0, \"clip_end\": 85.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,15,15,9,11,8,10,4,1,1,5,5,5,12,8,11,0,1,5,11,6,7,2,2,10,13,5,13,6,14,4,9,15,15,9,11,11,15,11,6,4,14,0,1,14,7,13,5,15,8,9,4,9,3,10,1,7,1,11,12,7,12,12,9,12,8,10,8,9,1,8,11,3,14,4,12,2,1,10,11,3,13,3,15,4,2,10,10,9,7,3,0,14,7,12,13,4,11,15,10,4,2,0,15,7,7,5,12,6,13,9,3,14,12,12,6,1,3,10,8,3,6,6,8,6,6,2,5,12,10,5,5,5,3,8,14,0,6,13,6,14,12,6,3,12,14,7,1,0,10,9,4,15,13,7,1,13,2,2,1,11,12,4,11,14,0,11,8,0,10,7,3,11,6,12,12,10,1,10,7,5,11,15,3,7,13,1,12,13,5,13,11,0,4,0,9,14,6,2,8,6,13,7,10,0,5,6,3,3,4,8,4,2,5,15,12,1,4,14,14,6,9,7,3,13,15,10,3,11,10,11,14,2,13,1,2,5,2,11,9,13,6,15,12,6,13,13,8,1,11,6,0,5,14,10,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"2\", \"10\", \"13\"], \"clip_start\": 21.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,15,15,9,11,8,10,4,1,1,5,5,5,12,8,11,0,1,5,11,6,7,2,2,10,13,5,13,6,14,4,9,15,15,9,11,11,15,11,6,4,14,0,1,14,7,13,5,15,8,9,4,9,3,10,1,7,1,11,12,7,12,12,9,12,8,10,8,9,1,8,11,3,14,4,12,2,1,10,11,3,13,3,15,4,2,10,10,9,7,3,0,14,7,12,13,4,11,15,10,4,2,0,15,7,7,5,12,6,13,9,3,14,12,12,6,1,3,10,8,3,6,6,8,6,6,2,5,12,10,5,5,5,3,8,14,0,6,13,6,14,12,6,3,12,14,7,1,0,10,9,4,15,13,7,1,13,2,2,1,11,12,4,11,14,0,11,8,0,10,7,3,11,6,12,12,10,1,10,7,5,11,15,3,7,13,1,12,13,5,13,11,0,4,0,9,14,6,2,8,6,13,7,10,0,5,6,3,3,4,8,4,2,5,15,12,1,4,14,14,6,9,7,3,13,15,10,3,11,10,11,14,2,13,1,2,5,2,11,9,13,6,15,12,6,13,13,8,1,11,6,0,5,14,10,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"1\", \"15\", \"4\", \"9\"], \"clip_start\": 47.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,9,8,10,3,1,7,7,8,2,10,12,14,4,7,3,4,14,3,9,14,6,12,11,6,13,9,2,0,14,4,1,14,8,13,2,10,9,7,15,12,10,4,13,3,7,11,7,1,15,4,9,0,4,13,8,11,6,11,9,15,1,6,5,2,3,8,1,7,1,2,14,10,1,7,7,10,5,14,14,5,6,11,6,4,2,3,3,3,4,13,11,14,2,9,15,9,4,13,3,0,12,7,11,14,6,7,8,4,0,0,9,15,12,7,0,11,4,2,11,13,3,1,4,8,6,7,14,0,3,8,14,14,8,1,1,6,4,10,10,14,0,10,9,7,8,2,3,9,6,13,10,14,15,6,14,15,8,13,13,7,8,14,2,15,9,12,6,5,6,14,9,11,9,7,9,5,14,8,6,2,13,9,6,7,1,9,11,2,5,15,2,10,8,7,2,11,0,6,0,9,0,10,15,8,3,9,13,10,5,0,7,0,4,10,6,13,15,11,1,7,1,4,2,13,9,5,12,6,12,5,0,14,8,10,6,5,7,12,6,15,3,10,3,11,2,2,6,6,5,12,0,2,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"1\", \"1\", \"6\"], \"clip_start\": 132.0, \"clip_end\": 137.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,9,8,10,3,1,7,7,8,2,10,12,14,4,7,3,4,14,3,9,14,6,12,11,6,13,9,2,0,14,4,1,14,8,13,2,10,9,7,15,12,10,4,13,3,7,11,7,1,15,4,9,0,4,13,8,11,6,11,9,15,1,6,5,2,3,8,1,7,1,2,14,10,1,7,7,10,5,14,14,5,6,11,6,4,2,3,3,3,4,13,11,14,2,9,15,9,4,13,3,0,12,7,11,14,6,7,8,4,0,0,9,15,12,7,0,11,4,2,11,13,3,1,4,8,6,7,14,0,3,8,14,14,8,1,1,6,4,10,10,14,0,10,9,7,8,2,3,9,6,13,10,14,15,6,14,15,8,13,13,7,8,14,2,15,9,12,6,5,6,14,9,11,9,7,9,5,14,8,6,2,13,9,6,7,1,9,11,2,5,15,2,10,8,7,2,11,0,6,0,9,0,10,15,8,3,9,13,10,5,0,7,0,4,10,6,13,15,11,1,7,1,4,2,13,9,5,12,6,12,5,0,14,8,10,6,5,7,12,6,15,3,10,3,11,2,2,6,6,5,12,0,2,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"12\", \"5\", \"0\"], \"clip_start\": 227.0, \"clip_end\": 232.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,9,8,10,3,1,7,7,8,2,10,12,14,4,7,3,4,14,3,9,14,6,12,11,6,13,9,2,0,14,4,1,14,8,13,2,10,9,7,15,12,10,4,13,3,7,11,7,1,15,4,9,0,4,13,8,11,6,11,9,15,1,6,5,2,3,8,1,7,1,2,14,10,1,7,7,10,5,14,14,5,6,11,6,4,2,3,3,3,4,13,11,14,2,9,15,9,4,13,3,0,12,7,11,14,6,7,8,4,0,0,9,15,12,7,0,11,4,2,11,13,3,1,4,8,6,7,14,0,3,8,14,14,8,1,1,6,4,10,10,14,0,10,9,7,8,2,3,9,6,13,10,14,15,6,14,15,8,13,13,7,8,14,2,15,9,12,6,5,6,14,9,11,9,7,9,5,14,8,6,2,13,9,6,7,1,9,11,2,5,15,2,10,8,7,2,11,0,6,0,9,0,10,15,8,3,9,13,10,5,0,7,0,4,10,6,13,15,11,1,7,1,4,2,13,9,5,12,6,12,5,0,14,8,10,6,5,7,12,6,15,3,10,3,11,2,2,6,6,5,12,0,2,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"3\", \"7\", \"11\"], \"clip_start\": 42.0, \"clip_end\": 47.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,9,8,10,3,1,7,7,8,2,10,12,14,4,7,3,4,14,3,9,14,6,12,11,6,13,9,2,0,14,4,1,14,8,13,2,10,9,7,15,12,10,4,13,3,7,11,7,1,15,4,9,0,4,13,8,11,6,11,9,15,1,6,5,2,3,8,1,7,1,2,14,10,1,7,7,10,5,14,14,5,6,11,6,4,2,3,3,3,4,13,11,14,2,9,15,9,4,13,3,0,12,7,11,14,6,7,8,4,0,0,9,15,12,7,0,11,4,2,11,13,3,1,4,8,6,7,14,0,3,8,14,14,8,1,1,6,4,10,10,14,0,10,9,7,8,2,3,9,6,13,10,14,15,6,14,15,8,13,13,7,8,14,2,15,9,12,6,5,6,14,9,11,9,7,9,5,14,8,6,2,13,9,6,7,1,9,11,2,5,15,2,10,8,7,2,11,0,6,0,9,0,10,15,8,3,9,13,10,5,0,7,0,4,10,6,13,15,11,1,7,1,4,2,13,9,5,12,6,12,5,0,14,8,10,6,5,7,12,6,15,3,10,3,11,2,2,6,6,5,12,0,2,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"0\", \"9\", \"15\"], \"clip_start\": 108.0, \"clip_end\": 113.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,9,8,10,3,1,7,7,8,2,10,12,14,4,7,3,4,14,3,9,14,6,12,11,6,13,9,2,0,14,4,1,14,8,13,2,10,9,7,15,12,10,4,13,3,7,11,7,1,15,4,9,0,4,13,8,11,6,11,9,15,1,6,5,2,3,8,1,7,1,2,14,10,1,7,7,10,5,14,14,5,6,11,6,4,2,3,3,3,4,13,11,14,2,9,15,9,4,13,3,0,12,7,11,14,6,7,8,4,0,0,9,15,12,7,0,11,4,2,11,13,3,1,4,8,6,7,14,0,3,8,14,14,8,1,1,6,4,10,10,14,0,10,9,7,8,2,3,9,6,13,10,14,15,6,14,15,8,13,13,7,8,14,2,15,9,12,6,5,6,14,9,11,9,7,9,5,14,8,6,2,13,9,6,7,1,9,11,2,5,15,2,10,8,7,2,11,0,6,0,9,0,10,15,8,3,9,13,10,5,0,7,0,4,10,6,13,15,11,1,7,1,4,2,13,9,5,12,6,12,5,0,14,8,10,6,5,7,12,6,15,3,10,3,11,2,2,6,6,5,12,0,2,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"4\", \"9\", \"0\"], \"clip_start\": 49.0, \"clip_end\": 53.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,9,8,10,3,1,7,7,8,2,10,12,14,4,7,3,4,14,3,9,14,6,12,11,6,13,9,2,0,14,4,1,14,8,13,2,10,9,7,15,12,10,4,13,3,7,11,7,1,15,4,9,0,4,13,8,11,6,11,9,15,1,6,5,2,3,8,1,7,1,2,14,10,1,7,7,10,5,14,14,5,6,11,6,4,2,3,3,3,4,13,11,14,2,9,15,9,4,13,3,0,12,7,11,14,6,7,8,4,0,0,9,15,12,7,0,11,4,2,11,13,3,1,4,8,6,7,14,0,3,8,14,14,8,1,1,6,4,10,10,14,0,10,9,7,8,2,3,9,6,13,10,14,15,6,14,15,8,13,13,7,8,14,2,15,9,12,6,5,6,14,9,11,9,7,9,5,14,8,6,2,13,9,6,7,1,9,11,2,5,15,2,10,8,7,2,11,0,6,0,9,0,10,15,8,3,9,13,10,5,0,7,0,4,10,6,13,15,11,1,7,1,4,2,13,9,5,12,6,12,5,0,14,8,10,6,5,7,12,6,15,3,10,3,11,2,2,6,6,5,12,0,2,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 214.0, \"clip_end\": 217.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,9,8,10,3,1,7,7,8,2,10,12,14,4,7,3,4,14,3,9,14,6,12,11,6,13,9,2,0,14,4,1,14,8,13,2,10,9,7,15,12,10,4,13,3,7,11,7,1,15,4,9,0,4,13,8,11,6,11,9,15,1,6,5,2,3,8,1,7,1,2,14,10,1,7,7,10,5,14,14,5,6,11,6,4,2,3,3,3,4,13,11,14,2,9,15,9,4,13,3,0,12,7,11,14,6,7,8,4,0,0,9,15,12,7,0,11,4,2,11,13,3,1,4,8,6,7,14,0,3,8,14,14,8,1,1,6,4,10,10,14,0,10,9,7,8,2,3,9,6,13,10,14,15,6,14,15,8,13,13,7,8,14,2,15,9,12,6,5,6,14,9,11,9,7,9,5,14,8,6,2,13,9,6,7,1,9,11,2,5,15,2,10,8,7,2,11,0,6,0,9,0,10,15,8,3,9,13,10,5,0,7,0,4,10,6,13,15,11,1,7,1,4,2,13,9,5,12,6,12,5,0,14,8,10,6,5,7,12,6,15,3,10,3,11,2,2,6,6,5,12,0,2,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\", \"1\"], \"clip_start\": 70.0, \"clip_end\": 74.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,9,8,10,3,1,7,7,8,2,10,12,14,4,7,3,4,14,3,9,14,6,12,11,6,13,9,2,0,14,4,1,14,8,13,2,10,9,7,15,12,10,4,13,3,7,11,7,1,15,4,9,0,4,13,8,11,6,11,9,15,1,6,5,2,3,8,1,7,1,2,14,10,1,7,7,10,5,14,14,5,6,11,6,4,2,3,3,3,4,13,11,14,2,9,15,9,4,13,3,0,12,7,11,14,6,7,8,4,0,0,9,15,12,7,0,11,4,2,11,13,3,1,4,8,6,7,14,0,3,8,14,14,8,1,1,6,4,10,10,14,0,10,9,7,8,2,3,9,6,13,10,14,15,6,14,15,8,13,13,7,8,14,2,15,9,12,6,5,6,14,9,11,9,7,9,5,14,8,6,2,13,9,6,7,1,9,11,2,5,15,2,10,8,7,2,11,0,6,0,9,0,10,15,8,3,9,13,10,5,0,7,0,4,10,6,13,15,11,1,7,1,4,2,13,9,5,12,6,12,5,0,14,8,10,6,5,7,12,6,15,3,10,3,11,2,2,6,6,5,12,0,2,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"1\", \"7\", \"1\"], \"clip_start\": 65.0, \"clip_end\": 70.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,9,8,10,3,1,7,7,8,2,10,12,14,4,7,3,4,14,3,9,14,6,12,11,6,13,9,2,0,14,4,1,14,8,13,2,10,9,7,15,12,10,4,13,3,7,11,7,1,15,4,9,0,4,13,8,11,6,11,9,15,1,6,5,2,3,8,1,7,1,2,14,10,1,7,7,10,5,14,14,5,6,11,6,4,2,3,3,3,4,13,11,14,2,9,15,9,4,13,3,0,12,7,11,14,6,7,8,4,0,0,9,15,12,7,0,11,4,2,11,13,3,1,4,8,6,7,14,0,3,8,14,14,8,1,1,6,4,10,10,14,0,10,9,7,8,2,3,9,6,13,10,14,15,6,14,15,8,13,13,7,8,14,2,15,9,12,6,5,6,14,9,11,9,7,9,5,14,8,6,2,13,9,6,7,1,9,11,2,5,15,2,10,8,7,2,11,0,6,0,9,0,10,15,8,3,9,13,10,5,0,7,0,4,10,6,13,15,11,1,7,1,4,2,13,9,5,12,6,12,5,0,14,8,10,6,5,7,12,6,15,3,10,3,11,2,2,6,6,5,12,0,2,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"15\", \"12\"], \"clip_start\": 110.0, \"clip_end\": 114.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,9,8,10,3,1,7,7,8,2,10,12,14,4,7,3,4,14,3,9,14,6,12,11,6,13,9,2,0,14,4,1,14,8,13,2,10,9,7,15,12,10,4,13,3,7,11,7,1,15,4,9,0,4,13,8,11,6,11,9,15,1,6,5,2,3,8,1,7,1,2,14,10,1,7,7,10,5,14,14,5,6,11,6,4,2,3,3,3,4,13,11,14,2,9,15,9,4,13,3,0,12,7,11,14,6,7,8,4,0,0,9,15,12,7,0,11,4,2,11,13,3,1,4,8,6,7,14,0,3,8,14,14,8,1,1,6,4,10,10,14,0,10,9,7,8,2,3,9,6,13,10,14,15,6,14,15,8,13,13,7,8,14,2,15,9,12,6,5,6,14,9,11,9,7,9,5,14,8,6,2,13,9,6,7,1,9,11,2,5,15,2,10,8,7,2,11,0,6,0,9,0,10,15,8,3,9,13,10,5,0,7,0,4,10,6,13,15,11,1,7,1,4,2,13,9,5,12,6,12,5,0,14,8,10,6,5,7,12,6,15,3,10,3,11,2,2,6,6,5,12,0,2,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"4\", \"2\", \"11\", \"13\"], \"clip_start\": 116.0, \"clip_end\": 121.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,9,8,10,3,1,7,7,8,2,10,12,14,4,7,3,4,14,3,9,14,6,12,11,6,13,9,2,0,14,4,1,14,8,13,2,10,9,7,15,12,10,4,13,3,7,11,7,1,15,4,9,0,4,13,8,11,6,11,9,15,1,6,5,2,3,8,1,7,1,2,14,10,1,7,7,10,5,14,14,5,6,11,6,4,2,3,3,3,4,13,11,14,2,9,15,9,4,13,3,0,12,7,11,14,6,7,8,4,0,0,9,15,12,7,0,11,4,2,11,13,3,1,4,8,6,7,14,0,3,8,14,14,8,1,1,6,4,10,10,14,0,10,9,7,8,2,3,9,6,13,10,14,15,6,14,15,8,13,13,7,8,14,2,15,9,12,6,5,6,14,9,11,9,7,9,5,14,8,6,2,13,9,6,7,1,9,11,2,5,15,2,10,8,7,2,11,0,6,0,9,0,10,15,8,3,9,13,10,5,0,7,0,4,10,6,13,15,11,1,7,1,4,2,13,9,5,12,6,12,5,0,14,8,10,6,5,7,12,6,15,3,10,3,11,2,2,6,6,5,12,0,2,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"5\", \"6\"], \"clip_start\": 166.0, \"clip_end\": 170.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,9,8,10,3,1,7,7,8,2,10,12,14,4,7,3,4,14,3,9,14,6,12,11,6,13,9,2,0,14,4,1,14,8,13,2,10,9,7,15,12,10,4,13,3,7,11,7,1,15,4,9,0,4,13,8,11,6,11,9,15,1,6,5,2,3,8,1,7,1,2,14,10,1,7,7,10,5,14,14,5,6,11,6,4,2,3,3,3,4,13,11,14,2,9,15,9,4,13,3,0,12,7,11,14,6,7,8,4,0,0,9,15,12,7,0,11,4,2,11,13,3,1,4,8,6,7,14,0,3,8,14,14,8,1,1,6,4,10,10,14,0,10,9,7,8,2,3,9,6,13,10,14,15,6,14,15,8,13,13,7,8,14,2,15,9,12,6,5,6,14,9,11,9,7,9,5,14,8,6,2,13,9,6,7,1,9,11,2,5,15,2,10,8,7,2,11,0,6,0,9,0,10,15,8,3,9,13,10,5,0,7,0,4,10,6,13,15,11,1,7,1,4,2,13,9,5,12,6,12,5,0,14,8,10,6,5,7,12,6,15,3,10,3,11,2,2,6,6,5,12,0,2,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"11\"], \"clip_start\": 43.0, \"clip_end\": 46.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,9,8,10,3,1,7,7,8,2,10,12,14,4,7,3,4,14,3,9,14,6,12,11,6,13,9,2,0,14,4,1,14,8,13,2,10,9,7,15,12,10,4,13,3,7,11,7,1,15,4,9,0,4,13,8,11,6,11,9,15,1,6,5,2,3,8,1,7,1,2,14,10,1,7,7,10,5,14,14,5,6,11,6,4,2,3,3,3,4,13,11,14,2,9,15,9,4,13,3,0,12,7,11,14,6,7,8,4,0,0,9,15,12,7,0,11,4,2,11,13,3,1,4,8,6,7,14,0,3,8,14,14,8,1,1,6,4,10,10,14,0,10,9,7,8,2,3,9,6,13,10,14,15,6,14,15,8,13,13,7,8,14,2,15,9,12,6,5,6,14,9,11,9,7,9,5,14,8,6,2,13,9,6,7,1,9,11,2,5,15,2,10,8,7,2,11,0,6,0,9,0,10,15,8,3,9,13,10,5,0,7,0,4,10,6,13,15,11,1,7,1,4,2,13,9,5,12,6,12,5,0,14,8,10,6,5,7,12,6,15,3,10,3,11,2,2,6,6,5,12,0,2,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"2\", \"13\"], \"clip_start\": 178.0, \"clip_end\": 182.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q13_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,9,8,10,3,1,7,7,8,2,10,12,14,4,7,3,4,14,3,9,14,6,12,11,6,13,9,2,0,14,4,1,14,8,13,2,10,9,7,15,12,10,4,13,3,7,11,7,1,15,4,9,0,4,13,8,11,6,11,9,15,1,6,5,2,3,8,1,7,1,2,14,10,1,7,7,10,5,14,14,5,6,11,6,4,2,3,3,3,4,13,11,14,2,9,15,9,4,13,3,0,12,7,11,14,6,7,8,4,0,0,9,15,12,7,0,11,4,2,11,13,3,1,4,8,6,7,14,0,3,8,14,14,8,1,1,6,4,10,10,14,0,10,9,7,8,2,3,9,6,13,10,14,15,6,14,15,8,13,13,7,8,14,2,15,9,12,6,5,6,14,9,11,9,7,9,5,14,8,6,2,13,9,6,7,1,9,11,2,5,15,2,10,8,7,2,11,0,6,0,9,0,10,15,8,3,9,13,10,5,0,7,0,4,10,6,13,15,11,1,7,1,4,2,13,9,5,12,6,12,5,0,14,8,10,6,5,7,12,6,15,3,10,3,11,2,2,6,6,5,12,0,2,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"9\", \"14\"], \"clip_start\": 17.0, \"clip_end\": 21.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,9,8,10,3,1,7,7,8,2,10,12,14,4,7,3,4,14,3,9,14,6,12,11,6,13,9,2,0,14,4,1,14,8,13,2,10,9,7,15,12,10,4,13,3,7,11,7,1,15,4,9,0,4,13,8,11,6,11,9,15,1,6,5,2,3,8,1,7,1,2,14,10,1,7,7,10,5,14,14,5,6,11,6,4,2,3,3,3,4,13,11,14,2,9,15,9,4,13,3,0,12,7,11,14,6,7,8,4,0,0,9,15,12,7,0,11,4,2,11,13,3,1,4,8,6,7,14,0,3,8,14,14,8,1,1,6,4,10,10,14,0,10,9,7,8,2,3,9,6,13,10,14,15,6,14,15,8,13,13,7,8,14,2,15,9,12,6,5,6,14,9,11,9,7,9,5,14,8,6,2,13,9,6,7,1,9,11,2,5,15,2,10,8,7,2,11,0,6,0,9,0,10,15,8,3,9,13,10,5,0,7,0,4,10,6,13,15,11,1,7,1,4,2,13,9,5,12,6,12,5,0,14,8,10,6,5,7,12,6,15,3,10,3,11,2,2,6,6,5,12,0,2,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"13\", \"15\"], \"clip_start\": 214.0, \"clip_end\": 218.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,9,8,10,3,1,7,7,8,2,10,12,14,4,7,3,4,14,3,9,14,6,12,11,6,13,9,2,0,14,4,1,14,8,13,2,10,9,7,15,12,10,4,13,3,7,11,7,1,15,4,9,0,4,13,8,11,6,11,9,15,1,6,5,2,3,8,1,7,1,2,14,10,1,7,7,10,5,14,14,5,6,11,6,4,2,3,3,3,4,13,11,14,2,9,15,9,4,13,3,0,12,7,11,14,6,7,8,4,0,0,9,15,12,7,0,11,4,2,11,13,3,1,4,8,6,7,14,0,3,8,14,14,8,1,1,6,4,10,10,14,0,10,9,7,8,2,3,9,6,13,10,14,15,6,14,15,8,13,13,7,8,14,2,15,9,12,6,5,6,14,9,11,9,7,9,5,14,8,6,2,13,9,6,7,1,9,11,2,5,15,2,10,8,7,2,11,0,6,0,9,0,10,15,8,3,9,13,10,5,0,7,0,4,10,6,13,15,11,1,7,1,4,2,13,9,5,12,6,12,5,0,14,8,10,6,5,7,12,6,15,3,10,3,11,2,2,6,6,5,12,0,2,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 163.0, \"clip_end\": 167.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,10,7,11,9,1,12,2,9,13,12,5,8,1,0,14,8,13,6,5,10,3,7,6,2,11,1,12,0,6,0,14,1,14,7,11,6,9,6,4,5,1,5,15,3,8,0,11,6,15,1,7,7,8,3,11,1,13,14,1,1,7,10,15,11,15,8,5,11,6,6,11,3,4,3,1,14,10,11,14,0,7,9,14,9,15,10,2,14,13,0,13,15,7,13,8,9,2,14,6,9,1,12,13,14,7,12,8,11,4,9,12,2,8,12,11,2,4,8,15,12,6,0,8,14,12,14,3,1,11,15,10,6,8,13,7,5,6,4,0,9,9,6,2,8,15,5,15,15,3,11,15,6,3,4,12,15,6,5,10,4,2,13,9,5,15,14,1,12,15,15,6,5,3,11,15,3,8,3,5,0,7,5,5,8,3,14,13,2,9,5,11,7,6,11,11,12,2,14,4,6,2,3,2,5,10,6,2,15,13,8,2,8,9,11,3,0,10,2,15,1,12,11,14,4,9,7,0,6,5,3,14,9,4,15,3,1,6,11,3,12,5,14,8,9,7,1,4,9,11,11,5,15,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"6\", \"3\"], \"clip_start\": 151.0, \"clip_end\": 155.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,10,7,11,9,1,12,2,9,13,12,5,8,1,0,14,8,13,6,5,10,3,7,6,2,11,1,12,0,6,0,14,1,14,7,11,6,9,6,4,5,1,5,15,3,8,0,11,6,15,1,7,7,8,3,11,1,13,14,1,1,7,10,15,11,15,8,5,11,6,6,11,3,4,3,1,14,10,11,14,0,7,9,14,9,15,10,2,14,13,0,13,15,7,13,8,9,2,14,6,9,1,12,13,14,7,12,8,11,4,9,12,2,8,12,11,2,4,8,15,12,6,0,8,14,12,14,3,1,11,15,10,6,8,13,7,5,6,4,0,9,9,6,2,8,15,5,15,15,3,11,15,6,3,4,12,15,6,5,10,4,2,13,9,5,15,14,1,12,15,15,6,5,3,11,15,3,8,3,5,0,7,5,5,8,3,14,13,2,9,5,11,7,6,11,11,12,2,14,4,6,2,3,2,5,10,6,2,15,13,8,2,8,9,11,3,0,10,2,15,1,12,11,14,4,9,7,0,6,5,3,14,9,4,15,3,1,6,11,3,12,5,14,8,9,7,1,4,9,11,11,5,15,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 10.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,10,7,11,9,1,12,2,9,13,12,5,8,1,0,14,8,13,6,5,10,3,7,6,2,11,1,12,0,6,0,14,1,14,7,11,6,9,6,4,5,1,5,15,3,8,0,11,6,15,1,7,7,8,3,11,1,13,14,1,1,7,10,15,11,15,8,5,11,6,6,11,3,4,3,1,14,10,11,14,0,7,9,14,9,15,10,2,14,13,0,13,15,7,13,8,9,2,14,6,9,1,12,13,14,7,12,8,11,4,9,12,2,8,12,11,2,4,8,15,12,6,0,8,14,12,14,3,1,11,15,10,6,8,13,7,5,6,4,0,9,9,6,2,8,15,5,15,15,3,11,15,6,3,4,12,15,6,5,10,4,2,13,9,5,15,14,1,12,15,15,6,5,3,11,15,3,8,3,5,0,7,5,5,8,3,14,13,2,9,5,11,7,6,11,11,12,2,14,4,6,2,3,2,5,10,6,2,15,13,8,2,8,9,11,3,0,10,2,15,1,12,11,14,4,9,7,0,6,5,3,14,9,4,15,3,1,6,11,3,12,5,14,8,9,7,1,4,9,11,11,5,15,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"15\", \"3\"], \"clip_start\": 147.0, \"clip_end\": 151.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,10,7,11,9,1,12,2,9,13,12,5,8,1,0,14,8,13,6,5,10,3,7,6,2,11,1,12,0,6,0,14,1,14,7,11,6,9,6,4,5,1,5,15,3,8,0,11,6,15,1,7,7,8,3,11,1,13,14,1,1,7,10,15,11,15,8,5,11,6,6,11,3,4,3,1,14,10,11,14,0,7,9,14,9,15,10,2,14,13,0,13,15,7,13,8,9,2,14,6,9,1,12,13,14,7,12,8,11,4,9,12,2,8,12,11,2,4,8,15,12,6,0,8,14,12,14,3,1,11,15,10,6,8,13,7,5,6,4,0,9,9,6,2,8,15,5,15,15,3,11,15,6,3,4,12,15,6,5,10,4,2,13,9,5,15,14,1,12,15,15,6,5,3,11,15,3,8,3,5,0,7,5,5,8,3,14,13,2,9,5,11,7,6,11,11,12,2,14,4,6,2,3,2,5,10,6,2,15,13,8,2,8,9,11,3,0,10,2,15,1,12,11,14,4,9,7,0,6,5,3,14,9,4,15,3,1,6,11,3,12,5,14,8,9,7,1,4,9,11,11,5,15,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"11\", \"12\"], \"clip_start\": 194.0, \"clip_end\": 198.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,10,7,11,9,1,12,2,9,13,12,5,8,1,0,14,8,13,6,5,10,3,7,6,2,11,1,12,0,6,0,14,1,14,7,11,6,9,6,4,5,1,5,15,3,8,0,11,6,15,1,7,7,8,3,11,1,13,14,1,1,7,10,15,11,15,8,5,11,6,6,11,3,4,3,1,14,10,11,14,0,7,9,14,9,15,10,2,14,13,0,13,15,7,13,8,9,2,14,6,9,1,12,13,14,7,12,8,11,4,9,12,2,8,12,11,2,4,8,15,12,6,0,8,14,12,14,3,1,11,15,10,6,8,13,7,5,6,4,0,9,9,6,2,8,15,5,15,15,3,11,15,6,3,4,12,15,6,5,10,4,2,13,9,5,15,14,1,12,15,15,6,5,3,11,15,3,8,3,5,0,7,5,5,8,3,14,13,2,9,5,11,7,6,11,11,12,2,14,4,6,2,3,2,5,10,6,2,15,13,8,2,8,9,11,3,0,10,2,15,1,12,11,14,4,9,7,0,6,5,3,14,9,4,15,3,1,6,11,3,12,5,14,8,9,7,1,4,9,11,11,5,15,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"8\", \"13\", \"7\"], \"clip_start\": 132.0, \"clip_end\": 137.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,10,7,11,9,1,12,2,9,13,12,5,8,1,0,14,8,13,6,5,10,3,7,6,2,11,1,12,0,6,0,14,1,14,7,11,6,9,6,4,5,1,5,15,3,8,0,11,6,15,1,7,7,8,3,11,1,13,14,1,1,7,10,15,11,15,8,5,11,6,6,11,3,4,3,1,14,10,11,14,0,7,9,14,9,15,10,2,14,13,0,13,15,7,13,8,9,2,14,6,9,1,12,13,14,7,12,8,11,4,9,12,2,8,12,11,2,4,8,15,12,6,0,8,14,12,14,3,1,11,15,10,6,8,13,7,5,6,4,0,9,9,6,2,8,15,5,15,15,3,11,15,6,3,4,12,15,6,5,10,4,2,13,9,5,15,14,1,12,15,15,6,5,3,11,15,3,8,3,5,0,7,5,5,8,3,14,13,2,9,5,11,7,6,11,11,12,2,14,4,6,2,3,2,5,10,6,2,15,13,8,2,8,9,11,3,0,10,2,15,1,12,11,14,4,9,7,0,6,5,3,14,9,4,15,3,1,6,11,3,12,5,14,8,9,7,1,4,9,11,11,5,15,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"0\", \"14\", \"1\"], \"clip_start\": 29.0, \"clip_end\": 34.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,10,7,11,9,1,12,2,9,13,12,5,8,1,0,14,8,13,6,5,10,3,7,6,2,11,1,12,0,6,0,14,1,14,7,11,6,9,6,4,5,1,5,15,3,8,0,11,6,15,1,7,7,8,3,11,1,13,14,1,1,7,10,15,11,15,8,5,11,6,6,11,3,4,3,1,14,10,11,14,0,7,9,14,9,15,10,2,14,13,0,13,15,7,13,8,9,2,14,6,9,1,12,13,14,7,12,8,11,4,9,12,2,8,12,11,2,4,8,15,12,6,0,8,14,12,14,3,1,11,15,10,6,8,13,7,5,6,4,0,9,9,6,2,8,15,5,15,15,3,11,15,6,3,4,12,15,6,5,10,4,2,13,9,5,15,14,1,12,15,15,6,5,3,11,15,3,8,3,5,0,7,5,5,8,3,14,13,2,9,5,11,7,6,11,11,12,2,14,4,6,2,3,2,5,10,6,2,15,13,8,2,8,9,11,3,0,10,2,15,1,12,11,14,4,9,7,0,6,5,3,14,9,4,15,3,1,6,11,3,12,5,14,8,9,7,1,4,9,11,11,5,15,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"8\", \"1\", \"0\", \"14\"], \"clip_start\": 12.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,10,7,11,9,1,12,2,9,13,12,5,8,1,0,14,8,13,6,5,10,3,7,6,2,11,1,12,0,6,0,14,1,14,7,11,6,9,6,4,5,1,5,15,3,8,0,11,6,15,1,7,7,8,3,11,1,13,14,1,1,7,10,15,11,15,8,5,11,6,6,11,3,4,3,1,14,10,11,14,0,7,9,14,9,15,10,2,14,13,0,13,15,7,13,8,9,2,14,6,9,1,12,13,14,7,12,8,11,4,9,12,2,8,12,11,2,4,8,15,12,6,0,8,14,12,14,3,1,11,15,10,6,8,13,7,5,6,4,0,9,9,6,2,8,15,5,15,15,3,11,15,6,3,4,12,15,6,5,10,4,2,13,9,5,15,14,1,12,15,15,6,5,3,11,15,3,8,3,5,0,7,5,5,8,3,14,13,2,9,5,11,7,6,11,11,12,2,14,4,6,2,3,2,5,10,6,2,15,13,8,2,8,9,11,3,0,10,2,15,1,12,11,14,4,9,7,0,6,5,3,14,9,4,15,3,1,6,11,3,12,5,14,8,9,7,1,4,9,11,11,5,15,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"12\", \"11\", \"14\", \"4\"], \"clip_start\": 220.0, \"clip_end\": 226.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,10,7,11,9,1,12,2,9,13,12,5,8,1,0,14,8,13,6,5,10,3,7,6,2,11,1,12,0,6,0,14,1,14,7,11,6,9,6,4,5,1,5,15,3,8,0,11,6,15,1,7,7,8,3,11,1,13,14,1,1,7,10,15,11,15,8,5,11,6,6,11,3,4,3,1,14,10,11,14,0,7,9,14,9,15,10,2,14,13,0,13,15,7,13,8,9,2,14,6,9,1,12,13,14,7,12,8,11,4,9,12,2,8,12,11,2,4,8,15,12,6,0,8,14,12,14,3,1,11,15,10,6,8,13,7,5,6,4,0,9,9,6,2,8,15,5,15,15,3,11,15,6,3,4,12,15,6,5,10,4,2,13,9,5,15,14,1,12,15,15,6,5,3,11,15,3,8,3,5,0,7,5,5,8,3,14,13,2,9,5,11,7,6,11,11,12,2,14,4,6,2,3,2,5,10,6,2,15,13,8,2,8,9,11,3,0,10,2,15,1,12,11,14,4,9,7,0,6,5,3,14,9,4,15,3,1,6,11,3,12,5,14,8,9,7,1,4,9,11,11,5,15,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"3\", \"2\", \"5\"], \"clip_start\": 201.0, \"clip_end\": 206.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,10,7,11,9,1,12,2,9,13,12,5,8,1,0,14,8,13,6,5,10,3,7,6,2,11,1,12,0,6,0,14,1,14,7,11,6,9,6,4,5,1,5,15,3,8,0,11,6,15,1,7,7,8,3,11,1,13,14,1,1,7,10,15,11,15,8,5,11,6,6,11,3,4,3,1,14,10,11,14,0,7,9,14,9,15,10,2,14,13,0,13,15,7,13,8,9,2,14,6,9,1,12,13,14,7,12,8,11,4,9,12,2,8,12,11,2,4,8,15,12,6,0,8,14,12,14,3,1,11,15,10,6,8,13,7,5,6,4,0,9,9,6,2,8,15,5,15,15,3,11,15,6,3,4,12,15,6,5,10,4,2,13,9,5,15,14,1,12,15,15,6,5,3,11,15,3,8,3,5,0,7,5,5,8,3,14,13,2,9,5,11,7,6,11,11,12,2,14,4,6,2,3,2,5,10,6,2,15,13,8,2,8,9,11,3,0,10,2,15,1,12,11,14,4,9,7,0,6,5,3,14,9,4,15,3,1,6,11,3,12,5,14,8,9,7,1,4,9,11,11,5,15,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"12\", \"11\", \"14\"], \"clip_start\": 221.0, \"clip_end\": 225.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,10,7,11,9,1,12,2,9,13,12,5,8,1,0,14,8,13,6,5,10,3,7,6,2,11,1,12,0,6,0,14,1,14,7,11,6,9,6,4,5,1,5,15,3,8,0,11,6,15,1,7,7,8,3,11,1,13,14,1,1,7,10,15,11,15,8,5,11,6,6,11,3,4,3,1,14,10,11,14,0,7,9,14,9,15,10,2,14,13,0,13,15,7,13,8,9,2,14,6,9,1,12,13,14,7,12,8,11,4,9,12,2,8,12,11,2,4,8,15,12,6,0,8,14,12,14,3,1,11,15,10,6,8,13,7,5,6,4,0,9,9,6,2,8,15,5,15,15,3,11,15,6,3,4,12,15,6,5,10,4,2,13,9,5,15,14,1,12,15,15,6,5,3,11,15,3,8,3,5,0,7,5,5,8,3,14,13,2,9,5,11,7,6,11,11,12,2,14,4,6,2,3,2,5,10,6,2,15,13,8,2,8,9,11,3,0,10,2,15,1,12,11,14,4,9,7,0,6,5,3,14,9,4,15,3,1,6,11,3,12,5,14,8,9,7,1,4,9,11,11,5,15,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 11.0, \"clip_end\": 17.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,10,7,11,9,1,12,2,9,13,12,5,8,1,0,14,8,13,6,5,10,3,7,6,2,11,1,12,0,6,0,14,1,14,7,11,6,9,6,4,5,1,5,15,3,8,0,11,6,15,1,7,7,8,3,11,1,13,14,1,1,7,10,15,11,15,8,5,11,6,6,11,3,4,3,1,14,10,11,14,0,7,9,14,9,15,10,2,14,13,0,13,15,7,13,8,9,2,14,6,9,1,12,13,14,7,12,8,11,4,9,12,2,8,12,11,2,4,8,15,12,6,0,8,14,12,14,3,1,11,15,10,6,8,13,7,5,6,4,0,9,9,6,2,8,15,5,15,15,3,11,15,6,3,4,12,15,6,5,10,4,2,13,9,5,15,14,1,12,15,15,6,5,3,11,15,3,8,3,5,0,7,5,5,8,3,14,13,2,9,5,11,7,6,11,11,12,2,14,4,6,2,3,2,5,10,6,2,15,13,8,2,8,9,11,3,0,10,2,15,1,12,11,14,4,9,7,0,6,5,3,14,9,4,15,3,1,6,11,3,12,5,14,8,9,7,1,4,9,11,11,5,15,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"7\", \"0\"], \"clip_start\": 225.0, \"clip_end\": 229.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,10,7,11,9,1,12,2,9,13,12,5,8,1,0,14,8,13,6,5,10,3,7,6,2,11,1,12,0,6,0,14,1,14,7,11,6,9,6,4,5,1,5,15,3,8,0,11,6,15,1,7,7,8,3,11,1,13,14,1,1,7,10,15,11,15,8,5,11,6,6,11,3,4,3,1,14,10,11,14,0,7,9,14,9,15,10,2,14,13,0,13,15,7,13,8,9,2,14,6,9,1,12,13,14,7,12,8,11,4,9,12,2,8,12,11,2,4,8,15,12,6,0,8,14,12,14,3,1,11,15,10,6,8,13,7,5,6,4,0,9,9,6,2,8,15,5,15,15,3,11,15,6,3,4,12,15,6,5,10,4,2,13,9,5,15,14,1,12,15,15,6,5,3,11,15,3,8,3,5,0,7,5,5,8,3,14,13,2,9,5,11,7,6,11,11,12,2,14,4,6,2,3,2,5,10,6,2,15,13,8,2,8,9,11,3,0,10,2,15,1,12,11,14,4,9,7,0,6,5,3,14,9,4,15,3,1,6,11,3,12,5,14,8,9,7,1,4,9,11,11,5,15,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"12\"], \"clip_start\": 238.0, \"clip_end\": 241.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,10,7,11,9,1,12,2,9,13,12,5,8,1,0,14,8,13,6,5,10,3,7,6,2,11,1,12,0,6,0,14,1,14,7,11,6,9,6,4,5,1,5,15,3,8,0,11,6,15,1,7,7,8,3,11,1,13,14,1,1,7,10,15,11,15,8,5,11,6,6,11,3,4,3,1,14,10,11,14,0,7,9,14,9,15,10,2,14,13,0,13,15,7,13,8,9,2,14,6,9,1,12,13,14,7,12,8,11,4,9,12,2,8,12,11,2,4,8,15,12,6,0,8,14,12,14,3,1,11,15,10,6,8,13,7,5,6,4,0,9,9,6,2,8,15,5,15,15,3,11,15,6,3,4,12,15,6,5,10,4,2,13,9,5,15,14,1,12,15,15,6,5,3,11,15,3,8,3,5,0,7,5,5,8,3,14,13,2,9,5,11,7,6,11,11,12,2,14,4,6,2,3,2,5,10,6,2,15,13,8,2,8,9,11,3,0,10,2,15,1,12,11,14,4,9,7,0,6,5,3,14,9,4,15,3,1,6,11,3,12,5,14,8,9,7,1,4,9,11,11,5,15,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"13\", \"8\", \"9\"], \"clip_start\": 93.0, \"clip_end\": 98.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q14_true_sequential.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,10,7,11,9,1,12,2,9,13,12,5,8,1,0,14,8,13,6,5,10,3,7,6,2,11,1,12,0,6,0,14,1,14,7,11,6,9,6,4,5,1,5,15,3,8,0,11,6,15,1,7,7,8,3,11,1,13,14,1,1,7,10,15,11,15,8,5,11,6,6,11,3,4,3,1,14,10,11,14,0,7,9,14,9,15,10,2,14,13,0,13,15,7,13,8,9,2,14,6,9,1,12,13,14,7,12,8,11,4,9,12,2,8,12,11,2,4,8,15,12,6,0,8,14,12,14,3,1,11,15,10,6,8,13,7,5,6,4,0,9,9,6,2,8,15,5,15,15,3,11,15,6,3,4,12,15,6,5,10,4,2,13,9,5,15,14,1,12,15,15,6,5,3,11,15,3,8,3,5,0,7,5,5,8,3,14,13,2,9,5,11,7,6,11,11,12,2,14,4,6,2,3,2,5,10,6,2,15,13,8,2,8,9,11,3,0,10,2,15,1,12,11,14,4,9,7,0,6,5,3,14,9,4,15,3,1,6,11,3,12,5,14,8,9,7,1,4,9,11,11,5,15,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L256_NO_RULES", "source_split": "substream_video", "length_L": 256, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\", \"11\", \"6\"], \"clip_start\": 45.0, \"clip_end\": 50.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q15_true_spatial.mp4", "video_path": "videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,10,7,11,9,1,12,2,9,13,12,5,8,1,0,14,8,13,6,5,10,3,7,6,2,11,1,12,0,6,0,14,1,14,7,11,6,9,6,4,5,1,5,15,3,8,0,11,6,15,1,7,7,8,3,11,1,13,14,1,1,7,10,15,11,15,8,5,11,6,6,11,3,4,3,1,14,10,11,14,0,7,9,14,9,15,10,2,14,13,0,13,15,7,13,8,9,2,14,6,9,1,12,13,14,7,12,8,11,4,9,12,2,8,12,11,2,4,8,15,12,6,0,8,14,12,14,3,1,11,15,10,6,8,13,7,5,6,4,0,9,9,6,2,8,15,5,15,15,3,11,15,6,3,4,12,15,6,5,10,4,2,13,9,5,15,14,1,12,15,15,6,5,3,11,15,3,8,3,5,0,7,5,5,8,3,14,13,2,9,5,11,7,6,11,11,12,2,14,4,6,2,3,2,5,10,6,2,15,13,8,2,8,9,11,3,0,10,2,15,1,12,11,14,4,9,7,0,6,5,3,14,9,4,15,3,1,6,11,3,12,5,14,8,9,7,1,4,9,11,11,5,15,7,9", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 503.0, \"clip_end\": 509.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,2,5,7,3,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,11,3,12,14,13,11,14,15,15,13,11,14,15,15,13,11,14,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,0,2,7,12,10,11,13,11,7,12,4,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,12,3,12,6,12,15,10,13,11,14,15,15,13,1,12,10,11,13,11,14,15,15,13,11,14,15,15,13,9,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,0,14,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,14,13,11,14,15,15,13,11,14,15,15,13,9,9,2,8,1,12,10,11,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,3,12,14,13,11,14,15,15,13,8,0,0,5,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,9,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"14\"], \"clip_start\": 441.0, \"clip_end\": 445.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,2,5,7,3,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,11,3,12,14,13,11,14,15,15,13,11,14,15,15,13,11,14,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,0,2,7,12,10,11,13,11,7,12,4,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,12,3,12,6,12,15,10,13,11,14,15,15,13,1,12,10,11,13,11,14,15,15,13,11,14,15,15,13,9,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,0,14,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,14,13,11,14,15,15,13,11,14,15,15,13,9,9,2,8,1,12,10,11,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,3,12,14,13,11,14,15,15,13,8,0,0,5,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,9,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"11\", \"14\"], \"clip_start\": 19.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,2,5,7,3,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,11,3,12,14,13,11,14,15,15,13,11,14,15,15,13,11,14,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,0,2,7,12,10,11,13,11,7,12,4,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,12,3,12,6,12,15,10,13,11,14,15,15,13,1,12,10,11,13,11,14,15,15,13,11,14,15,15,13,9,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,0,14,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,14,13,11,14,15,15,13,11,14,15,15,13,9,9,2,8,1,12,10,11,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,3,12,14,13,11,14,15,15,13,8,0,0,5,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,9,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"15\", \"10\", \"13\", \"11\"], \"clip_start\": 338.0, \"clip_end\": 344.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q3_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,2,5,7,3,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,11,3,12,14,13,11,14,15,15,13,11,14,15,15,13,11,14,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,0,2,7,12,10,11,13,11,7,12,4,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,12,3,12,6,12,15,10,13,11,14,15,15,13,1,12,10,11,13,11,14,15,15,13,11,14,15,15,13,9,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,0,14,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,14,13,11,14,15,15,13,11,14,15,15,13,9,9,2,8,1,12,10,11,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,3,12,14,13,11,14,15,15,13,8,0,0,5,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,9,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"15\", \"13\"], \"clip_start\": 154.0, \"clip_end\": 158.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,2,5,7,3,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,11,3,12,14,13,11,14,15,15,13,11,14,15,15,13,11,14,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,0,2,7,12,10,11,13,11,7,12,4,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,12,3,12,6,12,15,10,13,11,14,15,15,13,1,12,10,11,13,11,14,15,15,13,11,14,15,15,13,9,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,0,14,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,14,13,11,14,15,15,13,11,14,15,15,13,9,9,2,8,1,12,10,11,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,3,12,14,13,11,14,15,15,13,8,0,0,5,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,9,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"15\", \"10\", \"13\", \"11\"], \"clip_start\": 123.0, \"clip_end\": 129.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,2,5,7,3,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,11,3,12,14,13,11,14,15,15,13,11,14,15,15,13,11,14,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,0,2,7,12,10,11,13,11,7,12,4,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,12,3,12,6,12,15,10,13,11,14,15,15,13,1,12,10,11,13,11,14,15,15,13,11,14,15,15,13,9,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,0,14,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,14,13,11,14,15,15,13,11,14,15,15,13,9,9,2,8,1,12,10,11,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,3,12,14,13,11,14,15,15,13,8,0,0,5,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,9,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"13\", \"8\", \"0\", \"0\"], \"clip_start\": 460.0, \"clip_end\": 466.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,2,5,7,3,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,11,3,12,14,13,11,14,15,15,13,11,14,15,15,13,11,14,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,0,2,7,12,10,11,13,11,7,12,4,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,12,3,12,6,12,15,10,13,11,14,15,15,13,1,12,10,11,13,11,14,15,15,13,11,14,15,15,13,9,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,0,14,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,14,13,11,14,15,15,13,11,14,15,15,13,9,9,2,8,1,12,10,11,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,3,12,14,13,11,14,15,15,13,8,0,0,5,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,9,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"5\"], \"clip_start\": 429.0, \"clip_end\": 433.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,2,5,7,3,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,11,3,12,14,13,11,14,15,15,13,11,14,15,15,13,11,14,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,0,2,7,12,10,11,13,11,7,12,4,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,12,3,12,6,12,15,10,13,11,14,15,15,13,1,12,10,11,13,11,14,15,15,13,11,14,15,15,13,9,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,0,14,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,14,13,11,14,15,15,13,11,14,15,15,13,9,9,2,8,1,12,10,11,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,3,12,14,13,11,14,15,15,13,8,0,0,5,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,9,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"15\"], \"clip_start\": 236.0, \"clip_end\": 239.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,2,5,7,3,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,11,3,12,14,13,11,14,15,15,13,11,14,15,15,13,11,14,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,0,2,7,12,10,11,13,11,7,12,4,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,12,3,12,6,12,15,10,13,11,14,15,15,13,1,12,10,11,13,11,14,15,15,13,11,14,15,15,13,9,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,0,14,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,14,13,11,14,15,15,13,11,14,15,15,13,9,9,2,8,1,12,10,11,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,3,12,14,13,11,14,15,15,13,8,0,0,5,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,9,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"7\"], \"clip_start\": 374.0, \"clip_end\": 377.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,2,5,7,3,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,11,3,12,14,13,11,14,15,15,13,11,14,15,15,13,11,14,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,0,2,7,12,10,11,13,11,7,12,4,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,12,3,12,6,12,15,10,13,11,14,15,15,13,1,12,10,11,13,11,14,15,15,13,11,14,15,15,13,9,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,0,14,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,14,13,11,14,15,15,13,11,14,15,15,13,9,9,2,8,1,12,10,11,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,3,12,14,13,11,14,15,15,13,8,0,0,5,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,9,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"11\", \"14\", \"10\", \"13\"], \"clip_start\": 65.0, \"clip_end\": 70.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,2,5,7,3,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,11,3,12,14,13,11,14,15,15,13,11,14,15,15,13,11,14,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,0,2,7,12,10,11,13,11,7,12,4,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,12,3,12,6,12,15,10,13,11,14,15,15,13,1,12,10,11,13,11,14,15,15,13,11,14,15,15,13,9,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,0,14,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,14,13,11,14,15,15,13,11,14,15,15,13,9,9,2,8,1,12,10,11,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,3,12,14,13,11,14,15,15,13,8,0,0,5,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,9,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"11\", \"13\", \"11\", \"14\", \"15\"], \"clip_start\": 31.0, \"clip_end\": 37.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,2,5,7,3,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,11,3,12,14,13,11,14,15,15,13,11,14,15,15,13,11,14,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,0,2,7,12,10,11,13,11,7,12,4,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,12,3,12,6,12,15,10,13,11,14,15,15,13,1,12,10,11,13,11,14,15,15,13,11,14,15,15,13,9,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,0,14,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,14,13,11,14,15,15,13,11,14,15,15,13,9,9,2,8,1,12,10,11,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,3,12,14,13,11,14,15,15,13,8,0,0,5,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,9,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"13\", \"11\"], \"clip_start\": 77.0, \"clip_end\": 81.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q12_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,2,5,7,3,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,11,3,12,14,13,11,14,15,15,13,11,14,15,15,13,11,14,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,0,2,7,12,10,11,13,11,7,12,4,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,12,3,12,6,12,15,10,13,11,14,15,15,13,1,12,10,11,13,11,14,15,15,13,11,14,15,15,13,9,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,0,14,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,14,13,11,14,15,15,13,11,14,15,15,13,9,9,2,8,1,12,10,11,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,3,12,14,13,11,14,15,15,13,8,0,0,5,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,9,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"10\", \"13\", \"11\", \"14\", \"15\"], \"clip_start\": 67.0, \"clip_end\": 73.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q13_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,2,5,7,3,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,11,3,12,14,13,11,14,15,15,13,11,14,15,15,13,11,14,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,0,2,7,12,10,11,13,11,7,12,4,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,12,3,12,6,12,15,10,13,11,14,15,15,13,1,12,10,11,13,11,14,15,15,13,11,14,15,15,13,9,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,0,14,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,14,13,11,14,15,15,13,11,14,15,15,13,9,9,2,8,1,12,10,11,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,3,12,14,13,11,14,15,15,13,8,0,0,5,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,9,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"11\", \"15\", \"3\"], \"clip_start\": 482.0, \"clip_end\": 487.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q14_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,2,5,7,3,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,11,3,12,14,13,11,14,15,15,13,11,14,15,15,13,11,14,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,0,2,7,12,10,11,13,11,7,12,4,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,12,3,12,6,12,15,10,13,11,14,15,15,13,1,12,10,11,13,11,14,15,15,13,11,14,15,15,13,9,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,0,14,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,14,13,11,14,15,15,13,11,14,15,15,13,9,9,2,8,1,12,10,11,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,3,12,14,13,11,14,15,15,13,8,0,0,5,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,9,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"14\", \"15\", \"15\"], \"clip_start\": 471.0, \"clip_end\": 477.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q15_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,10,6,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,2,5,7,3,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,11,3,12,14,13,11,14,15,15,13,11,14,15,15,13,11,14,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,0,2,7,12,10,11,13,11,7,12,4,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,12,3,12,6,12,15,10,13,11,14,15,15,13,1,12,10,11,13,11,14,15,15,13,11,14,15,15,13,9,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,0,14,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,14,13,11,14,15,15,13,11,14,15,15,13,9,9,2,8,1,12,10,11,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,6,12,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,12,10,11,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,3,12,14,13,11,14,15,15,13,8,0,0,5,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,9,9,15,10,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15,13,11,14,15,15", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"10\", \"8\", \"10\", \"8\"], \"clip_start\": 216.0, \"clip_end\": 221.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,14,1,10,8,11,12,14,9,5,2,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,12,2,1,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,14,3,8,7,11,12,3,8,7,14,11,12,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,9,0,14,14,3,8,7,4,6,13,4,4,10,8,9,10,8,10,8,1,10,15,10,6,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,7,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"10\", \"8\", \"10\", \"8\"], \"clip_start\": 155.0, \"clip_end\": 161.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,14,1,10,8,11,12,14,9,5,2,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,12,2,1,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,14,3,8,7,11,12,3,8,7,14,11,12,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,9,0,14,14,3,8,7,4,6,13,4,4,10,8,9,10,8,10,8,1,10,15,10,6,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,7,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 494.0, \"clip_end\": 500.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,14,1,10,8,11,12,14,9,5,2,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,12,2,1,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,14,3,8,7,11,12,3,8,7,14,11,12,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,9,0,14,14,3,8,7,4,6,13,4,4,10,8,9,10,8,10,8,1,10,15,10,6,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,7,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"10\", \"8\", \"10\", \"8\", \"9\"], \"clip_start\": 394.0, \"clip_end\": 400.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,14,1,10,8,11,12,14,9,5,2,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,12,2,1,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,14,3,8,7,11,12,3,8,7,14,11,12,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,9,0,14,14,3,8,7,4,6,13,4,4,10,8,9,10,8,10,8,1,10,15,10,6,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,7,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"9\", \"10\", \"8\", \"10\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,14,1,10,8,11,12,14,9,5,2,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,12,2,1,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,14,3,8,7,11,12,3,8,7,14,11,12,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,9,0,14,14,3,8,7,4,6,13,4,4,10,8,9,10,8,10,8,1,10,15,10,6,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,7,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"10\", \"8\"], \"clip_start\": 317.0, \"clip_end\": 321.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,14,1,10,8,11,12,14,9,5,2,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,12,2,1,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,14,3,8,7,11,12,3,8,7,14,11,12,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,9,0,14,14,3,8,7,4,6,13,4,4,10,8,9,10,8,10,8,1,10,15,10,6,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,7,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"10\", \"8\"], \"clip_start\": 480.0, \"clip_end\": 484.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,14,1,10,8,11,12,14,9,5,2,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,12,2,1,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,14,3,8,7,11,12,3,8,7,14,11,12,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,9,0,14,14,3,8,7,4,6,13,4,4,10,8,9,10,8,10,8,1,10,15,10,6,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,7,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 165.0, \"clip_end\": 171.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,14,1,10,8,11,12,14,9,5,2,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,12,2,1,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,14,3,8,7,11,12,3,8,7,14,11,12,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,9,0,14,14,3,8,7,4,6,13,4,4,10,8,9,10,8,10,8,1,10,15,10,6,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,7,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 391.0, \"clip_end\": 395.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,14,1,10,8,11,12,14,9,5,2,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,12,2,1,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,14,3,8,7,11,12,3,8,7,14,11,12,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,9,0,14,14,3,8,7,4,6,13,4,4,10,8,9,10,8,10,8,1,10,15,10,6,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,7,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"10\", \"8\", \"9\", \"10\"], \"clip_start\": 178.0, \"clip_end\": 183.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,14,1,10,8,11,12,14,9,5,2,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,12,2,1,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,14,3,8,7,11,12,3,8,7,14,11,12,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,9,0,14,14,3,8,7,4,6,13,4,4,10,8,9,10,8,10,8,1,10,15,10,6,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,7,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"9\", \"10\", \"8\", \"10\"], \"clip_start\": 129.0, \"clip_end\": 135.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,14,1,10,8,11,12,14,9,5,2,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,12,2,1,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,14,3,8,7,11,12,3,8,7,14,11,12,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,9,0,14,14,3,8,7,4,6,13,4,4,10,8,9,10,8,10,8,1,10,15,10,6,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,7,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 29.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q11_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,14,1,10,8,11,12,14,9,5,2,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,12,2,1,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,14,3,8,7,11,12,3,8,7,14,11,12,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,9,0,14,14,3,8,7,4,6,13,4,4,10,8,9,10,8,10,8,1,10,15,10,6,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,7,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"10\", \"8\", \"9\"], \"clip_start\": 400.0, \"clip_end\": 405.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,14,1,10,8,11,12,14,9,5,2,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,12,2,1,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,14,3,8,7,11,12,3,8,7,14,11,12,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,9,0,14,14,3,8,7,4,6,13,4,4,10,8,9,10,8,10,8,1,10,15,10,6,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,7,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"10\", \"9\", \"0\"], \"clip_start\": 441.0, \"clip_end\": 445.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q13_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,14,1,10,8,11,12,14,9,5,2,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,12,2,1,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,14,3,8,7,11,12,3,8,7,14,11,12,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,9,0,14,14,3,8,7,4,6,13,4,4,10,8,9,10,8,10,8,1,10,15,10,6,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,7,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"12\"], \"clip_start\": 120.0, \"clip_end\": 124.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,14,1,10,8,11,12,14,9,5,2,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,12,2,1,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,14,3,8,7,11,12,3,8,7,14,11,12,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,9,0,14,14,3,8,7,4,6,13,4,4,10,8,9,10,8,10,8,1,10,15,10,6,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,7,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"10\", \"8\", \"10\", \"8\"], \"clip_start\": 265.0, \"clip_end\": 271.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q15_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,14,1,10,8,11,12,14,9,5,2,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,12,2,1,14,0,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,0,14,14,3,8,7,11,12,3,8,7,14,11,12,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,9,0,14,14,3,8,7,4,6,13,4,4,10,8,9,10,8,10,8,1,10,15,10,6,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,1,14,13,10,13,10,10,8,9,10,8,10,8,9,10,8,10,8,9,10,8,10,8,9,10,7,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"15\", \"7\", \"14\", \"3\"], \"clip_start\": 110.0, \"clip_end\": 116.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,0,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,10,7,15,7,13,3,2,3,15,7,0,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,0,11,10,13,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,11,14,15,7,15,7,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,1,8,12,8,0,4,14,12,7,15,7,7,14,3,3,10,13,7,15,7,13,3,2,4,5,2,0,11,2,11,10,13,14,6,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,9,14,0,12,9,14,10,13,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,0,12,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,8,12,9,14,0,1,8,12,15,8,12,15,12,9,14,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,13,3,12,10,10,10,7,15,7,7,15,7,7,15,7,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"7\", \"14\", \"3\"], \"clip_start\": 298.0, \"clip_end\": 303.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,0,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,10,7,15,7,13,3,2,3,15,7,0,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,0,11,10,13,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,11,14,15,7,15,7,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,1,8,12,8,0,4,14,12,7,15,7,7,14,3,3,10,13,7,15,7,13,3,2,4,5,2,0,11,2,11,10,13,14,6,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,9,14,0,12,9,14,10,13,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,0,12,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,8,12,9,14,0,1,8,12,15,8,12,15,12,9,14,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,13,3,12,10,10,10,7,15,7,7,15,7,7,15,7,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"3\", \"2\", \"3\", \"15\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,0,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,10,7,15,7,13,3,2,3,15,7,0,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,0,11,10,13,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,11,14,15,7,15,7,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,1,8,12,8,0,4,14,12,7,15,7,7,14,3,3,10,13,7,15,7,13,3,2,4,5,2,0,11,2,11,10,13,14,6,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,9,14,0,12,9,14,10,13,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,0,12,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,8,12,9,14,0,1,8,12,15,8,12,15,12,9,14,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,13,3,12,10,10,10,7,15,7,7,15,7,7,15,7,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"3\", \"15\", \"7\"], \"clip_start\": 472.0, \"clip_end\": 477.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,0,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,10,7,15,7,13,3,2,3,15,7,0,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,0,11,10,13,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,11,14,15,7,15,7,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,1,8,12,8,0,4,14,12,7,15,7,7,14,3,3,10,13,7,15,7,13,3,2,4,5,2,0,11,2,11,10,13,14,6,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,9,14,0,12,9,14,10,13,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,0,12,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,8,12,9,14,0,1,8,12,15,8,12,15,12,9,14,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,13,3,12,10,10,10,7,15,7,7,15,7,7,15,7,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"14\", \"3\"], \"clip_start\": 346.0, \"clip_end\": 350.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,0,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,10,7,15,7,13,3,2,3,15,7,0,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,0,11,10,13,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,11,14,15,7,15,7,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,1,8,12,8,0,4,14,12,7,15,7,7,14,3,3,10,13,7,15,7,13,3,2,4,5,2,0,11,2,11,10,13,14,6,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,9,14,0,12,9,14,10,13,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,0,12,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,8,12,9,14,0,1,8,12,15,8,12,15,12,9,14,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,13,3,12,10,10,10,7,15,7,7,15,7,7,15,7,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"7\", \"14\", \"3\"], \"clip_start\": 66.0, \"clip_end\": 71.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,0,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,10,7,15,7,13,3,2,3,15,7,0,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,0,11,10,13,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,11,14,15,7,15,7,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,1,8,12,8,0,4,14,12,7,15,7,7,14,3,3,10,13,7,15,7,13,3,2,4,5,2,0,11,2,11,10,13,14,6,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,9,14,0,12,9,14,10,13,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,0,12,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,8,12,9,14,0,1,8,12,15,8,12,15,12,9,14,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,13,3,12,10,10,10,7,15,7,7,15,7,7,15,7,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"13\", \"3\", \"12\", \"10\"], \"clip_start\": 232.0, \"clip_end\": 238.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,0,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,10,7,15,7,13,3,2,3,15,7,0,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,0,11,10,13,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,11,14,15,7,15,7,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,1,8,12,8,0,4,14,12,7,15,7,7,14,3,3,10,13,7,15,7,13,3,2,4,5,2,0,11,2,11,10,13,14,6,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,9,14,0,12,9,14,10,13,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,0,12,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,8,12,9,14,0,1,8,12,15,8,12,15,12,9,14,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,13,3,12,10,10,10,7,15,7,7,15,7,7,15,7,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"7\", \"14\", \"3\", \"3\"], \"clip_start\": 444.0, \"clip_end\": 450.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,0,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,10,7,15,7,13,3,2,3,15,7,0,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,0,11,10,13,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,11,14,15,7,15,7,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,1,8,12,8,0,4,14,12,7,15,7,7,14,3,3,10,13,7,15,7,13,3,2,4,5,2,0,11,2,11,10,13,14,6,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,9,14,0,12,9,14,10,13,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,0,12,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,8,12,9,14,0,1,8,12,15,8,12,15,12,9,14,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,13,3,12,10,10,10,7,15,7,7,15,7,7,15,7,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"4\", \"13\", \"14\", \"0\"], \"clip_start\": 58.0, \"clip_end\": 63.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q8_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,0,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,10,7,15,7,13,3,2,3,15,7,0,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,0,11,10,13,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,11,14,15,7,15,7,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,1,8,12,8,0,4,14,12,7,15,7,7,14,3,3,10,13,7,15,7,13,3,2,4,5,2,0,11,2,11,10,13,14,6,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,9,14,0,12,9,14,10,13,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,0,12,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,8,12,9,14,0,1,8,12,15,8,12,15,12,9,14,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,13,3,12,10,10,10,7,15,7,7,15,7,7,15,7,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"3\", \"15\"], \"clip_start\": 338.0, \"clip_end\": 342.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,0,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,10,7,15,7,13,3,2,3,15,7,0,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,0,11,10,13,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,11,14,15,7,15,7,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,1,8,12,8,0,4,14,12,7,15,7,7,14,3,3,10,13,7,15,7,13,3,2,4,5,2,0,11,2,11,10,13,14,6,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,9,14,0,12,9,14,10,13,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,0,12,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,8,12,9,14,0,1,8,12,15,8,12,15,12,9,14,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,13,3,12,10,10,10,7,15,7,7,15,7,7,15,7,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"3\", \"3\", \"15\"], \"clip_start\": 270.0, \"clip_end\": 275.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q10_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,0,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,10,7,15,7,13,3,2,3,15,7,0,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,0,11,10,13,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,11,14,15,7,15,7,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,1,8,12,8,0,4,14,12,7,15,7,7,14,3,3,10,13,7,15,7,13,3,2,4,5,2,0,11,2,11,10,13,14,6,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,9,14,0,12,9,14,10,13,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,0,12,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,8,12,9,14,0,1,8,12,15,8,12,15,12,9,14,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,13,3,12,10,10,10,7,15,7,7,15,7,7,15,7,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"3\"], \"clip_start\": 44.0, \"clip_end\": 47.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,0,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,10,7,15,7,13,3,2,3,15,7,0,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,0,11,10,13,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,11,14,15,7,15,7,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,1,8,12,8,0,4,14,12,7,15,7,7,14,3,3,10,13,7,15,7,13,3,2,4,5,2,0,11,2,11,10,13,14,6,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,9,14,0,12,9,14,10,13,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,0,12,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,8,12,9,14,0,1,8,12,15,8,12,15,12,9,14,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,13,3,12,10,10,10,7,15,7,7,15,7,7,15,7,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"11\", \"6\", \"10\", \"12\"], \"clip_start\": 433.0, \"clip_end\": 438.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,0,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,10,7,15,7,13,3,2,3,15,7,0,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,0,11,10,13,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,11,14,15,7,15,7,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,1,8,12,8,0,4,14,12,7,15,7,7,14,3,3,10,13,7,15,7,13,3,2,4,5,2,0,11,2,11,10,13,14,6,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,9,14,0,12,9,14,10,13,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,0,12,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,8,12,9,14,0,1,8,12,15,8,12,15,12,9,14,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,13,3,12,10,10,10,7,15,7,7,15,7,7,15,7,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"13\", \"14\", \"6\", \"0\"], \"clip_start\": 38.0, \"clip_end\": 44.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q13_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,0,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,10,7,15,7,13,3,2,3,15,7,0,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,0,11,10,13,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,11,14,15,7,15,7,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,1,8,12,8,0,4,14,12,7,15,7,7,14,3,3,10,13,7,15,7,13,3,2,4,5,2,0,11,2,11,10,13,14,6,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,9,14,0,12,9,14,10,13,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,0,12,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,8,12,9,14,0,1,8,12,15,8,12,15,12,9,14,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,13,3,12,10,10,10,7,15,7,7,15,7,7,15,7,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"7\", \"12\", \"2\", \"7\", \"7\"], \"clip_start\": 10.0, \"clip_end\": 16.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q14_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,0,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,10,7,15,7,13,3,2,3,15,7,0,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,0,11,10,13,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,11,14,15,7,15,7,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,1,8,12,8,0,4,14,12,7,15,7,7,14,3,3,10,13,7,15,7,13,3,2,4,5,2,0,11,2,11,10,13,14,6,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,9,14,0,12,9,14,10,13,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,0,12,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,8,12,9,14,0,1,8,12,15,8,12,15,12,9,14,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,13,3,12,10,10,10,7,15,7,7,15,7,7,15,7,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"3\", \"15\"], \"clip_start\": 447.0, \"clip_end\": 451.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,0,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,10,7,15,7,13,3,2,3,15,7,0,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,0,11,10,13,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,11,14,15,7,15,7,13,3,0,11,2,11,10,13,14,6,0,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,1,8,12,8,0,4,14,12,7,15,7,7,14,3,3,10,13,7,15,7,13,3,2,4,5,2,0,11,2,11,10,13,14,6,13,3,2,3,15,7,0,13,3,2,3,15,7,0,13,3,12,10,10,9,14,0,12,9,14,10,13,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,0,12,10,13,7,15,7,13,3,2,3,15,7,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,8,12,9,14,0,1,8,12,15,8,12,15,12,9,14,0,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,13,3,12,10,10,10,7,15,7,7,15,7,7,15,7,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,15,7,14,3,3,13,3,12,10,10,10,7,14,3,3,15,7,14,3,3,15,7,14,3,5,2,0", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"2\", \"9\", \"9\", \"5\"], \"clip_start\": 349.0, \"clip_end\": 355.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,12,2,10,15,6,5,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,11,1,11,6,14,5,4,2,2,9,9,5,4,2,2,9,9,5,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,10,15,6,9,5,5,10,15,6,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,1,11,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,11,5,12,2,10,15,9,5,9,5,5,2,12,6,14,5,14,4,15,9,5,9,5,0,11,1,7,13,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,14,3,9,5,4,2,2,9,9,5,4,2,2,3,12,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,1,11,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,1,11,3,0,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"2\", \"9\", \"9\", \"5\"], \"clip_start\": 321.0, \"clip_end\": 326.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,12,2,10,15,6,5,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,11,1,11,6,14,5,4,2,2,9,9,5,4,2,2,9,9,5,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,10,15,6,9,5,5,10,15,6,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,1,11,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,11,5,12,2,10,15,9,5,9,5,5,2,12,6,14,5,14,4,15,9,5,9,5,0,11,1,7,13,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,14,3,9,5,4,2,2,9,9,5,4,2,2,3,12,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,1,11,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,1,11,3,0,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"2\", \"9\", \"9\"], \"clip_start\": 472.0, \"clip_end\": 477.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,12,2,10,15,6,5,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,11,1,11,6,14,5,4,2,2,9,9,5,4,2,2,9,9,5,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,10,15,6,9,5,5,10,15,6,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,1,11,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,11,5,12,2,10,15,9,5,9,5,5,2,12,6,14,5,14,4,15,9,5,9,5,0,11,1,7,13,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,14,3,9,5,4,2,2,9,9,5,4,2,2,3,12,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,1,11,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,1,11,3,0,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"2\", \"2\", \"9\"], \"clip_start\": 61.0, \"clip_end\": 66.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,12,2,10,15,6,5,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,11,1,11,6,14,5,4,2,2,9,9,5,4,2,2,9,9,5,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,10,15,6,9,5,5,10,15,6,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,1,11,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,11,5,12,2,10,15,9,5,9,5,5,2,12,6,14,5,14,4,15,9,5,9,5,0,11,1,7,13,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,14,3,9,5,4,2,2,9,9,5,4,2,2,3,12,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,1,11,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,1,11,3,0,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"11\"], \"clip_start\": 70.0, \"clip_end\": 73.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,12,2,10,15,6,5,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,11,1,11,6,14,5,4,2,2,9,9,5,4,2,2,9,9,5,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,10,15,6,9,5,5,10,15,6,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,1,11,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,11,5,12,2,10,15,9,5,9,5,5,2,12,6,14,5,14,4,15,9,5,9,5,0,11,1,7,13,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,14,3,9,5,4,2,2,9,9,5,4,2,2,3,12,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,1,11,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,1,11,3,0,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"9\", \"5\", \"4\", \"2\", \"2\"], \"clip_start\": 367.0, \"clip_end\": 373.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,12,2,10,15,6,5,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,11,1,11,6,14,5,4,2,2,9,9,5,4,2,2,9,9,5,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,10,15,6,9,5,5,10,15,6,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,1,11,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,11,5,12,2,10,15,9,5,9,5,5,2,12,6,14,5,14,4,15,9,5,9,5,0,11,1,7,13,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,14,3,9,5,4,2,2,9,9,5,4,2,2,3,12,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,1,11,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,1,11,3,0,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 266.0, \"clip_end\": 269.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,12,2,10,15,6,5,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,11,1,11,6,14,5,4,2,2,9,9,5,4,2,2,9,9,5,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,10,15,6,9,5,5,10,15,6,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,1,11,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,11,5,12,2,10,15,9,5,9,5,5,2,12,6,14,5,14,4,15,9,5,9,5,0,11,1,7,13,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,14,3,9,5,4,2,2,9,9,5,4,2,2,3,12,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,1,11,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,1,11,3,0,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"2\", \"9\", \"9\", \"5\", \"4\"], \"clip_start\": 126.0, \"clip_end\": 132.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,12,2,10,15,6,5,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,11,1,11,6,14,5,4,2,2,9,9,5,4,2,2,9,9,5,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,10,15,6,9,5,5,10,15,6,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,1,11,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,11,5,12,2,10,15,9,5,9,5,5,2,12,6,14,5,14,4,15,9,5,9,5,0,11,1,7,13,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,14,3,9,5,4,2,2,9,9,5,4,2,2,3,12,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,1,11,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,1,11,3,0,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"9\", \"5\", \"4\"], \"clip_start\": 404.0, \"clip_end\": 408.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,12,2,10,15,6,5,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,11,1,11,6,14,5,4,2,2,9,9,5,4,2,2,9,9,5,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,10,15,6,9,5,5,10,15,6,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,1,11,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,11,5,12,2,10,15,9,5,9,5,5,2,12,6,14,5,14,4,15,9,5,9,5,0,11,1,7,13,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,14,3,9,5,4,2,2,9,9,5,4,2,2,3,12,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,1,11,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,1,11,3,0,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"2\", \"2\"], \"clip_start\": 118.0, \"clip_end\": 122.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,12,2,10,15,6,5,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,11,1,11,6,14,5,4,2,2,9,9,5,4,2,2,9,9,5,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,10,15,6,9,5,5,10,15,6,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,1,11,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,11,5,12,2,10,15,9,5,9,5,5,2,12,6,14,5,14,4,15,9,5,9,5,0,11,1,7,13,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,14,3,9,5,4,2,2,9,9,5,4,2,2,3,12,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,1,11,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,1,11,3,0,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"2\", \"9\", \"1\"], \"clip_start\": 479.0, \"clip_end\": 483.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,12,2,10,15,6,5,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,11,1,11,6,14,5,4,2,2,9,9,5,4,2,2,9,9,5,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,10,15,6,9,5,5,10,15,6,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,1,11,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,11,5,12,2,10,15,9,5,9,5,5,2,12,6,14,5,14,4,15,9,5,9,5,0,11,1,7,13,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,14,3,9,5,4,2,2,9,9,5,4,2,2,3,12,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,1,11,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,1,11,3,0,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 34.0, \"clip_end\": 40.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,12,2,10,15,6,5,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,11,1,11,6,14,5,4,2,2,9,9,5,4,2,2,9,9,5,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,10,15,6,9,5,5,10,15,6,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,1,11,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,11,5,12,2,10,15,9,5,9,5,5,2,12,6,14,5,14,4,15,9,5,9,5,0,11,1,7,13,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,14,3,9,5,4,2,2,9,9,5,4,2,2,3,12,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,1,11,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,1,11,3,0,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"2\", \"10\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,12,2,10,15,6,5,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,11,1,11,6,14,5,4,2,2,9,9,5,4,2,2,9,9,5,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,10,15,6,9,5,5,10,15,6,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,1,11,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,11,5,12,2,10,15,9,5,9,5,5,2,12,6,14,5,14,4,15,9,5,9,5,0,11,1,7,13,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,14,3,9,5,4,2,2,9,9,5,4,2,2,3,12,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,1,11,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,1,11,3,0,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 504.0, \"clip_end\": 507.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,12,2,10,15,6,5,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,11,1,11,6,14,5,4,2,2,9,9,5,4,2,2,9,9,5,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,10,15,6,9,5,5,10,15,6,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,1,11,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,11,5,12,2,10,15,9,5,9,5,5,2,12,6,14,5,14,4,15,9,5,9,5,0,11,1,7,13,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,14,3,9,5,4,2,2,9,9,5,4,2,2,3,12,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,1,11,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,1,11,3,0,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"2\", \"2\"], \"clip_start\": 494.0, \"clip_end\": 498.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,12,2,10,15,6,5,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,11,1,11,6,14,5,4,2,2,9,9,5,4,2,2,9,9,5,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,10,15,6,9,5,5,10,15,6,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,1,11,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,11,5,12,2,10,15,9,5,9,5,5,2,12,6,14,5,14,4,15,9,5,9,5,0,11,1,7,13,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,14,3,9,5,4,2,2,9,9,5,4,2,2,3,12,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,1,11,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,1,11,3,0,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 160.0, \"clip_end\": 166.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,12,2,10,15,6,5,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,11,1,11,6,14,5,4,2,2,9,9,5,4,2,2,9,9,5,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,13,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,10,15,6,9,5,5,10,15,6,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,1,11,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,11,5,12,2,10,15,9,5,9,5,5,2,12,6,14,5,14,4,15,9,5,9,5,0,11,1,7,13,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,2,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,13,4,9,5,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,4,9,5,5,4,2,2,9,9,5,14,3,9,5,4,2,2,9,9,5,4,2,2,3,12,6,14,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,1,11,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,1,11,3,0,3,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9,5,4,2,2,9,9", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"6\", \"10\", \"12\", \"4\"], \"clip_start\": 220.0, \"clip_end\": 226.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,3,4,13,10,5,1,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,5,1,9,12,12,5,8,0,0,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,10,12,4,3,6,15,2,14,14,3,8,8,0,0,8,6,11,2,14,14,3,8,8,0,0,8,6,6,10,7,3,4,4,7,10,13,2,15,5,14,3,15,14,3,15,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,2,14,14,3,8,8,13,11,10,11,3,4,4,3,14,3,15,3,11,11,4,3,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,1,9,12,12,5,8,0,0,8,6,0,8,6,6,2,9,12,0,8,6,6,2,9,12,12,5,8,3,4,4,3,6,15,15,0,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,8,5,5,8,5,5,8,0,0,7,7,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"6\", \"2\"], \"clip_start\": 51.0, \"clip_end\": 55.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,3,4,13,10,5,1,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,5,1,9,12,12,5,8,0,0,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,10,12,4,3,6,15,2,14,14,3,8,8,0,0,8,6,11,2,14,14,3,8,8,0,0,8,6,6,10,7,3,4,4,7,10,13,2,15,5,14,3,15,14,3,15,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,2,14,14,3,8,8,13,11,10,11,3,4,4,3,14,3,15,3,11,11,4,3,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,1,9,12,12,5,8,0,0,8,6,0,8,6,6,2,9,12,0,8,6,6,2,9,12,12,5,8,3,4,4,3,6,15,15,0,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,8,5,5,8,5,5,8,0,0,7,7,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"12\", \"5\", \"8\"], \"clip_start\": 191.0, \"clip_end\": 196.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,3,4,13,10,5,1,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,5,1,9,12,12,5,8,0,0,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,10,12,4,3,6,15,2,14,14,3,8,8,0,0,8,6,11,2,14,14,3,8,8,0,0,8,6,6,10,7,3,4,4,7,10,13,2,15,5,14,3,15,14,3,15,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,2,14,14,3,8,8,13,11,10,11,3,4,4,3,14,3,15,3,11,11,4,3,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,1,9,12,12,5,8,0,0,8,6,0,8,6,6,2,9,12,0,8,6,6,2,9,12,12,5,8,3,4,4,3,6,15,15,0,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,8,5,5,8,5,5,8,0,0,7,7,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 433.0, \"clip_end\": 438.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,3,4,13,10,5,1,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,5,1,9,12,12,5,8,0,0,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,10,12,4,3,6,15,2,14,14,3,8,8,0,0,8,6,11,2,14,14,3,8,8,0,0,8,6,6,10,7,3,4,4,7,10,13,2,15,5,14,3,15,14,3,15,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,2,14,14,3,8,8,13,11,10,11,3,4,4,3,14,3,15,3,11,11,4,3,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,1,9,12,12,5,8,0,0,8,6,0,8,6,6,2,9,12,0,8,6,6,2,9,12,12,5,8,3,4,4,3,6,15,15,0,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,8,5,5,8,5,5,8,0,0,7,7,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 416.0, \"clip_end\": 419.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,3,4,13,10,5,1,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,5,1,9,12,12,5,8,0,0,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,10,12,4,3,6,15,2,14,14,3,8,8,0,0,8,6,11,2,14,14,3,8,8,0,0,8,6,6,10,7,3,4,4,7,10,13,2,15,5,14,3,15,14,3,15,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,2,14,14,3,8,8,13,11,10,11,3,4,4,3,14,3,15,3,11,11,4,3,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,1,9,12,12,5,8,0,0,8,6,0,8,6,6,2,9,12,0,8,6,6,2,9,12,12,5,8,3,4,4,3,6,15,15,0,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,8,5,5,8,5,5,8,0,0,7,7,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"6\", \"2\", \"9\", \"12\"], \"clip_start\": 346.0, \"clip_end\": 352.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,3,4,13,10,5,1,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,5,1,9,12,12,5,8,0,0,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,10,12,4,3,6,15,2,14,14,3,8,8,0,0,8,6,11,2,14,14,3,8,8,0,0,8,6,6,10,7,3,4,4,7,10,13,2,15,5,14,3,15,14,3,15,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,2,14,14,3,8,8,13,11,10,11,3,4,4,3,14,3,15,3,11,11,4,3,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,1,9,12,12,5,8,0,0,8,6,0,8,6,6,2,9,12,0,8,6,6,2,9,12,12,5,8,3,4,4,3,6,15,15,0,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,8,5,5,8,5,5,8,0,0,7,7,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"2\", \"9\"], \"clip_start\": 336.0, \"clip_end\": 340.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,3,4,13,10,5,1,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,5,1,9,12,12,5,8,0,0,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,10,12,4,3,6,15,2,14,14,3,8,8,0,0,8,6,11,2,14,14,3,8,8,0,0,8,6,6,10,7,3,4,4,7,10,13,2,15,5,14,3,15,14,3,15,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,2,14,14,3,8,8,13,11,10,11,3,4,4,3,14,3,15,3,11,11,4,3,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,1,9,12,12,5,8,0,0,8,6,0,8,6,6,2,9,12,0,8,6,6,2,9,12,12,5,8,3,4,4,3,6,15,15,0,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,8,5,5,8,5,5,8,0,0,7,7,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"11\", \"10\", \"11\", \"3\", \"4\"], \"clip_start\": 385.0, \"clip_end\": 391.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,3,4,13,10,5,1,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,5,1,9,12,12,5,8,0,0,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,10,12,4,3,6,15,2,14,14,3,8,8,0,0,8,6,11,2,14,14,3,8,8,0,0,8,6,6,10,7,3,4,4,7,10,13,2,15,5,14,3,15,14,3,15,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,2,14,14,3,8,8,13,11,10,11,3,4,4,3,14,3,15,3,11,11,4,3,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,1,9,12,12,5,8,0,0,8,6,0,8,6,6,2,9,12,0,8,6,6,2,9,12,12,5,8,3,4,4,3,6,15,15,0,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,8,5,5,8,5,5,8,0,0,7,7,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"12\", \"5\", \"8\", \"0\", \"0\"], \"clip_start\": 362.0, \"clip_end\": 368.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,3,4,13,10,5,1,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,5,1,9,12,12,5,8,0,0,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,10,12,4,3,6,15,2,14,14,3,8,8,0,0,8,6,11,2,14,14,3,8,8,0,0,8,6,6,10,7,3,4,4,7,10,13,2,15,5,14,3,15,14,3,15,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,2,14,14,3,8,8,13,11,10,11,3,4,4,3,14,3,15,3,11,11,4,3,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,1,9,12,12,5,8,0,0,8,6,0,8,6,6,2,9,12,0,8,6,6,2,9,12,12,5,8,3,4,4,3,6,15,15,0,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,8,5,5,8,5,5,8,0,0,7,7,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 239.0, \"clip_end\": 243.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,3,4,13,10,5,1,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,5,1,9,12,12,5,8,0,0,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,10,12,4,3,6,15,2,14,14,3,8,8,0,0,8,6,11,2,14,14,3,8,8,0,0,8,6,6,10,7,3,4,4,7,10,13,2,15,5,14,3,15,14,3,15,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,2,14,14,3,8,8,13,11,10,11,3,4,4,3,14,3,15,3,11,11,4,3,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,1,9,12,12,5,8,0,0,8,6,0,8,6,6,2,9,12,0,8,6,6,2,9,12,12,5,8,3,4,4,3,6,15,15,0,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,8,5,5,8,5,5,8,0,0,7,7,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 421.0, \"clip_end\": 425.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,3,4,13,10,5,1,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,5,1,9,12,12,5,8,0,0,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,10,12,4,3,6,15,2,14,14,3,8,8,0,0,8,6,11,2,14,14,3,8,8,0,0,8,6,6,10,7,3,4,4,7,10,13,2,15,5,14,3,15,14,3,15,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,2,14,14,3,8,8,13,11,10,11,3,4,4,3,14,3,15,3,11,11,4,3,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,1,9,12,12,5,8,0,0,8,6,0,8,6,6,2,9,12,0,8,6,6,2,9,12,12,5,8,3,4,4,3,6,15,15,0,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,8,5,5,8,5,5,8,0,0,7,7,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"0\", \"2\", \"14\", \"14\", \"3\"], \"clip_start\": 280.0, \"clip_end\": 286.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,3,4,13,10,5,1,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,5,1,9,12,12,5,8,0,0,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,10,12,4,3,6,15,2,14,14,3,8,8,0,0,8,6,11,2,14,14,3,8,8,0,0,8,6,6,10,7,3,4,4,7,10,13,2,15,5,14,3,15,14,3,15,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,2,14,14,3,8,8,13,11,10,11,3,4,4,3,14,3,15,3,11,11,4,3,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,1,9,12,12,5,8,0,0,8,6,0,8,6,6,2,9,12,0,8,6,6,2,9,12,12,5,8,3,4,4,3,6,15,15,0,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,8,5,5,8,5,5,8,0,0,7,7,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"9\", \"12\"], \"clip_start\": 64.0, \"clip_end\": 68.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,3,4,13,10,5,1,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,5,1,9,12,12,5,8,0,0,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,10,12,4,3,6,15,2,14,14,3,8,8,0,0,8,6,11,2,14,14,3,8,8,0,0,8,6,6,10,7,3,4,4,7,10,13,2,15,5,14,3,15,14,3,15,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,2,14,14,3,8,8,13,11,10,11,3,4,4,3,14,3,15,3,11,11,4,3,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,1,9,12,12,5,8,0,0,8,6,0,8,6,6,2,9,12,0,8,6,6,2,9,12,12,5,8,3,4,4,3,6,15,15,0,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,8,5,5,8,5,5,8,0,0,7,7,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"12\", \"12\"], \"clip_start\": 161.0, \"clip_end\": 165.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,3,4,13,10,5,1,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,5,1,9,12,12,5,8,0,0,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,10,12,4,3,6,15,2,14,14,3,8,8,0,0,8,6,11,2,14,14,3,8,8,0,0,8,6,6,10,7,3,4,4,7,10,13,2,15,5,14,3,15,14,3,15,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,2,14,14,3,8,8,13,11,10,11,3,4,4,3,14,3,15,3,11,11,4,3,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,1,9,12,12,5,8,0,0,8,6,0,8,6,6,2,9,12,0,8,6,6,2,9,12,12,5,8,3,4,4,3,6,15,15,0,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,8,5,5,8,5,5,8,0,0,7,7,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"0\", \"0\", \"8\", \"6\", \"6\"], \"clip_start\": 92.0, \"clip_end\": 98.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,3,4,13,10,5,1,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,5,1,9,12,12,5,8,0,0,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,10,12,4,3,6,15,2,14,14,3,8,8,0,0,8,6,11,2,14,14,3,8,8,0,0,8,6,6,10,7,3,4,4,7,10,13,2,15,5,14,3,15,14,3,15,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,2,14,14,3,8,8,13,11,10,11,3,4,4,3,14,3,15,3,11,11,4,3,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,1,9,12,12,5,8,0,0,8,6,0,8,6,6,2,9,12,0,8,6,6,2,9,12,12,5,8,3,4,4,3,6,15,15,0,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,8,5,5,8,5,5,8,0,0,7,7,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"15\", \"2\", \"14\", \"14\"], \"clip_start\": 265.0, \"clip_end\": 271.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,3,4,13,10,5,1,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,5,1,9,12,12,5,8,0,0,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,10,12,4,3,6,15,2,14,14,3,8,8,0,0,8,6,11,2,14,14,3,8,8,0,0,8,6,6,10,7,3,4,4,7,10,13,2,15,5,14,3,15,14,3,15,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9,12,12,5,8,0,0,2,14,14,3,8,8,13,11,10,11,3,4,4,3,14,3,15,3,11,11,4,3,6,15,15,0,2,14,14,3,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,1,9,12,12,5,8,0,0,8,6,0,8,6,6,2,9,12,0,8,6,6,2,9,12,12,5,8,3,4,4,3,6,15,15,0,2,14,14,3,8,8,5,5,4,3,6,15,15,0,2,14,14,3,8,8,5,5,8,5,5,8,5,5,8,0,0,7,7,8,8,0,0,8,6,6,2,9,12,12,5,8,0,0,8,6,6,2,9", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"4\", \"14\", \"5\", \"3\", \"4\"], \"clip_start\": 412.0, \"clip_end\": 418.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,10,13,1,3,5,12,1,11,0,6,15,13,11,0,6,5,8,0,15,4,5,13,2,1,4,5,13,6,3,4,13,9,14,1,4,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,5,7,13,12,3,4,14,5,13,6,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,14,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,11,0,6,4,5,13,9,0,6,5,8,0,15,13,5,14,5,3,4,10,1,4,4,2,7,11,15,3,4,13,9,14,5,13,6,15,13,11,0,6,4,5,13,2,8,0,9,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,6,3,4,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,5,0,6,15,13,1,6,15,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,1,4,5,13,6,3,4,13,1,3,3,4,14,1,5,14,5,3,4,10,1,4,4,1,5,12,3,4,12,0,2,7,11,15,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,10,1,4,4,1,5,12,3,4,14,5,3,4,10,1,4,4,1,5,14,5,13,6,3,4,13,9,14,5,13,6,3,4,14,5,13,6,15,13,15,13,10,5,14,5,3,4,10,1,4,4,1,4,8,0,15,13,5,14,1,4,10,1,4,4,9,0,6,4,5,13,1,3,11,0,6,4,5,13,6,15,13,15,13,10,1,5,12,3,4,14,5,13,6,3,4,13,1,3,3,12,3,4,14,5,3,4,10,1,4,4,1,4,5,13,1,3,15,13,10,2,6,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,2,1,4,5,13,1,3,3,4,14,5,3,4,10,5,14,5,3,4,10,1,4,4,1,5,12,15,1,7,15,6,15,13,15,13,10,2,15,13,6,3,4,13,1,0,6,15,13,1,3,3,4,14,1,4,10,1,4,4,1,4,5,12,3,4,12,3,4,14,5,13,6,15,13,1,3,3,4,14,5,13,6,15,3,4,13,9,9,7,13,12,10,13,6,3,4,13,9,14,1,4,5,10,15,13,10,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"4\", \"13\", \"9\"], \"clip_start\": 252.0, \"clip_end\": 256.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,10,13,1,3,5,12,1,11,0,6,15,13,11,0,6,5,8,0,15,4,5,13,2,1,4,5,13,6,3,4,13,9,14,1,4,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,5,7,13,12,3,4,14,5,13,6,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,14,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,11,0,6,4,5,13,9,0,6,5,8,0,15,13,5,14,5,3,4,10,1,4,4,2,7,11,15,3,4,13,9,14,5,13,6,15,13,11,0,6,4,5,13,2,8,0,9,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,6,3,4,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,5,0,6,15,13,1,6,15,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,1,4,5,13,6,3,4,13,1,3,3,4,14,1,5,14,5,3,4,10,1,4,4,1,5,12,3,4,12,0,2,7,11,15,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,10,1,4,4,1,5,12,3,4,14,5,3,4,10,1,4,4,1,5,14,5,13,6,3,4,13,9,14,5,13,6,3,4,14,5,13,6,15,13,15,13,10,5,14,5,3,4,10,1,4,4,1,4,8,0,15,13,5,14,1,4,10,1,4,4,9,0,6,4,5,13,1,3,11,0,6,4,5,13,6,15,13,15,13,10,1,5,12,3,4,14,5,13,6,3,4,13,1,3,3,12,3,4,14,5,3,4,10,1,4,4,1,4,5,13,1,3,15,13,10,2,6,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,2,1,4,5,13,1,3,3,4,14,5,3,4,10,5,14,5,3,4,10,1,4,4,1,5,12,15,1,7,15,6,15,13,15,13,10,2,15,13,6,3,4,13,1,0,6,15,13,1,3,3,4,14,1,4,10,1,4,4,1,4,5,12,3,4,12,3,4,14,5,13,6,15,13,1,3,3,4,14,5,13,6,15,3,4,13,9,9,7,13,12,10,13,6,3,4,13,9,14,1,4,5,10,15,13,10,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"4\", \"14\", \"5\", \"13\"], \"clip_start\": 59.0, \"clip_end\": 65.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,10,13,1,3,5,12,1,11,0,6,15,13,11,0,6,5,8,0,15,4,5,13,2,1,4,5,13,6,3,4,13,9,14,1,4,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,5,7,13,12,3,4,14,5,13,6,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,14,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,11,0,6,4,5,13,9,0,6,5,8,0,15,13,5,14,5,3,4,10,1,4,4,2,7,11,15,3,4,13,9,14,5,13,6,15,13,11,0,6,4,5,13,2,8,0,9,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,6,3,4,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,5,0,6,15,13,1,6,15,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,1,4,5,13,6,3,4,13,1,3,3,4,14,1,5,14,5,3,4,10,1,4,4,1,5,12,3,4,12,0,2,7,11,15,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,10,1,4,4,1,5,12,3,4,14,5,3,4,10,1,4,4,1,5,14,5,13,6,3,4,13,9,14,5,13,6,3,4,14,5,13,6,15,13,15,13,10,5,14,5,3,4,10,1,4,4,1,4,8,0,15,13,5,14,1,4,10,1,4,4,9,0,6,4,5,13,1,3,11,0,6,4,5,13,6,15,13,15,13,10,1,5,12,3,4,14,5,13,6,3,4,13,1,3,3,12,3,4,14,5,3,4,10,1,4,4,1,4,5,13,1,3,15,13,10,2,6,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,2,1,4,5,13,1,3,3,4,14,5,3,4,10,5,14,5,3,4,10,1,4,4,1,5,12,15,1,7,15,6,15,13,15,13,10,2,15,13,6,3,4,13,1,0,6,15,13,1,3,3,4,14,1,4,10,1,4,4,1,4,5,12,3,4,12,3,4,14,5,13,6,15,13,1,3,3,4,14,5,13,6,15,3,4,13,9,9,7,13,12,10,13,6,3,4,13,9,14,1,4,5,10,15,13,10,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 73.0, \"clip_end\": 76.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,10,13,1,3,5,12,1,11,0,6,15,13,11,0,6,5,8,0,15,4,5,13,2,1,4,5,13,6,3,4,13,9,14,1,4,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,5,7,13,12,3,4,14,5,13,6,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,14,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,11,0,6,4,5,13,9,0,6,5,8,0,15,13,5,14,5,3,4,10,1,4,4,2,7,11,15,3,4,13,9,14,5,13,6,15,13,11,0,6,4,5,13,2,8,0,9,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,6,3,4,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,5,0,6,15,13,1,6,15,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,1,4,5,13,6,3,4,13,1,3,3,4,14,1,5,14,5,3,4,10,1,4,4,1,5,12,3,4,12,0,2,7,11,15,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,10,1,4,4,1,5,12,3,4,14,5,3,4,10,1,4,4,1,5,14,5,13,6,3,4,13,9,14,5,13,6,3,4,14,5,13,6,15,13,15,13,10,5,14,5,3,4,10,1,4,4,1,4,8,0,15,13,5,14,1,4,10,1,4,4,9,0,6,4,5,13,1,3,11,0,6,4,5,13,6,15,13,15,13,10,1,5,12,3,4,14,5,13,6,3,4,13,1,3,3,12,3,4,14,5,3,4,10,1,4,4,1,4,5,13,1,3,15,13,10,2,6,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,2,1,4,5,13,1,3,3,4,14,5,3,4,10,5,14,5,3,4,10,1,4,4,1,5,12,15,1,7,15,6,15,13,15,13,10,2,15,13,6,3,4,13,1,0,6,15,13,1,3,3,4,14,1,4,10,1,4,4,1,4,5,12,3,4,12,3,4,14,5,13,6,15,13,1,3,3,4,14,5,13,6,15,3,4,13,9,9,7,13,12,10,13,6,3,4,13,9,14,1,4,5,10,15,13,10,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"15\", \"13\", \"10\", \"5\"], \"clip_start\": 305.0, \"clip_end\": 310.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,10,13,1,3,5,12,1,11,0,6,15,13,11,0,6,5,8,0,15,4,5,13,2,1,4,5,13,6,3,4,13,9,14,1,4,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,5,7,13,12,3,4,14,5,13,6,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,14,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,11,0,6,4,5,13,9,0,6,5,8,0,15,13,5,14,5,3,4,10,1,4,4,2,7,11,15,3,4,13,9,14,5,13,6,15,13,11,0,6,4,5,13,2,8,0,9,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,6,3,4,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,5,0,6,15,13,1,6,15,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,1,4,5,13,6,3,4,13,1,3,3,4,14,1,5,14,5,3,4,10,1,4,4,1,5,12,3,4,12,0,2,7,11,15,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,10,1,4,4,1,5,12,3,4,14,5,3,4,10,1,4,4,1,5,14,5,13,6,3,4,13,9,14,5,13,6,3,4,14,5,13,6,15,13,15,13,10,5,14,5,3,4,10,1,4,4,1,4,8,0,15,13,5,14,1,4,10,1,4,4,9,0,6,4,5,13,1,3,11,0,6,4,5,13,6,15,13,15,13,10,1,5,12,3,4,14,5,13,6,3,4,13,1,3,3,12,3,4,14,5,3,4,10,1,4,4,1,4,5,13,1,3,15,13,10,2,6,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,2,1,4,5,13,1,3,3,4,14,5,3,4,10,5,14,5,3,4,10,1,4,4,1,5,12,15,1,7,15,6,15,13,15,13,10,2,15,13,6,3,4,13,1,0,6,15,13,1,3,3,4,14,1,4,10,1,4,4,1,4,5,12,3,4,12,3,4,14,5,13,6,15,13,1,3,3,4,14,5,13,6,15,3,4,13,9,9,7,13,12,10,13,6,3,4,13,9,14,1,4,5,10,15,13,10,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"6\", \"3\", \"4\", \"13\"], \"clip_start\": 442.0, \"clip_end\": 448.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,10,13,1,3,5,12,1,11,0,6,15,13,11,0,6,5,8,0,15,4,5,13,2,1,4,5,13,6,3,4,13,9,14,1,4,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,5,7,13,12,3,4,14,5,13,6,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,14,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,11,0,6,4,5,13,9,0,6,5,8,0,15,13,5,14,5,3,4,10,1,4,4,2,7,11,15,3,4,13,9,14,5,13,6,15,13,11,0,6,4,5,13,2,8,0,9,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,6,3,4,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,5,0,6,15,13,1,6,15,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,1,4,5,13,6,3,4,13,1,3,3,4,14,1,5,14,5,3,4,10,1,4,4,1,5,12,3,4,12,0,2,7,11,15,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,10,1,4,4,1,5,12,3,4,14,5,3,4,10,1,4,4,1,5,14,5,13,6,3,4,13,9,14,5,13,6,3,4,14,5,13,6,15,13,15,13,10,5,14,5,3,4,10,1,4,4,1,4,8,0,15,13,5,14,1,4,10,1,4,4,9,0,6,4,5,13,1,3,11,0,6,4,5,13,6,15,13,15,13,10,1,5,12,3,4,14,5,13,6,3,4,13,1,3,3,12,3,4,14,5,3,4,10,1,4,4,1,4,5,13,1,3,15,13,10,2,6,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,2,1,4,5,13,1,3,3,4,14,5,3,4,10,5,14,5,3,4,10,1,4,4,1,5,12,15,1,7,15,6,15,13,15,13,10,2,15,13,6,3,4,13,1,0,6,15,13,1,3,3,4,14,1,4,10,1,4,4,1,4,5,12,3,4,12,3,4,14,5,13,6,15,13,1,3,3,4,14,5,13,6,15,3,4,13,9,9,7,13,12,10,13,6,3,4,13,9,14,1,4,5,10,15,13,10,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"3\", \"5\", \"12\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q6_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,10,13,1,3,5,12,1,11,0,6,15,13,11,0,6,5,8,0,15,4,5,13,2,1,4,5,13,6,3,4,13,9,14,1,4,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,5,7,13,12,3,4,14,5,13,6,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,14,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,11,0,6,4,5,13,9,0,6,5,8,0,15,13,5,14,5,3,4,10,1,4,4,2,7,11,15,3,4,13,9,14,5,13,6,15,13,11,0,6,4,5,13,2,8,0,9,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,6,3,4,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,5,0,6,15,13,1,6,15,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,1,4,5,13,6,3,4,13,1,3,3,4,14,1,5,14,5,3,4,10,1,4,4,1,5,12,3,4,12,0,2,7,11,15,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,10,1,4,4,1,5,12,3,4,14,5,3,4,10,1,4,4,1,5,14,5,13,6,3,4,13,9,14,5,13,6,3,4,14,5,13,6,15,13,15,13,10,5,14,5,3,4,10,1,4,4,1,4,8,0,15,13,5,14,1,4,10,1,4,4,9,0,6,4,5,13,1,3,11,0,6,4,5,13,6,15,13,15,13,10,1,5,12,3,4,14,5,13,6,3,4,13,1,3,3,12,3,4,14,5,3,4,10,1,4,4,1,4,5,13,1,3,15,13,10,2,6,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,2,1,4,5,13,1,3,3,4,14,5,3,4,10,5,14,5,3,4,10,1,4,4,1,5,12,15,1,7,15,6,15,13,15,13,10,2,15,13,6,3,4,13,1,0,6,15,13,1,3,3,4,14,1,4,10,1,4,4,1,4,5,12,3,4,12,3,4,14,5,13,6,15,13,1,3,3,4,14,5,13,6,15,3,4,13,9,9,7,13,12,10,13,6,3,4,13,9,14,1,4,5,10,15,13,10,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"3\", \"3\"], \"clip_start\": 225.0, \"clip_end\": 229.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,10,13,1,3,5,12,1,11,0,6,15,13,11,0,6,5,8,0,15,4,5,13,2,1,4,5,13,6,3,4,13,9,14,1,4,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,5,7,13,12,3,4,14,5,13,6,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,14,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,11,0,6,4,5,13,9,0,6,5,8,0,15,13,5,14,5,3,4,10,1,4,4,2,7,11,15,3,4,13,9,14,5,13,6,15,13,11,0,6,4,5,13,2,8,0,9,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,6,3,4,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,5,0,6,15,13,1,6,15,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,1,4,5,13,6,3,4,13,1,3,3,4,14,1,5,14,5,3,4,10,1,4,4,1,5,12,3,4,12,0,2,7,11,15,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,10,1,4,4,1,5,12,3,4,14,5,3,4,10,1,4,4,1,5,14,5,13,6,3,4,13,9,14,5,13,6,3,4,14,5,13,6,15,13,15,13,10,5,14,5,3,4,10,1,4,4,1,4,8,0,15,13,5,14,1,4,10,1,4,4,9,0,6,4,5,13,1,3,11,0,6,4,5,13,6,15,13,15,13,10,1,5,12,3,4,14,5,13,6,3,4,13,1,3,3,12,3,4,14,5,3,4,10,1,4,4,1,4,5,13,1,3,15,13,10,2,6,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,2,1,4,5,13,1,3,3,4,14,5,3,4,10,5,14,5,3,4,10,1,4,4,1,5,12,15,1,7,15,6,15,13,15,13,10,2,15,13,6,3,4,13,1,0,6,15,13,1,3,3,4,14,1,4,10,1,4,4,1,4,5,12,3,4,12,3,4,14,5,13,6,15,13,1,3,3,4,14,5,13,6,15,3,4,13,9,9,7,13,12,10,13,6,3,4,13,9,14,1,4,5,10,15,13,10,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"5\", \"13\", \"6\", \"15\", \"13\"], \"clip_start\": 36.0, \"clip_end\": 42.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,10,13,1,3,5,12,1,11,0,6,15,13,11,0,6,5,8,0,15,4,5,13,2,1,4,5,13,6,3,4,13,9,14,1,4,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,5,7,13,12,3,4,14,5,13,6,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,14,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,11,0,6,4,5,13,9,0,6,5,8,0,15,13,5,14,5,3,4,10,1,4,4,2,7,11,15,3,4,13,9,14,5,13,6,15,13,11,0,6,4,5,13,2,8,0,9,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,6,3,4,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,5,0,6,15,13,1,6,15,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,1,4,5,13,6,3,4,13,1,3,3,4,14,1,5,14,5,3,4,10,1,4,4,1,5,12,3,4,12,0,2,7,11,15,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,10,1,4,4,1,5,12,3,4,14,5,3,4,10,1,4,4,1,5,14,5,13,6,3,4,13,9,14,5,13,6,3,4,14,5,13,6,15,13,15,13,10,5,14,5,3,4,10,1,4,4,1,4,8,0,15,13,5,14,1,4,10,1,4,4,9,0,6,4,5,13,1,3,11,0,6,4,5,13,6,15,13,15,13,10,1,5,12,3,4,14,5,13,6,3,4,13,1,3,3,12,3,4,14,5,3,4,10,1,4,4,1,4,5,13,1,3,15,13,10,2,6,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,2,1,4,5,13,1,3,3,4,14,5,3,4,10,5,14,5,3,4,10,1,4,4,1,5,12,15,1,7,15,6,15,13,15,13,10,2,15,13,6,3,4,13,1,0,6,15,13,1,3,3,4,14,1,4,10,1,4,4,1,4,5,12,3,4,12,3,4,14,5,13,6,15,13,1,3,3,4,14,5,13,6,15,3,4,13,9,9,7,13,12,10,13,6,3,4,13,9,14,1,4,5,10,15,13,10,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"3\", \"3\", \"4\"], \"clip_start\": 225.0, \"clip_end\": 230.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q9_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,10,13,1,3,5,12,1,11,0,6,15,13,11,0,6,5,8,0,15,4,5,13,2,1,4,5,13,6,3,4,13,9,14,1,4,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,5,7,13,12,3,4,14,5,13,6,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,14,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,11,0,6,4,5,13,9,0,6,5,8,0,15,13,5,14,5,3,4,10,1,4,4,2,7,11,15,3,4,13,9,14,5,13,6,15,13,11,0,6,4,5,13,2,8,0,9,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,6,3,4,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,5,0,6,15,13,1,6,15,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,1,4,5,13,6,3,4,13,1,3,3,4,14,1,5,14,5,3,4,10,1,4,4,1,5,12,3,4,12,0,2,7,11,15,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,10,1,4,4,1,5,12,3,4,14,5,3,4,10,1,4,4,1,5,14,5,13,6,3,4,13,9,14,5,13,6,3,4,14,5,13,6,15,13,15,13,10,5,14,5,3,4,10,1,4,4,1,4,8,0,15,13,5,14,1,4,10,1,4,4,9,0,6,4,5,13,1,3,11,0,6,4,5,13,6,15,13,15,13,10,1,5,12,3,4,14,5,13,6,3,4,13,1,3,3,12,3,4,14,5,3,4,10,1,4,4,1,4,5,13,1,3,15,13,10,2,6,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,2,1,4,5,13,1,3,3,4,14,5,3,4,10,5,14,5,3,4,10,1,4,4,1,5,12,15,1,7,15,6,15,13,15,13,10,2,15,13,6,3,4,13,1,0,6,15,13,1,3,3,4,14,1,4,10,1,4,4,1,4,5,12,3,4,12,3,4,14,5,13,6,15,13,1,3,3,4,14,5,13,6,15,3,4,13,9,9,7,13,12,10,13,6,3,4,13,9,14,1,4,5,10,15,13,10,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"4\", \"13\", \"1\", \"3\"], \"clip_start\": 360.0, \"clip_end\": 366.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q10_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,10,13,1,3,5,12,1,11,0,6,15,13,11,0,6,5,8,0,15,4,5,13,2,1,4,5,13,6,3,4,13,9,14,1,4,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,5,7,13,12,3,4,14,5,13,6,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,14,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,11,0,6,4,5,13,9,0,6,5,8,0,15,13,5,14,5,3,4,10,1,4,4,2,7,11,15,3,4,13,9,14,5,13,6,15,13,11,0,6,4,5,13,2,8,0,9,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,6,3,4,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,5,0,6,15,13,1,6,15,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,1,4,5,13,6,3,4,13,1,3,3,4,14,1,5,14,5,3,4,10,1,4,4,1,5,12,3,4,12,0,2,7,11,15,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,10,1,4,4,1,5,12,3,4,14,5,3,4,10,1,4,4,1,5,14,5,13,6,3,4,13,9,14,5,13,6,3,4,14,5,13,6,15,13,15,13,10,5,14,5,3,4,10,1,4,4,1,4,8,0,15,13,5,14,1,4,10,1,4,4,9,0,6,4,5,13,1,3,11,0,6,4,5,13,6,15,13,15,13,10,1,5,12,3,4,14,5,13,6,3,4,13,1,3,3,12,3,4,14,5,3,4,10,1,4,4,1,4,5,13,1,3,15,13,10,2,6,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,2,1,4,5,13,1,3,3,4,14,5,3,4,10,5,14,5,3,4,10,1,4,4,1,5,12,15,1,7,15,6,15,13,15,13,10,2,15,13,6,3,4,13,1,0,6,15,13,1,3,3,4,14,1,4,10,1,4,4,1,4,5,12,3,4,12,3,4,14,5,13,6,15,13,1,3,3,4,14,5,13,6,15,3,4,13,9,9,7,13,12,10,13,6,3,4,13,9,14,1,4,5,10,15,13,10,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"4\"], \"clip_start\": 289.0, \"clip_end\": 292.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,10,13,1,3,5,12,1,11,0,6,15,13,11,0,6,5,8,0,15,4,5,13,2,1,4,5,13,6,3,4,13,9,14,1,4,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,5,7,13,12,3,4,14,5,13,6,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,14,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,11,0,6,4,5,13,9,0,6,5,8,0,15,13,5,14,5,3,4,10,1,4,4,2,7,11,15,3,4,13,9,14,5,13,6,15,13,11,0,6,4,5,13,2,8,0,9,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,6,3,4,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,5,0,6,15,13,1,6,15,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,1,4,5,13,6,3,4,13,1,3,3,4,14,1,5,14,5,3,4,10,1,4,4,1,5,12,3,4,12,0,2,7,11,15,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,10,1,4,4,1,5,12,3,4,14,5,3,4,10,1,4,4,1,5,14,5,13,6,3,4,13,9,14,5,13,6,3,4,14,5,13,6,15,13,15,13,10,5,14,5,3,4,10,1,4,4,1,4,8,0,15,13,5,14,1,4,10,1,4,4,9,0,6,4,5,13,1,3,11,0,6,4,5,13,6,15,13,15,13,10,1,5,12,3,4,14,5,13,6,3,4,13,1,3,3,12,3,4,14,5,3,4,10,1,4,4,1,4,5,13,1,3,15,13,10,2,6,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,2,1,4,5,13,1,3,3,4,14,5,3,4,10,5,14,5,3,4,10,1,4,4,1,5,12,15,1,7,15,6,15,13,15,13,10,2,15,13,6,3,4,13,1,0,6,15,13,1,3,3,4,14,1,4,10,1,4,4,1,4,5,12,3,4,12,3,4,14,5,13,6,15,13,1,3,3,4,14,5,13,6,15,3,4,13,9,9,7,13,12,10,13,6,3,4,13,9,14,1,4,5,10,15,13,10,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"1\", \"13\"], \"clip_start\": 295.0, \"clip_end\": 298.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,10,13,1,3,5,12,1,11,0,6,15,13,11,0,6,5,8,0,15,4,5,13,2,1,4,5,13,6,3,4,13,9,14,1,4,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,5,7,13,12,3,4,14,5,13,6,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,14,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,11,0,6,4,5,13,9,0,6,5,8,0,15,13,5,14,5,3,4,10,1,4,4,2,7,11,15,3,4,13,9,14,5,13,6,15,13,11,0,6,4,5,13,2,8,0,9,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,6,3,4,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,5,0,6,15,13,1,6,15,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,1,4,5,13,6,3,4,13,1,3,3,4,14,1,5,14,5,3,4,10,1,4,4,1,5,12,3,4,12,0,2,7,11,15,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,10,1,4,4,1,5,12,3,4,14,5,3,4,10,1,4,4,1,5,14,5,13,6,3,4,13,9,14,5,13,6,3,4,14,5,13,6,15,13,15,13,10,5,14,5,3,4,10,1,4,4,1,4,8,0,15,13,5,14,1,4,10,1,4,4,9,0,6,4,5,13,1,3,11,0,6,4,5,13,6,15,13,15,13,10,1,5,12,3,4,14,5,13,6,3,4,13,1,3,3,12,3,4,14,5,3,4,10,1,4,4,1,4,5,13,1,3,15,13,10,2,6,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,2,1,4,5,13,1,3,3,4,14,5,3,4,10,5,14,5,3,4,10,1,4,4,1,5,12,15,1,7,15,6,15,13,15,13,10,2,15,13,6,3,4,13,1,0,6,15,13,1,3,3,4,14,1,4,10,1,4,4,1,4,5,12,3,4,12,3,4,14,5,13,6,15,13,1,3,3,4,14,5,13,6,15,3,4,13,9,9,7,13,12,10,13,6,3,4,13,9,14,1,4,5,10,15,13,10,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"5\", \"10\", \"15\", \"13\", \"10\"], \"clip_start\": 505.0, \"clip_end\": 511.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q13_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,10,13,1,3,5,12,1,11,0,6,15,13,11,0,6,5,8,0,15,4,5,13,2,1,4,5,13,6,3,4,13,9,14,1,4,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,5,7,13,12,3,4,14,5,13,6,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,14,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,11,0,6,4,5,13,9,0,6,5,8,0,15,13,5,14,5,3,4,10,1,4,4,2,7,11,15,3,4,13,9,14,5,13,6,15,13,11,0,6,4,5,13,2,8,0,9,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,6,3,4,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,5,0,6,15,13,1,6,15,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,1,4,5,13,6,3,4,13,1,3,3,4,14,1,5,14,5,3,4,10,1,4,4,1,5,12,3,4,12,0,2,7,11,15,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,10,1,4,4,1,5,12,3,4,14,5,3,4,10,1,4,4,1,5,14,5,13,6,3,4,13,9,14,5,13,6,3,4,14,5,13,6,15,13,15,13,10,5,14,5,3,4,10,1,4,4,1,4,8,0,15,13,5,14,1,4,10,1,4,4,9,0,6,4,5,13,1,3,11,0,6,4,5,13,6,15,13,15,13,10,1,5,12,3,4,14,5,13,6,3,4,13,1,3,3,12,3,4,14,5,3,4,10,1,4,4,1,4,5,13,1,3,15,13,10,2,6,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,2,1,4,5,13,1,3,3,4,14,5,3,4,10,5,14,5,3,4,10,1,4,4,1,5,12,15,1,7,15,6,15,13,15,13,10,2,15,13,6,3,4,13,1,0,6,15,13,1,3,3,4,14,1,4,10,1,4,4,1,4,5,12,3,4,12,3,4,14,5,13,6,15,13,1,3,3,4,14,5,13,6,15,3,4,13,9,9,7,13,12,10,13,6,3,4,13,9,14,1,4,5,10,15,13,10,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"11\", \"0\", \"6\"], \"clip_start\": 136.0, \"clip_end\": 140.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q14_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,10,13,1,3,5,12,1,11,0,6,15,13,11,0,6,5,8,0,15,4,5,13,2,1,4,5,13,6,3,4,13,9,14,1,4,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,5,7,13,12,3,4,14,5,13,6,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,14,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,11,0,6,4,5,13,9,0,6,5,8,0,15,13,5,14,5,3,4,10,1,4,4,2,7,11,15,3,4,13,9,14,5,13,6,15,13,11,0,6,4,5,13,2,8,0,9,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,6,3,4,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,5,0,6,15,13,1,6,15,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,1,4,5,13,6,3,4,13,1,3,3,4,14,1,5,14,5,3,4,10,1,4,4,1,5,12,3,4,12,0,2,7,11,15,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,10,1,4,4,1,5,12,3,4,14,5,3,4,10,1,4,4,1,5,14,5,13,6,3,4,13,9,14,5,13,6,3,4,14,5,13,6,15,13,15,13,10,5,14,5,3,4,10,1,4,4,1,4,8,0,15,13,5,14,1,4,10,1,4,4,9,0,6,4,5,13,1,3,11,0,6,4,5,13,6,15,13,15,13,10,1,5,12,3,4,14,5,13,6,3,4,13,1,3,3,12,3,4,14,5,3,4,10,1,4,4,1,4,5,13,1,3,15,13,10,2,6,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,2,1,4,5,13,1,3,3,4,14,5,3,4,10,5,14,5,3,4,10,1,4,4,1,5,12,15,1,7,15,6,15,13,15,13,10,2,15,13,6,3,4,13,1,0,6,15,13,1,3,3,4,14,1,4,10,1,4,4,1,4,5,12,3,4,12,3,4,14,5,13,6,15,13,1,3,3,4,14,5,13,6,15,3,4,13,9,9,7,13,12,10,13,6,3,4,13,9,14,1,4,5,10,15,13,10,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"3\", \"4\", \"14\", \"1\"], \"clip_start\": 453.0, \"clip_end\": 459.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,12,10,13,1,3,5,12,1,11,0,6,15,13,11,0,6,5,8,0,15,4,5,13,2,1,4,5,13,6,3,4,13,9,14,1,4,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,5,7,13,12,3,4,14,5,13,6,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,14,5,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,11,0,6,4,5,13,9,0,6,5,8,0,15,13,5,14,5,3,4,10,1,4,4,2,7,11,15,3,4,13,9,14,5,13,6,15,13,11,0,6,4,5,13,2,8,0,9,13,6,15,13,1,3,3,4,14,5,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,6,3,4,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,5,0,6,15,13,1,6,15,13,1,3,3,4,14,5,13,6,3,4,13,1,3,3,4,14,1,4,5,13,6,3,4,13,1,3,3,4,14,1,5,14,5,3,4,10,1,4,4,1,5,12,3,4,12,0,2,7,11,15,3,4,13,9,14,5,13,6,3,4,13,1,3,3,4,10,1,4,4,1,5,12,3,4,14,5,3,4,10,1,4,4,1,5,14,5,13,6,3,4,13,9,14,5,13,6,3,4,14,5,13,6,15,13,15,13,10,5,14,5,3,4,10,1,4,4,1,4,8,0,15,13,5,14,1,4,10,1,4,4,9,0,6,4,5,13,1,3,11,0,6,4,5,13,6,15,13,15,13,10,1,5,12,3,4,14,5,13,6,3,4,13,1,3,3,12,3,4,14,5,3,4,10,1,4,4,1,4,5,13,1,3,15,13,10,2,6,3,4,10,1,4,4,1,4,10,1,4,4,1,4,5,13,2,1,4,5,13,1,3,3,4,14,5,3,4,10,5,14,5,3,4,10,1,4,4,1,5,12,15,1,7,15,6,15,13,15,13,10,2,15,13,6,3,4,13,1,0,6,15,13,1,3,3,4,14,1,4,10,1,4,4,1,4,5,12,3,4,12,3,4,14,5,13,6,15,13,1,3,3,4,14,5,13,6,15,3,4,13,9,9,7,13,12,10,13,6,3,4,13,9,14,1,4,5,10,15,13,10,0", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"2\", \"15\", \"8\", \"2\"], \"clip_start\": 371.0, \"clip_end\": 376.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,5,4,14,10,2,15,5,4,13,14,13,14,1,2,15,8,2,2,1,2,15,8,8,0,14,4,3,2,15,9,1,2,8,6,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,15,8,2,2,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,9,13,14,11,14,10,14,10,14,10,2,15,5,4,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,3,5,6,7,1,2,0,14,14,10,2,15,5,6,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,12,12,7,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,5,4,12,11,14,10,0,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"2\", \"1\", \"2\"], \"clip_start\": 404.0, \"clip_end\": 408.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,5,4,14,10,2,15,5,4,13,14,13,14,1,2,15,8,2,2,1,2,15,8,8,0,14,4,3,2,15,9,1,2,8,6,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,15,8,2,2,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,9,13,14,11,14,10,14,10,14,10,2,15,5,4,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,3,5,6,7,1,2,0,14,14,10,2,15,5,6,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,12,12,7,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,5,4,12,11,14,10,0,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"2\", \"15\", \"8\"], \"clip_start\": 465.0, \"clip_end\": 469.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,5,4,14,10,2,15,5,4,13,14,13,14,1,2,15,8,2,2,1,2,15,8,8,0,14,4,3,2,15,9,1,2,8,6,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,15,8,2,2,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,9,13,14,11,14,10,14,10,14,10,2,15,5,4,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,3,5,6,7,1,2,0,14,14,10,2,15,5,6,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,12,12,7,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,5,4,12,11,14,10,0,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"2\", \"15\", \"8\", \"2\"], \"clip_start\": 120.0, \"clip_end\": 125.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,5,4,14,10,2,15,5,4,13,14,13,14,1,2,15,8,2,2,1,2,15,8,8,0,14,4,3,2,15,9,1,2,8,6,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,15,8,2,2,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,9,13,14,11,14,10,14,10,14,10,2,15,5,4,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,3,5,6,7,1,2,0,14,14,10,2,15,5,6,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,12,12,7,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,5,4,12,11,14,10,0,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 266.0, \"clip_end\": 270.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,5,4,14,10,2,15,5,4,13,14,13,14,1,2,15,8,2,2,1,2,15,8,8,0,14,4,3,2,15,9,1,2,8,6,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,15,8,2,2,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,9,13,14,11,14,10,14,10,14,10,2,15,5,4,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,3,5,6,7,1,2,0,14,14,10,2,15,5,6,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,12,12,7,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,5,4,12,11,14,10,0,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"2\", \"15\"], \"clip_start\": 239.0, \"clip_end\": 243.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,5,4,14,10,2,15,5,4,13,14,13,14,1,2,15,8,2,2,1,2,15,8,8,0,14,4,3,2,15,9,1,2,8,6,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,15,8,2,2,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,9,13,14,11,14,10,14,10,14,10,2,15,5,4,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,3,5,6,7,1,2,0,14,14,10,2,15,5,6,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,12,12,7,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,5,4,12,11,14,10,0,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"2\", \"15\"], \"clip_start\": 435.0, \"clip_end\": 439.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,5,4,14,10,2,15,5,4,13,14,13,14,1,2,15,8,2,2,1,2,15,8,8,0,14,4,3,2,15,9,1,2,8,6,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,15,8,2,2,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,9,13,14,11,14,10,14,10,14,10,2,15,5,4,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,3,5,6,7,1,2,0,14,14,10,2,15,5,6,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,12,12,7,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,5,4,12,11,14,10,0,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 460.0, \"clip_end\": 465.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,5,4,14,10,2,15,5,4,13,14,13,14,1,2,15,8,2,2,1,2,15,8,8,0,14,4,3,2,15,9,1,2,8,6,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,15,8,2,2,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,9,13,14,11,14,10,14,10,14,10,2,15,5,4,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,3,5,6,7,1,2,0,14,14,10,2,15,5,6,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,12,12,7,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,5,4,12,11,14,10,0,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"2\", \"15\"], \"clip_start\": 143.0, \"clip_end\": 147.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,5,4,14,10,2,15,5,4,13,14,13,14,1,2,15,8,2,2,1,2,15,8,8,0,14,4,3,2,15,9,1,2,8,6,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,15,8,2,2,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,9,13,14,11,14,10,14,10,14,10,2,15,5,4,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,3,5,6,7,1,2,0,14,14,10,2,15,5,6,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,12,12,7,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,5,4,12,11,14,10,0,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"8\"], \"clip_start\": 442.0, \"clip_end\": 445.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,5,4,14,10,2,15,5,4,13,14,13,14,1,2,15,8,2,2,1,2,15,8,8,0,14,4,3,2,15,9,1,2,8,6,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,15,8,2,2,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,9,13,14,11,14,10,14,10,14,10,2,15,5,4,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,3,5,6,7,1,2,0,14,14,10,2,15,5,6,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,12,12,7,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,5,4,12,11,14,10,0,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"15\", \"8\", \"2\", \"2\"], \"clip_start\": 97.0, \"clip_end\": 102.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,5,4,14,10,2,15,5,4,13,14,13,14,1,2,15,8,2,2,1,2,15,8,8,0,14,4,3,2,15,9,1,2,8,6,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,15,8,2,2,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,9,13,14,11,14,10,14,10,14,10,2,15,5,4,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,3,5,6,7,1,2,0,14,14,10,2,15,5,6,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,12,12,7,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,5,4,12,11,14,10,0,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"5\", \"6\"], \"clip_start\": 341.0, \"clip_end\": 345.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,5,4,14,10,2,15,5,4,13,14,13,14,1,2,15,8,2,2,1,2,15,8,8,0,14,4,3,2,15,9,1,2,8,6,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,15,8,2,2,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,9,13,14,11,14,10,14,10,14,10,2,15,5,4,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,3,5,6,7,1,2,0,14,14,10,2,15,5,6,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,12,12,7,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,5,4,12,11,14,10,0,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"8\", \"2\"], \"clip_start\": 260.0, \"clip_end\": 263.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,5,4,14,10,2,15,5,4,13,14,13,14,1,2,15,8,2,2,1,2,15,8,8,0,14,4,3,2,15,9,1,2,8,6,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,15,8,2,2,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,9,13,14,11,14,10,14,10,14,10,2,15,5,4,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,3,5,6,7,1,2,0,14,14,10,2,15,5,6,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,12,12,7,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,5,4,12,11,14,10,0,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"14\", \"14\", \"8\"], \"clip_start\": 418.0, \"clip_end\": 423.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,5,4,14,10,2,15,5,4,13,14,13,14,1,2,15,8,2,2,1,2,15,8,8,0,14,4,3,2,15,9,1,2,8,6,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,15,8,2,2,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,9,13,14,11,14,10,14,10,14,10,2,15,5,4,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,3,5,6,7,1,2,0,14,14,10,2,15,5,6,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,12,12,7,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,5,4,12,11,14,10,0,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"2\", \"13\", \"14\", \"1\"], \"clip_start\": 281.0, \"clip_end\": 287.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q14_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,5,4,14,10,2,15,5,4,13,14,13,14,1,2,15,8,2,2,1,2,15,8,8,0,14,4,3,2,15,9,1,2,8,6,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,15,8,2,2,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,9,13,14,11,14,10,14,10,14,10,2,15,5,4,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,3,5,6,7,1,2,0,14,14,10,2,15,5,6,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,12,12,7,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,5,4,12,11,14,10,0,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"1\", \"2\"], \"clip_start\": 180.0, \"clip_end\": 184.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,5,4,14,10,2,15,5,4,13,14,13,14,1,2,15,8,2,2,1,2,15,8,8,0,14,4,3,2,15,9,1,2,8,6,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,15,8,2,2,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,9,13,14,11,14,10,14,10,14,10,2,15,5,4,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,13,14,1,2,3,5,6,7,1,2,0,14,14,10,2,15,5,6,9,13,14,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,12,12,7,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,5,4,12,11,14,10,0,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2,2,1,2,15,8,2", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"6\", \"14\", \"14\", \"7\"], \"clip_start\": 424.0, \"clip_end\": 429.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,11,2,13,11,12,7,5,13,9,7,13,11,2,13,11,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,2,1,15,4,14,7,7,1,15,4,9,5,0,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,8,11,2,3,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,12,5,11,6,0,7,10,1,15,4,9,5,0,7,10,1,15,4,12,8,11,13,1,10,8,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,6,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,7,9,9,11,13,9,13,7,9,9,11,13,9,7,13,11,7,9,9,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,0,7,10,14,7,7,12,12,7,5,1,15,4,12,8,11,13,1,10,1,6,14,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,7,10,1,15,4,12,8,11,13,1,6,13,6,13,6,13,6,14,14,7,7,10,4,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,0,7,10,1,15,4,12,8,11,13,1,10,1,4,6,13,6,0,12,8,11,13,1,4,10,1,15,4,12,8,11,13,1,7,9,9,11,13,9,7,13,11,2,13,11,12,7,5,1,15,4,12,8,11,13,1,10,1,10,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"9\", \"7\", \"13\", \"11\"], \"clip_start\": 294.0, \"clip_end\": 300.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,11,2,13,11,12,7,5,13,9,7,13,11,2,13,11,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,2,1,15,4,14,7,7,1,15,4,9,5,0,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,8,11,2,3,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,12,5,11,6,0,7,10,1,15,4,9,5,0,7,10,1,15,4,12,8,11,13,1,10,8,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,6,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,7,9,9,11,13,9,13,7,9,9,11,13,9,7,13,11,7,9,9,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,0,7,10,14,7,7,12,12,7,5,1,15,4,12,8,11,13,1,10,1,6,14,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,7,10,1,15,4,12,8,11,13,1,6,13,6,13,6,13,6,14,14,7,7,10,4,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,0,7,10,1,15,4,12,8,11,13,1,10,1,4,6,13,6,0,12,8,11,13,1,4,10,1,15,4,12,8,11,13,1,7,9,9,11,13,9,7,13,11,2,13,11,12,7,5,1,15,4,12,8,11,13,1,10,1,10,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"1\", \"15\", \"4\", \"12\"], \"clip_start\": 78.0, \"clip_end\": 84.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,11,2,13,11,12,7,5,13,9,7,13,11,2,13,11,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,2,1,15,4,14,7,7,1,15,4,9,5,0,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,8,11,2,3,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,12,5,11,6,0,7,10,1,15,4,9,5,0,7,10,1,15,4,12,8,11,13,1,10,8,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,6,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,7,9,9,11,13,9,13,7,9,9,11,13,9,7,13,11,7,9,9,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,0,7,10,14,7,7,12,12,7,5,1,15,4,12,8,11,13,1,10,1,6,14,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,7,10,1,15,4,12,8,11,13,1,6,13,6,13,6,13,6,14,14,7,7,10,4,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,0,7,10,1,15,4,12,8,11,13,1,10,1,4,6,13,6,0,12,8,11,13,1,4,10,1,15,4,12,8,11,13,1,7,9,9,11,13,9,7,13,11,2,13,11,12,7,5,1,15,4,12,8,11,13,1,10,1,10,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"10\"], \"clip_start\": 178.0, \"clip_end\": 181.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,11,2,13,11,12,7,5,13,9,7,13,11,2,13,11,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,2,1,15,4,14,7,7,1,15,4,9,5,0,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,8,11,2,3,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,12,5,11,6,0,7,10,1,15,4,9,5,0,7,10,1,15,4,12,8,11,13,1,10,8,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,6,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,7,9,9,11,13,9,13,7,9,9,11,13,9,7,13,11,7,9,9,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,0,7,10,14,7,7,12,12,7,5,1,15,4,12,8,11,13,1,10,1,6,14,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,7,10,1,15,4,12,8,11,13,1,6,13,6,13,6,13,6,14,14,7,7,10,4,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,0,7,10,1,15,4,12,8,11,13,1,10,1,4,6,13,6,0,12,8,11,13,1,4,10,1,15,4,12,8,11,13,1,7,9,9,11,13,9,7,13,11,2,13,11,12,7,5,1,15,4,12,8,11,13,1,10,1,10,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"13\", \"9\", \"7\"], \"clip_start\": 302.0, \"clip_end\": 307.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,11,2,13,11,12,7,5,13,9,7,13,11,2,13,11,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,2,1,15,4,14,7,7,1,15,4,9,5,0,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,8,11,2,3,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,12,5,11,6,0,7,10,1,15,4,9,5,0,7,10,1,15,4,12,8,11,13,1,10,8,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,6,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,7,9,9,11,13,9,13,7,9,9,11,13,9,7,13,11,7,9,9,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,0,7,10,14,7,7,12,12,7,5,1,15,4,12,8,11,13,1,10,1,6,14,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,7,10,1,15,4,12,8,11,13,1,6,13,6,13,6,13,6,14,14,7,7,10,4,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,0,7,10,1,15,4,12,8,11,13,1,10,1,4,6,13,6,0,12,8,11,13,1,4,10,1,15,4,12,8,11,13,1,7,9,9,11,13,9,7,13,11,2,13,11,12,7,5,1,15,4,12,8,11,13,1,10,1,10,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"15\", \"4\", \"12\", \"6\"], \"clip_start\": 203.0, \"clip_end\": 208.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,11,2,13,11,12,7,5,13,9,7,13,11,2,13,11,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,2,1,15,4,14,7,7,1,15,4,9,5,0,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,8,11,2,3,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,12,5,11,6,0,7,10,1,15,4,9,5,0,7,10,1,15,4,12,8,11,13,1,10,8,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,6,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,7,9,9,11,13,9,13,7,9,9,11,13,9,7,13,11,7,9,9,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,0,7,10,14,7,7,12,12,7,5,1,15,4,12,8,11,13,1,10,1,6,14,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,7,10,1,15,4,12,8,11,13,1,6,13,6,13,6,13,6,14,14,7,7,10,4,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,0,7,10,1,15,4,12,8,11,13,1,10,1,4,6,13,6,0,12,8,11,13,1,4,10,1,15,4,12,8,11,13,1,7,9,9,11,13,9,7,13,11,2,13,11,12,7,5,1,15,4,12,8,11,13,1,10,1,10,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"13\", \"1\", \"10\", \"1\"], \"clip_start\": 437.0, \"clip_end\": 443.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,11,2,13,11,12,7,5,13,9,7,13,11,2,13,11,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,2,1,15,4,14,7,7,1,15,4,9,5,0,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,8,11,2,3,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,12,5,11,6,0,7,10,1,15,4,9,5,0,7,10,1,15,4,12,8,11,13,1,10,8,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,6,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,7,9,9,11,13,9,13,7,9,9,11,13,9,7,13,11,7,9,9,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,0,7,10,14,7,7,12,12,7,5,1,15,4,12,8,11,13,1,10,1,6,14,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,7,10,1,15,4,12,8,11,13,1,6,13,6,13,6,13,6,14,14,7,7,10,4,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,0,7,10,1,15,4,12,8,11,13,1,10,1,4,6,13,6,0,12,8,11,13,1,4,10,1,15,4,12,8,11,13,1,7,9,9,11,13,9,7,13,11,2,13,11,12,7,5,1,15,4,12,8,11,13,1,10,1,10,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"8\", \"11\", \"13\", \"1\"], \"clip_start\": 385.0, \"clip_end\": 391.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,11,2,13,11,12,7,5,13,9,7,13,11,2,13,11,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,2,1,15,4,14,7,7,1,15,4,9,5,0,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,8,11,2,3,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,12,5,11,6,0,7,10,1,15,4,9,5,0,7,10,1,15,4,12,8,11,13,1,10,8,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,6,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,7,9,9,11,13,9,13,7,9,9,11,13,9,7,13,11,7,9,9,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,0,7,10,14,7,7,12,12,7,5,1,15,4,12,8,11,13,1,10,1,6,14,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,7,10,1,15,4,12,8,11,13,1,6,13,6,13,6,13,6,14,14,7,7,10,4,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,0,7,10,1,15,4,12,8,11,13,1,10,1,4,6,13,6,0,12,8,11,13,1,4,10,1,15,4,12,8,11,13,1,7,9,9,11,13,9,7,13,11,2,13,11,12,7,5,1,15,4,12,8,11,13,1,10,1,10,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\"], \"clip_start\": 482.0, \"clip_end\": 485.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,11,2,13,11,12,7,5,13,9,7,13,11,2,13,11,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,2,1,15,4,14,7,7,1,15,4,9,5,0,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,8,11,2,3,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,12,5,11,6,0,7,10,1,15,4,9,5,0,7,10,1,15,4,12,8,11,13,1,10,8,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,6,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,7,9,9,11,13,9,13,7,9,9,11,13,9,7,13,11,7,9,9,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,0,7,10,14,7,7,12,12,7,5,1,15,4,12,8,11,13,1,10,1,6,14,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,7,10,1,15,4,12,8,11,13,1,6,13,6,13,6,13,6,14,14,7,7,10,4,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,0,7,10,1,15,4,12,8,11,13,1,10,1,4,6,13,6,0,12,8,11,13,1,4,10,1,15,4,12,8,11,13,1,7,9,9,11,13,9,7,13,11,2,13,11,12,7,5,1,15,4,12,8,11,13,1,10,1,10,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"13\", \"3\"], \"clip_start\": 417.0, \"clip_end\": 422.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,11,2,13,11,12,7,5,13,9,7,13,11,2,13,11,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,2,1,15,4,14,7,7,1,15,4,9,5,0,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,8,11,2,3,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,12,5,11,6,0,7,10,1,15,4,9,5,0,7,10,1,15,4,12,8,11,13,1,10,8,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,6,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,7,9,9,11,13,9,13,7,9,9,11,13,9,7,13,11,7,9,9,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,0,7,10,14,7,7,12,12,7,5,1,15,4,12,8,11,13,1,10,1,6,14,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,7,10,1,15,4,12,8,11,13,1,6,13,6,13,6,13,6,14,14,7,7,10,4,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,0,7,10,1,15,4,12,8,11,13,1,10,1,4,6,13,6,0,12,8,11,13,1,4,10,1,15,4,12,8,11,13,1,7,9,9,11,13,9,7,13,11,2,13,11,12,7,5,1,15,4,12,8,11,13,1,10,1,10,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"4\", \"12\"], \"clip_start\": 79.0, \"clip_end\": 84.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q10_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,11,2,13,11,12,7,5,13,9,7,13,11,2,13,11,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,2,1,15,4,14,7,7,1,15,4,9,5,0,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,8,11,2,3,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,12,5,11,6,0,7,10,1,15,4,9,5,0,7,10,1,15,4,12,8,11,13,1,10,8,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,6,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,7,9,9,11,13,9,13,7,9,9,11,13,9,7,13,11,7,9,9,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,0,7,10,14,7,7,12,12,7,5,1,15,4,12,8,11,13,1,10,1,6,14,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,7,10,1,15,4,12,8,11,13,1,6,13,6,13,6,13,6,14,14,7,7,10,4,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,0,7,10,1,15,4,12,8,11,13,1,10,1,4,6,13,6,0,12,8,11,13,1,4,10,1,15,4,12,8,11,13,1,7,9,9,11,13,9,7,13,11,2,13,11,12,7,5,1,15,4,12,8,11,13,1,10,1,10,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"6\", \"13\", \"6\"], \"clip_start\": 205.0, \"clip_end\": 210.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,11,2,13,11,12,7,5,13,9,7,13,11,2,13,11,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,2,1,15,4,14,7,7,1,15,4,9,5,0,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,8,11,2,3,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,12,5,11,6,0,7,10,1,15,4,9,5,0,7,10,1,15,4,12,8,11,13,1,10,8,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,6,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,7,9,9,11,13,9,13,7,9,9,11,13,9,7,13,11,7,9,9,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,0,7,10,14,7,7,12,12,7,5,1,15,4,12,8,11,13,1,10,1,6,14,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,7,10,1,15,4,12,8,11,13,1,6,13,6,13,6,13,6,14,14,7,7,10,4,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,0,7,10,1,15,4,12,8,11,13,1,10,1,4,6,13,6,0,12,8,11,13,1,4,10,1,15,4,12,8,11,13,1,7,9,9,11,13,9,7,13,11,2,13,11,12,7,5,1,15,4,12,8,11,13,1,10,1,10,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"15\", \"9\"], \"clip_start\": 236.0, \"clip_end\": 241.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,11,2,13,11,12,7,5,13,9,7,13,11,2,13,11,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,2,1,15,4,14,7,7,1,15,4,9,5,0,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,8,11,2,3,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,12,5,11,6,0,7,10,1,15,4,9,5,0,7,10,1,15,4,12,8,11,13,1,10,8,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,6,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,7,9,9,11,13,9,13,7,9,9,11,13,9,7,13,11,7,9,9,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,0,7,10,14,7,7,12,12,7,5,1,15,4,12,8,11,13,1,10,1,6,14,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,7,10,1,15,4,12,8,11,13,1,6,13,6,13,6,13,6,14,14,7,7,10,4,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,0,7,10,1,15,4,12,8,11,13,1,10,1,4,6,13,6,0,12,8,11,13,1,4,10,1,15,4,12,8,11,13,1,7,9,9,11,13,9,7,13,11,2,13,11,12,7,5,1,15,4,12,8,11,13,1,10,1,10,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"6\"], \"clip_start\": 419.0, \"clip_end\": 422.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q13_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,11,2,13,11,12,7,5,13,9,7,13,11,2,13,11,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,2,1,15,4,14,7,7,1,15,4,9,5,0,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,8,11,2,3,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,12,5,11,6,0,7,10,1,15,4,9,5,0,7,10,1,15,4,12,8,11,13,1,10,8,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,6,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,7,9,9,11,13,9,13,7,9,9,11,13,9,7,13,11,7,9,9,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,0,7,10,14,7,7,12,12,7,5,1,15,4,12,8,11,13,1,10,1,6,14,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,7,10,1,15,4,12,8,11,13,1,6,13,6,13,6,13,6,14,14,7,7,10,4,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,0,7,10,1,15,4,12,8,11,13,1,10,1,4,6,13,6,0,12,8,11,13,1,4,10,1,15,4,12,8,11,13,1,7,9,9,11,13,9,7,13,11,2,13,11,12,7,5,1,15,4,12,8,11,13,1,10,1,10,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"1\", \"10\", \"1\", \"15\"], \"clip_start\": 234.0, \"clip_end\": 240.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q14_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,11,2,13,11,12,7,5,13,9,7,13,11,2,13,11,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,2,1,15,4,14,7,7,1,15,4,9,5,0,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,8,11,2,3,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,12,5,11,6,0,7,10,1,15,4,9,5,0,7,10,1,15,4,12,8,11,13,1,10,8,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,6,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,7,9,9,11,13,9,13,7,9,9,11,13,9,7,13,11,7,9,9,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,0,7,10,14,7,7,12,12,7,5,1,15,4,12,8,11,13,1,10,1,6,14,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,7,10,1,15,4,12,8,11,13,1,6,13,6,13,6,13,6,14,14,7,7,10,4,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,0,7,10,1,15,4,12,8,11,13,1,10,1,4,6,13,6,0,12,8,11,13,1,4,10,1,15,4,12,8,11,13,1,7,9,9,11,13,9,7,13,11,2,13,11,12,7,5,1,15,4,12,8,11,13,1,10,1,10,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"13\", \"11\", \"2\", \"13\"], \"clip_start\": 490.0, \"clip_end\": 496.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q15_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,11,2,13,11,12,7,5,13,9,7,13,11,2,13,11,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,2,1,15,4,14,7,7,1,15,4,9,5,0,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,8,11,2,3,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,12,5,11,6,0,7,10,1,15,4,9,5,0,7,10,1,15,4,12,8,11,13,1,10,8,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,6,13,6,14,14,7,7,12,12,7,5,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,7,9,9,11,13,9,13,7,9,9,11,13,9,7,13,11,7,9,9,11,13,9,7,13,11,2,13,11,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,0,7,10,14,7,7,12,12,7,5,1,15,4,12,8,11,13,1,10,1,6,14,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,7,10,1,15,4,12,8,11,13,1,6,13,6,13,6,13,6,14,14,7,7,10,4,5,1,15,4,12,8,11,13,1,10,1,10,1,15,4,12,8,11,13,1,0,7,10,1,15,4,12,8,11,13,1,10,1,4,6,13,6,0,12,8,11,13,1,4,10,1,15,4,12,8,11,13,1,7,9,9,11,13,9,7,13,11,2,13,11,12,7,5,1,15,4,12,8,11,13,1,10,1,10,1", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"10\", \"14\", \"14\"], \"clip_start\": 196.0, \"clip_end\": 201.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,13,12,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,1,5,8,4,3,1,8,4,13,8,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,9,3,9,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,15,1,5,8,4,14,8,3,4,3,1,1,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,9,5,8,4,14,8,10,10,1,13,10,10,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,11,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"14\", \"8\", \"10\"], \"clip_start\": 170.0, \"clip_end\": 175.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,13,12,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,1,5,8,4,3,1,8,4,13,8,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,9,3,9,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,15,1,5,8,4,14,8,3,4,3,1,1,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,9,5,8,4,14,8,10,10,1,13,10,10,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,11,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"10\", \"1\"], \"clip_start\": 458.0, \"clip_end\": 461.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,13,12,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,1,5,8,4,3,1,8,4,13,8,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,9,3,9,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,15,1,5,8,4,14,8,3,4,3,1,1,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,9,5,8,4,14,8,10,10,1,13,10,10,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,11,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 81.0, \"clip_end\": 87.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,13,12,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,1,5,8,4,3,1,8,4,13,8,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,9,3,9,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,15,1,5,8,4,14,8,3,4,3,1,1,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,9,5,8,4,14,8,10,10,1,13,10,10,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,11,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"14\", \"14\", \"8\"], \"clip_start\": 188.0, \"clip_end\": 192.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,13,12,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,1,5,8,4,3,1,8,4,13,8,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,9,3,9,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,15,1,5,8,4,14,8,3,4,3,1,1,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,9,5,8,4,14,8,10,10,1,13,10,10,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,11,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"10\", \"10\"], \"clip_start\": 185.0, \"clip_end\": 189.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,13,12,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,1,5,8,4,3,1,8,4,13,8,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,9,3,9,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,15,1,5,8,4,14,8,3,4,3,1,1,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,9,5,8,4,14,8,10,10,1,13,10,10,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,11,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 473.0, \"clip_end\": 477.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,13,12,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,1,5,8,4,3,1,8,4,13,8,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,9,3,9,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,15,1,5,8,4,14,8,3,4,3,1,1,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,9,5,8,4,14,8,10,10,1,13,10,10,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,11,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"8\", \"10\", \"1\"], \"clip_start\": 297.0, \"clip_end\": 302.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,13,12,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,1,5,8,4,3,1,8,4,13,8,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,9,3,9,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,15,1,5,8,4,14,8,3,4,3,1,1,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,9,5,8,4,14,8,10,10,1,13,10,10,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,11,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"14\", \"8\", \"10\", \"1\"], \"clip_start\": 61.0, \"clip_end\": 66.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,13,12,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,1,5,8,4,3,1,8,4,13,8,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,9,3,9,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,15,1,5,8,4,14,8,3,4,3,1,1,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,9,5,8,4,14,8,10,10,1,13,10,10,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,11,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"10\", \"1\", \"13\", \"11\"], \"clip_start\": 468.0, \"clip_end\": 473.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,13,12,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,1,5,8,4,3,1,8,4,13,8,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,9,3,9,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,15,1,5,8,4,14,8,3,4,3,1,1,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,9,5,8,4,14,8,10,10,1,13,10,10,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,11,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 190.0, \"clip_end\": 195.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,13,12,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,1,5,8,4,3,1,8,4,13,8,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,9,3,9,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,15,1,5,8,4,14,8,3,4,3,1,1,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,9,5,8,4,14,8,10,10,1,13,10,10,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,11,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"14\", \"8\", \"10\"], \"clip_start\": 261.0, \"clip_end\": 266.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,13,12,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,1,5,8,4,3,1,8,4,13,8,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,9,3,9,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,15,1,5,8,4,14,8,3,4,3,1,1,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,9,5,8,4,14,8,10,10,1,13,10,10,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,11,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 121.0, \"clip_end\": 127.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,13,12,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,1,5,8,4,3,1,8,4,13,8,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,9,3,9,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,15,1,5,8,4,14,8,3,4,3,1,1,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,9,5,8,4,14,8,10,10,1,13,10,10,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,11,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"10\", \"14\", \"14\", \"8\"], \"clip_start\": 441.0, \"clip_end\": 447.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,13,12,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,1,5,8,4,3,1,8,4,13,8,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,9,3,9,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,15,1,5,8,4,14,8,3,4,3,1,1,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,9,5,8,4,14,8,10,10,1,13,10,10,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,11,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"14\", \"14\", \"8\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,13,12,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,1,5,8,4,3,1,8,4,13,8,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,9,3,9,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,15,1,5,8,4,14,8,3,4,3,1,1,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,9,5,8,4,14,8,10,10,1,13,10,10,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,11,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 275.0, \"clip_end\": 278.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,13,12,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,1,5,8,4,3,1,8,4,13,8,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,9,3,9,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,15,1,5,8,4,14,8,3,4,3,1,1,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,9,5,8,4,14,8,10,10,1,13,10,10,2,13,12,9,3,1,7,2,0,1,10,1,2,5,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,11,5,8,4,14,8,10,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13,10,10,14,14,8,14,8,10,1,13", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,7,4,9,15,13,11,2,0,6,11,4,11,10,9,15,13,11,8,6,2,8,9,13,14,14,7,7,13,11,2,8,5,0,14,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,13,9,15,13,6,0,9,15,13,0,6,0,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,7,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,5,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,15,15,7,12,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,14,12,10,8,15,6,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,11,10,11,2,8,9,2,8,9,13,13,11,2,8,9,2,8,9,13,11,2,8,9,2,5,0,14,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,5,4,11,10,2,2,2,8,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,15,4,9,15,11,10,0,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,5,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,12,10,8,15,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"11\", \"2\", \"8\", \"9\"], \"clip_start\": 471.0, \"clip_end\": 477.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,7,4,9,15,13,11,2,0,6,11,4,11,10,9,15,13,11,8,6,2,8,9,13,14,14,7,7,13,11,2,8,5,0,14,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,13,9,15,13,6,0,9,15,13,0,6,0,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,7,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,5,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,15,15,7,12,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,14,12,10,8,15,6,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,11,10,11,2,8,9,2,8,9,13,13,11,2,8,9,2,8,9,13,11,2,8,9,2,5,0,14,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,5,4,11,10,2,2,2,8,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,15,4,9,15,11,10,0,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,5,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,12,10,8,15,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"2\"], \"clip_start\": 457.0, \"clip_end\": 460.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,7,4,9,15,13,11,2,0,6,11,4,11,10,9,15,13,11,8,6,2,8,9,13,14,14,7,7,13,11,2,8,5,0,14,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,13,9,15,13,6,0,9,15,13,0,6,0,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,7,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,5,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,15,15,7,12,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,14,12,10,8,15,6,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,11,10,11,2,8,9,2,8,9,13,13,11,2,8,9,2,8,9,13,11,2,8,9,2,5,0,14,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,5,4,11,10,2,2,2,8,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,15,4,9,15,11,10,0,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,5,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,12,10,8,15,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"0\", \"6\"], \"clip_start\": 45.0, \"clip_end\": 48.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,7,4,9,15,13,11,2,0,6,11,4,11,10,9,15,13,11,8,6,2,8,9,13,14,14,7,7,13,11,2,8,5,0,14,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,13,9,15,13,6,0,9,15,13,0,6,0,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,7,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,5,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,15,15,7,12,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,14,12,10,8,15,6,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,11,10,11,2,8,9,2,8,9,13,13,11,2,8,9,2,8,9,13,11,2,8,9,2,5,0,14,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,5,4,11,10,2,2,2,8,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,15,4,9,15,11,10,0,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,5,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,12,10,8,15,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"2\", \"5\"], \"clip_start\": 309.0, \"clip_end\": 312.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,7,4,9,15,13,11,2,0,6,11,4,11,10,9,15,13,11,8,6,2,8,9,13,14,14,7,7,13,11,2,8,5,0,14,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,13,9,15,13,6,0,9,15,13,0,6,0,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,7,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,5,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,15,15,7,12,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,14,12,10,8,15,6,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,11,10,11,2,8,9,2,8,9,13,13,11,2,8,9,2,8,9,13,11,2,8,9,2,5,0,14,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,5,4,11,10,2,2,2,8,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,15,4,9,15,11,10,0,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,5,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,12,10,8,15,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"8\", \"9\", \"7\"], \"clip_start\": 35.0, \"clip_end\": 40.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,7,4,9,15,13,11,2,0,6,11,4,11,10,9,15,13,11,8,6,2,8,9,13,14,14,7,7,13,11,2,8,5,0,14,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,13,9,15,13,6,0,9,15,13,0,6,0,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,7,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,5,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,15,15,7,12,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,14,12,10,8,15,6,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,11,10,11,2,8,9,2,8,9,13,13,11,2,8,9,2,8,9,13,11,2,8,9,2,5,0,14,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,5,4,11,10,2,2,2,8,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,15,4,9,15,11,10,0,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,5,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,12,10,8,15,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"8\", \"14\", \"12\"], \"clip_start\": 213.0, \"clip_end\": 218.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,7,4,9,15,13,11,2,0,6,11,4,11,10,9,15,13,11,8,6,2,8,9,13,14,14,7,7,13,11,2,8,5,0,14,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,13,9,15,13,6,0,9,15,13,0,6,0,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,7,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,5,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,15,15,7,12,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,14,12,10,8,15,6,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,11,10,11,2,8,9,2,8,9,13,13,11,2,8,9,2,8,9,13,11,2,8,9,2,5,0,14,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,5,4,11,10,2,2,2,8,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,15,4,9,15,11,10,0,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,5,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,12,10,8,15,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 318.0, \"clip_end\": 322.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,7,4,9,15,13,11,2,0,6,11,4,11,10,9,15,13,11,8,6,2,8,9,13,14,14,7,7,13,11,2,8,5,0,14,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,13,9,15,13,6,0,9,15,13,0,6,0,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,7,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,5,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,15,15,7,12,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,14,12,10,8,15,6,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,11,10,11,2,8,9,2,8,9,13,13,11,2,8,9,2,8,9,13,11,2,8,9,2,5,0,14,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,5,4,11,10,2,2,2,8,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,15,4,9,15,11,10,0,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,5,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,12,10,8,15,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"11\", \"2\", \"8\", \"9\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,7,4,9,15,13,11,2,0,6,11,4,11,10,9,15,13,11,8,6,2,8,9,13,14,14,7,7,13,11,2,8,5,0,14,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,13,9,15,13,6,0,9,15,13,0,6,0,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,7,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,5,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,15,15,7,12,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,14,12,10,8,15,6,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,11,10,11,2,8,9,2,8,9,13,13,11,2,8,9,2,8,9,13,11,2,8,9,2,5,0,14,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,5,4,11,10,2,2,2,8,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,15,4,9,15,11,10,0,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,5,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,12,10,8,15,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"8\", \"9\", \"13\", \"11\"], \"clip_start\": 236.0, \"clip_end\": 241.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,7,4,9,15,13,11,2,0,6,11,4,11,10,9,15,13,11,8,6,2,8,9,13,14,14,7,7,13,11,2,8,5,0,14,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,13,9,15,13,6,0,9,15,13,0,6,0,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,7,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,5,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,15,15,7,12,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,14,12,10,8,15,6,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,11,10,11,2,8,9,2,8,9,13,13,11,2,8,9,2,8,9,13,11,2,8,9,2,5,0,14,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,5,4,11,10,2,2,2,8,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,15,4,9,15,11,10,0,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,5,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,12,10,8,15,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 447.0, \"clip_end\": 451.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,7,4,9,15,13,11,2,0,6,11,4,11,10,9,15,13,11,8,6,2,8,9,13,14,14,7,7,13,11,2,8,5,0,14,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,13,9,15,13,6,0,9,15,13,0,6,0,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,7,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,5,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,15,15,7,12,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,14,12,10,8,15,6,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,11,10,11,2,8,9,2,8,9,13,13,11,2,8,9,2,8,9,13,11,2,8,9,2,5,0,14,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,5,4,11,10,2,2,2,8,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,15,4,9,15,11,10,0,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,5,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,12,10,8,15,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"11\", \"2\", \"0\", \"6\"], \"clip_start\": 43.0, \"clip_end\": 48.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,7,4,9,15,13,11,2,0,6,11,4,11,10,9,15,13,11,8,6,2,8,9,13,14,14,7,7,13,11,2,8,5,0,14,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,13,9,15,13,6,0,9,15,13,0,6,0,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,7,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,5,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,15,15,7,12,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,14,12,10,8,15,6,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,11,10,11,2,8,9,2,8,9,13,13,11,2,8,9,2,8,9,13,11,2,8,9,2,5,0,14,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,5,4,11,10,2,2,2,8,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,15,4,9,15,11,10,0,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,5,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,12,10,8,15,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"2\", \"8\", \"9\"], \"clip_start\": 277.0, \"clip_end\": 281.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,7,4,9,15,13,11,2,0,6,11,4,11,10,9,15,13,11,8,6,2,8,9,13,14,14,7,7,13,11,2,8,5,0,14,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,13,9,15,13,6,0,9,15,13,0,6,0,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,7,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,5,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,15,15,7,12,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,14,12,10,8,15,6,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,11,10,11,2,8,9,2,8,9,13,13,11,2,8,9,2,8,9,13,11,2,8,9,2,5,0,14,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,5,4,11,10,2,2,2,8,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,15,4,9,15,11,10,0,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,5,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,12,10,8,15,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"13\", \"0\", \"2\", \"8\"], \"clip_start\": 266.0, \"clip_end\": 272.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,7,4,9,15,13,11,2,0,6,11,4,11,10,9,15,13,11,8,6,2,8,9,13,14,14,7,7,13,11,2,8,5,0,14,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,13,9,15,13,6,0,9,15,13,0,6,0,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,7,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,5,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,15,15,7,12,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,14,12,10,8,15,6,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,11,10,11,2,8,9,2,8,9,13,13,11,2,8,9,2,8,9,13,11,2,8,9,2,5,0,14,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,5,4,11,10,2,2,2,8,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,15,4,9,15,11,10,0,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,5,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,12,10,8,15,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"9\", \"15\", \"13\", \"11\"], \"clip_start\": 50.0, \"clip_end\": 56.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,7,4,9,15,13,11,2,0,6,11,4,11,10,9,15,13,11,8,6,2,8,9,13,14,14,7,7,13,11,2,8,5,0,14,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,13,9,15,13,6,0,9,15,13,0,6,0,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,7,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,5,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,15,15,7,12,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,14,12,10,8,15,6,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,11,10,11,2,8,9,2,8,9,13,13,11,2,8,9,2,8,9,13,11,2,8,9,2,5,0,14,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,5,4,11,10,2,2,2,8,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,15,4,9,15,11,10,0,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,5,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,12,10,8,15,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"11\", \"2\", \"8\", \"9\", \"5\"], \"clip_start\": 450.0, \"clip_end\": 456.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,15,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,7,4,9,15,13,11,2,0,6,11,4,11,10,9,15,13,11,8,6,2,8,9,13,14,14,7,7,13,11,2,8,5,0,14,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,13,9,15,13,6,0,9,15,13,0,6,0,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,7,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,5,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,15,15,7,12,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,14,12,10,8,15,6,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,0,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,11,10,11,2,8,9,2,8,9,13,13,11,2,8,9,2,8,9,13,11,2,8,9,2,5,0,14,10,8,15,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,5,4,11,10,2,2,2,8,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,15,4,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,15,4,9,15,11,10,0,4,9,15,11,10,0,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,5,4,11,10,2,2,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,12,10,8,15,11,10,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13,11,2,8,9,2,8,9,13", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"12\", \"6\", \"6\"], \"clip_start\": 27.0, \"clip_end\": 33.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,9,1,15,2,14,6,6,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,9,0,8,11,5,7,6,10,7,10,7,10,7,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,8,11,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,2,14,6,6,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,8,11,11,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,11,15,4,11,4,14,12,12,6,14,2,2,3,14,4,2,5,7,6,4,11,4,14,12,12,6,14,2,8,11,11,4,11,4,14,12,12,6,14,2,2,3,3,8,4,6,9,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,10,7,10,7,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 311.0, \"clip_end\": 317.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,9,1,15,2,14,6,6,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,9,0,8,11,5,7,6,10,7,10,7,10,7,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,8,11,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,2,14,6,6,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,8,11,11,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,11,15,4,11,4,14,12,12,6,14,2,2,3,14,4,2,5,7,6,4,11,4,14,12,12,6,14,2,8,11,11,4,11,4,14,12,12,6,14,2,2,3,3,8,4,6,9,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,10,7,10,7,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"8\", \"11\", \"6\", \"6\", \"15\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,9,1,15,2,14,6,6,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,9,0,8,11,5,7,6,10,7,10,7,10,7,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,8,11,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,2,14,6,6,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,8,11,11,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,11,15,4,11,4,14,12,12,6,14,2,2,3,14,4,2,5,7,6,4,11,4,14,12,12,6,14,2,8,11,11,4,11,4,14,12,12,6,14,2,2,3,3,8,4,6,9,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,10,7,10,7,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"6\", \"15\", \"12\", \"6\"], \"clip_start\": 297.0, \"clip_end\": 303.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,9,1,15,2,14,6,6,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,9,0,8,11,5,7,6,10,7,10,7,10,7,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,8,11,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,2,14,6,6,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,8,11,11,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,11,15,4,11,4,14,12,12,6,14,2,2,3,14,4,2,5,7,6,4,11,4,14,12,12,6,14,2,8,11,11,4,11,4,14,12,12,6,14,2,2,3,3,8,4,6,9,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,10,7,10,7,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"1\", \"15\", \"2\", \"5\", \"8\"], \"clip_start\": 329.0, \"clip_end\": 335.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,9,1,15,2,14,6,6,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,9,0,8,11,5,7,6,10,7,10,7,10,7,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,8,11,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,2,14,6,6,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,8,11,11,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,11,15,4,11,4,14,12,12,6,14,2,2,3,14,4,2,5,7,6,4,11,4,14,12,12,6,14,2,8,11,11,4,11,4,14,12,12,6,14,2,2,3,3,8,4,6,9,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,10,7,10,7,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"14\", \"4\", \"11\", \"4\"], \"clip_start\": 254.0, \"clip_end\": 260.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,9,1,15,2,14,6,6,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,9,0,8,11,5,7,6,10,7,10,7,10,7,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,8,11,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,2,14,6,6,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,8,11,11,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,11,15,4,11,4,14,12,12,6,14,2,2,3,14,4,2,5,7,6,4,11,4,14,12,12,6,14,2,8,11,11,4,11,4,14,12,12,6,14,2,2,3,3,8,4,6,9,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,10,7,10,7,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"6\", \"15\"], \"clip_start\": 469.0, \"clip_end\": 473.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,9,1,15,2,14,6,6,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,9,0,8,11,5,7,6,10,7,10,7,10,7,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,8,11,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,2,14,6,6,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,8,11,11,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,11,15,4,11,4,14,12,12,6,14,2,2,3,14,4,2,5,7,6,4,11,4,14,12,12,6,14,2,8,11,11,4,11,4,14,12,12,6,14,2,2,3,3,8,4,6,9,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,10,7,10,7,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"11\", \"4\", \"14\", \"12\"], \"clip_start\": 506.0, \"clip_end\": 512.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,9,1,15,2,14,6,6,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,9,0,8,11,5,7,6,10,7,10,7,10,7,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,8,11,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,2,14,6,6,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,8,11,11,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,11,15,4,11,4,14,12,12,6,14,2,2,3,14,4,2,5,7,6,4,11,4,14,12,12,6,14,2,8,11,11,4,11,4,14,12,12,6,14,2,2,3,3,8,4,6,9,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,10,7,10,7,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"6\", \"15\"], \"clip_start\": 196.0, \"clip_end\": 200.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,9,1,15,2,14,6,6,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,9,0,8,11,5,7,6,10,7,10,7,10,7,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,8,11,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,2,14,6,6,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,8,11,11,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,11,15,4,11,4,14,12,12,6,14,2,2,3,14,4,2,5,7,6,4,11,4,14,12,12,6,14,2,8,11,11,4,11,4,14,12,12,6,14,2,2,3,3,8,4,6,9,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,10,7,10,7,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 506.0, \"clip_end\": 509.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,9,1,15,2,14,6,6,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,9,0,8,11,5,7,6,10,7,10,7,10,7,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,8,11,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,2,14,6,6,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,8,11,11,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,11,15,4,11,4,14,12,12,6,14,2,2,3,14,4,2,5,7,6,4,11,4,14,12,12,6,14,2,8,11,11,4,11,4,14,12,12,6,14,2,2,3,3,8,4,6,9,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,10,7,10,7,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"6\", \"6\", \"12\"], \"clip_start\": 379.0, \"clip_end\": 384.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,9,1,15,2,14,6,6,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,9,0,8,11,5,7,6,10,7,10,7,10,7,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,8,11,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,2,14,6,6,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,8,11,11,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,11,15,4,11,4,14,12,12,6,14,2,2,3,14,4,2,5,7,6,4,11,4,14,12,12,6,14,2,8,11,11,4,11,4,14,12,12,6,14,2,2,3,3,8,4,6,9,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,10,7,10,7,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"12\"], \"clip_start\": 470.0, \"clip_end\": 474.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,9,1,15,2,14,6,6,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,9,0,8,11,5,7,6,10,7,10,7,10,7,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,8,11,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,2,14,6,6,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,8,11,11,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,11,15,4,11,4,14,12,12,6,14,2,2,3,14,4,2,5,7,6,4,11,4,14,12,12,6,14,2,8,11,11,4,11,4,14,12,12,6,14,2,2,3,3,8,4,6,9,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,10,7,10,7,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"4\", \"11\", \"4\"], \"clip_start\": 346.0, \"clip_end\": 351.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,9,1,15,2,14,6,6,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,9,0,8,11,5,7,6,10,7,10,7,10,7,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,8,11,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,2,14,6,6,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,8,11,11,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,11,15,4,11,4,14,12,12,6,14,2,2,3,14,4,2,5,7,6,4,11,4,14,12,12,6,14,2,8,11,11,4,11,4,14,12,12,6,14,2,2,3,3,8,4,6,9,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,10,7,10,7,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 266.0, \"clip_end\": 272.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,9,1,15,2,14,6,6,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,9,0,8,11,5,7,6,10,7,10,7,10,7,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,8,11,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,2,14,6,6,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,8,11,11,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,11,15,4,11,4,14,12,12,6,14,2,2,3,14,4,2,5,7,6,4,11,4,14,12,12,6,14,2,8,11,11,4,11,4,14,12,12,6,14,2,2,3,3,8,4,6,9,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,10,7,10,7,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"6\", \"6\"], \"clip_start\": 36.0, \"clip_end\": 40.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,9,1,15,2,14,6,6,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,9,0,8,11,5,7,6,10,7,10,7,10,7,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,8,11,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,2,14,6,6,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,8,11,11,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,11,15,4,11,4,14,12,12,6,14,2,2,3,14,4,2,5,7,6,4,11,4,14,12,12,6,14,2,8,11,11,4,11,4,14,12,12,6,14,2,2,3,3,8,4,6,9,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,10,7,10,7,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"6\", \"6\", \"15\"], \"clip_start\": 375.0, \"clip_end\": 380.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,9,1,15,2,14,6,6,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,9,0,8,11,5,7,6,10,7,10,7,10,7,2,14,6,6,4,11,4,14,12,12,6,14,2,2,3,14,6,4,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,8,11,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,2,14,6,6,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,8,11,11,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,4,11,4,14,12,12,6,14,2,2,3,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,11,15,4,11,4,14,12,12,6,14,2,2,3,14,4,2,5,7,6,4,11,4,14,12,12,6,14,2,8,11,11,4,11,4,14,12,12,6,14,2,2,3,3,8,4,6,9,1,15,2,5,8,11,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,6,12,6,6,15,12,6,10,7,10,7,10,7,4,11,4,14,12,12,6,14,2,2,3,14,4,11,4,14,12", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"11\", \"11\", \"13\", \"4\"], \"clip_start\": 432.0, \"clip_end\": 438.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,4,9,12,8,6,5,13,4,11,3,4,9,8,6,5,11,12,8,13,4,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,12,15,14,12,15,14,0,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,1,4,9,8,6,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,9,13,4,11,11,13,4,11,11,13,4,11,11,1,8,13,4,0,0,2,2,13,4,11,11,13,4,5,11,12,15,14,0,8,13,4,12,12,15,14,0,9,5,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,1,0,12,8,13,4,13,4,1,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,9,3,4,4,9,8,8,13,4,12,4,9,8,6,5,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,5,11,12,15,14,0,13,4,11,11,13,4,11,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,0,2,2,7,11,12,15,14,0,0,2,2,11,12,8,6,5,12,8,13,12,15,14,0,7,13,7,15,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"11\", \"13\"], \"clip_start\": 91.0, \"clip_end\": 94.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,4,9,12,8,6,5,13,4,11,3,4,9,8,6,5,11,12,8,13,4,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,12,15,14,12,15,14,0,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,1,4,9,8,6,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,9,13,4,11,11,13,4,11,11,13,4,11,11,1,8,13,4,0,0,2,2,13,4,11,11,13,4,5,11,12,15,14,0,8,13,4,12,12,15,14,0,9,5,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,1,0,12,8,13,4,13,4,1,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,9,3,4,4,9,8,8,13,4,12,4,9,8,6,5,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,5,11,12,15,14,0,13,4,11,11,13,4,11,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,0,2,2,7,11,12,15,14,0,0,2,2,11,12,8,6,5,12,8,13,12,15,14,0,7,13,7,15,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"11\", \"13\", \"4\", \"11\"], \"clip_start\": 434.0, \"clip_end\": 439.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,4,9,12,8,6,5,13,4,11,3,4,9,8,6,5,11,12,8,13,4,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,12,15,14,12,15,14,0,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,1,4,9,8,6,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,9,13,4,11,11,13,4,11,11,13,4,11,11,1,8,13,4,0,0,2,2,13,4,11,11,13,4,5,11,12,15,14,0,8,13,4,12,12,15,14,0,9,5,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,1,0,12,8,13,4,13,4,1,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,9,3,4,4,9,8,8,13,4,12,4,9,8,6,5,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,5,11,12,15,14,0,13,4,11,11,13,4,11,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,0,2,2,7,11,12,15,14,0,0,2,2,11,12,8,6,5,12,8,13,12,15,14,0,7,13,7,15,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"4\", \"11\"], \"clip_start\": 360.0, \"clip_end\": 364.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,4,9,12,8,6,5,13,4,11,3,4,9,8,6,5,11,12,8,13,4,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,12,15,14,12,15,14,0,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,1,4,9,8,6,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,9,13,4,11,11,13,4,11,11,13,4,11,11,1,8,13,4,0,0,2,2,13,4,11,11,13,4,5,11,12,15,14,0,8,13,4,12,12,15,14,0,9,5,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,1,0,12,8,13,4,13,4,1,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,9,3,4,4,9,8,8,13,4,12,4,9,8,6,5,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,5,11,12,15,14,0,13,4,11,11,13,4,11,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,0,2,2,7,11,12,15,14,0,0,2,2,11,12,8,6,5,12,8,13,12,15,14,0,7,13,7,15,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 68.0, \"clip_end\": 71.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,4,9,12,8,6,5,13,4,11,3,4,9,8,6,5,11,12,8,13,4,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,12,15,14,12,15,14,0,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,1,4,9,8,6,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,9,13,4,11,11,13,4,11,11,13,4,11,11,1,8,13,4,0,0,2,2,13,4,11,11,13,4,5,11,12,15,14,0,8,13,4,12,12,15,14,0,9,5,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,1,0,12,8,13,4,13,4,1,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,9,3,4,4,9,8,8,13,4,12,4,9,8,6,5,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,5,11,12,15,14,0,13,4,11,11,13,4,11,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,0,2,2,7,11,12,15,14,0,0,2,2,11,12,8,6,5,12,8,13,12,15,14,0,7,13,7,15,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"0\", \"9\", \"5\", \"12\"], \"clip_start\": 157.0, \"clip_end\": 163.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,4,9,12,8,6,5,13,4,11,3,4,9,8,6,5,11,12,8,13,4,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,12,15,14,12,15,14,0,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,1,4,9,8,6,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,9,13,4,11,11,13,4,11,11,13,4,11,11,1,8,13,4,0,0,2,2,13,4,11,11,13,4,5,11,12,15,14,0,8,13,4,12,12,15,14,0,9,5,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,1,0,12,8,13,4,13,4,1,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,9,3,4,4,9,8,8,13,4,12,4,9,8,6,5,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,5,11,12,15,14,0,13,4,11,11,13,4,11,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,0,2,2,7,11,12,15,14,0,0,2,2,11,12,8,6,5,12,8,13,12,15,14,0,7,13,7,15,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"11\", \"11\"], \"clip_start\": 329.0, \"clip_end\": 333.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,4,9,12,8,6,5,13,4,11,3,4,9,8,6,5,11,12,8,13,4,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,12,15,14,12,15,14,0,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,1,4,9,8,6,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,9,13,4,11,11,13,4,11,11,13,4,11,11,1,8,13,4,0,0,2,2,13,4,11,11,13,4,5,11,12,15,14,0,8,13,4,12,12,15,14,0,9,5,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,1,0,12,8,13,4,13,4,1,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,9,3,4,4,9,8,8,13,4,12,4,9,8,6,5,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,5,11,12,15,14,0,13,4,11,11,13,4,11,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,0,2,2,7,11,12,15,14,0,0,2,2,11,12,8,6,5,12,8,13,12,15,14,0,7,13,7,15,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"4\", \"8\", \"6\", \"0\"], \"clip_start\": 455.0, \"clip_end\": 461.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,4,9,12,8,6,5,13,4,11,3,4,9,8,6,5,11,12,8,13,4,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,12,15,14,12,15,14,0,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,1,4,9,8,6,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,9,13,4,11,11,13,4,11,11,13,4,11,11,1,8,13,4,0,0,2,2,13,4,11,11,13,4,5,11,12,15,14,0,8,13,4,12,12,15,14,0,9,5,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,1,0,12,8,13,4,13,4,1,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,9,3,4,4,9,8,8,13,4,12,4,9,8,6,5,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,5,11,12,15,14,0,13,4,11,11,13,4,11,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,0,2,2,7,11,12,15,14,0,0,2,2,11,12,8,6,5,12,8,13,12,15,14,0,7,13,7,15,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"7\"], \"clip_start\": 96.0, \"clip_end\": 99.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q8_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,4,9,12,8,6,5,13,4,11,3,4,9,8,6,5,11,12,8,13,4,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,12,15,14,12,15,14,0,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,1,4,9,8,6,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,9,13,4,11,11,13,4,11,11,13,4,11,11,1,8,13,4,0,0,2,2,13,4,11,11,13,4,5,11,12,15,14,0,8,13,4,12,12,15,14,0,9,5,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,1,0,12,8,13,4,13,4,1,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,9,3,4,4,9,8,8,13,4,12,4,9,8,6,5,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,5,11,12,15,14,0,13,4,11,11,13,4,11,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,0,2,2,7,11,12,15,14,0,0,2,2,11,12,8,6,5,12,8,13,12,15,14,0,7,13,7,15,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"0\", \"15\"], \"clip_start\": 170.0, \"clip_end\": 174.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,4,9,12,8,6,5,13,4,11,3,4,9,8,6,5,11,12,8,13,4,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,12,15,14,12,15,14,0,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,1,4,9,8,6,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,9,13,4,11,11,13,4,11,11,13,4,11,11,1,8,13,4,0,0,2,2,13,4,11,11,13,4,5,11,12,15,14,0,8,13,4,12,12,15,14,0,9,5,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,1,0,12,8,13,4,13,4,1,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,9,3,4,4,9,8,8,13,4,12,4,9,8,6,5,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,5,11,12,15,14,0,13,4,11,11,13,4,11,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,0,2,2,7,11,12,15,14,0,0,2,2,11,12,8,6,5,12,8,13,12,15,14,0,7,13,7,15,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"11\", \"1\"], \"clip_start\": 98.0, \"clip_end\": 102.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q10_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,4,9,12,8,6,5,13,4,11,3,4,9,8,6,5,11,12,8,13,4,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,12,15,14,12,15,14,0,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,1,4,9,8,6,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,9,13,4,11,11,13,4,11,11,13,4,11,11,1,8,13,4,0,0,2,2,13,4,11,11,13,4,5,11,12,15,14,0,8,13,4,12,12,15,14,0,9,5,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,1,0,12,8,13,4,13,4,1,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,9,3,4,4,9,8,8,13,4,12,4,9,8,6,5,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,5,11,12,15,14,0,13,4,11,11,13,4,11,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,0,2,2,7,11,12,15,14,0,0,2,2,11,12,8,6,5,12,8,13,12,15,14,0,7,13,7,15,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"11\", \"5\", \"11\", \"12\"], \"clip_start\": 316.0, \"clip_end\": 322.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q11_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,4,9,12,8,6,5,13,4,11,3,4,9,8,6,5,11,12,8,13,4,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,12,15,14,12,15,14,0,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,1,4,9,8,6,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,9,13,4,11,11,13,4,11,11,13,4,11,11,1,8,13,4,0,0,2,2,13,4,11,11,13,4,5,11,12,15,14,0,8,13,4,12,12,15,14,0,9,5,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,1,0,12,8,13,4,13,4,1,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,9,3,4,4,9,8,8,13,4,12,4,9,8,6,5,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,5,11,12,15,14,0,13,4,11,11,13,4,11,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,0,2,2,7,11,12,15,14,0,0,2,2,11,12,8,6,5,12,8,13,12,15,14,0,7,13,7,15,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"9\", \"8\", \"2\", \"5\"], \"clip_start\": 451.0, \"clip_end\": 457.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,4,9,12,8,6,5,13,4,11,3,4,9,8,6,5,11,12,8,13,4,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,12,15,14,12,15,14,0,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,1,4,9,8,6,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,9,13,4,11,11,13,4,11,11,13,4,11,11,1,8,13,4,0,0,2,2,13,4,11,11,13,4,5,11,12,15,14,0,8,13,4,12,12,15,14,0,9,5,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,1,0,12,8,13,4,13,4,1,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,9,3,4,4,9,8,8,13,4,12,4,9,8,6,5,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,5,11,12,15,14,0,13,4,11,11,13,4,11,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,0,2,2,7,11,12,15,14,0,0,2,2,11,12,8,6,5,12,8,13,12,15,14,0,7,13,7,15,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"4\", \"11\"], \"clip_start\": 328.0, \"clip_end\": 332.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,4,9,12,8,6,5,13,4,11,3,4,9,8,6,5,11,12,8,13,4,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,12,15,14,12,15,14,0,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,1,4,9,8,6,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,9,13,4,11,11,13,4,11,11,13,4,11,11,1,8,13,4,0,0,2,2,13,4,11,11,13,4,5,11,12,15,14,0,8,13,4,12,12,15,14,0,9,5,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,1,0,12,8,13,4,13,4,1,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,9,3,4,4,9,8,8,13,4,12,4,9,8,6,5,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,5,11,12,15,14,0,13,4,11,11,13,4,11,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,0,2,2,7,11,12,15,14,0,0,2,2,11,12,8,6,5,12,8,13,12,15,14,0,7,13,7,15,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"15\", \"14\", \"12\", \"15\"], \"clip_start\": 38.0, \"clip_end\": 44.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q14_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,4,9,12,8,6,5,13,4,11,3,4,9,8,6,5,11,12,8,13,4,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,12,15,14,12,15,14,0,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,1,4,9,8,6,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,9,13,4,11,11,13,4,11,11,13,4,11,11,1,8,13,4,0,0,2,2,13,4,11,11,13,4,5,11,12,15,14,0,8,13,4,12,12,15,14,0,9,5,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,1,0,12,8,13,4,13,4,1,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,9,3,4,4,9,8,8,13,4,12,4,9,8,6,5,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,5,11,12,15,14,0,13,4,11,11,13,4,11,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,0,2,2,7,11,12,15,14,0,0,2,2,11,12,8,6,5,12,8,13,12,15,14,0,7,13,7,15,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"7\", \"11\", \"12\"], \"clip_start\": 136.0, \"clip_end\": 141.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q15_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,4,9,12,8,6,5,13,4,11,3,4,9,8,6,5,11,12,8,13,4,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,12,15,14,12,15,14,0,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,1,4,9,8,6,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,9,13,4,11,11,13,4,11,11,13,4,11,11,1,8,13,4,0,0,2,2,13,4,11,11,13,4,5,11,12,15,14,0,8,13,4,12,12,15,14,0,9,5,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,1,0,12,8,13,4,13,4,1,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,9,3,4,4,9,8,8,13,4,12,4,9,8,6,5,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,5,11,12,15,14,0,13,4,11,11,13,4,11,5,11,12,15,14,0,12,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,0,2,2,7,11,12,15,14,0,0,2,2,11,12,8,6,5,12,8,13,12,15,14,0,7,13,7,15,4,9,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11,13,4,11,11", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"13\", \"10\", \"13\", \"0\"], \"clip_start\": 462.0, \"clip_end\": 467.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,13,4,15,8,12,8,13,5,0,14,0,14,6,3,8,13,5,13,3,8,13,5,0,14,13,4,15,8,12,8,13,5,10,13,15,8,13,5,13,10,13,10,4,15,8,13,5,13,10,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,14,0,14,13,4,15,14,13,4,13,2,3,8,13,5,13,10,13,10,13,0,4,15,8,13,5,13,10,13,10,13,6,12,14,13,4,3,6,12,13,13,2,14,11,2,8,13,5,13,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,13,3,8,13,5,0,14,6,12,14,11,12,5,0,14,11,14,4,7,5,0,14,0,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,10,13,0,14,11,14,13,4,8,13,5,10,13,15,8,13,5,0,14,13,4,3,6,1,13,2,14,11,2,12,7,7,12,14,13,4,3,6,12,6,12,3,8,13,5,0,14,11,14,11,5,13,0,14,13,4,3,6,12,15,8,13,5,13,3,8,13,5,13,10,13,0,4,2,8,13,5,10,13,0,14,11,14,13,4,15,8,12,8,13,5,10,13,10,13,0,14,13,4,15,8,12,12,14,14,11,10,13,9,6,12,3,8,13,5,0,14,0,14,11,2,8,13,5,0,14,0,14,0,13,2,3,8,13,5,13,10,13,10,7,10,13,10,13,10,13,10,13,10,13,10,13,0,14,13,4,15,8,12,8,13,5,13,3,8,13,5,0,14,13,4,15,8,9,14,13,4,15,8,12,8,13,5,13,10,13,0,4,7,9,11,2,8,13,5,0,14,13,4,15,8,12,8,13,5,13,10,15,8,13,5,10,7,7,5,13,6,12,14,13,4,3,6,12,13,9,6,12,14,5,13,0,4,2,8,13,5,13,10,13,0,4,15,8,1,2,12,7,12,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,10,13,0,14,13,4,15,8,12,12,14,11,10,13,9,1,13,9,6,12,3,8,13,5,13,10,13,0,14,0,14,13,4,13,6,12,14,11,10,13,9,6,12,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,4,2,8,13,5,0,14,13,4,3,6,12,13", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"9\", \"6\", \"12\"], \"clip_start\": 398.0, \"clip_end\": 403.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,13,4,15,8,12,8,13,5,0,14,0,14,6,3,8,13,5,13,3,8,13,5,0,14,13,4,15,8,12,8,13,5,10,13,15,8,13,5,13,10,13,10,4,15,8,13,5,13,10,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,14,0,14,13,4,15,14,13,4,13,2,3,8,13,5,13,10,13,10,13,0,4,15,8,13,5,13,10,13,10,13,6,12,14,13,4,3,6,12,13,13,2,14,11,2,8,13,5,13,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,13,3,8,13,5,0,14,6,12,14,11,12,5,0,14,11,14,4,7,5,0,14,0,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,10,13,0,14,11,14,13,4,8,13,5,10,13,15,8,13,5,0,14,13,4,3,6,1,13,2,14,11,2,12,7,7,12,14,13,4,3,6,12,6,12,3,8,13,5,0,14,11,14,11,5,13,0,14,13,4,3,6,12,15,8,13,5,13,3,8,13,5,13,10,13,0,4,2,8,13,5,10,13,0,14,11,14,13,4,15,8,12,8,13,5,10,13,10,13,0,14,13,4,15,8,12,12,14,14,11,10,13,9,6,12,3,8,13,5,0,14,0,14,11,2,8,13,5,0,14,0,14,0,13,2,3,8,13,5,13,10,13,10,7,10,13,10,13,10,13,10,13,10,13,10,13,0,14,13,4,15,8,12,8,13,5,13,3,8,13,5,0,14,13,4,15,8,9,14,13,4,15,8,12,8,13,5,13,10,13,0,4,7,9,11,2,8,13,5,0,14,13,4,15,8,12,8,13,5,13,10,15,8,13,5,10,7,7,5,13,6,12,14,13,4,3,6,12,13,9,6,12,14,5,13,0,4,2,8,13,5,13,10,13,0,4,15,8,1,2,12,7,12,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,10,13,0,14,13,4,15,8,12,12,14,11,10,13,9,1,13,9,6,12,3,8,13,5,13,10,13,0,14,0,14,13,4,13,6,12,14,11,10,13,9,6,12,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,4,2,8,13,5,0,14,13,4,3,6,12,13", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"13\", \"10\"], \"clip_start\": 81.0, \"clip_end\": 85.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,13,4,15,8,12,8,13,5,0,14,0,14,6,3,8,13,5,13,3,8,13,5,0,14,13,4,15,8,12,8,13,5,10,13,15,8,13,5,13,10,13,10,4,15,8,13,5,13,10,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,14,0,14,13,4,15,14,13,4,13,2,3,8,13,5,13,10,13,10,13,0,4,15,8,13,5,13,10,13,10,13,6,12,14,13,4,3,6,12,13,13,2,14,11,2,8,13,5,13,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,13,3,8,13,5,0,14,6,12,14,11,12,5,0,14,11,14,4,7,5,0,14,0,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,10,13,0,14,11,14,13,4,8,13,5,10,13,15,8,13,5,0,14,13,4,3,6,1,13,2,14,11,2,12,7,7,12,14,13,4,3,6,12,6,12,3,8,13,5,0,14,11,14,11,5,13,0,14,13,4,3,6,12,15,8,13,5,13,3,8,13,5,13,10,13,0,4,2,8,13,5,10,13,0,14,11,14,13,4,15,8,12,8,13,5,10,13,10,13,0,14,13,4,15,8,12,12,14,14,11,10,13,9,6,12,3,8,13,5,0,14,0,14,11,2,8,13,5,0,14,0,14,0,13,2,3,8,13,5,13,10,13,10,7,10,13,10,13,10,13,10,13,10,13,10,13,0,14,13,4,15,8,12,8,13,5,13,3,8,13,5,0,14,13,4,15,8,9,14,13,4,15,8,12,8,13,5,13,10,13,0,4,7,9,11,2,8,13,5,0,14,13,4,15,8,12,8,13,5,13,10,15,8,13,5,10,7,7,5,13,6,12,14,13,4,3,6,12,13,9,6,12,14,5,13,0,4,2,8,13,5,13,10,13,0,4,15,8,1,2,12,7,12,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,10,13,0,14,13,4,15,8,12,12,14,11,10,13,9,1,13,9,6,12,3,8,13,5,13,10,13,0,14,0,14,13,4,13,6,12,14,11,10,13,9,6,12,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,4,2,8,13,5,0,14,13,4,3,6,12,13", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 139.0, \"clip_end\": 142.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,13,4,15,8,12,8,13,5,0,14,0,14,6,3,8,13,5,13,3,8,13,5,0,14,13,4,15,8,12,8,13,5,10,13,15,8,13,5,13,10,13,10,4,15,8,13,5,13,10,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,14,0,14,13,4,15,14,13,4,13,2,3,8,13,5,13,10,13,10,13,0,4,15,8,13,5,13,10,13,10,13,6,12,14,13,4,3,6,12,13,13,2,14,11,2,8,13,5,13,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,13,3,8,13,5,0,14,6,12,14,11,12,5,0,14,11,14,4,7,5,0,14,0,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,10,13,0,14,11,14,13,4,8,13,5,10,13,15,8,13,5,0,14,13,4,3,6,1,13,2,14,11,2,12,7,7,12,14,13,4,3,6,12,6,12,3,8,13,5,0,14,11,14,11,5,13,0,14,13,4,3,6,12,15,8,13,5,13,3,8,13,5,13,10,13,0,4,2,8,13,5,10,13,0,14,11,14,13,4,15,8,12,8,13,5,10,13,10,13,0,14,13,4,15,8,12,12,14,14,11,10,13,9,6,12,3,8,13,5,0,14,0,14,11,2,8,13,5,0,14,0,14,0,13,2,3,8,13,5,13,10,13,10,7,10,13,10,13,10,13,10,13,10,13,10,13,0,14,13,4,15,8,12,8,13,5,13,3,8,13,5,0,14,13,4,15,8,9,14,13,4,15,8,12,8,13,5,13,10,13,0,4,7,9,11,2,8,13,5,0,14,13,4,15,8,12,8,13,5,13,10,15,8,13,5,10,7,7,5,13,6,12,14,13,4,3,6,12,13,9,6,12,14,5,13,0,4,2,8,13,5,13,10,13,0,4,15,8,1,2,12,7,12,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,10,13,0,14,13,4,15,8,12,12,14,11,10,13,9,1,13,9,6,12,3,8,13,5,13,10,13,0,14,0,14,13,4,13,6,12,14,11,10,13,9,6,12,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,4,2,8,13,5,0,14,13,4,3,6,12,13", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"8\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,13,4,15,8,12,8,13,5,0,14,0,14,6,3,8,13,5,13,3,8,13,5,0,14,13,4,15,8,12,8,13,5,10,13,15,8,13,5,13,10,13,10,4,15,8,13,5,13,10,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,14,0,14,13,4,15,14,13,4,13,2,3,8,13,5,13,10,13,10,13,0,4,15,8,13,5,13,10,13,10,13,6,12,14,13,4,3,6,12,13,13,2,14,11,2,8,13,5,13,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,13,3,8,13,5,0,14,6,12,14,11,12,5,0,14,11,14,4,7,5,0,14,0,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,10,13,0,14,11,14,13,4,8,13,5,10,13,15,8,13,5,0,14,13,4,3,6,1,13,2,14,11,2,12,7,7,12,14,13,4,3,6,12,6,12,3,8,13,5,0,14,11,14,11,5,13,0,14,13,4,3,6,12,15,8,13,5,13,3,8,13,5,13,10,13,0,4,2,8,13,5,10,13,0,14,11,14,13,4,15,8,12,8,13,5,10,13,10,13,0,14,13,4,15,8,12,12,14,14,11,10,13,9,6,12,3,8,13,5,0,14,0,14,11,2,8,13,5,0,14,0,14,0,13,2,3,8,13,5,13,10,13,10,7,10,13,10,13,10,13,10,13,10,13,10,13,0,14,13,4,15,8,12,8,13,5,13,3,8,13,5,0,14,13,4,15,8,9,14,13,4,15,8,12,8,13,5,13,10,13,0,4,7,9,11,2,8,13,5,0,14,13,4,15,8,12,8,13,5,13,10,15,8,13,5,10,7,7,5,13,6,12,14,13,4,3,6,12,13,9,6,12,14,5,13,0,4,2,8,13,5,13,10,13,0,4,15,8,1,2,12,7,12,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,10,13,0,14,13,4,15,8,12,12,14,11,10,13,9,1,13,9,6,12,3,8,13,5,13,10,13,0,14,0,14,13,4,13,6,12,14,11,10,13,9,6,12,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,4,2,8,13,5,0,14,13,4,3,6,12,13", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"11\", \"6\", \"1\"], \"clip_start\": 475.0, \"clip_end\": 480.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q5_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,13,4,15,8,12,8,13,5,0,14,0,14,6,3,8,13,5,13,3,8,13,5,0,14,13,4,15,8,12,8,13,5,10,13,15,8,13,5,13,10,13,10,4,15,8,13,5,13,10,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,14,0,14,13,4,15,14,13,4,13,2,3,8,13,5,13,10,13,10,13,0,4,15,8,13,5,13,10,13,10,13,6,12,14,13,4,3,6,12,13,13,2,14,11,2,8,13,5,13,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,13,3,8,13,5,0,14,6,12,14,11,12,5,0,14,11,14,4,7,5,0,14,0,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,10,13,0,14,11,14,13,4,8,13,5,10,13,15,8,13,5,0,14,13,4,3,6,1,13,2,14,11,2,12,7,7,12,14,13,4,3,6,12,6,12,3,8,13,5,0,14,11,14,11,5,13,0,14,13,4,3,6,12,15,8,13,5,13,3,8,13,5,13,10,13,0,4,2,8,13,5,10,13,0,14,11,14,13,4,15,8,12,8,13,5,10,13,10,13,0,14,13,4,15,8,12,12,14,14,11,10,13,9,6,12,3,8,13,5,0,14,0,14,11,2,8,13,5,0,14,0,14,0,13,2,3,8,13,5,13,10,13,10,7,10,13,10,13,10,13,10,13,10,13,10,13,0,14,13,4,15,8,12,8,13,5,13,3,8,13,5,0,14,13,4,15,8,9,14,13,4,15,8,12,8,13,5,13,10,13,0,4,7,9,11,2,8,13,5,0,14,13,4,15,8,12,8,13,5,13,10,15,8,13,5,10,7,7,5,13,6,12,14,13,4,3,6,12,13,9,6,12,14,5,13,0,4,2,8,13,5,13,10,13,0,4,15,8,1,2,12,7,12,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,10,13,0,14,13,4,15,8,12,12,14,11,10,13,9,1,13,9,6,12,3,8,13,5,13,10,13,0,14,0,14,13,4,13,6,12,14,11,10,13,9,6,12,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,4,2,8,13,5,0,14,13,4,3,6,12,13", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"8\", \"13\", \"5\"], \"clip_start\": 491.0, \"clip_end\": 495.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,13,4,15,8,12,8,13,5,0,14,0,14,6,3,8,13,5,13,3,8,13,5,0,14,13,4,15,8,12,8,13,5,10,13,15,8,13,5,13,10,13,10,4,15,8,13,5,13,10,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,14,0,14,13,4,15,14,13,4,13,2,3,8,13,5,13,10,13,10,13,0,4,15,8,13,5,13,10,13,10,13,6,12,14,13,4,3,6,12,13,13,2,14,11,2,8,13,5,13,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,13,3,8,13,5,0,14,6,12,14,11,12,5,0,14,11,14,4,7,5,0,14,0,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,10,13,0,14,11,14,13,4,8,13,5,10,13,15,8,13,5,0,14,13,4,3,6,1,13,2,14,11,2,12,7,7,12,14,13,4,3,6,12,6,12,3,8,13,5,0,14,11,14,11,5,13,0,14,13,4,3,6,12,15,8,13,5,13,3,8,13,5,13,10,13,0,4,2,8,13,5,10,13,0,14,11,14,13,4,15,8,12,8,13,5,10,13,10,13,0,14,13,4,15,8,12,12,14,14,11,10,13,9,6,12,3,8,13,5,0,14,0,14,11,2,8,13,5,0,14,0,14,0,13,2,3,8,13,5,13,10,13,10,7,10,13,10,13,10,13,10,13,10,13,10,13,0,14,13,4,15,8,12,8,13,5,13,3,8,13,5,0,14,13,4,15,8,9,14,13,4,15,8,12,8,13,5,13,10,13,0,4,7,9,11,2,8,13,5,0,14,13,4,15,8,12,8,13,5,13,10,15,8,13,5,10,7,7,5,13,6,12,14,13,4,3,6,12,13,9,6,12,14,5,13,0,4,2,8,13,5,13,10,13,0,4,15,8,1,2,12,7,12,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,10,13,0,14,13,4,15,8,12,12,14,11,10,13,9,1,13,9,6,12,3,8,13,5,13,10,13,0,14,0,14,13,4,13,6,12,14,11,10,13,9,6,12,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,4,2,8,13,5,0,14,13,4,3,6,12,13", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"13\", \"5\", \"13\"], \"clip_start\": 459.0, \"clip_end\": 464.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q7_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,13,4,15,8,12,8,13,5,0,14,0,14,6,3,8,13,5,13,3,8,13,5,0,14,13,4,15,8,12,8,13,5,10,13,15,8,13,5,13,10,13,10,4,15,8,13,5,13,10,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,14,0,14,13,4,15,14,13,4,13,2,3,8,13,5,13,10,13,10,13,0,4,15,8,13,5,13,10,13,10,13,6,12,14,13,4,3,6,12,13,13,2,14,11,2,8,13,5,13,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,13,3,8,13,5,0,14,6,12,14,11,12,5,0,14,11,14,4,7,5,0,14,0,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,10,13,0,14,11,14,13,4,8,13,5,10,13,15,8,13,5,0,14,13,4,3,6,1,13,2,14,11,2,12,7,7,12,14,13,4,3,6,12,6,12,3,8,13,5,0,14,11,14,11,5,13,0,14,13,4,3,6,12,15,8,13,5,13,3,8,13,5,13,10,13,0,4,2,8,13,5,10,13,0,14,11,14,13,4,15,8,12,8,13,5,10,13,10,13,0,14,13,4,15,8,12,12,14,14,11,10,13,9,6,12,3,8,13,5,0,14,0,14,11,2,8,13,5,0,14,0,14,0,13,2,3,8,13,5,13,10,13,10,7,10,13,10,13,10,13,10,13,10,13,10,13,0,14,13,4,15,8,12,8,13,5,13,3,8,13,5,0,14,13,4,15,8,9,14,13,4,15,8,12,8,13,5,13,10,13,0,4,7,9,11,2,8,13,5,0,14,13,4,15,8,12,8,13,5,13,10,15,8,13,5,10,7,7,5,13,6,12,14,13,4,3,6,12,13,9,6,12,14,5,13,0,4,2,8,13,5,13,10,13,0,4,15,8,1,2,12,7,12,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,10,13,0,14,13,4,15,8,12,12,14,11,10,13,9,1,13,9,6,12,3,8,13,5,13,10,13,0,14,0,14,13,4,13,6,12,14,11,10,13,9,6,12,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,4,2,8,13,5,0,14,13,4,3,6,12,13", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"14\", \"0\", \"14\"], \"clip_start\": 298.0, \"clip_end\": 303.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,13,4,15,8,12,8,13,5,0,14,0,14,6,3,8,13,5,13,3,8,13,5,0,14,13,4,15,8,12,8,13,5,10,13,15,8,13,5,13,10,13,10,4,15,8,13,5,13,10,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,14,0,14,13,4,15,14,13,4,13,2,3,8,13,5,13,10,13,10,13,0,4,15,8,13,5,13,10,13,10,13,6,12,14,13,4,3,6,12,13,13,2,14,11,2,8,13,5,13,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,13,3,8,13,5,0,14,6,12,14,11,12,5,0,14,11,14,4,7,5,0,14,0,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,10,13,0,14,11,14,13,4,8,13,5,10,13,15,8,13,5,0,14,13,4,3,6,1,13,2,14,11,2,12,7,7,12,14,13,4,3,6,12,6,12,3,8,13,5,0,14,11,14,11,5,13,0,14,13,4,3,6,12,15,8,13,5,13,3,8,13,5,13,10,13,0,4,2,8,13,5,10,13,0,14,11,14,13,4,15,8,12,8,13,5,10,13,10,13,0,14,13,4,15,8,12,12,14,14,11,10,13,9,6,12,3,8,13,5,0,14,0,14,11,2,8,13,5,0,14,0,14,0,13,2,3,8,13,5,13,10,13,10,7,10,13,10,13,10,13,10,13,10,13,10,13,0,14,13,4,15,8,12,8,13,5,13,3,8,13,5,0,14,13,4,15,8,9,14,13,4,15,8,12,8,13,5,13,10,13,0,4,7,9,11,2,8,13,5,0,14,13,4,15,8,12,8,13,5,13,10,15,8,13,5,10,7,7,5,13,6,12,14,13,4,3,6,12,13,9,6,12,14,5,13,0,4,2,8,13,5,13,10,13,0,4,15,8,1,2,12,7,12,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,10,13,0,14,13,4,15,8,12,12,14,11,10,13,9,1,13,9,6,12,3,8,13,5,13,10,13,0,14,0,14,13,4,13,6,12,14,11,10,13,9,6,12,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,4,2,8,13,5,0,14,13,4,3,6,12,13", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"2\", \"3\", \"8\", \"13\", \"5\"], \"clip_start\": 304.0, \"clip_end\": 310.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,13,4,15,8,12,8,13,5,0,14,0,14,6,3,8,13,5,13,3,8,13,5,0,14,13,4,15,8,12,8,13,5,10,13,15,8,13,5,13,10,13,10,4,15,8,13,5,13,10,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,14,0,14,13,4,15,14,13,4,13,2,3,8,13,5,13,10,13,10,13,0,4,15,8,13,5,13,10,13,10,13,6,12,14,13,4,3,6,12,13,13,2,14,11,2,8,13,5,13,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,13,3,8,13,5,0,14,6,12,14,11,12,5,0,14,11,14,4,7,5,0,14,0,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,10,13,0,14,11,14,13,4,8,13,5,10,13,15,8,13,5,0,14,13,4,3,6,1,13,2,14,11,2,12,7,7,12,14,13,4,3,6,12,6,12,3,8,13,5,0,14,11,14,11,5,13,0,14,13,4,3,6,12,15,8,13,5,13,3,8,13,5,13,10,13,0,4,2,8,13,5,10,13,0,14,11,14,13,4,15,8,12,8,13,5,10,13,10,13,0,14,13,4,15,8,12,12,14,14,11,10,13,9,6,12,3,8,13,5,0,14,0,14,11,2,8,13,5,0,14,0,14,0,13,2,3,8,13,5,13,10,13,10,7,10,13,10,13,10,13,10,13,10,13,10,13,0,14,13,4,15,8,12,8,13,5,13,3,8,13,5,0,14,13,4,15,8,9,14,13,4,15,8,12,8,13,5,13,10,13,0,4,7,9,11,2,8,13,5,0,14,13,4,15,8,12,8,13,5,13,10,15,8,13,5,10,7,7,5,13,6,12,14,13,4,3,6,12,13,9,6,12,14,5,13,0,4,2,8,13,5,13,10,13,0,4,15,8,1,2,12,7,12,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,10,13,0,14,13,4,15,8,12,12,14,11,10,13,9,1,13,9,6,12,3,8,13,5,13,10,13,0,14,0,14,13,4,13,6,12,14,11,10,13,9,6,12,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,4,2,8,13,5,0,14,13,4,3,6,12,13", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"9\", \"6\", \"12\", \"14\"], \"clip_start\": 398.0, \"clip_end\": 404.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,13,4,15,8,12,8,13,5,0,14,0,14,6,3,8,13,5,13,3,8,13,5,0,14,13,4,15,8,12,8,13,5,10,13,15,8,13,5,13,10,13,10,4,15,8,13,5,13,10,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,14,0,14,13,4,15,14,13,4,13,2,3,8,13,5,13,10,13,10,13,0,4,15,8,13,5,13,10,13,10,13,6,12,14,13,4,3,6,12,13,13,2,14,11,2,8,13,5,13,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,13,3,8,13,5,0,14,6,12,14,11,12,5,0,14,11,14,4,7,5,0,14,0,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,10,13,0,14,11,14,13,4,8,13,5,10,13,15,8,13,5,0,14,13,4,3,6,1,13,2,14,11,2,12,7,7,12,14,13,4,3,6,12,6,12,3,8,13,5,0,14,11,14,11,5,13,0,14,13,4,3,6,12,15,8,13,5,13,3,8,13,5,13,10,13,0,4,2,8,13,5,10,13,0,14,11,14,13,4,15,8,12,8,13,5,10,13,10,13,0,14,13,4,15,8,12,12,14,14,11,10,13,9,6,12,3,8,13,5,0,14,0,14,11,2,8,13,5,0,14,0,14,0,13,2,3,8,13,5,13,10,13,10,7,10,13,10,13,10,13,10,13,10,13,10,13,0,14,13,4,15,8,12,8,13,5,13,3,8,13,5,0,14,13,4,15,8,9,14,13,4,15,8,12,8,13,5,13,10,13,0,4,7,9,11,2,8,13,5,0,14,13,4,15,8,12,8,13,5,13,10,15,8,13,5,10,7,7,5,13,6,12,14,13,4,3,6,12,13,9,6,12,14,5,13,0,4,2,8,13,5,13,10,13,0,4,15,8,1,2,12,7,12,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,10,13,0,14,13,4,15,8,12,12,14,11,10,13,9,1,13,9,6,12,3,8,13,5,13,10,13,0,14,0,14,13,4,13,6,12,14,11,10,13,9,6,12,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,4,2,8,13,5,0,14,13,4,3,6,12,13", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"13\", \"10\", \"13\"], \"clip_start\": 55.0, \"clip_end\": 60.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,13,4,15,8,12,8,13,5,0,14,0,14,6,3,8,13,5,13,3,8,13,5,0,14,13,4,15,8,12,8,13,5,10,13,15,8,13,5,13,10,13,10,4,15,8,13,5,13,10,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,14,0,14,13,4,15,14,13,4,13,2,3,8,13,5,13,10,13,10,13,0,4,15,8,13,5,13,10,13,10,13,6,12,14,13,4,3,6,12,13,13,2,14,11,2,8,13,5,13,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,13,3,8,13,5,0,14,6,12,14,11,12,5,0,14,11,14,4,7,5,0,14,0,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,10,13,0,14,11,14,13,4,8,13,5,10,13,15,8,13,5,0,14,13,4,3,6,1,13,2,14,11,2,12,7,7,12,14,13,4,3,6,12,6,12,3,8,13,5,0,14,11,14,11,5,13,0,14,13,4,3,6,12,15,8,13,5,13,3,8,13,5,13,10,13,0,4,2,8,13,5,10,13,0,14,11,14,13,4,15,8,12,8,13,5,10,13,10,13,0,14,13,4,15,8,12,12,14,14,11,10,13,9,6,12,3,8,13,5,0,14,0,14,11,2,8,13,5,0,14,0,14,0,13,2,3,8,13,5,13,10,13,10,7,10,13,10,13,10,13,10,13,10,13,10,13,0,14,13,4,15,8,12,8,13,5,13,3,8,13,5,0,14,13,4,15,8,9,14,13,4,15,8,12,8,13,5,13,10,13,0,4,7,9,11,2,8,13,5,0,14,13,4,15,8,12,8,13,5,13,10,15,8,13,5,10,7,7,5,13,6,12,14,13,4,3,6,12,13,9,6,12,14,5,13,0,4,2,8,13,5,13,10,13,0,4,15,8,1,2,12,7,12,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,10,13,0,14,13,4,15,8,12,12,14,11,10,13,9,1,13,9,6,12,3,8,13,5,13,10,13,0,14,0,14,13,4,13,6,12,14,11,10,13,9,6,12,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,4,2,8,13,5,0,14,13,4,3,6,12,13", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"3\", \"5\"], \"clip_start\": 465.0, \"clip_end\": 469.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,13,4,15,8,12,8,13,5,0,14,0,14,6,3,8,13,5,13,3,8,13,5,0,14,13,4,15,8,12,8,13,5,10,13,15,8,13,5,13,10,13,10,4,15,8,13,5,13,10,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,14,0,14,13,4,15,14,13,4,13,2,3,8,13,5,13,10,13,10,13,0,4,15,8,13,5,13,10,13,10,13,6,12,14,13,4,3,6,12,13,13,2,14,11,2,8,13,5,13,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,13,3,8,13,5,0,14,6,12,14,11,12,5,0,14,11,14,4,7,5,0,14,0,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,10,13,0,14,11,14,13,4,8,13,5,10,13,15,8,13,5,0,14,13,4,3,6,1,13,2,14,11,2,12,7,7,12,14,13,4,3,6,12,6,12,3,8,13,5,0,14,11,14,11,5,13,0,14,13,4,3,6,12,15,8,13,5,13,3,8,13,5,13,10,13,0,4,2,8,13,5,10,13,0,14,11,14,13,4,15,8,12,8,13,5,10,13,10,13,0,14,13,4,15,8,12,12,14,14,11,10,13,9,6,12,3,8,13,5,0,14,0,14,11,2,8,13,5,0,14,0,14,0,13,2,3,8,13,5,13,10,13,10,7,10,13,10,13,10,13,10,13,10,13,10,13,0,14,13,4,15,8,12,8,13,5,13,3,8,13,5,0,14,13,4,15,8,9,14,13,4,15,8,12,8,13,5,13,10,13,0,4,7,9,11,2,8,13,5,0,14,13,4,15,8,12,8,13,5,13,10,15,8,13,5,10,7,7,5,13,6,12,14,13,4,3,6,12,13,9,6,12,14,5,13,0,4,2,8,13,5,13,10,13,0,4,15,8,1,2,12,7,12,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,10,13,0,14,13,4,15,8,12,12,14,11,10,13,9,1,13,9,6,12,3,8,13,5,13,10,13,0,14,0,14,13,4,13,6,12,14,11,10,13,9,6,12,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,4,2,8,13,5,0,14,13,4,3,6,12,13", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"10\", \"11\", \"0\", \"0\"], \"clip_start\": 92.0, \"clip_end\": 98.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,13,4,15,8,12,8,13,5,0,14,0,14,6,3,8,13,5,13,3,8,13,5,0,14,13,4,15,8,12,8,13,5,10,13,15,8,13,5,13,10,13,10,4,15,8,13,5,13,10,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,14,0,14,13,4,15,14,13,4,13,2,3,8,13,5,13,10,13,10,13,0,4,15,8,13,5,13,10,13,10,13,6,12,14,13,4,3,6,12,13,13,2,14,11,2,8,13,5,13,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,13,3,8,13,5,0,14,6,12,14,11,12,5,0,14,11,14,4,7,5,0,14,0,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,10,13,0,14,11,14,13,4,8,13,5,10,13,15,8,13,5,0,14,13,4,3,6,1,13,2,14,11,2,12,7,7,12,14,13,4,3,6,12,6,12,3,8,13,5,0,14,11,14,11,5,13,0,14,13,4,3,6,12,15,8,13,5,13,3,8,13,5,13,10,13,0,4,2,8,13,5,10,13,0,14,11,14,13,4,15,8,12,8,13,5,10,13,10,13,0,14,13,4,15,8,12,12,14,14,11,10,13,9,6,12,3,8,13,5,0,14,0,14,11,2,8,13,5,0,14,0,14,0,13,2,3,8,13,5,13,10,13,10,7,10,13,10,13,10,13,10,13,10,13,10,13,0,14,13,4,15,8,12,8,13,5,13,3,8,13,5,0,14,13,4,15,8,9,14,13,4,15,8,12,8,13,5,13,10,13,0,4,7,9,11,2,8,13,5,0,14,13,4,15,8,12,8,13,5,13,10,15,8,13,5,10,7,7,5,13,6,12,14,13,4,3,6,12,13,9,6,12,14,5,13,0,4,2,8,13,5,13,10,13,0,4,15,8,1,2,12,7,12,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,10,13,0,14,13,4,15,8,12,12,14,11,10,13,9,1,13,9,6,12,3,8,13,5,13,10,13,0,14,0,14,13,4,13,6,12,14,11,10,13,9,6,12,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,4,2,8,13,5,0,14,13,4,3,6,12,13", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"15\", \"8\"], \"clip_start\": 380.0, \"clip_end\": 384.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q14_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,13,4,15,8,12,8,13,5,0,14,0,14,6,3,8,13,5,13,3,8,13,5,0,14,13,4,15,8,12,8,13,5,10,13,15,8,13,5,13,10,13,10,4,15,8,13,5,13,10,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,14,0,14,13,4,15,14,13,4,13,2,3,8,13,5,13,10,13,10,13,0,4,15,8,13,5,13,10,13,10,13,6,12,14,13,4,3,6,12,13,13,2,14,11,2,8,13,5,13,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,13,3,8,13,5,0,14,6,12,14,11,12,5,0,14,11,14,4,7,5,0,14,0,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,10,13,0,14,11,14,13,4,8,13,5,10,13,15,8,13,5,0,14,13,4,3,6,1,13,2,14,11,2,12,7,7,12,14,13,4,3,6,12,6,12,3,8,13,5,0,14,11,14,11,5,13,0,14,13,4,3,6,12,15,8,13,5,13,3,8,13,5,13,10,13,0,4,2,8,13,5,10,13,0,14,11,14,13,4,15,8,12,8,13,5,10,13,10,13,0,14,13,4,15,8,12,12,14,14,11,10,13,9,6,12,3,8,13,5,0,14,0,14,11,2,8,13,5,0,14,0,14,0,13,2,3,8,13,5,13,10,13,10,7,10,13,10,13,10,13,10,13,10,13,10,13,0,14,13,4,15,8,12,8,13,5,13,3,8,13,5,0,14,13,4,15,8,9,14,13,4,15,8,12,8,13,5,13,10,13,0,4,7,9,11,2,8,13,5,0,14,13,4,15,8,12,8,13,5,13,10,15,8,13,5,10,7,7,5,13,6,12,14,13,4,3,6,12,13,9,6,12,14,5,13,0,4,2,8,13,5,13,10,13,0,4,15,8,1,2,12,7,12,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,10,13,0,14,13,4,15,8,12,12,14,11,10,13,9,1,13,9,6,12,3,8,13,5,13,10,13,0,14,0,14,13,4,13,6,12,14,11,10,13,9,6,12,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,4,2,8,13,5,0,14,13,4,3,6,12,13", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"6\", \"12\", \"13\", \"13\", \"2\"], \"clip_start\": 104.0, \"clip_end\": 110.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q15_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,14,13,4,15,8,12,8,13,5,0,14,0,14,6,3,8,13,5,13,3,8,13,5,0,14,13,4,15,8,12,8,13,5,10,13,15,8,13,5,13,10,13,10,4,15,8,13,5,13,10,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,14,0,14,13,4,15,14,13,4,13,2,3,8,13,5,13,10,13,10,13,0,4,15,8,13,5,13,10,13,10,13,6,12,14,13,4,3,6,12,13,13,2,14,11,2,8,13,5,13,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,13,3,8,13,5,0,14,6,12,14,11,12,5,0,14,11,14,4,7,5,0,14,0,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,3,8,13,5,10,13,0,14,11,14,13,4,8,13,5,10,13,15,8,13,5,0,14,13,4,3,6,1,13,2,14,11,2,12,7,7,12,14,13,4,3,6,12,6,12,3,8,13,5,0,14,11,14,11,5,13,0,14,13,4,3,6,12,15,8,13,5,13,3,8,13,5,13,10,13,0,4,2,8,13,5,10,13,0,14,11,14,13,4,15,8,12,8,13,5,10,13,10,13,0,14,13,4,15,8,12,12,14,14,11,10,13,9,6,12,3,8,13,5,0,14,0,14,11,2,8,13,5,0,14,0,14,0,13,2,3,8,13,5,13,10,13,10,7,10,13,10,13,10,13,10,13,10,13,10,13,0,14,13,4,15,8,12,8,13,5,13,3,8,13,5,0,14,13,4,15,8,9,14,13,4,15,8,12,8,13,5,13,10,13,0,4,7,9,11,2,8,13,5,0,14,13,4,15,8,12,8,13,5,13,10,15,8,13,5,10,7,7,5,13,6,12,14,13,4,3,6,12,13,9,6,12,14,5,13,0,4,2,8,13,5,13,10,13,0,4,15,8,1,2,12,7,12,14,13,4,3,6,12,13,9,6,12,3,8,13,5,13,10,13,0,14,13,4,15,8,12,12,14,11,10,13,9,1,13,9,6,12,3,8,13,5,13,10,13,0,14,0,14,13,4,13,6,12,14,11,10,13,9,6,12,3,8,13,5,13,10,13,10,13,15,8,13,5,13,10,13,0,4,2,8,13,5,0,14,13,4,3,6,12,13", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"0\", \"6\"], \"clip_start\": 443.0, \"clip_end\": 447.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,4,14,13,3,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,12,4,14,4,14,13,4,14,13,14,12,3,4,12,3,9,11,1,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,2,3,1,2,14,5,7,15,7,15,7,15,9,7,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,13,2,3,1,6,10,15,4,14,13,14,12,3,4,14,2,3,9,11,1,5,4,4,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,13,3,15,8,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,3,3,6,10,15,4,14,13,14,12,3,4,14,13,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,10,9,7,9,7,15,1,2,5,4,4,6,10,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,10,14,9,7,15,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,9,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"12\", \"3\", \"4\"], \"clip_start\": 356.0, \"clip_end\": 361.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,4,14,13,3,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,12,4,14,4,14,13,4,14,13,14,12,3,4,12,3,9,11,1,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,2,3,1,2,14,5,7,15,7,15,7,15,9,7,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,13,2,3,1,6,10,15,4,14,13,14,12,3,4,14,2,3,9,11,1,5,4,4,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,13,3,15,8,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,3,3,6,10,15,4,14,13,14,12,3,4,14,13,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,10,9,7,9,7,15,1,2,5,4,4,6,10,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,10,14,9,7,15,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,9,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"4\", \"11\", \"1\"], \"clip_start\": 301.0, \"clip_end\": 306.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,4,14,13,3,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,12,4,14,4,14,13,4,14,13,14,12,3,4,12,3,9,11,1,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,2,3,1,2,14,5,7,15,7,15,7,15,9,7,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,13,2,3,1,6,10,15,4,14,13,14,12,3,4,14,2,3,9,11,1,5,4,4,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,13,3,15,8,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,3,3,6,10,15,4,14,13,14,12,3,4,14,13,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,10,9,7,9,7,15,1,2,5,4,4,6,10,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,10,14,9,7,15,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,9,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"12\", \"3\", \"4\", \"14\"], \"clip_start\": 32.0, \"clip_end\": 38.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,4,14,13,3,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,12,4,14,4,14,13,4,14,13,14,12,3,4,12,3,9,11,1,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,2,3,1,2,14,5,7,15,7,15,7,15,9,7,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,13,2,3,1,6,10,15,4,14,13,14,12,3,4,14,2,3,9,11,1,5,4,4,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,13,3,15,8,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,3,3,6,10,15,4,14,13,14,12,3,4,14,13,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,10,9,7,9,7,15,1,2,5,4,4,6,10,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,10,14,9,7,15,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,9,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"4\"], \"clip_start\": 415.0, \"clip_end\": 418.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,4,14,13,3,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,12,4,14,4,14,13,4,14,13,14,12,3,4,12,3,9,11,1,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,2,3,1,2,14,5,7,15,7,15,7,15,9,7,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,13,2,3,1,6,10,15,4,14,13,14,12,3,4,14,2,3,9,11,1,5,4,4,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,13,3,15,8,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,3,3,6,10,15,4,14,13,14,12,3,4,14,13,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,10,9,7,9,7,15,1,2,5,4,4,6,10,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,10,14,9,7,15,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,9,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\", \"1\"], \"clip_start\": 507.0, \"clip_end\": 511.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q5_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,4,14,13,3,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,12,4,14,4,14,13,4,14,13,14,12,3,4,12,3,9,11,1,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,2,3,1,2,14,5,7,15,7,15,7,15,9,7,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,13,2,3,1,6,10,15,4,14,13,14,12,3,4,14,2,3,9,11,1,5,4,4,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,13,3,15,8,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,3,3,6,10,15,4,14,13,14,12,3,4,14,13,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,10,9,7,9,7,15,1,2,5,4,4,6,10,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,10,14,9,7,15,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,9,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"5\", \"7\", \"3\", \"13\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q6_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,4,14,13,3,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,12,4,14,4,14,13,4,14,13,14,12,3,4,12,3,9,11,1,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,2,3,1,2,14,5,7,15,7,15,7,15,9,7,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,13,2,3,1,6,10,15,4,14,13,14,12,3,4,14,2,3,9,11,1,5,4,4,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,13,3,15,8,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,3,3,6,10,15,4,14,13,14,12,3,4,14,13,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,10,9,7,9,7,15,1,2,5,4,4,6,10,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,10,14,9,7,15,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,9,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"15\", \"4\", \"14\", \"13\"], \"clip_start\": 475.0, \"clip_end\": 480.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,4,14,13,3,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,12,4,14,4,14,13,4,14,13,14,12,3,4,12,3,9,11,1,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,2,3,1,2,14,5,7,15,7,15,7,15,9,7,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,13,2,3,1,6,10,15,4,14,13,14,12,3,4,14,2,3,9,11,1,5,4,4,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,13,3,15,8,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,3,3,6,10,15,4,14,13,14,12,3,4,14,13,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,10,9,7,9,7,15,1,2,5,4,4,6,10,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,10,14,9,7,15,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,9,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"5\", \"4\", \"4\", \"0\"], \"clip_start\": 208.0, \"clip_end\": 214.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q8_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,4,14,13,3,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,12,4,14,4,14,13,4,14,13,14,12,3,4,12,3,9,11,1,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,2,3,1,2,14,5,7,15,7,15,7,15,9,7,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,13,2,3,1,6,10,15,4,14,13,14,12,3,4,14,2,3,9,11,1,5,4,4,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,13,3,15,8,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,3,3,6,10,15,4,14,13,14,12,3,4,14,13,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,10,9,7,9,7,15,1,2,5,4,4,6,10,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,10,14,9,7,15,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,9,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"6\"], \"clip_start\": 444.0, \"clip_end\": 447.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,4,14,13,3,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,12,4,14,4,14,13,4,14,13,14,12,3,4,12,3,9,11,1,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,2,3,1,2,14,5,7,15,7,15,7,15,9,7,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,13,2,3,1,6,10,15,4,14,13,14,12,3,4,14,2,3,9,11,1,5,4,4,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,13,3,15,8,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,3,3,6,10,15,4,14,13,14,12,3,4,14,13,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,10,9,7,9,7,15,1,2,5,4,4,6,10,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,10,14,9,7,15,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,9,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"3\", \"4\", \"14\"], \"clip_start\": 140.0, \"clip_end\": 145.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q10_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,4,14,13,3,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,12,4,14,4,14,13,4,14,13,14,12,3,4,12,3,9,11,1,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,2,3,1,2,14,5,7,15,7,15,7,15,9,7,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,13,2,3,1,6,10,15,4,14,13,14,12,3,4,14,2,3,9,11,1,5,4,4,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,13,3,15,8,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,3,3,6,10,15,4,14,13,14,12,3,4,14,13,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,10,9,7,9,7,15,1,2,5,4,4,6,10,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,10,14,9,7,15,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,9,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"4\", \"14\"], \"clip_start\": 221.0, \"clip_end\": 225.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,4,14,13,3,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,12,4,14,4,14,13,4,14,13,14,12,3,4,12,3,9,11,1,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,2,3,1,2,14,5,7,15,7,15,7,15,9,7,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,13,2,3,1,6,10,15,4,14,13,14,12,3,4,14,2,3,9,11,1,5,4,4,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,13,3,15,8,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,3,3,6,10,15,4,14,13,14,12,3,4,14,13,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,10,9,7,9,7,15,1,2,5,4,4,6,10,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,10,14,9,7,15,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,9,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"10\", \"5\", \"10\", \"7\"], \"clip_start\": 444.0, \"clip_end\": 450.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,4,14,13,3,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,12,4,14,4,14,13,4,14,13,14,12,3,4,12,3,9,11,1,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,2,3,1,2,14,5,7,15,7,15,7,15,9,7,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,13,2,3,1,6,10,15,4,14,13,14,12,3,4,14,2,3,9,11,1,5,4,4,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,13,3,15,8,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,3,3,6,10,15,4,14,13,14,12,3,4,14,13,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,10,9,7,9,7,15,1,2,5,4,4,6,10,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,10,14,9,7,15,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,9,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"15\", \"0\", \"0\", \"10\"], \"clip_start\": 127.0, \"clip_end\": 133.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,4,14,13,3,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,12,4,14,4,14,13,4,14,13,14,12,3,4,12,3,9,11,1,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,2,3,1,2,14,5,7,15,7,15,7,15,9,7,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,13,2,3,1,6,10,15,4,14,13,14,12,3,4,14,2,3,9,11,1,5,4,4,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,13,3,15,8,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,3,3,6,10,15,4,14,13,14,12,3,4,14,13,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,10,9,7,9,7,15,1,2,5,4,4,6,10,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,10,14,9,7,15,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,9,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"7\", \"9\"], \"clip_start\": 176.0, \"clip_end\": 180.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,4,14,13,3,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,12,4,14,4,14,13,4,14,13,14,12,3,4,12,3,9,11,1,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,2,3,1,2,14,5,7,15,7,15,7,15,9,7,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,13,2,3,1,6,10,15,4,14,13,14,12,3,4,14,2,3,9,11,1,5,4,4,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,13,3,15,8,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,3,3,6,10,15,4,14,13,14,12,3,4,14,13,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,10,9,7,9,7,15,1,2,5,4,4,6,10,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,10,14,9,7,15,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,9,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"8\", \"5\", \"10\"], \"clip_start\": 124.0, \"clip_end\": 130.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q15_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,7,4,14,13,3,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,12,4,14,4,14,13,4,14,13,14,12,3,4,12,3,9,11,1,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,2,3,1,2,14,5,7,15,7,15,7,15,9,7,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,13,3,6,10,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,13,2,3,1,6,10,15,4,14,13,14,12,3,4,14,2,3,9,11,1,5,4,4,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,13,3,15,8,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,9,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,3,3,6,10,15,4,14,13,14,12,3,4,14,13,0,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,10,9,7,9,7,15,1,2,5,4,4,6,10,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14,12,3,4,14,13,14,12,3,4,10,14,9,7,15,6,10,15,4,14,13,14,12,3,4,14,13,14,12,3,4,14,13,14,12,3,4,9,0,6,15,8,5,4,4,0,4,11,1,4,14,13,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"10\"], \"clip_start\": 437.0, \"clip_end\": 440.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,14,6,10,14,13,13,4,8,13,12,14,13,13,4,9,7,8,13,5,14,13,13,4,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,3,2,12,8,6,13,2,8,13,10,5,12,14,13,13,10,6,4,10,6,4,6,14,15,1,11,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,2,8,11,0,1,11,5,6,10,6,4,10,6,4,10,6,4,10,6,4,2,8,13,6,10,6,4,7,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,11,5,14,13,10,6,12,8,6,13,4,8,13,6,12,14,13,13,4,8,13,12,8,6,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,13,2,12,8,6,13,10,6,9,6,11,5,14,6,14,12,12,8,10,6,5,6,14,12,12,8,13,10,5,12,8,6,13,2,8,13,10,5,12,14,13,13,4,8,13,12,14,13,0,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,0,2,8,13,10,5,12,14,13,0,7,8,13,10,5,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,8,13,10,5,10,13,4,8,13,15,5,14,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,1,11,12,8,6,13,4,8,13,12,8,6,10,6,5,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,11,5,6,14,12,12,14,13,8,13,10,5,10,6,4,10,6,4,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,12,8,6,13,4,8,13,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 162.0, \"clip_end\": 166.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,14,6,10,14,13,13,4,8,13,12,14,13,13,4,9,7,8,13,5,14,13,13,4,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,3,2,12,8,6,13,2,8,13,10,5,12,14,13,13,10,6,4,10,6,4,6,14,15,1,11,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,2,8,11,0,1,11,5,6,10,6,4,10,6,4,10,6,4,10,6,4,2,8,13,6,10,6,4,7,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,11,5,14,13,10,6,12,8,6,13,4,8,13,6,12,14,13,13,4,8,13,12,8,6,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,13,2,12,8,6,13,10,6,9,6,11,5,14,6,14,12,12,8,10,6,5,6,14,12,12,8,13,10,5,12,8,6,13,2,8,13,10,5,12,14,13,13,4,8,13,12,14,13,0,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,0,2,8,13,10,5,12,14,13,0,7,8,13,10,5,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,8,13,10,5,10,13,4,8,13,15,5,14,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,1,11,12,8,6,13,4,8,13,12,8,6,10,6,5,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,11,5,6,14,12,12,14,13,8,13,10,5,10,6,4,10,6,4,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,12,8,6,13,4,8,13,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"4\", \"10\"], \"clip_start\": 371.0, \"clip_end\": 375.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,14,6,10,14,13,13,4,8,13,12,14,13,13,4,9,7,8,13,5,14,13,13,4,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,3,2,12,8,6,13,2,8,13,10,5,12,14,13,13,10,6,4,10,6,4,6,14,15,1,11,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,2,8,11,0,1,11,5,6,10,6,4,10,6,4,10,6,4,10,6,4,2,8,13,6,10,6,4,7,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,11,5,14,13,10,6,12,8,6,13,4,8,13,6,12,14,13,13,4,8,13,12,8,6,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,13,2,12,8,6,13,10,6,9,6,11,5,14,6,14,12,12,8,10,6,5,6,14,12,12,8,13,10,5,12,8,6,13,2,8,13,10,5,12,14,13,13,4,8,13,12,14,13,0,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,0,2,8,13,10,5,12,14,13,0,7,8,13,10,5,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,8,13,10,5,10,13,4,8,13,15,5,14,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,1,11,12,8,6,13,4,8,13,12,8,6,10,6,5,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,11,5,6,14,12,12,14,13,8,13,10,5,10,6,4,10,6,4,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,12,8,6,13,4,8,13,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"15\", \"5\"], \"clip_start\": 360.0, \"clip_end\": 364.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,14,6,10,14,13,13,4,8,13,12,14,13,13,4,9,7,8,13,5,14,13,13,4,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,3,2,12,8,6,13,2,8,13,10,5,12,14,13,13,10,6,4,10,6,4,6,14,15,1,11,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,2,8,11,0,1,11,5,6,10,6,4,10,6,4,10,6,4,10,6,4,2,8,13,6,10,6,4,7,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,11,5,14,13,10,6,12,8,6,13,4,8,13,6,12,14,13,13,4,8,13,12,8,6,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,13,2,12,8,6,13,10,6,9,6,11,5,14,6,14,12,12,8,10,6,5,6,14,12,12,8,13,10,5,12,8,6,13,2,8,13,10,5,12,14,13,13,4,8,13,12,14,13,0,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,0,2,8,13,10,5,12,14,13,0,7,8,13,10,5,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,8,13,10,5,10,13,4,8,13,15,5,14,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,1,11,12,8,6,13,4,8,13,12,8,6,10,6,5,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,11,5,6,14,12,12,14,13,8,13,10,5,10,6,4,10,6,4,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,12,8,6,13,4,8,13,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"13\", \"13\", \"10\", \"6\"], \"clip_start\": 291.0, \"clip_end\": 297.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,14,6,10,14,13,13,4,8,13,12,14,13,13,4,9,7,8,13,5,14,13,13,4,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,3,2,12,8,6,13,2,8,13,10,5,12,14,13,13,10,6,4,10,6,4,6,14,15,1,11,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,2,8,11,0,1,11,5,6,10,6,4,10,6,4,10,6,4,10,6,4,2,8,13,6,10,6,4,7,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,11,5,14,13,10,6,12,8,6,13,4,8,13,6,12,14,13,13,4,8,13,12,8,6,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,13,2,12,8,6,13,10,6,9,6,11,5,14,6,14,12,12,8,10,6,5,6,14,12,12,8,13,10,5,12,8,6,13,2,8,13,10,5,12,14,13,13,4,8,13,12,14,13,0,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,0,2,8,13,10,5,12,14,13,0,7,8,13,10,5,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,8,13,10,5,10,13,4,8,13,15,5,14,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,1,11,12,8,6,13,4,8,13,12,8,6,10,6,5,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,11,5,6,14,12,12,14,13,8,13,10,5,10,6,4,10,6,4,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,12,8,6,13,4,8,13,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"10\", \"13\"], \"clip_start\": 355.0, \"clip_end\": 359.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,14,6,10,14,13,13,4,8,13,12,14,13,13,4,9,7,8,13,5,14,13,13,4,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,3,2,12,8,6,13,2,8,13,10,5,12,14,13,13,10,6,4,10,6,4,6,14,15,1,11,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,2,8,11,0,1,11,5,6,10,6,4,10,6,4,10,6,4,10,6,4,2,8,13,6,10,6,4,7,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,11,5,14,13,10,6,12,8,6,13,4,8,13,6,12,14,13,13,4,8,13,12,8,6,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,13,2,12,8,6,13,10,6,9,6,11,5,14,6,14,12,12,8,10,6,5,6,14,12,12,8,13,10,5,12,8,6,13,2,8,13,10,5,12,14,13,13,4,8,13,12,14,13,0,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,0,2,8,13,10,5,12,14,13,0,7,8,13,10,5,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,8,13,10,5,10,13,4,8,13,15,5,14,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,1,11,12,8,6,13,4,8,13,12,8,6,10,6,5,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,11,5,6,14,12,12,14,13,8,13,10,5,10,6,4,10,6,4,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,12,8,6,13,4,8,13,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"10\", \"6\"], \"clip_start\": 375.0, \"clip_end\": 379.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,14,6,10,14,13,13,4,8,13,12,14,13,13,4,9,7,8,13,5,14,13,13,4,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,3,2,12,8,6,13,2,8,13,10,5,12,14,13,13,10,6,4,10,6,4,6,14,15,1,11,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,2,8,11,0,1,11,5,6,10,6,4,10,6,4,10,6,4,10,6,4,2,8,13,6,10,6,4,7,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,11,5,14,13,10,6,12,8,6,13,4,8,13,6,12,14,13,13,4,8,13,12,8,6,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,13,2,12,8,6,13,10,6,9,6,11,5,14,6,14,12,12,8,10,6,5,6,14,12,12,8,13,10,5,12,8,6,13,2,8,13,10,5,12,14,13,13,4,8,13,12,14,13,0,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,0,2,8,13,10,5,12,14,13,0,7,8,13,10,5,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,8,13,10,5,10,13,4,8,13,15,5,14,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,1,11,12,8,6,13,4,8,13,12,8,6,10,6,5,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,11,5,6,14,12,12,14,13,8,13,10,5,10,6,4,10,6,4,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,12,8,6,13,4,8,13,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"8\", \"11\", \"0\", \"1\", \"11\"], \"clip_start\": 109.0, \"clip_end\": 115.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,14,6,10,14,13,13,4,8,13,12,14,13,13,4,9,7,8,13,5,14,13,13,4,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,3,2,12,8,6,13,2,8,13,10,5,12,14,13,13,10,6,4,10,6,4,6,14,15,1,11,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,2,8,11,0,1,11,5,6,10,6,4,10,6,4,10,6,4,10,6,4,2,8,13,6,10,6,4,7,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,11,5,14,13,10,6,12,8,6,13,4,8,13,6,12,14,13,13,4,8,13,12,8,6,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,13,2,12,8,6,13,10,6,9,6,11,5,14,6,14,12,12,8,10,6,5,6,14,12,12,8,13,10,5,12,8,6,13,2,8,13,10,5,12,14,13,13,4,8,13,12,14,13,0,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,0,2,8,13,10,5,12,14,13,0,7,8,13,10,5,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,8,13,10,5,10,13,4,8,13,15,5,14,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,1,11,12,8,6,13,4,8,13,12,8,6,10,6,5,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,11,5,6,14,12,12,14,13,8,13,10,5,10,6,4,10,6,4,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,12,8,6,13,4,8,13,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"10\", \"6\", \"4\"], \"clip_start\": 309.0, \"clip_end\": 313.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,14,6,10,14,13,13,4,8,13,12,14,13,13,4,9,7,8,13,5,14,13,13,4,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,3,2,12,8,6,13,2,8,13,10,5,12,14,13,13,10,6,4,10,6,4,6,14,15,1,11,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,2,8,11,0,1,11,5,6,10,6,4,10,6,4,10,6,4,10,6,4,2,8,13,6,10,6,4,7,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,11,5,14,13,10,6,12,8,6,13,4,8,13,6,12,14,13,13,4,8,13,12,8,6,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,13,2,12,8,6,13,10,6,9,6,11,5,14,6,14,12,12,8,10,6,5,6,14,12,12,8,13,10,5,12,8,6,13,2,8,13,10,5,12,14,13,13,4,8,13,12,14,13,0,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,0,2,8,13,10,5,12,14,13,0,7,8,13,10,5,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,8,13,10,5,10,13,4,8,13,15,5,14,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,1,11,12,8,6,13,4,8,13,12,8,6,10,6,5,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,11,5,6,14,12,12,14,13,8,13,10,5,10,6,4,10,6,4,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,12,8,6,13,4,8,13,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"3\"], \"clip_start\": 245.0, \"clip_end\": 248.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,14,6,10,14,13,13,4,8,13,12,14,13,13,4,9,7,8,13,5,14,13,13,4,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,3,2,12,8,6,13,2,8,13,10,5,12,14,13,13,10,6,4,10,6,4,6,14,15,1,11,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,2,8,11,0,1,11,5,6,10,6,4,10,6,4,10,6,4,10,6,4,2,8,13,6,10,6,4,7,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,11,5,14,13,10,6,12,8,6,13,4,8,13,6,12,14,13,13,4,8,13,12,8,6,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,13,2,12,8,6,13,10,6,9,6,11,5,14,6,14,12,12,8,10,6,5,6,14,12,12,8,13,10,5,12,8,6,13,2,8,13,10,5,12,14,13,13,4,8,13,12,14,13,0,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,0,2,8,13,10,5,12,14,13,0,7,8,13,10,5,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,8,13,10,5,10,13,4,8,13,15,5,14,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,1,11,12,8,6,13,4,8,13,12,8,6,10,6,5,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,11,5,6,14,12,12,14,13,8,13,10,5,10,6,4,10,6,4,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,12,8,6,13,4,8,13,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\"], \"clip_start\": 219.0, \"clip_end\": 222.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,14,6,10,14,13,13,4,8,13,12,14,13,13,4,9,7,8,13,5,14,13,13,4,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,3,2,12,8,6,13,2,8,13,10,5,12,14,13,13,10,6,4,10,6,4,6,14,15,1,11,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,2,8,11,0,1,11,5,6,10,6,4,10,6,4,10,6,4,10,6,4,2,8,13,6,10,6,4,7,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,11,5,14,13,10,6,12,8,6,13,4,8,13,6,12,14,13,13,4,8,13,12,8,6,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,13,2,12,8,6,13,10,6,9,6,11,5,14,6,14,12,12,8,10,6,5,6,14,12,12,8,13,10,5,12,8,6,13,2,8,13,10,5,12,14,13,13,4,8,13,12,14,13,0,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,0,2,8,13,10,5,12,14,13,0,7,8,13,10,5,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,8,13,10,5,10,13,4,8,13,15,5,14,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,1,11,12,8,6,13,4,8,13,12,8,6,10,6,5,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,11,5,6,14,12,12,14,13,8,13,10,5,10,6,4,10,6,4,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,12,8,6,13,4,8,13,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"11\"], \"clip_start\": 508.0, \"clip_end\": 511.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,14,6,10,14,13,13,4,8,13,12,14,13,13,4,9,7,8,13,5,14,13,13,4,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,3,2,12,8,6,13,2,8,13,10,5,12,14,13,13,10,6,4,10,6,4,6,14,15,1,11,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,2,8,11,0,1,11,5,6,10,6,4,10,6,4,10,6,4,10,6,4,2,8,13,6,10,6,4,7,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,11,5,14,13,10,6,12,8,6,13,4,8,13,6,12,14,13,13,4,8,13,12,8,6,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,13,2,12,8,6,13,10,6,9,6,11,5,14,6,14,12,12,8,10,6,5,6,14,12,12,8,13,10,5,12,8,6,13,2,8,13,10,5,12,14,13,13,4,8,13,12,14,13,0,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,0,2,8,13,10,5,12,14,13,0,7,8,13,10,5,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,8,13,10,5,10,13,4,8,13,15,5,14,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,1,11,12,8,6,13,4,8,13,12,8,6,10,6,5,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,11,5,6,14,12,12,14,13,8,13,10,5,10,6,4,10,6,4,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,12,8,6,13,4,8,13,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"12\", \"12\"], \"clip_start\": 429.0, \"clip_end\": 433.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,14,6,10,14,13,13,4,8,13,12,14,13,13,4,9,7,8,13,5,14,13,13,4,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,3,2,12,8,6,13,2,8,13,10,5,12,14,13,13,10,6,4,10,6,4,6,14,15,1,11,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,2,8,11,0,1,11,5,6,10,6,4,10,6,4,10,6,4,10,6,4,2,8,13,6,10,6,4,7,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,11,5,14,13,10,6,12,8,6,13,4,8,13,6,12,14,13,13,4,8,13,12,8,6,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,13,2,12,8,6,13,10,6,9,6,11,5,14,6,14,12,12,8,10,6,5,6,14,12,12,8,13,10,5,12,8,6,13,2,8,13,10,5,12,14,13,13,4,8,13,12,14,13,0,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,0,2,8,13,10,5,12,14,13,0,7,8,13,10,5,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,8,13,10,5,10,13,4,8,13,15,5,14,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,1,11,12,8,6,13,4,8,13,12,8,6,10,6,5,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,11,5,6,14,12,12,14,13,8,13,10,5,10,6,4,10,6,4,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,12,8,6,13,4,8,13,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"6\", \"4\", \"10\", \"6\", \"4\"], \"clip_start\": 460.0, \"clip_end\": 466.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,14,6,10,14,13,13,4,8,13,12,14,13,13,4,9,7,8,13,5,14,13,13,4,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,3,2,12,8,6,13,2,8,13,10,5,12,14,13,13,10,6,4,10,6,4,6,14,15,1,11,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,2,8,11,0,1,11,5,6,10,6,4,10,6,4,10,6,4,10,6,4,2,8,13,6,10,6,4,7,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,11,5,14,13,10,6,12,8,6,13,4,8,13,6,12,14,13,13,4,8,13,12,8,6,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,13,2,12,8,6,13,10,6,9,6,11,5,14,6,14,12,12,8,10,6,5,6,14,12,12,8,13,10,5,12,8,6,13,2,8,13,10,5,12,14,13,13,4,8,13,12,14,13,0,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,0,2,8,13,10,5,12,14,13,0,7,8,13,10,5,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,8,13,10,5,10,13,4,8,13,15,5,14,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,1,11,12,8,6,13,4,8,13,12,8,6,10,6,5,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,11,5,6,14,12,12,14,13,8,13,10,5,10,6,4,10,6,4,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,12,8,6,13,4,8,13,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"10\", \"6\"], \"clip_start\": 479.0, \"clip_end\": 483.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q14_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,14,6,10,14,13,13,4,8,13,12,14,13,13,4,9,7,8,13,5,14,13,13,4,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,3,2,12,8,6,13,2,8,13,10,5,12,14,13,13,10,6,4,10,6,4,6,14,15,1,11,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,2,8,11,0,1,11,5,6,10,6,4,10,6,4,10,6,4,10,6,4,2,8,13,6,10,6,4,7,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,11,5,14,13,10,6,12,8,6,13,4,8,13,6,12,14,13,13,4,8,13,12,8,6,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,13,2,12,8,6,13,10,6,9,6,11,5,14,6,14,12,12,8,10,6,5,6,14,12,12,8,13,10,5,12,8,6,13,2,8,13,10,5,12,14,13,13,4,8,13,12,14,13,0,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,0,2,8,13,10,5,12,14,13,0,7,8,13,10,5,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,8,13,10,5,10,13,4,8,13,15,5,14,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,1,11,12,8,6,13,4,8,13,12,8,6,10,6,5,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,11,5,6,14,12,12,14,13,8,13,10,5,10,6,4,10,6,4,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,12,8,6,13,4,8,13,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"10\", \"6\", \"4\", \"10\"], \"clip_start\": 373.0, \"clip_end\": 378.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q15_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,5,14,6,10,14,13,13,4,8,13,12,14,13,13,4,9,7,8,13,5,14,13,13,4,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,3,2,12,8,6,13,2,8,13,10,5,12,14,13,13,10,6,4,10,6,4,6,14,15,1,11,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,2,8,11,0,1,11,5,6,10,6,4,10,6,4,10,6,4,10,6,4,2,8,13,6,10,6,4,7,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,11,5,14,13,10,6,12,8,6,13,4,8,13,6,12,14,13,13,4,8,13,12,8,6,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,13,2,12,8,6,13,10,6,9,6,11,5,14,6,14,12,12,8,10,6,5,6,14,12,12,8,13,10,5,12,8,6,13,2,8,13,10,5,12,14,13,13,4,8,13,12,14,13,0,9,4,8,13,4,8,4,10,6,4,10,6,4,10,6,0,2,8,13,10,5,12,14,13,0,7,8,13,10,5,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,3,8,13,10,5,10,13,4,8,13,15,5,14,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,1,11,12,8,6,13,4,8,13,12,8,6,10,6,5,6,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,11,5,6,14,12,12,14,13,8,13,10,5,10,6,4,10,6,4,4,8,13,4,8,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10,12,8,6,13,4,8,13,12,14,13,13,10,6,4,10,6,4,10,6,4,10,6,4,10,6,4,10", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"7\", \"12\", \"3\", \"14\"], \"clip_start\": 223.0, \"clip_end\": 229.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,6,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,10,0,12,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,6,14,4,5,6,11,0,10,3,15,3,13,8,8,2,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,3,13,14,14,15,4,10,3,15,3,13,14,0,8,4,0,12,7,12,3,14,1,8,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,9,3,13,14,14,10,3,15,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,10,3,15,3,14,1,9,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,0,2,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,9,6,14,4,14,4,0,12,7,12,8,10,3,15,3,13,8,8,2,8,10,3,15,2,3,14,1,15,4,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,0,2,3,13,14,14,15,4,10,3,15,3,14,1,1,15,4,7,12,9,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"14\", \"1\", \"8\", \"4\"], \"clip_start\": 226.0, \"clip_end\": 232.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,6,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,10,0,12,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,6,14,4,5,6,11,0,10,3,15,3,13,8,8,2,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,3,13,14,14,15,4,10,3,15,3,13,14,0,8,4,0,12,7,12,3,14,1,8,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,9,3,13,14,14,10,3,15,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,10,3,15,3,14,1,9,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,0,2,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,9,6,14,4,14,4,0,12,7,12,8,10,3,15,3,13,8,8,2,8,10,3,15,2,3,14,1,15,4,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,0,2,3,13,14,14,15,4,10,3,15,3,14,1,1,15,4,7,12,9,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"12\", \"7\", \"12\"], \"clip_start\": 321.0, \"clip_end\": 326.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,6,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,10,0,12,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,6,14,4,5,6,11,0,10,3,15,3,13,8,8,2,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,3,13,14,14,15,4,10,3,15,3,13,14,0,8,4,0,12,7,12,3,14,1,8,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,9,3,13,14,14,10,3,15,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,10,3,15,3,14,1,9,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,0,2,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,9,6,14,4,14,4,0,12,7,12,8,10,3,15,3,13,8,8,2,8,10,3,15,2,3,14,1,15,4,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,0,2,3,13,14,14,15,4,10,3,15,3,14,1,1,15,4,7,12,9,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"3\", \"13\", \"14\"], \"clip_start\": 206.0, \"clip_end\": 211.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,6,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,10,0,12,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,6,14,4,5,6,11,0,10,3,15,3,13,8,8,2,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,3,13,14,14,15,4,10,3,15,3,13,14,0,8,4,0,12,7,12,3,14,1,8,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,9,3,13,14,14,10,3,15,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,10,3,15,3,14,1,9,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,0,2,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,9,6,14,4,14,4,0,12,7,12,8,10,3,15,3,13,8,8,2,8,10,3,15,2,3,14,1,15,4,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,0,2,3,13,14,14,15,4,10,3,15,3,14,1,1,15,4,7,12,9,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"1\", \"15\", \"4\", \"7\"], \"clip_start\": 409.0, \"clip_end\": 415.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,6,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,10,0,12,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,6,14,4,5,6,11,0,10,3,15,3,13,8,8,2,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,3,13,14,14,15,4,10,3,15,3,13,14,0,8,4,0,12,7,12,3,14,1,8,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,9,3,13,14,14,10,3,15,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,10,3,15,3,14,1,9,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,0,2,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,9,6,14,4,14,4,0,12,7,12,8,10,3,15,3,13,8,8,2,8,10,3,15,2,3,14,1,15,4,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,0,2,3,13,14,14,15,4,10,3,15,3,14,1,1,15,4,7,12,9,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 418.0, \"clip_end\": 424.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,6,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,10,0,12,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,6,14,4,5,6,11,0,10,3,15,3,13,8,8,2,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,3,13,14,14,15,4,10,3,15,3,13,14,0,8,4,0,12,7,12,3,14,1,8,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,9,3,13,14,14,10,3,15,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,10,3,15,3,14,1,9,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,0,2,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,9,6,14,4,14,4,0,12,7,12,8,10,3,15,3,13,8,8,2,8,10,3,15,2,3,14,1,15,4,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,0,2,3,13,14,14,15,4,10,3,15,3,14,1,1,15,4,7,12,9,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"4\", \"10\", \"3\", \"15\"], \"clip_start\": 421.0, \"clip_end\": 427.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,6,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,10,0,12,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,6,14,4,5,6,11,0,10,3,15,3,13,8,8,2,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,3,13,14,14,15,4,10,3,15,3,13,14,0,8,4,0,12,7,12,3,14,1,8,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,9,3,13,14,14,10,3,15,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,10,3,15,3,14,1,9,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,0,2,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,9,6,14,4,14,4,0,12,7,12,8,10,3,15,3,13,8,8,2,8,10,3,15,2,3,14,1,15,4,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,0,2,3,13,14,14,15,4,10,3,15,3,14,1,1,15,4,7,12,9,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 158.0, \"clip_end\": 162.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,6,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,10,0,12,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,6,14,4,5,6,11,0,10,3,15,3,13,8,8,2,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,3,13,14,14,15,4,10,3,15,3,13,14,0,8,4,0,12,7,12,3,14,1,8,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,9,3,13,14,14,10,3,15,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,10,3,15,3,14,1,9,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,0,2,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,9,6,14,4,14,4,0,12,7,12,8,10,3,15,3,13,8,8,2,8,10,3,15,2,3,14,1,15,4,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,0,2,3,13,14,14,15,4,10,3,15,3,14,1,1,15,4,7,12,9,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"8\", \"8\", \"2\"], \"clip_start\": 55.0, \"clip_end\": 60.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,6,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,10,0,12,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,6,14,4,5,6,11,0,10,3,15,3,13,8,8,2,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,3,13,14,14,15,4,10,3,15,3,13,14,0,8,4,0,12,7,12,3,14,1,8,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,9,3,13,14,14,10,3,15,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,10,3,15,3,14,1,9,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,0,2,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,9,6,14,4,14,4,0,12,7,12,8,10,3,15,3,13,8,8,2,8,10,3,15,2,3,14,1,15,4,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,0,2,3,13,14,14,15,4,10,3,15,3,14,1,1,15,4,7,12,9,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"0\", \"13\", \"4\", \"0\"], \"clip_start\": 318.0, \"clip_end\": 323.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,6,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,10,0,12,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,6,14,4,5,6,11,0,10,3,15,3,13,8,8,2,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,3,13,14,14,15,4,10,3,15,3,13,14,0,8,4,0,12,7,12,3,14,1,8,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,9,3,13,14,14,10,3,15,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,10,3,15,3,14,1,9,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,0,2,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,9,6,14,4,14,4,0,12,7,12,8,10,3,15,3,13,8,8,2,8,10,3,15,2,3,14,1,15,4,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,0,2,3,13,14,14,15,4,10,3,15,3,14,1,1,15,4,7,12,9,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 188.0, \"clip_end\": 193.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,6,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,10,0,12,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,6,14,4,5,6,11,0,10,3,15,3,13,8,8,2,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,3,13,14,14,15,4,10,3,15,3,13,14,0,8,4,0,12,7,12,3,14,1,8,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,9,3,13,14,14,10,3,15,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,10,3,15,3,14,1,9,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,0,2,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,9,6,14,4,14,4,0,12,7,12,8,10,3,15,3,13,8,8,2,8,10,3,15,2,3,14,1,15,4,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,0,2,3,13,14,14,15,4,10,3,15,3,14,1,1,15,4,7,12,9,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"7\", \"12\", \"3\"], \"clip_start\": 99.0, \"clip_end\": 103.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,6,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,10,0,12,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,6,14,4,5,6,11,0,10,3,15,3,13,8,8,2,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,3,13,14,14,15,4,10,3,15,3,13,14,0,8,4,0,12,7,12,3,14,1,8,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,9,3,13,14,14,10,3,15,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,10,3,15,3,14,1,9,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,0,2,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,9,6,14,4,14,4,0,12,7,12,8,10,3,15,3,13,8,8,2,8,10,3,15,2,3,14,1,15,4,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,0,2,3,13,14,14,15,4,10,3,15,3,14,1,1,15,4,7,12,9,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"4\", \"0\", \"12\"], \"clip_start\": 143.0, \"clip_end\": 148.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,6,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,10,0,12,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,6,14,4,5,6,11,0,10,3,15,3,13,8,8,2,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,3,13,14,14,15,4,10,3,15,3,13,14,0,8,4,0,12,7,12,3,14,1,8,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,9,3,13,14,14,10,3,15,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,10,3,15,3,14,1,9,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,0,2,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,9,6,14,4,14,4,0,12,7,12,8,10,3,15,3,13,8,8,2,8,10,3,15,2,3,14,1,15,4,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,0,2,3,13,14,14,15,4,10,3,15,3,14,1,1,15,4,7,12,9,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"10\", \"3\", \"15\", \"3\"], \"clip_start\": 358.0, \"clip_end\": 363.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,6,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,10,0,12,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,6,14,4,5,6,11,0,10,3,15,3,13,8,8,2,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,3,13,14,14,15,4,10,3,15,3,13,14,0,8,4,0,12,7,12,3,14,1,8,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,9,3,13,14,14,10,3,15,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,10,3,15,3,14,1,9,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,0,2,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,9,6,14,4,14,4,0,12,7,12,8,10,3,15,3,13,8,8,2,8,10,3,15,2,3,14,1,15,4,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,0,2,3,13,14,14,15,4,10,3,15,3,14,1,1,15,4,7,12,9,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 279.0, \"clip_end\": 285.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,6,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,10,0,12,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,6,14,4,5,6,11,0,10,3,15,3,13,8,8,2,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,3,13,14,14,15,4,10,3,15,3,13,14,0,8,4,0,12,7,12,3,14,1,8,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,9,3,13,14,14,10,3,15,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,10,3,15,3,14,1,9,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,0,2,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,9,6,14,4,14,4,0,12,7,12,8,10,3,15,3,13,8,8,2,8,10,3,15,2,3,14,1,15,4,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,0,2,3,13,14,14,15,4,10,3,15,3,14,1,1,15,4,7,12,9,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"1\", \"15\"], \"clip_start\": 295.0, \"clip_end\": 298.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q15_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,2,6,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,10,0,12,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,6,14,4,5,6,11,0,10,3,15,3,13,8,8,2,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,3,13,14,14,15,4,10,3,15,3,13,14,0,8,4,0,12,7,12,3,14,1,8,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,9,3,13,14,14,10,3,15,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,10,3,15,3,14,1,9,14,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,0,2,2,6,11,0,13,4,0,12,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,9,6,14,4,14,4,0,12,7,12,8,10,3,15,3,13,8,8,2,8,10,3,15,2,3,14,1,15,4,1,15,4,7,12,3,14,1,15,4,7,12,3,13,8,8,2,8,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,0,2,3,13,14,14,15,4,10,3,15,3,14,1,1,15,4,7,12,9,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15,4,7,12,3,14,1,15", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"0\", \"13\", \"8\"], \"clip_start\": 407.0, \"clip_end\": 411.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,15,3,15,3,15,3,15,3,15,3,15,3,11,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,0,13,8,11,10,5,3,8,13,8,11,10,11,2,5,2,5,15,3,0,13,15,3,15,3,15,3,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,8,4,13,8,0,13,8,11,6,2,5,2,5,15,8,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,4,2,5,15,3,0,13,8,11,10,11,2,5,15,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,4,2,5,15,14,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,7,2,5,15,3,0,13,8,11,6,13,8,11,6,12,1,10,13,8,8,12,1,10,4,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,6,14,8,4,13,8,11,10,11,6,14,12,5,3,8,13,8,11,15,3,15,3,15,3,15,3,15,3,15,3,15,14,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,5,14,8,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,6,14,12,5,3,8,13,8,11,7,2,5,15,3,0,13,8,0,13,8,11,6,2,5,2,4,2,5,15,3,0,13,8,11,10,11,2,5,15,3,13,8,11,10,11,6,12,1,10,10,4,2,5,15,3,0,13,8,11,6,12,1,10,4,13,8,11,10,11,13,8,5,14,10,13,8,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 490.0, \"clip_end\": 495.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,15,3,15,3,15,3,15,3,15,3,15,3,11,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,0,13,8,11,10,5,3,8,13,8,11,10,11,2,5,2,5,15,3,0,13,15,3,15,3,15,3,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,8,4,13,8,0,13,8,11,6,2,5,2,5,15,8,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,4,2,5,15,3,0,13,8,11,10,11,2,5,15,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,4,2,5,15,14,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,7,2,5,15,3,0,13,8,11,6,13,8,11,6,12,1,10,13,8,8,12,1,10,4,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,6,14,8,4,13,8,11,10,11,6,14,12,5,3,8,13,8,11,15,3,15,3,15,3,15,3,15,3,15,3,15,14,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,5,14,8,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,6,14,12,5,3,8,13,8,11,7,2,5,15,3,0,13,8,0,13,8,11,6,2,5,2,4,2,5,15,3,0,13,8,11,10,11,2,5,15,3,13,8,11,10,11,6,12,1,10,10,4,2,5,15,3,0,13,8,11,6,12,1,10,4,13,8,11,10,11,13,8,5,14,10,13,8,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 201.0, \"clip_end\": 206.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,15,3,15,3,15,3,15,3,15,3,15,3,11,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,0,13,8,11,10,5,3,8,13,8,11,10,11,2,5,2,5,15,3,0,13,15,3,15,3,15,3,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,8,4,13,8,0,13,8,11,6,2,5,2,5,15,8,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,4,2,5,15,3,0,13,8,11,10,11,2,5,15,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,4,2,5,15,14,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,7,2,5,15,3,0,13,8,11,6,13,8,11,6,12,1,10,13,8,8,12,1,10,4,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,6,14,8,4,13,8,11,10,11,6,14,12,5,3,8,13,8,11,15,3,15,3,15,3,15,3,15,3,15,3,15,14,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,5,14,8,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,6,14,12,5,3,8,13,8,11,7,2,5,15,3,0,13,8,0,13,8,11,6,2,5,2,4,2,5,15,3,0,13,8,11,10,11,2,5,15,3,13,8,11,10,11,6,12,1,10,10,4,2,5,15,3,0,13,8,11,6,12,1,10,4,13,8,11,10,11,13,8,5,14,10,13,8,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"6\", \"12\", \"1\"], \"clip_start\": 310.0, \"clip_end\": 315.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,15,3,15,3,15,3,15,3,15,3,15,3,11,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,0,13,8,11,10,5,3,8,13,8,11,10,11,2,5,2,5,15,3,0,13,15,3,15,3,15,3,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,8,4,13,8,0,13,8,11,6,2,5,2,5,15,8,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,4,2,5,15,3,0,13,8,11,10,11,2,5,15,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,4,2,5,15,14,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,7,2,5,15,3,0,13,8,11,6,13,8,11,6,12,1,10,13,8,8,12,1,10,4,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,6,14,8,4,13,8,11,10,11,6,14,12,5,3,8,13,8,11,15,3,15,3,15,3,15,3,15,3,15,3,15,14,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,5,14,8,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,6,14,12,5,3,8,13,8,11,7,2,5,15,3,0,13,8,0,13,8,11,6,2,5,2,4,2,5,15,3,0,13,8,11,10,11,2,5,15,3,13,8,11,10,11,6,12,1,10,10,4,2,5,15,3,0,13,8,11,6,12,1,10,4,13,8,11,10,11,13,8,5,14,10,13,8,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 384.0, \"clip_end\": 388.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,15,3,15,3,15,3,15,3,15,3,15,3,11,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,0,13,8,11,10,5,3,8,13,8,11,10,11,2,5,2,5,15,3,0,13,15,3,15,3,15,3,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,8,4,13,8,0,13,8,11,6,2,5,2,5,15,8,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,4,2,5,15,3,0,13,8,11,10,11,2,5,15,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,4,2,5,15,14,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,7,2,5,15,3,0,13,8,11,6,13,8,11,6,12,1,10,13,8,8,12,1,10,4,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,6,14,8,4,13,8,11,10,11,6,14,12,5,3,8,13,8,11,15,3,15,3,15,3,15,3,15,3,15,3,15,14,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,5,14,8,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,6,14,12,5,3,8,13,8,11,7,2,5,15,3,0,13,8,0,13,8,11,6,2,5,2,4,2,5,15,3,0,13,8,11,10,11,2,5,15,3,13,8,11,10,11,6,12,1,10,10,4,2,5,15,3,0,13,8,11,6,12,1,10,4,13,8,11,10,11,13,8,5,14,10,13,8,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 478.0, \"clip_end\": 483.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,15,3,15,3,15,3,15,3,15,3,15,3,11,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,0,13,8,11,10,5,3,8,13,8,11,10,11,2,5,2,5,15,3,0,13,15,3,15,3,15,3,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,8,4,13,8,0,13,8,11,6,2,5,2,5,15,8,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,4,2,5,15,3,0,13,8,11,10,11,2,5,15,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,4,2,5,15,14,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,7,2,5,15,3,0,13,8,11,6,13,8,11,6,12,1,10,13,8,8,12,1,10,4,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,6,14,8,4,13,8,11,10,11,6,14,12,5,3,8,13,8,11,15,3,15,3,15,3,15,3,15,3,15,3,15,14,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,5,14,8,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,6,14,12,5,3,8,13,8,11,7,2,5,15,3,0,13,8,0,13,8,11,6,2,5,2,4,2,5,15,3,0,13,8,11,10,11,2,5,15,3,13,8,11,10,11,6,12,1,10,10,4,2,5,15,3,0,13,8,11,6,12,1,10,4,13,8,11,10,11,13,8,5,14,10,13,8,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"3\", \"15\"], \"clip_start\": 351.0, \"clip_end\": 354.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,15,3,15,3,15,3,15,3,15,3,15,3,11,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,0,13,8,11,10,5,3,8,13,8,11,10,11,2,5,2,5,15,3,0,13,15,3,15,3,15,3,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,8,4,13,8,0,13,8,11,6,2,5,2,5,15,8,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,4,2,5,15,3,0,13,8,11,10,11,2,5,15,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,4,2,5,15,14,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,7,2,5,15,3,0,13,8,11,6,13,8,11,6,12,1,10,13,8,8,12,1,10,4,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,6,14,8,4,13,8,11,10,11,6,14,12,5,3,8,13,8,11,15,3,15,3,15,3,15,3,15,3,15,3,15,14,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,5,14,8,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,6,14,12,5,3,8,13,8,11,7,2,5,15,3,0,13,8,0,13,8,11,6,2,5,2,4,2,5,15,3,0,13,8,11,10,11,2,5,15,3,13,8,11,10,11,6,12,1,10,10,4,2,5,15,3,0,13,8,11,6,12,1,10,4,13,8,11,10,11,13,8,5,14,10,13,8,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"15\", \"3\", \"15\"], \"clip_start\": 343.0, \"clip_end\": 348.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,15,3,15,3,15,3,15,3,15,3,15,3,11,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,0,13,8,11,10,5,3,8,13,8,11,10,11,2,5,2,5,15,3,0,13,15,3,15,3,15,3,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,8,4,13,8,0,13,8,11,6,2,5,2,5,15,8,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,4,2,5,15,3,0,13,8,11,10,11,2,5,15,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,4,2,5,15,14,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,7,2,5,15,3,0,13,8,11,6,13,8,11,6,12,1,10,13,8,8,12,1,10,4,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,6,14,8,4,13,8,11,10,11,6,14,12,5,3,8,13,8,11,15,3,15,3,15,3,15,3,15,3,15,3,15,14,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,5,14,8,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,6,14,12,5,3,8,13,8,11,7,2,5,15,3,0,13,8,0,13,8,11,6,2,5,2,4,2,5,15,3,0,13,8,11,10,11,2,5,15,3,13,8,11,10,11,6,12,1,10,10,4,2,5,15,3,0,13,8,11,6,12,1,10,4,13,8,11,10,11,13,8,5,14,10,13,8,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"8\"], \"clip_start\": 444.0, \"clip_end\": 447.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,15,3,15,3,15,3,15,3,15,3,15,3,11,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,0,13,8,11,10,5,3,8,13,8,11,10,11,2,5,2,5,15,3,0,13,15,3,15,3,15,3,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,8,4,13,8,0,13,8,11,6,2,5,2,5,15,8,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,4,2,5,15,3,0,13,8,11,10,11,2,5,15,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,4,2,5,15,14,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,7,2,5,15,3,0,13,8,11,6,13,8,11,6,12,1,10,13,8,8,12,1,10,4,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,6,14,8,4,13,8,11,10,11,6,14,12,5,3,8,13,8,11,15,3,15,3,15,3,15,3,15,3,15,3,15,14,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,5,14,8,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,6,14,12,5,3,8,13,8,11,7,2,5,15,3,0,13,8,0,13,8,11,6,2,5,2,4,2,5,15,3,0,13,8,11,10,11,2,5,15,3,13,8,11,10,11,6,12,1,10,10,4,2,5,15,3,0,13,8,11,6,12,1,10,4,13,8,11,10,11,13,8,5,14,10,13,8,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"5\", \"2\", \"5\"], \"clip_start\": 30.0, \"clip_end\": 34.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,15,3,15,3,15,3,15,3,15,3,15,3,11,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,0,13,8,11,10,5,3,8,13,8,11,10,11,2,5,2,5,15,3,0,13,15,3,15,3,15,3,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,8,4,13,8,0,13,8,11,6,2,5,2,5,15,8,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,4,2,5,15,3,0,13,8,11,10,11,2,5,15,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,4,2,5,15,14,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,7,2,5,15,3,0,13,8,11,6,13,8,11,6,12,1,10,13,8,8,12,1,10,4,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,6,14,8,4,13,8,11,10,11,6,14,12,5,3,8,13,8,11,15,3,15,3,15,3,15,3,15,3,15,3,15,14,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,5,14,8,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,6,14,12,5,3,8,13,8,11,7,2,5,15,3,0,13,8,0,13,8,11,6,2,5,2,4,2,5,15,3,0,13,8,11,10,11,2,5,15,3,13,8,11,10,11,6,12,1,10,10,4,2,5,15,3,0,13,8,11,6,12,1,10,4,13,8,11,10,11,13,8,5,14,10,13,8,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"3\", \"15\", \"3\", \"15\", \"3\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,15,3,15,3,15,3,15,3,15,3,15,3,11,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,0,13,8,11,10,5,3,8,13,8,11,10,11,2,5,2,5,15,3,0,13,15,3,15,3,15,3,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,8,4,13,8,0,13,8,11,6,2,5,2,5,15,8,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,4,2,5,15,3,0,13,8,11,10,11,2,5,15,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,4,2,5,15,14,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,7,2,5,15,3,0,13,8,11,6,13,8,11,6,12,1,10,13,8,8,12,1,10,4,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,6,14,8,4,13,8,11,10,11,6,14,12,5,3,8,13,8,11,15,3,15,3,15,3,15,3,15,3,15,3,15,14,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,5,14,8,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,6,14,12,5,3,8,13,8,11,7,2,5,15,3,0,13,8,0,13,8,11,6,2,5,2,4,2,5,15,3,0,13,8,11,10,11,2,5,15,3,13,8,11,10,11,6,12,1,10,10,4,2,5,15,3,0,13,8,11,6,12,1,10,4,13,8,11,10,11,13,8,5,14,10,13,8,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"5\", \"2\"], \"clip_start\": 139.0, \"clip_end\": 143.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,15,3,15,3,15,3,15,3,15,3,15,3,11,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,0,13,8,11,10,5,3,8,13,8,11,10,11,2,5,2,5,15,3,0,13,15,3,15,3,15,3,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,8,4,13,8,0,13,8,11,6,2,5,2,5,15,8,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,4,2,5,15,3,0,13,8,11,10,11,2,5,15,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,4,2,5,15,14,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,7,2,5,15,3,0,13,8,11,6,13,8,11,6,12,1,10,13,8,8,12,1,10,4,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,6,14,8,4,13,8,11,10,11,6,14,12,5,3,8,13,8,11,15,3,15,3,15,3,15,3,15,3,15,3,15,14,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,5,14,8,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,6,14,12,5,3,8,13,8,11,7,2,5,15,3,0,13,8,0,13,8,11,6,2,5,2,4,2,5,15,3,0,13,8,11,10,11,2,5,15,3,13,8,11,10,11,6,12,1,10,10,4,2,5,15,3,0,13,8,11,6,12,1,10,4,13,8,11,10,11,13,8,5,14,10,13,8,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"6\", \"5\", \"14\", \"8\", \"12\"], \"clip_start\": 379.0, \"clip_end\": 385.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q12_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,15,3,15,3,15,3,15,3,15,3,15,3,11,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,0,13,8,11,10,5,3,8,13,8,11,10,11,2,5,2,5,15,3,0,13,15,3,15,3,15,3,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,8,4,13,8,0,13,8,11,6,2,5,2,5,15,8,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,4,2,5,15,3,0,13,8,11,10,11,2,5,15,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,4,2,5,15,14,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,7,2,5,15,3,0,13,8,11,6,13,8,11,6,12,1,10,13,8,8,12,1,10,4,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,6,14,8,4,13,8,11,10,11,6,14,12,5,3,8,13,8,11,15,3,15,3,15,3,15,3,15,3,15,3,15,14,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,5,14,8,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,6,14,12,5,3,8,13,8,11,7,2,5,15,3,0,13,8,0,13,8,11,6,2,5,2,4,2,5,15,3,0,13,8,11,10,11,2,5,15,3,13,8,11,10,11,6,12,1,10,10,4,2,5,15,3,0,13,8,11,6,12,1,10,4,13,8,11,10,11,13,8,5,14,10,13,8,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"3\", \"0\"], \"clip_start\": 282.0, \"clip_end\": 286.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q13_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,15,3,15,3,15,3,15,3,15,3,15,3,11,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,0,13,8,11,10,5,3,8,13,8,11,10,11,2,5,2,5,15,3,0,13,15,3,15,3,15,3,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,8,4,13,8,0,13,8,11,6,2,5,2,5,15,8,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,4,2,5,15,3,0,13,8,11,10,11,2,5,15,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,4,2,5,15,14,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,7,2,5,15,3,0,13,8,11,6,13,8,11,6,12,1,10,13,8,8,12,1,10,4,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,6,14,8,4,13,8,11,10,11,6,14,12,5,3,8,13,8,11,15,3,15,3,15,3,15,3,15,3,15,3,15,14,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,5,14,8,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,6,14,12,5,3,8,13,8,11,7,2,5,15,3,0,13,8,0,13,8,11,6,2,5,2,4,2,5,15,3,0,13,8,11,10,11,2,5,15,3,13,8,11,10,11,6,12,1,10,10,4,2,5,15,3,0,13,8,11,6,12,1,10,4,13,8,11,10,11,13,8,5,14,10,13,8,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"11\", \"2\", \"3\"], \"clip_start\": 196.0, \"clip_end\": 201.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q14_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,15,3,15,3,15,3,15,3,15,3,15,3,11,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,0,13,8,11,10,5,3,8,13,8,11,10,11,2,5,2,5,15,3,0,13,15,3,15,3,15,3,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,8,4,13,8,0,13,8,11,6,2,5,2,5,15,8,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,4,2,5,15,3,0,13,8,11,10,11,2,5,15,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,4,2,5,15,14,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,7,2,5,15,3,0,13,8,11,6,13,8,11,6,12,1,10,13,8,8,12,1,10,4,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,6,14,8,4,13,8,11,10,11,6,14,12,5,3,8,13,8,11,15,3,15,3,15,3,15,3,15,3,15,3,15,14,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,5,14,8,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,6,14,12,5,3,8,13,8,11,7,2,5,15,3,0,13,8,0,13,8,11,6,2,5,2,4,2,5,15,3,0,13,8,11,10,11,2,5,15,3,13,8,11,10,11,6,12,1,10,10,4,2,5,15,3,0,13,8,11,6,12,1,10,4,13,8,11,10,11,13,8,5,14,10,13,8,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"13\", \"9\", \"14\"], \"clip_start\": 62.0, \"clip_end\": 67.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q15_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,15,3,15,3,15,3,15,3,15,3,15,3,11,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,0,13,8,11,10,5,3,8,13,8,11,10,11,2,5,2,5,15,3,0,13,15,3,15,3,15,3,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,8,4,13,8,0,13,8,11,6,2,5,2,5,15,8,12,1,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,6,4,2,5,15,3,0,13,8,11,10,11,2,5,15,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,4,2,5,15,14,2,5,15,3,0,13,8,11,10,11,13,8,11,6,12,1,10,13,8,7,2,5,15,3,0,13,8,11,6,13,8,11,6,12,1,10,13,8,8,12,1,10,4,2,5,15,3,0,13,8,11,6,12,1,10,13,8,11,10,11,2,5,15,3,0,13,6,14,8,4,13,8,11,10,11,6,14,12,5,3,8,13,8,11,15,3,15,3,15,3,15,3,15,3,15,3,15,14,10,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,5,14,8,12,1,10,13,8,11,6,2,5,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11,6,14,12,5,3,8,13,8,11,7,2,5,15,3,0,13,8,0,13,8,11,6,2,5,2,4,2,5,15,3,0,13,8,11,10,11,2,5,15,3,13,8,11,10,11,6,12,1,10,10,4,2,5,15,3,0,13,8,11,6,12,1,10,4,13,8,11,10,11,13,8,5,14,10,13,8,4,2,5,15,3,0,13,8,11,6,2,5,2,5,15,3,0,13,8,11,10,11", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"14\", \"7\", \"8\"], \"clip_start\": 233.0, \"clip_end\": 238.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,0,2,15,8,13,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,7,5,1,12,9,15,2,1,10,10,5,2,4,5,2,2,1,10,10,3,15,8,1,4,6,2,1,9,15,2,5,2,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,4,6,2,1,9,15,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,1,6,2,1,9,15,2,15,8,1,4,6,2,1,9,15,2,1,10,10,1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,10,8,7,14,8,7,15,8,2,1,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,7,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,10,5,2,15,8,3,15,8,2,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,1,4,6,2,1,9,15,2,15,8,13,14,7,8,4,6,2,1,14,12,6,2,1,9,15,2,4,6,2,1,14,7,0,8,14,7,8,0,14,2,3,15,8,2,1,10,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,0,10,5,2,15,6,2,1,9,15,2,15,8,13,6,2,1,6,2,1,14,7,8,0,8,15,12,3,15,8,1,4,6,2,1,9,15,2,14,7,0,8,14,13,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,9,15,2,1,10,10,2,4,6,2,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"9\", \"15\"], \"clip_start\": 152.0, \"clip_end\": 156.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,0,2,15,8,13,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,7,5,1,12,9,15,2,1,10,10,5,2,4,5,2,2,1,10,10,3,15,8,1,4,6,2,1,9,15,2,5,2,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,4,6,2,1,9,15,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,1,6,2,1,9,15,2,15,8,1,4,6,2,1,9,15,2,1,10,10,1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,10,8,7,14,8,7,15,8,2,1,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,7,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,10,5,2,15,8,3,15,8,2,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,1,4,6,2,1,9,15,2,15,8,13,14,7,8,4,6,2,1,14,12,6,2,1,9,15,2,4,6,2,1,14,7,0,8,14,7,8,0,14,2,3,15,8,2,1,10,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,0,10,5,2,15,6,2,1,9,15,2,15,8,13,6,2,1,6,2,1,14,7,8,0,8,15,12,3,15,8,1,4,6,2,1,9,15,2,14,7,0,8,14,13,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,9,15,2,1,10,10,2,4,6,2,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"2\", \"1\", \"9\", \"15\"], \"clip_start\": 383.0, \"clip_end\": 389.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,0,2,15,8,13,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,7,5,1,12,9,15,2,1,10,10,5,2,4,5,2,2,1,10,10,3,15,8,1,4,6,2,1,9,15,2,5,2,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,4,6,2,1,9,15,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,1,6,2,1,9,15,2,15,8,1,4,6,2,1,9,15,2,1,10,10,1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,10,8,7,14,8,7,15,8,2,1,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,7,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,10,5,2,15,8,3,15,8,2,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,1,4,6,2,1,9,15,2,15,8,13,14,7,8,4,6,2,1,14,12,6,2,1,9,15,2,4,6,2,1,14,7,0,8,14,7,8,0,14,2,3,15,8,2,1,10,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,0,10,5,2,15,6,2,1,9,15,2,15,8,13,6,2,1,6,2,1,14,7,8,0,8,15,12,3,15,8,1,4,6,2,1,9,15,2,14,7,0,8,14,13,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,9,15,2,1,10,10,2,4,6,2,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"8\", \"0\", \"8\"], \"clip_start\": 100.0, \"clip_end\": 105.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,0,2,15,8,13,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,7,5,1,12,9,15,2,1,10,10,5,2,4,5,2,2,1,10,10,3,15,8,1,4,6,2,1,9,15,2,5,2,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,4,6,2,1,9,15,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,1,6,2,1,9,15,2,15,8,1,4,6,2,1,9,15,2,1,10,10,1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,10,8,7,14,8,7,15,8,2,1,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,7,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,10,5,2,15,8,3,15,8,2,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,1,4,6,2,1,9,15,2,15,8,13,14,7,8,4,6,2,1,14,12,6,2,1,9,15,2,4,6,2,1,14,7,0,8,14,7,8,0,14,2,3,15,8,2,1,10,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,0,10,5,2,15,6,2,1,9,15,2,15,8,13,6,2,1,6,2,1,14,7,8,0,8,15,12,3,15,8,1,4,6,2,1,9,15,2,14,7,0,8,14,13,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,9,15,2,1,10,10,2,4,6,2,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"8\", \"4\", \"6\", \"2\"], \"clip_start\": 376.0, \"clip_end\": 381.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,0,2,15,8,13,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,7,5,1,12,9,15,2,1,10,10,5,2,4,5,2,2,1,10,10,3,15,8,1,4,6,2,1,9,15,2,5,2,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,4,6,2,1,9,15,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,1,6,2,1,9,15,2,15,8,1,4,6,2,1,9,15,2,1,10,10,1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,10,8,7,14,8,7,15,8,2,1,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,7,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,10,5,2,15,8,3,15,8,2,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,1,4,6,2,1,9,15,2,15,8,13,14,7,8,4,6,2,1,14,12,6,2,1,9,15,2,4,6,2,1,14,7,0,8,14,7,8,0,14,2,3,15,8,2,1,10,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,0,10,5,2,15,6,2,1,9,15,2,15,8,13,6,2,1,6,2,1,14,7,8,0,8,15,12,3,15,8,1,4,6,2,1,9,15,2,14,7,0,8,14,13,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,9,15,2,1,10,10,2,4,6,2,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"14\", \"7\", \"8\", \"0\"], \"clip_start\": 39.0, \"clip_end\": 45.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,0,2,15,8,13,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,7,5,1,12,9,15,2,1,10,10,5,2,4,5,2,2,1,10,10,3,15,8,1,4,6,2,1,9,15,2,5,2,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,4,6,2,1,9,15,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,1,6,2,1,9,15,2,15,8,1,4,6,2,1,9,15,2,1,10,10,1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,10,8,7,14,8,7,15,8,2,1,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,7,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,10,5,2,15,8,3,15,8,2,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,1,4,6,2,1,9,15,2,15,8,13,14,7,8,4,6,2,1,14,12,6,2,1,9,15,2,4,6,2,1,14,7,0,8,14,7,8,0,14,2,3,15,8,2,1,10,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,0,10,5,2,15,6,2,1,9,15,2,15,8,13,6,2,1,6,2,1,14,7,8,0,8,15,12,3,15,8,1,4,6,2,1,9,15,2,14,7,0,8,14,13,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,9,15,2,1,10,10,2,4,6,2,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"8\", \"2\", \"1\", \"0\"], \"clip_start\": 188.0, \"clip_end\": 193.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,0,2,15,8,13,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,7,5,1,12,9,15,2,1,10,10,5,2,4,5,2,2,1,10,10,3,15,8,1,4,6,2,1,9,15,2,5,2,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,4,6,2,1,9,15,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,1,6,2,1,9,15,2,15,8,1,4,6,2,1,9,15,2,1,10,10,1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,10,8,7,14,8,7,15,8,2,1,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,7,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,10,5,2,15,8,3,15,8,2,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,1,4,6,2,1,9,15,2,15,8,13,14,7,8,4,6,2,1,14,12,6,2,1,9,15,2,4,6,2,1,14,7,0,8,14,7,8,0,14,2,3,15,8,2,1,10,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,0,10,5,2,15,6,2,1,9,15,2,15,8,13,6,2,1,6,2,1,14,7,8,0,8,15,12,3,15,8,1,4,6,2,1,9,15,2,14,7,0,8,14,13,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,9,15,2,1,10,10,2,4,6,2,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"15\", \"6\", \"2\"], \"clip_start\": 442.0, \"clip_end\": 447.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,0,2,15,8,13,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,7,5,1,12,9,15,2,1,10,10,5,2,4,5,2,2,1,10,10,3,15,8,1,4,6,2,1,9,15,2,5,2,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,4,6,2,1,9,15,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,1,6,2,1,9,15,2,15,8,1,4,6,2,1,9,15,2,1,10,10,1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,10,8,7,14,8,7,15,8,2,1,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,7,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,10,5,2,15,8,3,15,8,2,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,1,4,6,2,1,9,15,2,15,8,13,14,7,8,4,6,2,1,14,12,6,2,1,9,15,2,4,6,2,1,14,7,0,8,14,7,8,0,14,2,3,15,8,2,1,10,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,0,10,5,2,15,6,2,1,9,15,2,15,8,13,6,2,1,6,2,1,14,7,8,0,8,15,12,3,15,8,1,4,6,2,1,9,15,2,14,7,0,8,14,13,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,9,15,2,1,10,10,2,4,6,2,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"2\", \"1\"], \"clip_start\": 406.0, \"clip_end\": 409.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,0,2,15,8,13,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,7,5,1,12,9,15,2,1,10,10,5,2,4,5,2,2,1,10,10,3,15,8,1,4,6,2,1,9,15,2,5,2,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,4,6,2,1,9,15,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,1,6,2,1,9,15,2,15,8,1,4,6,2,1,9,15,2,1,10,10,1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,10,8,7,14,8,7,15,8,2,1,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,7,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,10,5,2,15,8,3,15,8,2,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,1,4,6,2,1,9,15,2,15,8,13,14,7,8,4,6,2,1,14,12,6,2,1,9,15,2,4,6,2,1,14,7,0,8,14,7,8,0,14,2,3,15,8,2,1,10,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,0,10,5,2,15,6,2,1,9,15,2,15,8,13,6,2,1,6,2,1,14,7,8,0,8,15,12,3,15,8,1,4,6,2,1,9,15,2,14,7,0,8,14,13,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,9,15,2,1,10,10,2,4,6,2,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"8\", \"3\", \"15\", \"8\", \"2\"], \"clip_start\": 290.0, \"clip_end\": 296.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,0,2,15,8,13,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,7,5,1,12,9,15,2,1,10,10,5,2,4,5,2,2,1,10,10,3,15,8,1,4,6,2,1,9,15,2,5,2,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,4,6,2,1,9,15,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,1,6,2,1,9,15,2,15,8,1,4,6,2,1,9,15,2,1,10,10,1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,10,8,7,14,8,7,15,8,2,1,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,7,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,10,5,2,15,8,3,15,8,2,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,1,4,6,2,1,9,15,2,15,8,13,14,7,8,4,6,2,1,14,12,6,2,1,9,15,2,4,6,2,1,14,7,0,8,14,7,8,0,14,2,3,15,8,2,1,10,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,0,10,5,2,15,6,2,1,9,15,2,15,8,13,6,2,1,6,2,1,14,7,8,0,8,15,12,3,15,8,1,4,6,2,1,9,15,2,14,7,0,8,14,13,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,9,15,2,1,10,10,2,4,6,2,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"8\", \"0\"], \"clip_start\": 215.0, \"clip_end\": 218.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,0,2,15,8,13,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,7,5,1,12,9,15,2,1,10,10,5,2,4,5,2,2,1,10,10,3,15,8,1,4,6,2,1,9,15,2,5,2,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,4,6,2,1,9,15,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,1,6,2,1,9,15,2,15,8,1,4,6,2,1,9,15,2,1,10,10,1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,10,8,7,14,8,7,15,8,2,1,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,7,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,10,5,2,15,8,3,15,8,2,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,1,4,6,2,1,9,15,2,15,8,13,14,7,8,4,6,2,1,14,12,6,2,1,9,15,2,4,6,2,1,14,7,0,8,14,7,8,0,14,2,3,15,8,2,1,10,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,0,10,5,2,15,6,2,1,9,15,2,15,8,13,6,2,1,6,2,1,14,7,8,0,8,15,12,3,15,8,1,4,6,2,1,9,15,2,14,7,0,8,14,13,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,9,15,2,1,10,10,2,4,6,2,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"8\", \"2\", \"1\"], \"clip_start\": 188.0, \"clip_end\": 192.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,0,2,15,8,13,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,7,5,1,12,9,15,2,1,10,10,5,2,4,5,2,2,1,10,10,3,15,8,1,4,6,2,1,9,15,2,5,2,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,4,6,2,1,9,15,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,1,6,2,1,9,15,2,15,8,1,4,6,2,1,9,15,2,1,10,10,1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,10,8,7,14,8,7,15,8,2,1,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,7,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,10,5,2,15,8,3,15,8,2,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,1,4,6,2,1,9,15,2,15,8,13,14,7,8,4,6,2,1,14,12,6,2,1,9,15,2,4,6,2,1,14,7,0,8,14,7,8,0,14,2,3,15,8,2,1,10,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,0,10,5,2,15,6,2,1,9,15,2,15,8,13,6,2,1,6,2,1,14,7,8,0,8,15,12,3,15,8,1,4,6,2,1,9,15,2,14,7,0,8,14,13,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,9,15,2,1,10,10,2,4,6,2,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"7\", \"8\", \"0\", \"8\"], \"clip_start\": 170.0, \"clip_end\": 175.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,0,2,15,8,13,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,7,5,1,12,9,15,2,1,10,10,5,2,4,5,2,2,1,10,10,3,15,8,1,4,6,2,1,9,15,2,5,2,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,4,6,2,1,9,15,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,1,6,2,1,9,15,2,15,8,1,4,6,2,1,9,15,2,1,10,10,1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,10,8,7,14,8,7,15,8,2,1,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,7,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,10,5,2,15,8,3,15,8,2,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,1,4,6,2,1,9,15,2,15,8,13,14,7,8,4,6,2,1,14,12,6,2,1,9,15,2,4,6,2,1,14,7,0,8,14,7,8,0,14,2,3,15,8,2,1,10,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,0,10,5,2,15,6,2,1,9,15,2,15,8,13,6,2,1,6,2,1,14,7,8,0,8,15,12,3,15,8,1,4,6,2,1,9,15,2,14,7,0,8,14,13,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,9,15,2,1,10,10,2,4,6,2,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"14\", \"7\", \"8\", \"0\"], \"clip_start\": 228.0, \"clip_end\": 234.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,0,2,15,8,13,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,7,5,1,12,9,15,2,1,10,10,5,2,4,5,2,2,1,10,10,3,15,8,1,4,6,2,1,9,15,2,5,2,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,4,6,2,1,9,15,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,1,6,2,1,9,15,2,15,8,1,4,6,2,1,9,15,2,1,10,10,1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,10,8,7,14,8,7,15,8,2,1,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,7,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,10,5,2,15,8,3,15,8,2,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,1,4,6,2,1,9,15,2,15,8,13,14,7,8,4,6,2,1,14,12,6,2,1,9,15,2,4,6,2,1,14,7,0,8,14,7,8,0,14,2,3,15,8,2,1,10,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,0,10,5,2,15,6,2,1,9,15,2,15,8,13,6,2,1,6,2,1,14,7,8,0,8,15,12,3,15,8,1,4,6,2,1,9,15,2,14,7,0,8,14,13,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,9,15,2,1,10,10,2,4,6,2,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"2\", \"1\", \"14\"], \"clip_start\": 161.0, \"clip_end\": 166.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,0,2,15,8,13,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,7,5,1,12,9,15,2,1,10,10,5,2,4,5,2,2,1,10,10,3,15,8,1,4,6,2,1,9,15,2,5,2,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,4,6,2,1,9,15,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,1,6,2,1,9,15,2,15,8,1,4,6,2,1,9,15,2,1,10,10,1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,10,8,7,14,8,7,15,8,2,1,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,7,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,10,5,2,15,8,3,15,8,2,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,1,4,6,2,1,9,15,2,15,8,13,14,7,8,4,6,2,1,14,12,6,2,1,9,15,2,4,6,2,1,14,7,0,8,14,7,8,0,14,2,3,15,8,2,1,10,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,0,10,5,2,15,6,2,1,9,15,2,15,8,13,6,2,1,6,2,1,14,7,8,0,8,15,12,3,15,8,1,4,6,2,1,9,15,2,14,7,0,8,14,13,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,9,15,2,1,10,10,2,4,6,2,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"8\", \"14\", \"7\", \"8\"], \"clip_start\": 44.0, \"clip_end\": 49.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,0,2,15,8,13,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,7,5,1,12,9,15,2,1,10,10,5,2,4,5,2,2,1,10,10,3,15,8,1,4,6,2,1,9,15,2,5,2,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,4,6,2,1,9,15,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,1,6,2,1,9,15,2,15,8,1,4,6,2,1,9,15,2,1,10,10,1,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,10,8,7,14,8,7,15,8,2,1,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,7,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,10,5,2,15,8,3,15,8,2,4,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,8,0,8,14,7,8,0,6,2,1,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,1,4,6,2,1,9,15,2,15,8,13,14,7,8,4,6,2,1,14,12,6,2,1,9,15,2,4,6,2,1,14,7,0,8,14,7,8,0,14,2,3,15,8,2,1,10,2,15,8,13,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,0,8,14,7,0,8,14,7,0,10,5,2,15,6,2,1,9,15,2,15,8,13,6,2,1,6,2,1,14,7,8,0,8,15,12,3,15,8,1,4,6,2,1,9,15,2,14,7,0,8,14,13,14,7,0,8,14,7,8,0,8,14,7,8,0,8,14,7,8,9,15,2,1,10,10,2,4,6,2,1", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"11\", \"2\", \"1\"], \"clip_start\": 95.0, \"clip_end\": 100.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,11,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,4,10,13,11,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,11,14,5,6,3,5,5,6,3,5,5,6,3,5,5,6,11,14,5,6,9,8,9,8,14,13,11,5,6,3,5,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,4,0,7,8,5,6,3,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,9,8,14,0,7,8,7,13,12,7,0,7,8,7,13,12,5,8,8,7,11,11,14,5,6,3,5,5,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,10,6,3,5,5,6,3,5,5,8,8,7,7,13,11,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,11,3,0,7,8,14,13,11,5,8,8,7,7,13,6,4,11,14,5,6,3,5,5,6,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,6,4,14,5,6,3,5,5,6,3,5,5,0,7,8,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,9,8,7,13,12,14,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,11,14,5,6,6,4,11,4,11,14,6,4,10,9,8,13,11,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,11,14,5,8,8,0,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,1,7,11,2,1,3,12,8,14,1,7,11,2,4,11,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"6\", \"4\", \"11\"], \"clip_start\": 267.0, \"clip_end\": 272.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,11,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,4,10,13,11,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,11,14,5,6,3,5,5,6,3,5,5,6,3,5,5,6,11,14,5,6,9,8,9,8,14,13,11,5,6,3,5,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,4,0,7,8,5,6,3,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,9,8,14,0,7,8,7,13,12,7,0,7,8,7,13,12,5,8,8,7,11,11,14,5,6,3,5,5,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,10,6,3,5,5,6,3,5,5,8,8,7,7,13,11,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,11,3,0,7,8,14,13,11,5,8,8,7,7,13,6,4,11,14,5,6,3,5,5,6,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,6,4,14,5,6,3,5,5,6,3,5,5,0,7,8,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,9,8,7,13,12,14,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,11,14,5,6,6,4,11,4,11,14,6,4,10,9,8,13,11,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,11,14,5,8,8,0,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,1,7,11,2,1,3,12,8,14,1,7,11,2,4,11,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"14\", \"5\", \"8\"], \"clip_start\": 459.0, \"clip_end\": 464.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,11,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,4,10,13,11,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,11,14,5,6,3,5,5,6,3,5,5,6,3,5,5,6,11,14,5,6,9,8,9,8,14,13,11,5,6,3,5,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,4,0,7,8,5,6,3,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,9,8,14,0,7,8,7,13,12,7,0,7,8,7,13,12,5,8,8,7,11,11,14,5,6,3,5,5,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,10,6,3,5,5,6,3,5,5,8,8,7,7,13,11,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,11,3,0,7,8,14,13,11,5,8,8,7,7,13,6,4,11,14,5,6,3,5,5,6,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,6,4,14,5,6,3,5,5,6,3,5,5,0,7,8,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,9,8,7,13,12,14,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,11,14,5,6,6,4,11,4,11,14,6,4,10,9,8,13,11,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,11,14,5,8,8,0,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,1,7,11,2,1,3,12,8,14,1,7,11,2,4,11,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"7\", \"13\", \"11\", \"3\"], \"clip_start\": 86.0, \"clip_end\": 91.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,11,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,4,10,13,11,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,11,14,5,6,3,5,5,6,3,5,5,6,3,5,5,6,11,14,5,6,9,8,9,8,14,13,11,5,6,3,5,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,4,0,7,8,5,6,3,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,9,8,14,0,7,8,7,13,12,7,0,7,8,7,13,12,5,8,8,7,11,11,14,5,6,3,5,5,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,10,6,3,5,5,6,3,5,5,8,8,7,7,13,11,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,11,3,0,7,8,14,13,11,5,8,8,7,7,13,6,4,11,14,5,6,3,5,5,6,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,6,4,14,5,6,3,5,5,6,3,5,5,0,7,8,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,9,8,7,13,12,14,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,11,14,5,6,6,4,11,4,11,14,6,4,10,9,8,13,11,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,11,14,5,8,8,0,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,1,7,11,2,1,3,12,8,14,1,7,11,2,4,11,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"6\", \"3\", \"5\"], \"clip_start\": 218.0, \"clip_end\": 223.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,11,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,4,10,13,11,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,11,14,5,6,3,5,5,6,3,5,5,6,3,5,5,6,11,14,5,6,9,8,9,8,14,13,11,5,6,3,5,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,4,0,7,8,5,6,3,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,9,8,14,0,7,8,7,13,12,7,0,7,8,7,13,12,5,8,8,7,11,11,14,5,6,3,5,5,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,10,6,3,5,5,6,3,5,5,8,8,7,7,13,11,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,11,3,0,7,8,14,13,11,5,8,8,7,7,13,6,4,11,14,5,6,3,5,5,6,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,6,4,14,5,6,3,5,5,6,3,5,5,0,7,8,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,9,8,7,13,12,14,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,11,14,5,6,6,4,11,4,11,14,6,4,10,9,8,13,11,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,11,14,5,8,8,0,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,1,7,11,2,1,3,12,8,14,1,7,11,2,4,11,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"1\", \"7\"], \"clip_start\": 100.0, \"clip_end\": 104.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,11,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,4,10,13,11,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,11,14,5,6,3,5,5,6,3,5,5,6,3,5,5,6,11,14,5,6,9,8,9,8,14,13,11,5,6,3,5,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,4,0,7,8,5,6,3,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,9,8,14,0,7,8,7,13,12,7,0,7,8,7,13,12,5,8,8,7,11,11,14,5,6,3,5,5,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,10,6,3,5,5,6,3,5,5,8,8,7,7,13,11,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,11,3,0,7,8,14,13,11,5,8,8,7,7,13,6,4,11,14,5,6,3,5,5,6,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,6,4,14,5,6,3,5,5,6,3,5,5,0,7,8,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,9,8,7,13,12,14,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,11,14,5,6,6,4,11,4,11,14,6,4,10,9,8,13,11,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,11,14,5,8,8,0,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,1,7,11,2,1,3,12,8,14,1,7,11,2,4,11,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 431.0, \"clip_end\": 434.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,11,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,4,10,13,11,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,11,14,5,6,3,5,5,6,3,5,5,6,3,5,5,6,11,14,5,6,9,8,9,8,14,13,11,5,6,3,5,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,4,0,7,8,5,6,3,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,9,8,14,0,7,8,7,13,12,7,0,7,8,7,13,12,5,8,8,7,11,11,14,5,6,3,5,5,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,10,6,3,5,5,6,3,5,5,8,8,7,7,13,11,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,11,3,0,7,8,14,13,11,5,8,8,7,7,13,6,4,11,14,5,6,3,5,5,6,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,6,4,14,5,6,3,5,5,6,3,5,5,0,7,8,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,9,8,7,13,12,14,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,11,14,5,6,6,4,11,4,11,14,6,4,10,9,8,13,11,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,11,14,5,8,8,0,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,1,7,11,2,1,3,12,8,14,1,7,11,2,4,11,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"7\", \"2\"], \"clip_start\": 141.0, \"clip_end\": 145.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,11,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,4,10,13,11,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,11,14,5,6,3,5,5,6,3,5,5,6,3,5,5,6,11,14,5,6,9,8,9,8,14,13,11,5,6,3,5,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,4,0,7,8,5,6,3,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,9,8,14,0,7,8,7,13,12,7,0,7,8,7,13,12,5,8,8,7,11,11,14,5,6,3,5,5,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,10,6,3,5,5,6,3,5,5,8,8,7,7,13,11,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,11,3,0,7,8,14,13,11,5,8,8,7,7,13,6,4,11,14,5,6,3,5,5,6,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,6,4,14,5,6,3,5,5,6,3,5,5,0,7,8,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,9,8,7,13,12,14,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,11,14,5,6,6,4,11,4,11,14,6,4,10,9,8,13,11,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,11,14,5,8,8,0,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,1,7,11,2,1,3,12,8,14,1,7,11,2,4,11,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"5\", \"6\", \"3\", \"2\"], \"clip_start\": 131.0, \"clip_end\": 136.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,11,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,4,10,13,11,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,11,14,5,6,3,5,5,6,3,5,5,6,3,5,5,6,11,14,5,6,9,8,9,8,14,13,11,5,6,3,5,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,4,0,7,8,5,6,3,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,9,8,14,0,7,8,7,13,12,7,0,7,8,7,13,12,5,8,8,7,11,11,14,5,6,3,5,5,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,10,6,3,5,5,6,3,5,5,8,8,7,7,13,11,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,11,3,0,7,8,14,13,11,5,8,8,7,7,13,6,4,11,14,5,6,3,5,5,6,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,6,4,14,5,6,3,5,5,6,3,5,5,0,7,8,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,9,8,7,13,12,14,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,11,14,5,6,6,4,11,4,11,14,6,4,10,9,8,13,11,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,11,14,5,8,8,0,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,1,7,11,2,1,3,12,8,14,1,7,11,2,4,11,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"5\", \"5\", \"6\"], \"clip_start\": 221.0, \"clip_end\": 225.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,11,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,4,10,13,11,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,11,14,5,6,3,5,5,6,3,5,5,6,3,5,5,6,11,14,5,6,9,8,9,8,14,13,11,5,6,3,5,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,4,0,7,8,5,6,3,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,9,8,14,0,7,8,7,13,12,7,0,7,8,7,13,12,5,8,8,7,11,11,14,5,6,3,5,5,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,10,6,3,5,5,6,3,5,5,8,8,7,7,13,11,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,11,3,0,7,8,14,13,11,5,8,8,7,7,13,6,4,11,14,5,6,3,5,5,6,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,6,4,14,5,6,3,5,5,6,3,5,5,0,7,8,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,9,8,7,13,12,14,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,11,14,5,6,6,4,11,4,11,14,6,4,10,9,8,13,11,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,11,14,5,8,8,0,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,1,7,11,2,1,3,12,8,14,1,7,11,2,4,11,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"11\", \"2\", \"1\"], \"clip_start\": 234.0, \"clip_end\": 239.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,11,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,4,10,13,11,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,11,14,5,6,3,5,5,6,3,5,5,6,3,5,5,6,11,14,5,6,9,8,9,8,14,13,11,5,6,3,5,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,4,0,7,8,5,6,3,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,9,8,14,0,7,8,7,13,12,7,0,7,8,7,13,12,5,8,8,7,11,11,14,5,6,3,5,5,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,10,6,3,5,5,6,3,5,5,8,8,7,7,13,11,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,11,3,0,7,8,14,13,11,5,8,8,7,7,13,6,4,11,14,5,6,3,5,5,6,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,6,4,14,5,6,3,5,5,6,3,5,5,0,7,8,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,9,8,7,13,12,14,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,11,14,5,6,6,4,11,4,11,14,6,4,10,9,8,13,11,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,11,14,5,8,8,0,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,1,7,11,2,1,3,12,8,14,1,7,11,2,4,11,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"2\", \"1\"], \"clip_start\": 334.0, \"clip_end\": 338.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,11,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,4,10,13,11,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,11,14,5,6,3,5,5,6,3,5,5,6,3,5,5,6,11,14,5,6,9,8,9,8,14,13,11,5,6,3,5,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,4,0,7,8,5,6,3,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,9,8,14,0,7,8,7,13,12,7,0,7,8,7,13,12,5,8,8,7,11,11,14,5,6,3,5,5,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,10,6,3,5,5,6,3,5,5,8,8,7,7,13,11,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,11,3,0,7,8,14,13,11,5,8,8,7,7,13,6,4,11,14,5,6,3,5,5,6,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,6,4,14,5,6,3,5,5,6,3,5,5,0,7,8,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,9,8,7,13,12,14,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,11,14,5,6,6,4,11,4,11,14,6,4,10,9,8,13,11,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,11,14,5,8,8,0,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,1,7,11,2,1,3,12,8,14,1,7,11,2,4,11,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\"], \"clip_start\": 163.0, \"clip_end\": 166.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,11,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,4,10,13,11,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,11,14,5,6,3,5,5,6,3,5,5,6,3,5,5,6,11,14,5,6,9,8,9,8,14,13,11,5,6,3,5,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,4,0,7,8,5,6,3,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,9,8,14,0,7,8,7,13,12,7,0,7,8,7,13,12,5,8,8,7,11,11,14,5,6,3,5,5,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,10,6,3,5,5,6,3,5,5,8,8,7,7,13,11,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,11,3,0,7,8,14,13,11,5,8,8,7,7,13,6,4,11,14,5,6,3,5,5,6,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,6,4,14,5,6,3,5,5,6,3,5,5,0,7,8,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,9,8,7,13,12,14,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,11,14,5,6,6,4,11,4,11,14,6,4,10,9,8,13,11,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,11,14,5,8,8,0,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,1,7,11,2,1,3,12,8,14,1,7,11,2,4,11,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"2\", \"1\", \"7\", \"2\"], \"clip_start\": 154.0, \"clip_end\": 160.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q13_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,11,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,4,10,13,11,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,11,14,5,6,3,5,5,6,3,5,5,6,3,5,5,6,11,14,5,6,9,8,9,8,14,13,11,5,6,3,5,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,4,0,7,8,5,6,3,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,9,8,14,0,7,8,7,13,12,7,0,7,8,7,13,12,5,8,8,7,11,11,14,5,6,3,5,5,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,10,6,3,5,5,6,3,5,5,8,8,7,7,13,11,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,11,3,0,7,8,14,13,11,5,8,8,7,7,13,6,4,11,14,5,6,3,5,5,6,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,6,4,14,5,6,3,5,5,6,3,5,5,0,7,8,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,9,8,7,13,12,14,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,11,14,5,6,6,4,11,4,11,14,6,4,10,9,8,13,11,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,11,14,5,8,8,0,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,1,7,11,2,1,3,12,8,14,1,7,11,2,4,11,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"5\", \"5\", \"8\", \"8\", \"7\"], \"clip_start\": 499.0, \"clip_end\": 505.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,11,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,4,10,13,11,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,11,14,5,6,3,5,5,6,3,5,5,6,3,5,5,6,11,14,5,6,9,8,9,8,14,13,11,5,6,3,5,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,4,0,7,8,5,6,3,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,9,8,14,0,7,8,7,13,12,7,0,7,8,7,13,12,5,8,8,7,11,11,14,5,6,3,5,5,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,10,6,3,5,5,6,3,5,5,8,8,7,7,13,11,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,11,3,0,7,8,14,13,11,5,8,8,7,7,13,6,4,11,14,5,6,3,5,5,6,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,6,4,14,5,6,3,5,5,6,3,5,5,0,7,8,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,9,8,7,13,12,14,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,11,14,5,6,6,4,11,4,11,14,6,4,10,9,8,13,11,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,11,14,5,8,8,0,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,1,7,11,2,1,3,12,8,14,1,7,11,2,4,11,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"14\", \"13\", \"11\"], \"clip_start\": 74.0, \"clip_end\": 79.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "13,11,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,6,3,5,5,4,10,13,11,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,11,14,5,6,3,5,5,6,3,5,5,6,3,5,5,6,11,14,5,6,9,8,9,8,14,13,11,5,6,3,5,5,8,8,7,7,13,11,3,0,7,8,14,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,4,0,7,8,5,6,3,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,9,8,14,0,7,8,7,13,12,7,0,7,8,7,13,12,5,8,8,7,11,11,14,5,6,3,5,5,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,10,6,3,5,5,6,3,5,5,8,8,7,7,13,11,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,11,3,0,7,8,14,13,11,5,8,8,7,7,13,6,4,11,14,5,6,3,5,5,6,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,7,13,6,4,14,5,6,3,5,5,6,3,5,5,0,7,8,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,7,2,1,9,8,7,13,12,14,5,6,3,5,5,6,3,5,5,8,8,7,7,13,11,11,14,5,6,6,4,11,4,11,14,6,4,10,9,8,13,11,7,13,11,3,1,7,11,2,1,7,2,1,7,2,1,7,2,1,7,2,11,14,5,8,8,0,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11,1,7,11,2,1,3,12,8,14,1,7,11,2,4,11,14,5,6,3,5,5,8,8,7,7,13,11,3,1,7,11", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 328.0, \"clip_end\": 332.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,10,15,4,14,15,4,2,6,13,1,15,4,0,5,10,7,0,5,0,5,10,13,6,12,9,10,1,4,3,3,13,10,2,3,8,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,13,5,13,10,2,3,8,15,4,2,6,13,12,9,10,1,4,15,4,2,6,13,12,9,10,1,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,5,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,9,12,9,10,1,4,3,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,3,8,15,4,2,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"4\", \"12\"], \"clip_start\": 304.0, \"clip_end\": 308.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,10,15,4,14,15,4,2,6,13,1,15,4,0,5,10,7,0,5,0,5,10,13,6,12,9,10,1,4,3,3,13,10,2,3,8,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,13,5,13,10,2,3,8,15,4,2,6,13,12,9,10,1,4,15,4,2,6,13,12,9,10,1,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,5,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,9,12,9,10,1,4,3,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,3,8,15,4,2,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 20.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,10,15,4,14,15,4,2,6,13,1,15,4,0,5,10,7,0,5,0,5,10,13,6,12,9,10,1,4,3,3,13,10,2,3,8,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,13,5,13,10,2,3,8,15,4,2,6,13,12,9,10,1,4,15,4,2,6,13,12,9,10,1,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,5,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,9,12,9,10,1,4,3,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,3,8,15,4,2,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"4\", \"12\", \"11\"], \"clip_start\": 297.0, \"clip_end\": 301.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,10,15,4,14,15,4,2,6,13,1,15,4,0,5,10,7,0,5,0,5,10,13,6,12,9,10,1,4,3,3,13,10,2,3,8,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,13,5,13,10,2,3,8,15,4,2,6,13,12,9,10,1,4,15,4,2,6,13,12,9,10,1,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,5,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,9,12,9,10,1,4,3,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,3,8,15,4,2,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"15\", \"4\"], \"clip_start\": 390.0, \"clip_end\": 394.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,10,15,4,14,15,4,2,6,13,1,15,4,0,5,10,7,0,5,0,5,10,13,6,12,9,10,1,4,3,3,13,10,2,3,8,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,13,5,13,10,2,3,8,15,4,2,6,13,12,9,10,1,4,15,4,2,6,13,12,9,10,1,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,5,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,9,12,9,10,1,4,3,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,3,8,15,4,2,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"15\", \"4\", \"12\"], \"clip_start\": 267.0, \"clip_end\": 272.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,10,15,4,14,15,4,2,6,13,1,15,4,0,5,10,7,0,5,0,5,10,13,6,12,9,10,1,4,3,3,13,10,2,3,8,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,13,5,13,10,2,3,8,15,4,2,6,13,12,9,10,1,4,15,4,2,6,13,12,9,10,1,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,5,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,9,12,9,10,1,4,3,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,3,8,15,4,2,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"4\", \"12\", \"11\"], \"clip_start\": 58.0, \"clip_end\": 63.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,10,15,4,14,15,4,2,6,13,1,15,4,0,5,10,7,0,5,0,5,10,13,6,12,9,10,1,4,3,3,13,10,2,3,8,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,13,5,13,10,2,3,8,15,4,2,6,13,12,9,10,1,4,15,4,2,6,13,12,9,10,1,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,5,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,9,12,9,10,1,4,3,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,3,8,15,4,2,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"9\", \"10\", \"1\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,10,15,4,14,15,4,2,6,13,1,15,4,0,5,10,7,0,5,0,5,10,13,6,12,9,10,1,4,3,3,13,10,2,3,8,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,13,5,13,10,2,3,8,15,4,2,6,13,12,9,10,1,4,15,4,2,6,13,12,9,10,1,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,5,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,9,12,9,10,1,4,3,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,3,8,15,4,2,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"11\", \"15\", \"4\", \"12\"], \"clip_start\": 444.0, \"clip_end\": 450.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,10,15,4,14,15,4,2,6,13,1,15,4,0,5,10,7,0,5,0,5,10,13,6,12,9,10,1,4,3,3,13,10,2,3,8,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,13,5,13,10,2,3,8,15,4,2,6,13,12,9,10,1,4,15,4,2,6,13,12,9,10,1,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,5,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,9,12,9,10,1,4,3,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,3,8,15,4,2,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"15\", \"4\", \"2\"], \"clip_start\": 405.0, \"clip_end\": 410.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,10,15,4,14,15,4,2,6,13,1,15,4,0,5,10,7,0,5,0,5,10,13,6,12,9,10,1,4,3,3,13,10,2,3,8,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,13,5,13,10,2,3,8,15,4,2,6,13,12,9,10,1,4,15,4,2,6,13,12,9,10,1,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,5,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,9,12,9,10,1,4,3,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,3,8,15,4,2,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"15\", \"4\"], \"clip_start\": 445.0, \"clip_end\": 449.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,10,15,4,14,15,4,2,6,13,1,15,4,0,5,10,7,0,5,0,5,10,13,6,12,9,10,1,4,3,3,13,10,2,3,8,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,13,5,13,10,2,3,8,15,4,2,6,13,12,9,10,1,4,15,4,2,6,13,12,9,10,1,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,5,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,9,12,9,10,1,4,3,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,3,8,15,4,2,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,10,15,4,14,15,4,2,6,13,1,15,4,0,5,10,7,0,5,0,5,10,13,6,12,9,10,1,4,3,3,13,10,2,3,8,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,13,5,13,10,2,3,8,15,4,2,6,13,12,9,10,1,4,15,4,2,6,13,12,9,10,1,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,5,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,9,12,9,10,1,4,3,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,3,8,15,4,2,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"10\", \"15\", \"4\"], \"clip_start\": 452.0, \"clip_end\": 456.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,10,15,4,14,15,4,2,6,13,1,15,4,0,5,10,7,0,5,0,5,10,13,6,12,9,10,1,4,3,3,13,10,2,3,8,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,13,5,13,10,2,3,8,15,4,2,6,13,12,9,10,1,4,15,4,2,6,13,12,9,10,1,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,5,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,9,12,9,10,1,4,3,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,3,8,15,4,2,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"12\"], \"clip_start\": 478.0, \"clip_end\": 481.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,10,15,4,14,15,4,2,6,13,1,15,4,0,5,10,7,0,5,0,5,10,13,6,12,9,10,1,4,3,3,13,10,2,3,8,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,13,5,13,10,2,3,8,15,4,2,6,13,12,9,10,1,4,15,4,2,6,13,12,9,10,1,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,5,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,9,12,9,10,1,4,3,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,3,8,15,4,2,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"12\", \"9\", \"10\", \"1\"], \"clip_start\": 188.0, \"clip_end\": 193.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q14_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,10,15,4,14,15,4,2,6,13,1,15,4,0,5,10,7,0,5,0,5,10,13,6,12,9,10,1,4,3,3,13,10,2,3,8,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,13,5,13,10,2,3,8,15,4,2,6,13,12,9,10,1,4,15,4,2,6,13,12,9,10,1,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,5,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,9,12,9,10,1,4,3,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,3,8,15,4,2,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_ELOW", "source_split": "substream_video", "length_L": 512, "entropy_band": "low", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"4\", \"12\", \"11\"], \"clip_start\": 90.0, \"clip_end\": 95.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,5,10,15,4,14,15,4,2,6,13,1,15,4,0,5,10,7,0,5,0,5,10,13,6,12,9,10,1,4,3,3,13,10,2,3,8,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,13,5,13,10,2,3,8,15,4,2,6,13,12,9,10,1,4,15,4,2,6,13,12,9,10,1,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,5,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,9,12,9,10,1,4,3,3,8,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,3,8,15,4,2,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,10,15,4,2,6,13,1,15,4,2,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4,12,11,15,4", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 503.0, \"clip_end\": 509.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,1,14,12,13,6,9,10,15,6,5,15,6,12,9,9,8,9,0,9,10,15,6,12,9,10,15,6,5,15,6,12,4,3,15,6,12,6,9,10,2,12,13,12,3,15,6,12,6,3,7,15,6,12,6,9,10,15,6,5,15,6,5,15,6,5,15,11,6,4,14,12,3,7,15,6,12,6,4,3,15,6,12,6,9,10,15,6,12,4,14,12,5,3,1,14,12,5,3,1,13,0,14,12,3,7,9,14,12,5,3,1,13,0,3,15,6,5,15,6,12,4,14,12,3,1,13,0,14,15,12,13,13,5,3,1,13,7,5,10,0,2,0,2,12,3,1,13,0,13,2,0,9,4,14,12,3,1,13,0,14,15,6,12,6,4,13,12,13,11,6,9,10,15,6,5,15,6,5,15,6,12,6,9,10,15,6,5,15,1,13,0,3,1,6,4,14,12,5,3,11,12,3,15,6,5,15,6,12,6,9,10,15,6,12,9,15,6,12,4,3,15,6,5,15,6,12,9,9,14,12,3,15,6,5,15,6,12,9,14,12,5,3,1,13,0,14,12,3,15,6,12,4,14,12,5,3,1,13,0,14,15,0,9,11,6,9,10,2,12,3,7,15,6,12,4,14,12,3,7,13,4,14,12,5,3,7,13,7,11,6,9,10,2,12,5,3,1,13,0,14,12,5,3,1,13,0,3,7,15,6,12,4,3,7,15,6,12,6,9,10,2,0,15,6,12,2,12,13,7,2,5,3,1,13,0,13,7,11,6,4,3,15,6,12,6,9,10,2,12,3,7,13,4,14,12,3,2,12,5,3,11,12,15,6,5,15,6,12,6,9,10,2,0,15,6,12,6,4,14,12,5,3,1,13,0,14,12,3,7,13,8,9,12,3,1,13,7,2,6,9,10,2,0,2,12,13,1,13,7,2,6,4,14,12,3,1,13,0,13,7,11,6,9,10,15,6,5,9,8,12,5,3,1,13,0,3,1,13,0,14,12,13,0,2,12,5,3,1,13,0,11,6,5,15,6,5,15,6,5,15,6,5,15,6,5,12,3,15,6,12,6,4,14,12,3,15,6,2,0,15,6,12,9,7,2,5,1,14,15,6,5,15,6,5,15,6,12,4,3,12,13,11,6,9,10,15,6,5,15,6", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"13\", \"0\"], \"clip_start\": 441.0, \"clip_end\": 445.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,1,14,12,13,6,9,10,15,6,5,15,6,12,9,9,8,9,0,9,10,15,6,12,9,10,15,6,5,15,6,12,4,3,15,6,12,6,9,10,2,12,13,12,3,15,6,12,6,3,7,15,6,12,6,9,10,15,6,5,15,6,5,15,6,5,15,11,6,4,14,12,3,7,15,6,12,6,4,3,15,6,12,6,9,10,15,6,12,4,14,12,5,3,1,14,12,5,3,1,13,0,14,12,3,7,9,14,12,5,3,1,13,0,3,15,6,5,15,6,12,4,14,12,3,1,13,0,14,15,12,13,13,5,3,1,13,7,5,10,0,2,0,2,12,3,1,13,0,13,2,0,9,4,14,12,3,1,13,0,14,15,6,12,6,4,13,12,13,11,6,9,10,15,6,5,15,6,5,15,6,12,6,9,10,15,6,5,15,1,13,0,3,1,6,4,14,12,5,3,11,12,3,15,6,5,15,6,12,6,9,10,15,6,12,9,15,6,12,4,3,15,6,5,15,6,12,9,9,14,12,3,15,6,5,15,6,12,9,14,12,5,3,1,13,0,14,12,3,15,6,12,4,14,12,5,3,1,13,0,14,15,0,9,11,6,9,10,2,12,3,7,15,6,12,4,14,12,3,7,13,4,14,12,5,3,7,13,7,11,6,9,10,2,12,5,3,1,13,0,14,12,5,3,1,13,0,3,7,15,6,12,4,3,7,15,6,12,6,9,10,2,0,15,6,12,2,12,13,7,2,5,3,1,13,0,13,7,11,6,4,3,15,6,12,6,9,10,2,12,3,7,13,4,14,12,3,2,12,5,3,11,12,15,6,5,15,6,12,6,9,10,2,0,15,6,12,6,4,14,12,5,3,1,13,0,14,12,3,7,13,8,9,12,3,1,13,7,2,6,9,10,2,0,2,12,13,1,13,7,2,6,4,14,12,3,1,13,0,13,7,11,6,9,10,15,6,5,9,8,12,5,3,1,13,0,3,1,13,0,14,12,13,0,2,12,5,3,1,13,0,11,6,5,15,6,5,15,6,5,15,6,5,15,6,5,12,3,15,6,12,6,4,14,12,3,15,6,2,0,15,6,12,9,7,2,5,1,14,15,6,5,15,6,5,15,6,12,4,3,12,13,11,6,9,10,15,6,5,15,6", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"10\"], \"clip_start\": 19.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,1,14,12,13,6,9,10,15,6,5,15,6,12,9,9,8,9,0,9,10,15,6,12,9,10,15,6,5,15,6,12,4,3,15,6,12,6,9,10,2,12,13,12,3,15,6,12,6,3,7,15,6,12,6,9,10,15,6,5,15,6,5,15,6,5,15,11,6,4,14,12,3,7,15,6,12,6,4,3,15,6,12,6,9,10,15,6,12,4,14,12,5,3,1,14,12,5,3,1,13,0,14,12,3,7,9,14,12,5,3,1,13,0,3,15,6,5,15,6,12,4,14,12,3,1,13,0,14,15,12,13,13,5,3,1,13,7,5,10,0,2,0,2,12,3,1,13,0,13,2,0,9,4,14,12,3,1,13,0,14,15,6,12,6,4,13,12,13,11,6,9,10,15,6,5,15,6,5,15,6,12,6,9,10,15,6,5,15,1,13,0,3,1,6,4,14,12,5,3,11,12,3,15,6,5,15,6,12,6,9,10,15,6,12,9,15,6,12,4,3,15,6,5,15,6,12,9,9,14,12,3,15,6,5,15,6,12,9,14,12,5,3,1,13,0,14,12,3,15,6,12,4,14,12,5,3,1,13,0,14,15,0,9,11,6,9,10,2,12,3,7,15,6,12,4,14,12,3,7,13,4,14,12,5,3,7,13,7,11,6,9,10,2,12,5,3,1,13,0,14,12,5,3,1,13,0,3,7,15,6,12,4,3,7,15,6,12,6,9,10,2,0,15,6,12,2,12,13,7,2,5,3,1,13,0,13,7,11,6,4,3,15,6,12,6,9,10,2,12,3,7,13,4,14,12,3,2,12,5,3,11,12,15,6,5,15,6,12,6,9,10,2,0,15,6,12,6,4,14,12,5,3,1,13,0,14,12,3,7,13,8,9,12,3,1,13,7,2,6,9,10,2,0,2,12,13,1,13,7,2,6,4,14,12,3,1,13,0,13,7,11,6,9,10,15,6,5,9,8,12,5,3,1,13,0,3,1,13,0,14,12,13,0,2,12,5,3,1,13,0,11,6,5,15,6,5,15,6,5,15,6,5,15,6,5,12,3,15,6,12,6,4,14,12,3,15,6,2,0,15,6,12,9,7,2,5,1,14,15,6,5,15,6,5,15,6,12,4,3,12,13,11,6,9,10,15,6,5,15,6", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"6\", \"4\", \"3\", \"15\"], \"clip_start\": 338.0, \"clip_end\": 344.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q3_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,1,14,12,13,6,9,10,15,6,5,15,6,12,9,9,8,9,0,9,10,15,6,12,9,10,15,6,5,15,6,12,4,3,15,6,12,6,9,10,2,12,13,12,3,15,6,12,6,3,7,15,6,12,6,9,10,15,6,5,15,6,5,15,6,5,15,11,6,4,14,12,3,7,15,6,12,6,4,3,15,6,12,6,9,10,15,6,12,4,14,12,5,3,1,14,12,5,3,1,13,0,14,12,3,7,9,14,12,5,3,1,13,0,3,15,6,5,15,6,12,4,14,12,3,1,13,0,14,15,12,13,13,5,3,1,13,7,5,10,0,2,0,2,12,3,1,13,0,13,2,0,9,4,14,12,3,1,13,0,14,15,6,12,6,4,13,12,13,11,6,9,10,15,6,5,15,6,5,15,6,12,6,9,10,15,6,5,15,1,13,0,3,1,6,4,14,12,5,3,11,12,3,15,6,5,15,6,12,6,9,10,15,6,12,9,15,6,12,4,3,15,6,5,15,6,12,9,9,14,12,3,15,6,5,15,6,12,9,14,12,5,3,1,13,0,14,12,3,15,6,12,4,14,12,5,3,1,13,0,14,15,0,9,11,6,9,10,2,12,3,7,15,6,12,4,14,12,3,7,13,4,14,12,5,3,7,13,7,11,6,9,10,2,12,5,3,1,13,0,14,12,5,3,1,13,0,3,7,15,6,12,4,3,7,15,6,12,6,9,10,2,0,15,6,12,2,12,13,7,2,5,3,1,13,0,13,7,11,6,4,3,15,6,12,6,9,10,2,12,3,7,13,4,14,12,3,2,12,5,3,11,12,15,6,5,15,6,12,6,9,10,2,0,15,6,12,6,4,14,12,5,3,1,13,0,14,12,3,7,13,8,9,12,3,1,13,7,2,6,9,10,2,0,2,12,13,1,13,7,2,6,4,14,12,3,1,13,0,13,7,11,6,9,10,15,6,5,9,8,12,5,3,1,13,0,3,1,13,0,14,12,13,0,2,12,5,3,1,13,0,11,6,5,15,6,5,15,6,5,15,6,5,15,6,5,12,3,15,6,12,6,4,14,12,3,15,6,2,0,15,6,12,9,7,2,5,1,14,15,6,5,15,6,5,15,6,12,4,3,12,13,11,6,9,10,15,6,5,15,6", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"14\", \"12\", \"3\"], \"clip_start\": 154.0, \"clip_end\": 158.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,1,14,12,13,6,9,10,15,6,5,15,6,12,9,9,8,9,0,9,10,15,6,12,9,10,15,6,5,15,6,12,4,3,15,6,12,6,9,10,2,12,13,12,3,15,6,12,6,3,7,15,6,12,6,9,10,15,6,5,15,6,5,15,6,5,15,11,6,4,14,12,3,7,15,6,12,6,4,3,15,6,12,6,9,10,15,6,12,4,14,12,5,3,1,14,12,5,3,1,13,0,14,12,3,7,9,14,12,5,3,1,13,0,3,15,6,5,15,6,12,4,14,12,3,1,13,0,14,15,12,13,13,5,3,1,13,7,5,10,0,2,0,2,12,3,1,13,0,13,2,0,9,4,14,12,3,1,13,0,14,15,6,12,6,4,13,12,13,11,6,9,10,15,6,5,15,6,5,15,6,12,6,9,10,15,6,5,15,1,13,0,3,1,6,4,14,12,5,3,11,12,3,15,6,5,15,6,12,6,9,10,15,6,12,9,15,6,12,4,3,15,6,5,15,6,12,9,9,14,12,3,15,6,5,15,6,12,9,14,12,5,3,1,13,0,14,12,3,15,6,12,4,14,12,5,3,1,13,0,14,15,0,9,11,6,9,10,2,12,3,7,15,6,12,4,14,12,3,7,13,4,14,12,5,3,7,13,7,11,6,9,10,2,12,5,3,1,13,0,14,12,5,3,1,13,0,3,7,15,6,12,4,3,7,15,6,12,6,9,10,2,0,15,6,12,2,12,13,7,2,5,3,1,13,0,13,7,11,6,4,3,15,6,12,6,9,10,2,12,3,7,13,4,14,12,3,2,12,5,3,11,12,15,6,5,15,6,12,6,9,10,2,0,15,6,12,6,4,14,12,5,3,1,13,0,14,12,3,7,13,8,9,12,3,1,13,7,2,6,9,10,2,0,2,12,13,1,13,7,2,6,4,14,12,3,1,13,0,13,7,11,6,9,10,15,6,5,9,8,12,5,3,1,13,0,3,1,13,0,14,12,13,0,2,12,5,3,1,13,0,11,6,5,15,6,5,15,6,5,15,6,5,15,6,5,12,3,15,6,12,6,4,14,12,3,15,6,2,0,15,6,12,9,7,2,5,1,14,15,6,5,15,6,5,15,6,12,4,3,12,13,11,6,9,10,15,6,5,15,6", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"3\", \"1\", \"13\", \"0\"], \"clip_start\": 123.0, \"clip_end\": 129.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,1,14,12,13,6,9,10,15,6,5,15,6,12,9,9,8,9,0,9,10,15,6,12,9,10,15,6,5,15,6,12,4,3,15,6,12,6,9,10,2,12,13,12,3,15,6,12,6,3,7,15,6,12,6,9,10,15,6,5,15,6,5,15,6,5,15,11,6,4,14,12,3,7,15,6,12,6,4,3,15,6,12,6,9,10,15,6,12,4,14,12,5,3,1,14,12,5,3,1,13,0,14,12,3,7,9,14,12,5,3,1,13,0,3,15,6,5,15,6,12,4,14,12,3,1,13,0,14,15,12,13,13,5,3,1,13,7,5,10,0,2,0,2,12,3,1,13,0,13,2,0,9,4,14,12,3,1,13,0,14,15,6,12,6,4,13,12,13,11,6,9,10,15,6,5,15,6,5,15,6,12,6,9,10,15,6,5,15,1,13,0,3,1,6,4,14,12,5,3,11,12,3,15,6,5,15,6,12,6,9,10,15,6,12,9,15,6,12,4,3,15,6,5,15,6,12,9,9,14,12,3,15,6,5,15,6,12,9,14,12,5,3,1,13,0,14,12,3,15,6,12,4,14,12,5,3,1,13,0,14,15,0,9,11,6,9,10,2,12,3,7,15,6,12,4,14,12,3,7,13,4,14,12,5,3,7,13,7,11,6,9,10,2,12,5,3,1,13,0,14,12,5,3,1,13,0,3,7,15,6,12,4,3,7,15,6,12,6,9,10,2,0,15,6,12,2,12,13,7,2,5,3,1,13,0,13,7,11,6,4,3,15,6,12,6,9,10,2,12,3,7,13,4,14,12,3,2,12,5,3,11,12,15,6,5,15,6,12,6,9,10,2,0,15,6,12,6,4,14,12,5,3,1,13,0,14,12,3,7,13,8,9,12,3,1,13,7,2,6,9,10,2,0,2,12,13,1,13,7,2,6,4,14,12,3,1,13,0,13,7,11,6,9,10,15,6,5,9,8,12,5,3,1,13,0,3,1,13,0,14,12,13,0,2,12,5,3,1,13,0,11,6,5,15,6,5,15,6,5,15,6,5,15,6,5,12,3,15,6,12,6,4,14,12,3,15,6,2,0,15,6,12,9,7,2,5,1,14,15,6,5,15,6,5,15,6,12,4,3,12,13,11,6,9,10,15,6,5,15,6", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"6\", \"5\", \"15\", \"6\"], \"clip_start\": 460.0, \"clip_end\": 466.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,1,14,12,13,6,9,10,15,6,5,15,6,12,9,9,8,9,0,9,10,15,6,12,9,10,15,6,5,15,6,12,4,3,15,6,12,6,9,10,2,12,13,12,3,15,6,12,6,3,7,15,6,12,6,9,10,15,6,5,15,6,5,15,6,5,15,11,6,4,14,12,3,7,15,6,12,6,4,3,15,6,12,6,9,10,15,6,12,4,14,12,5,3,1,14,12,5,3,1,13,0,14,12,3,7,9,14,12,5,3,1,13,0,3,15,6,5,15,6,12,4,14,12,3,1,13,0,14,15,12,13,13,5,3,1,13,7,5,10,0,2,0,2,12,3,1,13,0,13,2,0,9,4,14,12,3,1,13,0,14,15,6,12,6,4,13,12,13,11,6,9,10,15,6,5,15,6,5,15,6,12,6,9,10,15,6,5,15,1,13,0,3,1,6,4,14,12,5,3,11,12,3,15,6,5,15,6,12,6,9,10,15,6,12,9,15,6,12,4,3,15,6,5,15,6,12,9,9,14,12,3,15,6,5,15,6,12,9,14,12,5,3,1,13,0,14,12,3,15,6,12,4,14,12,5,3,1,13,0,14,15,0,9,11,6,9,10,2,12,3,7,15,6,12,4,14,12,3,7,13,4,14,12,5,3,7,13,7,11,6,9,10,2,12,5,3,1,13,0,14,12,5,3,1,13,0,3,7,15,6,12,4,3,7,15,6,12,6,9,10,2,0,15,6,12,2,12,13,7,2,5,3,1,13,0,13,7,11,6,4,3,15,6,12,6,9,10,2,12,3,7,13,4,14,12,3,2,12,5,3,11,12,15,6,5,15,6,12,6,9,10,2,0,15,6,12,6,4,14,12,5,3,1,13,0,14,12,3,7,13,8,9,12,3,1,13,7,2,6,9,10,2,0,2,12,13,1,13,7,2,6,4,14,12,3,1,13,0,13,7,11,6,9,10,15,6,5,9,8,12,5,3,1,13,0,3,1,13,0,14,12,13,0,2,12,5,3,1,13,0,11,6,5,15,6,5,15,6,5,15,6,5,15,6,5,12,3,15,6,12,6,4,14,12,3,15,6,2,0,15,6,12,9,7,2,5,1,14,15,6,5,15,6,5,15,6,12,4,3,12,13,11,6,9,10,15,6,5,15,6", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"9\", \"5\"], \"clip_start\": 429.0, \"clip_end\": 433.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,1,14,12,13,6,9,10,15,6,5,15,6,12,9,9,8,9,0,9,10,15,6,12,9,10,15,6,5,15,6,12,4,3,15,6,12,6,9,10,2,12,13,12,3,15,6,12,6,3,7,15,6,12,6,9,10,15,6,5,15,6,5,15,6,5,15,11,6,4,14,12,3,7,15,6,12,6,4,3,15,6,12,6,9,10,15,6,12,4,14,12,5,3,1,14,12,5,3,1,13,0,14,12,3,7,9,14,12,5,3,1,13,0,3,15,6,5,15,6,12,4,14,12,3,1,13,0,14,15,12,13,13,5,3,1,13,7,5,10,0,2,0,2,12,3,1,13,0,13,2,0,9,4,14,12,3,1,13,0,14,15,6,12,6,4,13,12,13,11,6,9,10,15,6,5,15,6,5,15,6,12,6,9,10,15,6,5,15,1,13,0,3,1,6,4,14,12,5,3,11,12,3,15,6,5,15,6,12,6,9,10,15,6,12,9,15,6,12,4,3,15,6,5,15,6,12,9,9,14,12,3,15,6,5,15,6,12,9,14,12,5,3,1,13,0,14,12,3,15,6,12,4,14,12,5,3,1,13,0,14,15,0,9,11,6,9,10,2,12,3,7,15,6,12,4,14,12,3,7,13,4,14,12,5,3,7,13,7,11,6,9,10,2,12,5,3,1,13,0,14,12,5,3,1,13,0,3,7,15,6,12,4,3,7,15,6,12,6,9,10,2,0,15,6,12,2,12,13,7,2,5,3,1,13,0,13,7,11,6,4,3,15,6,12,6,9,10,2,12,3,7,13,4,14,12,3,2,12,5,3,11,12,15,6,5,15,6,12,6,9,10,2,0,15,6,12,6,4,14,12,5,3,1,13,0,14,12,3,7,13,8,9,12,3,1,13,7,2,6,9,10,2,0,2,12,13,1,13,7,2,6,4,14,12,3,1,13,0,13,7,11,6,9,10,15,6,5,9,8,12,5,3,1,13,0,3,1,13,0,14,12,13,0,2,12,5,3,1,13,0,11,6,5,15,6,5,15,6,5,15,6,5,15,6,5,12,3,15,6,12,6,4,14,12,3,15,6,2,0,15,6,12,9,7,2,5,1,14,15,6,5,15,6,5,15,6,12,4,3,12,13,11,6,9,10,15,6,5,15,6", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"6\", \"12\"], \"clip_start\": 236.0, \"clip_end\": 239.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,1,14,12,13,6,9,10,15,6,5,15,6,12,9,9,8,9,0,9,10,15,6,12,9,10,15,6,5,15,6,12,4,3,15,6,12,6,9,10,2,12,13,12,3,15,6,12,6,3,7,15,6,12,6,9,10,15,6,5,15,6,5,15,6,5,15,11,6,4,14,12,3,7,15,6,12,6,4,3,15,6,12,6,9,10,15,6,12,4,14,12,5,3,1,14,12,5,3,1,13,0,14,12,3,7,9,14,12,5,3,1,13,0,3,15,6,5,15,6,12,4,14,12,3,1,13,0,14,15,12,13,13,5,3,1,13,7,5,10,0,2,0,2,12,3,1,13,0,13,2,0,9,4,14,12,3,1,13,0,14,15,6,12,6,4,13,12,13,11,6,9,10,15,6,5,15,6,5,15,6,12,6,9,10,15,6,5,15,1,13,0,3,1,6,4,14,12,5,3,11,12,3,15,6,5,15,6,12,6,9,10,15,6,12,9,15,6,12,4,3,15,6,5,15,6,12,9,9,14,12,3,15,6,5,15,6,12,9,14,12,5,3,1,13,0,14,12,3,15,6,12,4,14,12,5,3,1,13,0,14,15,0,9,11,6,9,10,2,12,3,7,15,6,12,4,14,12,3,7,13,4,14,12,5,3,7,13,7,11,6,9,10,2,12,5,3,1,13,0,14,12,5,3,1,13,0,3,7,15,6,12,4,3,7,15,6,12,6,9,10,2,0,15,6,12,2,12,13,7,2,5,3,1,13,0,13,7,11,6,4,3,15,6,12,6,9,10,2,12,3,7,13,4,14,12,3,2,12,5,3,11,12,15,6,5,15,6,12,6,9,10,2,0,15,6,12,6,4,14,12,5,3,1,13,0,14,12,3,7,13,8,9,12,3,1,13,7,2,6,9,10,2,0,2,12,13,1,13,7,2,6,4,14,12,3,1,13,0,13,7,11,6,9,10,15,6,5,9,8,12,5,3,1,13,0,3,1,13,0,14,12,13,0,2,12,5,3,1,13,0,11,6,5,15,6,5,15,6,5,15,6,5,15,6,5,12,3,15,6,12,6,4,14,12,3,15,6,2,0,15,6,12,9,7,2,5,1,14,15,6,5,15,6,5,15,6,12,4,3,12,13,11,6,9,10,15,6,5,15,6", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"3\"], \"clip_start\": 209.0, \"clip_end\": 212.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,1,14,12,13,6,9,10,15,6,5,15,6,12,9,9,8,9,0,9,10,15,6,12,9,10,15,6,5,15,6,12,4,3,15,6,12,6,9,10,2,12,13,12,3,15,6,12,6,3,7,15,6,12,6,9,10,15,6,5,15,6,5,15,6,5,15,11,6,4,14,12,3,7,15,6,12,6,4,3,15,6,12,6,9,10,15,6,12,4,14,12,5,3,1,14,12,5,3,1,13,0,14,12,3,7,9,14,12,5,3,1,13,0,3,15,6,5,15,6,12,4,14,12,3,1,13,0,14,15,12,13,13,5,3,1,13,7,5,10,0,2,0,2,12,3,1,13,0,13,2,0,9,4,14,12,3,1,13,0,14,15,6,12,6,4,13,12,13,11,6,9,10,15,6,5,15,6,5,15,6,12,6,9,10,15,6,5,15,1,13,0,3,1,6,4,14,12,5,3,11,12,3,15,6,5,15,6,12,6,9,10,15,6,12,9,15,6,12,4,3,15,6,5,15,6,12,9,9,14,12,3,15,6,5,15,6,12,9,14,12,5,3,1,13,0,14,12,3,15,6,12,4,14,12,5,3,1,13,0,14,15,0,9,11,6,9,10,2,12,3,7,15,6,12,4,14,12,3,7,13,4,14,12,5,3,7,13,7,11,6,9,10,2,12,5,3,1,13,0,14,12,5,3,1,13,0,3,7,15,6,12,4,3,7,15,6,12,6,9,10,2,0,15,6,12,2,12,13,7,2,5,3,1,13,0,13,7,11,6,4,3,15,6,12,6,9,10,2,12,3,7,13,4,14,12,3,2,12,5,3,11,12,15,6,5,15,6,12,6,9,10,2,0,15,6,12,6,4,14,12,5,3,1,13,0,14,12,3,7,13,8,9,12,3,1,13,7,2,6,9,10,2,0,2,12,13,1,13,7,2,6,4,14,12,3,1,13,0,13,7,11,6,9,10,15,6,5,9,8,12,5,3,1,13,0,3,1,13,0,14,12,13,0,2,12,5,3,1,13,0,11,6,5,15,6,5,15,6,5,15,6,5,15,6,5,12,3,15,6,12,6,4,14,12,3,15,6,2,0,15,6,12,9,7,2,5,1,14,15,6,5,15,6,5,15,6,12,4,3,12,13,11,6,9,10,15,6,5,15,6", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"6\", \"12\", \"9\"], \"clip_start\": 22.0, \"clip_end\": 26.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q10_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,1,14,12,13,6,9,10,15,6,5,15,6,12,9,9,8,9,0,9,10,15,6,12,9,10,15,6,5,15,6,12,4,3,15,6,12,6,9,10,2,12,13,12,3,15,6,12,6,3,7,15,6,12,6,9,10,15,6,5,15,6,5,15,6,5,15,11,6,4,14,12,3,7,15,6,12,6,4,3,15,6,12,6,9,10,15,6,12,4,14,12,5,3,1,14,12,5,3,1,13,0,14,12,3,7,9,14,12,5,3,1,13,0,3,15,6,5,15,6,12,4,14,12,3,1,13,0,14,15,12,13,13,5,3,1,13,7,5,10,0,2,0,2,12,3,1,13,0,13,2,0,9,4,14,12,3,1,13,0,14,15,6,12,6,4,13,12,13,11,6,9,10,15,6,5,15,6,5,15,6,12,6,9,10,15,6,5,15,1,13,0,3,1,6,4,14,12,5,3,11,12,3,15,6,5,15,6,12,6,9,10,15,6,12,9,15,6,12,4,3,15,6,5,15,6,12,9,9,14,12,3,15,6,5,15,6,12,9,14,12,5,3,1,13,0,14,12,3,15,6,12,4,14,12,5,3,1,13,0,14,15,0,9,11,6,9,10,2,12,3,7,15,6,12,4,14,12,3,7,13,4,14,12,5,3,7,13,7,11,6,9,10,2,12,5,3,1,13,0,14,12,5,3,1,13,0,3,7,15,6,12,4,3,7,15,6,12,6,9,10,2,0,15,6,12,2,12,13,7,2,5,3,1,13,0,13,7,11,6,4,3,15,6,12,6,9,10,2,12,3,7,13,4,14,12,3,2,12,5,3,11,12,15,6,5,15,6,12,6,9,10,2,0,15,6,12,6,4,14,12,5,3,1,13,0,14,12,3,7,13,8,9,12,3,1,13,7,2,6,9,10,2,0,2,12,13,1,13,7,2,6,4,14,12,3,1,13,0,13,7,11,6,9,10,15,6,5,9,8,12,5,3,1,13,0,3,1,13,0,14,12,13,0,2,12,5,3,1,13,0,11,6,5,15,6,5,15,6,5,15,6,5,15,6,5,12,3,15,6,12,6,4,14,12,3,15,6,2,0,15,6,12,9,7,2,5,1,14,15,6,5,15,6,5,15,6,12,4,3,12,13,11,6,9,10,15,6,5,15,6", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"3\", \"1\"], \"clip_start\": 191.0, \"clip_end\": 195.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q11_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,1,14,12,13,6,9,10,15,6,5,15,6,12,9,9,8,9,0,9,10,15,6,12,9,10,15,6,5,15,6,12,4,3,15,6,12,6,9,10,2,12,13,12,3,15,6,12,6,3,7,15,6,12,6,9,10,15,6,5,15,6,5,15,6,5,15,11,6,4,14,12,3,7,15,6,12,6,4,3,15,6,12,6,9,10,15,6,12,4,14,12,5,3,1,14,12,5,3,1,13,0,14,12,3,7,9,14,12,5,3,1,13,0,3,15,6,5,15,6,12,4,14,12,3,1,13,0,14,15,12,13,13,5,3,1,13,7,5,10,0,2,0,2,12,3,1,13,0,13,2,0,9,4,14,12,3,1,13,0,14,15,6,12,6,4,13,12,13,11,6,9,10,15,6,5,15,6,5,15,6,12,6,9,10,15,6,5,15,1,13,0,3,1,6,4,14,12,5,3,11,12,3,15,6,5,15,6,12,6,9,10,15,6,12,9,15,6,12,4,3,15,6,5,15,6,12,9,9,14,12,3,15,6,5,15,6,12,9,14,12,5,3,1,13,0,14,12,3,15,6,12,4,14,12,5,3,1,13,0,14,15,0,9,11,6,9,10,2,12,3,7,15,6,12,4,14,12,3,7,13,4,14,12,5,3,7,13,7,11,6,9,10,2,12,5,3,1,13,0,14,12,5,3,1,13,0,3,7,15,6,12,4,3,7,15,6,12,6,9,10,2,0,15,6,12,2,12,13,7,2,5,3,1,13,0,13,7,11,6,4,3,15,6,12,6,9,10,2,12,3,7,13,4,14,12,3,2,12,5,3,11,12,15,6,5,15,6,12,6,9,10,2,0,15,6,12,6,4,14,12,5,3,1,13,0,14,12,3,7,13,8,9,12,3,1,13,7,2,6,9,10,2,0,2,12,13,1,13,7,2,6,4,14,12,3,1,13,0,13,7,11,6,9,10,15,6,5,9,8,12,5,3,1,13,0,3,1,13,0,14,12,13,0,2,12,5,3,1,13,0,11,6,5,15,6,5,15,6,5,15,6,5,15,6,5,12,3,15,6,12,6,4,14,12,3,15,6,2,0,15,6,12,9,7,2,5,1,14,15,6,5,15,6,5,15,6,12,4,3,12,13,11,6,9,10,15,6,5,15,6", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"4\"], \"clip_start\": 59.0, \"clip_end\": 62.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,1,14,12,13,6,9,10,15,6,5,15,6,12,9,9,8,9,0,9,10,15,6,12,9,10,15,6,5,15,6,12,4,3,15,6,12,6,9,10,2,12,13,12,3,15,6,12,6,3,7,15,6,12,6,9,10,15,6,5,15,6,5,15,6,5,15,11,6,4,14,12,3,7,15,6,12,6,4,3,15,6,12,6,9,10,15,6,12,4,14,12,5,3,1,14,12,5,3,1,13,0,14,12,3,7,9,14,12,5,3,1,13,0,3,15,6,5,15,6,12,4,14,12,3,1,13,0,14,15,12,13,13,5,3,1,13,7,5,10,0,2,0,2,12,3,1,13,0,13,2,0,9,4,14,12,3,1,13,0,14,15,6,12,6,4,13,12,13,11,6,9,10,15,6,5,15,6,5,15,6,12,6,9,10,15,6,5,15,1,13,0,3,1,6,4,14,12,5,3,11,12,3,15,6,5,15,6,12,6,9,10,15,6,12,9,15,6,12,4,3,15,6,5,15,6,12,9,9,14,12,3,15,6,5,15,6,12,9,14,12,5,3,1,13,0,14,12,3,15,6,12,4,14,12,5,3,1,13,0,14,15,0,9,11,6,9,10,2,12,3,7,15,6,12,4,14,12,3,7,13,4,14,12,5,3,7,13,7,11,6,9,10,2,12,5,3,1,13,0,14,12,5,3,1,13,0,3,7,15,6,12,4,3,7,15,6,12,6,9,10,2,0,15,6,12,2,12,13,7,2,5,3,1,13,0,13,7,11,6,4,3,15,6,12,6,9,10,2,12,3,7,13,4,14,12,3,2,12,5,3,11,12,15,6,5,15,6,12,6,9,10,2,0,15,6,12,6,4,14,12,5,3,1,13,0,14,12,3,7,13,8,9,12,3,1,13,7,2,6,9,10,2,0,2,12,13,1,13,7,2,6,4,14,12,3,1,13,0,13,7,11,6,9,10,15,6,5,9,8,12,5,3,1,13,0,3,1,13,0,14,12,13,0,2,12,5,3,1,13,0,11,6,5,15,6,5,15,6,5,15,6,5,15,6,5,12,3,15,6,12,6,4,14,12,3,15,6,2,0,15,6,12,9,7,2,5,1,14,15,6,5,15,6,5,15,6,12,4,3,12,13,11,6,9,10,15,6,5,15,6", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"5\"], \"clip_start\": 486.0, \"clip_end\": 489.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,1,14,12,13,6,9,10,15,6,5,15,6,12,9,9,8,9,0,9,10,15,6,12,9,10,15,6,5,15,6,12,4,3,15,6,12,6,9,10,2,12,13,12,3,15,6,12,6,3,7,15,6,12,6,9,10,15,6,5,15,6,5,15,6,5,15,11,6,4,14,12,3,7,15,6,12,6,4,3,15,6,12,6,9,10,15,6,12,4,14,12,5,3,1,14,12,5,3,1,13,0,14,12,3,7,9,14,12,5,3,1,13,0,3,15,6,5,15,6,12,4,14,12,3,1,13,0,14,15,12,13,13,5,3,1,13,7,5,10,0,2,0,2,12,3,1,13,0,13,2,0,9,4,14,12,3,1,13,0,14,15,6,12,6,4,13,12,13,11,6,9,10,15,6,5,15,6,5,15,6,12,6,9,10,15,6,5,15,1,13,0,3,1,6,4,14,12,5,3,11,12,3,15,6,5,15,6,12,6,9,10,15,6,12,9,15,6,12,4,3,15,6,5,15,6,12,9,9,14,12,3,15,6,5,15,6,12,9,14,12,5,3,1,13,0,14,12,3,15,6,12,4,14,12,5,3,1,13,0,14,15,0,9,11,6,9,10,2,12,3,7,15,6,12,4,14,12,3,7,13,4,14,12,5,3,7,13,7,11,6,9,10,2,12,5,3,1,13,0,14,12,5,3,1,13,0,3,7,15,6,12,4,3,7,15,6,12,6,9,10,2,0,15,6,12,2,12,13,7,2,5,3,1,13,0,13,7,11,6,4,3,15,6,12,6,9,10,2,12,3,7,13,4,14,12,3,2,12,5,3,11,12,15,6,5,15,6,12,6,9,10,2,0,15,6,12,6,4,14,12,5,3,1,13,0,14,12,3,7,13,8,9,12,3,1,13,7,2,6,9,10,2,0,2,12,13,1,13,7,2,6,4,14,12,3,1,13,0,13,7,11,6,9,10,15,6,5,9,8,12,5,3,1,13,0,3,1,13,0,14,12,13,0,2,12,5,3,1,13,0,11,6,5,15,6,5,15,6,5,15,6,5,15,6,5,12,3,15,6,12,6,4,14,12,3,15,6,2,0,15,6,12,9,7,2,5,1,14,15,6,5,15,6,5,15,6,12,4,3,12,13,11,6,9,10,15,6,5,15,6", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"6\", \"12\", \"4\", \"14\", \"12\"], \"clip_start\": 273.0, \"clip_end\": 279.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q14_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,1,14,12,13,6,9,10,15,6,5,15,6,12,9,9,8,9,0,9,10,15,6,12,9,10,15,6,5,15,6,12,4,3,15,6,12,6,9,10,2,12,13,12,3,15,6,12,6,3,7,15,6,12,6,9,10,15,6,5,15,6,5,15,6,5,15,11,6,4,14,12,3,7,15,6,12,6,4,3,15,6,12,6,9,10,15,6,12,4,14,12,5,3,1,14,12,5,3,1,13,0,14,12,3,7,9,14,12,5,3,1,13,0,3,15,6,5,15,6,12,4,14,12,3,1,13,0,14,15,12,13,13,5,3,1,13,7,5,10,0,2,0,2,12,3,1,13,0,13,2,0,9,4,14,12,3,1,13,0,14,15,6,12,6,4,13,12,13,11,6,9,10,15,6,5,15,6,5,15,6,12,6,9,10,15,6,5,15,1,13,0,3,1,6,4,14,12,5,3,11,12,3,15,6,5,15,6,12,6,9,10,15,6,12,9,15,6,12,4,3,15,6,5,15,6,12,9,9,14,12,3,15,6,5,15,6,12,9,14,12,5,3,1,13,0,14,12,3,15,6,12,4,14,12,5,3,1,13,0,14,15,0,9,11,6,9,10,2,12,3,7,15,6,12,4,14,12,3,7,13,4,14,12,5,3,7,13,7,11,6,9,10,2,12,5,3,1,13,0,14,12,5,3,1,13,0,3,7,15,6,12,4,3,7,15,6,12,6,9,10,2,0,15,6,12,2,12,13,7,2,5,3,1,13,0,13,7,11,6,4,3,15,6,12,6,9,10,2,12,3,7,13,4,14,12,3,2,12,5,3,11,12,15,6,5,15,6,12,6,9,10,2,0,15,6,12,6,4,14,12,5,3,1,13,0,14,12,3,7,13,8,9,12,3,1,13,7,2,6,9,10,2,0,2,12,13,1,13,7,2,6,4,14,12,3,1,13,0,13,7,11,6,9,10,15,6,5,9,8,12,5,3,1,13,0,3,1,13,0,14,12,13,0,2,12,5,3,1,13,0,11,6,5,15,6,5,15,6,5,15,6,5,15,6,5,12,3,15,6,12,6,4,14,12,3,15,6,2,0,15,6,12,9,7,2,5,1,14,15,6,5,15,6,5,15,6,12,4,3,12,13,11,6,9,10,15,6,5,15,6", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"4\", \"3\", \"15\", \"6\"], \"clip_start\": 218.0, \"clip_end\": 224.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,3,1,14,12,13,6,9,10,15,6,5,15,6,12,9,9,8,9,0,9,10,15,6,12,9,10,15,6,5,15,6,12,4,3,15,6,12,6,9,10,2,12,13,12,3,15,6,12,6,3,7,15,6,12,6,9,10,15,6,5,15,6,5,15,6,5,15,11,6,4,14,12,3,7,15,6,12,6,4,3,15,6,12,6,9,10,15,6,12,4,14,12,5,3,1,14,12,5,3,1,13,0,14,12,3,7,9,14,12,5,3,1,13,0,3,15,6,5,15,6,12,4,14,12,3,1,13,0,14,15,12,13,13,5,3,1,13,7,5,10,0,2,0,2,12,3,1,13,0,13,2,0,9,4,14,12,3,1,13,0,14,15,6,12,6,4,13,12,13,11,6,9,10,15,6,5,15,6,5,15,6,12,6,9,10,15,6,5,15,1,13,0,3,1,6,4,14,12,5,3,11,12,3,15,6,5,15,6,12,6,9,10,15,6,12,9,15,6,12,4,3,15,6,5,15,6,12,9,9,14,12,3,15,6,5,15,6,12,9,14,12,5,3,1,13,0,14,12,3,15,6,12,4,14,12,5,3,1,13,0,14,15,0,9,11,6,9,10,2,12,3,7,15,6,12,4,14,12,3,7,13,4,14,12,5,3,7,13,7,11,6,9,10,2,12,5,3,1,13,0,14,12,5,3,1,13,0,3,7,15,6,12,4,3,7,15,6,12,6,9,10,2,0,15,6,12,2,12,13,7,2,5,3,1,13,0,13,7,11,6,4,3,15,6,12,6,9,10,2,12,3,7,13,4,14,12,3,2,12,5,3,11,12,15,6,5,15,6,12,6,9,10,2,0,15,6,12,6,4,14,12,5,3,1,13,0,14,12,3,7,13,8,9,12,3,1,13,7,2,6,9,10,2,0,2,12,13,1,13,7,2,6,4,14,12,3,1,13,0,13,7,11,6,9,10,15,6,5,9,8,12,5,3,1,13,0,3,1,13,0,14,12,13,0,2,12,5,3,1,13,0,11,6,5,15,6,5,15,6,5,15,6,5,15,6,5,12,3,15,6,12,6,4,14,12,3,15,6,2,0,15,6,12,9,7,2,5,1,14,15,6,5,15,6,5,15,6,12,4,3,12,13,11,6,9,10,15,6,5,15,6", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"2\", \"1\", \"7\"], \"clip_start\": 216.0, \"clip_end\": 221.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,2,5,4,8,2,1,9,15,0,1,13,1,6,0,1,9,15,11,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,9,15,0,11,13,7,15,9,12,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,5,3,0,11,8,12,12,9,15,0,11,5,8,3,8,13,10,12,0,11,10,12,9,15,0,11,6,0,10,12,0,11,9,13,8,8,5,14,9,15,0,5,8,9,15,11,12,10,12,9,15,0,11,10,12,0,11,0,1,9,15,0,1,9,15,0,11,13,12,5,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,11,15,9,2,1,7,15,13,13,9,15,0,11,9,15,11,6,0,11,11,7,3,12,14,9,15,13,4,4,8,8,7,15,11,6,0,14,9,15,13,13,4,8,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,0,5,2,1,7,15,9,2,1,7,15,12,14,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,12,5,14,9,15,0,11,9,15,11,15,9,2,1,8,8,14,9,15,0,3,5,5,10,12,0,1,9,15,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,12,14,9,15,0,14,9,15,0,11,3,12,10,12,9,15,0,11,10,12,0,1,9,15,0,11,5,7,15,9,2,1,7,15,12,13,10,12,0,1,9,15,11,12,14,9,15,11,6,13,1,6,0,11,1,6,13,7,15,9,2,1,7,10,12,0,11,9,15,0,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,13,2,1,7,15,9,12,7,15,9,2,1,7,15,9,2,1,7,9,15,0,11,3,7,15,11,6,0,1,9,15,0,11,12,11,3,5,12,7,15,12,10,12,9,3,10,12,6,13,8,13,15,12,11,7,15,9,2,1,7,15,9,2,1,7,15,9,12,1,12,9,12,14,9,15,0,1,9,15,0,11,6,0,1,9,4,8,13,11,6,9,15,0,10,12,7,15,9,2,1,7,15,9", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"7\", \"15\", \"9\", \"2\"], \"clip_start\": 155.0, \"clip_end\": 161.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,2,5,4,8,2,1,9,15,0,1,13,1,6,0,1,9,15,11,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,9,15,0,11,13,7,15,9,12,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,5,3,0,11,8,12,12,9,15,0,11,5,8,3,8,13,10,12,0,11,10,12,9,15,0,11,6,0,10,12,0,11,9,13,8,8,5,14,9,15,0,5,8,9,15,11,12,10,12,9,15,0,11,10,12,0,11,0,1,9,15,0,1,9,15,0,11,13,12,5,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,11,15,9,2,1,7,15,13,13,9,15,0,11,9,15,11,6,0,11,11,7,3,12,14,9,15,13,4,4,8,8,7,15,11,6,0,14,9,15,13,13,4,8,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,0,5,2,1,7,15,9,2,1,7,15,12,14,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,12,5,14,9,15,0,11,9,15,11,15,9,2,1,8,8,14,9,15,0,3,5,5,10,12,0,1,9,15,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,12,14,9,15,0,14,9,15,0,11,3,12,10,12,9,15,0,11,10,12,0,1,9,15,0,11,5,7,15,9,2,1,7,15,12,13,10,12,0,1,9,15,11,12,14,9,15,11,6,13,1,6,0,11,1,6,13,7,15,9,2,1,7,10,12,0,11,9,15,0,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,13,2,1,7,15,9,12,7,15,9,2,1,7,15,9,2,1,7,9,15,0,11,3,7,15,11,6,0,1,9,15,0,11,12,11,3,5,12,7,15,12,10,12,9,3,10,12,6,13,8,13,15,12,11,7,15,9,2,1,7,15,9,2,1,7,15,9,12,1,12,9,12,14,9,15,0,1,9,15,0,11,6,0,1,9,4,8,13,11,6,9,15,0,10,12,7,15,9,2,1,7,15,9", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 494.0, \"clip_end\": 500.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,2,5,4,8,2,1,9,15,0,1,13,1,6,0,1,9,15,11,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,9,15,0,11,13,7,15,9,12,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,5,3,0,11,8,12,12,9,15,0,11,5,8,3,8,13,10,12,0,11,10,12,9,15,0,11,6,0,10,12,0,11,9,13,8,8,5,14,9,15,0,5,8,9,15,11,12,10,12,9,15,0,11,10,12,0,11,0,1,9,15,0,1,9,15,0,11,13,12,5,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,11,15,9,2,1,7,15,13,13,9,15,0,11,9,15,11,6,0,11,11,7,3,12,14,9,15,13,4,4,8,8,7,15,11,6,0,14,9,15,13,13,4,8,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,0,5,2,1,7,15,9,2,1,7,15,12,14,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,12,5,14,9,15,0,11,9,15,11,15,9,2,1,8,8,14,9,15,0,3,5,5,10,12,0,1,9,15,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,12,14,9,15,0,14,9,15,0,11,3,12,10,12,9,15,0,11,10,12,0,1,9,15,0,11,5,7,15,9,2,1,7,15,12,13,10,12,0,1,9,15,11,12,14,9,15,11,6,13,1,6,0,11,1,6,13,7,15,9,2,1,7,10,12,0,11,9,15,0,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,13,2,1,7,15,9,12,7,15,9,2,1,7,15,9,2,1,7,9,15,0,11,3,7,15,11,6,0,1,9,15,0,11,12,11,3,5,12,7,15,12,10,12,9,3,10,12,6,13,8,13,15,12,11,7,15,9,2,1,7,15,9,2,1,7,15,9,12,1,12,9,12,14,9,15,0,1,9,15,0,11,6,0,1,9,4,8,13,11,6,9,15,0,10,12,7,15,9,2,1,7,15,9", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"2\", \"1\", \"7\", \"15\", \"9\"], \"clip_start\": 394.0, \"clip_end\": 400.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,2,5,4,8,2,1,9,15,0,1,13,1,6,0,1,9,15,11,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,9,15,0,11,13,7,15,9,12,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,5,3,0,11,8,12,12,9,15,0,11,5,8,3,8,13,10,12,0,11,10,12,9,15,0,11,6,0,10,12,0,11,9,13,8,8,5,14,9,15,0,5,8,9,15,11,12,10,12,9,15,0,11,10,12,0,11,0,1,9,15,0,1,9,15,0,11,13,12,5,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,11,15,9,2,1,7,15,13,13,9,15,0,11,9,15,11,6,0,11,11,7,3,12,14,9,15,13,4,4,8,8,7,15,11,6,0,14,9,15,13,13,4,8,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,0,5,2,1,7,15,9,2,1,7,15,12,14,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,12,5,14,9,15,0,11,9,15,11,15,9,2,1,8,8,14,9,15,0,3,5,5,10,12,0,1,9,15,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,12,14,9,15,0,14,9,15,0,11,3,12,10,12,9,15,0,11,10,12,0,1,9,15,0,11,5,7,15,9,2,1,7,15,12,13,10,12,0,1,9,15,11,12,14,9,15,11,6,13,1,6,0,11,1,6,13,7,15,9,2,1,7,10,12,0,11,9,15,0,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,13,2,1,7,15,9,12,7,15,9,2,1,7,15,9,2,1,7,9,15,0,11,3,7,15,11,6,0,1,9,15,0,11,12,11,3,5,12,7,15,12,10,12,9,3,10,12,6,13,8,13,15,12,11,7,15,9,2,1,7,15,9,2,1,7,15,9,12,1,12,9,12,14,9,15,0,1,9,15,0,11,6,0,1,9,4,8,13,11,6,9,15,0,10,12,7,15,9,2,1,7,15,9", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"6\", \"0\", \"1\", \"9\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,2,5,4,8,2,1,9,15,0,1,13,1,6,0,1,9,15,11,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,9,15,0,11,13,7,15,9,12,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,5,3,0,11,8,12,12,9,15,0,11,5,8,3,8,13,10,12,0,11,10,12,9,15,0,11,6,0,10,12,0,11,9,13,8,8,5,14,9,15,0,5,8,9,15,11,12,10,12,9,15,0,11,10,12,0,11,0,1,9,15,0,1,9,15,0,11,13,12,5,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,11,15,9,2,1,7,15,13,13,9,15,0,11,9,15,11,6,0,11,11,7,3,12,14,9,15,13,4,4,8,8,7,15,11,6,0,14,9,15,13,13,4,8,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,0,5,2,1,7,15,9,2,1,7,15,12,14,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,12,5,14,9,15,0,11,9,15,11,15,9,2,1,8,8,14,9,15,0,3,5,5,10,12,0,1,9,15,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,12,14,9,15,0,14,9,15,0,11,3,12,10,12,9,15,0,11,10,12,0,1,9,15,0,11,5,7,15,9,2,1,7,15,12,13,10,12,0,1,9,15,11,12,14,9,15,11,6,13,1,6,0,11,1,6,13,7,15,9,2,1,7,10,12,0,11,9,15,0,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,13,2,1,7,15,9,12,7,15,9,2,1,7,15,9,2,1,7,9,15,0,11,3,7,15,11,6,0,1,9,15,0,11,12,11,3,5,12,7,15,12,10,12,9,3,10,12,6,13,8,13,15,12,11,7,15,9,2,1,7,15,9,2,1,7,15,9,12,1,12,9,12,14,9,15,0,1,9,15,0,11,6,0,1,9,4,8,13,11,6,9,15,0,10,12,7,15,9,2,1,7,15,9", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"12\", \"14\", \"9\"], \"clip_start\": 317.0, \"clip_end\": 321.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,2,5,4,8,2,1,9,15,0,1,13,1,6,0,1,9,15,11,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,9,15,0,11,13,7,15,9,12,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,5,3,0,11,8,12,12,9,15,0,11,5,8,3,8,13,10,12,0,11,10,12,9,15,0,11,6,0,10,12,0,11,9,13,8,8,5,14,9,15,0,5,8,9,15,11,12,10,12,9,15,0,11,10,12,0,11,0,1,9,15,0,1,9,15,0,11,13,12,5,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,11,15,9,2,1,7,15,13,13,9,15,0,11,9,15,11,6,0,11,11,7,3,12,14,9,15,13,4,4,8,8,7,15,11,6,0,14,9,15,13,13,4,8,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,0,5,2,1,7,15,9,2,1,7,15,12,14,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,12,5,14,9,15,0,11,9,15,11,15,9,2,1,8,8,14,9,15,0,3,5,5,10,12,0,1,9,15,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,12,14,9,15,0,14,9,15,0,11,3,12,10,12,9,15,0,11,10,12,0,1,9,15,0,11,5,7,15,9,2,1,7,15,12,13,10,12,0,1,9,15,11,12,14,9,15,11,6,13,1,6,0,11,1,6,13,7,15,9,2,1,7,10,12,0,11,9,15,0,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,13,2,1,7,15,9,12,7,15,9,2,1,7,15,9,2,1,7,9,15,0,11,3,7,15,11,6,0,1,9,15,0,11,12,11,3,5,12,7,15,12,10,12,9,3,10,12,6,13,8,13,15,12,11,7,15,9,2,1,7,15,9,2,1,7,15,9,12,1,12,9,12,14,9,15,0,1,9,15,0,11,6,0,1,9,4,8,13,11,6,9,15,0,10,12,7,15,9,2,1,7,15,9", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"9\", \"15\"], \"clip_start\": 480.0, \"clip_end\": 484.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,2,5,4,8,2,1,9,15,0,1,13,1,6,0,1,9,15,11,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,9,15,0,11,13,7,15,9,12,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,5,3,0,11,8,12,12,9,15,0,11,5,8,3,8,13,10,12,0,11,10,12,9,15,0,11,6,0,10,12,0,11,9,13,8,8,5,14,9,15,0,5,8,9,15,11,12,10,12,9,15,0,11,10,12,0,11,0,1,9,15,0,1,9,15,0,11,13,12,5,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,11,15,9,2,1,7,15,13,13,9,15,0,11,9,15,11,6,0,11,11,7,3,12,14,9,15,13,4,4,8,8,7,15,11,6,0,14,9,15,13,13,4,8,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,0,5,2,1,7,15,9,2,1,7,15,12,14,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,12,5,14,9,15,0,11,9,15,11,15,9,2,1,8,8,14,9,15,0,3,5,5,10,12,0,1,9,15,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,12,14,9,15,0,14,9,15,0,11,3,12,10,12,9,15,0,11,10,12,0,1,9,15,0,11,5,7,15,9,2,1,7,15,12,13,10,12,0,1,9,15,11,12,14,9,15,11,6,13,1,6,0,11,1,6,13,7,15,9,2,1,7,10,12,0,11,9,15,0,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,13,2,1,7,15,9,12,7,15,9,2,1,7,15,9,2,1,7,9,15,0,11,3,7,15,11,6,0,1,9,15,0,11,12,11,3,5,12,7,15,12,10,12,9,3,10,12,6,13,8,13,15,12,11,7,15,9,2,1,7,15,9,2,1,7,15,9,12,1,12,9,12,14,9,15,0,1,9,15,0,11,6,0,1,9,4,8,13,11,6,9,15,0,10,12,7,15,9,2,1,7,15,9", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 165.0, \"clip_end\": 171.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,2,5,4,8,2,1,9,15,0,1,13,1,6,0,1,9,15,11,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,9,15,0,11,13,7,15,9,12,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,5,3,0,11,8,12,12,9,15,0,11,5,8,3,8,13,10,12,0,11,10,12,9,15,0,11,6,0,10,12,0,11,9,13,8,8,5,14,9,15,0,5,8,9,15,11,12,10,12,9,15,0,11,10,12,0,11,0,1,9,15,0,1,9,15,0,11,13,12,5,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,11,15,9,2,1,7,15,13,13,9,15,0,11,9,15,11,6,0,11,11,7,3,12,14,9,15,13,4,4,8,8,7,15,11,6,0,14,9,15,13,13,4,8,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,0,5,2,1,7,15,9,2,1,7,15,12,14,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,12,5,14,9,15,0,11,9,15,11,15,9,2,1,8,8,14,9,15,0,3,5,5,10,12,0,1,9,15,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,12,14,9,15,0,14,9,15,0,11,3,12,10,12,9,15,0,11,10,12,0,1,9,15,0,11,5,7,15,9,2,1,7,15,12,13,10,12,0,1,9,15,11,12,14,9,15,11,6,13,1,6,0,11,1,6,13,7,15,9,2,1,7,10,12,0,11,9,15,0,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,13,2,1,7,15,9,12,7,15,9,2,1,7,15,9,2,1,7,9,15,0,11,3,7,15,11,6,0,1,9,15,0,11,12,11,3,5,12,7,15,12,10,12,9,3,10,12,6,13,8,13,15,12,11,7,15,9,2,1,7,15,9,2,1,7,15,9,12,1,12,9,12,14,9,15,0,1,9,15,0,11,6,0,1,9,4,8,13,11,6,9,15,0,10,12,7,15,9,2,1,7,15,9", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 391.0, \"clip_end\": 395.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,2,5,4,8,2,1,9,15,0,1,13,1,6,0,1,9,15,11,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,9,15,0,11,13,7,15,9,12,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,5,3,0,11,8,12,12,9,15,0,11,5,8,3,8,13,10,12,0,11,10,12,9,15,0,11,6,0,10,12,0,11,9,13,8,8,5,14,9,15,0,5,8,9,15,11,12,10,12,9,15,0,11,10,12,0,11,0,1,9,15,0,1,9,15,0,11,13,12,5,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,11,15,9,2,1,7,15,13,13,9,15,0,11,9,15,11,6,0,11,11,7,3,12,14,9,15,13,4,4,8,8,7,15,11,6,0,14,9,15,13,13,4,8,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,0,5,2,1,7,15,9,2,1,7,15,12,14,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,12,5,14,9,15,0,11,9,15,11,15,9,2,1,8,8,14,9,15,0,3,5,5,10,12,0,1,9,15,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,12,14,9,15,0,14,9,15,0,11,3,12,10,12,9,15,0,11,10,12,0,1,9,15,0,11,5,7,15,9,2,1,7,15,12,13,10,12,0,1,9,15,11,12,14,9,15,11,6,13,1,6,0,11,1,6,13,7,15,9,2,1,7,10,12,0,11,9,15,0,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,13,2,1,7,15,9,12,7,15,9,2,1,7,15,9,2,1,7,9,15,0,11,3,7,15,11,6,0,1,9,15,0,11,12,11,3,5,12,7,15,12,10,12,9,3,10,12,6,13,8,13,15,12,11,7,15,9,2,1,7,15,9,2,1,7,15,9,12,1,12,9,12,14,9,15,0,1,9,15,0,11,6,0,1,9,4,8,13,11,6,9,15,0,10,12,7,15,9,2,1,7,15,9", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"9\", \"15\", \"0\", \"11\"], \"clip_start\": 178.0, \"clip_end\": 183.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,2,5,4,8,2,1,9,15,0,1,13,1,6,0,1,9,15,11,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,9,15,0,11,13,7,15,9,12,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,5,3,0,11,8,12,12,9,15,0,11,5,8,3,8,13,10,12,0,11,10,12,9,15,0,11,6,0,10,12,0,11,9,13,8,8,5,14,9,15,0,5,8,9,15,11,12,10,12,9,15,0,11,10,12,0,11,0,1,9,15,0,1,9,15,0,11,13,12,5,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,11,15,9,2,1,7,15,13,13,9,15,0,11,9,15,11,6,0,11,11,7,3,12,14,9,15,13,4,4,8,8,7,15,11,6,0,14,9,15,13,13,4,8,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,0,5,2,1,7,15,9,2,1,7,15,12,14,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,12,5,14,9,15,0,11,9,15,11,15,9,2,1,8,8,14,9,15,0,3,5,5,10,12,0,1,9,15,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,12,14,9,15,0,14,9,15,0,11,3,12,10,12,9,15,0,11,10,12,0,1,9,15,0,11,5,7,15,9,2,1,7,15,12,13,10,12,0,1,9,15,11,12,14,9,15,11,6,13,1,6,0,11,1,6,13,7,15,9,2,1,7,10,12,0,11,9,15,0,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,13,2,1,7,15,9,12,7,15,9,2,1,7,15,9,2,1,7,9,15,0,11,3,7,15,11,6,0,1,9,15,0,11,12,11,3,5,12,7,15,12,10,12,9,3,10,12,6,13,8,13,15,12,11,7,15,9,2,1,7,15,9,2,1,7,15,9,12,1,12,9,12,14,9,15,0,1,9,15,0,11,6,0,1,9,4,8,13,11,6,9,15,0,10,12,7,15,9,2,1,7,15,9", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"9\", \"15\", \"0\", \"11\"], \"clip_start\": 129.0, \"clip_end\": 135.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,2,5,4,8,2,1,9,15,0,1,13,1,6,0,1,9,15,11,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,9,15,0,11,13,7,15,9,12,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,5,3,0,11,8,12,12,9,15,0,11,5,8,3,8,13,10,12,0,11,10,12,9,15,0,11,6,0,10,12,0,11,9,13,8,8,5,14,9,15,0,5,8,9,15,11,12,10,12,9,15,0,11,10,12,0,11,0,1,9,15,0,1,9,15,0,11,13,12,5,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,11,15,9,2,1,7,15,13,13,9,15,0,11,9,15,11,6,0,11,11,7,3,12,14,9,15,13,4,4,8,8,7,15,11,6,0,14,9,15,13,13,4,8,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,0,5,2,1,7,15,9,2,1,7,15,12,14,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,12,5,14,9,15,0,11,9,15,11,15,9,2,1,8,8,14,9,15,0,3,5,5,10,12,0,1,9,15,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,12,14,9,15,0,14,9,15,0,11,3,12,10,12,9,15,0,11,10,12,0,1,9,15,0,11,5,7,15,9,2,1,7,15,12,13,10,12,0,1,9,15,11,12,14,9,15,11,6,13,1,6,0,11,1,6,13,7,15,9,2,1,7,10,12,0,11,9,15,0,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,13,2,1,7,15,9,12,7,15,9,2,1,7,15,9,2,1,7,9,15,0,11,3,7,15,11,6,0,1,9,15,0,11,12,11,3,5,12,7,15,12,10,12,9,3,10,12,6,13,8,13,15,12,11,7,15,9,2,1,7,15,9,2,1,7,15,9,12,1,12,9,12,14,9,15,0,1,9,15,0,11,6,0,1,9,4,8,13,11,6,9,15,0,10,12,7,15,9,2,1,7,15,9", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 29.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q11_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,2,5,4,8,2,1,9,15,0,1,13,1,6,0,1,9,15,11,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,9,15,0,11,13,7,15,9,12,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,5,3,0,11,8,12,12,9,15,0,11,5,8,3,8,13,10,12,0,11,10,12,9,15,0,11,6,0,10,12,0,11,9,13,8,8,5,14,9,15,0,5,8,9,15,11,12,10,12,9,15,0,11,10,12,0,11,0,1,9,15,0,1,9,15,0,11,13,12,5,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,11,15,9,2,1,7,15,13,13,9,15,0,11,9,15,11,6,0,11,11,7,3,12,14,9,15,13,4,4,8,8,7,15,11,6,0,14,9,15,13,13,4,8,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,0,5,2,1,7,15,9,2,1,7,15,12,14,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,12,5,14,9,15,0,11,9,15,11,15,9,2,1,8,8,14,9,15,0,3,5,5,10,12,0,1,9,15,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,12,14,9,15,0,14,9,15,0,11,3,12,10,12,9,15,0,11,10,12,0,1,9,15,0,11,5,7,15,9,2,1,7,15,12,13,10,12,0,1,9,15,11,12,14,9,15,11,6,13,1,6,0,11,1,6,13,7,15,9,2,1,7,10,12,0,11,9,15,0,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,13,2,1,7,15,9,12,7,15,9,2,1,7,15,9,2,1,7,9,15,0,11,3,7,15,11,6,0,1,9,15,0,11,12,11,3,5,12,7,15,12,10,12,9,3,10,12,6,13,8,13,15,12,11,7,15,9,2,1,7,15,9,2,1,7,15,9,12,1,12,9,12,14,9,15,0,1,9,15,0,11,6,0,1,9,4,8,13,11,6,9,15,0,10,12,7,15,9,2,1,7,15,9", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"1\", \"14\", \"9\", \"15\"], \"clip_start\": 400.0, \"clip_end\": 405.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,2,5,4,8,2,1,9,15,0,1,13,1,6,0,1,9,15,11,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,9,15,0,11,13,7,15,9,12,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,5,3,0,11,8,12,12,9,15,0,11,5,8,3,8,13,10,12,0,11,10,12,9,15,0,11,6,0,10,12,0,11,9,13,8,8,5,14,9,15,0,5,8,9,15,11,12,10,12,9,15,0,11,10,12,0,11,0,1,9,15,0,1,9,15,0,11,13,12,5,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,11,15,9,2,1,7,15,13,13,9,15,0,11,9,15,11,6,0,11,11,7,3,12,14,9,15,13,4,4,8,8,7,15,11,6,0,14,9,15,13,13,4,8,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,0,5,2,1,7,15,9,2,1,7,15,12,14,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,12,5,14,9,15,0,11,9,15,11,15,9,2,1,8,8,14,9,15,0,3,5,5,10,12,0,1,9,15,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,12,14,9,15,0,14,9,15,0,11,3,12,10,12,9,15,0,11,10,12,0,1,9,15,0,11,5,7,15,9,2,1,7,15,12,13,10,12,0,1,9,15,11,12,14,9,15,11,6,13,1,6,0,11,1,6,13,7,15,9,2,1,7,10,12,0,11,9,15,0,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,13,2,1,7,15,9,12,7,15,9,2,1,7,15,9,2,1,7,9,15,0,11,3,7,15,11,6,0,1,9,15,0,11,12,11,3,5,12,7,15,12,10,12,9,3,10,12,6,13,8,13,15,12,11,7,15,9,2,1,7,15,9,2,1,7,15,9,12,1,12,9,12,14,9,15,0,1,9,15,0,11,6,0,1,9,4,8,13,11,6,9,15,0,10,12,7,15,9,2,1,7,15,9", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"12\", \"11\", \"3\"], \"clip_start\": 441.0, \"clip_end\": 445.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q13_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,2,5,4,8,2,1,9,15,0,1,13,1,6,0,1,9,15,11,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,9,15,0,11,13,7,15,9,12,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,5,3,0,11,8,12,12,9,15,0,11,5,8,3,8,13,10,12,0,11,10,12,9,15,0,11,6,0,10,12,0,11,9,13,8,8,5,14,9,15,0,5,8,9,15,11,12,10,12,9,15,0,11,10,12,0,11,0,1,9,15,0,1,9,15,0,11,13,12,5,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,11,15,9,2,1,7,15,13,13,9,15,0,11,9,15,11,6,0,11,11,7,3,12,14,9,15,13,4,4,8,8,7,15,11,6,0,14,9,15,13,13,4,8,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,0,5,2,1,7,15,9,2,1,7,15,12,14,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,12,5,14,9,15,0,11,9,15,11,15,9,2,1,8,8,14,9,15,0,3,5,5,10,12,0,1,9,15,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,12,14,9,15,0,14,9,15,0,11,3,12,10,12,9,15,0,11,10,12,0,1,9,15,0,11,5,7,15,9,2,1,7,15,12,13,10,12,0,1,9,15,11,12,14,9,15,11,6,13,1,6,0,11,1,6,13,7,15,9,2,1,7,10,12,0,11,9,15,0,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,13,2,1,7,15,9,12,7,15,9,2,1,7,15,9,2,1,7,9,15,0,11,3,7,15,11,6,0,1,9,15,0,11,12,11,3,5,12,7,15,12,10,12,9,3,10,12,6,13,8,13,15,12,11,7,15,9,2,1,7,15,9,2,1,7,15,9,12,1,12,9,12,14,9,15,0,1,9,15,0,11,6,0,1,9,4,8,13,11,6,9,15,0,10,12,7,15,9,2,1,7,15,9", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"12\"], \"clip_start\": 120.0, \"clip_end\": 124.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,2,5,4,8,2,1,9,15,0,1,13,1,6,0,1,9,15,11,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,9,15,0,11,13,7,15,9,12,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,5,3,0,11,8,12,12,9,15,0,11,5,8,3,8,13,10,12,0,11,10,12,9,15,0,11,6,0,10,12,0,11,9,13,8,8,5,14,9,15,0,5,8,9,15,11,12,10,12,9,15,0,11,10,12,0,11,0,1,9,15,0,1,9,15,0,11,13,12,5,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,11,15,9,2,1,7,15,13,13,9,15,0,11,9,15,11,6,0,11,11,7,3,12,14,9,15,13,4,4,8,8,7,15,11,6,0,14,9,15,13,13,4,8,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,0,5,2,1,7,15,9,2,1,7,15,12,14,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,12,5,14,9,15,0,11,9,15,11,15,9,2,1,8,8,14,9,15,0,3,5,5,10,12,0,1,9,15,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,12,14,9,15,0,14,9,15,0,11,3,12,10,12,9,15,0,11,10,12,0,1,9,15,0,11,5,7,15,9,2,1,7,15,12,13,10,12,0,1,9,15,11,12,14,9,15,11,6,13,1,6,0,11,1,6,13,7,15,9,2,1,7,10,12,0,11,9,15,0,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,13,2,1,7,15,9,12,7,15,9,2,1,7,15,9,2,1,7,9,15,0,11,3,7,15,11,6,0,1,9,15,0,11,12,11,3,5,12,7,15,12,10,12,9,3,10,12,6,13,8,13,15,12,11,7,15,9,2,1,7,15,9,2,1,7,15,9,12,1,12,9,12,14,9,15,0,1,9,15,0,11,6,0,1,9,4,8,13,11,6,9,15,0,10,12,7,15,9,2,1,7,15,9", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"14\", \"9\", \"15\", \"0\"], \"clip_start\": 265.0, \"clip_end\": 271.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q15_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,0,14,2,5,4,8,2,1,9,15,0,1,13,1,6,0,1,9,15,11,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,9,15,0,11,13,7,15,9,12,6,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,5,3,0,11,8,12,12,9,15,0,11,5,8,3,8,13,10,12,0,11,10,12,9,15,0,11,6,0,10,12,0,11,9,13,8,8,5,14,9,15,0,5,8,9,15,11,12,10,12,9,15,0,11,10,12,0,11,0,1,9,15,0,1,9,15,0,11,13,12,5,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,11,15,9,2,1,7,15,13,13,9,15,0,11,9,15,11,6,0,11,11,7,3,12,14,9,15,13,4,4,8,8,7,15,11,6,0,14,9,15,13,13,4,8,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,0,5,2,1,7,15,9,2,1,7,15,12,14,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,12,5,14,9,15,0,11,9,15,11,15,9,2,1,8,8,14,9,15,0,3,5,5,10,12,0,1,9,15,0,1,9,15,11,15,9,2,1,7,15,9,2,1,7,15,9,2,1,7,15,9,2,1,12,14,9,15,0,14,9,15,0,11,3,12,10,12,9,15,0,11,10,12,0,1,9,15,0,11,5,7,15,9,2,1,7,15,12,13,10,12,0,1,9,15,11,12,14,9,15,11,6,13,1,6,0,11,1,6,13,7,15,9,2,1,7,10,12,0,11,9,15,0,15,9,2,1,7,15,9,2,1,7,15,9,2,1,14,9,15,0,1,9,15,13,2,1,7,15,9,12,7,15,9,2,1,7,15,9,2,1,7,9,15,0,11,3,7,15,11,6,0,1,9,15,0,11,12,11,3,5,12,7,15,12,10,12,9,3,10,12,6,13,8,13,15,12,11,7,15,9,2,1,7,15,9,2,1,7,15,9,12,1,12,9,12,14,9,15,0,1,9,15,0,11,6,0,1,9,4,8,13,11,6,9,15,0,10,12,7,15,9,2,1,7,15,9", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"0\", \"13\", \"15\", \"3\"], \"clip_start\": 110.0, \"clip_end\": 116.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,0,15,6,11,3,11,3,12,0,13,10,1,5,8,1,2,10,1,2,10,1,1,13,9,7,7,3,0,2,10,1,1,11,3,2,10,14,2,10,6,11,3,12,8,6,3,13,9,7,11,3,6,11,3,12,0,15,6,11,3,4,2,10,7,12,15,14,2,10,6,11,3,12,15,2,10,14,4,12,15,4,5,8,6,13,7,2,10,1,5,8,6,13,14,2,10,5,8,6,13,10,1,5,8,6,13,9,7,15,12,0,13,15,3,5,8,6,13,7,12,8,6,3,12,8,6,3,5,8,6,13,7,2,1,13,9,7,3,9,6,11,3,12,0,13,15,6,7,8,4,8,6,13,9,3,7,7,6,11,3,12,0,15,6,11,3,4,13,9,7,0,2,10,1,5,8,6,13,10,1,5,8,6,13,7,11,3,5,8,6,13,5,8,6,7,12,8,6,3,13,9,13,9,7,12,0,15,8,6,13,9,7,4,5,8,9,15,4,8,6,13,9,7,8,6,11,3,12,15,3,15,15,5,8,6,13,10,1,1,13,9,7,14,4,13,9,14,4,11,3,0,13,15,13,9,7,10,5,8,6,13,7,9,12,0,13,0,2,10,1,1,13,9,7,0,13,0,13,15,12,8,6,3,14,2,10,6,11,3,12,4,8,6,13,9,7,3,9,15,5,8,6,13,7,5,8,6,3,4,2,10,1,1,13,9,7,10,1,1,13,9,7,12,0,13,0,15,1,13,9,7,4,4,15,1,2,10,0,2,10,14,4,7,3,2,10,14,4,8,6,13,9,7,8,6,13,9,7,1,2,10,1,5,8,6,13,7,5,8,6,13,10,5,8,6,13,10,14,4,8,6,13,9,7,15,1,2,10,1,5,8,6,13,10,1,6,11,3,12,8,6,3,12,0,13,15,1,13,9,7,12,8,6,3,5,8,6,13,7,6,11,3,12,0,2,10,1,1,11,3,3,7,11,3,2,10,14,2,10,5,8,11,3,3,7,5,8,6,13,7,7,15,11,3,15,10,1,1,13,9,7,8,6,13,9,0,13,0,13,15,4,12,0,2,10,1,5,8,6,13,7,13,9,7,5,8,6,13,7,14,4,2,10,1,5,8,6,13,7,7,13,9,7,13,9,7,8,6,13,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"15\", \"5\", \"8\"], \"clip_start\": 298.0, \"clip_end\": 303.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,0,15,6,11,3,11,3,12,0,13,10,1,5,8,1,2,10,1,2,10,1,1,13,9,7,7,3,0,2,10,1,1,11,3,2,10,14,2,10,6,11,3,12,8,6,3,13,9,7,11,3,6,11,3,12,0,15,6,11,3,4,2,10,7,12,15,14,2,10,6,11,3,12,15,2,10,14,4,12,15,4,5,8,6,13,7,2,10,1,5,8,6,13,14,2,10,5,8,6,13,10,1,5,8,6,13,9,7,15,12,0,13,15,3,5,8,6,13,7,12,8,6,3,12,8,6,3,5,8,6,13,7,2,1,13,9,7,3,9,6,11,3,12,0,13,15,6,7,8,4,8,6,13,9,3,7,7,6,11,3,12,0,15,6,11,3,4,13,9,7,0,2,10,1,5,8,6,13,10,1,5,8,6,13,7,11,3,5,8,6,13,5,8,6,7,12,8,6,3,13,9,13,9,7,12,0,15,8,6,13,9,7,4,5,8,9,15,4,8,6,13,9,7,8,6,11,3,12,15,3,15,15,5,8,6,13,10,1,1,13,9,7,14,4,13,9,14,4,11,3,0,13,15,13,9,7,10,5,8,6,13,7,9,12,0,13,0,2,10,1,1,13,9,7,0,13,0,13,15,12,8,6,3,14,2,10,6,11,3,12,4,8,6,13,9,7,3,9,15,5,8,6,13,7,5,8,6,3,4,2,10,1,1,13,9,7,10,1,1,13,9,7,12,0,13,0,15,1,13,9,7,4,4,15,1,2,10,0,2,10,14,4,7,3,2,10,14,4,8,6,13,9,7,8,6,13,9,7,1,2,10,1,5,8,6,13,7,5,8,6,13,10,5,8,6,13,10,14,4,8,6,13,9,7,15,1,2,10,1,5,8,6,13,10,1,6,11,3,12,8,6,3,12,0,13,15,1,13,9,7,12,8,6,3,5,8,6,13,7,6,11,3,12,0,2,10,1,1,11,3,3,7,11,3,2,10,14,2,10,5,8,11,3,3,7,5,8,6,13,7,7,15,11,3,15,10,1,1,13,9,7,8,6,13,9,0,13,0,13,15,4,12,0,2,10,1,5,8,6,13,7,13,9,7,5,8,6,13,7,14,4,2,10,1,5,8,6,13,7,7,13,9,7,13,9,7,8,6,13,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"15\", \"6\", \"11\", \"3\", \"11\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,0,15,6,11,3,11,3,12,0,13,10,1,5,8,1,2,10,1,2,10,1,1,13,9,7,7,3,0,2,10,1,1,11,3,2,10,14,2,10,6,11,3,12,8,6,3,13,9,7,11,3,6,11,3,12,0,15,6,11,3,4,2,10,7,12,15,14,2,10,6,11,3,12,15,2,10,14,4,12,15,4,5,8,6,13,7,2,10,1,5,8,6,13,14,2,10,5,8,6,13,10,1,5,8,6,13,9,7,15,12,0,13,15,3,5,8,6,13,7,12,8,6,3,12,8,6,3,5,8,6,13,7,2,1,13,9,7,3,9,6,11,3,12,0,13,15,6,7,8,4,8,6,13,9,3,7,7,6,11,3,12,0,15,6,11,3,4,13,9,7,0,2,10,1,5,8,6,13,10,1,5,8,6,13,7,11,3,5,8,6,13,5,8,6,7,12,8,6,3,13,9,13,9,7,12,0,15,8,6,13,9,7,4,5,8,9,15,4,8,6,13,9,7,8,6,11,3,12,15,3,15,15,5,8,6,13,10,1,1,13,9,7,14,4,13,9,14,4,11,3,0,13,15,13,9,7,10,5,8,6,13,7,9,12,0,13,0,2,10,1,1,13,9,7,0,13,0,13,15,12,8,6,3,14,2,10,6,11,3,12,4,8,6,13,9,7,3,9,15,5,8,6,13,7,5,8,6,3,4,2,10,1,1,13,9,7,10,1,1,13,9,7,12,0,13,0,15,1,13,9,7,4,4,15,1,2,10,0,2,10,14,4,7,3,2,10,14,4,8,6,13,9,7,8,6,13,9,7,1,2,10,1,5,8,6,13,7,5,8,6,13,10,5,8,6,13,10,14,4,8,6,13,9,7,15,1,2,10,1,5,8,6,13,10,1,6,11,3,12,8,6,3,12,0,13,15,1,13,9,7,12,8,6,3,5,8,6,13,7,6,11,3,12,0,2,10,1,1,11,3,3,7,11,3,2,10,14,2,10,5,8,11,3,3,7,5,8,6,13,7,7,15,11,3,15,10,1,1,13,9,7,8,6,13,9,0,13,0,13,15,4,12,0,2,10,1,5,8,6,13,7,13,9,7,5,8,6,13,7,14,4,2,10,1,5,8,6,13,7,7,13,9,7,13,9,7,8,6,13,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"0\", \"2\", \"10\"], \"clip_start\": 472.0, \"clip_end\": 477.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,0,15,6,11,3,11,3,12,0,13,10,1,5,8,1,2,10,1,2,10,1,1,13,9,7,7,3,0,2,10,1,1,11,3,2,10,14,2,10,6,11,3,12,8,6,3,13,9,7,11,3,6,11,3,12,0,15,6,11,3,4,2,10,7,12,15,14,2,10,6,11,3,12,15,2,10,14,4,12,15,4,5,8,6,13,7,2,10,1,5,8,6,13,14,2,10,5,8,6,13,10,1,5,8,6,13,9,7,15,12,0,13,15,3,5,8,6,13,7,12,8,6,3,12,8,6,3,5,8,6,13,7,2,1,13,9,7,3,9,6,11,3,12,0,13,15,6,7,8,4,8,6,13,9,3,7,7,6,11,3,12,0,15,6,11,3,4,13,9,7,0,2,10,1,5,8,6,13,10,1,5,8,6,13,7,11,3,5,8,6,13,5,8,6,7,12,8,6,3,13,9,13,9,7,12,0,15,8,6,13,9,7,4,5,8,9,15,4,8,6,13,9,7,8,6,11,3,12,15,3,15,15,5,8,6,13,10,1,1,13,9,7,14,4,13,9,14,4,11,3,0,13,15,13,9,7,10,5,8,6,13,7,9,12,0,13,0,2,10,1,1,13,9,7,0,13,0,13,15,12,8,6,3,14,2,10,6,11,3,12,4,8,6,13,9,7,3,9,15,5,8,6,13,7,5,8,6,3,4,2,10,1,1,13,9,7,10,1,1,13,9,7,12,0,13,0,15,1,13,9,7,4,4,15,1,2,10,0,2,10,14,4,7,3,2,10,14,4,8,6,13,9,7,8,6,13,9,7,1,2,10,1,5,8,6,13,7,5,8,6,13,10,5,8,6,13,10,14,4,8,6,13,9,7,15,1,2,10,1,5,8,6,13,10,1,6,11,3,12,8,6,3,12,0,13,15,1,13,9,7,12,8,6,3,5,8,6,13,7,6,11,3,12,0,2,10,1,1,11,3,3,7,11,3,2,10,14,2,10,5,8,11,3,3,7,5,8,6,13,7,7,15,11,3,15,10,1,1,13,9,7,8,6,13,9,0,13,0,13,15,4,12,0,2,10,1,5,8,6,13,7,13,9,7,5,8,6,13,7,14,4,2,10,1,5,8,6,13,7,7,13,9,7,13,9,7,8,6,13,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"4\", \"2\", \"10\", \"1\"], \"clip_start\": 490.0, \"clip_end\": 496.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,0,15,6,11,3,11,3,12,0,13,10,1,5,8,1,2,10,1,2,10,1,1,13,9,7,7,3,0,2,10,1,1,11,3,2,10,14,2,10,6,11,3,12,8,6,3,13,9,7,11,3,6,11,3,12,0,15,6,11,3,4,2,10,7,12,15,14,2,10,6,11,3,12,15,2,10,14,4,12,15,4,5,8,6,13,7,2,10,1,5,8,6,13,14,2,10,5,8,6,13,10,1,5,8,6,13,9,7,15,12,0,13,15,3,5,8,6,13,7,12,8,6,3,12,8,6,3,5,8,6,13,7,2,1,13,9,7,3,9,6,11,3,12,0,13,15,6,7,8,4,8,6,13,9,3,7,7,6,11,3,12,0,15,6,11,3,4,13,9,7,0,2,10,1,5,8,6,13,10,1,5,8,6,13,7,11,3,5,8,6,13,5,8,6,7,12,8,6,3,13,9,13,9,7,12,0,15,8,6,13,9,7,4,5,8,9,15,4,8,6,13,9,7,8,6,11,3,12,15,3,15,15,5,8,6,13,10,1,1,13,9,7,14,4,13,9,14,4,11,3,0,13,15,13,9,7,10,5,8,6,13,7,9,12,0,13,0,2,10,1,1,13,9,7,0,13,0,13,15,12,8,6,3,14,2,10,6,11,3,12,4,8,6,13,9,7,3,9,15,5,8,6,13,7,5,8,6,3,4,2,10,1,1,13,9,7,10,1,1,13,9,7,12,0,13,0,15,1,13,9,7,4,4,15,1,2,10,0,2,10,14,4,7,3,2,10,14,4,8,6,13,9,7,8,6,13,9,7,1,2,10,1,5,8,6,13,7,5,8,6,13,10,5,8,6,13,10,14,4,8,6,13,9,7,15,1,2,10,1,5,8,6,13,10,1,6,11,3,12,8,6,3,12,0,13,15,1,13,9,7,12,8,6,3,5,8,6,13,7,6,11,3,12,0,2,10,1,1,11,3,3,7,11,3,2,10,14,2,10,5,8,11,3,3,7,5,8,6,13,7,7,15,11,3,15,10,1,1,13,9,7,8,6,13,9,0,13,0,13,15,4,12,0,2,10,1,5,8,6,13,7,13,9,7,5,8,6,13,7,14,4,2,10,1,5,8,6,13,7,7,13,9,7,13,9,7,8,6,13,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"4\", \"6\", \"9\"], \"clip_start\": 44.0, \"clip_end\": 50.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q5_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,0,15,6,11,3,11,3,12,0,13,10,1,5,8,1,2,10,1,2,10,1,1,13,9,7,7,3,0,2,10,1,1,11,3,2,10,14,2,10,6,11,3,12,8,6,3,13,9,7,11,3,6,11,3,12,0,15,6,11,3,4,2,10,7,12,15,14,2,10,6,11,3,12,15,2,10,14,4,12,15,4,5,8,6,13,7,2,10,1,5,8,6,13,14,2,10,5,8,6,13,10,1,5,8,6,13,9,7,15,12,0,13,15,3,5,8,6,13,7,12,8,6,3,12,8,6,3,5,8,6,13,7,2,1,13,9,7,3,9,6,11,3,12,0,13,15,6,7,8,4,8,6,13,9,3,7,7,6,11,3,12,0,15,6,11,3,4,13,9,7,0,2,10,1,5,8,6,13,10,1,5,8,6,13,7,11,3,5,8,6,13,5,8,6,7,12,8,6,3,13,9,13,9,7,12,0,15,8,6,13,9,7,4,5,8,9,15,4,8,6,13,9,7,8,6,11,3,12,15,3,15,15,5,8,6,13,10,1,1,13,9,7,14,4,13,9,14,4,11,3,0,13,15,13,9,7,10,5,8,6,13,7,9,12,0,13,0,2,10,1,1,13,9,7,0,13,0,13,15,12,8,6,3,14,2,10,6,11,3,12,4,8,6,13,9,7,3,9,15,5,8,6,13,7,5,8,6,3,4,2,10,1,1,13,9,7,10,1,1,13,9,7,12,0,13,0,15,1,13,9,7,4,4,15,1,2,10,0,2,10,14,4,7,3,2,10,14,4,8,6,13,9,7,8,6,13,9,7,1,2,10,1,5,8,6,13,7,5,8,6,13,10,5,8,6,13,10,14,4,8,6,13,9,7,15,1,2,10,1,5,8,6,13,10,1,6,11,3,12,8,6,3,12,0,13,15,1,13,9,7,12,8,6,3,5,8,6,13,7,6,11,3,12,0,2,10,1,1,11,3,3,7,11,3,2,10,14,2,10,5,8,11,3,3,7,5,8,6,13,7,7,15,11,3,15,10,1,1,13,9,7,8,6,13,9,0,13,0,13,15,4,12,0,2,10,1,5,8,6,13,7,13,9,7,5,8,6,13,7,14,4,2,10,1,5,8,6,13,7,7,13,9,7,13,9,7,8,6,13,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"9\", \"7\"], \"clip_start\": 221.0, \"clip_end\": 225.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q6_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,0,15,6,11,3,11,3,12,0,13,10,1,5,8,1,2,10,1,2,10,1,1,13,9,7,7,3,0,2,10,1,1,11,3,2,10,14,2,10,6,11,3,12,8,6,3,13,9,7,11,3,6,11,3,12,0,15,6,11,3,4,2,10,7,12,15,14,2,10,6,11,3,12,15,2,10,14,4,12,15,4,5,8,6,13,7,2,10,1,5,8,6,13,14,2,10,5,8,6,13,10,1,5,8,6,13,9,7,15,12,0,13,15,3,5,8,6,13,7,12,8,6,3,12,8,6,3,5,8,6,13,7,2,1,13,9,7,3,9,6,11,3,12,0,13,15,6,7,8,4,8,6,13,9,3,7,7,6,11,3,12,0,15,6,11,3,4,13,9,7,0,2,10,1,5,8,6,13,10,1,5,8,6,13,7,11,3,5,8,6,13,5,8,6,7,12,8,6,3,13,9,13,9,7,12,0,15,8,6,13,9,7,4,5,8,9,15,4,8,6,13,9,7,8,6,11,3,12,15,3,15,15,5,8,6,13,10,1,1,13,9,7,14,4,13,9,14,4,11,3,0,13,15,13,9,7,10,5,8,6,13,7,9,12,0,13,0,2,10,1,1,13,9,7,0,13,0,13,15,12,8,6,3,14,2,10,6,11,3,12,4,8,6,13,9,7,3,9,15,5,8,6,13,7,5,8,6,3,4,2,10,1,1,13,9,7,10,1,1,13,9,7,12,0,13,0,15,1,13,9,7,4,4,15,1,2,10,0,2,10,14,4,7,3,2,10,14,4,8,6,13,9,7,8,6,13,9,7,1,2,10,1,5,8,6,13,7,5,8,6,13,10,5,8,6,13,10,14,4,8,6,13,9,7,15,1,2,10,1,5,8,6,13,10,1,6,11,3,12,8,6,3,12,0,13,15,1,13,9,7,12,8,6,3,5,8,6,13,7,6,11,3,12,0,2,10,1,1,11,3,3,7,11,3,2,10,14,2,10,5,8,11,3,3,7,5,8,6,13,7,7,15,11,3,15,10,1,1,13,9,7,8,6,13,9,0,13,0,13,15,4,12,0,2,10,1,5,8,6,13,7,13,9,7,5,8,6,13,7,14,4,2,10,1,5,8,6,13,7,7,13,9,7,13,9,7,8,6,13,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"5\", \"0\", \"0\", \"9\", \"11\"], \"clip_start\": 132.0, \"clip_end\": 138.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,0,15,6,11,3,11,3,12,0,13,10,1,5,8,1,2,10,1,2,10,1,1,13,9,7,7,3,0,2,10,1,1,11,3,2,10,14,2,10,6,11,3,12,8,6,3,13,9,7,11,3,6,11,3,12,0,15,6,11,3,4,2,10,7,12,15,14,2,10,6,11,3,12,15,2,10,14,4,12,15,4,5,8,6,13,7,2,10,1,5,8,6,13,14,2,10,5,8,6,13,10,1,5,8,6,13,9,7,15,12,0,13,15,3,5,8,6,13,7,12,8,6,3,12,8,6,3,5,8,6,13,7,2,1,13,9,7,3,9,6,11,3,12,0,13,15,6,7,8,4,8,6,13,9,3,7,7,6,11,3,12,0,15,6,11,3,4,13,9,7,0,2,10,1,5,8,6,13,10,1,5,8,6,13,7,11,3,5,8,6,13,5,8,6,7,12,8,6,3,13,9,13,9,7,12,0,15,8,6,13,9,7,4,5,8,9,15,4,8,6,13,9,7,8,6,11,3,12,15,3,15,15,5,8,6,13,10,1,1,13,9,7,14,4,13,9,14,4,11,3,0,13,15,13,9,7,10,5,8,6,13,7,9,12,0,13,0,2,10,1,1,13,9,7,0,13,0,13,15,12,8,6,3,14,2,10,6,11,3,12,4,8,6,13,9,7,3,9,15,5,8,6,13,7,5,8,6,3,4,2,10,1,1,13,9,7,10,1,1,13,9,7,12,0,13,0,15,1,13,9,7,4,4,15,1,2,10,0,2,10,14,4,7,3,2,10,14,4,8,6,13,9,7,8,6,13,9,7,1,2,10,1,5,8,6,13,7,5,8,6,13,10,5,8,6,13,10,14,4,8,6,13,9,7,15,1,2,10,1,5,8,6,13,10,1,6,11,3,12,8,6,3,12,0,13,15,1,13,9,7,12,8,6,3,5,8,6,13,7,6,11,3,12,0,2,10,1,1,11,3,3,7,11,3,2,10,14,2,10,5,8,11,3,3,7,5,8,6,13,7,7,15,11,3,15,10,1,1,13,9,7,8,6,13,9,0,13,0,13,15,4,12,0,2,10,1,5,8,6,13,7,13,9,7,5,8,6,13,7,14,4,2,10,1,5,8,6,13,7,7,13,9,7,13,9,7,8,6,13,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"15\"], \"clip_start\": 326.0, \"clip_end\": 329.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,0,15,6,11,3,11,3,12,0,13,10,1,5,8,1,2,10,1,2,10,1,1,13,9,7,7,3,0,2,10,1,1,11,3,2,10,14,2,10,6,11,3,12,8,6,3,13,9,7,11,3,6,11,3,12,0,15,6,11,3,4,2,10,7,12,15,14,2,10,6,11,3,12,15,2,10,14,4,12,15,4,5,8,6,13,7,2,10,1,5,8,6,13,14,2,10,5,8,6,13,10,1,5,8,6,13,9,7,15,12,0,13,15,3,5,8,6,13,7,12,8,6,3,12,8,6,3,5,8,6,13,7,2,1,13,9,7,3,9,6,11,3,12,0,13,15,6,7,8,4,8,6,13,9,3,7,7,6,11,3,12,0,15,6,11,3,4,13,9,7,0,2,10,1,5,8,6,13,10,1,5,8,6,13,7,11,3,5,8,6,13,5,8,6,7,12,8,6,3,13,9,13,9,7,12,0,15,8,6,13,9,7,4,5,8,9,15,4,8,6,13,9,7,8,6,11,3,12,15,3,15,15,5,8,6,13,10,1,1,13,9,7,14,4,13,9,14,4,11,3,0,13,15,13,9,7,10,5,8,6,13,7,9,12,0,13,0,2,10,1,1,13,9,7,0,13,0,13,15,12,8,6,3,14,2,10,6,11,3,12,4,8,6,13,9,7,3,9,15,5,8,6,13,7,5,8,6,3,4,2,10,1,1,13,9,7,10,1,1,13,9,7,12,0,13,0,15,1,13,9,7,4,4,15,1,2,10,0,2,10,14,4,7,3,2,10,14,4,8,6,13,9,7,8,6,13,9,7,1,2,10,1,5,8,6,13,7,5,8,6,13,10,5,8,6,13,10,14,4,8,6,13,9,7,15,1,2,10,1,5,8,6,13,10,1,6,11,3,12,8,6,3,12,0,13,15,1,13,9,7,12,8,6,3,5,8,6,13,7,6,11,3,12,0,2,10,1,1,11,3,3,7,11,3,2,10,14,2,10,5,8,11,3,3,7,5,8,6,13,7,7,15,11,3,15,10,1,1,13,9,7,8,6,13,9,0,13,0,13,15,4,12,0,2,10,1,5,8,6,13,7,13,9,7,5,8,6,13,7,14,4,2,10,1,5,8,6,13,7,7,13,9,7,13,9,7,8,6,13,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"14\", \"2\", \"11\"], \"clip_start\": 434.0, \"clip_end\": 439.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,0,15,6,11,3,11,3,12,0,13,10,1,5,8,1,2,10,1,2,10,1,1,13,9,7,7,3,0,2,10,1,1,11,3,2,10,14,2,10,6,11,3,12,8,6,3,13,9,7,11,3,6,11,3,12,0,15,6,11,3,4,2,10,7,12,15,14,2,10,6,11,3,12,15,2,10,14,4,12,15,4,5,8,6,13,7,2,10,1,5,8,6,13,14,2,10,5,8,6,13,10,1,5,8,6,13,9,7,15,12,0,13,15,3,5,8,6,13,7,12,8,6,3,12,8,6,3,5,8,6,13,7,2,1,13,9,7,3,9,6,11,3,12,0,13,15,6,7,8,4,8,6,13,9,3,7,7,6,11,3,12,0,15,6,11,3,4,13,9,7,0,2,10,1,5,8,6,13,10,1,5,8,6,13,7,11,3,5,8,6,13,5,8,6,7,12,8,6,3,13,9,13,9,7,12,0,15,8,6,13,9,7,4,5,8,9,15,4,8,6,13,9,7,8,6,11,3,12,15,3,15,15,5,8,6,13,10,1,1,13,9,7,14,4,13,9,14,4,11,3,0,13,15,13,9,7,10,5,8,6,13,7,9,12,0,13,0,2,10,1,1,13,9,7,0,13,0,13,15,12,8,6,3,14,2,10,6,11,3,12,4,8,6,13,9,7,3,9,15,5,8,6,13,7,5,8,6,3,4,2,10,1,1,13,9,7,10,1,1,13,9,7,12,0,13,0,15,1,13,9,7,4,4,15,1,2,10,0,2,10,14,4,7,3,2,10,14,4,8,6,13,9,7,8,6,13,9,7,1,2,10,1,5,8,6,13,7,5,8,6,13,10,5,8,6,13,10,14,4,8,6,13,9,7,15,1,2,10,1,5,8,6,13,10,1,6,11,3,12,8,6,3,12,0,13,15,1,13,9,7,12,8,6,3,5,8,6,13,7,6,11,3,12,0,2,10,1,1,11,3,3,7,11,3,2,10,14,2,10,5,8,11,3,3,7,5,8,6,13,7,7,15,11,3,15,10,1,1,13,9,7,8,6,13,9,0,13,0,13,15,4,12,0,2,10,1,5,8,6,13,7,13,9,7,5,8,6,13,7,14,4,2,10,1,5,8,6,13,7,7,13,9,7,13,9,7,8,6,13,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"3\"], \"clip_start\": 430.0, \"clip_end\": 433.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q10_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,0,15,6,11,3,11,3,12,0,13,10,1,5,8,1,2,10,1,2,10,1,1,13,9,7,7,3,0,2,10,1,1,11,3,2,10,14,2,10,6,11,3,12,8,6,3,13,9,7,11,3,6,11,3,12,0,15,6,11,3,4,2,10,7,12,15,14,2,10,6,11,3,12,15,2,10,14,4,12,15,4,5,8,6,13,7,2,10,1,5,8,6,13,14,2,10,5,8,6,13,10,1,5,8,6,13,9,7,15,12,0,13,15,3,5,8,6,13,7,12,8,6,3,12,8,6,3,5,8,6,13,7,2,1,13,9,7,3,9,6,11,3,12,0,13,15,6,7,8,4,8,6,13,9,3,7,7,6,11,3,12,0,15,6,11,3,4,13,9,7,0,2,10,1,5,8,6,13,10,1,5,8,6,13,7,11,3,5,8,6,13,5,8,6,7,12,8,6,3,13,9,13,9,7,12,0,15,8,6,13,9,7,4,5,8,9,15,4,8,6,13,9,7,8,6,11,3,12,15,3,15,15,5,8,6,13,10,1,1,13,9,7,14,4,13,9,14,4,11,3,0,13,15,13,9,7,10,5,8,6,13,7,9,12,0,13,0,2,10,1,1,13,9,7,0,13,0,13,15,12,8,6,3,14,2,10,6,11,3,12,4,8,6,13,9,7,3,9,15,5,8,6,13,7,5,8,6,3,4,2,10,1,1,13,9,7,10,1,1,13,9,7,12,0,13,0,15,1,13,9,7,4,4,15,1,2,10,0,2,10,14,4,7,3,2,10,14,4,8,6,13,9,7,8,6,13,9,7,1,2,10,1,5,8,6,13,7,5,8,6,13,10,5,8,6,13,10,14,4,8,6,13,9,7,15,1,2,10,1,5,8,6,13,10,1,6,11,3,12,8,6,3,12,0,13,15,1,13,9,7,12,8,6,3,5,8,6,13,7,6,11,3,12,0,2,10,1,1,11,3,3,7,11,3,2,10,14,2,10,5,8,11,3,3,7,5,8,6,13,7,7,15,11,3,15,10,1,1,13,9,7,8,6,13,9,0,13,0,13,15,4,12,0,2,10,1,5,8,6,13,7,13,9,7,5,8,6,13,7,14,4,2,10,1,5,8,6,13,7,7,13,9,7,13,9,7,8,6,13,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"10\", \"1\", \"1\", \"13\"], \"clip_start\": 311.0, \"clip_end\": 316.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,0,15,6,11,3,11,3,12,0,13,10,1,5,8,1,2,10,1,2,10,1,1,13,9,7,7,3,0,2,10,1,1,11,3,2,10,14,2,10,6,11,3,12,8,6,3,13,9,7,11,3,6,11,3,12,0,15,6,11,3,4,2,10,7,12,15,14,2,10,6,11,3,12,15,2,10,14,4,12,15,4,5,8,6,13,7,2,10,1,5,8,6,13,14,2,10,5,8,6,13,10,1,5,8,6,13,9,7,15,12,0,13,15,3,5,8,6,13,7,12,8,6,3,12,8,6,3,5,8,6,13,7,2,1,13,9,7,3,9,6,11,3,12,0,13,15,6,7,8,4,8,6,13,9,3,7,7,6,11,3,12,0,15,6,11,3,4,13,9,7,0,2,10,1,5,8,6,13,10,1,5,8,6,13,7,11,3,5,8,6,13,5,8,6,7,12,8,6,3,13,9,13,9,7,12,0,15,8,6,13,9,7,4,5,8,9,15,4,8,6,13,9,7,8,6,11,3,12,15,3,15,15,5,8,6,13,10,1,1,13,9,7,14,4,13,9,14,4,11,3,0,13,15,13,9,7,10,5,8,6,13,7,9,12,0,13,0,2,10,1,1,13,9,7,0,13,0,13,15,12,8,6,3,14,2,10,6,11,3,12,4,8,6,13,9,7,3,9,15,5,8,6,13,7,5,8,6,3,4,2,10,1,1,13,9,7,10,1,1,13,9,7,12,0,13,0,15,1,13,9,7,4,4,15,1,2,10,0,2,10,14,4,7,3,2,10,14,4,8,6,13,9,7,8,6,13,9,7,1,2,10,1,5,8,6,13,7,5,8,6,13,10,5,8,6,13,10,14,4,8,6,13,9,7,15,1,2,10,1,5,8,6,13,10,1,6,11,3,12,8,6,3,12,0,13,15,1,13,9,7,12,8,6,3,5,8,6,13,7,6,11,3,12,0,2,10,1,1,11,3,3,7,11,3,2,10,14,2,10,5,8,11,3,3,7,5,8,6,13,7,7,15,11,3,15,10,1,1,13,9,7,8,6,13,9,0,13,0,13,15,4,12,0,2,10,1,5,8,6,13,7,13,9,7,5,8,6,13,7,14,4,2,10,1,5,8,6,13,7,7,13,9,7,13,9,7,8,6,13,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"11\", \"3\", \"12\", \"0\"], \"clip_start\": 158.0, \"clip_end\": 164.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q12_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,0,15,6,11,3,11,3,12,0,13,10,1,5,8,1,2,10,1,2,10,1,1,13,9,7,7,3,0,2,10,1,1,11,3,2,10,14,2,10,6,11,3,12,8,6,3,13,9,7,11,3,6,11,3,12,0,15,6,11,3,4,2,10,7,12,15,14,2,10,6,11,3,12,15,2,10,14,4,12,15,4,5,8,6,13,7,2,10,1,5,8,6,13,14,2,10,5,8,6,13,10,1,5,8,6,13,9,7,15,12,0,13,15,3,5,8,6,13,7,12,8,6,3,12,8,6,3,5,8,6,13,7,2,1,13,9,7,3,9,6,11,3,12,0,13,15,6,7,8,4,8,6,13,9,3,7,7,6,11,3,12,0,15,6,11,3,4,13,9,7,0,2,10,1,5,8,6,13,10,1,5,8,6,13,7,11,3,5,8,6,13,5,8,6,7,12,8,6,3,13,9,13,9,7,12,0,15,8,6,13,9,7,4,5,8,9,15,4,8,6,13,9,7,8,6,11,3,12,15,3,15,15,5,8,6,13,10,1,1,13,9,7,14,4,13,9,14,4,11,3,0,13,15,13,9,7,10,5,8,6,13,7,9,12,0,13,0,2,10,1,1,13,9,7,0,13,0,13,15,12,8,6,3,14,2,10,6,11,3,12,4,8,6,13,9,7,3,9,15,5,8,6,13,7,5,8,6,3,4,2,10,1,1,13,9,7,10,1,1,13,9,7,12,0,13,0,15,1,13,9,7,4,4,15,1,2,10,0,2,10,14,4,7,3,2,10,14,4,8,6,13,9,7,8,6,13,9,7,1,2,10,1,5,8,6,13,7,5,8,6,13,10,5,8,6,13,10,14,4,8,6,13,9,7,15,1,2,10,1,5,8,6,13,10,1,6,11,3,12,8,6,3,12,0,13,15,1,13,9,7,12,8,6,3,5,8,6,13,7,6,11,3,12,0,2,10,1,1,11,3,3,7,11,3,2,10,14,2,10,5,8,11,3,3,7,5,8,6,13,7,7,15,11,3,15,10,1,1,13,9,7,8,6,13,9,0,13,0,13,15,4,12,0,2,10,1,5,8,6,13,7,13,9,7,5,8,6,13,7,14,4,2,10,1,5,8,6,13,7,7,13,9,7,13,9,7,8,6,13,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"14\", \"2\", \"10\"], \"clip_start\": 283.0, \"clip_end\": 288.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q13_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,0,15,6,11,3,11,3,12,0,13,10,1,5,8,1,2,10,1,2,10,1,1,13,9,7,7,3,0,2,10,1,1,11,3,2,10,14,2,10,6,11,3,12,8,6,3,13,9,7,11,3,6,11,3,12,0,15,6,11,3,4,2,10,7,12,15,14,2,10,6,11,3,12,15,2,10,14,4,12,15,4,5,8,6,13,7,2,10,1,5,8,6,13,14,2,10,5,8,6,13,10,1,5,8,6,13,9,7,15,12,0,13,15,3,5,8,6,13,7,12,8,6,3,12,8,6,3,5,8,6,13,7,2,1,13,9,7,3,9,6,11,3,12,0,13,15,6,7,8,4,8,6,13,9,3,7,7,6,11,3,12,0,15,6,11,3,4,13,9,7,0,2,10,1,5,8,6,13,10,1,5,8,6,13,7,11,3,5,8,6,13,5,8,6,7,12,8,6,3,13,9,13,9,7,12,0,15,8,6,13,9,7,4,5,8,9,15,4,8,6,13,9,7,8,6,11,3,12,15,3,15,15,5,8,6,13,10,1,1,13,9,7,14,4,13,9,14,4,11,3,0,13,15,13,9,7,10,5,8,6,13,7,9,12,0,13,0,2,10,1,1,13,9,7,0,13,0,13,15,12,8,6,3,14,2,10,6,11,3,12,4,8,6,13,9,7,3,9,15,5,8,6,13,7,5,8,6,3,4,2,10,1,1,13,9,7,10,1,1,13,9,7,12,0,13,0,15,1,13,9,7,4,4,15,1,2,10,0,2,10,14,4,7,3,2,10,14,4,8,6,13,9,7,8,6,13,9,7,1,2,10,1,5,8,6,13,7,5,8,6,13,10,5,8,6,13,10,14,4,8,6,13,9,7,15,1,2,10,1,5,8,6,13,10,1,6,11,3,12,8,6,3,12,0,13,15,1,13,9,7,12,8,6,3,5,8,6,13,7,6,11,3,12,0,2,10,1,1,11,3,3,7,11,3,2,10,14,2,10,5,8,11,3,3,7,5,8,6,13,7,7,15,11,3,15,10,1,1,13,9,7,8,6,13,9,0,13,0,13,15,4,12,0,2,10,1,5,8,6,13,7,13,9,7,5,8,6,13,7,14,4,2,10,1,5,8,6,13,7,7,13,9,7,13,9,7,8,6,13,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"0\", \"13\", \"0\"], \"clip_start\": 264.0, \"clip_end\": 269.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q14_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,0,15,6,11,3,11,3,12,0,13,10,1,5,8,1,2,10,1,2,10,1,1,13,9,7,7,3,0,2,10,1,1,11,3,2,10,14,2,10,6,11,3,12,8,6,3,13,9,7,11,3,6,11,3,12,0,15,6,11,3,4,2,10,7,12,15,14,2,10,6,11,3,12,15,2,10,14,4,12,15,4,5,8,6,13,7,2,10,1,5,8,6,13,14,2,10,5,8,6,13,10,1,5,8,6,13,9,7,15,12,0,13,15,3,5,8,6,13,7,12,8,6,3,12,8,6,3,5,8,6,13,7,2,1,13,9,7,3,9,6,11,3,12,0,13,15,6,7,8,4,8,6,13,9,3,7,7,6,11,3,12,0,15,6,11,3,4,13,9,7,0,2,10,1,5,8,6,13,10,1,5,8,6,13,7,11,3,5,8,6,13,5,8,6,7,12,8,6,3,13,9,13,9,7,12,0,15,8,6,13,9,7,4,5,8,9,15,4,8,6,13,9,7,8,6,11,3,12,15,3,15,15,5,8,6,13,10,1,1,13,9,7,14,4,13,9,14,4,11,3,0,13,15,13,9,7,10,5,8,6,13,7,9,12,0,13,0,2,10,1,1,13,9,7,0,13,0,13,15,12,8,6,3,14,2,10,6,11,3,12,4,8,6,13,9,7,3,9,15,5,8,6,13,7,5,8,6,3,4,2,10,1,1,13,9,7,10,1,1,13,9,7,12,0,13,0,15,1,13,9,7,4,4,15,1,2,10,0,2,10,14,4,7,3,2,10,14,4,8,6,13,9,7,8,6,13,9,7,1,2,10,1,5,8,6,13,7,5,8,6,13,10,5,8,6,13,10,14,4,8,6,13,9,7,15,1,2,10,1,5,8,6,13,10,1,6,11,3,12,8,6,3,12,0,13,15,1,13,9,7,12,8,6,3,5,8,6,13,7,6,11,3,12,0,2,10,1,1,11,3,3,7,11,3,2,10,14,2,10,5,8,11,3,3,7,5,8,6,13,7,7,15,11,3,15,10,1,1,13,9,7,8,6,13,9,0,13,0,13,15,4,12,0,2,10,1,5,8,6,13,7,13,9,7,5,8,6,13,7,14,4,2,10,1,5,8,6,13,7,7,13,9,7,13,9,7,8,6,13,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"8\", \"6\", \"13\"], \"clip_start\": 447.0, \"clip_end\": 451.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,0,15,6,11,3,11,3,12,0,13,10,1,5,8,1,2,10,1,2,10,1,1,13,9,7,7,3,0,2,10,1,1,11,3,2,10,14,2,10,6,11,3,12,8,6,3,13,9,7,11,3,6,11,3,12,0,15,6,11,3,4,2,10,7,12,15,14,2,10,6,11,3,12,15,2,10,14,4,12,15,4,5,8,6,13,7,2,10,1,5,8,6,13,14,2,10,5,8,6,13,10,1,5,8,6,13,9,7,15,12,0,13,15,3,5,8,6,13,7,12,8,6,3,12,8,6,3,5,8,6,13,7,2,1,13,9,7,3,9,6,11,3,12,0,13,15,6,7,8,4,8,6,13,9,3,7,7,6,11,3,12,0,15,6,11,3,4,13,9,7,0,2,10,1,5,8,6,13,10,1,5,8,6,13,7,11,3,5,8,6,13,5,8,6,7,12,8,6,3,13,9,13,9,7,12,0,15,8,6,13,9,7,4,5,8,9,15,4,8,6,13,9,7,8,6,11,3,12,15,3,15,15,5,8,6,13,10,1,1,13,9,7,14,4,13,9,14,4,11,3,0,13,15,13,9,7,10,5,8,6,13,7,9,12,0,13,0,2,10,1,1,13,9,7,0,13,0,13,15,12,8,6,3,14,2,10,6,11,3,12,4,8,6,13,9,7,3,9,15,5,8,6,13,7,5,8,6,3,4,2,10,1,1,13,9,7,10,1,1,13,9,7,12,0,13,0,15,1,13,9,7,4,4,15,1,2,10,0,2,10,14,4,7,3,2,10,14,4,8,6,13,9,7,8,6,13,9,7,1,2,10,1,5,8,6,13,7,5,8,6,13,10,5,8,6,13,10,14,4,8,6,13,9,7,15,1,2,10,1,5,8,6,13,10,1,6,11,3,12,8,6,3,12,0,13,15,1,13,9,7,12,8,6,3,5,8,6,13,7,6,11,3,12,0,2,10,1,1,11,3,3,7,11,3,2,10,14,2,10,5,8,11,3,3,7,5,8,6,13,7,7,15,11,3,15,10,1,1,13,9,7,8,6,13,9,0,13,0,13,15,4,12,0,2,10,1,5,8,6,13,7,13,9,7,5,8,6,13,7,14,4,2,10,1,5,8,6,13,7,7,13,9,7,13,9,7,8,6,13,9", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"15\", \"5\", \"9\", \"3\", \"7\"], \"clip_start\": 349.0, \"clip_end\": 355.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,12,14,9,3,7,10,13,7,13,9,3,7,3,1,15,2,9,15,2,15,2,8,12,11,11,2,15,2,9,3,5,11,13,11,2,9,15,2,15,5,11,10,5,11,3,7,11,7,9,3,7,2,15,2,15,5,11,11,1,6,8,12,12,14,13,3,7,0,5,13,13,10,2,15,5,11,12,12,11,1,12,14,13,15,5,11,0,5,13,4,10,13,15,2,13,1,6,14,9,3,7,14,13,9,3,7,12,9,15,2,9,15,5,9,3,7,4,13,6,2,15,5,15,11,6,13,3,7,0,13,8,9,3,7,9,15,4,13,15,2,13,7,1,12,9,15,5,11,15,5,9,3,7,8,12,9,15,5,15,11,6,13,2,9,3,7,11,0,5,13,13,14,11,5,15,11,5,15,11,5,15,11,5,9,15,2,15,2,15,2,15,2,15,5,9,15,2,9,15,2,3,7,2,15,5,9,3,7,3,7,1,12,14,9,3,7,12,2,9,15,2,12,0,5,13,11,9,3,7,10,5,15,7,15,2,15,2,15,5,15,11,6,13,5,9,3,5,9,3,7,15,2,15,5,15,15,5,9,3,7,9,3,13,13,12,5,9,3,7,5,11,0,5,13,6,13,3,7,6,2,15,2,3,7,9,3,7,10,1,6,3,7,6,8,12,10,13,15,2,9,3,5,15,11,5,11,0,5,13,13,0,13,14,13,3,7,13,3,7,2,15,5,9,3,7,11,7,11,5,15,15,5,15,11,6,13,12,7,13,12,5,9,3,7,6,14,13,2,15,5,9,3,7,10,4,13,5,11,7,15,5,9,15,2,15,2,9,3,5,15,11,5,9,3,7,6,15,2,9,3,14,9,3,7,3,1,3,7,12,12,15,5,15,11,5,9,3,7,7,10,5,11,4,13,5,15,11,5,11,1,15,2,9,15,2,9,3,5,13,4,13,6,3,7,7,13,0,13,3,1,6,1,12,9,3,7,11,11,9,3,13,0,2,15,12,10,13,10,5,9,15,5,11,8,12,2,9,3,1,12,4,13,2,13,11,9,15,2,15,2,9,3,14,13,0,5,13,2,9,3,7,13,1,6,2,15,5,11,0,5,13,7,1,6,2,9,3,7,2,9,3,7,4,13,11,5,11,11,2,4", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"15\", \"5\", \"9\", \"3\"], \"clip_start\": 321.0, \"clip_end\": 326.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,12,14,9,3,7,10,13,7,13,9,3,7,3,1,15,2,9,15,2,15,2,8,12,11,11,2,15,2,9,3,5,11,13,11,2,9,15,2,15,5,11,10,5,11,3,7,11,7,9,3,7,2,15,2,15,5,11,11,1,6,8,12,12,14,13,3,7,0,5,13,13,10,2,15,5,11,12,12,11,1,12,14,13,15,5,11,0,5,13,4,10,13,15,2,13,1,6,14,9,3,7,14,13,9,3,7,12,9,15,2,9,15,5,9,3,7,4,13,6,2,15,5,15,11,6,13,3,7,0,13,8,9,3,7,9,15,4,13,15,2,13,7,1,12,9,15,5,11,15,5,9,3,7,8,12,9,15,5,15,11,6,13,2,9,3,7,11,0,5,13,13,14,11,5,15,11,5,15,11,5,15,11,5,9,15,2,15,2,15,2,15,2,15,5,9,15,2,9,15,2,3,7,2,15,5,9,3,7,3,7,1,12,14,9,3,7,12,2,9,15,2,12,0,5,13,11,9,3,7,10,5,15,7,15,2,15,2,15,5,15,11,6,13,5,9,3,5,9,3,7,15,2,15,5,15,15,5,9,3,7,9,3,13,13,12,5,9,3,7,5,11,0,5,13,6,13,3,7,6,2,15,2,3,7,9,3,7,10,1,6,3,7,6,8,12,10,13,15,2,9,3,5,15,11,5,11,0,5,13,13,0,13,14,13,3,7,13,3,7,2,15,5,9,3,7,11,7,11,5,15,15,5,15,11,6,13,12,7,13,12,5,9,3,7,6,14,13,2,15,5,9,3,7,10,4,13,5,11,7,15,5,9,15,2,15,2,9,3,5,15,11,5,9,3,7,6,15,2,9,3,14,9,3,7,3,1,3,7,12,12,15,5,15,11,5,9,3,7,7,10,5,11,4,13,5,15,11,5,11,1,15,2,9,15,2,9,3,5,13,4,13,6,3,7,7,13,0,13,3,1,6,1,12,9,3,7,11,11,9,3,13,0,2,15,12,10,13,10,5,9,15,5,11,8,12,2,9,3,1,12,4,13,2,13,11,9,15,2,15,2,9,3,14,13,0,5,13,2,9,3,7,13,1,6,2,15,5,11,0,5,13,7,1,6,2,9,3,7,2,9,3,7,4,13,11,5,11,11,2,4", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"14\", \"13\", \"0\"], \"clip_start\": 472.0, \"clip_end\": 477.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,12,14,9,3,7,10,13,7,13,9,3,7,3,1,15,2,9,15,2,15,2,8,12,11,11,2,15,2,9,3,5,11,13,11,2,9,15,2,15,5,11,10,5,11,3,7,11,7,9,3,7,2,15,2,15,5,11,11,1,6,8,12,12,14,13,3,7,0,5,13,13,10,2,15,5,11,12,12,11,1,12,14,13,15,5,11,0,5,13,4,10,13,15,2,13,1,6,14,9,3,7,14,13,9,3,7,12,9,15,2,9,15,5,9,3,7,4,13,6,2,15,5,15,11,6,13,3,7,0,13,8,9,3,7,9,15,4,13,15,2,13,7,1,12,9,15,5,11,15,5,9,3,7,8,12,9,15,5,15,11,6,13,2,9,3,7,11,0,5,13,13,14,11,5,15,11,5,15,11,5,15,11,5,9,15,2,15,2,15,2,15,2,15,5,9,15,2,9,15,2,3,7,2,15,5,9,3,7,3,7,1,12,14,9,3,7,12,2,9,15,2,12,0,5,13,11,9,3,7,10,5,15,7,15,2,15,2,15,5,15,11,6,13,5,9,3,5,9,3,7,15,2,15,5,15,15,5,9,3,7,9,3,13,13,12,5,9,3,7,5,11,0,5,13,6,13,3,7,6,2,15,2,3,7,9,3,7,10,1,6,3,7,6,8,12,10,13,15,2,9,3,5,15,11,5,11,0,5,13,13,0,13,14,13,3,7,13,3,7,2,15,5,9,3,7,11,7,11,5,15,15,5,15,11,6,13,12,7,13,12,5,9,3,7,6,14,13,2,15,5,9,3,7,10,4,13,5,11,7,15,5,9,15,2,15,2,9,3,5,15,11,5,9,3,7,6,15,2,9,3,14,9,3,7,3,1,3,7,12,12,15,5,15,11,5,9,3,7,7,10,5,11,4,13,5,15,11,5,11,1,15,2,9,15,2,9,3,5,13,4,13,6,3,7,7,13,0,13,3,1,6,1,12,9,3,7,11,11,9,3,13,0,2,15,12,10,13,10,5,9,15,5,11,8,12,2,9,3,1,12,4,13,2,13,11,9,15,2,15,2,9,3,14,13,0,5,13,2,9,3,7,13,1,6,2,15,5,11,0,5,13,7,1,6,2,9,3,7,2,9,3,7,4,13,11,5,11,11,2,4", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"8\", \"12\", \"12\", \"14\"], \"clip_start\": 61.0, \"clip_end\": 66.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,12,14,9,3,7,10,13,7,13,9,3,7,3,1,15,2,9,15,2,15,2,8,12,11,11,2,15,2,9,3,5,11,13,11,2,9,15,2,15,5,11,10,5,11,3,7,11,7,9,3,7,2,15,2,15,5,11,11,1,6,8,12,12,14,13,3,7,0,5,13,13,10,2,15,5,11,12,12,11,1,12,14,13,15,5,11,0,5,13,4,10,13,15,2,13,1,6,14,9,3,7,14,13,9,3,7,12,9,15,2,9,15,5,9,3,7,4,13,6,2,15,5,15,11,6,13,3,7,0,13,8,9,3,7,9,15,4,13,15,2,13,7,1,12,9,15,5,11,15,5,9,3,7,8,12,9,15,5,15,11,6,13,2,9,3,7,11,0,5,13,13,14,11,5,15,11,5,15,11,5,15,11,5,9,15,2,15,2,15,2,15,2,15,5,9,15,2,9,15,2,3,7,2,15,5,9,3,7,3,7,1,12,14,9,3,7,12,2,9,15,2,12,0,5,13,11,9,3,7,10,5,15,7,15,2,15,2,15,5,15,11,6,13,5,9,3,5,9,3,7,15,2,15,5,15,15,5,9,3,7,9,3,13,13,12,5,9,3,7,5,11,0,5,13,6,13,3,7,6,2,15,2,3,7,9,3,7,10,1,6,3,7,6,8,12,10,13,15,2,9,3,5,15,11,5,11,0,5,13,13,0,13,14,13,3,7,13,3,7,2,15,5,9,3,7,11,7,11,5,15,15,5,15,11,6,13,12,7,13,12,5,9,3,7,6,14,13,2,15,5,9,3,7,10,4,13,5,11,7,15,5,9,15,2,15,2,9,3,5,15,11,5,9,3,7,6,15,2,9,3,14,9,3,7,3,1,3,7,12,12,15,5,15,11,5,9,3,7,7,10,5,11,4,13,5,15,11,5,11,1,15,2,9,15,2,9,3,5,13,4,13,6,3,7,7,13,0,13,3,1,6,1,12,9,3,7,11,11,9,3,13,0,2,15,12,10,13,10,5,9,15,5,11,8,12,2,9,3,1,12,4,13,2,13,11,9,15,2,15,2,9,3,14,13,0,5,13,2,9,3,7,13,1,6,2,15,5,11,0,5,13,7,1,6,2,9,3,7,2,9,3,7,4,13,11,5,11,11,2,4", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"13\", \"13\"], \"clip_start\": 70.0, \"clip_end\": 73.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,12,14,9,3,7,10,13,7,13,9,3,7,3,1,15,2,9,15,2,15,2,8,12,11,11,2,15,2,9,3,5,11,13,11,2,9,15,2,15,5,11,10,5,11,3,7,11,7,9,3,7,2,15,2,15,5,11,11,1,6,8,12,12,14,13,3,7,0,5,13,13,10,2,15,5,11,12,12,11,1,12,14,13,15,5,11,0,5,13,4,10,13,15,2,13,1,6,14,9,3,7,14,13,9,3,7,12,9,15,2,9,15,5,9,3,7,4,13,6,2,15,5,15,11,6,13,3,7,0,13,8,9,3,7,9,15,4,13,15,2,13,7,1,12,9,15,5,11,15,5,9,3,7,8,12,9,15,5,15,11,6,13,2,9,3,7,11,0,5,13,13,14,11,5,15,11,5,15,11,5,15,11,5,9,15,2,15,2,15,2,15,2,15,5,9,15,2,9,15,2,3,7,2,15,5,9,3,7,3,7,1,12,14,9,3,7,12,2,9,15,2,12,0,5,13,11,9,3,7,10,5,15,7,15,2,15,2,15,5,15,11,6,13,5,9,3,5,9,3,7,15,2,15,5,15,15,5,9,3,7,9,3,13,13,12,5,9,3,7,5,11,0,5,13,6,13,3,7,6,2,15,2,3,7,9,3,7,10,1,6,3,7,6,8,12,10,13,15,2,9,3,5,15,11,5,11,0,5,13,13,0,13,14,13,3,7,13,3,7,2,15,5,9,3,7,11,7,11,5,15,15,5,15,11,6,13,12,7,13,12,5,9,3,7,6,14,13,2,15,5,9,3,7,10,4,13,5,11,7,15,5,9,15,2,15,2,9,3,5,15,11,5,9,3,7,6,15,2,9,3,14,9,3,7,3,1,3,7,12,12,15,5,15,11,5,9,3,7,7,10,5,11,4,13,5,15,11,5,11,1,15,2,9,15,2,9,3,5,13,4,13,6,3,7,7,13,0,13,3,1,6,1,12,9,3,7,11,11,9,3,13,0,2,15,12,10,13,10,5,9,15,5,11,8,12,2,9,3,1,12,4,13,2,13,11,9,15,2,15,2,9,3,14,13,0,5,13,2,9,3,7,13,1,6,2,15,5,11,0,5,13,7,1,6,2,9,3,7,2,9,3,7,4,13,11,5,11,11,2,4", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"3\", \"5\", \"15\", \"11\"], \"clip_start\": 367.0, \"clip_end\": 373.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,12,14,9,3,7,10,13,7,13,9,3,7,3,1,15,2,9,15,2,15,2,8,12,11,11,2,15,2,9,3,5,11,13,11,2,9,15,2,15,5,11,10,5,11,3,7,11,7,9,3,7,2,15,2,15,5,11,11,1,6,8,12,12,14,13,3,7,0,5,13,13,10,2,15,5,11,12,12,11,1,12,14,13,15,5,11,0,5,13,4,10,13,15,2,13,1,6,14,9,3,7,14,13,9,3,7,12,9,15,2,9,15,5,9,3,7,4,13,6,2,15,5,15,11,6,13,3,7,0,13,8,9,3,7,9,15,4,13,15,2,13,7,1,12,9,15,5,11,15,5,9,3,7,8,12,9,15,5,15,11,6,13,2,9,3,7,11,0,5,13,13,14,11,5,15,11,5,15,11,5,15,11,5,9,15,2,15,2,15,2,15,2,15,5,9,15,2,9,15,2,3,7,2,15,5,9,3,7,3,7,1,12,14,9,3,7,12,2,9,15,2,12,0,5,13,11,9,3,7,10,5,15,7,15,2,15,2,15,5,15,11,6,13,5,9,3,5,9,3,7,15,2,15,5,15,15,5,9,3,7,9,3,13,13,12,5,9,3,7,5,11,0,5,13,6,13,3,7,6,2,15,2,3,7,9,3,7,10,1,6,3,7,6,8,12,10,13,15,2,9,3,5,15,11,5,11,0,5,13,13,0,13,14,13,3,7,13,3,7,2,15,5,9,3,7,11,7,11,5,15,15,5,15,11,6,13,12,7,13,12,5,9,3,7,6,14,13,2,15,5,9,3,7,10,4,13,5,11,7,15,5,9,15,2,15,2,9,3,5,15,11,5,9,3,7,6,15,2,9,3,14,9,3,7,3,1,3,7,12,12,15,5,15,11,5,9,3,7,7,10,5,11,4,13,5,15,11,5,11,1,15,2,9,15,2,9,3,5,13,4,13,6,3,7,7,13,0,13,3,1,6,1,12,9,3,7,11,11,9,3,13,0,2,15,12,10,13,10,5,9,15,5,11,8,12,2,9,3,1,12,4,13,2,13,11,9,15,2,15,2,9,3,14,13,0,5,13,2,9,3,7,13,1,6,2,15,5,11,0,5,13,7,1,6,2,9,3,7,2,9,3,7,4,13,11,5,11,11,2,4", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 266.0, \"clip_end\": 269.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,12,14,9,3,7,10,13,7,13,9,3,7,3,1,15,2,9,15,2,15,2,8,12,11,11,2,15,2,9,3,5,11,13,11,2,9,15,2,15,5,11,10,5,11,3,7,11,7,9,3,7,2,15,2,15,5,11,11,1,6,8,12,12,14,13,3,7,0,5,13,13,10,2,15,5,11,12,12,11,1,12,14,13,15,5,11,0,5,13,4,10,13,15,2,13,1,6,14,9,3,7,14,13,9,3,7,12,9,15,2,9,15,5,9,3,7,4,13,6,2,15,5,15,11,6,13,3,7,0,13,8,9,3,7,9,15,4,13,15,2,13,7,1,12,9,15,5,11,15,5,9,3,7,8,12,9,15,5,15,11,6,13,2,9,3,7,11,0,5,13,13,14,11,5,15,11,5,15,11,5,15,11,5,9,15,2,15,2,15,2,15,2,15,5,9,15,2,9,15,2,3,7,2,15,5,9,3,7,3,7,1,12,14,9,3,7,12,2,9,15,2,12,0,5,13,11,9,3,7,10,5,15,7,15,2,15,2,15,5,15,11,6,13,5,9,3,5,9,3,7,15,2,15,5,15,15,5,9,3,7,9,3,13,13,12,5,9,3,7,5,11,0,5,13,6,13,3,7,6,2,15,2,3,7,9,3,7,10,1,6,3,7,6,8,12,10,13,15,2,9,3,5,15,11,5,11,0,5,13,13,0,13,14,13,3,7,13,3,7,2,15,5,9,3,7,11,7,11,5,15,15,5,15,11,6,13,12,7,13,12,5,9,3,7,6,14,13,2,15,5,9,3,7,10,4,13,5,11,7,15,5,9,15,2,15,2,9,3,5,15,11,5,9,3,7,6,15,2,9,3,14,9,3,7,3,1,3,7,12,12,15,5,15,11,5,9,3,7,7,10,5,11,4,13,5,15,11,5,11,1,15,2,9,15,2,9,3,5,13,4,13,6,3,7,7,13,0,13,3,1,6,1,12,9,3,7,11,11,9,3,13,0,2,15,12,10,13,10,5,9,15,5,11,8,12,2,9,3,1,12,4,13,2,13,11,9,15,2,15,2,9,3,14,13,0,5,13,2,9,3,7,13,1,6,2,15,5,11,0,5,13,7,1,6,2,9,3,7,2,9,3,7,4,13,11,5,11,11,2,4", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"3\", \"7\", \"0\", \"13\"], \"clip_start\": 126.0, \"clip_end\": 132.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,12,14,9,3,7,10,13,7,13,9,3,7,3,1,15,2,9,15,2,15,2,8,12,11,11,2,15,2,9,3,5,11,13,11,2,9,15,2,15,5,11,10,5,11,3,7,11,7,9,3,7,2,15,2,15,5,11,11,1,6,8,12,12,14,13,3,7,0,5,13,13,10,2,15,5,11,12,12,11,1,12,14,13,15,5,11,0,5,13,4,10,13,15,2,13,1,6,14,9,3,7,14,13,9,3,7,12,9,15,2,9,15,5,9,3,7,4,13,6,2,15,5,15,11,6,13,3,7,0,13,8,9,3,7,9,15,4,13,15,2,13,7,1,12,9,15,5,11,15,5,9,3,7,8,12,9,15,5,15,11,6,13,2,9,3,7,11,0,5,13,13,14,11,5,15,11,5,15,11,5,15,11,5,9,15,2,15,2,15,2,15,2,15,5,9,15,2,9,15,2,3,7,2,15,5,9,3,7,3,7,1,12,14,9,3,7,12,2,9,15,2,12,0,5,13,11,9,3,7,10,5,15,7,15,2,15,2,15,5,15,11,6,13,5,9,3,5,9,3,7,15,2,15,5,15,15,5,9,3,7,9,3,13,13,12,5,9,3,7,5,11,0,5,13,6,13,3,7,6,2,15,2,3,7,9,3,7,10,1,6,3,7,6,8,12,10,13,15,2,9,3,5,15,11,5,11,0,5,13,13,0,13,14,13,3,7,13,3,7,2,15,5,9,3,7,11,7,11,5,15,15,5,15,11,6,13,12,7,13,12,5,9,3,7,6,14,13,2,15,5,9,3,7,10,4,13,5,11,7,15,5,9,15,2,15,2,9,3,5,15,11,5,9,3,7,6,15,2,9,3,14,9,3,7,3,1,3,7,12,12,15,5,15,11,5,9,3,7,7,10,5,11,4,13,5,15,11,5,11,1,15,2,9,15,2,9,3,5,13,4,13,6,3,7,7,13,0,13,3,1,6,1,12,9,3,7,11,11,9,3,13,0,2,15,12,10,13,10,5,9,15,5,11,8,12,2,9,3,1,12,4,13,2,13,11,9,15,2,15,2,9,3,14,13,0,5,13,2,9,3,7,13,1,6,2,15,5,11,0,5,13,7,1,6,2,9,3,7,2,9,3,7,4,13,11,5,11,11,2,4", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"5\", \"15\"], \"clip_start\": 404.0, \"clip_end\": 408.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,12,14,9,3,7,10,13,7,13,9,3,7,3,1,15,2,9,15,2,15,2,8,12,11,11,2,15,2,9,3,5,11,13,11,2,9,15,2,15,5,11,10,5,11,3,7,11,7,9,3,7,2,15,2,15,5,11,11,1,6,8,12,12,14,13,3,7,0,5,13,13,10,2,15,5,11,12,12,11,1,12,14,13,15,5,11,0,5,13,4,10,13,15,2,13,1,6,14,9,3,7,14,13,9,3,7,12,9,15,2,9,15,5,9,3,7,4,13,6,2,15,5,15,11,6,13,3,7,0,13,8,9,3,7,9,15,4,13,15,2,13,7,1,12,9,15,5,11,15,5,9,3,7,8,12,9,15,5,15,11,6,13,2,9,3,7,11,0,5,13,13,14,11,5,15,11,5,15,11,5,15,11,5,9,15,2,15,2,15,2,15,2,15,5,9,15,2,9,15,2,3,7,2,15,5,9,3,7,3,7,1,12,14,9,3,7,12,2,9,15,2,12,0,5,13,11,9,3,7,10,5,15,7,15,2,15,2,15,5,15,11,6,13,5,9,3,5,9,3,7,15,2,15,5,15,15,5,9,3,7,9,3,13,13,12,5,9,3,7,5,11,0,5,13,6,13,3,7,6,2,15,2,3,7,9,3,7,10,1,6,3,7,6,8,12,10,13,15,2,9,3,5,15,11,5,11,0,5,13,13,0,13,14,13,3,7,13,3,7,2,15,5,9,3,7,11,7,11,5,15,15,5,15,11,6,13,12,7,13,12,5,9,3,7,6,14,13,2,15,5,9,3,7,10,4,13,5,11,7,15,5,9,15,2,15,2,9,3,5,15,11,5,9,3,7,6,15,2,9,3,14,9,3,7,3,1,3,7,12,12,15,5,15,11,5,9,3,7,7,10,5,11,4,13,5,15,11,5,11,1,15,2,9,15,2,9,3,5,13,4,13,6,3,7,7,13,0,13,3,1,6,1,12,9,3,7,11,11,9,3,13,0,2,15,12,10,13,10,5,9,15,5,11,8,12,2,9,3,1,12,4,13,2,13,11,9,15,2,15,2,9,3,14,13,0,5,13,2,9,3,7,13,1,6,2,15,5,11,0,5,13,7,1,6,2,9,3,7,2,9,3,7,4,13,11,5,11,11,2,4", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"13\", \"6\", \"2\"], \"clip_start\": 118.0, \"clip_end\": 122.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,12,14,9,3,7,10,13,7,13,9,3,7,3,1,15,2,9,15,2,15,2,8,12,11,11,2,15,2,9,3,5,11,13,11,2,9,15,2,15,5,11,10,5,11,3,7,11,7,9,3,7,2,15,2,15,5,11,11,1,6,8,12,12,14,13,3,7,0,5,13,13,10,2,15,5,11,12,12,11,1,12,14,13,15,5,11,0,5,13,4,10,13,15,2,13,1,6,14,9,3,7,14,13,9,3,7,12,9,15,2,9,15,5,9,3,7,4,13,6,2,15,5,15,11,6,13,3,7,0,13,8,9,3,7,9,15,4,13,15,2,13,7,1,12,9,15,5,11,15,5,9,3,7,8,12,9,15,5,15,11,6,13,2,9,3,7,11,0,5,13,13,14,11,5,15,11,5,15,11,5,15,11,5,9,15,2,15,2,15,2,15,2,15,5,9,15,2,9,15,2,3,7,2,15,5,9,3,7,3,7,1,12,14,9,3,7,12,2,9,15,2,12,0,5,13,11,9,3,7,10,5,15,7,15,2,15,2,15,5,15,11,6,13,5,9,3,5,9,3,7,15,2,15,5,15,15,5,9,3,7,9,3,13,13,12,5,9,3,7,5,11,0,5,13,6,13,3,7,6,2,15,2,3,7,9,3,7,10,1,6,3,7,6,8,12,10,13,15,2,9,3,5,15,11,5,11,0,5,13,13,0,13,14,13,3,7,13,3,7,2,15,5,9,3,7,11,7,11,5,15,15,5,15,11,6,13,12,7,13,12,5,9,3,7,6,14,13,2,15,5,9,3,7,10,4,13,5,11,7,15,5,9,15,2,15,2,9,3,5,15,11,5,9,3,7,6,15,2,9,3,14,9,3,7,3,1,3,7,12,12,15,5,15,11,5,9,3,7,7,10,5,11,4,13,5,15,11,5,11,1,15,2,9,15,2,9,3,5,13,4,13,6,3,7,7,13,0,13,3,1,6,1,12,9,3,7,11,11,9,3,13,0,2,15,12,10,13,10,5,9,15,5,11,8,12,2,9,3,1,12,4,13,2,13,11,9,15,2,15,2,9,3,14,13,0,5,13,2,9,3,7,13,1,6,2,15,5,11,0,5,13,7,1,6,2,9,3,7,2,9,3,7,4,13,11,5,11,11,2,4", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"3\", \"7\"], \"clip_start\": 479.0, \"clip_end\": 483.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,12,14,9,3,7,10,13,7,13,9,3,7,3,1,15,2,9,15,2,15,2,8,12,11,11,2,15,2,9,3,5,11,13,11,2,9,15,2,15,5,11,10,5,11,3,7,11,7,9,3,7,2,15,2,15,5,11,11,1,6,8,12,12,14,13,3,7,0,5,13,13,10,2,15,5,11,12,12,11,1,12,14,13,15,5,11,0,5,13,4,10,13,15,2,13,1,6,14,9,3,7,14,13,9,3,7,12,9,15,2,9,15,5,9,3,7,4,13,6,2,15,5,15,11,6,13,3,7,0,13,8,9,3,7,9,15,4,13,15,2,13,7,1,12,9,15,5,11,15,5,9,3,7,8,12,9,15,5,15,11,6,13,2,9,3,7,11,0,5,13,13,14,11,5,15,11,5,15,11,5,15,11,5,9,15,2,15,2,15,2,15,2,15,5,9,15,2,9,15,2,3,7,2,15,5,9,3,7,3,7,1,12,14,9,3,7,12,2,9,15,2,12,0,5,13,11,9,3,7,10,5,15,7,15,2,15,2,15,5,15,11,6,13,5,9,3,5,9,3,7,15,2,15,5,15,15,5,9,3,7,9,3,13,13,12,5,9,3,7,5,11,0,5,13,6,13,3,7,6,2,15,2,3,7,9,3,7,10,1,6,3,7,6,8,12,10,13,15,2,9,3,5,15,11,5,11,0,5,13,13,0,13,14,13,3,7,13,3,7,2,15,5,9,3,7,11,7,11,5,15,15,5,15,11,6,13,12,7,13,12,5,9,3,7,6,14,13,2,15,5,9,3,7,10,4,13,5,11,7,15,5,9,15,2,15,2,9,3,5,15,11,5,9,3,7,6,15,2,9,3,14,9,3,7,3,1,3,7,12,12,15,5,15,11,5,9,3,7,7,10,5,11,4,13,5,15,11,5,11,1,15,2,9,15,2,9,3,5,13,4,13,6,3,7,7,13,0,13,3,1,6,1,12,9,3,7,11,11,9,3,13,0,2,15,12,10,13,10,5,9,15,5,11,8,12,2,9,3,1,12,4,13,2,13,11,9,15,2,15,2,9,3,14,13,0,5,13,2,9,3,7,13,1,6,2,15,5,11,0,5,13,7,1,6,2,9,3,7,2,9,3,7,4,13,11,5,11,11,2,4", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 34.0, \"clip_end\": 40.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,12,14,9,3,7,10,13,7,13,9,3,7,3,1,15,2,9,15,2,15,2,8,12,11,11,2,15,2,9,3,5,11,13,11,2,9,15,2,15,5,11,10,5,11,3,7,11,7,9,3,7,2,15,2,15,5,11,11,1,6,8,12,12,14,13,3,7,0,5,13,13,10,2,15,5,11,12,12,11,1,12,14,13,15,5,11,0,5,13,4,10,13,15,2,13,1,6,14,9,3,7,14,13,9,3,7,12,9,15,2,9,15,5,9,3,7,4,13,6,2,15,5,15,11,6,13,3,7,0,13,8,9,3,7,9,15,4,13,15,2,13,7,1,12,9,15,5,11,15,5,9,3,7,8,12,9,15,5,15,11,6,13,2,9,3,7,11,0,5,13,13,14,11,5,15,11,5,15,11,5,15,11,5,9,15,2,15,2,15,2,15,2,15,5,9,15,2,9,15,2,3,7,2,15,5,9,3,7,3,7,1,12,14,9,3,7,12,2,9,15,2,12,0,5,13,11,9,3,7,10,5,15,7,15,2,15,2,15,5,15,11,6,13,5,9,3,5,9,3,7,15,2,15,5,15,15,5,9,3,7,9,3,13,13,12,5,9,3,7,5,11,0,5,13,6,13,3,7,6,2,15,2,3,7,9,3,7,10,1,6,3,7,6,8,12,10,13,15,2,9,3,5,15,11,5,11,0,5,13,13,0,13,14,13,3,7,13,3,7,2,15,5,9,3,7,11,7,11,5,15,15,5,15,11,6,13,12,7,13,12,5,9,3,7,6,14,13,2,15,5,9,3,7,10,4,13,5,11,7,15,5,9,15,2,15,2,9,3,5,15,11,5,9,3,7,6,15,2,9,3,14,9,3,7,3,1,3,7,12,12,15,5,15,11,5,9,3,7,7,10,5,11,4,13,5,15,11,5,11,1,15,2,9,15,2,9,3,5,13,4,13,6,3,7,7,13,0,13,3,1,6,1,12,9,3,7,11,11,9,3,13,0,2,15,12,10,13,10,5,9,15,5,11,8,12,2,9,3,1,12,4,13,2,13,11,9,15,2,15,2,9,3,14,13,0,5,13,2,9,3,7,13,1,6,2,15,5,11,0,5,13,7,1,6,2,9,3,7,2,9,3,7,4,13,11,5,11,11,2,4", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"15\", \"2\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,12,14,9,3,7,10,13,7,13,9,3,7,3,1,15,2,9,15,2,15,2,8,12,11,11,2,15,2,9,3,5,11,13,11,2,9,15,2,15,5,11,10,5,11,3,7,11,7,9,3,7,2,15,2,15,5,11,11,1,6,8,12,12,14,13,3,7,0,5,13,13,10,2,15,5,11,12,12,11,1,12,14,13,15,5,11,0,5,13,4,10,13,15,2,13,1,6,14,9,3,7,14,13,9,3,7,12,9,15,2,9,15,5,9,3,7,4,13,6,2,15,5,15,11,6,13,3,7,0,13,8,9,3,7,9,15,4,13,15,2,13,7,1,12,9,15,5,11,15,5,9,3,7,8,12,9,15,5,15,11,6,13,2,9,3,7,11,0,5,13,13,14,11,5,15,11,5,15,11,5,15,11,5,9,15,2,15,2,15,2,15,2,15,5,9,15,2,9,15,2,3,7,2,15,5,9,3,7,3,7,1,12,14,9,3,7,12,2,9,15,2,12,0,5,13,11,9,3,7,10,5,15,7,15,2,15,2,15,5,15,11,6,13,5,9,3,5,9,3,7,15,2,15,5,15,15,5,9,3,7,9,3,13,13,12,5,9,3,7,5,11,0,5,13,6,13,3,7,6,2,15,2,3,7,9,3,7,10,1,6,3,7,6,8,12,10,13,15,2,9,3,5,15,11,5,11,0,5,13,13,0,13,14,13,3,7,13,3,7,2,15,5,9,3,7,11,7,11,5,15,15,5,15,11,6,13,12,7,13,12,5,9,3,7,6,14,13,2,15,5,9,3,7,10,4,13,5,11,7,15,5,9,15,2,15,2,9,3,5,15,11,5,9,3,7,6,15,2,9,3,14,9,3,7,3,1,3,7,12,12,15,5,15,11,5,9,3,7,7,10,5,11,4,13,5,15,11,5,11,1,15,2,9,15,2,9,3,5,13,4,13,6,3,7,7,13,0,13,3,1,6,1,12,9,3,7,11,11,9,3,13,0,2,15,12,10,13,10,5,9,15,5,11,8,12,2,9,3,1,12,4,13,2,13,11,9,15,2,15,2,9,3,14,13,0,5,13,2,9,3,7,13,1,6,2,15,5,11,0,5,13,7,1,6,2,9,3,7,2,9,3,7,4,13,11,5,11,11,2,4", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 504.0, \"clip_end\": 507.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,12,14,9,3,7,10,13,7,13,9,3,7,3,1,15,2,9,15,2,15,2,8,12,11,11,2,15,2,9,3,5,11,13,11,2,9,15,2,15,5,11,10,5,11,3,7,11,7,9,3,7,2,15,2,15,5,11,11,1,6,8,12,12,14,13,3,7,0,5,13,13,10,2,15,5,11,12,12,11,1,12,14,13,15,5,11,0,5,13,4,10,13,15,2,13,1,6,14,9,3,7,14,13,9,3,7,12,9,15,2,9,15,5,9,3,7,4,13,6,2,15,5,15,11,6,13,3,7,0,13,8,9,3,7,9,15,4,13,15,2,13,7,1,12,9,15,5,11,15,5,9,3,7,8,12,9,15,5,15,11,6,13,2,9,3,7,11,0,5,13,13,14,11,5,15,11,5,15,11,5,15,11,5,9,15,2,15,2,15,2,15,2,15,5,9,15,2,9,15,2,3,7,2,15,5,9,3,7,3,7,1,12,14,9,3,7,12,2,9,15,2,12,0,5,13,11,9,3,7,10,5,15,7,15,2,15,2,15,5,15,11,6,13,5,9,3,5,9,3,7,15,2,15,5,15,15,5,9,3,7,9,3,13,13,12,5,9,3,7,5,11,0,5,13,6,13,3,7,6,2,15,2,3,7,9,3,7,10,1,6,3,7,6,8,12,10,13,15,2,9,3,5,15,11,5,11,0,5,13,13,0,13,14,13,3,7,13,3,7,2,15,5,9,3,7,11,7,11,5,15,15,5,15,11,6,13,12,7,13,12,5,9,3,7,6,14,13,2,15,5,9,3,7,10,4,13,5,11,7,15,5,9,15,2,15,2,9,3,5,15,11,5,9,3,7,6,15,2,9,3,14,9,3,7,3,1,3,7,12,12,15,5,15,11,5,9,3,7,7,10,5,11,4,13,5,15,11,5,11,1,15,2,9,15,2,9,3,5,13,4,13,6,3,7,7,13,0,13,3,1,6,1,12,9,3,7,11,11,9,3,13,0,2,15,12,10,13,10,5,9,15,5,11,8,12,2,9,3,1,12,4,13,2,13,11,9,15,2,15,2,9,3,14,13,0,5,13,2,9,3,7,13,1,6,2,15,5,11,0,5,13,7,1,6,2,9,3,7,2,9,3,7,4,13,11,5,11,11,2,4", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"2\", \"9\"], \"clip_start\": 494.0, \"clip_end\": 498.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,12,14,9,3,7,10,13,7,13,9,3,7,3,1,15,2,9,15,2,15,2,8,12,11,11,2,15,2,9,3,5,11,13,11,2,9,15,2,15,5,11,10,5,11,3,7,11,7,9,3,7,2,15,2,15,5,11,11,1,6,8,12,12,14,13,3,7,0,5,13,13,10,2,15,5,11,12,12,11,1,12,14,13,15,5,11,0,5,13,4,10,13,15,2,13,1,6,14,9,3,7,14,13,9,3,7,12,9,15,2,9,15,5,9,3,7,4,13,6,2,15,5,15,11,6,13,3,7,0,13,8,9,3,7,9,15,4,13,15,2,13,7,1,12,9,15,5,11,15,5,9,3,7,8,12,9,15,5,15,11,6,13,2,9,3,7,11,0,5,13,13,14,11,5,15,11,5,15,11,5,15,11,5,9,15,2,15,2,15,2,15,2,15,5,9,15,2,9,15,2,3,7,2,15,5,9,3,7,3,7,1,12,14,9,3,7,12,2,9,15,2,12,0,5,13,11,9,3,7,10,5,15,7,15,2,15,2,15,5,15,11,6,13,5,9,3,5,9,3,7,15,2,15,5,15,15,5,9,3,7,9,3,13,13,12,5,9,3,7,5,11,0,5,13,6,13,3,7,6,2,15,2,3,7,9,3,7,10,1,6,3,7,6,8,12,10,13,15,2,9,3,5,15,11,5,11,0,5,13,13,0,13,14,13,3,7,13,3,7,2,15,5,9,3,7,11,7,11,5,15,15,5,15,11,6,13,12,7,13,12,5,9,3,7,6,14,13,2,15,5,9,3,7,10,4,13,5,11,7,15,5,9,15,2,15,2,9,3,5,15,11,5,9,3,7,6,15,2,9,3,14,9,3,7,3,1,3,7,12,12,15,5,15,11,5,9,3,7,7,10,5,11,4,13,5,15,11,5,11,1,15,2,9,15,2,9,3,5,13,4,13,6,3,7,7,13,0,13,3,1,6,1,12,9,3,7,11,11,9,3,13,0,2,15,12,10,13,10,5,9,15,5,11,8,12,2,9,3,1,12,4,13,2,13,11,9,15,2,15,2,9,3,14,13,0,5,13,2,9,3,7,13,1,6,2,15,5,11,0,5,13,7,1,6,2,9,3,7,2,9,3,7,4,13,11,5,11,11,2,4", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 160.0, \"clip_end\": 166.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,12,12,14,9,3,7,10,13,7,13,9,3,7,3,1,15,2,9,15,2,15,2,8,12,11,11,2,15,2,9,3,5,11,13,11,2,9,15,2,15,5,11,10,5,11,3,7,11,7,9,3,7,2,15,2,15,5,11,11,1,6,8,12,12,14,13,3,7,0,5,13,13,10,2,15,5,11,12,12,11,1,12,14,13,15,5,11,0,5,13,4,10,13,15,2,13,1,6,14,9,3,7,14,13,9,3,7,12,9,15,2,9,15,5,9,3,7,4,13,6,2,15,5,15,11,6,13,3,7,0,13,8,9,3,7,9,15,4,13,15,2,13,7,1,12,9,15,5,11,15,5,9,3,7,8,12,9,15,5,15,11,6,13,2,9,3,7,11,0,5,13,13,14,11,5,15,11,5,15,11,5,15,11,5,9,15,2,15,2,15,2,15,2,15,5,9,15,2,9,15,2,3,7,2,15,5,9,3,7,3,7,1,12,14,9,3,7,12,2,9,15,2,12,0,5,13,11,9,3,7,10,5,15,7,15,2,15,2,15,5,15,11,6,13,5,9,3,5,9,3,7,15,2,15,5,15,15,5,9,3,7,9,3,13,13,12,5,9,3,7,5,11,0,5,13,6,13,3,7,6,2,15,2,3,7,9,3,7,10,1,6,3,7,6,8,12,10,13,15,2,9,3,5,15,11,5,11,0,5,13,13,0,13,14,13,3,7,13,3,7,2,15,5,9,3,7,11,7,11,5,15,15,5,15,11,6,13,12,7,13,12,5,9,3,7,6,14,13,2,15,5,9,3,7,10,4,13,5,11,7,15,5,9,15,2,15,2,9,3,5,15,11,5,9,3,7,6,15,2,9,3,14,9,3,7,3,1,3,7,12,12,15,5,15,11,5,9,3,7,7,10,5,11,4,13,5,15,11,5,11,1,15,2,9,15,2,9,3,5,13,4,13,6,3,7,7,13,0,13,3,1,6,1,12,9,3,7,11,11,9,3,13,0,2,15,12,10,13,10,5,9,15,5,11,8,12,2,9,3,1,12,4,13,2,13,11,9,15,2,15,2,9,3,14,13,0,5,13,2,9,3,7,13,1,6,2,15,5,11,0,5,13,7,1,6,2,9,3,7,2,9,3,7,4,13,11,5,11,11,2,4", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"1\", \"9\", \"7\", \"1\"], \"clip_start\": 220.0, \"clip_end\": 226.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,4,7,4,4,7,4,8,15,14,0,4,15,14,15,14,0,4,4,15,14,15,14,0,4,4,7,4,3,6,6,13,4,0,4,15,14,15,14,0,4,4,0,4,13,4,7,4,8,14,7,4,12,3,6,10,12,13,4,0,4,15,14,15,14,0,4,4,9,6,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,12,11,0,4,15,14,15,14,0,4,4,9,10,12,13,4,0,4,4,11,9,6,3,6,15,14,0,4,9,6,5,15,14,0,4,15,14,15,14,0,4,4,1,5,15,14,0,4,4,7,4,9,10,12,13,14,6,12,11,9,14,6,14,6,7,4,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,10,12,13,4,7,4,1,9,7,1,9,7,9,6,0,4,15,14,15,14,0,4,15,14,15,13,4,7,4,3,6,14,7,4,11,15,14,0,4,4,11,1,9,7,1,9,7,3,6,3,6,3,6,14,9,10,12,13,4,8,15,14,0,4,4,6,12,11,4,3,6,5,4,7,15,14,0,4,4,15,14,15,14,0,4,4,15,14,15,14,0,4,15,14,15,14,0,4,4,14,7,4,2,1,9,7,9,6,9,10,12,13,4,0,4,4,10,12,5,15,14,0,4,1,9,7,3,6,12,11,12,11,13,4,0,4,15,14,15,14,0,4,15,14,15,14,0,4,9,10,12,5,15,14,0,4,4,11,12,11,0,4,4,3,6,10,12,13,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,6,12,11,1,9,7,3,6,6,11,3,6,15,14,0,4,4,0,15,14,0,4,15,10,12,13,4,7,4,1,5,13,13,4,7,4,14,7,4,6,4,2,13,4,7,4,0,4,4,2,0,4,15,14,15,14,0,4,4,3,6,1,5,15,14,6,4,12,11,10,12,13,4,0,4,15,14,15,14,0,4,4,14,7,4,13,4,0,4,4,14,6,2,8,15,14,0,4,4,4,6,12,15,14,0,4,4,5,15,14,0,4,4,12,3,2,15,14,0,4,4,3,6,9,10,12,13,4,0,4,15,14,15,14,0,11,2,2,6,14,9,6,0,4,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"3\", \"6\"], \"clip_start\": 51.0, \"clip_end\": 55.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,4,7,4,4,7,4,8,15,14,0,4,15,14,15,14,0,4,4,15,14,15,14,0,4,4,7,4,3,6,6,13,4,0,4,15,14,15,14,0,4,4,0,4,13,4,7,4,8,14,7,4,12,3,6,10,12,13,4,0,4,15,14,15,14,0,4,4,9,6,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,12,11,0,4,15,14,15,14,0,4,4,9,10,12,13,4,0,4,4,11,9,6,3,6,15,14,0,4,9,6,5,15,14,0,4,15,14,15,14,0,4,4,1,5,15,14,0,4,4,7,4,9,10,12,13,14,6,12,11,9,14,6,14,6,7,4,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,10,12,13,4,7,4,1,9,7,1,9,7,9,6,0,4,15,14,15,14,0,4,15,14,15,13,4,7,4,3,6,14,7,4,11,15,14,0,4,4,11,1,9,7,1,9,7,3,6,3,6,3,6,14,9,10,12,13,4,8,15,14,0,4,4,6,12,11,4,3,6,5,4,7,15,14,0,4,4,15,14,15,14,0,4,4,15,14,15,14,0,4,15,14,15,14,0,4,4,14,7,4,2,1,9,7,9,6,9,10,12,13,4,0,4,4,10,12,5,15,14,0,4,1,9,7,3,6,12,11,12,11,13,4,0,4,15,14,15,14,0,4,15,14,15,14,0,4,9,10,12,5,15,14,0,4,4,11,12,11,0,4,4,3,6,10,12,13,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,6,12,11,1,9,7,3,6,6,11,3,6,15,14,0,4,4,0,15,14,0,4,15,10,12,13,4,7,4,1,5,13,13,4,7,4,14,7,4,6,4,2,13,4,7,4,0,4,4,2,0,4,15,14,15,14,0,4,4,3,6,1,5,15,14,6,4,12,11,10,12,13,4,0,4,15,14,15,14,0,4,4,14,7,4,13,4,0,4,4,14,6,2,8,15,14,0,4,4,4,6,12,15,14,0,4,4,5,15,14,0,4,4,12,3,2,15,14,0,4,4,3,6,9,10,12,13,4,0,4,15,14,15,14,0,11,2,2,6,14,9,6,0,4,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"9\", \"6\", \"0\"], \"clip_start\": 191.0, \"clip_end\": 196.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,4,7,4,4,7,4,8,15,14,0,4,15,14,15,14,0,4,4,15,14,15,14,0,4,4,7,4,3,6,6,13,4,0,4,15,14,15,14,0,4,4,0,4,13,4,7,4,8,14,7,4,12,3,6,10,12,13,4,0,4,15,14,15,14,0,4,4,9,6,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,12,11,0,4,15,14,15,14,0,4,4,9,10,12,13,4,0,4,4,11,9,6,3,6,15,14,0,4,9,6,5,15,14,0,4,15,14,15,14,0,4,4,1,5,15,14,0,4,4,7,4,9,10,12,13,14,6,12,11,9,14,6,14,6,7,4,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,10,12,13,4,7,4,1,9,7,1,9,7,9,6,0,4,15,14,15,14,0,4,15,14,15,13,4,7,4,3,6,14,7,4,11,15,14,0,4,4,11,1,9,7,1,9,7,3,6,3,6,3,6,14,9,10,12,13,4,8,15,14,0,4,4,6,12,11,4,3,6,5,4,7,15,14,0,4,4,15,14,15,14,0,4,4,15,14,15,14,0,4,15,14,15,14,0,4,4,14,7,4,2,1,9,7,9,6,9,10,12,13,4,0,4,4,10,12,5,15,14,0,4,1,9,7,3,6,12,11,12,11,13,4,0,4,15,14,15,14,0,4,15,14,15,14,0,4,9,10,12,5,15,14,0,4,4,11,12,11,0,4,4,3,6,10,12,13,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,6,12,11,1,9,7,3,6,6,11,3,6,15,14,0,4,4,0,15,14,0,4,15,10,12,13,4,7,4,1,5,13,13,4,7,4,14,7,4,6,4,2,13,4,7,4,0,4,4,2,0,4,15,14,15,14,0,4,4,3,6,1,5,15,14,6,4,12,11,10,12,13,4,0,4,15,14,15,14,0,4,4,14,7,4,13,4,0,4,4,14,6,2,8,15,14,0,4,4,4,6,12,15,14,0,4,4,5,15,14,0,4,4,12,3,2,15,14,0,4,4,3,6,9,10,12,13,4,0,4,15,14,15,14,0,11,2,2,6,14,9,6,0,4,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 433.0, \"clip_end\": 438.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,4,7,4,4,7,4,8,15,14,0,4,15,14,15,14,0,4,4,15,14,15,14,0,4,4,7,4,3,6,6,13,4,0,4,15,14,15,14,0,4,4,0,4,13,4,7,4,8,14,7,4,12,3,6,10,12,13,4,0,4,15,14,15,14,0,4,4,9,6,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,12,11,0,4,15,14,15,14,0,4,4,9,10,12,13,4,0,4,4,11,9,6,3,6,15,14,0,4,9,6,5,15,14,0,4,15,14,15,14,0,4,4,1,5,15,14,0,4,4,7,4,9,10,12,13,14,6,12,11,9,14,6,14,6,7,4,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,10,12,13,4,7,4,1,9,7,1,9,7,9,6,0,4,15,14,15,14,0,4,15,14,15,13,4,7,4,3,6,14,7,4,11,15,14,0,4,4,11,1,9,7,1,9,7,3,6,3,6,3,6,14,9,10,12,13,4,8,15,14,0,4,4,6,12,11,4,3,6,5,4,7,15,14,0,4,4,15,14,15,14,0,4,4,15,14,15,14,0,4,15,14,15,14,0,4,4,14,7,4,2,1,9,7,9,6,9,10,12,13,4,0,4,4,10,12,5,15,14,0,4,1,9,7,3,6,12,11,12,11,13,4,0,4,15,14,15,14,0,4,15,14,15,14,0,4,9,10,12,5,15,14,0,4,4,11,12,11,0,4,4,3,6,10,12,13,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,6,12,11,1,9,7,3,6,6,11,3,6,15,14,0,4,4,0,15,14,0,4,15,10,12,13,4,7,4,1,5,13,13,4,7,4,14,7,4,6,4,2,13,4,7,4,0,4,4,2,0,4,15,14,15,14,0,4,4,3,6,1,5,15,14,6,4,12,11,10,12,13,4,0,4,15,14,15,14,0,4,4,14,7,4,13,4,0,4,4,14,6,2,8,15,14,0,4,4,4,6,12,15,14,0,4,4,5,15,14,0,4,4,12,3,2,15,14,0,4,4,3,6,9,10,12,13,4,0,4,15,14,15,14,0,11,2,2,6,14,9,6,0,4,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"7\"], \"clip_start\": 399.0, \"clip_end\": 402.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,4,7,4,4,7,4,8,15,14,0,4,15,14,15,14,0,4,4,15,14,15,14,0,4,4,7,4,3,6,6,13,4,0,4,15,14,15,14,0,4,4,0,4,13,4,7,4,8,14,7,4,12,3,6,10,12,13,4,0,4,15,14,15,14,0,4,4,9,6,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,12,11,0,4,15,14,15,14,0,4,4,9,10,12,13,4,0,4,4,11,9,6,3,6,15,14,0,4,9,6,5,15,14,0,4,15,14,15,14,0,4,4,1,5,15,14,0,4,4,7,4,9,10,12,13,14,6,12,11,9,14,6,14,6,7,4,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,10,12,13,4,7,4,1,9,7,1,9,7,9,6,0,4,15,14,15,14,0,4,15,14,15,13,4,7,4,3,6,14,7,4,11,15,14,0,4,4,11,1,9,7,1,9,7,3,6,3,6,3,6,14,9,10,12,13,4,8,15,14,0,4,4,6,12,11,4,3,6,5,4,7,15,14,0,4,4,15,14,15,14,0,4,4,15,14,15,14,0,4,15,14,15,14,0,4,4,14,7,4,2,1,9,7,9,6,9,10,12,13,4,0,4,4,10,12,5,15,14,0,4,1,9,7,3,6,12,11,12,11,13,4,0,4,15,14,15,14,0,4,15,14,15,14,0,4,9,10,12,5,15,14,0,4,4,11,12,11,0,4,4,3,6,10,12,13,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,6,12,11,1,9,7,3,6,6,11,3,6,15,14,0,4,4,0,15,14,0,4,15,10,12,13,4,7,4,1,5,13,13,4,7,4,14,7,4,6,4,2,13,4,7,4,0,4,4,2,0,4,15,14,15,14,0,4,4,3,6,1,5,15,14,6,4,12,11,10,12,13,4,0,4,15,14,15,14,0,4,4,14,7,4,13,4,0,4,4,14,6,2,8,15,14,0,4,4,4,6,12,15,14,0,4,4,5,15,14,0,4,4,12,3,2,15,14,0,4,4,3,6,9,10,12,13,4,0,4,15,14,15,14,0,11,2,2,6,14,9,6,0,4,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"14\", \"15\", \"14\"], \"clip_start\": 77.0, \"clip_end\": 82.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,4,7,4,4,7,4,8,15,14,0,4,15,14,15,14,0,4,4,15,14,15,14,0,4,4,7,4,3,6,6,13,4,0,4,15,14,15,14,0,4,4,0,4,13,4,7,4,8,14,7,4,12,3,6,10,12,13,4,0,4,15,14,15,14,0,4,4,9,6,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,12,11,0,4,15,14,15,14,0,4,4,9,10,12,13,4,0,4,4,11,9,6,3,6,15,14,0,4,9,6,5,15,14,0,4,15,14,15,14,0,4,4,1,5,15,14,0,4,4,7,4,9,10,12,13,14,6,12,11,9,14,6,14,6,7,4,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,10,12,13,4,7,4,1,9,7,1,9,7,9,6,0,4,15,14,15,14,0,4,15,14,15,13,4,7,4,3,6,14,7,4,11,15,14,0,4,4,11,1,9,7,1,9,7,3,6,3,6,3,6,14,9,10,12,13,4,8,15,14,0,4,4,6,12,11,4,3,6,5,4,7,15,14,0,4,4,15,14,15,14,0,4,4,15,14,15,14,0,4,15,14,15,14,0,4,4,14,7,4,2,1,9,7,9,6,9,10,12,13,4,0,4,4,10,12,5,15,14,0,4,1,9,7,3,6,12,11,12,11,13,4,0,4,15,14,15,14,0,4,15,14,15,14,0,4,9,10,12,5,15,14,0,4,4,11,12,11,0,4,4,3,6,10,12,13,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,6,12,11,1,9,7,3,6,6,11,3,6,15,14,0,4,4,0,15,14,0,4,15,10,12,13,4,7,4,1,5,13,13,4,7,4,14,7,4,6,4,2,13,4,7,4,0,4,4,2,0,4,15,14,15,14,0,4,4,3,6,1,5,15,14,6,4,12,11,10,12,13,4,0,4,15,14,15,14,0,4,4,14,7,4,13,4,0,4,4,14,6,2,8,15,14,0,4,4,4,6,12,15,14,0,4,4,5,15,14,0,4,4,12,3,2,15,14,0,4,4,3,6,9,10,12,13,4,0,4,15,14,15,14,0,11,2,2,6,14,9,6,0,4,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"7\", \"3\"], \"clip_start\": 370.0, \"clip_end\": 374.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q6_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,4,7,4,4,7,4,8,15,14,0,4,15,14,15,14,0,4,4,15,14,15,14,0,4,4,7,4,3,6,6,13,4,0,4,15,14,15,14,0,4,4,0,4,13,4,7,4,8,14,7,4,12,3,6,10,12,13,4,0,4,15,14,15,14,0,4,4,9,6,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,12,11,0,4,15,14,15,14,0,4,4,9,10,12,13,4,0,4,4,11,9,6,3,6,15,14,0,4,9,6,5,15,14,0,4,15,14,15,14,0,4,4,1,5,15,14,0,4,4,7,4,9,10,12,13,14,6,12,11,9,14,6,14,6,7,4,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,10,12,13,4,7,4,1,9,7,1,9,7,9,6,0,4,15,14,15,14,0,4,15,14,15,13,4,7,4,3,6,14,7,4,11,15,14,0,4,4,11,1,9,7,1,9,7,3,6,3,6,3,6,14,9,10,12,13,4,8,15,14,0,4,4,6,12,11,4,3,6,5,4,7,15,14,0,4,4,15,14,15,14,0,4,4,15,14,15,14,0,4,15,14,15,14,0,4,4,14,7,4,2,1,9,7,9,6,9,10,12,13,4,0,4,4,10,12,5,15,14,0,4,1,9,7,3,6,12,11,12,11,13,4,0,4,15,14,15,14,0,4,15,14,15,14,0,4,9,10,12,5,15,14,0,4,4,11,12,11,0,4,4,3,6,10,12,13,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,6,12,11,1,9,7,3,6,6,11,3,6,15,14,0,4,4,0,15,14,0,4,15,10,12,13,4,7,4,1,5,13,13,4,7,4,14,7,4,6,4,2,13,4,7,4,0,4,4,2,0,4,15,14,15,14,0,4,4,3,6,1,5,15,14,6,4,12,11,10,12,13,4,0,4,15,14,15,14,0,4,4,14,7,4,13,4,0,4,4,14,6,2,8,15,14,0,4,4,4,6,12,15,14,0,4,4,5,15,14,0,4,4,12,3,2,15,14,0,4,4,3,6,9,10,12,13,4,0,4,15,14,15,14,0,11,2,2,6,14,9,6,0,4,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"4\", \"11\", \"9\"], \"clip_start\": 114.0, \"clip_end\": 118.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q7_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,4,7,4,4,7,4,8,15,14,0,4,15,14,15,14,0,4,4,15,14,15,14,0,4,4,7,4,3,6,6,13,4,0,4,15,14,15,14,0,4,4,0,4,13,4,7,4,8,14,7,4,12,3,6,10,12,13,4,0,4,15,14,15,14,0,4,4,9,6,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,12,11,0,4,15,14,15,14,0,4,4,9,10,12,13,4,0,4,4,11,9,6,3,6,15,14,0,4,9,6,5,15,14,0,4,15,14,15,14,0,4,4,1,5,15,14,0,4,4,7,4,9,10,12,13,14,6,12,11,9,14,6,14,6,7,4,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,10,12,13,4,7,4,1,9,7,1,9,7,9,6,0,4,15,14,15,14,0,4,15,14,15,13,4,7,4,3,6,14,7,4,11,15,14,0,4,4,11,1,9,7,1,9,7,3,6,3,6,3,6,14,9,10,12,13,4,8,15,14,0,4,4,6,12,11,4,3,6,5,4,7,15,14,0,4,4,15,14,15,14,0,4,4,15,14,15,14,0,4,15,14,15,14,0,4,4,14,7,4,2,1,9,7,9,6,9,10,12,13,4,0,4,4,10,12,5,15,14,0,4,1,9,7,3,6,12,11,12,11,13,4,0,4,15,14,15,14,0,4,15,14,15,14,0,4,9,10,12,5,15,14,0,4,4,11,12,11,0,4,4,3,6,10,12,13,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,6,12,11,1,9,7,3,6,6,11,3,6,15,14,0,4,4,0,15,14,0,4,15,10,12,13,4,7,4,1,5,13,13,4,7,4,14,7,4,6,4,2,13,4,7,4,0,4,4,2,0,4,15,14,15,14,0,4,4,3,6,1,5,15,14,6,4,12,11,10,12,13,4,0,4,15,14,15,14,0,4,4,14,7,4,13,4,0,4,4,14,6,2,8,15,14,0,4,4,4,6,12,15,14,0,4,4,5,15,14,0,4,4,12,3,2,15,14,0,4,4,3,6,9,10,12,13,4,0,4,15,14,15,14,0,11,2,2,6,14,9,6,0,4,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"5\", \"15\", \"14\"], \"clip_start\": 298.0, \"clip_end\": 302.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,4,7,4,4,7,4,8,15,14,0,4,15,14,15,14,0,4,4,15,14,15,14,0,4,4,7,4,3,6,6,13,4,0,4,15,14,15,14,0,4,4,0,4,13,4,7,4,8,14,7,4,12,3,6,10,12,13,4,0,4,15,14,15,14,0,4,4,9,6,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,12,11,0,4,15,14,15,14,0,4,4,9,10,12,13,4,0,4,4,11,9,6,3,6,15,14,0,4,9,6,5,15,14,0,4,15,14,15,14,0,4,4,1,5,15,14,0,4,4,7,4,9,10,12,13,14,6,12,11,9,14,6,14,6,7,4,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,10,12,13,4,7,4,1,9,7,1,9,7,9,6,0,4,15,14,15,14,0,4,15,14,15,13,4,7,4,3,6,14,7,4,11,15,14,0,4,4,11,1,9,7,1,9,7,3,6,3,6,3,6,14,9,10,12,13,4,8,15,14,0,4,4,6,12,11,4,3,6,5,4,7,15,14,0,4,4,15,14,15,14,0,4,4,15,14,15,14,0,4,15,14,15,14,0,4,4,14,7,4,2,1,9,7,9,6,9,10,12,13,4,0,4,4,10,12,5,15,14,0,4,1,9,7,3,6,12,11,12,11,13,4,0,4,15,14,15,14,0,4,15,14,15,14,0,4,9,10,12,5,15,14,0,4,4,11,12,11,0,4,4,3,6,10,12,13,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,6,12,11,1,9,7,3,6,6,11,3,6,15,14,0,4,4,0,15,14,0,4,15,10,12,13,4,7,4,1,5,13,13,4,7,4,14,7,4,6,4,2,13,4,7,4,0,4,4,2,0,4,15,14,15,14,0,4,4,3,6,1,5,15,14,6,4,12,11,10,12,13,4,0,4,15,14,15,14,0,4,4,14,7,4,13,4,0,4,4,14,6,2,8,15,14,0,4,4,4,6,12,15,14,0,4,4,5,15,14,0,4,4,12,3,2,15,14,0,4,4,3,6,9,10,12,13,4,0,4,15,14,15,14,0,11,2,2,6,14,9,6,0,4,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"13\", \"7\", \"9\", \"5\"], \"clip_start\": 116.0, \"clip_end\": 122.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,4,7,4,4,7,4,8,15,14,0,4,15,14,15,14,0,4,4,15,14,15,14,0,4,4,7,4,3,6,6,13,4,0,4,15,14,15,14,0,4,4,0,4,13,4,7,4,8,14,7,4,12,3,6,10,12,13,4,0,4,15,14,15,14,0,4,4,9,6,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,12,11,0,4,15,14,15,14,0,4,4,9,10,12,13,4,0,4,4,11,9,6,3,6,15,14,0,4,9,6,5,15,14,0,4,15,14,15,14,0,4,4,1,5,15,14,0,4,4,7,4,9,10,12,13,14,6,12,11,9,14,6,14,6,7,4,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,10,12,13,4,7,4,1,9,7,1,9,7,9,6,0,4,15,14,15,14,0,4,15,14,15,13,4,7,4,3,6,14,7,4,11,15,14,0,4,4,11,1,9,7,1,9,7,3,6,3,6,3,6,14,9,10,12,13,4,8,15,14,0,4,4,6,12,11,4,3,6,5,4,7,15,14,0,4,4,15,14,15,14,0,4,4,15,14,15,14,0,4,15,14,15,14,0,4,4,14,7,4,2,1,9,7,9,6,9,10,12,13,4,0,4,4,10,12,5,15,14,0,4,1,9,7,3,6,12,11,12,11,13,4,0,4,15,14,15,14,0,4,15,14,15,14,0,4,9,10,12,5,15,14,0,4,4,11,12,11,0,4,4,3,6,10,12,13,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,6,12,11,1,9,7,3,6,6,11,3,6,15,14,0,4,4,0,15,14,0,4,15,10,12,13,4,7,4,1,5,13,13,4,7,4,14,7,4,6,4,2,13,4,7,4,0,4,4,2,0,4,15,14,15,14,0,4,4,3,6,1,5,15,14,6,4,12,11,10,12,13,4,0,4,15,14,15,14,0,4,4,14,7,4,13,4,0,4,4,14,6,2,8,15,14,0,4,4,4,6,12,15,14,0,4,4,5,15,14,0,4,4,12,3,2,15,14,0,4,4,3,6,9,10,12,13,4,0,4,15,14,15,14,0,11,2,2,6,14,9,6,0,4,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"12\", \"11\", \"12\", \"11\"], \"clip_start\": 308.0, \"clip_end\": 313.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,4,7,4,4,7,4,8,15,14,0,4,15,14,15,14,0,4,4,15,14,15,14,0,4,4,7,4,3,6,6,13,4,0,4,15,14,15,14,0,4,4,0,4,13,4,7,4,8,14,7,4,12,3,6,10,12,13,4,0,4,15,14,15,14,0,4,4,9,6,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,12,11,0,4,15,14,15,14,0,4,4,9,10,12,13,4,0,4,4,11,9,6,3,6,15,14,0,4,9,6,5,15,14,0,4,15,14,15,14,0,4,4,1,5,15,14,0,4,4,7,4,9,10,12,13,14,6,12,11,9,14,6,14,6,7,4,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,10,12,13,4,7,4,1,9,7,1,9,7,9,6,0,4,15,14,15,14,0,4,15,14,15,13,4,7,4,3,6,14,7,4,11,15,14,0,4,4,11,1,9,7,1,9,7,3,6,3,6,3,6,14,9,10,12,13,4,8,15,14,0,4,4,6,12,11,4,3,6,5,4,7,15,14,0,4,4,15,14,15,14,0,4,4,15,14,15,14,0,4,15,14,15,14,0,4,4,14,7,4,2,1,9,7,9,6,9,10,12,13,4,0,4,4,10,12,5,15,14,0,4,1,9,7,3,6,12,11,12,11,13,4,0,4,15,14,15,14,0,4,15,14,15,14,0,4,9,10,12,5,15,14,0,4,4,11,12,11,0,4,4,3,6,10,12,13,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,6,12,11,1,9,7,3,6,6,11,3,6,15,14,0,4,4,0,15,14,0,4,15,10,12,13,4,7,4,1,5,13,13,4,7,4,14,7,4,6,4,2,13,4,7,4,0,4,4,2,0,4,15,14,15,14,0,4,4,3,6,1,5,15,14,6,4,12,11,10,12,13,4,0,4,15,14,15,14,0,4,4,14,7,4,13,4,0,4,4,14,6,2,8,15,14,0,4,4,4,6,12,15,14,0,4,4,5,15,14,0,4,4,12,3,2,15,14,0,4,4,3,6,9,10,12,13,4,0,4,15,14,15,14,0,11,2,2,6,14,9,6,0,4,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"0\", \"4\", \"4\", \"11\"], \"clip_start\": 216.0, \"clip_end\": 222.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,4,7,4,4,7,4,8,15,14,0,4,15,14,15,14,0,4,4,15,14,15,14,0,4,4,7,4,3,6,6,13,4,0,4,15,14,15,14,0,4,4,0,4,13,4,7,4,8,14,7,4,12,3,6,10,12,13,4,0,4,15,14,15,14,0,4,4,9,6,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,12,11,0,4,15,14,15,14,0,4,4,9,10,12,13,4,0,4,4,11,9,6,3,6,15,14,0,4,9,6,5,15,14,0,4,15,14,15,14,0,4,4,1,5,15,14,0,4,4,7,4,9,10,12,13,14,6,12,11,9,14,6,14,6,7,4,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,10,12,13,4,7,4,1,9,7,1,9,7,9,6,0,4,15,14,15,14,0,4,15,14,15,13,4,7,4,3,6,14,7,4,11,15,14,0,4,4,11,1,9,7,1,9,7,3,6,3,6,3,6,14,9,10,12,13,4,8,15,14,0,4,4,6,12,11,4,3,6,5,4,7,15,14,0,4,4,15,14,15,14,0,4,4,15,14,15,14,0,4,15,14,15,14,0,4,4,14,7,4,2,1,9,7,9,6,9,10,12,13,4,0,4,4,10,12,5,15,14,0,4,1,9,7,3,6,12,11,12,11,13,4,0,4,15,14,15,14,0,4,15,14,15,14,0,4,9,10,12,5,15,14,0,4,4,11,12,11,0,4,4,3,6,10,12,13,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,6,12,11,1,9,7,3,6,6,11,3,6,15,14,0,4,4,0,15,14,0,4,15,10,12,13,4,7,4,1,5,13,13,4,7,4,14,7,4,6,4,2,13,4,7,4,0,4,4,2,0,4,15,14,15,14,0,4,4,3,6,1,5,15,14,6,4,12,11,10,12,13,4,0,4,15,14,15,14,0,4,4,14,7,4,13,4,0,4,4,14,6,2,8,15,14,0,4,4,4,6,12,15,14,0,4,4,5,15,14,0,4,4,12,3,2,15,14,0,4,4,3,6,9,10,12,13,4,0,4,15,14,15,14,0,11,2,2,6,14,9,6,0,4,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"10\", \"12\"], \"clip_start\": 289.0, \"clip_end\": 292.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,4,7,4,4,7,4,8,15,14,0,4,15,14,15,14,0,4,4,15,14,15,14,0,4,4,7,4,3,6,6,13,4,0,4,15,14,15,14,0,4,4,0,4,13,4,7,4,8,14,7,4,12,3,6,10,12,13,4,0,4,15,14,15,14,0,4,4,9,6,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,12,11,0,4,15,14,15,14,0,4,4,9,10,12,13,4,0,4,4,11,9,6,3,6,15,14,0,4,9,6,5,15,14,0,4,15,14,15,14,0,4,4,1,5,15,14,0,4,4,7,4,9,10,12,13,14,6,12,11,9,14,6,14,6,7,4,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,10,12,13,4,7,4,1,9,7,1,9,7,9,6,0,4,15,14,15,14,0,4,15,14,15,13,4,7,4,3,6,14,7,4,11,15,14,0,4,4,11,1,9,7,1,9,7,3,6,3,6,3,6,14,9,10,12,13,4,8,15,14,0,4,4,6,12,11,4,3,6,5,4,7,15,14,0,4,4,15,14,15,14,0,4,4,15,14,15,14,0,4,15,14,15,14,0,4,4,14,7,4,2,1,9,7,9,6,9,10,12,13,4,0,4,4,10,12,5,15,14,0,4,1,9,7,3,6,12,11,12,11,13,4,0,4,15,14,15,14,0,4,15,14,15,14,0,4,9,10,12,5,15,14,0,4,4,11,12,11,0,4,4,3,6,10,12,13,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,6,12,11,1,9,7,3,6,6,11,3,6,15,14,0,4,4,0,15,14,0,4,15,10,12,13,4,7,4,1,5,13,13,4,7,4,14,7,4,6,4,2,13,4,7,4,0,4,4,2,0,4,15,14,15,14,0,4,4,3,6,1,5,15,14,6,4,12,11,10,12,13,4,0,4,15,14,15,14,0,4,4,14,7,4,13,4,0,4,4,14,6,2,8,15,14,0,4,4,4,6,12,15,14,0,4,4,5,15,14,0,4,4,12,3,2,15,14,0,4,4,3,6,9,10,12,13,4,0,4,15,14,15,14,0,11,2,2,6,14,9,6,0,4,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"4\", \"0\", \"4\"], \"clip_start\": 492.0, \"clip_end\": 497.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q13_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,4,7,4,4,7,4,8,15,14,0,4,15,14,15,14,0,4,4,15,14,15,14,0,4,4,7,4,3,6,6,13,4,0,4,15,14,15,14,0,4,4,0,4,13,4,7,4,8,14,7,4,12,3,6,10,12,13,4,0,4,15,14,15,14,0,4,4,9,6,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,12,11,0,4,15,14,15,14,0,4,4,9,10,12,13,4,0,4,4,11,9,6,3,6,15,14,0,4,9,6,5,15,14,0,4,15,14,15,14,0,4,4,1,5,15,14,0,4,4,7,4,9,10,12,13,14,6,12,11,9,14,6,14,6,7,4,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,10,12,13,4,7,4,1,9,7,1,9,7,9,6,0,4,15,14,15,14,0,4,15,14,15,13,4,7,4,3,6,14,7,4,11,15,14,0,4,4,11,1,9,7,1,9,7,3,6,3,6,3,6,14,9,10,12,13,4,8,15,14,0,4,4,6,12,11,4,3,6,5,4,7,15,14,0,4,4,15,14,15,14,0,4,4,15,14,15,14,0,4,15,14,15,14,0,4,4,14,7,4,2,1,9,7,9,6,9,10,12,13,4,0,4,4,10,12,5,15,14,0,4,1,9,7,3,6,12,11,12,11,13,4,0,4,15,14,15,14,0,4,15,14,15,14,0,4,9,10,12,5,15,14,0,4,4,11,12,11,0,4,4,3,6,10,12,13,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,6,12,11,1,9,7,3,6,6,11,3,6,15,14,0,4,4,0,15,14,0,4,15,10,12,13,4,7,4,1,5,13,13,4,7,4,14,7,4,6,4,2,13,4,7,4,0,4,4,2,0,4,15,14,15,14,0,4,4,3,6,1,5,15,14,6,4,12,11,10,12,13,4,0,4,15,14,15,14,0,4,4,14,7,4,13,4,0,4,4,14,6,2,8,15,14,0,4,4,4,6,12,15,14,0,4,4,5,15,14,0,4,4,12,3,2,15,14,0,4,4,3,6,9,10,12,13,4,0,4,15,14,15,14,0,11,2,2,6,14,9,6,0,4,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"0\", \"4\"], \"clip_start\": 176.0, \"clip_end\": 180.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q14_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,4,7,4,4,7,4,8,15,14,0,4,15,14,15,14,0,4,4,15,14,15,14,0,4,4,7,4,3,6,6,13,4,0,4,15,14,15,14,0,4,4,0,4,13,4,7,4,8,14,7,4,12,3,6,10,12,13,4,0,4,15,14,15,14,0,4,4,9,6,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,12,11,0,4,15,14,15,14,0,4,4,9,10,12,13,4,0,4,4,11,9,6,3,6,15,14,0,4,9,6,5,15,14,0,4,15,14,15,14,0,4,4,1,5,15,14,0,4,4,7,4,9,10,12,13,14,6,12,11,9,14,6,14,6,7,4,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,10,12,13,4,7,4,1,9,7,1,9,7,9,6,0,4,15,14,15,14,0,4,15,14,15,13,4,7,4,3,6,14,7,4,11,15,14,0,4,4,11,1,9,7,1,9,7,3,6,3,6,3,6,14,9,10,12,13,4,8,15,14,0,4,4,6,12,11,4,3,6,5,4,7,15,14,0,4,4,15,14,15,14,0,4,4,15,14,15,14,0,4,15,14,15,14,0,4,4,14,7,4,2,1,9,7,9,6,9,10,12,13,4,0,4,4,10,12,5,15,14,0,4,1,9,7,3,6,12,11,12,11,13,4,0,4,15,14,15,14,0,4,15,14,15,14,0,4,9,10,12,5,15,14,0,4,4,11,12,11,0,4,4,3,6,10,12,13,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,6,12,11,1,9,7,3,6,6,11,3,6,15,14,0,4,4,0,15,14,0,4,15,10,12,13,4,7,4,1,5,13,13,4,7,4,14,7,4,6,4,2,13,4,7,4,0,4,4,2,0,4,15,14,15,14,0,4,4,3,6,1,5,15,14,6,4,12,11,10,12,13,4,0,4,15,14,15,14,0,4,4,14,7,4,13,4,0,4,4,14,6,2,8,15,14,0,4,4,4,6,12,15,14,0,4,4,5,15,14,0,4,4,12,3,2,15,14,0,4,4,3,6,9,10,12,13,4,0,4,15,14,15,14,0,11,2,2,6,14,9,6,0,4,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"15\", \"14\", \"0\"], \"clip_start\": 174.0, \"clip_end\": 179.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q15_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,4,7,4,4,7,4,8,15,14,0,4,15,14,15,14,0,4,4,15,14,15,14,0,4,4,7,4,3,6,6,13,4,0,4,15,14,15,14,0,4,4,0,4,13,4,7,4,8,14,7,4,12,3,6,10,12,13,4,0,4,15,14,15,14,0,4,4,9,6,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,12,11,0,4,15,14,15,14,0,4,4,9,10,12,13,4,0,4,4,11,9,6,3,6,15,14,0,4,9,6,5,15,14,0,4,15,14,15,14,0,4,4,1,5,15,14,0,4,4,7,4,9,10,12,13,14,6,12,11,9,14,6,14,6,7,4,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,10,12,13,4,7,4,1,9,7,1,9,7,9,6,0,4,15,14,15,14,0,4,15,14,15,13,4,7,4,3,6,14,7,4,11,15,14,0,4,4,11,1,9,7,1,9,7,3,6,3,6,3,6,14,9,10,12,13,4,8,15,14,0,4,4,6,12,11,4,3,6,5,4,7,15,14,0,4,4,15,14,15,14,0,4,4,15,14,15,14,0,4,15,14,15,14,0,4,4,14,7,4,2,1,9,7,9,6,9,10,12,13,4,0,4,4,10,12,5,15,14,0,4,1,9,7,3,6,12,11,12,11,13,4,0,4,15,14,15,14,0,4,15,14,15,14,0,4,9,10,12,5,15,14,0,4,4,11,12,11,0,4,4,3,6,10,12,13,8,15,14,0,4,15,14,15,14,0,4,15,14,15,14,0,4,4,6,12,11,1,9,7,3,6,6,11,3,6,15,14,0,4,4,0,15,14,0,4,15,10,12,13,4,7,4,1,5,13,13,4,7,4,14,7,4,6,4,2,13,4,7,4,0,4,4,2,0,4,15,14,15,14,0,4,4,3,6,1,5,15,14,6,4,12,11,10,12,13,4,0,4,15,14,15,14,0,4,4,14,7,4,13,4,0,4,4,14,6,2,8,15,14,0,4,4,4,6,12,15,14,0,4,4,5,15,14,0,4,4,12,3,2,15,14,0,4,4,3,6,9,10,12,13,4,0,4,15,14,15,14,0,11,2,2,6,14,9,6,0,4,15", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"15\", \"13\", \"8\", \"11\", \"14\"], \"clip_start\": 412.0, \"clip_end\": 418.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,9,4,7,10,14,4,15,13,6,9,4,12,15,13,2,2,13,5,6,9,11,14,7,9,0,11,14,7,9,4,12,10,13,7,9,0,11,14,7,9,0,11,14,9,11,14,4,12,15,13,6,9,4,12,10,10,7,10,1,11,14,4,5,14,15,13,10,13,0,11,14,7,10,15,13,2,8,7,3,6,9,4,12,15,13,7,3,13,1,4,12,15,13,7,10,11,14,4,5,4,12,15,13,12,5,14,4,15,13,11,14,7,9,0,1,15,13,11,14,15,13,8,8,15,13,12,12,3,2,3,3,2,9,0,11,14,7,9,4,7,10,7,9,4,12,15,13,7,3,1,8,11,14,7,3,5,10,3,1,14,4,5,8,11,14,15,13,6,9,0,11,0,11,14,15,13,11,14,7,9,0,11,14,7,9,0,11,14,7,9,0,11,14,15,13,12,6,9,4,12,15,13,14,4,5,1,2,13,0,11,14,7,10,6,9,4,12,15,13,9,0,11,14,4,5,10,3,1,7,10,15,13,12,7,5,14,4,5,8,9,4,12,15,13,14,15,13,5,13,10,3,13,11,14,4,12,10,3,1,4,12,10,8,5,11,14,4,15,13,0,11,14,7,9,11,14,7,3,14,4,5,11,14,4,15,13,5,1,0,11,14,4,15,13,12,6,0,1,1,15,13,9,4,7,9,4,12,10,7,9,0,11,14,15,13,11,14,7,3,8,0,11,14,7,9,0,1,0,11,14,4,5,5,2,12,7,9,4,12,10,12,0,11,14,15,13,7,3,11,15,13,9,4,12,15,13,3,12,8,3,8,14,4,7,10,4,12,15,13,2,8,11,15,13,10,3,11,14,4,5,9,0,1,1,5,2,12,6,9,4,12,15,13,6,9,0,1,0,1,15,13,9,4,12,15,13,12,5,9,4,12,15,13,8,11,14,7,3,6,9,0,11,14,15,13,11,14,7,9,0,1,13,10,14,4,15,13,4,12,15,13,3,9,0,11,14,7,3,3,3,4,12,10,2,1,6,9,4,12,15,13,13,12,1,9,11,14,15,0,11,14,15,13,14,7,9,0,11,14,4,5,9,11,14,4,12,10,12,1,10,1,14,4,5,1,7,9,0,11,14,4,5,12,3,13,6,9,4,12,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"11\", \"14\"], \"clip_start\": 252.0, \"clip_end\": 256.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,9,4,7,10,14,4,15,13,6,9,4,12,15,13,2,2,13,5,6,9,11,14,7,9,0,11,14,7,9,4,12,10,13,7,9,0,11,14,7,9,0,11,14,9,11,14,4,12,15,13,6,9,4,12,10,10,7,10,1,11,14,4,5,14,15,13,10,13,0,11,14,7,10,15,13,2,8,7,3,6,9,4,12,15,13,7,3,13,1,4,12,15,13,7,10,11,14,4,5,4,12,15,13,12,5,14,4,15,13,11,14,7,9,0,1,15,13,11,14,15,13,8,8,15,13,12,12,3,2,3,3,2,9,0,11,14,7,9,4,7,10,7,9,4,12,15,13,7,3,1,8,11,14,7,3,5,10,3,1,14,4,5,8,11,14,15,13,6,9,0,11,0,11,14,15,13,11,14,7,9,0,11,14,7,9,0,11,14,7,9,0,11,14,15,13,12,6,9,4,12,15,13,14,4,5,1,2,13,0,11,14,7,10,6,9,4,12,15,13,9,0,11,14,4,5,10,3,1,7,10,15,13,12,7,5,14,4,5,8,9,4,12,15,13,14,15,13,5,13,10,3,13,11,14,4,12,10,3,1,4,12,10,8,5,11,14,4,15,13,0,11,14,7,9,11,14,7,3,14,4,5,11,14,4,15,13,5,1,0,11,14,4,15,13,12,6,0,1,1,15,13,9,4,7,9,4,12,10,7,9,0,11,14,15,13,11,14,7,3,8,0,11,14,7,9,0,1,0,11,14,4,5,5,2,12,7,9,4,12,10,12,0,11,14,15,13,7,3,11,15,13,9,4,12,15,13,3,12,8,3,8,14,4,7,10,4,12,15,13,2,8,11,15,13,10,3,11,14,4,5,9,0,1,1,5,2,12,6,9,4,12,15,13,6,9,0,1,0,1,15,13,9,4,12,15,13,12,5,9,4,12,15,13,8,11,14,7,3,6,9,0,11,14,15,13,11,14,7,9,0,1,13,10,14,4,15,13,4,12,15,13,3,9,0,11,14,7,3,3,3,4,12,10,2,1,6,9,4,12,15,13,13,12,1,9,11,14,15,0,11,14,15,13,14,7,9,0,11,14,4,5,9,11,14,4,12,10,12,1,10,1,14,4,5,1,7,9,0,11,14,4,5,12,3,13,6,9,4,12,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"11\", \"14\", \"4\", \"5\"], \"clip_start\": 59.0, \"clip_end\": 65.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,9,4,7,10,14,4,15,13,6,9,4,12,15,13,2,2,13,5,6,9,11,14,7,9,0,11,14,7,9,4,12,10,13,7,9,0,11,14,7,9,0,11,14,9,11,14,4,12,15,13,6,9,4,12,10,10,7,10,1,11,14,4,5,14,15,13,10,13,0,11,14,7,10,15,13,2,8,7,3,6,9,4,12,15,13,7,3,13,1,4,12,15,13,7,10,11,14,4,5,4,12,15,13,12,5,14,4,15,13,11,14,7,9,0,1,15,13,11,14,15,13,8,8,15,13,12,12,3,2,3,3,2,9,0,11,14,7,9,4,7,10,7,9,4,12,15,13,7,3,1,8,11,14,7,3,5,10,3,1,14,4,5,8,11,14,15,13,6,9,0,11,0,11,14,15,13,11,14,7,9,0,11,14,7,9,0,11,14,7,9,0,11,14,15,13,12,6,9,4,12,15,13,14,4,5,1,2,13,0,11,14,7,10,6,9,4,12,15,13,9,0,11,14,4,5,10,3,1,7,10,15,13,12,7,5,14,4,5,8,9,4,12,15,13,14,15,13,5,13,10,3,13,11,14,4,12,10,3,1,4,12,10,8,5,11,14,4,15,13,0,11,14,7,9,11,14,7,3,14,4,5,11,14,4,15,13,5,1,0,11,14,4,15,13,12,6,0,1,1,15,13,9,4,7,9,4,12,10,7,9,0,11,14,15,13,11,14,7,3,8,0,11,14,7,9,0,1,0,11,14,4,5,5,2,12,7,9,4,12,10,12,0,11,14,15,13,7,3,11,15,13,9,4,12,15,13,3,12,8,3,8,14,4,7,10,4,12,15,13,2,8,11,15,13,10,3,11,14,4,5,9,0,1,1,5,2,12,6,9,4,12,15,13,6,9,0,1,0,1,15,13,9,4,12,15,13,12,5,9,4,12,15,13,8,11,14,7,3,6,9,0,11,14,15,13,11,14,7,9,0,1,13,10,14,4,15,13,4,12,15,13,3,9,0,11,14,7,3,3,3,4,12,10,2,1,6,9,4,12,15,13,13,12,1,9,11,14,15,0,11,14,15,13,14,7,9,0,11,14,4,5,9,11,14,4,12,10,12,1,10,1,14,4,5,1,7,9,0,11,14,4,5,12,3,13,6,9,4,12,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 73.0, \"clip_end\": 76.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,9,4,7,10,14,4,15,13,6,9,4,12,15,13,2,2,13,5,6,9,11,14,7,9,0,11,14,7,9,4,12,10,13,7,9,0,11,14,7,9,0,11,14,9,11,14,4,12,15,13,6,9,4,12,10,10,7,10,1,11,14,4,5,14,15,13,10,13,0,11,14,7,10,15,13,2,8,7,3,6,9,4,12,15,13,7,3,13,1,4,12,15,13,7,10,11,14,4,5,4,12,15,13,12,5,14,4,15,13,11,14,7,9,0,1,15,13,11,14,15,13,8,8,15,13,12,12,3,2,3,3,2,9,0,11,14,7,9,4,7,10,7,9,4,12,15,13,7,3,1,8,11,14,7,3,5,10,3,1,14,4,5,8,11,14,15,13,6,9,0,11,0,11,14,15,13,11,14,7,9,0,11,14,7,9,0,11,14,7,9,0,11,14,15,13,12,6,9,4,12,15,13,14,4,5,1,2,13,0,11,14,7,10,6,9,4,12,15,13,9,0,11,14,4,5,10,3,1,7,10,15,13,12,7,5,14,4,5,8,9,4,12,15,13,14,15,13,5,13,10,3,13,11,14,4,12,10,3,1,4,12,10,8,5,11,14,4,15,13,0,11,14,7,9,11,14,7,3,14,4,5,11,14,4,15,13,5,1,0,11,14,4,15,13,12,6,0,1,1,15,13,9,4,7,9,4,12,10,7,9,0,11,14,15,13,11,14,7,3,8,0,11,14,7,9,0,1,0,11,14,4,5,5,2,12,7,9,4,12,10,12,0,11,14,15,13,7,3,11,15,13,9,4,12,15,13,3,12,8,3,8,14,4,7,10,4,12,15,13,2,8,11,15,13,10,3,11,14,4,5,9,0,1,1,5,2,12,6,9,4,12,15,13,6,9,0,1,0,1,15,13,9,4,12,15,13,12,5,9,4,12,15,13,8,11,14,7,3,6,9,0,11,14,15,13,11,14,7,9,0,1,13,10,14,4,15,13,4,12,15,13,3,9,0,11,14,7,3,3,3,4,12,10,2,1,6,9,4,12,15,13,13,12,1,9,11,14,15,0,11,14,15,13,14,7,9,0,11,14,4,5,9,11,14,4,12,10,12,1,10,1,14,4,5,1,7,9,0,11,14,4,5,12,3,13,6,9,4,12,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"4\", \"12\", \"10\"], \"clip_start\": 305.0, \"clip_end\": 310.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,9,4,7,10,14,4,15,13,6,9,4,12,15,13,2,2,13,5,6,9,11,14,7,9,0,11,14,7,9,4,12,10,13,7,9,0,11,14,7,9,0,11,14,9,11,14,4,12,15,13,6,9,4,12,10,10,7,10,1,11,14,4,5,14,15,13,10,13,0,11,14,7,10,15,13,2,8,7,3,6,9,4,12,15,13,7,3,13,1,4,12,15,13,7,10,11,14,4,5,4,12,15,13,12,5,14,4,15,13,11,14,7,9,0,1,15,13,11,14,15,13,8,8,15,13,12,12,3,2,3,3,2,9,0,11,14,7,9,4,7,10,7,9,4,12,15,13,7,3,1,8,11,14,7,3,5,10,3,1,14,4,5,8,11,14,15,13,6,9,0,11,0,11,14,15,13,11,14,7,9,0,11,14,7,9,0,11,14,7,9,0,11,14,15,13,12,6,9,4,12,15,13,14,4,5,1,2,13,0,11,14,7,10,6,9,4,12,15,13,9,0,11,14,4,5,10,3,1,7,10,15,13,12,7,5,14,4,5,8,9,4,12,15,13,14,15,13,5,13,10,3,13,11,14,4,12,10,3,1,4,12,10,8,5,11,14,4,15,13,0,11,14,7,9,11,14,7,3,14,4,5,11,14,4,15,13,5,1,0,11,14,4,15,13,12,6,0,1,1,15,13,9,4,7,9,4,12,10,7,9,0,11,14,15,13,11,14,7,3,8,0,11,14,7,9,0,1,0,11,14,4,5,5,2,12,7,9,4,12,10,12,0,11,14,15,13,7,3,11,15,13,9,4,12,15,13,3,12,8,3,8,14,4,7,10,4,12,15,13,2,8,11,15,13,10,3,11,14,4,5,9,0,1,1,5,2,12,6,9,4,12,15,13,6,9,0,1,0,1,15,13,9,4,12,15,13,12,5,9,4,12,15,13,8,11,14,7,3,6,9,0,11,14,15,13,11,14,7,9,0,1,13,10,14,4,15,13,4,12,15,13,3,9,0,11,14,7,3,3,3,4,12,10,2,1,6,9,4,12,15,13,13,12,1,9,11,14,15,0,11,14,15,13,14,7,9,0,11,14,4,5,9,11,14,4,12,10,12,1,10,1,14,4,5,1,7,9,0,11,14,4,5,12,3,13,6,9,4,12,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"9\", \"0\", \"11\", \"14\"], \"clip_start\": 442.0, \"clip_end\": 448.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,9,4,7,10,14,4,15,13,6,9,4,12,15,13,2,2,13,5,6,9,11,14,7,9,0,11,14,7,9,4,12,10,13,7,9,0,11,14,7,9,0,11,14,9,11,14,4,12,15,13,6,9,4,12,10,10,7,10,1,11,14,4,5,14,15,13,10,13,0,11,14,7,10,15,13,2,8,7,3,6,9,4,12,15,13,7,3,13,1,4,12,15,13,7,10,11,14,4,5,4,12,15,13,12,5,14,4,15,13,11,14,7,9,0,1,15,13,11,14,15,13,8,8,15,13,12,12,3,2,3,3,2,9,0,11,14,7,9,4,7,10,7,9,4,12,15,13,7,3,1,8,11,14,7,3,5,10,3,1,14,4,5,8,11,14,15,13,6,9,0,11,0,11,14,15,13,11,14,7,9,0,11,14,7,9,0,11,14,7,9,0,11,14,15,13,12,6,9,4,12,15,13,14,4,5,1,2,13,0,11,14,7,10,6,9,4,12,15,13,9,0,11,14,4,5,10,3,1,7,10,15,13,12,7,5,14,4,5,8,9,4,12,15,13,14,15,13,5,13,10,3,13,11,14,4,12,10,3,1,4,12,10,8,5,11,14,4,15,13,0,11,14,7,9,11,14,7,3,14,4,5,11,14,4,15,13,5,1,0,11,14,4,15,13,12,6,0,1,1,15,13,9,4,7,9,4,12,10,7,9,0,11,14,15,13,11,14,7,3,8,0,11,14,7,9,0,1,0,11,14,4,5,5,2,12,7,9,4,12,10,12,0,11,14,15,13,7,3,11,15,13,9,4,12,15,13,3,12,8,3,8,14,4,7,10,4,12,15,13,2,8,11,15,13,10,3,11,14,4,5,9,0,1,1,5,2,12,6,9,4,12,15,13,6,9,0,1,0,1,15,13,9,4,12,15,13,12,5,9,4,12,15,13,8,11,14,7,3,6,9,0,11,14,15,13,11,14,7,9,0,1,13,10,14,4,15,13,4,12,15,13,3,9,0,11,14,7,3,3,3,4,12,10,2,1,6,9,4,12,15,13,13,12,1,9,11,14,15,0,11,14,15,13,14,7,9,0,11,14,4,5,9,11,14,4,12,10,12,1,10,1,14,4,5,1,7,9,0,11,14,4,5,12,3,13,6,9,4,12,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"7\", \"10\", \"14\", \"4\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q6_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,9,4,7,10,14,4,15,13,6,9,4,12,15,13,2,2,13,5,6,9,11,14,7,9,0,11,14,7,9,4,12,10,13,7,9,0,11,14,7,9,0,11,14,9,11,14,4,12,15,13,6,9,4,12,10,10,7,10,1,11,14,4,5,14,15,13,10,13,0,11,14,7,10,15,13,2,8,7,3,6,9,4,12,15,13,7,3,13,1,4,12,15,13,7,10,11,14,4,5,4,12,15,13,12,5,14,4,15,13,11,14,7,9,0,1,15,13,11,14,15,13,8,8,15,13,12,12,3,2,3,3,2,9,0,11,14,7,9,4,7,10,7,9,4,12,15,13,7,3,1,8,11,14,7,3,5,10,3,1,14,4,5,8,11,14,15,13,6,9,0,11,0,11,14,15,13,11,14,7,9,0,11,14,7,9,0,11,14,7,9,0,11,14,15,13,12,6,9,4,12,15,13,14,4,5,1,2,13,0,11,14,7,10,6,9,4,12,15,13,9,0,11,14,4,5,10,3,1,7,10,15,13,12,7,5,14,4,5,8,9,4,12,15,13,14,15,13,5,13,10,3,13,11,14,4,12,10,3,1,4,12,10,8,5,11,14,4,15,13,0,11,14,7,9,11,14,7,3,14,4,5,11,14,4,15,13,5,1,0,11,14,4,15,13,12,6,0,1,1,15,13,9,4,7,9,4,12,10,7,9,0,11,14,15,13,11,14,7,3,8,0,11,14,7,9,0,1,0,11,14,4,5,5,2,12,7,9,4,12,10,12,0,11,14,15,13,7,3,11,15,13,9,4,12,15,13,3,12,8,3,8,14,4,7,10,4,12,15,13,2,8,11,15,13,10,3,11,14,4,5,9,0,1,1,5,2,12,6,9,4,12,15,13,6,9,0,1,0,1,15,13,9,4,12,15,13,12,5,9,4,12,15,13,8,11,14,7,3,6,9,0,11,14,15,13,11,14,7,9,0,1,13,10,14,4,15,13,4,12,15,13,3,9,0,11,14,7,3,3,3,4,12,10,2,1,6,9,4,12,15,13,13,12,1,9,11,14,15,0,11,14,15,13,14,7,9,0,11,14,4,5,9,11,14,4,12,10,12,1,10,1,14,4,5,1,7,9,0,11,14,4,5,12,3,13,6,9,4,12,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"13\", \"0\", \"11\", \"14\", \"7\"], \"clip_start\": 68.0, \"clip_end\": 74.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q7_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,9,4,7,10,14,4,15,13,6,9,4,12,15,13,2,2,13,5,6,9,11,14,7,9,0,11,14,7,9,4,12,10,13,7,9,0,11,14,7,9,0,11,14,9,11,14,4,12,15,13,6,9,4,12,10,10,7,10,1,11,14,4,5,14,15,13,10,13,0,11,14,7,10,15,13,2,8,7,3,6,9,4,12,15,13,7,3,13,1,4,12,15,13,7,10,11,14,4,5,4,12,15,13,12,5,14,4,15,13,11,14,7,9,0,1,15,13,11,14,15,13,8,8,15,13,12,12,3,2,3,3,2,9,0,11,14,7,9,4,7,10,7,9,4,12,15,13,7,3,1,8,11,14,7,3,5,10,3,1,14,4,5,8,11,14,15,13,6,9,0,11,0,11,14,15,13,11,14,7,9,0,11,14,7,9,0,11,14,7,9,0,11,14,15,13,12,6,9,4,12,15,13,14,4,5,1,2,13,0,11,14,7,10,6,9,4,12,15,13,9,0,11,14,4,5,10,3,1,7,10,15,13,12,7,5,14,4,5,8,9,4,12,15,13,14,15,13,5,13,10,3,13,11,14,4,12,10,3,1,4,12,10,8,5,11,14,4,15,13,0,11,14,7,9,11,14,7,3,14,4,5,11,14,4,15,13,5,1,0,11,14,4,15,13,12,6,0,1,1,15,13,9,4,7,9,4,12,10,7,9,0,11,14,15,13,11,14,7,3,8,0,11,14,7,9,0,1,0,11,14,4,5,5,2,12,7,9,4,12,10,12,0,11,14,15,13,7,3,11,15,13,9,4,12,15,13,3,12,8,3,8,14,4,7,10,4,12,15,13,2,8,11,15,13,10,3,11,14,4,5,9,0,1,1,5,2,12,6,9,4,12,15,13,6,9,0,1,0,1,15,13,9,4,12,15,13,12,5,9,4,12,15,13,8,11,14,7,3,6,9,0,11,14,15,13,11,14,7,9,0,1,13,10,14,4,15,13,4,12,15,13,3,9,0,11,14,7,3,3,3,4,12,10,2,1,6,9,4,12,15,13,13,12,1,9,11,14,15,0,11,14,15,13,14,7,9,0,11,14,4,5,9,11,14,4,12,10,12,1,10,1,14,4,5,1,7,9,0,11,14,4,5,12,3,13,6,9,4,12,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"0\", \"1\", \"1\", \"15\"], \"clip_start\": 297.0, \"clip_end\": 302.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,9,4,7,10,14,4,15,13,6,9,4,12,15,13,2,2,13,5,6,9,11,14,7,9,0,11,14,7,9,4,12,10,13,7,9,0,11,14,7,9,0,11,14,9,11,14,4,12,15,13,6,9,4,12,10,10,7,10,1,11,14,4,5,14,15,13,10,13,0,11,14,7,10,15,13,2,8,7,3,6,9,4,12,15,13,7,3,13,1,4,12,15,13,7,10,11,14,4,5,4,12,15,13,12,5,14,4,15,13,11,14,7,9,0,1,15,13,11,14,15,13,8,8,15,13,12,12,3,2,3,3,2,9,0,11,14,7,9,4,7,10,7,9,4,12,15,13,7,3,1,8,11,14,7,3,5,10,3,1,14,4,5,8,11,14,15,13,6,9,0,11,0,11,14,15,13,11,14,7,9,0,11,14,7,9,0,11,14,7,9,0,11,14,15,13,12,6,9,4,12,15,13,14,4,5,1,2,13,0,11,14,7,10,6,9,4,12,15,13,9,0,11,14,4,5,10,3,1,7,10,15,13,12,7,5,14,4,5,8,9,4,12,15,13,14,15,13,5,13,10,3,13,11,14,4,12,10,3,1,4,12,10,8,5,11,14,4,15,13,0,11,14,7,9,11,14,7,3,14,4,5,11,14,4,15,13,5,1,0,11,14,4,15,13,12,6,0,1,1,15,13,9,4,7,9,4,12,10,7,9,0,11,14,15,13,11,14,7,3,8,0,11,14,7,9,0,1,0,11,14,4,5,5,2,12,7,9,4,12,10,12,0,11,14,15,13,7,3,11,15,13,9,4,12,15,13,3,12,8,3,8,14,4,7,10,4,12,15,13,2,8,11,15,13,10,3,11,14,4,5,9,0,1,1,5,2,12,6,9,4,12,15,13,6,9,0,1,0,1,15,13,9,4,12,15,13,12,5,9,4,12,15,13,8,11,14,7,3,6,9,0,11,14,15,13,11,14,7,9,0,1,13,10,14,4,15,13,4,12,15,13,3,9,0,11,14,7,3,3,3,4,12,10,2,1,6,9,4,12,15,13,13,12,1,9,11,14,15,0,11,14,15,13,14,7,9,0,11,14,4,5,9,11,14,4,12,10,12,1,10,1,14,4,5,1,7,9,0,11,14,4,5,12,3,13,6,9,4,12,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"4\", \"12\", \"15\"], \"clip_start\": 390.0, \"clip_end\": 394.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,9,4,7,10,14,4,15,13,6,9,4,12,15,13,2,2,13,5,6,9,11,14,7,9,0,11,14,7,9,4,12,10,13,7,9,0,11,14,7,9,0,11,14,9,11,14,4,12,15,13,6,9,4,12,10,10,7,10,1,11,14,4,5,14,15,13,10,13,0,11,14,7,10,15,13,2,8,7,3,6,9,4,12,15,13,7,3,13,1,4,12,15,13,7,10,11,14,4,5,4,12,15,13,12,5,14,4,15,13,11,14,7,9,0,1,15,13,11,14,15,13,8,8,15,13,12,12,3,2,3,3,2,9,0,11,14,7,9,4,7,10,7,9,4,12,15,13,7,3,1,8,11,14,7,3,5,10,3,1,14,4,5,8,11,14,15,13,6,9,0,11,0,11,14,15,13,11,14,7,9,0,11,14,7,9,0,11,14,7,9,0,11,14,15,13,12,6,9,4,12,15,13,14,4,5,1,2,13,0,11,14,7,10,6,9,4,12,15,13,9,0,11,14,4,5,10,3,1,7,10,15,13,12,7,5,14,4,5,8,9,4,12,15,13,14,15,13,5,13,10,3,13,11,14,4,12,10,3,1,4,12,10,8,5,11,14,4,15,13,0,11,14,7,9,11,14,7,3,14,4,5,11,14,4,15,13,5,1,0,11,14,4,15,13,12,6,0,1,1,15,13,9,4,7,9,4,12,10,7,9,0,11,14,15,13,11,14,7,3,8,0,11,14,7,9,0,1,0,11,14,4,5,5,2,12,7,9,4,12,10,12,0,11,14,15,13,7,3,11,15,13,9,4,12,15,13,3,12,8,3,8,14,4,7,10,4,12,15,13,2,8,11,15,13,10,3,11,14,4,5,9,0,1,1,5,2,12,6,9,4,12,15,13,6,9,0,1,0,1,15,13,9,4,12,15,13,12,5,9,4,12,15,13,8,11,14,7,3,6,9,0,11,14,15,13,11,14,7,9,0,1,13,10,14,4,15,13,4,12,15,13,3,9,0,11,14,7,3,3,3,4,12,10,2,1,6,9,4,12,15,13,13,12,1,9,11,14,15,0,11,14,15,13,14,7,9,0,11,14,4,5,9,11,14,4,12,10,12,1,10,1,14,4,5,1,7,9,0,11,14,4,5,12,3,13,6,9,4,12,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"15\", \"13\", \"9\"], \"clip_start\": 349.0, \"clip_end\": 354.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q10_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,9,4,7,10,14,4,15,13,6,9,4,12,15,13,2,2,13,5,6,9,11,14,7,9,0,11,14,7,9,4,12,10,13,7,9,0,11,14,7,9,0,11,14,9,11,14,4,12,15,13,6,9,4,12,10,10,7,10,1,11,14,4,5,14,15,13,10,13,0,11,14,7,10,15,13,2,8,7,3,6,9,4,12,15,13,7,3,13,1,4,12,15,13,7,10,11,14,4,5,4,12,15,13,12,5,14,4,15,13,11,14,7,9,0,1,15,13,11,14,15,13,8,8,15,13,12,12,3,2,3,3,2,9,0,11,14,7,9,4,7,10,7,9,4,12,15,13,7,3,1,8,11,14,7,3,5,10,3,1,14,4,5,8,11,14,15,13,6,9,0,11,0,11,14,15,13,11,14,7,9,0,11,14,7,9,0,11,14,7,9,0,11,14,15,13,12,6,9,4,12,15,13,14,4,5,1,2,13,0,11,14,7,10,6,9,4,12,15,13,9,0,11,14,4,5,10,3,1,7,10,15,13,12,7,5,14,4,5,8,9,4,12,15,13,14,15,13,5,13,10,3,13,11,14,4,12,10,3,1,4,12,10,8,5,11,14,4,15,13,0,11,14,7,9,11,14,7,3,14,4,5,11,14,4,15,13,5,1,0,11,14,4,15,13,12,6,0,1,1,15,13,9,4,7,9,4,12,10,7,9,0,11,14,15,13,11,14,7,3,8,0,11,14,7,9,0,1,0,11,14,4,5,5,2,12,7,9,4,12,10,12,0,11,14,15,13,7,3,11,15,13,9,4,12,15,13,3,12,8,3,8,14,4,7,10,4,12,15,13,2,8,11,15,13,10,3,11,14,4,5,9,0,1,1,5,2,12,6,9,4,12,15,13,6,9,0,1,0,1,15,13,9,4,12,15,13,12,5,9,4,12,15,13,8,11,14,7,3,6,9,0,11,14,15,13,11,14,7,9,0,1,13,10,14,4,15,13,4,12,15,13,3,9,0,11,14,7,3,3,3,4,12,10,2,1,6,9,4,12,15,13,13,12,1,9,11,14,15,0,11,14,15,13,14,7,9,0,11,14,4,5,9,11,14,4,12,10,12,1,10,1,14,4,5,1,7,9,0,11,14,4,5,12,3,13,6,9,4,12,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"4\", \"5\", \"12\", \"3\"], \"clip_start\": 500.0, \"clip_end\": 506.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,9,4,7,10,14,4,15,13,6,9,4,12,15,13,2,2,13,5,6,9,11,14,7,9,0,11,14,7,9,4,12,10,13,7,9,0,11,14,7,9,0,11,14,9,11,14,4,12,15,13,6,9,4,12,10,10,7,10,1,11,14,4,5,14,15,13,10,13,0,11,14,7,10,15,13,2,8,7,3,6,9,4,12,15,13,7,3,13,1,4,12,15,13,7,10,11,14,4,5,4,12,15,13,12,5,14,4,15,13,11,14,7,9,0,1,15,13,11,14,15,13,8,8,15,13,12,12,3,2,3,3,2,9,0,11,14,7,9,4,7,10,7,9,4,12,15,13,7,3,1,8,11,14,7,3,5,10,3,1,14,4,5,8,11,14,15,13,6,9,0,11,0,11,14,15,13,11,14,7,9,0,11,14,7,9,0,11,14,7,9,0,11,14,15,13,12,6,9,4,12,15,13,14,4,5,1,2,13,0,11,14,7,10,6,9,4,12,15,13,9,0,11,14,4,5,10,3,1,7,10,15,13,12,7,5,14,4,5,8,9,4,12,15,13,14,15,13,5,13,10,3,13,11,14,4,12,10,3,1,4,12,10,8,5,11,14,4,15,13,0,11,14,7,9,11,14,7,3,14,4,5,11,14,4,15,13,5,1,0,11,14,4,15,13,12,6,0,1,1,15,13,9,4,7,9,4,12,10,7,9,0,11,14,15,13,11,14,7,3,8,0,11,14,7,9,0,1,0,11,14,4,5,5,2,12,7,9,4,12,10,12,0,11,14,15,13,7,3,11,15,13,9,4,12,15,13,3,12,8,3,8,14,4,7,10,4,12,15,13,2,8,11,15,13,10,3,11,14,4,5,9,0,1,1,5,2,12,6,9,4,12,15,13,6,9,0,1,0,1,15,13,9,4,12,15,13,12,5,9,4,12,15,13,8,11,14,7,3,6,9,0,11,14,15,13,11,14,7,9,0,1,13,10,14,4,15,13,4,12,15,13,3,9,0,11,14,7,3,3,3,4,12,10,2,1,6,9,4,12,15,13,13,12,1,9,11,14,15,0,11,14,15,13,14,7,9,0,11,14,4,5,9,11,14,4,12,10,12,1,10,1,14,4,5,1,7,9,0,11,14,4,5,12,3,13,6,9,4,12,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"3\", \"6\", \"9\", \"4\"], \"clip_start\": 78.0, \"clip_end\": 84.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,9,4,7,10,14,4,15,13,6,9,4,12,15,13,2,2,13,5,6,9,11,14,7,9,0,11,14,7,9,4,12,10,13,7,9,0,11,14,7,9,0,11,14,9,11,14,4,12,15,13,6,9,4,12,10,10,7,10,1,11,14,4,5,14,15,13,10,13,0,11,14,7,10,15,13,2,8,7,3,6,9,4,12,15,13,7,3,13,1,4,12,15,13,7,10,11,14,4,5,4,12,15,13,12,5,14,4,15,13,11,14,7,9,0,1,15,13,11,14,15,13,8,8,15,13,12,12,3,2,3,3,2,9,0,11,14,7,9,4,7,10,7,9,4,12,15,13,7,3,1,8,11,14,7,3,5,10,3,1,14,4,5,8,11,14,15,13,6,9,0,11,0,11,14,15,13,11,14,7,9,0,11,14,7,9,0,11,14,7,9,0,11,14,15,13,12,6,9,4,12,15,13,14,4,5,1,2,13,0,11,14,7,10,6,9,4,12,15,13,9,0,11,14,4,5,10,3,1,7,10,15,13,12,7,5,14,4,5,8,9,4,12,15,13,14,15,13,5,13,10,3,13,11,14,4,12,10,3,1,4,12,10,8,5,11,14,4,15,13,0,11,14,7,9,11,14,7,3,14,4,5,11,14,4,15,13,5,1,0,11,14,4,15,13,12,6,0,1,1,15,13,9,4,7,9,4,12,10,7,9,0,11,14,15,13,11,14,7,3,8,0,11,14,7,9,0,1,0,11,14,4,5,5,2,12,7,9,4,12,10,12,0,11,14,15,13,7,3,11,15,13,9,4,12,15,13,3,12,8,3,8,14,4,7,10,4,12,15,13,2,8,11,15,13,10,3,11,14,4,5,9,0,1,1,5,2,12,6,9,4,12,15,13,6,9,0,1,0,1,15,13,9,4,12,15,13,12,5,9,4,12,15,13,8,11,14,7,3,6,9,0,11,14,15,13,11,14,7,9,0,1,13,10,14,4,15,13,4,12,15,13,3,9,0,11,14,7,3,3,3,4,12,10,2,1,6,9,4,12,15,13,13,12,1,9,11,14,15,0,11,14,15,13,14,7,9,0,11,14,4,5,9,11,14,4,12,10,12,1,10,1,14,4,5,1,7,9,0,11,14,4,5,12,3,13,6,9,4,12,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"1\", \"15\", \"13\"], \"clip_start\": 398.0, \"clip_end\": 403.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,9,4,7,10,14,4,15,13,6,9,4,12,15,13,2,2,13,5,6,9,11,14,7,9,0,11,14,7,9,4,12,10,13,7,9,0,11,14,7,9,0,11,14,9,11,14,4,12,15,13,6,9,4,12,10,10,7,10,1,11,14,4,5,14,15,13,10,13,0,11,14,7,10,15,13,2,8,7,3,6,9,4,12,15,13,7,3,13,1,4,12,15,13,7,10,11,14,4,5,4,12,15,13,12,5,14,4,15,13,11,14,7,9,0,1,15,13,11,14,15,13,8,8,15,13,12,12,3,2,3,3,2,9,0,11,14,7,9,4,7,10,7,9,4,12,15,13,7,3,1,8,11,14,7,3,5,10,3,1,14,4,5,8,11,14,15,13,6,9,0,11,0,11,14,15,13,11,14,7,9,0,11,14,7,9,0,11,14,7,9,0,11,14,15,13,12,6,9,4,12,15,13,14,4,5,1,2,13,0,11,14,7,10,6,9,4,12,15,13,9,0,11,14,4,5,10,3,1,7,10,15,13,12,7,5,14,4,5,8,9,4,12,15,13,14,15,13,5,13,10,3,13,11,14,4,12,10,3,1,4,12,10,8,5,11,14,4,15,13,0,11,14,7,9,11,14,7,3,14,4,5,11,14,4,15,13,5,1,0,11,14,4,15,13,12,6,0,1,1,15,13,9,4,7,9,4,12,10,7,9,0,11,14,15,13,11,14,7,3,8,0,11,14,7,9,0,1,0,11,14,4,5,5,2,12,7,9,4,12,10,12,0,11,14,15,13,7,3,11,15,13,9,4,12,15,13,3,12,8,3,8,14,4,7,10,4,12,15,13,2,8,11,15,13,10,3,11,14,4,5,9,0,1,1,5,2,12,6,9,4,12,15,13,6,9,0,1,0,1,15,13,9,4,12,15,13,12,5,9,4,12,15,13,8,11,14,7,3,6,9,0,11,14,15,13,11,14,7,9,0,1,13,10,14,4,15,13,4,12,15,13,3,9,0,11,14,7,3,3,3,4,12,10,2,1,6,9,4,12,15,13,13,12,1,9,11,14,15,0,11,14,15,13,14,7,9,0,11,14,4,5,9,11,14,4,12,10,12,1,10,1,14,4,5,1,7,9,0,11,14,4,5,12,3,13,6,9,4,12,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\", \"2\", \"15\", \"0\"], \"clip_start\": 455.0, \"clip_end\": 461.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q14_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,9,4,7,10,14,4,15,13,6,9,4,12,15,13,2,2,13,5,6,9,11,14,7,9,0,11,14,7,9,4,12,10,13,7,9,0,11,14,7,9,0,11,14,9,11,14,4,12,15,13,6,9,4,12,10,10,7,10,1,11,14,4,5,14,15,13,10,13,0,11,14,7,10,15,13,2,8,7,3,6,9,4,12,15,13,7,3,13,1,4,12,15,13,7,10,11,14,4,5,4,12,15,13,12,5,14,4,15,13,11,14,7,9,0,1,15,13,11,14,15,13,8,8,15,13,12,12,3,2,3,3,2,9,0,11,14,7,9,4,7,10,7,9,4,12,15,13,7,3,1,8,11,14,7,3,5,10,3,1,14,4,5,8,11,14,15,13,6,9,0,11,0,11,14,15,13,11,14,7,9,0,11,14,7,9,0,11,14,7,9,0,11,14,15,13,12,6,9,4,12,15,13,14,4,5,1,2,13,0,11,14,7,10,6,9,4,12,15,13,9,0,11,14,4,5,10,3,1,7,10,15,13,12,7,5,14,4,5,8,9,4,12,15,13,14,15,13,5,13,10,3,13,11,14,4,12,10,3,1,4,12,10,8,5,11,14,4,15,13,0,11,14,7,9,11,14,7,3,14,4,5,11,14,4,15,13,5,1,0,11,14,4,15,13,12,6,0,1,1,15,13,9,4,7,9,4,12,10,7,9,0,11,14,15,13,11,14,7,3,8,0,11,14,7,9,0,1,0,11,14,4,5,5,2,12,7,9,4,12,10,12,0,11,14,15,13,7,3,11,15,13,9,4,12,15,13,3,12,8,3,8,14,4,7,10,4,12,15,13,2,8,11,15,13,10,3,11,14,4,5,9,0,1,1,5,2,12,6,9,4,12,15,13,6,9,0,1,0,1,15,13,9,4,12,15,13,12,5,9,4,12,15,13,8,11,14,7,3,6,9,0,11,14,15,13,11,14,7,9,0,1,13,10,14,4,15,13,4,12,15,13,3,9,0,11,14,7,3,3,3,4,12,10,2,1,6,9,4,12,15,13,13,12,1,9,11,14,15,0,11,14,15,13,14,7,9,0,11,14,4,5,9,11,14,4,12,10,12,1,10,1,14,4,5,1,7,9,0,11,14,4,5,12,3,13,6,9,4,12,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"12\", \"15\", \"13\"], \"clip_start\": 48.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q15_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,8,9,4,7,10,14,4,15,13,6,9,4,12,15,13,2,2,13,5,6,9,11,14,7,9,0,11,14,7,9,4,12,10,13,7,9,0,11,14,7,9,0,11,14,9,11,14,4,12,15,13,6,9,4,12,10,10,7,10,1,11,14,4,5,14,15,13,10,13,0,11,14,7,10,15,13,2,8,7,3,6,9,4,12,15,13,7,3,13,1,4,12,15,13,7,10,11,14,4,5,4,12,15,13,12,5,14,4,15,13,11,14,7,9,0,1,15,13,11,14,15,13,8,8,15,13,12,12,3,2,3,3,2,9,0,11,14,7,9,4,7,10,7,9,4,12,15,13,7,3,1,8,11,14,7,3,5,10,3,1,14,4,5,8,11,14,15,13,6,9,0,11,0,11,14,15,13,11,14,7,9,0,11,14,7,9,0,11,14,7,9,0,11,14,15,13,12,6,9,4,12,15,13,14,4,5,1,2,13,0,11,14,7,10,6,9,4,12,15,13,9,0,11,14,4,5,10,3,1,7,10,15,13,12,7,5,14,4,5,8,9,4,12,15,13,14,15,13,5,13,10,3,13,11,14,4,12,10,3,1,4,12,10,8,5,11,14,4,15,13,0,11,14,7,9,11,14,7,3,14,4,5,11,14,4,15,13,5,1,0,11,14,4,15,13,12,6,0,1,1,15,13,9,4,7,9,4,12,10,7,9,0,11,14,15,13,11,14,7,3,8,0,11,14,7,9,0,1,0,11,14,4,5,5,2,12,7,9,4,12,10,12,0,11,14,15,13,7,3,11,15,13,9,4,12,15,13,3,12,8,3,8,14,4,7,10,4,12,15,13,2,8,11,15,13,10,3,11,14,4,5,9,0,1,1,5,2,12,6,9,4,12,15,13,6,9,0,1,0,1,15,13,9,4,12,15,13,12,5,9,4,12,15,13,8,11,14,7,3,6,9,0,11,14,15,13,11,14,7,9,0,1,13,10,14,4,15,13,4,12,15,13,3,9,0,11,14,7,3,3,3,4,12,10,2,1,6,9,4,12,15,13,13,12,1,9,11,14,15,0,11,14,15,13,14,7,9,0,11,14,4,5,9,11,14,4,12,10,12,1,10,1,14,4,5,1,7,9,0,11,14,4,5,12,3,13,6,9,4,12,10", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"10\", \"5\", \"14\"], \"clip_start\": 371.0, \"clip_end\": 376.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,7,0,15,15,10,5,14,2,11,2,11,14,2,11,4,3,3,2,11,9,2,11,6,13,2,11,14,9,1,6,0,15,10,8,0,15,10,8,0,15,10,8,9,12,13,2,11,14,11,8,0,15,9,12,13,2,11,14,11,12,13,2,11,14,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,8,0,15,10,8,9,1,9,5,14,6,13,2,11,14,13,2,0,15,10,8,9,1,5,14,6,0,15,10,8,0,15,10,10,12,13,2,11,14,2,11,11,4,14,14,4,3,5,14,9,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,11,9,2,11,3,14,11,12,13,10,12,13,2,11,14,15,10,7,0,15,15,10,5,14,13,8,0,15,10,8,9,10,12,13,2,11,14,2,11,13,2,11,14,9,1,6,13,2,11,14,12,13,2,11,14,10,15,10,14,9,15,10,10,0,15,10,8,9,10,12,13,2,11,14,0,15,10,8,0,15,0,15,10,8,9,4,15,10,10,8,9,7,0,15,15,10,5,14,3,10,8,0,15,10,15,10,11,8,9,15,10,4,15,10,10,4,14,14,11,10,6,13,2,11,14,12,13,12,13,2,11,14,8,9,5,14,11,4,15,10,11,15,10,3,15,10,14,11,6,13,2,11,14,2,11,10,13,2,11,14,14,3,4,4,4,10,13,2,11,14,7,0,15,15,10,5,14,0,15,10,8,0,15,10,8,9,13,2,11,14,3,3,11,13,2,11,14,13,2,11,14,15,10,8,9,14,7,0,15,15,10,5,14,6,13,2,11,2,11,1,7,0,15,15,10,7,0,15,15,10,7,0,15,15,10,5,14,13,2,11,14,2,11,11,1,2,11,9,14,7,0,15,15,10,7,0,15,5,14,2,11,6,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,10,10,14,12,13,2,11,14,6,0,15,10,8,0,15,10,8,0,15,10,8,9,14,0,15,10,8,9,14,5,14,6,0,15,10,8,9,10,0,15,10,8,0,15,10,8,0,15,10,8,9,15,10,4,10,7,0,15,15,10,5,14,8,9,10,12,13,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"11\", \"1\"], \"clip_start\": 404.0, \"clip_end\": 408.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,7,0,15,15,10,5,14,2,11,2,11,14,2,11,4,3,3,2,11,9,2,11,6,13,2,11,14,9,1,6,0,15,10,8,0,15,10,8,0,15,10,8,9,12,13,2,11,14,11,8,0,15,9,12,13,2,11,14,11,12,13,2,11,14,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,8,0,15,10,8,9,1,9,5,14,6,13,2,11,14,13,2,0,15,10,8,9,1,5,14,6,0,15,10,8,0,15,10,10,12,13,2,11,14,2,11,11,4,14,14,4,3,5,14,9,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,11,9,2,11,3,14,11,12,13,10,12,13,2,11,14,15,10,7,0,15,15,10,5,14,13,8,0,15,10,8,9,10,12,13,2,11,14,2,11,13,2,11,14,9,1,6,13,2,11,14,12,13,2,11,14,10,15,10,14,9,15,10,10,0,15,10,8,9,10,12,13,2,11,14,0,15,10,8,0,15,0,15,10,8,9,4,15,10,10,8,9,7,0,15,15,10,5,14,3,10,8,0,15,10,15,10,11,8,9,15,10,4,15,10,10,4,14,14,11,10,6,13,2,11,14,12,13,12,13,2,11,14,8,9,5,14,11,4,15,10,11,15,10,3,15,10,14,11,6,13,2,11,14,2,11,10,13,2,11,14,14,3,4,4,4,10,13,2,11,14,7,0,15,15,10,5,14,0,15,10,8,0,15,10,8,9,13,2,11,14,3,3,11,13,2,11,14,13,2,11,14,15,10,8,9,14,7,0,15,15,10,5,14,6,13,2,11,2,11,1,7,0,15,15,10,7,0,15,15,10,7,0,15,15,10,5,14,13,2,11,14,2,11,11,1,2,11,9,14,7,0,15,15,10,7,0,15,5,14,2,11,6,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,10,10,14,12,13,2,11,14,6,0,15,10,8,0,15,10,8,0,15,10,8,9,14,0,15,10,8,9,14,5,14,6,0,15,10,8,9,10,0,15,10,8,0,15,10,8,0,15,10,8,9,15,10,4,10,7,0,15,15,10,5,14,8,9,10,12,13,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"0\", \"15\"], \"clip_start\": 465.0, \"clip_end\": 469.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,7,0,15,15,10,5,14,2,11,2,11,14,2,11,4,3,3,2,11,9,2,11,6,13,2,11,14,9,1,6,0,15,10,8,0,15,10,8,0,15,10,8,9,12,13,2,11,14,11,8,0,15,9,12,13,2,11,14,11,12,13,2,11,14,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,8,0,15,10,8,9,1,9,5,14,6,13,2,11,14,13,2,0,15,10,8,9,1,5,14,6,0,15,10,8,0,15,10,10,12,13,2,11,14,2,11,11,4,14,14,4,3,5,14,9,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,11,9,2,11,3,14,11,12,13,10,12,13,2,11,14,15,10,7,0,15,15,10,5,14,13,8,0,15,10,8,9,10,12,13,2,11,14,2,11,13,2,11,14,9,1,6,13,2,11,14,12,13,2,11,14,10,15,10,14,9,15,10,10,0,15,10,8,9,10,12,13,2,11,14,0,15,10,8,0,15,0,15,10,8,9,4,15,10,10,8,9,7,0,15,15,10,5,14,3,10,8,0,15,10,15,10,11,8,9,15,10,4,15,10,10,4,14,14,11,10,6,13,2,11,14,12,13,12,13,2,11,14,8,9,5,14,11,4,15,10,11,15,10,3,15,10,14,11,6,13,2,11,14,2,11,10,13,2,11,14,14,3,4,4,4,10,13,2,11,14,7,0,15,15,10,5,14,0,15,10,8,0,15,10,8,9,13,2,11,14,3,3,11,13,2,11,14,13,2,11,14,15,10,8,9,14,7,0,15,15,10,5,14,6,13,2,11,2,11,1,7,0,15,15,10,7,0,15,15,10,7,0,15,15,10,5,14,13,2,11,14,2,11,11,1,2,11,9,14,7,0,15,15,10,7,0,15,5,14,2,11,6,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,10,10,14,12,13,2,11,14,6,0,15,10,8,0,15,10,8,0,15,10,8,9,14,0,15,10,8,9,14,5,14,6,0,15,10,8,9,10,0,15,10,8,0,15,10,8,0,15,10,8,9,15,10,4,10,7,0,15,15,10,5,14,8,9,10,12,13,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"10\", \"12\", \"13\", \"2\"], \"clip_start\": 120.0, \"clip_end\": 125.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,7,0,15,15,10,5,14,2,11,2,11,14,2,11,4,3,3,2,11,9,2,11,6,13,2,11,14,9,1,6,0,15,10,8,0,15,10,8,0,15,10,8,9,12,13,2,11,14,11,8,0,15,9,12,13,2,11,14,11,12,13,2,11,14,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,8,0,15,10,8,9,1,9,5,14,6,13,2,11,14,13,2,0,15,10,8,9,1,5,14,6,0,15,10,8,0,15,10,10,12,13,2,11,14,2,11,11,4,14,14,4,3,5,14,9,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,11,9,2,11,3,14,11,12,13,10,12,13,2,11,14,15,10,7,0,15,15,10,5,14,13,8,0,15,10,8,9,10,12,13,2,11,14,2,11,13,2,11,14,9,1,6,13,2,11,14,12,13,2,11,14,10,15,10,14,9,15,10,10,0,15,10,8,9,10,12,13,2,11,14,0,15,10,8,0,15,0,15,10,8,9,4,15,10,10,8,9,7,0,15,15,10,5,14,3,10,8,0,15,10,15,10,11,8,9,15,10,4,15,10,10,4,14,14,11,10,6,13,2,11,14,12,13,12,13,2,11,14,8,9,5,14,11,4,15,10,11,15,10,3,15,10,14,11,6,13,2,11,14,2,11,10,13,2,11,14,14,3,4,4,4,10,13,2,11,14,7,0,15,15,10,5,14,0,15,10,8,0,15,10,8,9,13,2,11,14,3,3,11,13,2,11,14,13,2,11,14,15,10,8,9,14,7,0,15,15,10,5,14,6,13,2,11,2,11,1,7,0,15,15,10,7,0,15,15,10,7,0,15,15,10,5,14,13,2,11,14,2,11,11,1,2,11,9,14,7,0,15,15,10,7,0,15,5,14,2,11,6,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,10,10,14,12,13,2,11,14,6,0,15,10,8,0,15,10,8,0,15,10,8,9,14,0,15,10,8,9,14,5,14,6,0,15,10,8,9,10,0,15,10,8,0,15,10,8,0,15,10,8,9,15,10,4,10,7,0,15,15,10,5,14,8,9,10,12,13,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 266.0, \"clip_end\": 270.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,7,0,15,15,10,5,14,2,11,2,11,14,2,11,4,3,3,2,11,9,2,11,6,13,2,11,14,9,1,6,0,15,10,8,0,15,10,8,0,15,10,8,9,12,13,2,11,14,11,8,0,15,9,12,13,2,11,14,11,12,13,2,11,14,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,8,0,15,10,8,9,1,9,5,14,6,13,2,11,14,13,2,0,15,10,8,9,1,5,14,6,0,15,10,8,0,15,10,10,12,13,2,11,14,2,11,11,4,14,14,4,3,5,14,9,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,11,9,2,11,3,14,11,12,13,10,12,13,2,11,14,15,10,7,0,15,15,10,5,14,13,8,0,15,10,8,9,10,12,13,2,11,14,2,11,13,2,11,14,9,1,6,13,2,11,14,12,13,2,11,14,10,15,10,14,9,15,10,10,0,15,10,8,9,10,12,13,2,11,14,0,15,10,8,0,15,0,15,10,8,9,4,15,10,10,8,9,7,0,15,15,10,5,14,3,10,8,0,15,10,15,10,11,8,9,15,10,4,15,10,10,4,14,14,11,10,6,13,2,11,14,12,13,12,13,2,11,14,8,9,5,14,11,4,15,10,11,15,10,3,15,10,14,11,6,13,2,11,14,2,11,10,13,2,11,14,14,3,4,4,4,10,13,2,11,14,7,0,15,15,10,5,14,0,15,10,8,0,15,10,8,9,13,2,11,14,3,3,11,13,2,11,14,13,2,11,14,15,10,8,9,14,7,0,15,15,10,5,14,6,13,2,11,2,11,1,7,0,15,15,10,7,0,15,15,10,7,0,15,15,10,5,14,13,2,11,14,2,11,11,1,2,11,9,14,7,0,15,15,10,7,0,15,5,14,2,11,6,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,10,10,14,12,13,2,11,14,6,0,15,10,8,0,15,10,8,0,15,10,8,9,14,0,15,10,8,9,14,5,14,6,0,15,10,8,9,10,0,15,10,8,0,15,10,8,0,15,10,8,9,15,10,4,10,7,0,15,15,10,5,14,8,9,10,12,13,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"0\", \"15\"], \"clip_start\": 239.0, \"clip_end\": 243.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,7,0,15,15,10,5,14,2,11,2,11,14,2,11,4,3,3,2,11,9,2,11,6,13,2,11,14,9,1,6,0,15,10,8,0,15,10,8,0,15,10,8,9,12,13,2,11,14,11,8,0,15,9,12,13,2,11,14,11,12,13,2,11,14,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,8,0,15,10,8,9,1,9,5,14,6,13,2,11,14,13,2,0,15,10,8,9,1,5,14,6,0,15,10,8,0,15,10,10,12,13,2,11,14,2,11,11,4,14,14,4,3,5,14,9,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,11,9,2,11,3,14,11,12,13,10,12,13,2,11,14,15,10,7,0,15,15,10,5,14,13,8,0,15,10,8,9,10,12,13,2,11,14,2,11,13,2,11,14,9,1,6,13,2,11,14,12,13,2,11,14,10,15,10,14,9,15,10,10,0,15,10,8,9,10,12,13,2,11,14,0,15,10,8,0,15,0,15,10,8,9,4,15,10,10,8,9,7,0,15,15,10,5,14,3,10,8,0,15,10,15,10,11,8,9,15,10,4,15,10,10,4,14,14,11,10,6,13,2,11,14,12,13,12,13,2,11,14,8,9,5,14,11,4,15,10,11,15,10,3,15,10,14,11,6,13,2,11,14,2,11,10,13,2,11,14,14,3,4,4,4,10,13,2,11,14,7,0,15,15,10,5,14,0,15,10,8,0,15,10,8,9,13,2,11,14,3,3,11,13,2,11,14,13,2,11,14,15,10,8,9,14,7,0,15,15,10,5,14,6,13,2,11,2,11,1,7,0,15,15,10,7,0,15,15,10,7,0,15,15,10,5,14,13,2,11,14,2,11,11,1,2,11,9,14,7,0,15,15,10,7,0,15,5,14,2,11,6,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,10,10,14,12,13,2,11,14,6,0,15,10,8,0,15,10,8,0,15,10,8,9,14,0,15,10,8,9,14,5,14,6,0,15,10,8,9,10,0,15,10,8,0,15,10,8,0,15,10,8,9,15,10,4,10,7,0,15,15,10,5,14,8,9,10,12,13,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"0\", \"15\"], \"clip_start\": 435.0, \"clip_end\": 439.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,7,0,15,15,10,5,14,2,11,2,11,14,2,11,4,3,3,2,11,9,2,11,6,13,2,11,14,9,1,6,0,15,10,8,0,15,10,8,0,15,10,8,9,12,13,2,11,14,11,8,0,15,9,12,13,2,11,14,11,12,13,2,11,14,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,8,0,15,10,8,9,1,9,5,14,6,13,2,11,14,13,2,0,15,10,8,9,1,5,14,6,0,15,10,8,0,15,10,10,12,13,2,11,14,2,11,11,4,14,14,4,3,5,14,9,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,11,9,2,11,3,14,11,12,13,10,12,13,2,11,14,15,10,7,0,15,15,10,5,14,13,8,0,15,10,8,9,10,12,13,2,11,14,2,11,13,2,11,14,9,1,6,13,2,11,14,12,13,2,11,14,10,15,10,14,9,15,10,10,0,15,10,8,9,10,12,13,2,11,14,0,15,10,8,0,15,0,15,10,8,9,4,15,10,10,8,9,7,0,15,15,10,5,14,3,10,8,0,15,10,15,10,11,8,9,15,10,4,15,10,10,4,14,14,11,10,6,13,2,11,14,12,13,12,13,2,11,14,8,9,5,14,11,4,15,10,11,15,10,3,15,10,14,11,6,13,2,11,14,2,11,10,13,2,11,14,14,3,4,4,4,10,13,2,11,14,7,0,15,15,10,5,14,0,15,10,8,0,15,10,8,9,13,2,11,14,3,3,11,13,2,11,14,13,2,11,14,15,10,8,9,14,7,0,15,15,10,5,14,6,13,2,11,2,11,1,7,0,15,15,10,7,0,15,15,10,7,0,15,15,10,5,14,13,2,11,14,2,11,11,1,2,11,9,14,7,0,15,15,10,7,0,15,5,14,2,11,6,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,10,10,14,12,13,2,11,14,6,0,15,10,8,0,15,10,8,0,15,10,8,9,14,0,15,10,8,9,14,5,14,6,0,15,10,8,9,10,0,15,10,8,0,15,10,8,0,15,10,8,9,15,10,4,10,7,0,15,15,10,5,14,8,9,10,12,13,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 460.0, \"clip_end\": 465.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,7,0,15,15,10,5,14,2,11,2,11,14,2,11,4,3,3,2,11,9,2,11,6,13,2,11,14,9,1,6,0,15,10,8,0,15,10,8,0,15,10,8,9,12,13,2,11,14,11,8,0,15,9,12,13,2,11,14,11,12,13,2,11,14,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,8,0,15,10,8,9,1,9,5,14,6,13,2,11,14,13,2,0,15,10,8,9,1,5,14,6,0,15,10,8,0,15,10,10,12,13,2,11,14,2,11,11,4,14,14,4,3,5,14,9,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,11,9,2,11,3,14,11,12,13,10,12,13,2,11,14,15,10,7,0,15,15,10,5,14,13,8,0,15,10,8,9,10,12,13,2,11,14,2,11,13,2,11,14,9,1,6,13,2,11,14,12,13,2,11,14,10,15,10,14,9,15,10,10,0,15,10,8,9,10,12,13,2,11,14,0,15,10,8,0,15,0,15,10,8,9,4,15,10,10,8,9,7,0,15,15,10,5,14,3,10,8,0,15,10,15,10,11,8,9,15,10,4,15,10,10,4,14,14,11,10,6,13,2,11,14,12,13,12,13,2,11,14,8,9,5,14,11,4,15,10,11,15,10,3,15,10,14,11,6,13,2,11,14,2,11,10,13,2,11,14,14,3,4,4,4,10,13,2,11,14,7,0,15,15,10,5,14,0,15,10,8,0,15,10,8,9,13,2,11,14,3,3,11,13,2,11,14,13,2,11,14,15,10,8,9,14,7,0,15,15,10,5,14,6,13,2,11,2,11,1,7,0,15,15,10,7,0,15,15,10,7,0,15,15,10,5,14,13,2,11,14,2,11,11,1,2,11,9,14,7,0,15,15,10,7,0,15,5,14,2,11,6,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,10,10,14,12,13,2,11,14,6,0,15,10,8,0,15,10,8,0,15,10,8,9,14,0,15,10,8,9,14,5,14,6,0,15,10,8,9,10,0,15,10,8,0,15,10,8,0,15,10,8,9,15,10,4,10,7,0,15,15,10,5,14,8,9,10,12,13,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"10\", \"8\", \"0\"], \"clip_start\": 143.0, \"clip_end\": 147.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,7,0,15,15,10,5,14,2,11,2,11,14,2,11,4,3,3,2,11,9,2,11,6,13,2,11,14,9,1,6,0,15,10,8,0,15,10,8,0,15,10,8,9,12,13,2,11,14,11,8,0,15,9,12,13,2,11,14,11,12,13,2,11,14,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,8,0,15,10,8,9,1,9,5,14,6,13,2,11,14,13,2,0,15,10,8,9,1,5,14,6,0,15,10,8,0,15,10,10,12,13,2,11,14,2,11,11,4,14,14,4,3,5,14,9,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,11,9,2,11,3,14,11,12,13,10,12,13,2,11,14,15,10,7,0,15,15,10,5,14,13,8,0,15,10,8,9,10,12,13,2,11,14,2,11,13,2,11,14,9,1,6,13,2,11,14,12,13,2,11,14,10,15,10,14,9,15,10,10,0,15,10,8,9,10,12,13,2,11,14,0,15,10,8,0,15,0,15,10,8,9,4,15,10,10,8,9,7,0,15,15,10,5,14,3,10,8,0,15,10,15,10,11,8,9,15,10,4,15,10,10,4,14,14,11,10,6,13,2,11,14,12,13,12,13,2,11,14,8,9,5,14,11,4,15,10,11,15,10,3,15,10,14,11,6,13,2,11,14,2,11,10,13,2,11,14,14,3,4,4,4,10,13,2,11,14,7,0,15,15,10,5,14,0,15,10,8,0,15,10,8,9,13,2,11,14,3,3,11,13,2,11,14,13,2,11,14,15,10,8,9,14,7,0,15,15,10,5,14,6,13,2,11,2,11,1,7,0,15,15,10,7,0,15,15,10,7,0,15,15,10,5,14,13,2,11,14,2,11,11,1,2,11,9,14,7,0,15,15,10,7,0,15,5,14,2,11,6,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,10,10,14,12,13,2,11,14,6,0,15,10,8,0,15,10,8,0,15,10,8,9,14,0,15,10,8,9,14,5,14,6,0,15,10,8,9,10,0,15,10,8,0,15,10,8,0,15,10,8,9,15,10,4,10,7,0,15,15,10,5,14,8,9,10,12,13,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"8\"], \"clip_start\": 442.0, \"clip_end\": 445.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,7,0,15,15,10,5,14,2,11,2,11,14,2,11,4,3,3,2,11,9,2,11,6,13,2,11,14,9,1,6,0,15,10,8,0,15,10,8,0,15,10,8,9,12,13,2,11,14,11,8,0,15,9,12,13,2,11,14,11,12,13,2,11,14,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,8,0,15,10,8,9,1,9,5,14,6,13,2,11,14,13,2,0,15,10,8,9,1,5,14,6,0,15,10,8,0,15,10,10,12,13,2,11,14,2,11,11,4,14,14,4,3,5,14,9,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,11,9,2,11,3,14,11,12,13,10,12,13,2,11,14,15,10,7,0,15,15,10,5,14,13,8,0,15,10,8,9,10,12,13,2,11,14,2,11,13,2,11,14,9,1,6,13,2,11,14,12,13,2,11,14,10,15,10,14,9,15,10,10,0,15,10,8,9,10,12,13,2,11,14,0,15,10,8,0,15,0,15,10,8,9,4,15,10,10,8,9,7,0,15,15,10,5,14,3,10,8,0,15,10,15,10,11,8,9,15,10,4,15,10,10,4,14,14,11,10,6,13,2,11,14,12,13,12,13,2,11,14,8,9,5,14,11,4,15,10,11,15,10,3,15,10,14,11,6,13,2,11,14,2,11,10,13,2,11,14,14,3,4,4,4,10,13,2,11,14,7,0,15,15,10,5,14,0,15,10,8,0,15,10,8,9,13,2,11,14,3,3,11,13,2,11,14,13,2,11,14,15,10,8,9,14,7,0,15,15,10,5,14,6,13,2,11,2,11,1,7,0,15,15,10,7,0,15,15,10,7,0,15,15,10,5,14,13,2,11,14,2,11,11,1,2,11,9,14,7,0,15,15,10,7,0,15,5,14,2,11,6,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,10,10,14,12,13,2,11,14,6,0,15,10,8,0,15,10,8,0,15,10,8,9,14,0,15,10,8,9,14,5,14,6,0,15,10,8,9,10,0,15,10,8,0,15,10,8,0,15,10,8,9,15,10,4,10,7,0,15,15,10,5,14,8,9,10,12,13,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"6\", \"13\", \"2\", \"11\"], \"clip_start\": 97.0, \"clip_end\": 102.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,7,0,15,15,10,5,14,2,11,2,11,14,2,11,4,3,3,2,11,9,2,11,6,13,2,11,14,9,1,6,0,15,10,8,0,15,10,8,0,15,10,8,9,12,13,2,11,14,11,8,0,15,9,12,13,2,11,14,11,12,13,2,11,14,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,8,0,15,10,8,9,1,9,5,14,6,13,2,11,14,13,2,0,15,10,8,9,1,5,14,6,0,15,10,8,0,15,10,10,12,13,2,11,14,2,11,11,4,14,14,4,3,5,14,9,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,11,9,2,11,3,14,11,12,13,10,12,13,2,11,14,15,10,7,0,15,15,10,5,14,13,8,0,15,10,8,9,10,12,13,2,11,14,2,11,13,2,11,14,9,1,6,13,2,11,14,12,13,2,11,14,10,15,10,14,9,15,10,10,0,15,10,8,9,10,12,13,2,11,14,0,15,10,8,0,15,0,15,10,8,9,4,15,10,10,8,9,7,0,15,15,10,5,14,3,10,8,0,15,10,15,10,11,8,9,15,10,4,15,10,10,4,14,14,11,10,6,13,2,11,14,12,13,12,13,2,11,14,8,9,5,14,11,4,15,10,11,15,10,3,15,10,14,11,6,13,2,11,14,2,11,10,13,2,11,14,14,3,4,4,4,10,13,2,11,14,7,0,15,15,10,5,14,0,15,10,8,0,15,10,8,9,13,2,11,14,3,3,11,13,2,11,14,13,2,11,14,15,10,8,9,14,7,0,15,15,10,5,14,6,13,2,11,2,11,1,7,0,15,15,10,7,0,15,15,10,7,0,15,15,10,5,14,13,2,11,14,2,11,11,1,2,11,9,14,7,0,15,15,10,7,0,15,5,14,2,11,6,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,10,10,14,12,13,2,11,14,6,0,15,10,8,0,15,10,8,0,15,10,8,9,14,0,15,10,8,9,14,5,14,6,0,15,10,8,9,10,0,15,10,8,0,15,10,8,0,15,10,8,9,15,10,4,10,7,0,15,15,10,5,14,8,9,10,12,13,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"10\", \"8\", \"0\"], \"clip_start\": 341.0, \"clip_end\": 345.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,7,0,15,15,10,5,14,2,11,2,11,14,2,11,4,3,3,2,11,9,2,11,6,13,2,11,14,9,1,6,0,15,10,8,0,15,10,8,0,15,10,8,9,12,13,2,11,14,11,8,0,15,9,12,13,2,11,14,11,12,13,2,11,14,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,8,0,15,10,8,9,1,9,5,14,6,13,2,11,14,13,2,0,15,10,8,9,1,5,14,6,0,15,10,8,0,15,10,10,12,13,2,11,14,2,11,11,4,14,14,4,3,5,14,9,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,11,9,2,11,3,14,11,12,13,10,12,13,2,11,14,15,10,7,0,15,15,10,5,14,13,8,0,15,10,8,9,10,12,13,2,11,14,2,11,13,2,11,14,9,1,6,13,2,11,14,12,13,2,11,14,10,15,10,14,9,15,10,10,0,15,10,8,9,10,12,13,2,11,14,0,15,10,8,0,15,0,15,10,8,9,4,15,10,10,8,9,7,0,15,15,10,5,14,3,10,8,0,15,10,15,10,11,8,9,15,10,4,15,10,10,4,14,14,11,10,6,13,2,11,14,12,13,12,13,2,11,14,8,9,5,14,11,4,15,10,11,15,10,3,15,10,14,11,6,13,2,11,14,2,11,10,13,2,11,14,14,3,4,4,4,10,13,2,11,14,7,0,15,15,10,5,14,0,15,10,8,0,15,10,8,9,13,2,11,14,3,3,11,13,2,11,14,13,2,11,14,15,10,8,9,14,7,0,15,15,10,5,14,6,13,2,11,2,11,1,7,0,15,15,10,7,0,15,15,10,7,0,15,15,10,5,14,13,2,11,14,2,11,11,1,2,11,9,14,7,0,15,15,10,7,0,15,5,14,2,11,6,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,10,10,14,12,13,2,11,14,6,0,15,10,8,0,15,10,8,0,15,10,8,9,14,0,15,10,8,9,14,5,14,6,0,15,10,8,9,10,0,15,10,8,0,15,10,8,0,15,10,8,9,15,10,4,10,7,0,15,15,10,5,14,8,9,10,12,13,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\"], \"clip_start\": 50.0, \"clip_end\": 53.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,7,0,15,15,10,5,14,2,11,2,11,14,2,11,4,3,3,2,11,9,2,11,6,13,2,11,14,9,1,6,0,15,10,8,0,15,10,8,0,15,10,8,9,12,13,2,11,14,11,8,0,15,9,12,13,2,11,14,11,12,13,2,11,14,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,8,0,15,10,8,9,1,9,5,14,6,13,2,11,14,13,2,0,15,10,8,9,1,5,14,6,0,15,10,8,0,15,10,10,12,13,2,11,14,2,11,11,4,14,14,4,3,5,14,9,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,11,9,2,11,3,14,11,12,13,10,12,13,2,11,14,15,10,7,0,15,15,10,5,14,13,8,0,15,10,8,9,10,12,13,2,11,14,2,11,13,2,11,14,9,1,6,13,2,11,14,12,13,2,11,14,10,15,10,14,9,15,10,10,0,15,10,8,9,10,12,13,2,11,14,0,15,10,8,0,15,0,15,10,8,9,4,15,10,10,8,9,7,0,15,15,10,5,14,3,10,8,0,15,10,15,10,11,8,9,15,10,4,15,10,10,4,14,14,11,10,6,13,2,11,14,12,13,12,13,2,11,14,8,9,5,14,11,4,15,10,11,15,10,3,15,10,14,11,6,13,2,11,14,2,11,10,13,2,11,14,14,3,4,4,4,10,13,2,11,14,7,0,15,15,10,5,14,0,15,10,8,0,15,10,8,9,13,2,11,14,3,3,11,13,2,11,14,13,2,11,14,15,10,8,9,14,7,0,15,15,10,5,14,6,13,2,11,2,11,1,7,0,15,15,10,7,0,15,15,10,7,0,15,15,10,5,14,13,2,11,14,2,11,11,1,2,11,9,14,7,0,15,15,10,7,0,15,5,14,2,11,6,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,10,10,14,12,13,2,11,14,6,0,15,10,8,0,15,10,8,0,15,10,8,9,14,0,15,10,8,9,14,5,14,6,0,15,10,8,9,10,0,15,10,8,0,15,10,8,0,15,10,8,9,15,10,4,10,7,0,15,15,10,5,14,8,9,10,12,13,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"10\", \"7\"], \"clip_start\": 390.0, \"clip_end\": 394.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,7,0,15,15,10,5,14,2,11,2,11,14,2,11,4,3,3,2,11,9,2,11,6,13,2,11,14,9,1,6,0,15,10,8,0,15,10,8,0,15,10,8,9,12,13,2,11,14,11,8,0,15,9,12,13,2,11,14,11,12,13,2,11,14,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,8,0,15,10,8,9,1,9,5,14,6,13,2,11,14,13,2,0,15,10,8,9,1,5,14,6,0,15,10,8,0,15,10,10,12,13,2,11,14,2,11,11,4,14,14,4,3,5,14,9,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,11,9,2,11,3,14,11,12,13,10,12,13,2,11,14,15,10,7,0,15,15,10,5,14,13,8,0,15,10,8,9,10,12,13,2,11,14,2,11,13,2,11,14,9,1,6,13,2,11,14,12,13,2,11,14,10,15,10,14,9,15,10,10,0,15,10,8,9,10,12,13,2,11,14,0,15,10,8,0,15,0,15,10,8,9,4,15,10,10,8,9,7,0,15,15,10,5,14,3,10,8,0,15,10,15,10,11,8,9,15,10,4,15,10,10,4,14,14,11,10,6,13,2,11,14,12,13,12,13,2,11,14,8,9,5,14,11,4,15,10,11,15,10,3,15,10,14,11,6,13,2,11,14,2,11,10,13,2,11,14,14,3,4,4,4,10,13,2,11,14,7,0,15,15,10,5,14,0,15,10,8,0,15,10,8,9,13,2,11,14,3,3,11,13,2,11,14,13,2,11,14,15,10,8,9,14,7,0,15,15,10,5,14,6,13,2,11,2,11,1,7,0,15,15,10,7,0,15,15,10,7,0,15,15,10,5,14,13,2,11,14,2,11,11,1,2,11,9,14,7,0,15,15,10,7,0,15,5,14,2,11,6,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,10,10,14,12,13,2,11,14,6,0,15,10,8,0,15,10,8,0,15,10,8,9,14,0,15,10,8,9,14,5,14,6,0,15,10,8,9,10,0,15,10,8,0,15,10,8,0,15,10,8,9,15,10,4,10,7,0,15,15,10,5,14,8,9,10,12,13,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"2\", \"11\", \"14\"], \"clip_start\": 349.0, \"clip_end\": 353.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q14_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,7,0,15,15,10,5,14,2,11,2,11,14,2,11,4,3,3,2,11,9,2,11,6,13,2,11,14,9,1,6,0,15,10,8,0,15,10,8,0,15,10,8,9,12,13,2,11,14,11,8,0,15,9,12,13,2,11,14,11,12,13,2,11,14,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,8,0,15,10,8,9,1,9,5,14,6,13,2,11,14,13,2,0,15,10,8,9,1,5,14,6,0,15,10,8,0,15,10,10,12,13,2,11,14,2,11,11,4,14,14,4,3,5,14,9,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,11,9,2,11,3,14,11,12,13,10,12,13,2,11,14,15,10,7,0,15,15,10,5,14,13,8,0,15,10,8,9,10,12,13,2,11,14,2,11,13,2,11,14,9,1,6,13,2,11,14,12,13,2,11,14,10,15,10,14,9,15,10,10,0,15,10,8,9,10,12,13,2,11,14,0,15,10,8,0,15,0,15,10,8,9,4,15,10,10,8,9,7,0,15,15,10,5,14,3,10,8,0,15,10,15,10,11,8,9,15,10,4,15,10,10,4,14,14,11,10,6,13,2,11,14,12,13,12,13,2,11,14,8,9,5,14,11,4,15,10,11,15,10,3,15,10,14,11,6,13,2,11,14,2,11,10,13,2,11,14,14,3,4,4,4,10,13,2,11,14,7,0,15,15,10,5,14,0,15,10,8,0,15,10,8,9,13,2,11,14,3,3,11,13,2,11,14,13,2,11,14,15,10,8,9,14,7,0,15,15,10,5,14,6,13,2,11,2,11,1,7,0,15,15,10,7,0,15,15,10,7,0,15,15,10,5,14,13,2,11,14,2,11,11,1,2,11,9,14,7,0,15,15,10,7,0,15,5,14,2,11,6,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,10,10,14,12,13,2,11,14,6,0,15,10,8,0,15,10,8,0,15,10,8,9,14,0,15,10,8,9,14,5,14,6,0,15,10,8,9,10,0,15,10,8,0,15,10,8,0,15,10,8,9,15,10,4,10,7,0,15,15,10,5,14,8,9,10,12,13,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"13\", \"2\", \"11\", \"14\"], \"clip_start\": 54.0, \"clip_end\": 60.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q15_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,10,7,0,15,15,10,5,14,2,11,2,11,14,2,11,4,3,3,2,11,9,2,11,6,13,2,11,14,9,1,6,0,15,10,8,0,15,10,8,0,15,10,8,9,12,13,2,11,14,11,8,0,15,9,12,13,2,11,14,11,12,13,2,11,14,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,8,0,15,10,8,9,1,9,5,14,6,13,2,11,14,13,2,0,15,10,8,9,1,5,14,6,0,15,10,8,0,15,10,10,12,13,2,11,14,2,11,11,4,14,14,4,3,5,14,9,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,9,11,9,2,11,3,14,11,12,13,10,12,13,2,11,14,15,10,7,0,15,15,10,5,14,13,8,0,15,10,8,9,10,12,13,2,11,14,2,11,13,2,11,14,9,1,6,13,2,11,14,12,13,2,11,14,10,15,10,14,9,15,10,10,0,15,10,8,9,10,12,13,2,11,14,0,15,10,8,0,15,0,15,10,8,9,4,15,10,10,8,9,7,0,15,15,10,5,14,3,10,8,0,15,10,15,10,11,8,9,15,10,4,15,10,10,4,14,14,11,10,6,13,2,11,14,12,13,12,13,2,11,14,8,9,5,14,11,4,15,10,11,15,10,3,15,10,14,11,6,13,2,11,14,2,11,10,13,2,11,14,14,3,4,4,4,10,13,2,11,14,7,0,15,15,10,5,14,0,15,10,8,0,15,10,8,9,13,2,11,14,3,3,11,13,2,11,14,13,2,11,14,15,10,8,9,14,7,0,15,15,10,5,14,6,13,2,11,2,11,1,7,0,15,15,10,7,0,15,15,10,7,0,15,15,10,5,14,13,2,11,14,2,11,11,1,2,11,9,14,7,0,15,15,10,7,0,15,5,14,2,11,6,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,8,0,15,10,10,10,14,12,13,2,11,14,6,0,15,10,8,0,15,10,8,0,15,10,8,9,14,0,15,10,8,9,14,5,14,6,0,15,10,8,9,10,0,15,10,8,0,15,10,8,0,15,10,8,9,15,10,4,10,7,0,15,15,10,5,14,8,9,10,12,13,9", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"2\", \"7\", \"4\"], \"clip_start\": 424.0, \"clip_end\": 429.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,0,14,0,5,10,5,10,6,4,3,1,3,0,14,10,5,4,0,7,4,9,2,7,4,9,1,2,6,14,3,9,11,4,1,0,11,4,12,15,12,2,7,4,9,14,0,14,0,0,0,4,3,1,14,0,3,10,13,9,4,13,15,12,2,7,4,5,14,10,5,15,12,2,7,4,9,5,9,1,9,13,3,0,11,4,13,14,0,11,4,13,14,0,7,13,15,12,2,7,3,10,5,10,6,4,7,3,0,3,0,7,4,9,3,7,13,0,12,7,4,9,9,8,15,12,14,0,6,4,14,10,6,4,9,10,6,4,5,14,10,6,14,3,9,6,4,1,14,10,13,11,4,1,1,7,4,9,12,15,12,14,10,5,3,10,5,14,0,15,12,14,0,15,12,14,10,5,6,14,3,9,11,4,12,11,4,1,15,12,14,0,13,6,14,3,9,6,4,6,14,3,9,11,4,12,15,12,4,6,4,5,6,4,8,11,4,1,7,4,9,4,12,7,8,15,12,14,0,7,4,9,1,13,6,5,8,11,4,13,14,0,8,11,4,12,7,4,9,15,12,2,15,12,14,0,5,13,7,4,9,4,0,2,7,4,9,12,7,4,9,4,3,1,7,4,9,2,7,4,9,6,4,1,15,12,14,0,13,10,5,5,7,4,9,14,10,6,4,4,5,4,5,15,12,2,7,4,9,4,9,2,7,4,9,13,14,10,6,4,9,12,7,4,9,7,3,7,4,9,9,12,15,12,2,7,4,9,14,0,3,10,6,14,3,9,6,4,3,1,6,4,10,5,1,11,4,13,14,0,9,13,0,2,7,4,9,6,4,8,11,4,13,14,0,5,0,6,14,3,9,11,4,12,15,12,2,6,4,1,4,11,4,1,12,7,15,12,2,7,4,9,11,4,1,12,15,12,6,14,3,9,6,4,4,13,15,12,2,7,7,4,9,13,15,12,2,7,4,9,2,6,4,0,15,12,2,6,4,2,6,14,3,9,11,4,13,14,0,6,4,5,1,1,0,5,5,5,0,5,6,4,6,4,14,0,9,9,13,0,15,12,6,4,11,4,1,3,7,4,9,9,8,11,4,12,15,12,2,6,14,3,9,6,4,13,8,11,4,1,1,15,12,2,7,4,9,12,15,12,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"10\", \"6\", \"4\", \"4\"], \"clip_start\": 294.0, \"clip_end\": 300.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,0,14,0,5,10,5,10,6,4,3,1,3,0,14,10,5,4,0,7,4,9,2,7,4,9,1,2,6,14,3,9,11,4,1,0,11,4,12,15,12,2,7,4,9,14,0,14,0,0,0,4,3,1,14,0,3,10,13,9,4,13,15,12,2,7,4,5,14,10,5,15,12,2,7,4,9,5,9,1,9,13,3,0,11,4,13,14,0,11,4,13,14,0,7,13,15,12,2,7,3,10,5,10,6,4,7,3,0,3,0,7,4,9,3,7,13,0,12,7,4,9,9,8,15,12,14,0,6,4,14,10,6,4,9,10,6,4,5,14,10,6,14,3,9,6,4,1,14,10,13,11,4,1,1,7,4,9,12,15,12,14,10,5,3,10,5,14,0,15,12,14,0,15,12,14,10,5,6,14,3,9,11,4,12,11,4,1,15,12,14,0,13,6,14,3,9,6,4,6,14,3,9,11,4,12,15,12,4,6,4,5,6,4,8,11,4,1,7,4,9,4,12,7,8,15,12,14,0,7,4,9,1,13,6,5,8,11,4,13,14,0,8,11,4,12,7,4,9,15,12,2,15,12,14,0,5,13,7,4,9,4,0,2,7,4,9,12,7,4,9,4,3,1,7,4,9,2,7,4,9,6,4,1,15,12,14,0,13,10,5,5,7,4,9,14,10,6,4,4,5,4,5,15,12,2,7,4,9,4,9,2,7,4,9,13,14,10,6,4,9,12,7,4,9,7,3,7,4,9,9,12,15,12,2,7,4,9,14,0,3,10,6,14,3,9,6,4,3,1,6,4,10,5,1,11,4,13,14,0,9,13,0,2,7,4,9,6,4,8,11,4,13,14,0,5,0,6,14,3,9,11,4,12,15,12,2,6,4,1,4,11,4,1,12,7,15,12,2,7,4,9,11,4,1,12,15,12,6,14,3,9,6,4,4,13,15,12,2,7,7,4,9,13,15,12,2,7,4,9,2,6,4,0,15,12,2,6,4,2,6,14,3,9,11,4,13,14,0,6,4,5,1,1,0,5,5,5,0,5,6,4,6,4,14,0,9,9,13,0,15,12,6,4,11,4,1,3,7,4,9,9,8,11,4,12,15,12,2,6,14,3,9,6,4,13,8,11,4,1,1,15,12,2,7,4,9,12,15,12,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"1\", \"9\", \"13\", \"3\", \"0\"], \"clip_start\": 78.0, \"clip_end\": 84.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,0,14,0,5,10,5,10,6,4,3,1,3,0,14,10,5,4,0,7,4,9,2,7,4,9,1,2,6,14,3,9,11,4,1,0,11,4,12,15,12,2,7,4,9,14,0,14,0,0,0,4,3,1,14,0,3,10,13,9,4,13,15,12,2,7,4,5,14,10,5,15,12,2,7,4,9,5,9,1,9,13,3,0,11,4,13,14,0,11,4,13,14,0,7,13,15,12,2,7,3,10,5,10,6,4,7,3,0,3,0,7,4,9,3,7,13,0,12,7,4,9,9,8,15,12,14,0,6,4,14,10,6,4,9,10,6,4,5,14,10,6,14,3,9,6,4,1,14,10,13,11,4,1,1,7,4,9,12,15,12,14,10,5,3,10,5,14,0,15,12,14,0,15,12,14,10,5,6,14,3,9,11,4,12,11,4,1,15,12,14,0,13,6,14,3,9,6,4,6,14,3,9,11,4,12,15,12,4,6,4,5,6,4,8,11,4,1,7,4,9,4,12,7,8,15,12,14,0,7,4,9,1,13,6,5,8,11,4,13,14,0,8,11,4,12,7,4,9,15,12,2,15,12,14,0,5,13,7,4,9,4,0,2,7,4,9,12,7,4,9,4,3,1,7,4,9,2,7,4,9,6,4,1,15,12,14,0,13,10,5,5,7,4,9,14,10,6,4,4,5,4,5,15,12,2,7,4,9,4,9,2,7,4,9,13,14,10,6,4,9,12,7,4,9,7,3,7,4,9,9,12,15,12,2,7,4,9,14,0,3,10,6,14,3,9,6,4,3,1,6,4,10,5,1,11,4,13,14,0,9,13,0,2,7,4,9,6,4,8,11,4,13,14,0,5,0,6,14,3,9,11,4,12,15,12,2,6,4,1,4,11,4,1,12,7,15,12,2,7,4,9,11,4,1,12,15,12,6,14,3,9,6,4,4,13,15,12,2,7,7,4,9,13,15,12,2,7,4,9,2,6,4,0,15,12,2,6,4,2,6,14,3,9,11,4,13,14,0,6,4,5,1,1,0,5,5,5,0,5,6,4,6,4,14,0,9,9,13,0,15,12,6,4,11,4,1,3,7,4,9,9,8,11,4,12,15,12,2,6,14,3,9,6,4,13,8,11,4,1,1,15,12,2,7,4,9,12,15,12,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"3\"], \"clip_start\": 178.0, \"clip_end\": 181.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,0,14,0,5,10,5,10,6,4,3,1,3,0,14,10,5,4,0,7,4,9,2,7,4,9,1,2,6,14,3,9,11,4,1,0,11,4,12,15,12,2,7,4,9,14,0,14,0,0,0,4,3,1,14,0,3,10,13,9,4,13,15,12,2,7,4,5,14,10,5,15,12,2,7,4,9,5,9,1,9,13,3,0,11,4,13,14,0,11,4,13,14,0,7,13,15,12,2,7,3,10,5,10,6,4,7,3,0,3,0,7,4,9,3,7,13,0,12,7,4,9,9,8,15,12,14,0,6,4,14,10,6,4,9,10,6,4,5,14,10,6,14,3,9,6,4,1,14,10,13,11,4,1,1,7,4,9,12,15,12,14,10,5,3,10,5,14,0,15,12,14,0,15,12,14,10,5,6,14,3,9,11,4,12,11,4,1,15,12,14,0,13,6,14,3,9,6,4,6,14,3,9,11,4,12,15,12,4,6,4,5,6,4,8,11,4,1,7,4,9,4,12,7,8,15,12,14,0,7,4,9,1,13,6,5,8,11,4,13,14,0,8,11,4,12,7,4,9,15,12,2,15,12,14,0,5,13,7,4,9,4,0,2,7,4,9,12,7,4,9,4,3,1,7,4,9,2,7,4,9,6,4,1,15,12,14,0,13,10,5,5,7,4,9,14,10,6,4,4,5,4,5,15,12,2,7,4,9,4,9,2,7,4,9,13,14,10,6,4,9,12,7,4,9,7,3,7,4,9,9,12,15,12,2,7,4,9,14,0,3,10,6,14,3,9,6,4,3,1,6,4,10,5,1,11,4,13,14,0,9,13,0,2,7,4,9,6,4,8,11,4,13,14,0,5,0,6,14,3,9,11,4,12,15,12,2,6,4,1,4,11,4,1,12,7,15,12,2,7,4,9,11,4,1,12,15,12,6,14,3,9,6,4,4,13,15,12,2,7,7,4,9,13,15,12,2,7,4,9,2,6,4,0,15,12,2,6,4,2,6,14,3,9,11,4,13,14,0,6,4,5,1,1,0,5,5,5,0,5,6,4,6,4,14,0,9,9,13,0,15,12,6,4,11,4,1,3,7,4,9,9,8,11,4,12,15,12,2,6,14,3,9,6,4,13,8,11,4,1,1,15,12,2,7,4,9,12,15,12,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"12\", \"2\", \"7\"], \"clip_start\": 302.0, \"clip_end\": 307.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,0,14,0,5,10,5,10,6,4,3,1,3,0,14,10,5,4,0,7,4,9,2,7,4,9,1,2,6,14,3,9,11,4,1,0,11,4,12,15,12,2,7,4,9,14,0,14,0,0,0,4,3,1,14,0,3,10,13,9,4,13,15,12,2,7,4,5,14,10,5,15,12,2,7,4,9,5,9,1,9,13,3,0,11,4,13,14,0,11,4,13,14,0,7,13,15,12,2,7,3,10,5,10,6,4,7,3,0,3,0,7,4,9,3,7,13,0,12,7,4,9,9,8,15,12,14,0,6,4,14,10,6,4,9,10,6,4,5,14,10,6,14,3,9,6,4,1,14,10,13,11,4,1,1,7,4,9,12,15,12,14,10,5,3,10,5,14,0,15,12,14,0,15,12,14,10,5,6,14,3,9,11,4,12,11,4,1,15,12,14,0,13,6,14,3,9,6,4,6,14,3,9,11,4,12,15,12,4,6,4,5,6,4,8,11,4,1,7,4,9,4,12,7,8,15,12,14,0,7,4,9,1,13,6,5,8,11,4,13,14,0,8,11,4,12,7,4,9,15,12,2,15,12,14,0,5,13,7,4,9,4,0,2,7,4,9,12,7,4,9,4,3,1,7,4,9,2,7,4,9,6,4,1,15,12,14,0,13,10,5,5,7,4,9,14,10,6,4,4,5,4,5,15,12,2,7,4,9,4,9,2,7,4,9,13,14,10,6,4,9,12,7,4,9,7,3,7,4,9,9,12,15,12,2,7,4,9,14,0,3,10,6,14,3,9,6,4,3,1,6,4,10,5,1,11,4,13,14,0,9,13,0,2,7,4,9,6,4,8,11,4,13,14,0,5,0,6,14,3,9,11,4,12,15,12,2,6,4,1,4,11,4,1,12,7,15,12,2,7,4,9,11,4,1,12,15,12,6,14,3,9,6,4,4,13,15,12,2,7,7,4,9,13,15,12,2,7,4,9,2,6,4,0,15,12,2,6,4,2,6,14,3,9,11,4,13,14,0,6,4,5,1,1,0,5,5,5,0,5,6,4,6,4,14,0,9,9,13,0,15,12,6,4,11,4,1,3,7,4,9,9,8,11,4,12,15,12,2,6,14,3,9,6,4,13,8,11,4,1,1,15,12,2,7,4,9,12,15,12,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"4\", \"12\", \"15\", \"12\"], \"clip_start\": 203.0, \"clip_end\": 208.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,0,14,0,5,10,5,10,6,4,3,1,3,0,14,10,5,4,0,7,4,9,2,7,4,9,1,2,6,14,3,9,11,4,1,0,11,4,12,15,12,2,7,4,9,14,0,14,0,0,0,4,3,1,14,0,3,10,13,9,4,13,15,12,2,7,4,5,14,10,5,15,12,2,7,4,9,5,9,1,9,13,3,0,11,4,13,14,0,11,4,13,14,0,7,13,15,12,2,7,3,10,5,10,6,4,7,3,0,3,0,7,4,9,3,7,13,0,12,7,4,9,9,8,15,12,14,0,6,4,14,10,6,4,9,10,6,4,5,14,10,6,14,3,9,6,4,1,14,10,13,11,4,1,1,7,4,9,12,15,12,14,10,5,3,10,5,14,0,15,12,14,0,15,12,14,10,5,6,14,3,9,11,4,12,11,4,1,15,12,14,0,13,6,14,3,9,6,4,6,14,3,9,11,4,12,15,12,4,6,4,5,6,4,8,11,4,1,7,4,9,4,12,7,8,15,12,14,0,7,4,9,1,13,6,5,8,11,4,13,14,0,8,11,4,12,7,4,9,15,12,2,15,12,14,0,5,13,7,4,9,4,0,2,7,4,9,12,7,4,9,4,3,1,7,4,9,2,7,4,9,6,4,1,15,12,14,0,13,10,5,5,7,4,9,14,10,6,4,4,5,4,5,15,12,2,7,4,9,4,9,2,7,4,9,13,14,10,6,4,9,12,7,4,9,7,3,7,4,9,9,12,15,12,2,7,4,9,14,0,3,10,6,14,3,9,6,4,3,1,6,4,10,5,1,11,4,13,14,0,9,13,0,2,7,4,9,6,4,8,11,4,13,14,0,5,0,6,14,3,9,11,4,12,15,12,2,6,4,1,4,11,4,1,12,7,15,12,2,7,4,9,11,4,1,12,15,12,6,14,3,9,6,4,4,13,15,12,2,7,7,4,9,13,15,12,2,7,4,9,2,6,4,0,15,12,2,6,4,2,6,14,3,9,11,4,13,14,0,6,4,5,1,1,0,5,5,5,0,5,6,4,6,4,14,0,9,9,13,0,15,12,6,4,11,4,1,3,7,4,9,9,8,11,4,12,15,12,2,6,14,3,9,6,4,13,8,11,4,1,1,15,12,2,7,4,9,12,15,12,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"2\", \"6\", \"14\", \"3\"], \"clip_start\": 437.0, \"clip_end\": 443.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q6_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,0,14,0,5,10,5,10,6,4,3,1,3,0,14,10,5,4,0,7,4,9,2,7,4,9,1,2,6,14,3,9,11,4,1,0,11,4,12,15,12,2,7,4,9,14,0,14,0,0,0,4,3,1,14,0,3,10,13,9,4,13,15,12,2,7,4,5,14,10,5,15,12,2,7,4,9,5,9,1,9,13,3,0,11,4,13,14,0,11,4,13,14,0,7,13,15,12,2,7,3,10,5,10,6,4,7,3,0,3,0,7,4,9,3,7,13,0,12,7,4,9,9,8,15,12,14,0,6,4,14,10,6,4,9,10,6,4,5,14,10,6,14,3,9,6,4,1,14,10,13,11,4,1,1,7,4,9,12,15,12,14,10,5,3,10,5,14,0,15,12,14,0,15,12,14,10,5,6,14,3,9,11,4,12,11,4,1,15,12,14,0,13,6,14,3,9,6,4,6,14,3,9,11,4,12,15,12,4,6,4,5,6,4,8,11,4,1,7,4,9,4,12,7,8,15,12,14,0,7,4,9,1,13,6,5,8,11,4,13,14,0,8,11,4,12,7,4,9,15,12,2,15,12,14,0,5,13,7,4,9,4,0,2,7,4,9,12,7,4,9,4,3,1,7,4,9,2,7,4,9,6,4,1,15,12,14,0,13,10,5,5,7,4,9,14,10,6,4,4,5,4,5,15,12,2,7,4,9,4,9,2,7,4,9,13,14,10,6,4,9,12,7,4,9,7,3,7,4,9,9,12,15,12,2,7,4,9,14,0,3,10,6,14,3,9,6,4,3,1,6,4,10,5,1,11,4,13,14,0,9,13,0,2,7,4,9,6,4,8,11,4,13,14,0,5,0,6,14,3,9,11,4,12,15,12,2,6,4,1,4,11,4,1,12,7,15,12,2,7,4,9,11,4,1,12,15,12,6,14,3,9,6,4,4,13,15,12,2,7,7,4,9,13,15,12,2,7,4,9,2,6,4,0,15,12,2,6,4,2,6,14,3,9,11,4,13,14,0,6,4,5,1,1,0,5,5,5,0,5,6,4,6,4,14,0,9,9,13,0,15,12,6,4,11,4,1,3,7,4,9,9,8,11,4,12,15,12,2,6,14,3,9,6,4,13,8,11,4,1,1,15,12,2,7,4,9,12,15,12,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"2\", \"6\", \"4\", \"1\", \"4\"], \"clip_start\": 385.0, \"clip_end\": 391.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q7_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,0,14,0,5,10,5,10,6,4,3,1,3,0,14,10,5,4,0,7,4,9,2,7,4,9,1,2,6,14,3,9,11,4,1,0,11,4,12,15,12,2,7,4,9,14,0,14,0,0,0,4,3,1,14,0,3,10,13,9,4,13,15,12,2,7,4,5,14,10,5,15,12,2,7,4,9,5,9,1,9,13,3,0,11,4,13,14,0,11,4,13,14,0,7,13,15,12,2,7,3,10,5,10,6,4,7,3,0,3,0,7,4,9,3,7,13,0,12,7,4,9,9,8,15,12,14,0,6,4,14,10,6,4,9,10,6,4,5,14,10,6,14,3,9,6,4,1,14,10,13,11,4,1,1,7,4,9,12,15,12,14,10,5,3,10,5,14,0,15,12,14,0,15,12,14,10,5,6,14,3,9,11,4,12,11,4,1,15,12,14,0,13,6,14,3,9,6,4,6,14,3,9,11,4,12,15,12,4,6,4,5,6,4,8,11,4,1,7,4,9,4,12,7,8,15,12,14,0,7,4,9,1,13,6,5,8,11,4,13,14,0,8,11,4,12,7,4,9,15,12,2,15,12,14,0,5,13,7,4,9,4,0,2,7,4,9,12,7,4,9,4,3,1,7,4,9,2,7,4,9,6,4,1,15,12,14,0,13,10,5,5,7,4,9,14,10,6,4,4,5,4,5,15,12,2,7,4,9,4,9,2,7,4,9,13,14,10,6,4,9,12,7,4,9,7,3,7,4,9,9,12,15,12,2,7,4,9,14,0,3,10,6,14,3,9,6,4,3,1,6,4,10,5,1,11,4,13,14,0,9,13,0,2,7,4,9,6,4,8,11,4,13,14,0,5,0,6,14,3,9,11,4,12,15,12,2,6,4,1,4,11,4,1,12,7,15,12,2,7,4,9,11,4,1,12,15,12,6,14,3,9,6,4,4,13,15,12,2,7,7,4,9,13,15,12,2,7,4,9,2,6,4,0,15,12,2,6,4,2,6,14,3,9,11,4,13,14,0,6,4,5,1,1,0,5,5,5,0,5,6,4,6,4,14,0,9,9,13,0,15,12,6,4,11,4,1,3,7,4,9,9,8,11,4,12,15,12,2,6,14,3,9,6,4,13,8,11,4,1,1,15,12,2,7,4,9,12,15,12,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"10\"], \"clip_start\": 482.0, \"clip_end\": 485.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,0,14,0,5,10,5,10,6,4,3,1,3,0,14,10,5,4,0,7,4,9,2,7,4,9,1,2,6,14,3,9,11,4,1,0,11,4,12,15,12,2,7,4,9,14,0,14,0,0,0,4,3,1,14,0,3,10,13,9,4,13,15,12,2,7,4,5,14,10,5,15,12,2,7,4,9,5,9,1,9,13,3,0,11,4,13,14,0,11,4,13,14,0,7,13,15,12,2,7,3,10,5,10,6,4,7,3,0,3,0,7,4,9,3,7,13,0,12,7,4,9,9,8,15,12,14,0,6,4,14,10,6,4,9,10,6,4,5,14,10,6,14,3,9,6,4,1,14,10,13,11,4,1,1,7,4,9,12,15,12,14,10,5,3,10,5,14,0,15,12,14,0,15,12,14,10,5,6,14,3,9,11,4,12,11,4,1,15,12,14,0,13,6,14,3,9,6,4,6,14,3,9,11,4,12,15,12,4,6,4,5,6,4,8,11,4,1,7,4,9,4,12,7,8,15,12,14,0,7,4,9,1,13,6,5,8,11,4,13,14,0,8,11,4,12,7,4,9,15,12,2,15,12,14,0,5,13,7,4,9,4,0,2,7,4,9,12,7,4,9,4,3,1,7,4,9,2,7,4,9,6,4,1,15,12,14,0,13,10,5,5,7,4,9,14,10,6,4,4,5,4,5,15,12,2,7,4,9,4,9,2,7,4,9,13,14,10,6,4,9,12,7,4,9,7,3,7,4,9,9,12,15,12,2,7,4,9,14,0,3,10,6,14,3,9,6,4,3,1,6,4,10,5,1,11,4,13,14,0,9,13,0,2,7,4,9,6,4,8,11,4,13,14,0,5,0,6,14,3,9,11,4,12,15,12,2,6,4,1,4,11,4,1,12,7,15,12,2,7,4,9,11,4,1,12,15,12,6,14,3,9,6,4,4,13,15,12,2,7,7,4,9,13,15,12,2,7,4,9,2,6,4,0,15,12,2,6,4,2,6,14,3,9,11,4,13,14,0,6,4,5,1,1,0,5,5,5,0,5,6,4,6,4,14,0,9,9,13,0,15,12,6,4,11,4,1,3,7,4,9,9,8,11,4,12,15,12,2,6,14,3,9,6,4,13,8,11,4,1,1,15,12,2,7,4,9,12,15,12,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"7\", \"13\", \"3\"], \"clip_start\": 417.0, \"clip_end\": 422.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,0,14,0,5,10,5,10,6,4,3,1,3,0,14,10,5,4,0,7,4,9,2,7,4,9,1,2,6,14,3,9,11,4,1,0,11,4,12,15,12,2,7,4,9,14,0,14,0,0,0,4,3,1,14,0,3,10,13,9,4,13,15,12,2,7,4,5,14,10,5,15,12,2,7,4,9,5,9,1,9,13,3,0,11,4,13,14,0,11,4,13,14,0,7,13,15,12,2,7,3,10,5,10,6,4,7,3,0,3,0,7,4,9,3,7,13,0,12,7,4,9,9,8,15,12,14,0,6,4,14,10,6,4,9,10,6,4,5,14,10,6,14,3,9,6,4,1,14,10,13,11,4,1,1,7,4,9,12,15,12,14,10,5,3,10,5,14,0,15,12,14,0,15,12,14,10,5,6,14,3,9,11,4,12,11,4,1,15,12,14,0,13,6,14,3,9,6,4,6,14,3,9,11,4,12,15,12,4,6,4,5,6,4,8,11,4,1,7,4,9,4,12,7,8,15,12,14,0,7,4,9,1,13,6,5,8,11,4,13,14,0,8,11,4,12,7,4,9,15,12,2,15,12,14,0,5,13,7,4,9,4,0,2,7,4,9,12,7,4,9,4,3,1,7,4,9,2,7,4,9,6,4,1,15,12,14,0,13,10,5,5,7,4,9,14,10,6,4,4,5,4,5,15,12,2,7,4,9,4,9,2,7,4,9,13,14,10,6,4,9,12,7,4,9,7,3,7,4,9,9,12,15,12,2,7,4,9,14,0,3,10,6,14,3,9,6,4,3,1,6,4,10,5,1,11,4,13,14,0,9,13,0,2,7,4,9,6,4,8,11,4,13,14,0,5,0,6,14,3,9,11,4,12,15,12,2,6,4,1,4,11,4,1,12,7,15,12,2,7,4,9,11,4,1,12,15,12,6,14,3,9,6,4,4,13,15,12,2,7,7,4,9,13,15,12,2,7,4,9,2,6,4,0,15,12,2,6,4,2,6,14,3,9,11,4,13,14,0,6,4,5,1,1,0,5,5,5,0,5,6,4,6,4,14,0,9,9,13,0,15,12,6,4,11,4,1,3,7,4,9,9,8,11,4,12,15,12,2,6,14,3,9,6,4,13,8,11,4,1,1,15,12,2,7,4,9,12,15,12,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"13\", \"3\", \"0\"], \"clip_start\": 79.0, \"clip_end\": 84.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q10_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,0,14,0,5,10,5,10,6,4,3,1,3,0,14,10,5,4,0,7,4,9,2,7,4,9,1,2,6,14,3,9,11,4,1,0,11,4,12,15,12,2,7,4,9,14,0,14,0,0,0,4,3,1,14,0,3,10,13,9,4,13,15,12,2,7,4,5,14,10,5,15,12,2,7,4,9,5,9,1,9,13,3,0,11,4,13,14,0,11,4,13,14,0,7,13,15,12,2,7,3,10,5,10,6,4,7,3,0,3,0,7,4,9,3,7,13,0,12,7,4,9,9,8,15,12,14,0,6,4,14,10,6,4,9,10,6,4,5,14,10,6,14,3,9,6,4,1,14,10,13,11,4,1,1,7,4,9,12,15,12,14,10,5,3,10,5,14,0,15,12,14,0,15,12,14,10,5,6,14,3,9,11,4,12,11,4,1,15,12,14,0,13,6,14,3,9,6,4,6,14,3,9,11,4,12,15,12,4,6,4,5,6,4,8,11,4,1,7,4,9,4,12,7,8,15,12,14,0,7,4,9,1,13,6,5,8,11,4,13,14,0,8,11,4,12,7,4,9,15,12,2,15,12,14,0,5,13,7,4,9,4,0,2,7,4,9,12,7,4,9,4,3,1,7,4,9,2,7,4,9,6,4,1,15,12,14,0,13,10,5,5,7,4,9,14,10,6,4,4,5,4,5,15,12,2,7,4,9,4,9,2,7,4,9,13,14,10,6,4,9,12,7,4,9,7,3,7,4,9,9,12,15,12,2,7,4,9,14,0,3,10,6,14,3,9,6,4,3,1,6,4,10,5,1,11,4,13,14,0,9,13,0,2,7,4,9,6,4,8,11,4,13,14,0,5,0,6,14,3,9,11,4,12,15,12,2,6,4,1,4,11,4,1,12,7,15,12,2,7,4,9,11,4,1,12,15,12,6,14,3,9,6,4,4,13,15,12,2,7,7,4,9,13,15,12,2,7,4,9,2,6,4,0,15,12,2,6,4,2,6,14,3,9,11,4,13,14,0,6,4,5,1,1,0,5,5,5,0,5,6,4,6,4,14,0,9,9,13,0,15,12,6,4,11,4,1,3,7,4,9,9,8,11,4,12,15,12,2,6,14,3,9,6,4,13,8,11,4,1,1,15,12,2,7,4,9,12,15,12,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"15\", \"12\", \"4\", \"6\"], \"clip_start\": 205.0, \"clip_end\": 210.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,0,14,0,5,10,5,10,6,4,3,1,3,0,14,10,5,4,0,7,4,9,2,7,4,9,1,2,6,14,3,9,11,4,1,0,11,4,12,15,12,2,7,4,9,14,0,14,0,0,0,4,3,1,14,0,3,10,13,9,4,13,15,12,2,7,4,5,14,10,5,15,12,2,7,4,9,5,9,1,9,13,3,0,11,4,13,14,0,11,4,13,14,0,7,13,15,12,2,7,3,10,5,10,6,4,7,3,0,3,0,7,4,9,3,7,13,0,12,7,4,9,9,8,15,12,14,0,6,4,14,10,6,4,9,10,6,4,5,14,10,6,14,3,9,6,4,1,14,10,13,11,4,1,1,7,4,9,12,15,12,14,10,5,3,10,5,14,0,15,12,14,0,15,12,14,10,5,6,14,3,9,11,4,12,11,4,1,15,12,14,0,13,6,14,3,9,6,4,6,14,3,9,11,4,12,15,12,4,6,4,5,6,4,8,11,4,1,7,4,9,4,12,7,8,15,12,14,0,7,4,9,1,13,6,5,8,11,4,13,14,0,8,11,4,12,7,4,9,15,12,2,15,12,14,0,5,13,7,4,9,4,0,2,7,4,9,12,7,4,9,4,3,1,7,4,9,2,7,4,9,6,4,1,15,12,14,0,13,10,5,5,7,4,9,14,10,6,4,4,5,4,5,15,12,2,7,4,9,4,9,2,7,4,9,13,14,10,6,4,9,12,7,4,9,7,3,7,4,9,9,12,15,12,2,7,4,9,14,0,3,10,6,14,3,9,6,4,3,1,6,4,10,5,1,11,4,13,14,0,9,13,0,2,7,4,9,6,4,8,11,4,13,14,0,5,0,6,14,3,9,11,4,12,15,12,2,6,4,1,4,11,4,1,12,7,15,12,2,7,4,9,11,4,1,12,15,12,6,14,3,9,6,4,4,13,15,12,2,7,7,4,9,13,15,12,2,7,4,9,2,6,4,0,15,12,2,6,4,2,6,14,3,9,11,4,13,14,0,6,4,5,1,1,0,5,5,5,0,5,6,4,6,4,14,0,9,9,13,0,15,12,6,4,11,4,1,3,7,4,9,9,8,11,4,12,15,12,2,6,14,3,9,6,4,13,8,11,4,1,1,15,12,2,7,4,9,12,15,12,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"11\", \"15\", \"9\"], \"clip_start\": 236.0, \"clip_end\": 241.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,0,14,0,5,10,5,10,6,4,3,1,3,0,14,10,5,4,0,7,4,9,2,7,4,9,1,2,6,14,3,9,11,4,1,0,11,4,12,15,12,2,7,4,9,14,0,14,0,0,0,4,3,1,14,0,3,10,13,9,4,13,15,12,2,7,4,5,14,10,5,15,12,2,7,4,9,5,9,1,9,13,3,0,11,4,13,14,0,11,4,13,14,0,7,13,15,12,2,7,3,10,5,10,6,4,7,3,0,3,0,7,4,9,3,7,13,0,12,7,4,9,9,8,15,12,14,0,6,4,14,10,6,4,9,10,6,4,5,14,10,6,14,3,9,6,4,1,14,10,13,11,4,1,1,7,4,9,12,15,12,14,10,5,3,10,5,14,0,15,12,14,0,15,12,14,10,5,6,14,3,9,11,4,12,11,4,1,15,12,14,0,13,6,14,3,9,6,4,6,14,3,9,11,4,12,15,12,4,6,4,5,6,4,8,11,4,1,7,4,9,4,12,7,8,15,12,14,0,7,4,9,1,13,6,5,8,11,4,13,14,0,8,11,4,12,7,4,9,15,12,2,15,12,14,0,5,13,7,4,9,4,0,2,7,4,9,12,7,4,9,4,3,1,7,4,9,2,7,4,9,6,4,1,15,12,14,0,13,10,5,5,7,4,9,14,10,6,4,4,5,4,5,15,12,2,7,4,9,4,9,2,7,4,9,13,14,10,6,4,9,12,7,4,9,7,3,7,4,9,9,12,15,12,2,7,4,9,14,0,3,10,6,14,3,9,6,4,3,1,6,4,10,5,1,11,4,13,14,0,9,13,0,2,7,4,9,6,4,8,11,4,13,14,0,5,0,6,14,3,9,11,4,12,15,12,2,6,4,1,4,11,4,1,12,7,15,12,2,7,4,9,11,4,1,12,15,12,6,14,3,9,6,4,4,13,15,12,2,7,7,4,9,13,15,12,2,7,4,9,2,6,4,0,15,12,2,6,4,2,6,14,3,9,11,4,13,14,0,6,4,5,1,1,0,5,5,5,0,5,6,4,6,4,14,0,9,9,13,0,15,12,6,4,11,4,1,3,7,4,9,9,8,11,4,12,15,12,2,6,14,3,9,6,4,13,8,11,4,1,1,15,12,2,7,4,9,12,15,12,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"12\"], \"clip_start\": 265.0, \"clip_end\": 268.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,0,14,0,5,10,5,10,6,4,3,1,3,0,14,10,5,4,0,7,4,9,2,7,4,9,1,2,6,14,3,9,11,4,1,0,11,4,12,15,12,2,7,4,9,14,0,14,0,0,0,4,3,1,14,0,3,10,13,9,4,13,15,12,2,7,4,5,14,10,5,15,12,2,7,4,9,5,9,1,9,13,3,0,11,4,13,14,0,11,4,13,14,0,7,13,15,12,2,7,3,10,5,10,6,4,7,3,0,3,0,7,4,9,3,7,13,0,12,7,4,9,9,8,15,12,14,0,6,4,14,10,6,4,9,10,6,4,5,14,10,6,14,3,9,6,4,1,14,10,13,11,4,1,1,7,4,9,12,15,12,14,10,5,3,10,5,14,0,15,12,14,0,15,12,14,10,5,6,14,3,9,11,4,12,11,4,1,15,12,14,0,13,6,14,3,9,6,4,6,14,3,9,11,4,12,15,12,4,6,4,5,6,4,8,11,4,1,7,4,9,4,12,7,8,15,12,14,0,7,4,9,1,13,6,5,8,11,4,13,14,0,8,11,4,12,7,4,9,15,12,2,15,12,14,0,5,13,7,4,9,4,0,2,7,4,9,12,7,4,9,4,3,1,7,4,9,2,7,4,9,6,4,1,15,12,14,0,13,10,5,5,7,4,9,14,10,6,4,4,5,4,5,15,12,2,7,4,9,4,9,2,7,4,9,13,14,10,6,4,9,12,7,4,9,7,3,7,4,9,9,12,15,12,2,7,4,9,14,0,3,10,6,14,3,9,6,4,3,1,6,4,10,5,1,11,4,13,14,0,9,13,0,2,7,4,9,6,4,8,11,4,13,14,0,5,0,6,14,3,9,11,4,12,15,12,2,6,4,1,4,11,4,1,12,7,15,12,2,7,4,9,11,4,1,12,15,12,6,14,3,9,6,4,4,13,15,12,2,7,7,4,9,13,15,12,2,7,4,9,2,6,4,0,15,12,2,6,4,2,6,14,3,9,11,4,13,14,0,6,4,5,1,1,0,5,5,5,0,5,6,4,6,4,14,0,9,9,13,0,15,12,6,4,11,4,1,3,7,4,9,9,8,11,4,12,15,12,2,6,14,3,9,6,4,13,8,11,4,1,1,15,12,2,7,4,9,12,15,12,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"15\", \"12\"], \"clip_start\": 205.0, \"clip_end\": 208.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q14_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,0,14,0,5,10,5,10,6,4,3,1,3,0,14,10,5,4,0,7,4,9,2,7,4,9,1,2,6,14,3,9,11,4,1,0,11,4,12,15,12,2,7,4,9,14,0,14,0,0,0,4,3,1,14,0,3,10,13,9,4,13,15,12,2,7,4,5,14,10,5,15,12,2,7,4,9,5,9,1,9,13,3,0,11,4,13,14,0,11,4,13,14,0,7,13,15,12,2,7,3,10,5,10,6,4,7,3,0,3,0,7,4,9,3,7,13,0,12,7,4,9,9,8,15,12,14,0,6,4,14,10,6,4,9,10,6,4,5,14,10,6,14,3,9,6,4,1,14,10,13,11,4,1,1,7,4,9,12,15,12,14,10,5,3,10,5,14,0,15,12,14,0,15,12,14,10,5,6,14,3,9,11,4,12,11,4,1,15,12,14,0,13,6,14,3,9,6,4,6,14,3,9,11,4,12,15,12,4,6,4,5,6,4,8,11,4,1,7,4,9,4,12,7,8,15,12,14,0,7,4,9,1,13,6,5,8,11,4,13,14,0,8,11,4,12,7,4,9,15,12,2,15,12,14,0,5,13,7,4,9,4,0,2,7,4,9,12,7,4,9,4,3,1,7,4,9,2,7,4,9,6,4,1,15,12,14,0,13,10,5,5,7,4,9,14,10,6,4,4,5,4,5,15,12,2,7,4,9,4,9,2,7,4,9,13,14,10,6,4,9,12,7,4,9,7,3,7,4,9,9,12,15,12,2,7,4,9,14,0,3,10,6,14,3,9,6,4,3,1,6,4,10,5,1,11,4,13,14,0,9,13,0,2,7,4,9,6,4,8,11,4,13,14,0,5,0,6,14,3,9,11,4,12,15,12,2,6,4,1,4,11,4,1,12,7,15,12,2,7,4,9,11,4,1,12,15,12,6,14,3,9,6,4,4,13,15,12,2,7,7,4,9,13,15,12,2,7,4,9,2,6,4,0,15,12,2,6,4,2,6,14,3,9,11,4,13,14,0,6,4,5,1,1,0,5,5,5,0,5,6,4,6,4,14,0,9,9,13,0,15,12,6,4,11,4,1,3,7,4,9,9,8,11,4,12,15,12,2,6,14,3,9,6,4,13,8,11,4,1,1,15,12,2,7,4,9,12,15,12,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"6\", \"3\"], \"clip_start\": 394.0, \"clip_end\": 398.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q15_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,0,14,0,5,10,5,10,6,4,3,1,3,0,14,10,5,4,0,7,4,9,2,7,4,9,1,2,6,14,3,9,11,4,1,0,11,4,12,15,12,2,7,4,9,14,0,14,0,0,0,4,3,1,14,0,3,10,13,9,4,13,15,12,2,7,4,5,14,10,5,15,12,2,7,4,9,5,9,1,9,13,3,0,11,4,13,14,0,11,4,13,14,0,7,13,15,12,2,7,3,10,5,10,6,4,7,3,0,3,0,7,4,9,3,7,13,0,12,7,4,9,9,8,15,12,14,0,6,4,14,10,6,4,9,10,6,4,5,14,10,6,14,3,9,6,4,1,14,10,13,11,4,1,1,7,4,9,12,15,12,14,10,5,3,10,5,14,0,15,12,14,0,15,12,14,10,5,6,14,3,9,11,4,12,11,4,1,15,12,14,0,13,6,14,3,9,6,4,6,14,3,9,11,4,12,15,12,4,6,4,5,6,4,8,11,4,1,7,4,9,4,12,7,8,15,12,14,0,7,4,9,1,13,6,5,8,11,4,13,14,0,8,11,4,12,7,4,9,15,12,2,15,12,14,0,5,13,7,4,9,4,0,2,7,4,9,12,7,4,9,4,3,1,7,4,9,2,7,4,9,6,4,1,15,12,14,0,13,10,5,5,7,4,9,14,10,6,4,4,5,4,5,15,12,2,7,4,9,4,9,2,7,4,9,13,14,10,6,4,9,12,7,4,9,7,3,7,4,9,9,12,15,12,2,7,4,9,14,0,3,10,6,14,3,9,6,4,3,1,6,4,10,5,1,11,4,13,14,0,9,13,0,2,7,4,9,6,4,8,11,4,13,14,0,5,0,6,14,3,9,11,4,12,15,12,2,6,4,1,4,11,4,1,12,7,15,12,2,7,4,9,11,4,1,12,15,12,6,14,3,9,6,4,4,13,15,12,2,7,7,4,9,13,15,12,2,7,4,9,2,6,4,0,15,12,2,6,4,2,6,14,3,9,11,4,13,14,0,6,4,5,1,1,0,5,5,5,0,5,6,4,6,4,14,0,9,9,13,0,15,12,6,4,11,4,1,3,7,4,9,9,8,11,4,12,15,12,2,6,14,3,9,6,4,13,8,11,4,1,1,15,12,2,7,4,9,12,15,12,14,0", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"5\", \"3\", \"0\", \"15\"], \"clip_start\": 196.0, \"clip_end\": 201.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,11,8,8,3,0,14,15,8,4,2,3,4,2,3,5,3,0,6,5,3,12,11,8,1,6,6,4,2,3,5,0,5,3,0,14,11,8,13,11,8,0,13,2,5,3,0,14,15,8,3,0,14,13,1,6,4,2,5,0,5,3,0,14,13,8,11,8,11,8,6,13,1,6,9,4,2,5,3,12,13,2,3,2,3,12,1,6,13,3,12,14,15,8,4,2,3,4,2,3,4,2,3,4,2,3,4,2,3,8,13,1,6,0,5,3,0,14,15,8,15,8,8,15,8,1,6,14,15,5,8,14,0,13,10,1,5,3,0,6,5,8,7,2,3,2,3,2,3,2,3,2,10,2,3,2,3,2,3,2,3,2,3,2,5,0,5,3,12,13,3,12,15,4,2,3,8,0,13,5,3,0,14,9,4,2,3,4,2,3,4,2,3,4,2,3,5,3,0,15,8,8,5,2,3,2,5,8,14,15,2,3,2,3,2,3,2,5,3,12,1,6,6,15,8,6,4,2,3,4,2,3,5,3,0,6,3,12,8,9,4,2,3,4,2,13,15,8,1,6,0,13,13,11,8,9,4,2,3,8,2,3,2,3,2,5,3,0,14,13,5,0,13,2,3,2,5,0,5,0,13,3,0,14,13,7,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,0,14,13,7,2,3,2,5,3,12,13,0,13,14,13,5,0,13,5,3,12,11,8,9,4,2,3,4,2,3,4,2,3,8,7,2,3,2,5,3,12,1,6,4,2,5,3,0,14,13,15,8,8,1,6,14,15,8,15,8,8,1,6,4,2,3,8,0,5,3,12,11,8,3,12,14,15,8,15,8,8,1,6,0,5,3,0,6,4,2,3,4,2,3,4,2,3,8,2,3,2,5,0,5,3,0,15,8,8,1,6,2,3,2,3,2,5,3,8,7,2,3,2,3,2,3,2,5,0,13,14,15,8,15,8,8,9,4,2,3,4,2,5,3,0,15,8,8,6,11,8,8,6,3,12,6,4,2,3,5,0,5,3,0,14,13,0,13,15,8,8,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,9,4", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"12\", \"15\", \"4\"], \"clip_start\": 170.0, \"clip_end\": 175.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,11,8,8,3,0,14,15,8,4,2,3,4,2,3,5,3,0,6,5,3,12,11,8,1,6,6,4,2,3,5,0,5,3,0,14,11,8,13,11,8,0,13,2,5,3,0,14,15,8,3,0,14,13,1,6,4,2,5,0,5,3,0,14,13,8,11,8,11,8,6,13,1,6,9,4,2,5,3,12,13,2,3,2,3,12,1,6,13,3,12,14,15,8,4,2,3,4,2,3,4,2,3,4,2,3,4,2,3,8,13,1,6,0,5,3,0,14,15,8,15,8,8,15,8,1,6,14,15,5,8,14,0,13,10,1,5,3,0,6,5,8,7,2,3,2,3,2,3,2,3,2,10,2,3,2,3,2,3,2,3,2,3,2,5,0,5,3,12,13,3,12,15,4,2,3,8,0,13,5,3,0,14,9,4,2,3,4,2,3,4,2,3,4,2,3,5,3,0,15,8,8,5,2,3,2,5,8,14,15,2,3,2,3,2,3,2,5,3,12,1,6,6,15,8,6,4,2,3,4,2,3,5,3,0,6,3,12,8,9,4,2,3,4,2,13,15,8,1,6,0,13,13,11,8,9,4,2,3,8,2,3,2,3,2,5,3,0,14,13,5,0,13,2,3,2,5,0,5,0,13,3,0,14,13,7,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,0,14,13,7,2,3,2,5,3,12,13,0,13,14,13,5,0,13,5,3,12,11,8,9,4,2,3,4,2,3,4,2,3,8,7,2,3,2,5,3,12,1,6,4,2,5,3,0,14,13,15,8,8,1,6,14,15,8,15,8,8,1,6,4,2,3,8,0,5,3,12,11,8,3,12,14,15,8,15,8,8,1,6,0,5,3,0,6,4,2,3,4,2,3,4,2,3,8,2,3,2,5,0,5,3,0,15,8,8,1,6,2,3,2,3,2,5,3,8,7,2,3,2,3,2,3,2,5,0,13,14,15,8,15,8,8,9,4,2,3,4,2,5,3,0,15,8,8,6,11,8,8,6,3,12,6,4,2,3,5,0,5,3,0,14,13,0,13,15,8,8,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,9,4", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\"], \"clip_start\": 458.0, \"clip_end\": 461.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,11,8,8,3,0,14,15,8,4,2,3,4,2,3,5,3,0,6,5,3,12,11,8,1,6,6,4,2,3,5,0,5,3,0,14,11,8,13,11,8,0,13,2,5,3,0,14,15,8,3,0,14,13,1,6,4,2,5,0,5,3,0,14,13,8,11,8,11,8,6,13,1,6,9,4,2,5,3,12,13,2,3,2,3,12,1,6,13,3,12,14,15,8,4,2,3,4,2,3,4,2,3,4,2,3,4,2,3,8,13,1,6,0,5,3,0,14,15,8,15,8,8,15,8,1,6,14,15,5,8,14,0,13,10,1,5,3,0,6,5,8,7,2,3,2,3,2,3,2,3,2,10,2,3,2,3,2,3,2,3,2,3,2,5,0,5,3,12,13,3,12,15,4,2,3,8,0,13,5,3,0,14,9,4,2,3,4,2,3,4,2,3,4,2,3,5,3,0,15,8,8,5,2,3,2,5,8,14,15,2,3,2,3,2,3,2,5,3,12,1,6,6,15,8,6,4,2,3,4,2,3,5,3,0,6,3,12,8,9,4,2,3,4,2,13,15,8,1,6,0,13,13,11,8,9,4,2,3,8,2,3,2,3,2,5,3,0,14,13,5,0,13,2,3,2,5,0,5,0,13,3,0,14,13,7,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,0,14,13,7,2,3,2,5,3,12,13,0,13,14,13,5,0,13,5,3,12,11,8,9,4,2,3,4,2,3,4,2,3,8,7,2,3,2,5,3,12,1,6,4,2,5,3,0,14,13,15,8,8,1,6,14,15,8,15,8,8,1,6,4,2,3,8,0,5,3,12,11,8,3,12,14,15,8,15,8,8,1,6,0,5,3,0,6,4,2,3,4,2,3,4,2,3,8,2,3,2,5,0,5,3,0,15,8,8,1,6,2,3,2,3,2,5,3,8,7,2,3,2,3,2,3,2,5,0,13,14,15,8,15,8,8,9,4,2,3,4,2,5,3,0,15,8,8,6,11,8,8,6,3,12,6,4,2,3,5,0,5,3,0,14,13,0,13,15,8,8,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,9,4", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 81.0, \"clip_end\": 87.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,11,8,8,3,0,14,15,8,4,2,3,4,2,3,5,3,0,6,5,3,12,11,8,1,6,6,4,2,3,5,0,5,3,0,14,11,8,13,11,8,0,13,2,5,3,0,14,15,8,3,0,14,13,1,6,4,2,5,0,5,3,0,14,13,8,11,8,11,8,6,13,1,6,9,4,2,5,3,12,13,2,3,2,3,12,1,6,13,3,12,14,15,8,4,2,3,4,2,3,4,2,3,4,2,3,4,2,3,8,13,1,6,0,5,3,0,14,15,8,15,8,8,15,8,1,6,14,15,5,8,14,0,13,10,1,5,3,0,6,5,8,7,2,3,2,3,2,3,2,3,2,10,2,3,2,3,2,3,2,3,2,3,2,5,0,5,3,12,13,3,12,15,4,2,3,8,0,13,5,3,0,14,9,4,2,3,4,2,3,4,2,3,4,2,3,5,3,0,15,8,8,5,2,3,2,5,8,14,15,2,3,2,3,2,3,2,5,3,12,1,6,6,15,8,6,4,2,3,4,2,3,5,3,0,6,3,12,8,9,4,2,3,4,2,13,15,8,1,6,0,13,13,11,8,9,4,2,3,8,2,3,2,3,2,5,3,0,14,13,5,0,13,2,3,2,5,0,5,0,13,3,0,14,13,7,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,0,14,13,7,2,3,2,5,3,12,13,0,13,14,13,5,0,13,5,3,12,11,8,9,4,2,3,4,2,3,4,2,3,8,7,2,3,2,5,3,12,1,6,4,2,5,3,0,14,13,15,8,8,1,6,14,15,8,15,8,8,1,6,4,2,3,8,0,5,3,12,11,8,3,12,14,15,8,15,8,8,1,6,0,5,3,0,6,4,2,3,4,2,3,4,2,3,8,2,3,2,5,0,5,3,0,15,8,8,1,6,2,3,2,3,2,5,3,8,7,2,3,2,3,2,3,2,5,0,13,14,15,8,15,8,8,9,4,2,3,4,2,5,3,0,15,8,8,6,11,8,8,6,3,12,6,4,2,3,5,0,5,3,0,14,13,0,13,15,8,8,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,9,4", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"3\", \"4\"], \"clip_start\": 188.0, \"clip_end\": 192.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,11,8,8,3,0,14,15,8,4,2,3,4,2,3,5,3,0,6,5,3,12,11,8,1,6,6,4,2,3,5,0,5,3,0,14,11,8,13,11,8,0,13,2,5,3,0,14,15,8,3,0,14,13,1,6,4,2,5,0,5,3,0,14,13,8,11,8,11,8,6,13,1,6,9,4,2,5,3,12,13,2,3,2,3,12,1,6,13,3,12,14,15,8,4,2,3,4,2,3,4,2,3,4,2,3,4,2,3,8,13,1,6,0,5,3,0,14,15,8,15,8,8,15,8,1,6,14,15,5,8,14,0,13,10,1,5,3,0,6,5,8,7,2,3,2,3,2,3,2,3,2,10,2,3,2,3,2,3,2,3,2,3,2,5,0,5,3,12,13,3,12,15,4,2,3,8,0,13,5,3,0,14,9,4,2,3,4,2,3,4,2,3,4,2,3,5,3,0,15,8,8,5,2,3,2,5,8,14,15,2,3,2,3,2,3,2,5,3,12,1,6,6,15,8,6,4,2,3,4,2,3,5,3,0,6,3,12,8,9,4,2,3,4,2,13,15,8,1,6,0,13,13,11,8,9,4,2,3,8,2,3,2,3,2,5,3,0,14,13,5,0,13,2,3,2,5,0,5,0,13,3,0,14,13,7,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,0,14,13,7,2,3,2,5,3,12,13,0,13,14,13,5,0,13,5,3,12,11,8,9,4,2,3,4,2,3,4,2,3,8,7,2,3,2,5,3,12,1,6,4,2,5,3,0,14,13,15,8,8,1,6,14,15,8,15,8,8,1,6,4,2,3,8,0,5,3,12,11,8,3,12,14,15,8,15,8,8,1,6,0,5,3,0,6,4,2,3,4,2,3,4,2,3,8,2,3,2,5,0,5,3,0,15,8,8,1,6,2,3,2,3,2,5,3,8,7,2,3,2,3,2,3,2,5,0,13,14,15,8,15,8,8,9,4,2,3,4,2,5,3,0,15,8,8,6,11,8,8,6,3,12,6,4,2,3,5,0,5,3,0,14,13,0,13,15,8,8,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,9,4", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"2\", \"3\", \"4\"], \"clip_start\": 185.0, \"clip_end\": 189.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,11,8,8,3,0,14,15,8,4,2,3,4,2,3,5,3,0,6,5,3,12,11,8,1,6,6,4,2,3,5,0,5,3,0,14,11,8,13,11,8,0,13,2,5,3,0,14,15,8,3,0,14,13,1,6,4,2,5,0,5,3,0,14,13,8,11,8,11,8,6,13,1,6,9,4,2,5,3,12,13,2,3,2,3,12,1,6,13,3,12,14,15,8,4,2,3,4,2,3,4,2,3,4,2,3,4,2,3,8,13,1,6,0,5,3,0,14,15,8,15,8,8,15,8,1,6,14,15,5,8,14,0,13,10,1,5,3,0,6,5,8,7,2,3,2,3,2,3,2,3,2,10,2,3,2,3,2,3,2,3,2,3,2,5,0,5,3,12,13,3,12,15,4,2,3,8,0,13,5,3,0,14,9,4,2,3,4,2,3,4,2,3,4,2,3,5,3,0,15,8,8,5,2,3,2,5,8,14,15,2,3,2,3,2,3,2,5,3,12,1,6,6,15,8,6,4,2,3,4,2,3,5,3,0,6,3,12,8,9,4,2,3,4,2,13,15,8,1,6,0,13,13,11,8,9,4,2,3,8,2,3,2,3,2,5,3,0,14,13,5,0,13,2,3,2,5,0,5,0,13,3,0,14,13,7,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,0,14,13,7,2,3,2,5,3,12,13,0,13,14,13,5,0,13,5,3,12,11,8,9,4,2,3,4,2,3,4,2,3,8,7,2,3,2,5,3,12,1,6,4,2,5,3,0,14,13,15,8,8,1,6,14,15,8,15,8,8,1,6,4,2,3,8,0,5,3,12,11,8,3,12,14,15,8,15,8,8,1,6,0,5,3,0,6,4,2,3,4,2,3,4,2,3,8,2,3,2,5,0,5,3,0,15,8,8,1,6,2,3,2,3,2,5,3,8,7,2,3,2,3,2,3,2,5,0,13,14,15,8,15,8,8,9,4,2,3,4,2,5,3,0,15,8,8,6,11,8,8,6,3,12,6,4,2,3,5,0,5,3,0,14,13,0,13,15,8,8,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,9,4", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 473.0, \"clip_end\": 477.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,11,8,8,3,0,14,15,8,4,2,3,4,2,3,5,3,0,6,5,3,12,11,8,1,6,6,4,2,3,5,0,5,3,0,14,11,8,13,11,8,0,13,2,5,3,0,14,15,8,3,0,14,13,1,6,4,2,5,0,5,3,0,14,13,8,11,8,11,8,6,13,1,6,9,4,2,5,3,12,13,2,3,2,3,12,1,6,13,3,12,14,15,8,4,2,3,4,2,3,4,2,3,4,2,3,4,2,3,8,13,1,6,0,5,3,0,14,15,8,15,8,8,15,8,1,6,14,15,5,8,14,0,13,10,1,5,3,0,6,5,8,7,2,3,2,3,2,3,2,3,2,10,2,3,2,3,2,3,2,3,2,3,2,5,0,5,3,12,13,3,12,15,4,2,3,8,0,13,5,3,0,14,9,4,2,3,4,2,3,4,2,3,4,2,3,5,3,0,15,8,8,5,2,3,2,5,8,14,15,2,3,2,3,2,3,2,5,3,12,1,6,6,15,8,6,4,2,3,4,2,3,5,3,0,6,3,12,8,9,4,2,3,4,2,13,15,8,1,6,0,13,13,11,8,9,4,2,3,8,2,3,2,3,2,5,3,0,14,13,5,0,13,2,3,2,5,0,5,0,13,3,0,14,13,7,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,0,14,13,7,2,3,2,5,3,12,13,0,13,14,13,5,0,13,5,3,12,11,8,9,4,2,3,4,2,3,4,2,3,8,7,2,3,2,5,3,12,1,6,4,2,5,3,0,14,13,15,8,8,1,6,14,15,8,15,8,8,1,6,4,2,3,8,0,5,3,12,11,8,3,12,14,15,8,15,8,8,1,6,0,5,3,0,6,4,2,3,4,2,3,4,2,3,8,2,3,2,5,0,5,3,0,15,8,8,1,6,2,3,2,3,2,5,3,8,7,2,3,2,3,2,3,2,5,0,13,14,15,8,15,8,8,9,4,2,3,4,2,5,3,0,15,8,8,6,11,8,8,6,3,12,6,4,2,3,5,0,5,3,0,14,13,0,13,15,8,8,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,9,4", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"2\", \"3\", \"2\"], \"clip_start\": 297.0, \"clip_end\": 302.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,11,8,8,3,0,14,15,8,4,2,3,4,2,3,5,3,0,6,5,3,12,11,8,1,6,6,4,2,3,5,0,5,3,0,14,11,8,13,11,8,0,13,2,5,3,0,14,15,8,3,0,14,13,1,6,4,2,5,0,5,3,0,14,13,8,11,8,11,8,6,13,1,6,9,4,2,5,3,12,13,2,3,2,3,12,1,6,13,3,12,14,15,8,4,2,3,4,2,3,4,2,3,4,2,3,4,2,3,8,13,1,6,0,5,3,0,14,15,8,15,8,8,15,8,1,6,14,15,5,8,14,0,13,10,1,5,3,0,6,5,8,7,2,3,2,3,2,3,2,3,2,10,2,3,2,3,2,3,2,3,2,3,2,5,0,5,3,12,13,3,12,15,4,2,3,8,0,13,5,3,0,14,9,4,2,3,4,2,3,4,2,3,4,2,3,5,3,0,15,8,8,5,2,3,2,5,8,14,15,2,3,2,3,2,3,2,5,3,12,1,6,6,15,8,6,4,2,3,4,2,3,5,3,0,6,3,12,8,9,4,2,3,4,2,13,15,8,1,6,0,13,13,11,8,9,4,2,3,8,2,3,2,3,2,5,3,0,14,13,5,0,13,2,3,2,5,0,5,0,13,3,0,14,13,7,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,0,14,13,7,2,3,2,5,3,12,13,0,13,14,13,5,0,13,5,3,12,11,8,9,4,2,3,4,2,3,4,2,3,8,7,2,3,2,5,3,12,1,6,4,2,5,3,0,14,13,15,8,8,1,6,14,15,8,15,8,8,1,6,4,2,3,8,0,5,3,12,11,8,3,12,14,15,8,15,8,8,1,6,0,5,3,0,6,4,2,3,4,2,3,4,2,3,8,2,3,2,5,0,5,3,0,15,8,8,1,6,2,3,2,3,2,5,3,8,7,2,3,2,3,2,3,2,5,0,13,14,15,8,15,8,8,9,4,2,3,4,2,5,3,0,15,8,8,6,11,8,8,6,3,12,6,4,2,3,5,0,5,3,0,14,13,0,13,15,8,8,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,9,4", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"3\", \"0\", \"14\", \"13\"], \"clip_start\": 61.0, \"clip_end\": 66.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,11,8,8,3,0,14,15,8,4,2,3,4,2,3,5,3,0,6,5,3,12,11,8,1,6,6,4,2,3,5,0,5,3,0,14,11,8,13,11,8,0,13,2,5,3,0,14,15,8,3,0,14,13,1,6,4,2,5,0,5,3,0,14,13,8,11,8,11,8,6,13,1,6,9,4,2,5,3,12,13,2,3,2,3,12,1,6,13,3,12,14,15,8,4,2,3,4,2,3,4,2,3,4,2,3,4,2,3,8,13,1,6,0,5,3,0,14,15,8,15,8,8,15,8,1,6,14,15,5,8,14,0,13,10,1,5,3,0,6,5,8,7,2,3,2,3,2,3,2,3,2,10,2,3,2,3,2,3,2,3,2,3,2,5,0,5,3,12,13,3,12,15,4,2,3,8,0,13,5,3,0,14,9,4,2,3,4,2,3,4,2,3,4,2,3,5,3,0,15,8,8,5,2,3,2,5,8,14,15,2,3,2,3,2,3,2,5,3,12,1,6,6,15,8,6,4,2,3,4,2,3,5,3,0,6,3,12,8,9,4,2,3,4,2,13,15,8,1,6,0,13,13,11,8,9,4,2,3,8,2,3,2,3,2,5,3,0,14,13,5,0,13,2,3,2,5,0,5,0,13,3,0,14,13,7,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,0,14,13,7,2,3,2,5,3,12,13,0,13,14,13,5,0,13,5,3,12,11,8,9,4,2,3,4,2,3,4,2,3,8,7,2,3,2,5,3,12,1,6,4,2,5,3,0,14,13,15,8,8,1,6,14,15,8,15,8,8,1,6,4,2,3,8,0,5,3,12,11,8,3,12,14,15,8,15,8,8,1,6,0,5,3,0,6,4,2,3,4,2,3,4,2,3,8,2,3,2,5,0,5,3,0,15,8,8,1,6,2,3,2,3,2,5,3,8,7,2,3,2,3,2,3,2,5,0,13,14,15,8,15,8,8,9,4,2,3,4,2,5,3,0,15,8,8,6,11,8,8,6,3,12,6,4,2,3,5,0,5,3,0,14,13,0,13,15,8,8,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,9,4", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"8\", \"8\", \"6\"], \"clip_start\": 468.0, \"clip_end\": 473.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q9_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,11,8,8,3,0,14,15,8,4,2,3,4,2,3,5,3,0,6,5,3,12,11,8,1,6,6,4,2,3,5,0,5,3,0,14,11,8,13,11,8,0,13,2,5,3,0,14,15,8,3,0,14,13,1,6,4,2,5,0,5,3,0,14,13,8,11,8,11,8,6,13,1,6,9,4,2,5,3,12,13,2,3,2,3,12,1,6,13,3,12,14,15,8,4,2,3,4,2,3,4,2,3,4,2,3,4,2,3,8,13,1,6,0,5,3,0,14,15,8,15,8,8,15,8,1,6,14,15,5,8,14,0,13,10,1,5,3,0,6,5,8,7,2,3,2,3,2,3,2,3,2,10,2,3,2,3,2,3,2,3,2,3,2,5,0,5,3,12,13,3,12,15,4,2,3,8,0,13,5,3,0,14,9,4,2,3,4,2,3,4,2,3,4,2,3,5,3,0,15,8,8,5,2,3,2,5,8,14,15,2,3,2,3,2,3,2,5,3,12,1,6,6,15,8,6,4,2,3,4,2,3,5,3,0,6,3,12,8,9,4,2,3,4,2,13,15,8,1,6,0,13,13,11,8,9,4,2,3,8,2,3,2,3,2,5,3,0,14,13,5,0,13,2,3,2,5,0,5,0,13,3,0,14,13,7,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,0,14,13,7,2,3,2,5,3,12,13,0,13,14,13,5,0,13,5,3,12,11,8,9,4,2,3,4,2,3,4,2,3,8,7,2,3,2,5,3,12,1,6,4,2,5,3,0,14,13,15,8,8,1,6,14,15,8,15,8,8,1,6,4,2,3,8,0,5,3,12,11,8,3,12,14,15,8,15,8,8,1,6,0,5,3,0,6,4,2,3,4,2,3,4,2,3,8,2,3,2,5,0,5,3,0,15,8,8,1,6,2,3,2,3,2,5,3,8,7,2,3,2,3,2,3,2,5,0,13,14,15,8,15,8,8,9,4,2,3,4,2,5,3,0,15,8,8,6,11,8,8,6,3,12,6,4,2,3,5,0,5,3,0,14,13,0,13,15,8,8,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,9,4", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"10\", \"5\", \"9\"], \"clip_start\": 190.0, \"clip_end\": 195.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q10_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,11,8,8,3,0,14,15,8,4,2,3,4,2,3,5,3,0,6,5,3,12,11,8,1,6,6,4,2,3,5,0,5,3,0,14,11,8,13,11,8,0,13,2,5,3,0,14,15,8,3,0,14,13,1,6,4,2,5,0,5,3,0,14,13,8,11,8,11,8,6,13,1,6,9,4,2,5,3,12,13,2,3,2,3,12,1,6,13,3,12,14,15,8,4,2,3,4,2,3,4,2,3,4,2,3,4,2,3,8,13,1,6,0,5,3,0,14,15,8,15,8,8,15,8,1,6,14,15,5,8,14,0,13,10,1,5,3,0,6,5,8,7,2,3,2,3,2,3,2,3,2,10,2,3,2,3,2,3,2,3,2,3,2,5,0,5,3,12,13,3,12,15,4,2,3,8,0,13,5,3,0,14,9,4,2,3,4,2,3,4,2,3,4,2,3,5,3,0,15,8,8,5,2,3,2,5,8,14,15,2,3,2,3,2,3,2,5,3,12,1,6,6,15,8,6,4,2,3,4,2,3,5,3,0,6,3,12,8,9,4,2,3,4,2,13,15,8,1,6,0,13,13,11,8,9,4,2,3,8,2,3,2,3,2,5,3,0,14,13,5,0,13,2,3,2,5,0,5,0,13,3,0,14,13,7,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,0,14,13,7,2,3,2,5,3,12,13,0,13,14,13,5,0,13,5,3,12,11,8,9,4,2,3,4,2,3,4,2,3,8,7,2,3,2,5,3,12,1,6,4,2,5,3,0,14,13,15,8,8,1,6,14,15,8,15,8,8,1,6,4,2,3,8,0,5,3,12,11,8,3,12,14,15,8,15,8,8,1,6,0,5,3,0,6,4,2,3,4,2,3,4,2,3,8,2,3,2,5,0,5,3,0,15,8,8,1,6,2,3,2,3,2,5,3,8,7,2,3,2,3,2,3,2,5,0,13,14,15,8,15,8,8,9,4,2,3,4,2,5,3,0,15,8,8,6,11,8,8,6,3,12,6,4,2,3,5,0,5,3,0,14,13,0,13,15,8,8,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,9,4", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"2\", \"3\", \"2\"], \"clip_start\": 261.0, \"clip_end\": 266.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,11,8,8,3,0,14,15,8,4,2,3,4,2,3,5,3,0,6,5,3,12,11,8,1,6,6,4,2,3,5,0,5,3,0,14,11,8,13,11,8,0,13,2,5,3,0,14,15,8,3,0,14,13,1,6,4,2,5,0,5,3,0,14,13,8,11,8,11,8,6,13,1,6,9,4,2,5,3,12,13,2,3,2,3,12,1,6,13,3,12,14,15,8,4,2,3,4,2,3,4,2,3,4,2,3,4,2,3,8,13,1,6,0,5,3,0,14,15,8,15,8,8,15,8,1,6,14,15,5,8,14,0,13,10,1,5,3,0,6,5,8,7,2,3,2,3,2,3,2,3,2,10,2,3,2,3,2,3,2,3,2,3,2,5,0,5,3,12,13,3,12,15,4,2,3,8,0,13,5,3,0,14,9,4,2,3,4,2,3,4,2,3,4,2,3,5,3,0,15,8,8,5,2,3,2,5,8,14,15,2,3,2,3,2,3,2,5,3,12,1,6,6,15,8,6,4,2,3,4,2,3,5,3,0,6,3,12,8,9,4,2,3,4,2,13,15,8,1,6,0,13,13,11,8,9,4,2,3,8,2,3,2,3,2,5,3,0,14,13,5,0,13,2,3,2,5,0,5,0,13,3,0,14,13,7,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,0,14,13,7,2,3,2,5,3,12,13,0,13,14,13,5,0,13,5,3,12,11,8,9,4,2,3,4,2,3,4,2,3,8,7,2,3,2,5,3,12,1,6,4,2,5,3,0,14,13,15,8,8,1,6,14,15,8,15,8,8,1,6,4,2,3,8,0,5,3,12,11,8,3,12,14,15,8,15,8,8,1,6,0,5,3,0,6,4,2,3,4,2,3,4,2,3,8,2,3,2,5,0,5,3,0,15,8,8,1,6,2,3,2,3,2,5,3,8,7,2,3,2,3,2,3,2,5,0,13,14,15,8,15,8,8,9,4,2,3,4,2,5,3,0,15,8,8,6,11,8,8,6,3,12,6,4,2,3,5,0,5,3,0,14,13,0,13,15,8,8,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,9,4", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"2\", \"12\", \"9\", \"4\"], \"clip_start\": 121.0, \"clip_end\": 127.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,11,8,8,3,0,14,15,8,4,2,3,4,2,3,5,3,0,6,5,3,12,11,8,1,6,6,4,2,3,5,0,5,3,0,14,11,8,13,11,8,0,13,2,5,3,0,14,15,8,3,0,14,13,1,6,4,2,5,0,5,3,0,14,13,8,11,8,11,8,6,13,1,6,9,4,2,5,3,12,13,2,3,2,3,12,1,6,13,3,12,14,15,8,4,2,3,4,2,3,4,2,3,4,2,3,4,2,3,8,13,1,6,0,5,3,0,14,15,8,15,8,8,15,8,1,6,14,15,5,8,14,0,13,10,1,5,3,0,6,5,8,7,2,3,2,3,2,3,2,3,2,10,2,3,2,3,2,3,2,3,2,3,2,5,0,5,3,12,13,3,12,15,4,2,3,8,0,13,5,3,0,14,9,4,2,3,4,2,3,4,2,3,4,2,3,5,3,0,15,8,8,5,2,3,2,5,8,14,15,2,3,2,3,2,3,2,5,3,12,1,6,6,15,8,6,4,2,3,4,2,3,5,3,0,6,3,12,8,9,4,2,3,4,2,13,15,8,1,6,0,13,13,11,8,9,4,2,3,8,2,3,2,3,2,5,3,0,14,13,5,0,13,2,3,2,5,0,5,0,13,3,0,14,13,7,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,0,14,13,7,2,3,2,5,3,12,13,0,13,14,13,5,0,13,5,3,12,11,8,9,4,2,3,4,2,3,4,2,3,8,7,2,3,2,5,3,12,1,6,4,2,5,3,0,14,13,15,8,8,1,6,14,15,8,15,8,8,1,6,4,2,3,8,0,5,3,12,11,8,3,12,14,15,8,15,8,8,1,6,0,5,3,0,6,4,2,3,4,2,3,4,2,3,8,2,3,2,5,0,5,3,0,15,8,8,1,6,2,3,2,3,2,5,3,8,7,2,3,2,3,2,3,2,5,0,13,14,15,8,15,8,8,9,4,2,3,4,2,5,3,0,15,8,8,6,11,8,8,6,3,12,6,4,2,3,5,0,5,3,0,14,13,0,13,15,8,8,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,9,4", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"3\", \"2\", \"3\", \"2\"], \"clip_start\": 441.0, \"clip_end\": 447.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,11,8,8,3,0,14,15,8,4,2,3,4,2,3,5,3,0,6,5,3,12,11,8,1,6,6,4,2,3,5,0,5,3,0,14,11,8,13,11,8,0,13,2,5,3,0,14,15,8,3,0,14,13,1,6,4,2,5,0,5,3,0,14,13,8,11,8,11,8,6,13,1,6,9,4,2,5,3,12,13,2,3,2,3,12,1,6,13,3,12,14,15,8,4,2,3,4,2,3,4,2,3,4,2,3,4,2,3,8,13,1,6,0,5,3,0,14,15,8,15,8,8,15,8,1,6,14,15,5,8,14,0,13,10,1,5,3,0,6,5,8,7,2,3,2,3,2,3,2,3,2,10,2,3,2,3,2,3,2,3,2,3,2,5,0,5,3,12,13,3,12,15,4,2,3,8,0,13,5,3,0,14,9,4,2,3,4,2,3,4,2,3,4,2,3,5,3,0,15,8,8,5,2,3,2,5,8,14,15,2,3,2,3,2,3,2,5,3,12,1,6,6,15,8,6,4,2,3,4,2,3,5,3,0,6,3,12,8,9,4,2,3,4,2,13,15,8,1,6,0,13,13,11,8,9,4,2,3,8,2,3,2,3,2,5,3,0,14,13,5,0,13,2,3,2,5,0,5,0,13,3,0,14,13,7,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,0,14,13,7,2,3,2,5,3,12,13,0,13,14,13,5,0,13,5,3,12,11,8,9,4,2,3,4,2,3,4,2,3,8,7,2,3,2,5,3,12,1,6,4,2,5,3,0,14,13,15,8,8,1,6,14,15,8,15,8,8,1,6,4,2,3,8,0,5,3,12,11,8,3,12,14,15,8,15,8,8,1,6,0,5,3,0,6,4,2,3,4,2,3,4,2,3,8,2,3,2,5,0,5,3,0,15,8,8,1,6,2,3,2,3,2,5,3,8,7,2,3,2,3,2,3,2,5,0,13,14,15,8,15,8,8,9,4,2,3,4,2,5,3,0,15,8,8,6,11,8,8,6,3,12,6,4,2,3,5,0,5,3,0,14,13,0,13,15,8,8,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,9,4", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"5\", \"3\"], \"clip_start\": 18.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,11,8,8,3,0,14,15,8,4,2,3,4,2,3,5,3,0,6,5,3,12,11,8,1,6,6,4,2,3,5,0,5,3,0,14,11,8,13,11,8,0,13,2,5,3,0,14,15,8,3,0,14,13,1,6,4,2,5,0,5,3,0,14,13,8,11,8,11,8,6,13,1,6,9,4,2,5,3,12,13,2,3,2,3,12,1,6,13,3,12,14,15,8,4,2,3,4,2,3,4,2,3,4,2,3,4,2,3,8,13,1,6,0,5,3,0,14,15,8,15,8,8,15,8,1,6,14,15,5,8,14,0,13,10,1,5,3,0,6,5,8,7,2,3,2,3,2,3,2,3,2,10,2,3,2,3,2,3,2,3,2,3,2,5,0,5,3,12,13,3,12,15,4,2,3,8,0,13,5,3,0,14,9,4,2,3,4,2,3,4,2,3,4,2,3,5,3,0,15,8,8,5,2,3,2,5,8,14,15,2,3,2,3,2,3,2,5,3,12,1,6,6,15,8,6,4,2,3,4,2,3,5,3,0,6,3,12,8,9,4,2,3,4,2,13,15,8,1,6,0,13,13,11,8,9,4,2,3,8,2,3,2,3,2,5,3,0,14,13,5,0,13,2,3,2,5,0,5,0,13,3,0,14,13,7,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,0,14,13,7,2,3,2,5,3,12,13,0,13,14,13,5,0,13,5,3,12,11,8,9,4,2,3,4,2,3,4,2,3,8,7,2,3,2,5,3,12,1,6,4,2,5,3,0,14,13,15,8,8,1,6,14,15,8,15,8,8,1,6,4,2,3,8,0,5,3,12,11,8,3,12,14,15,8,15,8,8,1,6,0,5,3,0,6,4,2,3,4,2,3,4,2,3,8,2,3,2,5,0,5,3,0,15,8,8,1,6,2,3,2,3,2,5,3,8,7,2,3,2,3,2,3,2,5,0,13,14,15,8,15,8,8,9,4,2,3,4,2,5,3,0,15,8,8,6,11,8,8,6,3,12,6,4,2,3,5,0,5,3,0,14,13,0,13,15,8,8,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,9,4", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"9\", \"9\"], \"clip_start\": 275.0, \"clip_end\": 278.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q15_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,13,11,8,8,3,0,14,15,8,4,2,3,4,2,3,5,3,0,6,5,3,12,11,8,1,6,6,4,2,3,5,0,5,3,0,14,11,8,13,11,8,0,13,2,5,3,0,14,15,8,3,0,14,13,1,6,4,2,5,0,5,3,0,14,13,8,11,8,11,8,6,13,1,6,9,4,2,5,3,12,13,2,3,2,3,12,1,6,13,3,12,14,15,8,4,2,3,4,2,3,4,2,3,4,2,3,4,2,3,8,13,1,6,0,5,3,0,14,15,8,15,8,8,15,8,1,6,14,15,5,8,14,0,13,10,1,5,3,0,6,5,8,7,2,3,2,3,2,3,2,3,2,10,2,3,2,3,2,3,2,3,2,3,2,5,0,5,3,12,13,3,12,15,4,2,3,8,0,13,5,3,0,14,9,4,2,3,4,2,3,4,2,3,4,2,3,5,3,0,15,8,8,5,2,3,2,5,8,14,15,2,3,2,3,2,3,2,5,3,12,1,6,6,15,8,6,4,2,3,4,2,3,5,3,0,6,3,12,8,9,4,2,3,4,2,13,15,8,1,6,0,13,13,11,8,9,4,2,3,8,2,3,2,3,2,5,3,0,14,13,5,0,13,2,3,2,5,0,5,0,13,3,0,14,13,7,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,0,14,13,7,2,3,2,5,3,12,13,0,13,14,13,5,0,13,5,3,12,11,8,9,4,2,3,4,2,3,4,2,3,8,7,2,3,2,5,3,12,1,6,4,2,5,3,0,14,13,15,8,8,1,6,14,15,8,15,8,8,1,6,4,2,3,8,0,5,3,12,11,8,3,12,14,15,8,15,8,8,1,6,0,5,3,0,6,4,2,3,4,2,3,4,2,3,8,2,3,2,5,0,5,3,0,15,8,8,1,6,2,3,2,3,2,5,3,8,7,2,3,2,3,2,3,2,5,0,13,14,15,8,15,8,8,9,4,2,3,4,2,5,3,0,15,8,8,6,11,8,8,6,3,12,6,4,2,3,5,0,5,3,0,14,13,0,13,15,8,8,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,9,4", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,1,0,13,9,6,3,1,0,0,10,14,3,1,0,15,2,8,2,7,10,1,0,12,10,0,14,3,1,15,6,3,7,4,9,15,6,3,1,4,15,8,2,3,2,7,10,2,7,4,5,9,1,4,13,6,3,1,0,6,3,7,4,15,6,3,7,10,2,7,10,2,7,4,7,15,15,6,3,7,10,1,0,15,2,7,10,1,4,13,9,6,3,10,13,15,8,2,7,10,1,0,12,15,8,2,7,4,15,6,1,0,15,2,8,2,8,2,7,10,1,4,3,2,11,14,3,1,15,6,3,1,15,2,8,2,3,2,8,2,7,6,3,1,0,2,3,1,0,10,6,3,7,4,12,7,10,1,15,8,2,7,10,2,7,10,1,0,11,14,13,15,8,2,8,2,7,10,1,4,15,2,7,10,2,7,10,1,0,6,3,7,10,1,4,13,11,14,0,1,15,2,7,10,1,4,13,15,8,2,7,10,1,15,8,2,7,4,15,6,13,9,6,3,7,15,15,14,3,1,4,13,9,6,3,7,3,1,4,13,15,8,2,7,15,15,6,3,14,3,1,4,13,9,6,3,7,10,2,3,2,7,10,1,4,13,6,3,7,4,12,1,15,8,2,7,10,1,15,6,3,1,0,12,11,7,10,1,4,13,15,8,2,3,2,7,15,15,6,3,10,1,4,13,15,2,7,10,1,4,13,9,6,3,10,12,6,3,7,10,1,0,15,6,3,7,15,15,8,2,8,2,7,15,15,2,7,10,1,0,10,11,14,13,15,2,8,2,7,10,4,8,2,7,10,2,7,14,3,1,0,0,8,2,7,4,15,2,7,10,2,7,9,4,8,2,5,9,11,14,12,8,2,3,1,4,13,9,6,2,3,1,0,14,3,1,4,15,2,3,1,15,6,3,1,4,13,11,14,0,13,15,6,3,7,4,12,7,15,15,2,7,4,6,3,7,10,1,0,11,14,0,2,10,6,3,10,14,3,9,4,14,13,15,2,7,10,1,4,13,15,8,2,3,2,8,2,7,10,1,0,9,4,0,14,13,9,6,3,7,10,2,7,10,1,4,13,6,3,10,11,14,0,11,14,13,6,3,1,4,15,8,2,7,8,2,8,2,3,1,4,13,6,3,10,14,14,3,1,0,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"7\", \"10\", \"1\", \"4\"], \"clip_start\": 471.0, \"clip_end\": 477.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,1,0,13,9,6,3,1,0,0,10,14,3,1,0,15,2,8,2,7,10,1,0,12,10,0,14,3,1,15,6,3,7,4,9,15,6,3,1,4,15,8,2,3,2,7,10,2,7,4,5,9,1,4,13,6,3,1,0,6,3,7,4,15,6,3,7,10,2,7,10,2,7,4,7,15,15,6,3,7,10,1,0,15,2,7,10,1,4,13,9,6,3,10,13,15,8,2,7,10,1,0,12,15,8,2,7,4,15,6,1,0,15,2,8,2,8,2,7,10,1,4,3,2,11,14,3,1,15,6,3,1,15,2,8,2,3,2,8,2,7,6,3,1,0,2,3,1,0,10,6,3,7,4,12,7,10,1,15,8,2,7,10,2,7,10,1,0,11,14,13,15,8,2,8,2,7,10,1,4,15,2,7,10,2,7,10,1,0,6,3,7,10,1,4,13,11,14,0,1,15,2,7,10,1,4,13,15,8,2,7,10,1,15,8,2,7,4,15,6,13,9,6,3,7,15,15,14,3,1,4,13,9,6,3,7,3,1,4,13,15,8,2,7,15,15,6,3,14,3,1,4,13,9,6,3,7,10,2,3,2,7,10,1,4,13,6,3,7,4,12,1,15,8,2,7,10,1,15,6,3,1,0,12,11,7,10,1,4,13,15,8,2,3,2,7,15,15,6,3,10,1,4,13,15,2,7,10,1,4,13,9,6,3,10,12,6,3,7,10,1,0,15,6,3,7,15,15,8,2,8,2,7,15,15,2,7,10,1,0,10,11,14,13,15,2,8,2,7,10,4,8,2,7,10,2,7,14,3,1,0,0,8,2,7,4,15,2,7,10,2,7,9,4,8,2,5,9,11,14,12,8,2,3,1,4,13,9,6,2,3,1,0,14,3,1,4,15,2,3,1,15,6,3,1,4,13,11,14,0,13,15,6,3,7,4,12,7,15,15,2,7,4,6,3,7,10,1,0,11,14,0,2,10,6,3,10,14,3,9,4,14,13,15,2,7,10,1,4,13,15,8,2,3,2,8,2,7,10,1,0,9,4,0,14,13,9,6,3,7,10,2,7,10,1,4,13,6,3,10,11,14,0,11,14,13,6,3,1,4,15,8,2,7,8,2,8,2,3,1,4,13,6,3,10,14,14,3,1,0,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"10\"], \"clip_start\": 457.0, \"clip_end\": 460.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,1,0,13,9,6,3,1,0,0,10,14,3,1,0,15,2,8,2,7,10,1,0,12,10,0,14,3,1,15,6,3,7,4,9,15,6,3,1,4,15,8,2,3,2,7,10,2,7,4,5,9,1,4,13,6,3,1,0,6,3,7,4,15,6,3,7,10,2,7,10,2,7,4,7,15,15,6,3,7,10,1,0,15,2,7,10,1,4,13,9,6,3,10,13,15,8,2,7,10,1,0,12,15,8,2,7,4,15,6,1,0,15,2,8,2,8,2,7,10,1,4,3,2,11,14,3,1,15,6,3,1,15,2,8,2,3,2,8,2,7,6,3,1,0,2,3,1,0,10,6,3,7,4,12,7,10,1,15,8,2,7,10,2,7,10,1,0,11,14,13,15,8,2,8,2,7,10,1,4,15,2,7,10,2,7,10,1,0,6,3,7,10,1,4,13,11,14,0,1,15,2,7,10,1,4,13,15,8,2,7,10,1,15,8,2,7,4,15,6,13,9,6,3,7,15,15,14,3,1,4,13,9,6,3,7,3,1,4,13,15,8,2,7,15,15,6,3,14,3,1,4,13,9,6,3,7,10,2,3,2,7,10,1,4,13,6,3,7,4,12,1,15,8,2,7,10,1,15,6,3,1,0,12,11,7,10,1,4,13,15,8,2,3,2,7,15,15,6,3,10,1,4,13,15,2,7,10,1,4,13,9,6,3,10,12,6,3,7,10,1,0,15,6,3,7,15,15,8,2,8,2,7,15,15,2,7,10,1,0,10,11,14,13,15,2,8,2,7,10,4,8,2,7,10,2,7,14,3,1,0,0,8,2,7,4,15,2,7,10,2,7,9,4,8,2,5,9,11,14,12,8,2,3,1,4,13,9,6,2,3,1,0,14,3,1,4,15,2,3,1,15,6,3,1,4,13,11,14,0,13,15,6,3,7,4,12,7,15,15,2,7,4,6,3,7,10,1,0,11,14,0,2,10,6,3,10,14,3,9,4,14,13,15,2,7,10,1,4,13,15,8,2,3,2,8,2,7,10,1,0,9,4,0,14,13,9,6,3,7,10,2,7,10,1,4,13,6,3,10,11,14,0,11,14,13,6,3,1,4,15,8,2,7,8,2,8,2,3,1,4,13,6,3,10,14,14,3,1,0,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"10\"], \"clip_start\": 45.0, \"clip_end\": 48.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,1,0,13,9,6,3,1,0,0,10,14,3,1,0,15,2,8,2,7,10,1,0,12,10,0,14,3,1,15,6,3,7,4,9,15,6,3,1,4,15,8,2,3,2,7,10,2,7,4,5,9,1,4,13,6,3,1,0,6,3,7,4,15,6,3,7,10,2,7,10,2,7,4,7,15,15,6,3,7,10,1,0,15,2,7,10,1,4,13,9,6,3,10,13,15,8,2,7,10,1,0,12,15,8,2,7,4,15,6,1,0,15,2,8,2,8,2,7,10,1,4,3,2,11,14,3,1,15,6,3,1,15,2,8,2,3,2,8,2,7,6,3,1,0,2,3,1,0,10,6,3,7,4,12,7,10,1,15,8,2,7,10,2,7,10,1,0,11,14,13,15,8,2,8,2,7,10,1,4,15,2,7,10,2,7,10,1,0,6,3,7,10,1,4,13,11,14,0,1,15,2,7,10,1,4,13,15,8,2,7,10,1,15,8,2,7,4,15,6,13,9,6,3,7,15,15,14,3,1,4,13,9,6,3,7,3,1,4,13,15,8,2,7,15,15,6,3,14,3,1,4,13,9,6,3,7,10,2,3,2,7,10,1,4,13,6,3,7,4,12,1,15,8,2,7,10,1,15,6,3,1,0,12,11,7,10,1,4,13,15,8,2,3,2,7,15,15,6,3,10,1,4,13,15,2,7,10,1,4,13,9,6,3,10,12,6,3,7,10,1,0,15,6,3,7,15,15,8,2,8,2,7,15,15,2,7,10,1,0,10,11,14,13,15,2,8,2,7,10,4,8,2,7,10,2,7,14,3,1,0,0,8,2,7,4,15,2,7,10,2,7,9,4,8,2,5,9,11,14,12,8,2,3,1,4,13,9,6,2,3,1,0,14,3,1,4,15,2,3,1,15,6,3,1,4,13,11,14,0,13,15,6,3,7,4,12,7,15,15,2,7,4,6,3,7,10,1,0,11,14,0,2,10,6,3,10,14,3,9,4,14,13,15,2,7,10,1,4,13,15,8,2,3,2,8,2,7,10,1,0,9,4,0,14,13,9,6,3,7,10,2,7,10,1,4,13,6,3,10,11,14,0,11,14,13,6,3,1,4,15,8,2,7,8,2,8,2,3,1,4,13,6,3,10,14,14,3,1,0,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"13\"], \"clip_start\": 309.0, \"clip_end\": 312.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,1,0,13,9,6,3,1,0,0,10,14,3,1,0,15,2,8,2,7,10,1,0,12,10,0,14,3,1,15,6,3,7,4,9,15,6,3,1,4,15,8,2,3,2,7,10,2,7,4,5,9,1,4,13,6,3,1,0,6,3,7,4,15,6,3,7,10,2,7,10,2,7,4,7,15,15,6,3,7,10,1,0,15,2,7,10,1,4,13,9,6,3,10,13,15,8,2,7,10,1,0,12,15,8,2,7,4,15,6,1,0,15,2,8,2,8,2,7,10,1,4,3,2,11,14,3,1,15,6,3,1,15,2,8,2,3,2,8,2,7,6,3,1,0,2,3,1,0,10,6,3,7,4,12,7,10,1,15,8,2,7,10,2,7,10,1,0,11,14,13,15,8,2,8,2,7,10,1,4,15,2,7,10,2,7,10,1,0,6,3,7,10,1,4,13,11,14,0,1,15,2,7,10,1,4,13,15,8,2,7,10,1,15,8,2,7,4,15,6,13,9,6,3,7,15,15,14,3,1,4,13,9,6,3,7,3,1,4,13,15,8,2,7,15,15,6,3,14,3,1,4,13,9,6,3,7,10,2,3,2,7,10,1,4,13,6,3,7,4,12,1,15,8,2,7,10,1,15,6,3,1,0,12,11,7,10,1,4,13,15,8,2,3,2,7,15,15,6,3,10,1,4,13,15,2,7,10,1,4,13,9,6,3,10,12,6,3,7,10,1,0,15,6,3,7,15,15,8,2,8,2,7,15,15,2,7,10,1,0,10,11,14,13,15,2,8,2,7,10,4,8,2,7,10,2,7,14,3,1,0,0,8,2,7,4,15,2,7,10,2,7,9,4,8,2,5,9,11,14,12,8,2,3,1,4,13,9,6,2,3,1,0,14,3,1,4,15,2,3,1,15,6,3,1,4,13,11,14,0,13,15,6,3,7,4,12,7,15,15,2,7,4,6,3,7,10,1,0,11,14,0,2,10,6,3,10,14,3,9,4,14,13,15,2,7,10,1,4,13,15,8,2,3,2,8,2,7,10,1,0,9,4,0,14,13,9,6,3,7,10,2,7,10,1,4,13,6,3,10,11,14,0,11,14,13,6,3,1,4,15,8,2,7,8,2,8,2,3,1,4,13,6,3,10,14,14,3,1,0,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"15\", \"6\", \"3\", \"1\"], \"clip_start\": 35.0, \"clip_end\": 40.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,1,0,13,9,6,3,1,0,0,10,14,3,1,0,15,2,8,2,7,10,1,0,12,10,0,14,3,1,15,6,3,7,4,9,15,6,3,1,4,15,8,2,3,2,7,10,2,7,4,5,9,1,4,13,6,3,1,0,6,3,7,4,15,6,3,7,10,2,7,10,2,7,4,7,15,15,6,3,7,10,1,0,15,2,7,10,1,4,13,9,6,3,10,13,15,8,2,7,10,1,0,12,15,8,2,7,4,15,6,1,0,15,2,8,2,8,2,7,10,1,4,3,2,11,14,3,1,15,6,3,1,15,2,8,2,3,2,8,2,7,6,3,1,0,2,3,1,0,10,6,3,7,4,12,7,10,1,15,8,2,7,10,2,7,10,1,0,11,14,13,15,8,2,8,2,7,10,1,4,15,2,7,10,2,7,10,1,0,6,3,7,10,1,4,13,11,14,0,1,15,2,7,10,1,4,13,15,8,2,7,10,1,15,8,2,7,4,15,6,13,9,6,3,7,15,15,14,3,1,4,13,9,6,3,7,3,1,4,13,15,8,2,7,15,15,6,3,14,3,1,4,13,9,6,3,7,10,2,3,2,7,10,1,4,13,6,3,7,4,12,1,15,8,2,7,10,1,15,6,3,1,0,12,11,7,10,1,4,13,15,8,2,3,2,7,15,15,6,3,10,1,4,13,15,2,7,10,1,4,13,9,6,3,10,12,6,3,7,10,1,0,15,6,3,7,15,15,8,2,8,2,7,15,15,2,7,10,1,0,10,11,14,13,15,2,8,2,7,10,4,8,2,7,10,2,7,14,3,1,0,0,8,2,7,4,15,2,7,10,2,7,9,4,8,2,5,9,11,14,12,8,2,3,1,4,13,9,6,2,3,1,0,14,3,1,4,15,2,3,1,15,6,3,1,4,13,11,14,0,13,15,6,3,7,4,12,7,15,15,2,7,4,6,3,7,10,1,0,11,14,0,2,10,6,3,10,14,3,9,4,14,13,15,2,7,10,1,4,13,15,8,2,3,2,8,2,7,10,1,0,9,4,0,14,13,9,6,3,7,10,2,7,10,1,4,13,6,3,10,11,14,0,11,14,13,6,3,1,4,15,8,2,7,8,2,8,2,3,1,4,13,6,3,10,14,14,3,1,0,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"15\", \"8\", \"2\", \"7\"], \"clip_start\": 213.0, \"clip_end\": 218.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,1,0,13,9,6,3,1,0,0,10,14,3,1,0,15,2,8,2,7,10,1,0,12,10,0,14,3,1,15,6,3,7,4,9,15,6,3,1,4,15,8,2,3,2,7,10,2,7,4,5,9,1,4,13,6,3,1,0,6,3,7,4,15,6,3,7,10,2,7,10,2,7,4,7,15,15,6,3,7,10,1,0,15,2,7,10,1,4,13,9,6,3,10,13,15,8,2,7,10,1,0,12,15,8,2,7,4,15,6,1,0,15,2,8,2,8,2,7,10,1,4,3,2,11,14,3,1,15,6,3,1,15,2,8,2,3,2,8,2,7,6,3,1,0,2,3,1,0,10,6,3,7,4,12,7,10,1,15,8,2,7,10,2,7,10,1,0,11,14,13,15,8,2,8,2,7,10,1,4,15,2,7,10,2,7,10,1,0,6,3,7,10,1,4,13,11,14,0,1,15,2,7,10,1,4,13,15,8,2,7,10,1,15,8,2,7,4,15,6,13,9,6,3,7,15,15,14,3,1,4,13,9,6,3,7,3,1,4,13,15,8,2,7,15,15,6,3,14,3,1,4,13,9,6,3,7,10,2,3,2,7,10,1,4,13,6,3,7,4,12,1,15,8,2,7,10,1,15,6,3,1,0,12,11,7,10,1,4,13,15,8,2,3,2,7,15,15,6,3,10,1,4,13,15,2,7,10,1,4,13,9,6,3,10,12,6,3,7,10,1,0,15,6,3,7,15,15,8,2,8,2,7,15,15,2,7,10,1,0,10,11,14,13,15,2,8,2,7,10,4,8,2,7,10,2,7,14,3,1,0,0,8,2,7,4,15,2,7,10,2,7,9,4,8,2,5,9,11,14,12,8,2,3,1,4,13,9,6,2,3,1,0,14,3,1,4,15,2,3,1,15,6,3,1,4,13,11,14,0,13,15,6,3,7,4,12,7,15,15,2,7,4,6,3,7,10,1,0,11,14,0,2,10,6,3,10,14,3,9,4,14,13,15,2,7,10,1,4,13,15,8,2,3,2,8,2,7,10,1,0,9,4,0,14,13,9,6,3,7,10,2,7,10,1,4,13,6,3,10,11,14,0,11,14,13,6,3,1,4,15,8,2,7,8,2,8,2,3,1,4,13,6,3,10,14,14,3,1,0,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 318.0, \"clip_end\": 322.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,1,0,13,9,6,3,1,0,0,10,14,3,1,0,15,2,8,2,7,10,1,0,12,10,0,14,3,1,15,6,3,7,4,9,15,6,3,1,4,15,8,2,3,2,7,10,2,7,4,5,9,1,4,13,6,3,1,0,6,3,7,4,15,6,3,7,10,2,7,10,2,7,4,7,15,15,6,3,7,10,1,0,15,2,7,10,1,4,13,9,6,3,10,13,15,8,2,7,10,1,0,12,15,8,2,7,4,15,6,1,0,15,2,8,2,8,2,7,10,1,4,3,2,11,14,3,1,15,6,3,1,15,2,8,2,3,2,8,2,7,6,3,1,0,2,3,1,0,10,6,3,7,4,12,7,10,1,15,8,2,7,10,2,7,10,1,0,11,14,13,15,8,2,8,2,7,10,1,4,15,2,7,10,2,7,10,1,0,6,3,7,10,1,4,13,11,14,0,1,15,2,7,10,1,4,13,15,8,2,7,10,1,15,8,2,7,4,15,6,13,9,6,3,7,15,15,14,3,1,4,13,9,6,3,7,3,1,4,13,15,8,2,7,15,15,6,3,14,3,1,4,13,9,6,3,7,10,2,3,2,7,10,1,4,13,6,3,7,4,12,1,15,8,2,7,10,1,15,6,3,1,0,12,11,7,10,1,4,13,15,8,2,3,2,7,15,15,6,3,10,1,4,13,15,2,7,10,1,4,13,9,6,3,10,12,6,3,7,10,1,0,15,6,3,7,15,15,8,2,8,2,7,15,15,2,7,10,1,0,10,11,14,13,15,2,8,2,7,10,4,8,2,7,10,2,7,14,3,1,0,0,8,2,7,4,15,2,7,10,2,7,9,4,8,2,5,9,11,14,12,8,2,3,1,4,13,9,6,2,3,1,0,14,3,1,4,15,2,3,1,15,6,3,1,4,13,11,14,0,13,15,6,3,7,4,12,7,15,15,2,7,4,6,3,7,10,1,0,11,14,0,2,10,6,3,10,14,3,9,4,14,13,15,2,7,10,1,4,13,15,8,2,3,2,8,2,7,10,1,0,9,4,0,14,13,9,6,3,7,10,2,7,10,1,4,13,6,3,10,11,14,0,11,14,13,6,3,1,4,15,8,2,7,8,2,8,2,3,1,4,13,6,3,10,14,14,3,1,0,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"14\", \"3\", \"1\", \"15\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,1,0,13,9,6,3,1,0,0,10,14,3,1,0,15,2,8,2,7,10,1,0,12,10,0,14,3,1,15,6,3,7,4,9,15,6,3,1,4,15,8,2,3,2,7,10,2,7,4,5,9,1,4,13,6,3,1,0,6,3,7,4,15,6,3,7,10,2,7,10,2,7,4,7,15,15,6,3,7,10,1,0,15,2,7,10,1,4,13,9,6,3,10,13,15,8,2,7,10,1,0,12,15,8,2,7,4,15,6,1,0,15,2,8,2,8,2,7,10,1,4,3,2,11,14,3,1,15,6,3,1,15,2,8,2,3,2,8,2,7,6,3,1,0,2,3,1,0,10,6,3,7,4,12,7,10,1,15,8,2,7,10,2,7,10,1,0,11,14,13,15,8,2,8,2,7,10,1,4,15,2,7,10,2,7,10,1,0,6,3,7,10,1,4,13,11,14,0,1,15,2,7,10,1,4,13,15,8,2,7,10,1,15,8,2,7,4,15,6,13,9,6,3,7,15,15,14,3,1,4,13,9,6,3,7,3,1,4,13,15,8,2,7,15,15,6,3,14,3,1,4,13,9,6,3,7,10,2,3,2,7,10,1,4,13,6,3,7,4,12,1,15,8,2,7,10,1,15,6,3,1,0,12,11,7,10,1,4,13,15,8,2,3,2,7,15,15,6,3,10,1,4,13,15,2,7,10,1,4,13,9,6,3,10,12,6,3,7,10,1,0,15,6,3,7,15,15,8,2,8,2,7,15,15,2,7,10,1,0,10,11,14,13,15,2,8,2,7,10,4,8,2,7,10,2,7,14,3,1,0,0,8,2,7,4,15,2,7,10,2,7,9,4,8,2,5,9,11,14,12,8,2,3,1,4,13,9,6,2,3,1,0,14,3,1,4,15,2,3,1,15,6,3,1,4,13,11,14,0,13,15,6,3,7,4,12,7,15,15,2,7,4,6,3,7,10,1,0,11,14,0,2,10,6,3,10,14,3,9,4,14,13,15,2,7,10,1,4,13,15,8,2,3,2,8,2,7,10,1,0,9,4,0,14,13,9,6,3,7,10,2,7,10,1,4,13,6,3,10,11,14,0,11,14,13,6,3,1,4,15,8,2,7,8,2,8,2,3,1,4,13,6,3,10,14,14,3,1,0,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"3\", \"1\", \"4\", \"13\"], \"clip_start\": 236.0, \"clip_end\": 241.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,1,0,13,9,6,3,1,0,0,10,14,3,1,0,15,2,8,2,7,10,1,0,12,10,0,14,3,1,15,6,3,7,4,9,15,6,3,1,4,15,8,2,3,2,7,10,2,7,4,5,9,1,4,13,6,3,1,0,6,3,7,4,15,6,3,7,10,2,7,10,2,7,4,7,15,15,6,3,7,10,1,0,15,2,7,10,1,4,13,9,6,3,10,13,15,8,2,7,10,1,0,12,15,8,2,7,4,15,6,1,0,15,2,8,2,8,2,7,10,1,4,3,2,11,14,3,1,15,6,3,1,15,2,8,2,3,2,8,2,7,6,3,1,0,2,3,1,0,10,6,3,7,4,12,7,10,1,15,8,2,7,10,2,7,10,1,0,11,14,13,15,8,2,8,2,7,10,1,4,15,2,7,10,2,7,10,1,0,6,3,7,10,1,4,13,11,14,0,1,15,2,7,10,1,4,13,15,8,2,7,10,1,15,8,2,7,4,15,6,13,9,6,3,7,15,15,14,3,1,4,13,9,6,3,7,3,1,4,13,15,8,2,7,15,15,6,3,14,3,1,4,13,9,6,3,7,10,2,3,2,7,10,1,4,13,6,3,7,4,12,1,15,8,2,7,10,1,15,6,3,1,0,12,11,7,10,1,4,13,15,8,2,3,2,7,15,15,6,3,10,1,4,13,15,2,7,10,1,4,13,9,6,3,10,12,6,3,7,10,1,0,15,6,3,7,15,15,8,2,8,2,7,15,15,2,7,10,1,0,10,11,14,13,15,2,8,2,7,10,4,8,2,7,10,2,7,14,3,1,0,0,8,2,7,4,15,2,7,10,2,7,9,4,8,2,5,9,11,14,12,8,2,3,1,4,13,9,6,2,3,1,0,14,3,1,4,15,2,3,1,15,6,3,1,4,13,11,14,0,13,15,6,3,7,4,12,7,15,15,2,7,4,6,3,7,10,1,0,11,14,0,2,10,6,3,10,14,3,9,4,14,13,15,2,7,10,1,4,13,15,8,2,3,2,8,2,7,10,1,0,9,4,0,14,13,9,6,3,7,10,2,7,10,1,4,13,6,3,10,11,14,0,11,14,13,6,3,1,4,15,8,2,7,8,2,8,2,3,1,4,13,6,3,10,14,14,3,1,0,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 447.0, \"clip_end\": 451.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,1,0,13,9,6,3,1,0,0,10,14,3,1,0,15,2,8,2,7,10,1,0,12,10,0,14,3,1,15,6,3,7,4,9,15,6,3,1,4,15,8,2,3,2,7,10,2,7,4,5,9,1,4,13,6,3,1,0,6,3,7,4,15,6,3,7,10,2,7,10,2,7,4,7,15,15,6,3,7,10,1,0,15,2,7,10,1,4,13,9,6,3,10,13,15,8,2,7,10,1,0,12,15,8,2,7,4,15,6,1,0,15,2,8,2,8,2,7,10,1,4,3,2,11,14,3,1,15,6,3,1,15,2,8,2,3,2,8,2,7,6,3,1,0,2,3,1,0,10,6,3,7,4,12,7,10,1,15,8,2,7,10,2,7,10,1,0,11,14,13,15,8,2,8,2,7,10,1,4,15,2,7,10,2,7,10,1,0,6,3,7,10,1,4,13,11,14,0,1,15,2,7,10,1,4,13,15,8,2,7,10,1,15,8,2,7,4,15,6,13,9,6,3,7,15,15,14,3,1,4,13,9,6,3,7,3,1,4,13,15,8,2,7,15,15,6,3,14,3,1,4,13,9,6,3,7,10,2,3,2,7,10,1,4,13,6,3,7,4,12,1,15,8,2,7,10,1,15,6,3,1,0,12,11,7,10,1,4,13,15,8,2,3,2,7,15,15,6,3,10,1,4,13,15,2,7,10,1,4,13,9,6,3,10,12,6,3,7,10,1,0,15,6,3,7,15,15,8,2,8,2,7,15,15,2,7,10,1,0,10,11,14,13,15,2,8,2,7,10,4,8,2,7,10,2,7,14,3,1,0,0,8,2,7,4,15,2,7,10,2,7,9,4,8,2,5,9,11,14,12,8,2,3,1,4,13,9,6,2,3,1,0,14,3,1,4,15,2,3,1,15,6,3,1,4,13,11,14,0,13,15,6,3,7,4,12,7,15,15,2,7,4,6,3,7,10,1,0,11,14,0,2,10,6,3,10,14,3,9,4,14,13,15,2,7,10,1,4,13,15,8,2,3,2,8,2,7,10,1,0,9,4,0,14,13,9,6,3,7,10,2,7,10,1,4,13,6,3,10,11,14,0,11,14,13,6,3,1,4,15,8,2,7,8,2,8,2,3,1,4,13,6,3,10,14,14,3,1,0,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"2\", \"7\", \"10\"], \"clip_start\": 43.0, \"clip_end\": 48.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,1,0,13,9,6,3,1,0,0,10,14,3,1,0,15,2,8,2,7,10,1,0,12,10,0,14,3,1,15,6,3,7,4,9,15,6,3,1,4,15,8,2,3,2,7,10,2,7,4,5,9,1,4,13,6,3,1,0,6,3,7,4,15,6,3,7,10,2,7,10,2,7,4,7,15,15,6,3,7,10,1,0,15,2,7,10,1,4,13,9,6,3,10,13,15,8,2,7,10,1,0,12,15,8,2,7,4,15,6,1,0,15,2,8,2,8,2,7,10,1,4,3,2,11,14,3,1,15,6,3,1,15,2,8,2,3,2,8,2,7,6,3,1,0,2,3,1,0,10,6,3,7,4,12,7,10,1,15,8,2,7,10,2,7,10,1,0,11,14,13,15,8,2,8,2,7,10,1,4,15,2,7,10,2,7,10,1,0,6,3,7,10,1,4,13,11,14,0,1,15,2,7,10,1,4,13,15,8,2,7,10,1,15,8,2,7,4,15,6,13,9,6,3,7,15,15,14,3,1,4,13,9,6,3,7,3,1,4,13,15,8,2,7,15,15,6,3,14,3,1,4,13,9,6,3,7,10,2,3,2,7,10,1,4,13,6,3,7,4,12,1,15,8,2,7,10,1,15,6,3,1,0,12,11,7,10,1,4,13,15,8,2,3,2,7,15,15,6,3,10,1,4,13,15,2,7,10,1,4,13,9,6,3,10,12,6,3,7,10,1,0,15,6,3,7,15,15,8,2,8,2,7,15,15,2,7,10,1,0,10,11,14,13,15,2,8,2,7,10,4,8,2,7,10,2,7,14,3,1,0,0,8,2,7,4,15,2,7,10,2,7,9,4,8,2,5,9,11,14,12,8,2,3,1,4,13,9,6,2,3,1,0,14,3,1,4,15,2,3,1,15,6,3,1,4,13,11,14,0,13,15,6,3,7,4,12,7,15,15,2,7,4,6,3,7,10,1,0,11,14,0,2,10,6,3,10,14,3,9,4,14,13,15,2,7,10,1,4,13,15,8,2,3,2,8,2,7,10,1,0,9,4,0,14,13,9,6,3,7,10,2,7,10,1,4,13,6,3,10,11,14,0,11,14,13,6,3,1,4,15,8,2,7,8,2,8,2,3,1,4,13,6,3,10,14,14,3,1,0,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"6\"], \"clip_start\": 277.0, \"clip_end\": 281.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,1,0,13,9,6,3,1,0,0,10,14,3,1,0,15,2,8,2,7,10,1,0,12,10,0,14,3,1,15,6,3,7,4,9,15,6,3,1,4,15,8,2,3,2,7,10,2,7,4,5,9,1,4,13,6,3,1,0,6,3,7,4,15,6,3,7,10,2,7,10,2,7,4,7,15,15,6,3,7,10,1,0,15,2,7,10,1,4,13,9,6,3,10,13,15,8,2,7,10,1,0,12,15,8,2,7,4,15,6,1,0,15,2,8,2,8,2,7,10,1,4,3,2,11,14,3,1,15,6,3,1,15,2,8,2,3,2,8,2,7,6,3,1,0,2,3,1,0,10,6,3,7,4,12,7,10,1,15,8,2,7,10,2,7,10,1,0,11,14,13,15,8,2,8,2,7,10,1,4,15,2,7,10,2,7,10,1,0,6,3,7,10,1,4,13,11,14,0,1,15,2,7,10,1,4,13,15,8,2,7,10,1,15,8,2,7,4,15,6,13,9,6,3,7,15,15,14,3,1,4,13,9,6,3,7,3,1,4,13,15,8,2,7,15,15,6,3,14,3,1,4,13,9,6,3,7,10,2,3,2,7,10,1,4,13,6,3,7,4,12,1,15,8,2,7,10,1,15,6,3,1,0,12,11,7,10,1,4,13,15,8,2,3,2,7,15,15,6,3,10,1,4,13,15,2,7,10,1,4,13,9,6,3,10,12,6,3,7,10,1,0,15,6,3,7,15,15,8,2,8,2,7,15,15,2,7,10,1,0,10,11,14,13,15,2,8,2,7,10,4,8,2,7,10,2,7,14,3,1,0,0,8,2,7,4,15,2,7,10,2,7,9,4,8,2,5,9,11,14,12,8,2,3,1,4,13,9,6,2,3,1,0,14,3,1,4,15,2,3,1,15,6,3,1,4,13,11,14,0,13,15,6,3,7,4,12,7,15,15,2,7,4,6,3,7,10,1,0,11,14,0,2,10,6,3,10,14,3,9,4,14,13,15,2,7,10,1,4,13,15,8,2,3,2,8,2,7,10,1,0,9,4,0,14,13,9,6,3,7,10,2,7,10,1,4,13,6,3,10,11,14,0,11,14,13,6,3,1,4,15,8,2,7,8,2,8,2,3,1,4,13,6,3,10,14,14,3,1,0,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"6\", \"3\", \"7\", \"4\", \"12\"], \"clip_start\": 266.0, \"clip_end\": 272.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,1,0,13,9,6,3,1,0,0,10,14,3,1,0,15,2,8,2,7,10,1,0,12,10,0,14,3,1,15,6,3,7,4,9,15,6,3,1,4,15,8,2,3,2,7,10,2,7,4,5,9,1,4,13,6,3,1,0,6,3,7,4,15,6,3,7,10,2,7,10,2,7,4,7,15,15,6,3,7,10,1,0,15,2,7,10,1,4,13,9,6,3,10,13,15,8,2,7,10,1,0,12,15,8,2,7,4,15,6,1,0,15,2,8,2,8,2,7,10,1,4,3,2,11,14,3,1,15,6,3,1,15,2,8,2,3,2,8,2,7,6,3,1,0,2,3,1,0,10,6,3,7,4,12,7,10,1,15,8,2,7,10,2,7,10,1,0,11,14,13,15,8,2,8,2,7,10,1,4,15,2,7,10,2,7,10,1,0,6,3,7,10,1,4,13,11,14,0,1,15,2,7,10,1,4,13,15,8,2,7,10,1,15,8,2,7,4,15,6,13,9,6,3,7,15,15,14,3,1,4,13,9,6,3,7,3,1,4,13,15,8,2,7,15,15,6,3,14,3,1,4,13,9,6,3,7,10,2,3,2,7,10,1,4,13,6,3,7,4,12,1,15,8,2,7,10,1,15,6,3,1,0,12,11,7,10,1,4,13,15,8,2,3,2,7,15,15,6,3,10,1,4,13,15,2,7,10,1,4,13,9,6,3,10,12,6,3,7,10,1,0,15,6,3,7,15,15,8,2,8,2,7,15,15,2,7,10,1,0,10,11,14,13,15,2,8,2,7,10,4,8,2,7,10,2,7,14,3,1,0,0,8,2,7,4,15,2,7,10,2,7,9,4,8,2,5,9,11,14,12,8,2,3,1,4,13,9,6,2,3,1,0,14,3,1,4,15,2,3,1,15,6,3,1,4,13,11,14,0,13,15,6,3,7,4,12,7,15,15,2,7,4,6,3,7,10,1,0,11,14,0,2,10,6,3,10,14,3,9,4,14,13,15,2,7,10,1,4,13,15,8,2,3,2,8,2,7,10,1,0,9,4,0,14,13,9,6,3,7,10,2,7,10,1,4,13,6,3,10,11,14,0,11,14,13,6,3,1,4,15,8,2,7,8,2,8,2,3,1,4,13,6,3,10,14,14,3,1,0,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"5\", \"9\", \"1\", \"4\", \"13\"], \"clip_start\": 50.0, \"clip_end\": 56.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,1,0,13,9,6,3,1,0,0,10,14,3,1,0,15,2,8,2,7,10,1,0,12,10,0,14,3,1,15,6,3,7,4,9,15,6,3,1,4,15,8,2,3,2,7,10,2,7,4,5,9,1,4,13,6,3,1,0,6,3,7,4,15,6,3,7,10,2,7,10,2,7,4,7,15,15,6,3,7,10,1,0,15,2,7,10,1,4,13,9,6,3,10,13,15,8,2,7,10,1,0,12,15,8,2,7,4,15,6,1,0,15,2,8,2,8,2,7,10,1,4,3,2,11,14,3,1,15,6,3,1,15,2,8,2,3,2,8,2,7,6,3,1,0,2,3,1,0,10,6,3,7,4,12,7,10,1,15,8,2,7,10,2,7,10,1,0,11,14,13,15,8,2,8,2,7,10,1,4,15,2,7,10,2,7,10,1,0,6,3,7,10,1,4,13,11,14,0,1,15,2,7,10,1,4,13,15,8,2,7,10,1,15,8,2,7,4,15,6,13,9,6,3,7,15,15,14,3,1,4,13,9,6,3,7,3,1,4,13,15,8,2,7,15,15,6,3,14,3,1,4,13,9,6,3,7,10,2,3,2,7,10,1,4,13,6,3,7,4,12,1,15,8,2,7,10,1,15,6,3,1,0,12,11,7,10,1,4,13,15,8,2,3,2,7,15,15,6,3,10,1,4,13,15,2,7,10,1,4,13,9,6,3,10,12,6,3,7,10,1,0,15,6,3,7,15,15,8,2,8,2,7,15,15,2,7,10,1,0,10,11,14,13,15,2,8,2,7,10,4,8,2,7,10,2,7,14,3,1,0,0,8,2,7,4,15,2,7,10,2,7,9,4,8,2,5,9,11,14,12,8,2,3,1,4,13,9,6,2,3,1,0,14,3,1,4,15,2,3,1,15,6,3,1,4,13,11,14,0,13,15,6,3,7,4,12,7,15,15,2,7,4,6,3,7,10,1,0,11,14,0,2,10,6,3,10,14,3,9,4,14,13,15,2,7,10,1,4,13,15,8,2,3,2,8,2,7,10,1,0,9,4,0,14,13,9,6,3,7,10,2,7,10,1,4,13,6,3,10,11,14,0,11,14,13,6,3,1,4,15,8,2,7,8,2,8,2,3,1,4,13,6,3,10,14,14,3,1,0,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"15\", \"8\", \"2\", \"3\", \"2\"], \"clip_start\": 450.0, \"clip_end\": 456.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,3,1,0,13,9,6,3,1,0,0,10,14,3,1,0,15,2,8,2,7,10,1,0,12,10,0,14,3,1,15,6,3,7,4,9,15,6,3,1,4,15,8,2,3,2,7,10,2,7,4,5,9,1,4,13,6,3,1,0,6,3,7,4,15,6,3,7,10,2,7,10,2,7,4,7,15,15,6,3,7,10,1,0,15,2,7,10,1,4,13,9,6,3,10,13,15,8,2,7,10,1,0,12,15,8,2,7,4,15,6,1,0,15,2,8,2,8,2,7,10,1,4,3,2,11,14,3,1,15,6,3,1,15,2,8,2,3,2,8,2,7,6,3,1,0,2,3,1,0,10,6,3,7,4,12,7,10,1,15,8,2,7,10,2,7,10,1,0,11,14,13,15,8,2,8,2,7,10,1,4,15,2,7,10,2,7,10,1,0,6,3,7,10,1,4,13,11,14,0,1,15,2,7,10,1,4,13,15,8,2,7,10,1,15,8,2,7,4,15,6,13,9,6,3,7,15,15,14,3,1,4,13,9,6,3,7,3,1,4,13,15,8,2,7,15,15,6,3,14,3,1,4,13,9,6,3,7,10,2,3,2,7,10,1,4,13,6,3,7,4,12,1,15,8,2,7,10,1,15,6,3,1,0,12,11,7,10,1,4,13,15,8,2,3,2,7,15,15,6,3,10,1,4,13,15,2,7,10,1,4,13,9,6,3,10,12,6,3,7,10,1,0,15,6,3,7,15,15,8,2,8,2,7,15,15,2,7,10,1,0,10,11,14,13,15,2,8,2,7,10,4,8,2,7,10,2,7,14,3,1,0,0,8,2,7,4,15,2,7,10,2,7,9,4,8,2,5,9,11,14,12,8,2,3,1,4,13,9,6,2,3,1,0,14,3,1,4,15,2,3,1,15,6,3,1,4,13,11,14,0,13,15,6,3,7,4,12,7,15,15,2,7,4,6,3,7,10,1,0,11,14,0,2,10,6,3,10,14,3,9,4,14,13,15,2,7,10,1,4,13,15,8,2,3,2,8,2,7,10,1,0,9,4,0,14,13,9,6,3,7,10,2,7,10,1,4,13,6,3,10,11,14,0,11,14,13,6,3,1,4,15,8,2,7,8,2,8,2,3,1,4,13,6,3,10,14,14,3,1,0,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"5\", \"15\", \"3\", \"12\"], \"clip_start\": 27.0, \"clip_end\": 33.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,1,14,11,4,0,5,12,6,2,15,3,12,1,15,1,2,14,11,12,15,9,8,1,14,11,10,0,5,15,3,12,3,12,3,12,9,8,1,8,1,8,1,14,11,10,5,5,0,5,3,12,3,12,3,12,9,8,1,8,1,14,11,10,13,6,2,5,14,11,12,6,2,5,14,11,10,4,9,8,1,8,1,14,11,10,7,1,14,11,1,14,11,12,6,2,5,2,5,8,1,12,15,1,4,9,8,1,12,6,2,5,5,4,9,8,1,14,4,0,4,0,5,8,1,14,11,10,9,8,1,6,2,5,5,2,5,7,1,14,11,4,9,8,1,14,11,10,9,8,1,14,11,10,8,1,8,1,8,1,8,1,14,11,10,5,13,4,0,5,13,0,4,9,8,1,14,11,12,6,2,5,8,1,8,1,8,1,14,11,10,10,2,5,10,15,1,2,5,4,9,8,1,8,1,14,11,12,12,6,2,5,3,12,3,12,1,14,11,10,5,1,14,11,10,1,14,11,12,6,2,5,13,5,11,12,14,11,10,9,8,1,8,1,14,11,10,4,9,8,1,8,1,8,1,8,1,8,1,4,0,5,9,8,1,14,11,12,15,9,8,1,14,11,12,6,5,14,11,10,9,8,1,8,1,8,1,8,1,8,1,5,8,1,14,11,12,6,2,5,2,10,11,12,6,7,12,6,2,15,9,8,1,14,11,15,3,12,9,8,1,14,11,10,6,2,5,12,15,1,2,5,13,1,14,11,10,6,2,5,1,14,11,10,6,2,5,7,1,14,11,4,0,5,15,6,2,5,2,5,11,10,7,1,12,6,1,14,11,10,9,8,1,8,1,8,1,8,1,3,12,3,12,3,12,3,12,9,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,1,14,11,10,13,0,4,9,8,1,8,14,12,6,5,10,15,1,1,14,11,10,12,15,1,7,1,14,11,4,0,5,6,2,5,14,11,6,2,5,1,14,8,1,14,11,10,13,6,2,5,11,10,12,6,2,5,10,6,2,5,10,7,1,14,11,4,0,5,0,10,10,9,8,1,8,1,8,1,14,11,10,1,14,11,10,15,9,8,1,14,11,10,11,10,2,5,5,13,7,1,14,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 311.0, \"clip_end\": 317.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,1,14,11,4,0,5,12,6,2,15,3,12,1,15,1,2,14,11,12,15,9,8,1,14,11,10,0,5,15,3,12,3,12,3,12,9,8,1,8,1,8,1,14,11,10,5,5,0,5,3,12,3,12,3,12,9,8,1,8,1,14,11,10,13,6,2,5,14,11,12,6,2,5,14,11,10,4,9,8,1,8,1,14,11,10,7,1,14,11,1,14,11,12,6,2,5,2,5,8,1,12,15,1,4,9,8,1,12,6,2,5,5,4,9,8,1,14,4,0,4,0,5,8,1,14,11,10,9,8,1,6,2,5,5,2,5,7,1,14,11,4,9,8,1,14,11,10,9,8,1,14,11,10,8,1,8,1,8,1,8,1,14,11,10,5,13,4,0,5,13,0,4,9,8,1,14,11,12,6,2,5,8,1,8,1,8,1,14,11,10,10,2,5,10,15,1,2,5,4,9,8,1,8,1,14,11,12,12,6,2,5,3,12,3,12,1,14,11,10,5,1,14,11,10,1,14,11,12,6,2,5,13,5,11,12,14,11,10,9,8,1,8,1,14,11,10,4,9,8,1,8,1,8,1,8,1,8,1,4,0,5,9,8,1,14,11,12,15,9,8,1,14,11,12,6,5,14,11,10,9,8,1,8,1,8,1,8,1,8,1,5,8,1,14,11,12,6,2,5,2,10,11,12,6,7,12,6,2,15,9,8,1,14,11,15,3,12,9,8,1,14,11,10,6,2,5,12,15,1,2,5,13,1,14,11,10,6,2,5,1,14,11,10,6,2,5,7,1,14,11,4,0,5,15,6,2,5,2,5,11,10,7,1,12,6,1,14,11,10,9,8,1,8,1,8,1,8,1,3,12,3,12,3,12,3,12,9,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,1,14,11,10,13,0,4,9,8,1,8,14,12,6,5,10,15,1,1,14,11,10,12,15,1,7,1,14,11,4,0,5,6,2,5,14,11,6,2,5,1,14,8,1,14,11,10,13,6,2,5,11,10,12,6,2,5,10,6,2,5,10,7,1,14,11,4,0,5,0,10,10,9,8,1,8,1,8,1,14,11,10,1,14,11,10,15,9,8,1,14,11,10,11,10,2,5,5,13,7,1,14,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"11\", \"10\", \"0\", \"5\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,1,14,11,4,0,5,12,6,2,15,3,12,1,15,1,2,14,11,12,15,9,8,1,14,11,10,0,5,15,3,12,3,12,3,12,9,8,1,8,1,8,1,14,11,10,5,5,0,5,3,12,3,12,3,12,9,8,1,8,1,14,11,10,13,6,2,5,14,11,12,6,2,5,14,11,10,4,9,8,1,8,1,14,11,10,7,1,14,11,1,14,11,12,6,2,5,2,5,8,1,12,15,1,4,9,8,1,12,6,2,5,5,4,9,8,1,14,4,0,4,0,5,8,1,14,11,10,9,8,1,6,2,5,5,2,5,7,1,14,11,4,9,8,1,14,11,10,9,8,1,14,11,10,8,1,8,1,8,1,8,1,14,11,10,5,13,4,0,5,13,0,4,9,8,1,14,11,12,6,2,5,8,1,8,1,8,1,14,11,10,10,2,5,10,15,1,2,5,4,9,8,1,8,1,14,11,12,12,6,2,5,3,12,3,12,1,14,11,10,5,1,14,11,10,1,14,11,12,6,2,5,13,5,11,12,14,11,10,9,8,1,8,1,14,11,10,4,9,8,1,8,1,8,1,8,1,8,1,4,0,5,9,8,1,14,11,12,15,9,8,1,14,11,12,6,5,14,11,10,9,8,1,8,1,8,1,8,1,8,1,5,8,1,14,11,12,6,2,5,2,10,11,12,6,7,12,6,2,15,9,8,1,14,11,15,3,12,9,8,1,14,11,10,6,2,5,12,15,1,2,5,13,1,14,11,10,6,2,5,1,14,11,10,6,2,5,7,1,14,11,4,0,5,15,6,2,5,2,5,11,10,7,1,12,6,1,14,11,10,9,8,1,8,1,8,1,8,1,3,12,3,12,3,12,3,12,9,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,1,14,11,10,13,0,4,9,8,1,8,14,12,6,5,10,15,1,1,14,11,10,12,15,1,7,1,14,11,4,0,5,6,2,5,14,11,6,2,5,1,14,8,1,14,11,10,13,6,2,5,11,10,12,6,2,5,10,6,2,5,10,7,1,14,11,4,0,5,0,10,10,9,8,1,8,1,8,1,14,11,10,1,14,11,10,15,9,8,1,14,11,10,11,10,2,5,5,13,7,1,14,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"6\", \"2\", \"5\", \"2\", \"10\"], \"clip_start\": 297.0, \"clip_end\": 303.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,1,14,11,4,0,5,12,6,2,15,3,12,1,15,1,2,14,11,12,15,9,8,1,14,11,10,0,5,15,3,12,3,12,3,12,9,8,1,8,1,8,1,14,11,10,5,5,0,5,3,12,3,12,3,12,9,8,1,8,1,14,11,10,13,6,2,5,14,11,12,6,2,5,14,11,10,4,9,8,1,8,1,14,11,10,7,1,14,11,1,14,11,12,6,2,5,2,5,8,1,12,15,1,4,9,8,1,12,6,2,5,5,4,9,8,1,14,4,0,4,0,5,8,1,14,11,10,9,8,1,6,2,5,5,2,5,7,1,14,11,4,9,8,1,14,11,10,9,8,1,14,11,10,8,1,8,1,8,1,8,1,14,11,10,5,13,4,0,5,13,0,4,9,8,1,14,11,12,6,2,5,8,1,8,1,8,1,14,11,10,10,2,5,10,15,1,2,5,4,9,8,1,8,1,14,11,12,12,6,2,5,3,12,3,12,1,14,11,10,5,1,14,11,10,1,14,11,12,6,2,5,13,5,11,12,14,11,10,9,8,1,8,1,14,11,10,4,9,8,1,8,1,8,1,8,1,8,1,4,0,5,9,8,1,14,11,12,15,9,8,1,14,11,12,6,5,14,11,10,9,8,1,8,1,8,1,8,1,8,1,5,8,1,14,11,12,6,2,5,2,10,11,12,6,7,12,6,2,15,9,8,1,14,11,15,3,12,9,8,1,14,11,10,6,2,5,12,15,1,2,5,13,1,14,11,10,6,2,5,1,14,11,10,6,2,5,7,1,14,11,4,0,5,15,6,2,5,2,5,11,10,7,1,12,6,1,14,11,10,9,8,1,8,1,8,1,8,1,3,12,3,12,3,12,3,12,9,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,1,14,11,10,13,0,4,9,8,1,8,14,12,6,5,10,15,1,1,14,11,10,12,15,1,7,1,14,11,4,0,5,6,2,5,14,11,6,2,5,1,14,8,1,14,11,10,13,6,2,5,11,10,12,6,2,5,10,6,2,5,10,7,1,14,11,4,0,5,0,10,10,9,8,1,8,1,8,1,14,11,10,1,14,11,10,15,9,8,1,14,11,10,11,10,2,5,5,13,7,1,14,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"2\", \"5\", \"13\", \"1\"], \"clip_start\": 329.0, \"clip_end\": 335.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,1,14,11,4,0,5,12,6,2,15,3,12,1,15,1,2,14,11,12,15,9,8,1,14,11,10,0,5,15,3,12,3,12,3,12,9,8,1,8,1,8,1,14,11,10,5,5,0,5,3,12,3,12,3,12,9,8,1,8,1,14,11,10,13,6,2,5,14,11,12,6,2,5,14,11,10,4,9,8,1,8,1,14,11,10,7,1,14,11,1,14,11,12,6,2,5,2,5,8,1,12,15,1,4,9,8,1,12,6,2,5,5,4,9,8,1,14,4,0,4,0,5,8,1,14,11,10,9,8,1,6,2,5,5,2,5,7,1,14,11,4,9,8,1,14,11,10,9,8,1,14,11,10,8,1,8,1,8,1,8,1,14,11,10,5,13,4,0,5,13,0,4,9,8,1,14,11,12,6,2,5,8,1,8,1,8,1,14,11,10,10,2,5,10,15,1,2,5,4,9,8,1,8,1,14,11,12,12,6,2,5,3,12,3,12,1,14,11,10,5,1,14,11,10,1,14,11,12,6,2,5,13,5,11,12,14,11,10,9,8,1,8,1,14,11,10,4,9,8,1,8,1,8,1,8,1,8,1,4,0,5,9,8,1,14,11,12,15,9,8,1,14,11,12,6,5,14,11,10,9,8,1,8,1,8,1,8,1,8,1,5,8,1,14,11,12,6,2,5,2,10,11,12,6,7,12,6,2,15,9,8,1,14,11,15,3,12,9,8,1,14,11,10,6,2,5,12,15,1,2,5,13,1,14,11,10,6,2,5,1,14,11,10,6,2,5,7,1,14,11,4,0,5,15,6,2,5,2,5,11,10,7,1,12,6,1,14,11,10,9,8,1,8,1,8,1,8,1,3,12,3,12,3,12,3,12,9,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,1,14,11,10,13,0,4,9,8,1,8,14,12,6,5,10,15,1,1,14,11,10,12,15,1,7,1,14,11,4,0,5,6,2,5,14,11,6,2,5,1,14,8,1,14,11,10,13,6,2,5,11,10,12,6,2,5,10,6,2,5,10,7,1,14,11,4,0,5,0,10,10,9,8,1,8,1,8,1,14,11,10,1,14,11,10,15,9,8,1,14,11,10,11,10,2,5,5,13,7,1,14,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"8\", \"1\", \"8\", \"1\"], \"clip_start\": 254.0, \"clip_end\": 260.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,1,14,11,4,0,5,12,6,2,15,3,12,1,15,1,2,14,11,12,15,9,8,1,14,11,10,0,5,15,3,12,3,12,3,12,9,8,1,8,1,8,1,14,11,10,5,5,0,5,3,12,3,12,3,12,9,8,1,8,1,14,11,10,13,6,2,5,14,11,12,6,2,5,14,11,10,4,9,8,1,8,1,14,11,10,7,1,14,11,1,14,11,12,6,2,5,2,5,8,1,12,15,1,4,9,8,1,12,6,2,5,5,4,9,8,1,14,4,0,4,0,5,8,1,14,11,10,9,8,1,6,2,5,5,2,5,7,1,14,11,4,9,8,1,14,11,10,9,8,1,14,11,10,8,1,8,1,8,1,8,1,14,11,10,5,13,4,0,5,13,0,4,9,8,1,14,11,12,6,2,5,8,1,8,1,8,1,14,11,10,10,2,5,10,15,1,2,5,4,9,8,1,8,1,14,11,12,12,6,2,5,3,12,3,12,1,14,11,10,5,1,14,11,10,1,14,11,12,6,2,5,13,5,11,12,14,11,10,9,8,1,8,1,14,11,10,4,9,8,1,8,1,8,1,8,1,8,1,4,0,5,9,8,1,14,11,12,15,9,8,1,14,11,12,6,5,14,11,10,9,8,1,8,1,8,1,8,1,8,1,5,8,1,14,11,12,6,2,5,2,10,11,12,6,7,12,6,2,15,9,8,1,14,11,15,3,12,9,8,1,14,11,10,6,2,5,12,15,1,2,5,13,1,14,11,10,6,2,5,1,14,11,10,6,2,5,7,1,14,11,4,0,5,15,6,2,5,2,5,11,10,7,1,12,6,1,14,11,10,9,8,1,8,1,8,1,8,1,3,12,3,12,3,12,3,12,9,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,1,14,11,10,13,0,4,9,8,1,8,14,12,6,5,10,15,1,1,14,11,10,12,15,1,7,1,14,11,4,0,5,6,2,5,14,11,6,2,5,1,14,8,1,14,11,10,13,6,2,5,11,10,12,6,2,5,10,6,2,5,10,7,1,14,11,4,0,5,0,10,10,9,8,1,8,1,8,1,14,11,10,1,14,11,10,15,9,8,1,14,11,10,11,10,2,5,5,13,7,1,14,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"1\", \"14\", \"11\"], \"clip_start\": 469.0, \"clip_end\": 473.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,1,14,11,4,0,5,12,6,2,15,3,12,1,15,1,2,14,11,12,15,9,8,1,14,11,10,0,5,15,3,12,3,12,3,12,9,8,1,8,1,8,1,14,11,10,5,5,0,5,3,12,3,12,3,12,9,8,1,8,1,14,11,10,13,6,2,5,14,11,12,6,2,5,14,11,10,4,9,8,1,8,1,14,11,10,7,1,14,11,1,14,11,12,6,2,5,2,5,8,1,12,15,1,4,9,8,1,12,6,2,5,5,4,9,8,1,14,4,0,4,0,5,8,1,14,11,10,9,8,1,6,2,5,5,2,5,7,1,14,11,4,9,8,1,14,11,10,9,8,1,14,11,10,8,1,8,1,8,1,8,1,14,11,10,5,13,4,0,5,13,0,4,9,8,1,14,11,12,6,2,5,8,1,8,1,8,1,14,11,10,10,2,5,10,15,1,2,5,4,9,8,1,8,1,14,11,12,12,6,2,5,3,12,3,12,1,14,11,10,5,1,14,11,10,1,14,11,12,6,2,5,13,5,11,12,14,11,10,9,8,1,8,1,14,11,10,4,9,8,1,8,1,8,1,8,1,8,1,4,0,5,9,8,1,14,11,12,15,9,8,1,14,11,12,6,5,14,11,10,9,8,1,8,1,8,1,8,1,8,1,5,8,1,14,11,12,6,2,5,2,10,11,12,6,7,12,6,2,15,9,8,1,14,11,15,3,12,9,8,1,14,11,10,6,2,5,12,15,1,2,5,13,1,14,11,10,6,2,5,1,14,11,10,6,2,5,7,1,14,11,4,0,5,15,6,2,5,2,5,11,10,7,1,12,6,1,14,11,10,9,8,1,8,1,8,1,8,1,3,12,3,12,3,12,3,12,9,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,1,14,11,10,13,0,4,9,8,1,8,14,12,6,5,10,15,1,1,14,11,10,12,15,1,7,1,14,11,4,0,5,6,2,5,14,11,6,2,5,1,14,8,1,14,11,10,13,6,2,5,11,10,12,6,2,5,10,6,2,5,10,7,1,14,11,4,0,5,0,10,10,9,8,1,8,1,8,1,14,11,10,1,14,11,10,15,9,8,1,14,11,10,11,10,2,5,5,13,7,1,14,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"1\", \"14\", \"11\", \"1\", \"2\"], \"clip_start\": 506.0, \"clip_end\": 512.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,1,14,11,4,0,5,12,6,2,15,3,12,1,15,1,2,14,11,12,15,9,8,1,14,11,10,0,5,15,3,12,3,12,3,12,9,8,1,8,1,8,1,14,11,10,5,5,0,5,3,12,3,12,3,12,9,8,1,8,1,14,11,10,13,6,2,5,14,11,12,6,2,5,14,11,10,4,9,8,1,8,1,14,11,10,7,1,14,11,1,14,11,12,6,2,5,2,5,8,1,12,15,1,4,9,8,1,12,6,2,5,5,4,9,8,1,14,4,0,4,0,5,8,1,14,11,10,9,8,1,6,2,5,5,2,5,7,1,14,11,4,9,8,1,14,11,10,9,8,1,14,11,10,8,1,8,1,8,1,8,1,14,11,10,5,13,4,0,5,13,0,4,9,8,1,14,11,12,6,2,5,8,1,8,1,8,1,14,11,10,10,2,5,10,15,1,2,5,4,9,8,1,8,1,14,11,12,12,6,2,5,3,12,3,12,1,14,11,10,5,1,14,11,10,1,14,11,12,6,2,5,13,5,11,12,14,11,10,9,8,1,8,1,14,11,10,4,9,8,1,8,1,8,1,8,1,8,1,4,0,5,9,8,1,14,11,12,15,9,8,1,14,11,12,6,5,14,11,10,9,8,1,8,1,8,1,8,1,8,1,5,8,1,14,11,12,6,2,5,2,10,11,12,6,7,12,6,2,15,9,8,1,14,11,15,3,12,9,8,1,14,11,10,6,2,5,12,15,1,2,5,13,1,14,11,10,6,2,5,1,14,11,10,6,2,5,7,1,14,11,4,0,5,15,6,2,5,2,5,11,10,7,1,12,6,1,14,11,10,9,8,1,8,1,8,1,8,1,3,12,3,12,3,12,3,12,9,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,1,14,11,10,13,0,4,9,8,1,8,14,12,6,5,10,15,1,1,14,11,10,12,15,1,7,1,14,11,4,0,5,6,2,5,14,11,6,2,5,1,14,8,1,14,11,10,13,6,2,5,11,10,12,6,2,5,10,6,2,5,10,7,1,14,11,4,0,5,0,10,10,9,8,1,8,1,8,1,14,11,10,1,14,11,10,15,9,8,1,14,11,10,11,10,2,5,5,13,7,1,14,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"2\", \"5\"], \"clip_start\": 196.0, \"clip_end\": 200.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,1,14,11,4,0,5,12,6,2,15,3,12,1,15,1,2,14,11,12,15,9,8,1,14,11,10,0,5,15,3,12,3,12,3,12,9,8,1,8,1,8,1,14,11,10,5,5,0,5,3,12,3,12,3,12,9,8,1,8,1,14,11,10,13,6,2,5,14,11,12,6,2,5,14,11,10,4,9,8,1,8,1,14,11,10,7,1,14,11,1,14,11,12,6,2,5,2,5,8,1,12,15,1,4,9,8,1,12,6,2,5,5,4,9,8,1,14,4,0,4,0,5,8,1,14,11,10,9,8,1,6,2,5,5,2,5,7,1,14,11,4,9,8,1,14,11,10,9,8,1,14,11,10,8,1,8,1,8,1,8,1,14,11,10,5,13,4,0,5,13,0,4,9,8,1,14,11,12,6,2,5,8,1,8,1,8,1,14,11,10,10,2,5,10,15,1,2,5,4,9,8,1,8,1,14,11,12,12,6,2,5,3,12,3,12,1,14,11,10,5,1,14,11,10,1,14,11,12,6,2,5,13,5,11,12,14,11,10,9,8,1,8,1,14,11,10,4,9,8,1,8,1,8,1,8,1,8,1,4,0,5,9,8,1,14,11,12,15,9,8,1,14,11,12,6,5,14,11,10,9,8,1,8,1,8,1,8,1,8,1,5,8,1,14,11,12,6,2,5,2,10,11,12,6,7,12,6,2,15,9,8,1,14,11,15,3,12,9,8,1,14,11,10,6,2,5,12,15,1,2,5,13,1,14,11,10,6,2,5,1,14,11,10,6,2,5,7,1,14,11,4,0,5,15,6,2,5,2,5,11,10,7,1,12,6,1,14,11,10,9,8,1,8,1,8,1,8,1,3,12,3,12,3,12,3,12,9,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,1,14,11,10,13,0,4,9,8,1,8,14,12,6,5,10,15,1,1,14,11,10,12,15,1,7,1,14,11,4,0,5,6,2,5,14,11,6,2,5,1,14,8,1,14,11,10,13,6,2,5,11,10,12,6,2,5,10,6,2,5,10,7,1,14,11,4,0,5,0,10,10,9,8,1,8,1,8,1,14,11,10,1,14,11,10,15,9,8,1,14,11,10,11,10,2,5,5,13,7,1,14,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 506.0, \"clip_end\": 509.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,1,14,11,4,0,5,12,6,2,15,3,12,1,15,1,2,14,11,12,15,9,8,1,14,11,10,0,5,15,3,12,3,12,3,12,9,8,1,8,1,8,1,14,11,10,5,5,0,5,3,12,3,12,3,12,9,8,1,8,1,14,11,10,13,6,2,5,14,11,12,6,2,5,14,11,10,4,9,8,1,8,1,14,11,10,7,1,14,11,1,14,11,12,6,2,5,2,5,8,1,12,15,1,4,9,8,1,12,6,2,5,5,4,9,8,1,14,4,0,4,0,5,8,1,14,11,10,9,8,1,6,2,5,5,2,5,7,1,14,11,4,9,8,1,14,11,10,9,8,1,14,11,10,8,1,8,1,8,1,8,1,14,11,10,5,13,4,0,5,13,0,4,9,8,1,14,11,12,6,2,5,8,1,8,1,8,1,14,11,10,10,2,5,10,15,1,2,5,4,9,8,1,8,1,14,11,12,12,6,2,5,3,12,3,12,1,14,11,10,5,1,14,11,10,1,14,11,12,6,2,5,13,5,11,12,14,11,10,9,8,1,8,1,14,11,10,4,9,8,1,8,1,8,1,8,1,8,1,4,0,5,9,8,1,14,11,12,15,9,8,1,14,11,12,6,5,14,11,10,9,8,1,8,1,8,1,8,1,8,1,5,8,1,14,11,12,6,2,5,2,10,11,12,6,7,12,6,2,15,9,8,1,14,11,15,3,12,9,8,1,14,11,10,6,2,5,12,15,1,2,5,13,1,14,11,10,6,2,5,1,14,11,10,6,2,5,7,1,14,11,4,0,5,15,6,2,5,2,5,11,10,7,1,12,6,1,14,11,10,9,8,1,8,1,8,1,8,1,3,12,3,12,3,12,3,12,9,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,1,14,11,10,13,0,4,9,8,1,8,14,12,6,5,10,15,1,1,14,11,10,12,15,1,7,1,14,11,4,0,5,6,2,5,14,11,6,2,5,1,14,8,1,14,11,10,13,6,2,5,11,10,12,6,2,5,10,6,2,5,10,7,1,14,11,4,0,5,0,10,10,9,8,1,8,1,8,1,14,11,10,1,14,11,10,15,9,8,1,14,11,10,11,10,2,5,5,13,7,1,14,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"12\", \"3\", \"12\"], \"clip_start\": 379.0, \"clip_end\": 384.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,1,14,11,4,0,5,12,6,2,15,3,12,1,15,1,2,14,11,12,15,9,8,1,14,11,10,0,5,15,3,12,3,12,3,12,9,8,1,8,1,8,1,14,11,10,5,5,0,5,3,12,3,12,3,12,9,8,1,8,1,14,11,10,13,6,2,5,14,11,12,6,2,5,14,11,10,4,9,8,1,8,1,14,11,10,7,1,14,11,1,14,11,12,6,2,5,2,5,8,1,12,15,1,4,9,8,1,12,6,2,5,5,4,9,8,1,14,4,0,4,0,5,8,1,14,11,10,9,8,1,6,2,5,5,2,5,7,1,14,11,4,9,8,1,14,11,10,9,8,1,14,11,10,8,1,8,1,8,1,8,1,14,11,10,5,13,4,0,5,13,0,4,9,8,1,14,11,12,6,2,5,8,1,8,1,8,1,14,11,10,10,2,5,10,15,1,2,5,4,9,8,1,8,1,14,11,12,12,6,2,5,3,12,3,12,1,14,11,10,5,1,14,11,10,1,14,11,12,6,2,5,13,5,11,12,14,11,10,9,8,1,8,1,14,11,10,4,9,8,1,8,1,8,1,8,1,8,1,4,0,5,9,8,1,14,11,12,15,9,8,1,14,11,12,6,5,14,11,10,9,8,1,8,1,8,1,8,1,8,1,5,8,1,14,11,12,6,2,5,2,10,11,12,6,7,12,6,2,15,9,8,1,14,11,15,3,12,9,8,1,14,11,10,6,2,5,12,15,1,2,5,13,1,14,11,10,6,2,5,1,14,11,10,6,2,5,7,1,14,11,4,0,5,15,6,2,5,2,5,11,10,7,1,12,6,1,14,11,10,9,8,1,8,1,8,1,8,1,3,12,3,12,3,12,3,12,9,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,1,14,11,10,13,0,4,9,8,1,8,14,12,6,5,10,15,1,1,14,11,10,12,15,1,7,1,14,11,4,0,5,6,2,5,14,11,6,2,5,1,14,8,1,14,11,10,13,6,2,5,11,10,12,6,2,5,10,6,2,5,10,7,1,14,11,4,0,5,0,10,10,9,8,1,8,1,8,1,14,11,10,1,14,11,10,15,9,8,1,14,11,10,11,10,2,5,5,13,7,1,14,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"11\", \"4\"], \"clip_start\": 470.0, \"clip_end\": 474.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,1,14,11,4,0,5,12,6,2,15,3,12,1,15,1,2,14,11,12,15,9,8,1,14,11,10,0,5,15,3,12,3,12,3,12,9,8,1,8,1,8,1,14,11,10,5,5,0,5,3,12,3,12,3,12,9,8,1,8,1,14,11,10,13,6,2,5,14,11,12,6,2,5,14,11,10,4,9,8,1,8,1,14,11,10,7,1,14,11,1,14,11,12,6,2,5,2,5,8,1,12,15,1,4,9,8,1,12,6,2,5,5,4,9,8,1,14,4,0,4,0,5,8,1,14,11,10,9,8,1,6,2,5,5,2,5,7,1,14,11,4,9,8,1,14,11,10,9,8,1,14,11,10,8,1,8,1,8,1,8,1,14,11,10,5,13,4,0,5,13,0,4,9,8,1,14,11,12,6,2,5,8,1,8,1,8,1,14,11,10,10,2,5,10,15,1,2,5,4,9,8,1,8,1,14,11,12,12,6,2,5,3,12,3,12,1,14,11,10,5,1,14,11,10,1,14,11,12,6,2,5,13,5,11,12,14,11,10,9,8,1,8,1,14,11,10,4,9,8,1,8,1,8,1,8,1,8,1,4,0,5,9,8,1,14,11,12,15,9,8,1,14,11,12,6,5,14,11,10,9,8,1,8,1,8,1,8,1,8,1,5,8,1,14,11,12,6,2,5,2,10,11,12,6,7,12,6,2,15,9,8,1,14,11,15,3,12,9,8,1,14,11,10,6,2,5,12,15,1,2,5,13,1,14,11,10,6,2,5,1,14,11,10,6,2,5,7,1,14,11,4,0,5,15,6,2,5,2,5,11,10,7,1,12,6,1,14,11,10,9,8,1,8,1,8,1,8,1,3,12,3,12,3,12,3,12,9,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,1,14,11,10,13,0,4,9,8,1,8,14,12,6,5,10,15,1,1,14,11,10,12,15,1,7,1,14,11,4,0,5,6,2,5,14,11,6,2,5,1,14,8,1,14,11,10,13,6,2,5,11,10,12,6,2,5,10,6,2,5,10,7,1,14,11,4,0,5,0,10,10,9,8,1,8,1,8,1,14,11,10,1,14,11,10,15,9,8,1,14,11,10,11,10,2,5,5,13,7,1,14,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"5\", \"7\", \"1\", \"14\"], \"clip_start\": 346.0, \"clip_end\": 351.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,1,14,11,4,0,5,12,6,2,15,3,12,1,15,1,2,14,11,12,15,9,8,1,14,11,10,0,5,15,3,12,3,12,3,12,9,8,1,8,1,8,1,14,11,10,5,5,0,5,3,12,3,12,3,12,9,8,1,8,1,14,11,10,13,6,2,5,14,11,12,6,2,5,14,11,10,4,9,8,1,8,1,14,11,10,7,1,14,11,1,14,11,12,6,2,5,2,5,8,1,12,15,1,4,9,8,1,12,6,2,5,5,4,9,8,1,14,4,0,4,0,5,8,1,14,11,10,9,8,1,6,2,5,5,2,5,7,1,14,11,4,9,8,1,14,11,10,9,8,1,14,11,10,8,1,8,1,8,1,8,1,14,11,10,5,13,4,0,5,13,0,4,9,8,1,14,11,12,6,2,5,8,1,8,1,8,1,14,11,10,10,2,5,10,15,1,2,5,4,9,8,1,8,1,14,11,12,12,6,2,5,3,12,3,12,1,14,11,10,5,1,14,11,10,1,14,11,12,6,2,5,13,5,11,12,14,11,10,9,8,1,8,1,14,11,10,4,9,8,1,8,1,8,1,8,1,8,1,4,0,5,9,8,1,14,11,12,15,9,8,1,14,11,12,6,5,14,11,10,9,8,1,8,1,8,1,8,1,8,1,5,8,1,14,11,12,6,2,5,2,10,11,12,6,7,12,6,2,15,9,8,1,14,11,15,3,12,9,8,1,14,11,10,6,2,5,12,15,1,2,5,13,1,14,11,10,6,2,5,1,14,11,10,6,2,5,7,1,14,11,4,0,5,15,6,2,5,2,5,11,10,7,1,12,6,1,14,11,10,9,8,1,8,1,8,1,8,1,3,12,3,12,3,12,3,12,9,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,1,14,11,10,13,0,4,9,8,1,8,14,12,6,5,10,15,1,1,14,11,10,12,15,1,7,1,14,11,4,0,5,6,2,5,14,11,6,2,5,1,14,8,1,14,11,10,13,6,2,5,11,10,12,6,2,5,10,6,2,5,10,7,1,14,11,4,0,5,0,10,10,9,8,1,8,1,8,1,14,11,10,1,14,11,10,15,9,8,1,14,11,10,11,10,2,5,5,13,7,1,14,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 266.0, \"clip_end\": 272.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,1,14,11,4,0,5,12,6,2,15,3,12,1,15,1,2,14,11,12,15,9,8,1,14,11,10,0,5,15,3,12,3,12,3,12,9,8,1,8,1,8,1,14,11,10,5,5,0,5,3,12,3,12,3,12,9,8,1,8,1,14,11,10,13,6,2,5,14,11,12,6,2,5,14,11,10,4,9,8,1,8,1,14,11,10,7,1,14,11,1,14,11,12,6,2,5,2,5,8,1,12,15,1,4,9,8,1,12,6,2,5,5,4,9,8,1,14,4,0,4,0,5,8,1,14,11,10,9,8,1,6,2,5,5,2,5,7,1,14,11,4,9,8,1,14,11,10,9,8,1,14,11,10,8,1,8,1,8,1,8,1,14,11,10,5,13,4,0,5,13,0,4,9,8,1,14,11,12,6,2,5,8,1,8,1,8,1,14,11,10,10,2,5,10,15,1,2,5,4,9,8,1,8,1,14,11,12,12,6,2,5,3,12,3,12,1,14,11,10,5,1,14,11,10,1,14,11,12,6,2,5,13,5,11,12,14,11,10,9,8,1,8,1,14,11,10,4,9,8,1,8,1,8,1,8,1,8,1,4,0,5,9,8,1,14,11,12,15,9,8,1,14,11,12,6,5,14,11,10,9,8,1,8,1,8,1,8,1,8,1,5,8,1,14,11,12,6,2,5,2,10,11,12,6,7,12,6,2,15,9,8,1,14,11,15,3,12,9,8,1,14,11,10,6,2,5,12,15,1,2,5,13,1,14,11,10,6,2,5,1,14,11,10,6,2,5,7,1,14,11,4,0,5,15,6,2,5,2,5,11,10,7,1,12,6,1,14,11,10,9,8,1,8,1,8,1,8,1,3,12,3,12,3,12,3,12,9,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,1,14,11,10,13,0,4,9,8,1,8,14,12,6,5,10,15,1,1,14,11,10,12,15,1,7,1,14,11,4,0,5,6,2,5,14,11,6,2,5,1,14,8,1,14,11,10,13,6,2,5,11,10,12,6,2,5,10,6,2,5,10,7,1,14,11,4,0,5,0,10,10,9,8,1,8,1,8,1,14,11,10,1,14,11,10,15,9,8,1,14,11,10,11,10,2,5,5,13,7,1,14,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"8\", \"1\"], \"clip_start\": 36.0, \"clip_end\": 40.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,1,14,11,4,0,5,12,6,2,15,3,12,1,15,1,2,14,11,12,15,9,8,1,14,11,10,0,5,15,3,12,3,12,3,12,9,8,1,8,1,8,1,14,11,10,5,5,0,5,3,12,3,12,3,12,9,8,1,8,1,14,11,10,13,6,2,5,14,11,12,6,2,5,14,11,10,4,9,8,1,8,1,14,11,10,7,1,14,11,1,14,11,12,6,2,5,2,5,8,1,12,15,1,4,9,8,1,12,6,2,5,5,4,9,8,1,14,4,0,4,0,5,8,1,14,11,10,9,8,1,6,2,5,5,2,5,7,1,14,11,4,9,8,1,14,11,10,9,8,1,14,11,10,8,1,8,1,8,1,8,1,14,11,10,5,13,4,0,5,13,0,4,9,8,1,14,11,12,6,2,5,8,1,8,1,8,1,14,11,10,10,2,5,10,15,1,2,5,4,9,8,1,8,1,14,11,12,12,6,2,5,3,12,3,12,1,14,11,10,5,1,14,11,10,1,14,11,12,6,2,5,13,5,11,12,14,11,10,9,8,1,8,1,14,11,10,4,9,8,1,8,1,8,1,8,1,8,1,4,0,5,9,8,1,14,11,12,15,9,8,1,14,11,12,6,5,14,11,10,9,8,1,8,1,8,1,8,1,8,1,5,8,1,14,11,12,6,2,5,2,10,11,12,6,7,12,6,2,15,9,8,1,14,11,15,3,12,9,8,1,14,11,10,6,2,5,12,15,1,2,5,13,1,14,11,10,6,2,5,1,14,11,10,6,2,5,7,1,14,11,4,0,5,15,6,2,5,2,5,11,10,7,1,12,6,1,14,11,10,9,8,1,8,1,8,1,8,1,3,12,3,12,3,12,3,12,9,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,1,14,11,10,13,0,4,9,8,1,8,14,12,6,5,10,15,1,1,14,11,10,12,15,1,7,1,14,11,4,0,5,6,2,5,14,11,6,2,5,1,14,8,1,14,11,10,13,6,2,5,11,10,12,6,2,5,10,6,2,5,10,7,1,14,11,4,0,5,0,10,10,9,8,1,8,1,8,1,14,11,10,1,14,11,10,15,9,8,1,14,11,10,11,10,2,5,5,13,7,1,14,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"8\", \"1\", \"8\", \"1\"], \"clip_start\": 375.0, \"clip_end\": 380.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,7,1,14,11,4,0,5,12,6,2,15,3,12,1,15,1,2,14,11,12,15,9,8,1,14,11,10,0,5,15,3,12,3,12,3,12,9,8,1,8,1,8,1,14,11,10,5,5,0,5,3,12,3,12,3,12,9,8,1,8,1,14,11,10,13,6,2,5,14,11,12,6,2,5,14,11,10,4,9,8,1,8,1,14,11,10,7,1,14,11,1,14,11,12,6,2,5,2,5,8,1,12,15,1,4,9,8,1,12,6,2,5,5,4,9,8,1,14,4,0,4,0,5,8,1,14,11,10,9,8,1,6,2,5,5,2,5,7,1,14,11,4,9,8,1,14,11,10,9,8,1,14,11,10,8,1,8,1,8,1,8,1,14,11,10,5,13,4,0,5,13,0,4,9,8,1,14,11,12,6,2,5,8,1,8,1,8,1,14,11,10,10,2,5,10,15,1,2,5,4,9,8,1,8,1,14,11,12,12,6,2,5,3,12,3,12,1,14,11,10,5,1,14,11,10,1,14,11,12,6,2,5,13,5,11,12,14,11,10,9,8,1,8,1,14,11,10,4,9,8,1,8,1,8,1,8,1,8,1,4,0,5,9,8,1,14,11,12,15,9,8,1,14,11,12,6,5,14,11,10,9,8,1,8,1,8,1,8,1,8,1,5,8,1,14,11,12,6,2,5,2,10,11,12,6,7,12,6,2,15,9,8,1,14,11,15,3,12,9,8,1,14,11,10,6,2,5,12,15,1,2,5,13,1,14,11,10,6,2,5,1,14,11,10,6,2,5,7,1,14,11,4,0,5,15,6,2,5,2,5,11,10,7,1,12,6,1,14,11,10,9,8,1,8,1,8,1,8,1,3,12,3,12,3,12,3,12,9,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,1,14,11,10,13,0,4,9,8,1,8,14,12,6,5,10,15,1,1,14,11,10,12,15,1,7,1,14,11,4,0,5,6,2,5,14,11,6,2,5,1,14,8,1,14,11,10,13,6,2,5,11,10,12,6,2,5,10,6,2,5,10,7,1,14,11,4,0,5,0,10,10,9,8,1,8,1,8,1,14,11,10,1,14,11,10,15,9,8,1,14,11,10,11,10,2,5,5,13,7,1,14,11,1,2", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"7\", \"3\", \"9\", \"3\", \"4\"], \"clip_start\": 432.0, \"clip_end\": 438.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,15,6,2,4,7,3,8,11,13,8,11,13,4,8,11,13,3,5,12,13,1,12,2,14,0,2,9,3,14,0,8,4,8,11,14,0,2,9,3,14,0,3,11,13,2,1,12,2,4,8,11,14,0,5,0,4,7,3,8,11,13,3,4,8,11,14,0,5,9,3,3,11,14,0,13,6,0,7,3,9,3,13,8,11,13,4,11,13,10,14,12,13,6,4,7,15,9,8,11,13,4,7,3,7,3,12,2,5,9,15,6,9,3,15,9,8,1,13,1,7,15,9,8,11,14,0,15,6,8,4,7,8,11,14,0,4,8,11,13,4,8,11,14,0,11,13,12,2,14,0,4,7,15,0,14,0,9,3,15,9,8,11,14,0,9,3,2,9,3,3,5,9,3,8,11,13,3,1,12,13,1,7,3,12,13,1,7,3,0,14,0,11,10,9,3,9,3,6,1,7,3,1,7,3,2,9,3,3,15,9,8,11,13,4,8,11,13,1,7,15,6,1,7,3,3,8,4,15,9,8,11,13,3,7,3,12,13,10,11,14,0,15,9,8,11,13,3,6,6,0,3,2,5,0,9,3,7,15,9,8,11,14,0,4,7,15,9,8,11,14,0,9,3,15,9,8,11,13,8,11,13,4,8,11,14,0,11,14,0,7,3,1,7,3,8,11,13,3,0,12,13,1,12,13,10,11,14,0,0,11,14,0,14,0,10,3,9,3,8,4,7,8,11,13,4,8,11,14,0,6,2,9,3,7,3,7,15,5,0,14,0,2,9,3,1,12,2,5,9,3,5,14,0,4,7,3,0,8,11,13,15,9,8,11,0,8,4,8,11,13,4,8,11,13,3,10,9,3,7,3,11,14,0,11,14,0,14,0,8,11,13,4,8,11,14,13,10,10,4,7,3,9,3,14,0,4,8,11,13,4,8,11,13,4,7,15,6,1,13,1,12,2,5,0,11,13,10,2,9,3,1,7,3,9,3,4,7,15,9,8,4,7,3,13,10,5,14,0,5,14,0,0,8,11,13,3,11,13,10,15,6,6,2,1,5,14,14,0,13,1,13,1,7,3,15,6,10,11,13,2,9,3,13,1,12,2,14,0,6,1,12,2,14,0,7,3,3,11,14,0,14,0,5,14,0,0,12,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"13\"], \"clip_start\": 91.0, \"clip_end\": 94.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,15,6,2,4,7,3,8,11,13,8,11,13,4,8,11,13,3,5,12,13,1,12,2,14,0,2,9,3,14,0,8,4,8,11,14,0,2,9,3,14,0,3,11,13,2,1,12,2,4,8,11,14,0,5,0,4,7,3,8,11,13,3,4,8,11,14,0,5,9,3,3,11,14,0,13,6,0,7,3,9,3,13,8,11,13,4,11,13,10,14,12,13,6,4,7,15,9,8,11,13,4,7,3,7,3,12,2,5,9,15,6,9,3,15,9,8,1,13,1,7,15,9,8,11,14,0,15,6,8,4,7,8,11,14,0,4,8,11,13,4,8,11,14,0,11,13,12,2,14,0,4,7,15,0,14,0,9,3,15,9,8,11,14,0,9,3,2,9,3,3,5,9,3,8,11,13,3,1,12,13,1,7,3,12,13,1,7,3,0,14,0,11,10,9,3,9,3,6,1,7,3,1,7,3,2,9,3,3,15,9,8,11,13,4,8,11,13,1,7,15,6,1,7,3,3,8,4,15,9,8,11,13,3,7,3,12,13,10,11,14,0,15,9,8,11,13,3,6,6,0,3,2,5,0,9,3,7,15,9,8,11,14,0,4,7,15,9,8,11,14,0,9,3,15,9,8,11,13,8,11,13,4,8,11,14,0,11,14,0,7,3,1,7,3,8,11,13,3,0,12,13,1,12,13,10,11,14,0,0,11,14,0,14,0,10,3,9,3,8,4,7,8,11,13,4,8,11,14,0,6,2,9,3,7,3,7,15,5,0,14,0,2,9,3,1,12,2,5,9,3,5,14,0,4,7,3,0,8,11,13,15,9,8,11,0,8,4,8,11,13,4,8,11,13,3,10,9,3,7,3,11,14,0,11,14,0,14,0,8,11,13,4,8,11,14,13,10,10,4,7,3,9,3,14,0,4,8,11,13,4,8,11,13,4,7,15,6,1,13,1,12,2,5,0,11,13,10,2,9,3,1,7,3,9,3,4,7,15,9,8,4,7,3,13,10,5,14,0,5,14,0,0,8,11,13,3,11,13,10,15,6,6,2,1,5,14,14,0,13,1,13,1,7,3,15,6,10,11,13,2,9,3,13,1,12,2,14,0,6,1,12,2,14,0,7,3,3,11,14,0,14,0,5,14,0,0,12,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"3\", \"4\", \"7\"], \"clip_start\": 434.0, \"clip_end\": 439.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,15,6,2,4,7,3,8,11,13,8,11,13,4,8,11,13,3,5,12,13,1,12,2,14,0,2,9,3,14,0,8,4,8,11,14,0,2,9,3,14,0,3,11,13,2,1,12,2,4,8,11,14,0,5,0,4,7,3,8,11,13,3,4,8,11,14,0,5,9,3,3,11,14,0,13,6,0,7,3,9,3,13,8,11,13,4,11,13,10,14,12,13,6,4,7,15,9,8,11,13,4,7,3,7,3,12,2,5,9,15,6,9,3,15,9,8,1,13,1,7,15,9,8,11,14,0,15,6,8,4,7,8,11,14,0,4,8,11,13,4,8,11,14,0,11,13,12,2,14,0,4,7,15,0,14,0,9,3,15,9,8,11,14,0,9,3,2,9,3,3,5,9,3,8,11,13,3,1,12,13,1,7,3,12,13,1,7,3,0,14,0,11,10,9,3,9,3,6,1,7,3,1,7,3,2,9,3,3,15,9,8,11,13,4,8,11,13,1,7,15,6,1,7,3,3,8,4,15,9,8,11,13,3,7,3,12,13,10,11,14,0,15,9,8,11,13,3,6,6,0,3,2,5,0,9,3,7,15,9,8,11,14,0,4,7,15,9,8,11,14,0,9,3,15,9,8,11,13,8,11,13,4,8,11,14,0,11,14,0,7,3,1,7,3,8,11,13,3,0,12,13,1,12,13,10,11,14,0,0,11,14,0,14,0,10,3,9,3,8,4,7,8,11,13,4,8,11,14,0,6,2,9,3,7,3,7,15,5,0,14,0,2,9,3,1,12,2,5,9,3,5,14,0,4,7,3,0,8,11,13,15,9,8,11,0,8,4,8,11,13,4,8,11,13,3,10,9,3,7,3,11,14,0,11,14,0,14,0,8,11,13,4,8,11,14,13,10,10,4,7,3,9,3,14,0,4,8,11,13,4,8,11,13,4,7,15,6,1,13,1,12,2,5,0,11,13,10,2,9,3,1,7,3,9,3,4,7,15,9,8,4,7,3,13,10,5,14,0,5,14,0,0,8,11,13,3,11,13,10,15,6,6,2,1,5,14,14,0,13,1,13,1,7,3,15,6,10,11,13,2,9,3,13,1,12,2,14,0,6,1,12,2,14,0,7,3,3,11,14,0,14,0,5,14,0,0,12,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"15\", \"9\"], \"clip_start\": 360.0, \"clip_end\": 364.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,15,6,2,4,7,3,8,11,13,8,11,13,4,8,11,13,3,5,12,13,1,12,2,14,0,2,9,3,14,0,8,4,8,11,14,0,2,9,3,14,0,3,11,13,2,1,12,2,4,8,11,14,0,5,0,4,7,3,8,11,13,3,4,8,11,14,0,5,9,3,3,11,14,0,13,6,0,7,3,9,3,13,8,11,13,4,11,13,10,14,12,13,6,4,7,15,9,8,11,13,4,7,3,7,3,12,2,5,9,15,6,9,3,15,9,8,1,13,1,7,15,9,8,11,14,0,15,6,8,4,7,8,11,14,0,4,8,11,13,4,8,11,14,0,11,13,12,2,14,0,4,7,15,0,14,0,9,3,15,9,8,11,14,0,9,3,2,9,3,3,5,9,3,8,11,13,3,1,12,13,1,7,3,12,13,1,7,3,0,14,0,11,10,9,3,9,3,6,1,7,3,1,7,3,2,9,3,3,15,9,8,11,13,4,8,11,13,1,7,15,6,1,7,3,3,8,4,15,9,8,11,13,3,7,3,12,13,10,11,14,0,15,9,8,11,13,3,6,6,0,3,2,5,0,9,3,7,15,9,8,11,14,0,4,7,15,9,8,11,14,0,9,3,15,9,8,11,13,8,11,13,4,8,11,14,0,11,14,0,7,3,1,7,3,8,11,13,3,0,12,13,1,12,13,10,11,14,0,0,11,14,0,14,0,10,3,9,3,8,4,7,8,11,13,4,8,11,14,0,6,2,9,3,7,3,7,15,5,0,14,0,2,9,3,1,12,2,5,9,3,5,14,0,4,7,3,0,8,11,13,15,9,8,11,0,8,4,8,11,13,4,8,11,13,3,10,9,3,7,3,11,14,0,11,14,0,14,0,8,11,13,4,8,11,14,13,10,10,4,7,3,9,3,14,0,4,8,11,13,4,8,11,13,4,7,15,6,1,13,1,12,2,5,0,11,13,10,2,9,3,1,7,3,9,3,4,7,15,9,8,4,7,3,13,10,5,14,0,5,14,0,0,8,11,13,3,11,13,10,15,6,6,2,1,5,14,14,0,13,1,13,1,7,3,15,6,10,11,13,2,9,3,13,1,12,2,14,0,6,1,12,2,14,0,7,3,3,11,14,0,14,0,5,14,0,0,12,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 68.0, \"clip_end\": 71.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,15,6,2,4,7,3,8,11,13,8,11,13,4,8,11,13,3,5,12,13,1,12,2,14,0,2,9,3,14,0,8,4,8,11,14,0,2,9,3,14,0,3,11,13,2,1,12,2,4,8,11,14,0,5,0,4,7,3,8,11,13,3,4,8,11,14,0,5,9,3,3,11,14,0,13,6,0,7,3,9,3,13,8,11,13,4,11,13,10,14,12,13,6,4,7,15,9,8,11,13,4,7,3,7,3,12,2,5,9,15,6,9,3,15,9,8,1,13,1,7,15,9,8,11,14,0,15,6,8,4,7,8,11,14,0,4,8,11,13,4,8,11,14,0,11,13,12,2,14,0,4,7,15,0,14,0,9,3,15,9,8,11,14,0,9,3,2,9,3,3,5,9,3,8,11,13,3,1,12,13,1,7,3,12,13,1,7,3,0,14,0,11,10,9,3,9,3,6,1,7,3,1,7,3,2,9,3,3,15,9,8,11,13,4,8,11,13,1,7,15,6,1,7,3,3,8,4,15,9,8,11,13,3,7,3,12,13,10,11,14,0,15,9,8,11,13,3,6,6,0,3,2,5,0,9,3,7,15,9,8,11,14,0,4,7,15,9,8,11,14,0,9,3,15,9,8,11,13,8,11,13,4,8,11,14,0,11,14,0,7,3,1,7,3,8,11,13,3,0,12,13,1,12,13,10,11,14,0,0,11,14,0,14,0,10,3,9,3,8,4,7,8,11,13,4,8,11,14,0,6,2,9,3,7,3,7,15,5,0,14,0,2,9,3,1,12,2,5,9,3,5,14,0,4,7,3,0,8,11,13,15,9,8,11,0,8,4,8,11,13,4,8,11,13,3,10,9,3,7,3,11,14,0,11,14,0,14,0,8,11,13,4,8,11,14,13,10,10,4,7,3,9,3,14,0,4,8,11,13,4,8,11,13,4,7,15,6,1,13,1,12,2,5,0,11,13,10,2,9,3,1,7,3,9,3,4,7,15,9,8,4,7,3,13,10,5,14,0,5,14,0,0,8,11,13,3,11,13,10,15,6,6,2,1,5,14,14,0,13,1,13,1,7,3,15,6,10,11,13,2,9,3,13,1,12,2,14,0,6,1,12,2,14,0,7,3,3,11,14,0,14,0,5,14,0,0,12,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"15\", \"9\", \"8\"], \"clip_start\": 157.0, \"clip_end\": 163.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,15,6,2,4,7,3,8,11,13,8,11,13,4,8,11,13,3,5,12,13,1,12,2,14,0,2,9,3,14,0,8,4,8,11,14,0,2,9,3,14,0,3,11,13,2,1,12,2,4,8,11,14,0,5,0,4,7,3,8,11,13,3,4,8,11,14,0,5,9,3,3,11,14,0,13,6,0,7,3,9,3,13,8,11,13,4,11,13,10,14,12,13,6,4,7,15,9,8,11,13,4,7,3,7,3,12,2,5,9,15,6,9,3,15,9,8,1,13,1,7,15,9,8,11,14,0,15,6,8,4,7,8,11,14,0,4,8,11,13,4,8,11,14,0,11,13,12,2,14,0,4,7,15,0,14,0,9,3,15,9,8,11,14,0,9,3,2,9,3,3,5,9,3,8,11,13,3,1,12,13,1,7,3,12,13,1,7,3,0,14,0,11,10,9,3,9,3,6,1,7,3,1,7,3,2,9,3,3,15,9,8,11,13,4,8,11,13,1,7,15,6,1,7,3,3,8,4,15,9,8,11,13,3,7,3,12,13,10,11,14,0,15,9,8,11,13,3,6,6,0,3,2,5,0,9,3,7,15,9,8,11,14,0,4,7,15,9,8,11,14,0,9,3,15,9,8,11,13,8,11,13,4,8,11,14,0,11,14,0,7,3,1,7,3,8,11,13,3,0,12,13,1,12,13,10,11,14,0,0,11,14,0,14,0,10,3,9,3,8,4,7,8,11,13,4,8,11,14,0,6,2,9,3,7,3,7,15,5,0,14,0,2,9,3,1,12,2,5,9,3,5,14,0,4,7,3,0,8,11,13,15,9,8,11,0,8,4,8,11,13,4,8,11,13,3,10,9,3,7,3,11,14,0,11,14,0,14,0,8,11,13,4,8,11,14,13,10,10,4,7,3,9,3,14,0,4,8,11,13,4,8,11,13,4,7,15,6,1,13,1,12,2,5,0,11,13,10,2,9,3,1,7,3,9,3,4,7,15,9,8,4,7,3,13,10,5,14,0,5,14,0,0,8,11,13,3,11,13,10,15,6,6,2,1,5,14,14,0,13,1,13,1,7,3,15,6,10,11,13,2,9,3,13,1,12,2,14,0,6,1,12,2,14,0,7,3,3,11,14,0,14,0,5,14,0,0,12,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"15\", \"9\", \"8\", \"11\"], \"clip_start\": 360.0, \"clip_end\": 366.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q6_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,15,6,2,4,7,3,8,11,13,8,11,13,4,8,11,13,3,5,12,13,1,12,2,14,0,2,9,3,14,0,8,4,8,11,14,0,2,9,3,14,0,3,11,13,2,1,12,2,4,8,11,14,0,5,0,4,7,3,8,11,13,3,4,8,11,14,0,5,9,3,3,11,14,0,13,6,0,7,3,9,3,13,8,11,13,4,11,13,10,14,12,13,6,4,7,15,9,8,11,13,4,7,3,7,3,12,2,5,9,15,6,9,3,15,9,8,1,13,1,7,15,9,8,11,14,0,15,6,8,4,7,8,11,14,0,4,8,11,13,4,8,11,14,0,11,13,12,2,14,0,4,7,15,0,14,0,9,3,15,9,8,11,14,0,9,3,2,9,3,3,5,9,3,8,11,13,3,1,12,13,1,7,3,12,13,1,7,3,0,14,0,11,10,9,3,9,3,6,1,7,3,1,7,3,2,9,3,3,15,9,8,11,13,4,8,11,13,1,7,15,6,1,7,3,3,8,4,15,9,8,11,13,3,7,3,12,13,10,11,14,0,15,9,8,11,13,3,6,6,0,3,2,5,0,9,3,7,15,9,8,11,14,0,4,7,15,9,8,11,14,0,9,3,15,9,8,11,13,8,11,13,4,8,11,14,0,11,14,0,7,3,1,7,3,8,11,13,3,0,12,13,1,12,13,10,11,14,0,0,11,14,0,14,0,10,3,9,3,8,4,7,8,11,13,4,8,11,14,0,6,2,9,3,7,3,7,15,5,0,14,0,2,9,3,1,12,2,5,9,3,5,14,0,4,7,3,0,8,11,13,15,9,8,11,0,8,4,8,11,13,4,8,11,13,3,10,9,3,7,3,11,14,0,11,14,0,14,0,8,11,13,4,8,11,14,13,10,10,4,7,3,9,3,14,0,4,8,11,13,4,8,11,13,4,7,15,6,1,13,1,12,2,5,0,11,13,10,2,9,3,1,7,3,9,3,4,7,15,9,8,4,7,3,13,10,5,14,0,5,14,0,0,8,11,13,3,11,13,10,15,6,6,2,1,5,14,14,0,13,1,13,1,7,3,15,6,10,11,13,2,9,3,13,1,12,2,14,0,6,1,12,2,14,0,7,3,3,11,14,0,14,0,5,14,0,0,12,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"12\", \"10\", \"12\"], \"clip_start\": 436.0, \"clip_end\": 440.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,15,6,2,4,7,3,8,11,13,8,11,13,4,8,11,13,3,5,12,13,1,12,2,14,0,2,9,3,14,0,8,4,8,11,14,0,2,9,3,14,0,3,11,13,2,1,12,2,4,8,11,14,0,5,0,4,7,3,8,11,13,3,4,8,11,14,0,5,9,3,3,11,14,0,13,6,0,7,3,9,3,13,8,11,13,4,11,13,10,14,12,13,6,4,7,15,9,8,11,13,4,7,3,7,3,12,2,5,9,15,6,9,3,15,9,8,1,13,1,7,15,9,8,11,14,0,15,6,8,4,7,8,11,14,0,4,8,11,13,4,8,11,14,0,11,13,12,2,14,0,4,7,15,0,14,0,9,3,15,9,8,11,14,0,9,3,2,9,3,3,5,9,3,8,11,13,3,1,12,13,1,7,3,12,13,1,7,3,0,14,0,11,10,9,3,9,3,6,1,7,3,1,7,3,2,9,3,3,15,9,8,11,13,4,8,11,13,1,7,15,6,1,7,3,3,8,4,15,9,8,11,13,3,7,3,12,13,10,11,14,0,15,9,8,11,13,3,6,6,0,3,2,5,0,9,3,7,15,9,8,11,14,0,4,7,15,9,8,11,14,0,9,3,15,9,8,11,13,8,11,13,4,8,11,14,0,11,14,0,7,3,1,7,3,8,11,13,3,0,12,13,1,12,13,10,11,14,0,0,11,14,0,14,0,10,3,9,3,8,4,7,8,11,13,4,8,11,14,0,6,2,9,3,7,3,7,15,5,0,14,0,2,9,3,1,12,2,5,9,3,5,14,0,4,7,3,0,8,11,13,15,9,8,11,0,8,4,8,11,13,4,8,11,13,3,10,9,3,7,3,11,14,0,11,14,0,14,0,8,11,13,4,8,11,14,13,10,10,4,7,3,9,3,14,0,4,8,11,13,4,8,11,13,4,7,15,6,1,13,1,12,2,5,0,11,13,10,2,9,3,1,7,3,9,3,4,7,15,9,8,4,7,3,13,10,5,14,0,5,14,0,0,8,11,13,3,11,13,10,15,6,6,2,1,5,14,14,0,13,1,13,1,7,3,15,6,10,11,13,2,9,3,13,1,12,2,14,0,6,1,12,2,14,0,7,3,3,11,14,0,14,0,5,14,0,0,12,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"4\", \"8\"], \"clip_start\": 281.0, \"clip_end\": 285.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q8_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,15,6,2,4,7,3,8,11,13,8,11,13,4,8,11,13,3,5,12,13,1,12,2,14,0,2,9,3,14,0,8,4,8,11,14,0,2,9,3,14,0,3,11,13,2,1,12,2,4,8,11,14,0,5,0,4,7,3,8,11,13,3,4,8,11,14,0,5,9,3,3,11,14,0,13,6,0,7,3,9,3,13,8,11,13,4,11,13,10,14,12,13,6,4,7,15,9,8,11,13,4,7,3,7,3,12,2,5,9,15,6,9,3,15,9,8,1,13,1,7,15,9,8,11,14,0,15,6,8,4,7,8,11,14,0,4,8,11,13,4,8,11,14,0,11,13,12,2,14,0,4,7,15,0,14,0,9,3,15,9,8,11,14,0,9,3,2,9,3,3,5,9,3,8,11,13,3,1,12,13,1,7,3,12,13,1,7,3,0,14,0,11,10,9,3,9,3,6,1,7,3,1,7,3,2,9,3,3,15,9,8,11,13,4,8,11,13,1,7,15,6,1,7,3,3,8,4,15,9,8,11,13,3,7,3,12,13,10,11,14,0,15,9,8,11,13,3,6,6,0,3,2,5,0,9,3,7,15,9,8,11,14,0,4,7,15,9,8,11,14,0,9,3,15,9,8,11,13,8,11,13,4,8,11,14,0,11,14,0,7,3,1,7,3,8,11,13,3,0,12,13,1,12,13,10,11,14,0,0,11,14,0,14,0,10,3,9,3,8,4,7,8,11,13,4,8,11,14,0,6,2,9,3,7,3,7,15,5,0,14,0,2,9,3,1,12,2,5,9,3,5,14,0,4,7,3,0,8,11,13,15,9,8,11,0,8,4,8,11,13,4,8,11,13,3,10,9,3,7,3,11,14,0,11,14,0,14,0,8,11,13,4,8,11,14,13,10,10,4,7,3,9,3,14,0,4,8,11,13,4,8,11,13,4,7,15,6,1,13,1,12,2,5,0,11,13,10,2,9,3,1,7,3,9,3,4,7,15,9,8,4,7,3,13,10,5,14,0,5,14,0,0,8,11,13,3,11,13,10,15,6,6,2,1,5,14,14,0,13,1,13,1,7,3,15,6,10,11,13,2,9,3,13,1,12,2,14,0,6,1,12,2,14,0,7,3,3,11,14,0,14,0,5,14,0,0,12,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"3\", \"9\", \"3\", \"14\"], \"clip_start\": 401.0, \"clip_end\": 406.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q9_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,15,6,2,4,7,3,8,11,13,8,11,13,4,8,11,13,3,5,12,13,1,12,2,14,0,2,9,3,14,0,8,4,8,11,14,0,2,9,3,14,0,3,11,13,2,1,12,2,4,8,11,14,0,5,0,4,7,3,8,11,13,3,4,8,11,14,0,5,9,3,3,11,14,0,13,6,0,7,3,9,3,13,8,11,13,4,11,13,10,14,12,13,6,4,7,15,9,8,11,13,4,7,3,7,3,12,2,5,9,15,6,9,3,15,9,8,1,13,1,7,15,9,8,11,14,0,15,6,8,4,7,8,11,14,0,4,8,11,13,4,8,11,14,0,11,13,12,2,14,0,4,7,15,0,14,0,9,3,15,9,8,11,14,0,9,3,2,9,3,3,5,9,3,8,11,13,3,1,12,13,1,7,3,12,13,1,7,3,0,14,0,11,10,9,3,9,3,6,1,7,3,1,7,3,2,9,3,3,15,9,8,11,13,4,8,11,13,1,7,15,6,1,7,3,3,8,4,15,9,8,11,13,3,7,3,12,13,10,11,14,0,15,9,8,11,13,3,6,6,0,3,2,5,0,9,3,7,15,9,8,11,14,0,4,7,15,9,8,11,14,0,9,3,15,9,8,11,13,8,11,13,4,8,11,14,0,11,14,0,7,3,1,7,3,8,11,13,3,0,12,13,1,12,13,10,11,14,0,0,11,14,0,14,0,10,3,9,3,8,4,7,8,11,13,4,8,11,14,0,6,2,9,3,7,3,7,15,5,0,14,0,2,9,3,1,12,2,5,9,3,5,14,0,4,7,3,0,8,11,13,15,9,8,11,0,8,4,8,11,13,4,8,11,13,3,10,9,3,7,3,11,14,0,11,14,0,14,0,8,11,13,4,8,11,14,13,10,10,4,7,3,9,3,14,0,4,8,11,13,4,8,11,13,4,7,15,6,1,13,1,12,2,5,0,11,13,10,2,9,3,1,7,3,9,3,4,7,15,9,8,4,7,3,13,10,5,14,0,5,14,0,0,8,11,13,3,11,13,10,15,6,6,2,1,5,14,14,0,13,1,13,1,7,3,15,6,10,11,13,2,9,3,13,1,12,2,14,0,6,1,12,2,14,0,7,3,3,11,14,0,14,0,5,14,0,0,12,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"3\", \"13\", \"10\", \"5\"], \"clip_start\": 443.0, \"clip_end\": 448.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q10_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,15,6,2,4,7,3,8,11,13,8,11,13,4,8,11,13,3,5,12,13,1,12,2,14,0,2,9,3,14,0,8,4,8,11,14,0,2,9,3,14,0,3,11,13,2,1,12,2,4,8,11,14,0,5,0,4,7,3,8,11,13,3,4,8,11,14,0,5,9,3,3,11,14,0,13,6,0,7,3,9,3,13,8,11,13,4,11,13,10,14,12,13,6,4,7,15,9,8,11,13,4,7,3,7,3,12,2,5,9,15,6,9,3,15,9,8,1,13,1,7,15,9,8,11,14,0,15,6,8,4,7,8,11,14,0,4,8,11,13,4,8,11,14,0,11,13,12,2,14,0,4,7,15,0,14,0,9,3,15,9,8,11,14,0,9,3,2,9,3,3,5,9,3,8,11,13,3,1,12,13,1,7,3,12,13,1,7,3,0,14,0,11,10,9,3,9,3,6,1,7,3,1,7,3,2,9,3,3,15,9,8,11,13,4,8,11,13,1,7,15,6,1,7,3,3,8,4,15,9,8,11,13,3,7,3,12,13,10,11,14,0,15,9,8,11,13,3,6,6,0,3,2,5,0,9,3,7,15,9,8,11,14,0,4,7,15,9,8,11,14,0,9,3,15,9,8,11,13,8,11,13,4,8,11,14,0,11,14,0,7,3,1,7,3,8,11,13,3,0,12,13,1,12,13,10,11,14,0,0,11,14,0,14,0,10,3,9,3,8,4,7,8,11,13,4,8,11,14,0,6,2,9,3,7,3,7,15,5,0,14,0,2,9,3,1,12,2,5,9,3,5,14,0,4,7,3,0,8,11,13,15,9,8,11,0,8,4,8,11,13,4,8,11,13,3,10,9,3,7,3,11,14,0,11,14,0,14,0,8,11,13,4,8,11,14,13,10,10,4,7,3,9,3,14,0,4,8,11,13,4,8,11,13,4,7,15,6,1,13,1,12,2,5,0,11,13,10,2,9,3,1,7,3,9,3,4,7,15,9,8,4,7,3,13,10,5,14,0,5,14,0,0,8,11,13,3,11,13,10,15,6,6,2,1,5,14,14,0,13,1,13,1,7,3,15,6,10,11,13,2,9,3,13,1,12,2,14,0,6,1,12,2,14,0,7,3,3,11,14,0,14,0,5,14,0,0,12,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"9\", \"3\", \"4\"], \"clip_start\": 434.0, \"clip_end\": 438.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,15,6,2,4,7,3,8,11,13,8,11,13,4,8,11,13,3,5,12,13,1,12,2,14,0,2,9,3,14,0,8,4,8,11,14,0,2,9,3,14,0,3,11,13,2,1,12,2,4,8,11,14,0,5,0,4,7,3,8,11,13,3,4,8,11,14,0,5,9,3,3,11,14,0,13,6,0,7,3,9,3,13,8,11,13,4,11,13,10,14,12,13,6,4,7,15,9,8,11,13,4,7,3,7,3,12,2,5,9,15,6,9,3,15,9,8,1,13,1,7,15,9,8,11,14,0,15,6,8,4,7,8,11,14,0,4,8,11,13,4,8,11,14,0,11,13,12,2,14,0,4,7,15,0,14,0,9,3,15,9,8,11,14,0,9,3,2,9,3,3,5,9,3,8,11,13,3,1,12,13,1,7,3,12,13,1,7,3,0,14,0,11,10,9,3,9,3,6,1,7,3,1,7,3,2,9,3,3,15,9,8,11,13,4,8,11,13,1,7,15,6,1,7,3,3,8,4,15,9,8,11,13,3,7,3,12,13,10,11,14,0,15,9,8,11,13,3,6,6,0,3,2,5,0,9,3,7,15,9,8,11,14,0,4,7,15,9,8,11,14,0,9,3,15,9,8,11,13,8,11,13,4,8,11,14,0,11,14,0,7,3,1,7,3,8,11,13,3,0,12,13,1,12,13,10,11,14,0,0,11,14,0,14,0,10,3,9,3,8,4,7,8,11,13,4,8,11,14,0,6,2,9,3,7,3,7,15,5,0,14,0,2,9,3,1,12,2,5,9,3,5,14,0,4,7,3,0,8,11,13,15,9,8,11,0,8,4,8,11,13,4,8,11,13,3,10,9,3,7,3,11,14,0,11,14,0,14,0,8,11,13,4,8,11,14,13,10,10,4,7,3,9,3,14,0,4,8,11,13,4,8,11,13,4,7,15,6,1,13,1,12,2,5,0,11,13,10,2,9,3,1,7,3,9,3,4,7,15,9,8,4,7,3,13,10,5,14,0,5,14,0,0,8,11,13,3,11,13,10,15,6,6,2,1,5,14,14,0,13,1,13,1,7,3,15,6,10,11,13,2,9,3,13,1,12,2,14,0,6,1,12,2,14,0,7,3,3,11,14,0,14,0,5,14,0,0,12,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"8\", \"11\", \"13\"], \"clip_start\": 371.0, \"clip_end\": 376.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q12_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,15,6,2,4,7,3,8,11,13,8,11,13,4,8,11,13,3,5,12,13,1,12,2,14,0,2,9,3,14,0,8,4,8,11,14,0,2,9,3,14,0,3,11,13,2,1,12,2,4,8,11,14,0,5,0,4,7,3,8,11,13,3,4,8,11,14,0,5,9,3,3,11,14,0,13,6,0,7,3,9,3,13,8,11,13,4,11,13,10,14,12,13,6,4,7,15,9,8,11,13,4,7,3,7,3,12,2,5,9,15,6,9,3,15,9,8,1,13,1,7,15,9,8,11,14,0,15,6,8,4,7,8,11,14,0,4,8,11,13,4,8,11,14,0,11,13,12,2,14,0,4,7,15,0,14,0,9,3,15,9,8,11,14,0,9,3,2,9,3,3,5,9,3,8,11,13,3,1,12,13,1,7,3,12,13,1,7,3,0,14,0,11,10,9,3,9,3,6,1,7,3,1,7,3,2,9,3,3,15,9,8,11,13,4,8,11,13,1,7,15,6,1,7,3,3,8,4,15,9,8,11,13,3,7,3,12,13,10,11,14,0,15,9,8,11,13,3,6,6,0,3,2,5,0,9,3,7,15,9,8,11,14,0,4,7,15,9,8,11,14,0,9,3,15,9,8,11,13,8,11,13,4,8,11,14,0,11,14,0,7,3,1,7,3,8,11,13,3,0,12,13,1,12,13,10,11,14,0,0,11,14,0,14,0,10,3,9,3,8,4,7,8,11,13,4,8,11,14,0,6,2,9,3,7,3,7,15,5,0,14,0,2,9,3,1,12,2,5,9,3,5,14,0,4,7,3,0,8,11,13,15,9,8,11,0,8,4,8,11,13,4,8,11,13,3,10,9,3,7,3,11,14,0,11,14,0,14,0,8,11,13,4,8,11,14,13,10,10,4,7,3,9,3,14,0,4,8,11,13,4,8,11,13,4,7,15,6,1,13,1,12,2,5,0,11,13,10,2,9,3,1,7,3,9,3,4,7,15,9,8,4,7,3,13,10,5,14,0,5,14,0,0,8,11,13,3,11,13,10,15,6,6,2,1,5,14,14,0,13,1,13,1,7,3,15,6,10,11,13,2,9,3,13,1,12,2,14,0,6,1,12,2,14,0,7,3,3,11,14,0,14,0,5,14,0,0,12,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"4\", \"15\"], \"clip_start\": 225.0, \"clip_end\": 230.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q13_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,15,6,2,4,7,3,8,11,13,8,11,13,4,8,11,13,3,5,12,13,1,12,2,14,0,2,9,3,14,0,8,4,8,11,14,0,2,9,3,14,0,3,11,13,2,1,12,2,4,8,11,14,0,5,0,4,7,3,8,11,13,3,4,8,11,14,0,5,9,3,3,11,14,0,13,6,0,7,3,9,3,13,8,11,13,4,11,13,10,14,12,13,6,4,7,15,9,8,11,13,4,7,3,7,3,12,2,5,9,15,6,9,3,15,9,8,1,13,1,7,15,9,8,11,14,0,15,6,8,4,7,8,11,14,0,4,8,11,13,4,8,11,14,0,11,13,12,2,14,0,4,7,15,0,14,0,9,3,15,9,8,11,14,0,9,3,2,9,3,3,5,9,3,8,11,13,3,1,12,13,1,7,3,12,13,1,7,3,0,14,0,11,10,9,3,9,3,6,1,7,3,1,7,3,2,9,3,3,15,9,8,11,13,4,8,11,13,1,7,15,6,1,7,3,3,8,4,15,9,8,11,13,3,7,3,12,13,10,11,14,0,15,9,8,11,13,3,6,6,0,3,2,5,0,9,3,7,15,9,8,11,14,0,4,7,15,9,8,11,14,0,9,3,15,9,8,11,13,8,11,13,4,8,11,14,0,11,14,0,7,3,1,7,3,8,11,13,3,0,12,13,1,12,13,10,11,14,0,0,11,14,0,14,0,10,3,9,3,8,4,7,8,11,13,4,8,11,14,0,6,2,9,3,7,3,7,15,5,0,14,0,2,9,3,1,12,2,5,9,3,5,14,0,4,7,3,0,8,11,13,15,9,8,11,0,8,4,8,11,13,4,8,11,13,3,10,9,3,7,3,11,14,0,11,14,0,14,0,8,11,13,4,8,11,14,13,10,10,4,7,3,9,3,14,0,4,8,11,13,4,8,11,13,4,7,15,6,1,13,1,12,2,5,0,11,13,10,2,9,3,1,7,3,9,3,4,7,15,9,8,4,7,3,13,10,5,14,0,5,14,0,0,8,11,13,3,11,13,10,15,6,6,2,1,5,14,14,0,13,1,13,1,7,3,15,6,10,11,13,2,9,3,13,1,12,2,14,0,6,1,12,2,14,0,7,3,3,11,14,0,14,0,5,14,0,0,12,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"2\", \"9\", \"3\"], \"clip_start\": 342.0, \"clip_end\": 346.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q14_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,15,6,2,4,7,3,8,11,13,8,11,13,4,8,11,13,3,5,12,13,1,12,2,14,0,2,9,3,14,0,8,4,8,11,14,0,2,9,3,14,0,3,11,13,2,1,12,2,4,8,11,14,0,5,0,4,7,3,8,11,13,3,4,8,11,14,0,5,9,3,3,11,14,0,13,6,0,7,3,9,3,13,8,11,13,4,11,13,10,14,12,13,6,4,7,15,9,8,11,13,4,7,3,7,3,12,2,5,9,15,6,9,3,15,9,8,1,13,1,7,15,9,8,11,14,0,15,6,8,4,7,8,11,14,0,4,8,11,13,4,8,11,14,0,11,13,12,2,14,0,4,7,15,0,14,0,9,3,15,9,8,11,14,0,9,3,2,9,3,3,5,9,3,8,11,13,3,1,12,13,1,7,3,12,13,1,7,3,0,14,0,11,10,9,3,9,3,6,1,7,3,1,7,3,2,9,3,3,15,9,8,11,13,4,8,11,13,1,7,15,6,1,7,3,3,8,4,15,9,8,11,13,3,7,3,12,13,10,11,14,0,15,9,8,11,13,3,6,6,0,3,2,5,0,9,3,7,15,9,8,11,14,0,4,7,15,9,8,11,14,0,9,3,15,9,8,11,13,8,11,13,4,8,11,14,0,11,14,0,7,3,1,7,3,8,11,13,3,0,12,13,1,12,13,10,11,14,0,0,11,14,0,14,0,10,3,9,3,8,4,7,8,11,13,4,8,11,14,0,6,2,9,3,7,3,7,15,5,0,14,0,2,9,3,1,12,2,5,9,3,5,14,0,4,7,3,0,8,11,13,15,9,8,11,0,8,4,8,11,13,4,8,11,13,3,10,9,3,7,3,11,14,0,11,14,0,14,0,8,11,13,4,8,11,14,13,10,10,4,7,3,9,3,14,0,4,8,11,13,4,8,11,13,4,7,15,6,1,13,1,12,2,5,0,11,13,10,2,9,3,1,7,3,9,3,4,7,15,9,8,4,7,3,13,10,5,14,0,5,14,0,0,8,11,13,3,11,13,10,15,6,6,2,1,5,14,14,0,13,1,13,1,7,3,15,6,10,11,13,2,9,3,13,1,12,2,14,0,6,1,12,2,14,0,7,3,3,11,14,0,14,0,5,14,0,0,12,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"13\", \"3\", \"1\"], \"clip_start\": 175.0, \"clip_end\": 180.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q15_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,15,6,2,4,7,3,8,11,13,8,11,13,4,8,11,13,3,5,12,13,1,12,2,14,0,2,9,3,14,0,8,4,8,11,14,0,2,9,3,14,0,3,11,13,2,1,12,2,4,8,11,14,0,5,0,4,7,3,8,11,13,3,4,8,11,14,0,5,9,3,3,11,14,0,13,6,0,7,3,9,3,13,8,11,13,4,11,13,10,14,12,13,6,4,7,15,9,8,11,13,4,7,3,7,3,12,2,5,9,15,6,9,3,15,9,8,1,13,1,7,15,9,8,11,14,0,15,6,8,4,7,8,11,14,0,4,8,11,13,4,8,11,14,0,11,13,12,2,14,0,4,7,15,0,14,0,9,3,15,9,8,11,14,0,9,3,2,9,3,3,5,9,3,8,11,13,3,1,12,13,1,7,3,12,13,1,7,3,0,14,0,11,10,9,3,9,3,6,1,7,3,1,7,3,2,9,3,3,15,9,8,11,13,4,8,11,13,1,7,15,6,1,7,3,3,8,4,15,9,8,11,13,3,7,3,12,13,10,11,14,0,15,9,8,11,13,3,6,6,0,3,2,5,0,9,3,7,15,9,8,11,14,0,4,7,15,9,8,11,14,0,9,3,15,9,8,11,13,8,11,13,4,8,11,14,0,11,14,0,7,3,1,7,3,8,11,13,3,0,12,13,1,12,13,10,11,14,0,0,11,14,0,14,0,10,3,9,3,8,4,7,8,11,13,4,8,11,14,0,6,2,9,3,7,3,7,15,5,0,14,0,2,9,3,1,12,2,5,9,3,5,14,0,4,7,3,0,8,11,13,15,9,8,11,0,8,4,8,11,13,4,8,11,13,3,10,9,3,7,3,11,14,0,11,14,0,14,0,8,11,13,4,8,11,14,13,10,10,4,7,3,9,3,14,0,4,8,11,13,4,8,11,13,4,7,15,6,1,13,1,12,2,5,0,11,13,10,2,9,3,1,7,3,9,3,4,7,15,9,8,4,7,3,13,10,5,14,0,5,14,0,0,8,11,13,3,11,13,10,15,6,6,2,1,5,14,14,0,13,1,13,1,7,3,15,6,10,11,13,2,9,3,13,1,12,2,14,0,6,1,12,2,14,0,7,3,3,11,14,0,14,0,5,14,0,0,12,2,14,0", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"14\", \"2\", \"5\"], \"clip_start\": 462.0, \"clip_end\": 467.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,4,15,5,5,5,10,4,7,9,10,6,1,2,5,12,7,2,5,0,11,11,7,1,14,11,1,14,4,15,10,8,6,4,15,10,5,10,6,1,2,15,10,8,6,8,13,14,5,5,4,15,10,9,12,7,3,14,1,6,0,1,14,1,5,7,12,7,11,12,7,9,10,6,1,2,9,10,4,10,5,4,15,10,9,10,5,13,14,13,14,6,3,2,5,0,6,7,7,2,5,12,7,12,4,15,10,5,1,2,5,14,13,14,10,4,12,4,15,10,5,15,10,9,10,4,10,4,4,15,10,5,10,5,5,0,7,0,3,2,5,6,10,6,4,15,10,5,1,14,6,2,9,10,6,14,3,14,6,13,14,13,14,12,4,15,10,9,10,4,10,4,0,10,5,10,6,14,7,5,13,14,1,9,10,4,13,14,7,6,4,15,10,5,3,14,1,14,10,6,12,7,10,6,14,12,7,0,14,0,6,11,14,10,4,7,14,11,15,10,5,0,12,7,12,0,9,10,4,13,14,4,15,10,5,11,2,5,2,5,8,3,14,3,6,6,2,5,0,8,4,15,10,5,1,2,5,10,4,4,3,2,5,8,3,14,2,5,1,14,12,7,5,12,7,6,3,14,3,2,5,13,14,15,10,5,1,9,10,6,14,7,9,10,4,10,4,7,5,2,9,10,4,12,4,15,10,8,14,3,6,6,6,9,4,15,10,5,9,10,6,1,2,5,9,10,4,13,14,10,6,5,15,14,15,10,9,11,7,4,15,10,5,2,9,10,4,13,14,3,2,15,10,9,10,6,1,14,10,4,12,7,5,15,10,5,1,9,10,4,3,11,7,8,6,12,4,15,10,9,10,6,14,10,4,4,15,10,5,5,7,3,2,9,10,6,14,6,1,14,2,5,9,10,4,12,4,15,10,9,10,6,14,15,10,5,11,11,10,6,1,14,2,5,6,3,2,9,10,5,13,14,12,4,15,10,5,14,8,3,2,5,5,2,5,14,1,5,0,11,7,5,13,14,4,15,10,9,10,5,11,0,1,14,2,5,3,14,8,3,14,14,6,0,0,1,9,10,4,12,7,1,2,15,10,5,7,14,10,5,13,14,2,15,10,9,10,4,10,6,13,6,7,8,9,10,4,13,14,12,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"1\", \"14\", \"2\", \"5\"], \"clip_start\": 398.0, \"clip_end\": 403.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,4,15,5,5,5,10,4,7,9,10,6,1,2,5,12,7,2,5,0,11,11,7,1,14,11,1,14,4,15,10,8,6,4,15,10,5,10,6,1,2,15,10,8,6,8,13,14,5,5,4,15,10,9,12,7,3,14,1,6,0,1,14,1,5,7,12,7,11,12,7,9,10,6,1,2,9,10,4,10,5,4,15,10,9,10,5,13,14,13,14,6,3,2,5,0,6,7,7,2,5,12,7,12,4,15,10,5,1,2,5,14,13,14,10,4,12,4,15,10,5,15,10,9,10,4,10,4,4,15,10,5,10,5,5,0,7,0,3,2,5,6,10,6,4,15,10,5,1,14,6,2,9,10,6,14,3,14,6,13,14,13,14,12,4,15,10,9,10,4,10,4,0,10,5,10,6,14,7,5,13,14,1,9,10,4,13,14,7,6,4,15,10,5,3,14,1,14,10,6,12,7,10,6,14,12,7,0,14,0,6,11,14,10,4,7,14,11,15,10,5,0,12,7,12,0,9,10,4,13,14,4,15,10,5,11,2,5,2,5,8,3,14,3,6,6,2,5,0,8,4,15,10,5,1,2,5,10,4,4,3,2,5,8,3,14,2,5,1,14,12,7,5,12,7,6,3,14,3,2,5,13,14,15,10,5,1,9,10,6,14,7,9,10,4,10,4,7,5,2,9,10,4,12,4,15,10,8,14,3,6,6,6,9,4,15,10,5,9,10,6,1,2,5,9,10,4,13,14,10,6,5,15,14,15,10,9,11,7,4,15,10,5,2,9,10,4,13,14,3,2,15,10,9,10,6,1,14,10,4,12,7,5,15,10,5,1,9,10,4,3,11,7,8,6,12,4,15,10,9,10,6,14,10,4,4,15,10,5,5,7,3,2,9,10,6,14,6,1,14,2,5,9,10,4,12,4,15,10,9,10,6,14,15,10,5,11,11,10,6,1,14,2,5,6,3,2,9,10,5,13,14,12,4,15,10,5,14,8,3,2,5,5,2,5,14,1,5,0,11,7,5,13,14,4,15,10,9,10,5,11,0,1,14,2,5,3,14,8,3,14,14,6,0,0,1,9,10,4,12,7,1,2,15,10,5,7,14,10,5,13,14,2,15,10,9,10,4,10,6,13,6,7,8,9,10,4,13,14,12,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"15\", \"10\"], \"clip_start\": 81.0, \"clip_end\": 85.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,4,15,5,5,5,10,4,7,9,10,6,1,2,5,12,7,2,5,0,11,11,7,1,14,11,1,14,4,15,10,8,6,4,15,10,5,10,6,1,2,15,10,8,6,8,13,14,5,5,4,15,10,9,12,7,3,14,1,6,0,1,14,1,5,7,12,7,11,12,7,9,10,6,1,2,9,10,4,10,5,4,15,10,9,10,5,13,14,13,14,6,3,2,5,0,6,7,7,2,5,12,7,12,4,15,10,5,1,2,5,14,13,14,10,4,12,4,15,10,5,15,10,9,10,4,10,4,4,15,10,5,10,5,5,0,7,0,3,2,5,6,10,6,4,15,10,5,1,14,6,2,9,10,6,14,3,14,6,13,14,13,14,12,4,15,10,9,10,4,10,4,0,10,5,10,6,14,7,5,13,14,1,9,10,4,13,14,7,6,4,15,10,5,3,14,1,14,10,6,12,7,10,6,14,12,7,0,14,0,6,11,14,10,4,7,14,11,15,10,5,0,12,7,12,0,9,10,4,13,14,4,15,10,5,11,2,5,2,5,8,3,14,3,6,6,2,5,0,8,4,15,10,5,1,2,5,10,4,4,3,2,5,8,3,14,2,5,1,14,12,7,5,12,7,6,3,14,3,2,5,13,14,15,10,5,1,9,10,6,14,7,9,10,4,10,4,7,5,2,9,10,4,12,4,15,10,8,14,3,6,6,6,9,4,15,10,5,9,10,6,1,2,5,9,10,4,13,14,10,6,5,15,14,15,10,9,11,7,4,15,10,5,2,9,10,4,13,14,3,2,15,10,9,10,6,1,14,10,4,12,7,5,15,10,5,1,9,10,4,3,11,7,8,6,12,4,15,10,9,10,6,14,10,4,4,15,10,5,5,7,3,2,9,10,6,14,6,1,14,2,5,9,10,4,12,4,15,10,9,10,6,14,15,10,5,11,11,10,6,1,14,2,5,6,3,2,9,10,5,13,14,12,4,15,10,5,14,8,3,2,5,5,2,5,14,1,5,0,11,7,5,13,14,4,15,10,9,10,5,11,0,1,14,2,5,3,14,8,3,14,14,6,0,0,1,9,10,4,12,7,1,2,15,10,5,7,14,10,5,13,14,2,15,10,9,10,4,10,6,13,6,7,8,9,10,4,13,14,12,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 139.0, \"clip_end\": 142.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,4,15,5,5,5,10,4,7,9,10,6,1,2,5,12,7,2,5,0,11,11,7,1,14,11,1,14,4,15,10,8,6,4,15,10,5,10,6,1,2,15,10,8,6,8,13,14,5,5,4,15,10,9,12,7,3,14,1,6,0,1,14,1,5,7,12,7,11,12,7,9,10,6,1,2,9,10,4,10,5,4,15,10,9,10,5,13,14,13,14,6,3,2,5,0,6,7,7,2,5,12,7,12,4,15,10,5,1,2,5,14,13,14,10,4,12,4,15,10,5,15,10,9,10,4,10,4,4,15,10,5,10,5,5,0,7,0,3,2,5,6,10,6,4,15,10,5,1,14,6,2,9,10,6,14,3,14,6,13,14,13,14,12,4,15,10,9,10,4,10,4,0,10,5,10,6,14,7,5,13,14,1,9,10,4,13,14,7,6,4,15,10,5,3,14,1,14,10,6,12,7,10,6,14,12,7,0,14,0,6,11,14,10,4,7,14,11,15,10,5,0,12,7,12,0,9,10,4,13,14,4,15,10,5,11,2,5,2,5,8,3,14,3,6,6,2,5,0,8,4,15,10,5,1,2,5,10,4,4,3,2,5,8,3,14,2,5,1,14,12,7,5,12,7,6,3,14,3,2,5,13,14,15,10,5,1,9,10,6,14,7,9,10,4,10,4,7,5,2,9,10,4,12,4,15,10,8,14,3,6,6,6,9,4,15,10,5,9,10,6,1,2,5,9,10,4,13,14,10,6,5,15,14,15,10,9,11,7,4,15,10,5,2,9,10,4,13,14,3,2,15,10,9,10,6,1,14,10,4,12,7,5,15,10,5,1,9,10,4,3,11,7,8,6,12,4,15,10,9,10,6,14,10,4,4,15,10,5,5,7,3,2,9,10,6,14,6,1,14,2,5,9,10,4,12,4,15,10,9,10,6,14,15,10,5,11,11,10,6,1,14,2,5,6,3,2,9,10,5,13,14,12,4,15,10,5,14,8,3,2,5,5,2,5,14,1,5,0,11,7,5,13,14,4,15,10,9,10,5,11,0,1,14,2,5,3,14,8,3,14,14,6,0,0,1,9,10,4,12,7,1,2,15,10,5,7,14,10,5,13,14,2,15,10,9,10,4,10,6,13,6,7,8,9,10,4,13,14,12,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"10\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,4,15,5,5,5,10,4,7,9,10,6,1,2,5,12,7,2,5,0,11,11,7,1,14,11,1,14,4,15,10,8,6,4,15,10,5,10,6,1,2,15,10,8,6,8,13,14,5,5,4,15,10,9,12,7,3,14,1,6,0,1,14,1,5,7,12,7,11,12,7,9,10,6,1,2,9,10,4,10,5,4,15,10,9,10,5,13,14,13,14,6,3,2,5,0,6,7,7,2,5,12,7,12,4,15,10,5,1,2,5,14,13,14,10,4,12,4,15,10,5,15,10,9,10,4,10,4,4,15,10,5,10,5,5,0,7,0,3,2,5,6,10,6,4,15,10,5,1,14,6,2,9,10,6,14,3,14,6,13,14,13,14,12,4,15,10,9,10,4,10,4,0,10,5,10,6,14,7,5,13,14,1,9,10,4,13,14,7,6,4,15,10,5,3,14,1,14,10,6,12,7,10,6,14,12,7,0,14,0,6,11,14,10,4,7,14,11,15,10,5,0,12,7,12,0,9,10,4,13,14,4,15,10,5,11,2,5,2,5,8,3,14,3,6,6,2,5,0,8,4,15,10,5,1,2,5,10,4,4,3,2,5,8,3,14,2,5,1,14,12,7,5,12,7,6,3,14,3,2,5,13,14,15,10,5,1,9,10,6,14,7,9,10,4,10,4,7,5,2,9,10,4,12,4,15,10,8,14,3,6,6,6,9,4,15,10,5,9,10,6,1,2,5,9,10,4,13,14,10,6,5,15,14,15,10,9,11,7,4,15,10,5,2,9,10,4,13,14,3,2,15,10,9,10,6,1,14,10,4,12,7,5,15,10,5,1,9,10,4,3,11,7,8,6,12,4,15,10,9,10,6,14,10,4,4,15,10,5,5,7,3,2,9,10,6,14,6,1,14,2,5,9,10,4,12,4,15,10,9,10,6,14,15,10,5,11,11,10,6,1,14,2,5,6,3,2,9,10,5,13,14,12,4,15,10,5,14,8,3,2,5,5,2,5,14,1,5,0,11,7,5,13,14,4,15,10,9,10,5,11,0,1,14,2,5,3,14,8,3,14,14,6,0,0,1,9,10,4,12,7,1,2,15,10,5,7,14,10,5,13,14,2,15,10,9,10,4,10,6,13,6,7,8,9,10,4,13,14,12,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"11\", \"6\", \"1\"], \"clip_start\": 475.0, \"clip_end\": 480.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q5_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,4,15,5,5,5,10,4,7,9,10,6,1,2,5,12,7,2,5,0,11,11,7,1,14,11,1,14,4,15,10,8,6,4,15,10,5,10,6,1,2,15,10,8,6,8,13,14,5,5,4,15,10,9,12,7,3,14,1,6,0,1,14,1,5,7,12,7,11,12,7,9,10,6,1,2,9,10,4,10,5,4,15,10,9,10,5,13,14,13,14,6,3,2,5,0,6,7,7,2,5,12,7,12,4,15,10,5,1,2,5,14,13,14,10,4,12,4,15,10,5,15,10,9,10,4,10,4,4,15,10,5,10,5,5,0,7,0,3,2,5,6,10,6,4,15,10,5,1,14,6,2,9,10,6,14,3,14,6,13,14,13,14,12,4,15,10,9,10,4,10,4,0,10,5,10,6,14,7,5,13,14,1,9,10,4,13,14,7,6,4,15,10,5,3,14,1,14,10,6,12,7,10,6,14,12,7,0,14,0,6,11,14,10,4,7,14,11,15,10,5,0,12,7,12,0,9,10,4,13,14,4,15,10,5,11,2,5,2,5,8,3,14,3,6,6,2,5,0,8,4,15,10,5,1,2,5,10,4,4,3,2,5,8,3,14,2,5,1,14,12,7,5,12,7,6,3,14,3,2,5,13,14,15,10,5,1,9,10,6,14,7,9,10,4,10,4,7,5,2,9,10,4,12,4,15,10,8,14,3,6,6,6,9,4,15,10,5,9,10,6,1,2,5,9,10,4,13,14,10,6,5,15,14,15,10,9,11,7,4,15,10,5,2,9,10,4,13,14,3,2,15,10,9,10,6,1,14,10,4,12,7,5,15,10,5,1,9,10,4,3,11,7,8,6,12,4,15,10,9,10,6,14,10,4,4,15,10,5,5,7,3,2,9,10,6,14,6,1,14,2,5,9,10,4,12,4,15,10,9,10,6,14,15,10,5,11,11,10,6,1,14,2,5,6,3,2,9,10,5,13,14,12,4,15,10,5,14,8,3,2,5,5,2,5,14,1,5,0,11,7,5,13,14,4,15,10,9,10,5,11,0,1,14,2,5,3,14,8,3,14,14,6,0,0,1,9,10,4,12,7,1,2,15,10,5,7,14,10,5,13,14,2,15,10,9,10,4,10,6,13,6,7,8,9,10,4,13,14,12,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"14\", \"2\", \"15\"], \"clip_start\": 491.0, \"clip_end\": 495.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,4,15,5,5,5,10,4,7,9,10,6,1,2,5,12,7,2,5,0,11,11,7,1,14,11,1,14,4,15,10,8,6,4,15,10,5,10,6,1,2,15,10,8,6,8,13,14,5,5,4,15,10,9,12,7,3,14,1,6,0,1,14,1,5,7,12,7,11,12,7,9,10,6,1,2,9,10,4,10,5,4,15,10,9,10,5,13,14,13,14,6,3,2,5,0,6,7,7,2,5,12,7,12,4,15,10,5,1,2,5,14,13,14,10,4,12,4,15,10,5,15,10,9,10,4,10,4,4,15,10,5,10,5,5,0,7,0,3,2,5,6,10,6,4,15,10,5,1,14,6,2,9,10,6,14,3,14,6,13,14,13,14,12,4,15,10,9,10,4,10,4,0,10,5,10,6,14,7,5,13,14,1,9,10,4,13,14,7,6,4,15,10,5,3,14,1,14,10,6,12,7,10,6,14,12,7,0,14,0,6,11,14,10,4,7,14,11,15,10,5,0,12,7,12,0,9,10,4,13,14,4,15,10,5,11,2,5,2,5,8,3,14,3,6,6,2,5,0,8,4,15,10,5,1,2,5,10,4,4,3,2,5,8,3,14,2,5,1,14,12,7,5,12,7,6,3,14,3,2,5,13,14,15,10,5,1,9,10,6,14,7,9,10,4,10,4,7,5,2,9,10,4,12,4,15,10,8,14,3,6,6,6,9,4,15,10,5,9,10,6,1,2,5,9,10,4,13,14,10,6,5,15,14,15,10,9,11,7,4,15,10,5,2,9,10,4,13,14,3,2,15,10,9,10,6,1,14,10,4,12,7,5,15,10,5,1,9,10,4,3,11,7,8,6,12,4,15,10,9,10,6,14,10,4,4,15,10,5,5,7,3,2,9,10,6,14,6,1,14,2,5,9,10,4,12,4,15,10,9,10,6,14,15,10,5,11,11,10,6,1,14,2,5,6,3,2,9,10,5,13,14,12,4,15,10,5,14,8,3,2,5,5,2,5,14,1,5,0,11,7,5,13,14,4,15,10,9,10,5,11,0,1,14,2,5,3,14,8,3,14,14,6,0,0,1,9,10,4,12,7,1,2,15,10,5,7,14,10,5,13,14,2,15,10,9,10,4,10,6,13,6,7,8,9,10,4,13,14,12,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"11\", \"0\", \"1\"], \"clip_start\": 459.0, \"clip_end\": 464.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q7_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,4,15,5,5,5,10,4,7,9,10,6,1,2,5,12,7,2,5,0,11,11,7,1,14,11,1,14,4,15,10,8,6,4,15,10,5,10,6,1,2,15,10,8,6,8,13,14,5,5,4,15,10,9,12,7,3,14,1,6,0,1,14,1,5,7,12,7,11,12,7,9,10,6,1,2,9,10,4,10,5,4,15,10,9,10,5,13,14,13,14,6,3,2,5,0,6,7,7,2,5,12,7,12,4,15,10,5,1,2,5,14,13,14,10,4,12,4,15,10,5,15,10,9,10,4,10,4,4,15,10,5,10,5,5,0,7,0,3,2,5,6,10,6,4,15,10,5,1,14,6,2,9,10,6,14,3,14,6,13,14,13,14,12,4,15,10,9,10,4,10,4,0,10,5,10,6,14,7,5,13,14,1,9,10,4,13,14,7,6,4,15,10,5,3,14,1,14,10,6,12,7,10,6,14,12,7,0,14,0,6,11,14,10,4,7,14,11,15,10,5,0,12,7,12,0,9,10,4,13,14,4,15,10,5,11,2,5,2,5,8,3,14,3,6,6,2,5,0,8,4,15,10,5,1,2,5,10,4,4,3,2,5,8,3,14,2,5,1,14,12,7,5,12,7,6,3,14,3,2,5,13,14,15,10,5,1,9,10,6,14,7,9,10,4,10,4,7,5,2,9,10,4,12,4,15,10,8,14,3,6,6,6,9,4,15,10,5,9,10,6,1,2,5,9,10,4,13,14,10,6,5,15,14,15,10,9,11,7,4,15,10,5,2,9,10,4,13,14,3,2,15,10,9,10,6,1,14,10,4,12,7,5,15,10,5,1,9,10,4,3,11,7,8,6,12,4,15,10,9,10,6,14,10,4,4,15,10,5,5,7,3,2,9,10,6,14,6,1,14,2,5,9,10,4,12,4,15,10,9,10,6,14,15,10,5,11,11,10,6,1,14,2,5,6,3,2,9,10,5,13,14,12,4,15,10,5,14,8,3,2,5,5,2,5,14,1,5,0,11,7,5,13,14,4,15,10,9,10,5,11,0,1,14,2,5,3,14,8,3,14,14,6,0,0,1,9,10,4,12,7,1,2,15,10,5,7,14,10,5,13,14,2,15,10,9,10,4,10,6,13,6,7,8,9,10,4,13,14,12,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"5\", \"2\", \"9\", \"10\"], \"clip_start\": 298.0, \"clip_end\": 303.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,4,15,5,5,5,10,4,7,9,10,6,1,2,5,12,7,2,5,0,11,11,7,1,14,11,1,14,4,15,10,8,6,4,15,10,5,10,6,1,2,15,10,8,6,8,13,14,5,5,4,15,10,9,12,7,3,14,1,6,0,1,14,1,5,7,12,7,11,12,7,9,10,6,1,2,9,10,4,10,5,4,15,10,9,10,5,13,14,13,14,6,3,2,5,0,6,7,7,2,5,12,7,12,4,15,10,5,1,2,5,14,13,14,10,4,12,4,15,10,5,15,10,9,10,4,10,4,4,15,10,5,10,5,5,0,7,0,3,2,5,6,10,6,4,15,10,5,1,14,6,2,9,10,6,14,3,14,6,13,14,13,14,12,4,15,10,9,10,4,10,4,0,10,5,10,6,14,7,5,13,14,1,9,10,4,13,14,7,6,4,15,10,5,3,14,1,14,10,6,12,7,10,6,14,12,7,0,14,0,6,11,14,10,4,7,14,11,15,10,5,0,12,7,12,0,9,10,4,13,14,4,15,10,5,11,2,5,2,5,8,3,14,3,6,6,2,5,0,8,4,15,10,5,1,2,5,10,4,4,3,2,5,8,3,14,2,5,1,14,12,7,5,12,7,6,3,14,3,2,5,13,14,15,10,5,1,9,10,6,14,7,9,10,4,10,4,7,5,2,9,10,4,12,4,15,10,8,14,3,6,6,6,9,4,15,10,5,9,10,6,1,2,5,9,10,4,13,14,10,6,5,15,14,15,10,9,11,7,4,15,10,5,2,9,10,4,13,14,3,2,15,10,9,10,6,1,14,10,4,12,7,5,15,10,5,1,9,10,4,3,11,7,8,6,12,4,15,10,9,10,6,14,10,4,4,15,10,5,5,7,3,2,9,10,6,14,6,1,14,2,5,9,10,4,12,4,15,10,9,10,6,14,15,10,5,11,11,10,6,1,14,2,5,6,3,2,9,10,5,13,14,12,4,15,10,5,14,8,3,2,5,5,2,5,14,1,5,0,11,7,5,13,14,4,15,10,9,10,5,11,0,1,14,2,5,3,14,8,3,14,14,6,0,0,1,9,10,4,12,7,1,2,15,10,5,7,14,10,5,13,14,2,15,10,9,10,4,10,6,13,6,7,8,9,10,4,13,14,12,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"15\", \"10\", \"8\", \"14\"], \"clip_start\": 304.0, \"clip_end\": 310.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,4,15,5,5,5,10,4,7,9,10,6,1,2,5,12,7,2,5,0,11,11,7,1,14,11,1,14,4,15,10,8,6,4,15,10,5,10,6,1,2,15,10,8,6,8,13,14,5,5,4,15,10,9,12,7,3,14,1,6,0,1,14,1,5,7,12,7,11,12,7,9,10,6,1,2,9,10,4,10,5,4,15,10,9,10,5,13,14,13,14,6,3,2,5,0,6,7,7,2,5,12,7,12,4,15,10,5,1,2,5,14,13,14,10,4,12,4,15,10,5,15,10,9,10,4,10,4,4,15,10,5,10,5,5,0,7,0,3,2,5,6,10,6,4,15,10,5,1,14,6,2,9,10,6,14,3,14,6,13,14,13,14,12,4,15,10,9,10,4,10,4,0,10,5,10,6,14,7,5,13,14,1,9,10,4,13,14,7,6,4,15,10,5,3,14,1,14,10,6,12,7,10,6,14,12,7,0,14,0,6,11,14,10,4,7,14,11,15,10,5,0,12,7,12,0,9,10,4,13,14,4,15,10,5,11,2,5,2,5,8,3,14,3,6,6,2,5,0,8,4,15,10,5,1,2,5,10,4,4,3,2,5,8,3,14,2,5,1,14,12,7,5,12,7,6,3,14,3,2,5,13,14,15,10,5,1,9,10,6,14,7,9,10,4,10,4,7,5,2,9,10,4,12,4,15,10,8,14,3,6,6,6,9,4,15,10,5,9,10,6,1,2,5,9,10,4,13,14,10,6,5,15,14,15,10,9,11,7,4,15,10,5,2,9,10,4,13,14,3,2,15,10,9,10,6,1,14,10,4,12,7,5,15,10,5,1,9,10,4,3,11,7,8,6,12,4,15,10,9,10,6,14,10,4,4,15,10,5,5,7,3,2,9,10,6,14,6,1,14,2,5,9,10,4,12,4,15,10,9,10,6,14,15,10,5,11,11,10,6,1,14,2,5,6,3,2,9,10,5,13,14,12,4,15,10,5,14,8,3,2,5,5,2,5,14,1,5,0,11,7,5,13,14,4,15,10,9,10,5,11,0,1,14,2,5,3,14,8,3,14,14,6,0,0,1,9,10,4,12,7,1,2,15,10,5,7,14,10,5,13,14,2,15,10,9,10,4,10,6,13,6,7,8,9,10,4,13,14,12,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"1\", \"14\", \"2\", \"5\", \"9\"], \"clip_start\": 398.0, \"clip_end\": 404.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,4,15,5,5,5,10,4,7,9,10,6,1,2,5,12,7,2,5,0,11,11,7,1,14,11,1,14,4,15,10,8,6,4,15,10,5,10,6,1,2,15,10,8,6,8,13,14,5,5,4,15,10,9,12,7,3,14,1,6,0,1,14,1,5,7,12,7,11,12,7,9,10,6,1,2,9,10,4,10,5,4,15,10,9,10,5,13,14,13,14,6,3,2,5,0,6,7,7,2,5,12,7,12,4,15,10,5,1,2,5,14,13,14,10,4,12,4,15,10,5,15,10,9,10,4,10,4,4,15,10,5,10,5,5,0,7,0,3,2,5,6,10,6,4,15,10,5,1,14,6,2,9,10,6,14,3,14,6,13,14,13,14,12,4,15,10,9,10,4,10,4,0,10,5,10,6,14,7,5,13,14,1,9,10,4,13,14,7,6,4,15,10,5,3,14,1,14,10,6,12,7,10,6,14,12,7,0,14,0,6,11,14,10,4,7,14,11,15,10,5,0,12,7,12,0,9,10,4,13,14,4,15,10,5,11,2,5,2,5,8,3,14,3,6,6,2,5,0,8,4,15,10,5,1,2,5,10,4,4,3,2,5,8,3,14,2,5,1,14,12,7,5,12,7,6,3,14,3,2,5,13,14,15,10,5,1,9,10,6,14,7,9,10,4,10,4,7,5,2,9,10,4,12,4,15,10,8,14,3,6,6,6,9,4,15,10,5,9,10,6,1,2,5,9,10,4,13,14,10,6,5,15,14,15,10,9,11,7,4,15,10,5,2,9,10,4,13,14,3,2,15,10,9,10,6,1,14,10,4,12,7,5,15,10,5,1,9,10,4,3,11,7,8,6,12,4,15,10,9,10,6,14,10,4,4,15,10,5,5,7,3,2,9,10,6,14,6,1,14,2,5,9,10,4,12,4,15,10,9,10,6,14,15,10,5,11,11,10,6,1,14,2,5,6,3,2,9,10,5,13,14,12,4,15,10,5,14,8,3,2,5,5,2,5,14,1,5,0,11,7,5,13,14,4,15,10,9,10,5,11,0,1,14,2,5,3,14,8,3,14,14,6,0,0,1,9,10,4,12,7,1,2,15,10,5,7,14,10,5,13,14,2,15,10,9,10,4,10,6,13,6,7,8,9,10,4,13,14,12,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"7\", \"3\", \"14\", \"1\"], \"clip_start\": 55.0, \"clip_end\": 60.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,4,15,5,5,5,10,4,7,9,10,6,1,2,5,12,7,2,5,0,11,11,7,1,14,11,1,14,4,15,10,8,6,4,15,10,5,10,6,1,2,15,10,8,6,8,13,14,5,5,4,15,10,9,12,7,3,14,1,6,0,1,14,1,5,7,12,7,11,12,7,9,10,6,1,2,9,10,4,10,5,4,15,10,9,10,5,13,14,13,14,6,3,2,5,0,6,7,7,2,5,12,7,12,4,15,10,5,1,2,5,14,13,14,10,4,12,4,15,10,5,15,10,9,10,4,10,4,4,15,10,5,10,5,5,0,7,0,3,2,5,6,10,6,4,15,10,5,1,14,6,2,9,10,6,14,3,14,6,13,14,13,14,12,4,15,10,9,10,4,10,4,0,10,5,10,6,14,7,5,13,14,1,9,10,4,13,14,7,6,4,15,10,5,3,14,1,14,10,6,12,7,10,6,14,12,7,0,14,0,6,11,14,10,4,7,14,11,15,10,5,0,12,7,12,0,9,10,4,13,14,4,15,10,5,11,2,5,2,5,8,3,14,3,6,6,2,5,0,8,4,15,10,5,1,2,5,10,4,4,3,2,5,8,3,14,2,5,1,14,12,7,5,12,7,6,3,14,3,2,5,13,14,15,10,5,1,9,10,6,14,7,9,10,4,10,4,7,5,2,9,10,4,12,4,15,10,8,14,3,6,6,6,9,4,15,10,5,9,10,6,1,2,5,9,10,4,13,14,10,6,5,15,14,15,10,9,11,7,4,15,10,5,2,9,10,4,13,14,3,2,15,10,9,10,6,1,14,10,4,12,7,5,15,10,5,1,9,10,4,3,11,7,8,6,12,4,15,10,9,10,6,14,10,4,4,15,10,5,5,7,3,2,9,10,6,14,6,1,14,2,5,9,10,4,12,4,15,10,9,10,6,14,15,10,5,11,11,10,6,1,14,2,5,6,3,2,9,10,5,13,14,12,4,15,10,5,14,8,3,2,5,5,2,5,14,1,5,0,11,7,5,13,14,4,15,10,9,10,5,11,0,1,14,2,5,3,14,8,3,14,14,6,0,0,1,9,10,4,12,7,1,2,15,10,5,7,14,10,5,13,14,2,15,10,9,10,4,10,6,13,6,7,8,9,10,4,13,14,12,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"3\", \"5\"], \"clip_start\": 465.0, \"clip_end\": 469.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,4,15,5,5,5,10,4,7,9,10,6,1,2,5,12,7,2,5,0,11,11,7,1,14,11,1,14,4,15,10,8,6,4,15,10,5,10,6,1,2,15,10,8,6,8,13,14,5,5,4,15,10,9,12,7,3,14,1,6,0,1,14,1,5,7,12,7,11,12,7,9,10,6,1,2,9,10,4,10,5,4,15,10,9,10,5,13,14,13,14,6,3,2,5,0,6,7,7,2,5,12,7,12,4,15,10,5,1,2,5,14,13,14,10,4,12,4,15,10,5,15,10,9,10,4,10,4,4,15,10,5,10,5,5,0,7,0,3,2,5,6,10,6,4,15,10,5,1,14,6,2,9,10,6,14,3,14,6,13,14,13,14,12,4,15,10,9,10,4,10,4,0,10,5,10,6,14,7,5,13,14,1,9,10,4,13,14,7,6,4,15,10,5,3,14,1,14,10,6,12,7,10,6,14,12,7,0,14,0,6,11,14,10,4,7,14,11,15,10,5,0,12,7,12,0,9,10,4,13,14,4,15,10,5,11,2,5,2,5,8,3,14,3,6,6,2,5,0,8,4,15,10,5,1,2,5,10,4,4,3,2,5,8,3,14,2,5,1,14,12,7,5,12,7,6,3,14,3,2,5,13,14,15,10,5,1,9,10,6,14,7,9,10,4,10,4,7,5,2,9,10,4,12,4,15,10,8,14,3,6,6,6,9,4,15,10,5,9,10,6,1,2,5,9,10,4,13,14,10,6,5,15,14,15,10,9,11,7,4,15,10,5,2,9,10,4,13,14,3,2,15,10,9,10,6,1,14,10,4,12,7,5,15,10,5,1,9,10,4,3,11,7,8,6,12,4,15,10,9,10,6,14,10,4,4,15,10,5,5,7,3,2,9,10,6,14,6,1,14,2,5,9,10,4,12,4,15,10,9,10,6,14,15,10,5,11,11,10,6,1,14,2,5,6,3,2,9,10,5,13,14,12,4,15,10,5,14,8,3,2,5,5,2,5,14,1,5,0,11,7,5,13,14,4,15,10,9,10,5,11,0,1,14,2,5,3,14,8,3,14,14,6,0,0,1,9,10,4,12,7,1,2,15,10,5,7,14,10,5,13,14,2,15,10,9,10,4,10,6,13,6,7,8,9,10,4,13,14,12,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"10\", \"11\", \"0\", \"0\"], \"clip_start\": 92.0, \"clip_end\": 98.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,4,15,5,5,5,10,4,7,9,10,6,1,2,5,12,7,2,5,0,11,11,7,1,14,11,1,14,4,15,10,8,6,4,15,10,5,10,6,1,2,15,10,8,6,8,13,14,5,5,4,15,10,9,12,7,3,14,1,6,0,1,14,1,5,7,12,7,11,12,7,9,10,6,1,2,9,10,4,10,5,4,15,10,9,10,5,13,14,13,14,6,3,2,5,0,6,7,7,2,5,12,7,12,4,15,10,5,1,2,5,14,13,14,10,4,12,4,15,10,5,15,10,9,10,4,10,4,4,15,10,5,10,5,5,0,7,0,3,2,5,6,10,6,4,15,10,5,1,14,6,2,9,10,6,14,3,14,6,13,14,13,14,12,4,15,10,9,10,4,10,4,0,10,5,10,6,14,7,5,13,14,1,9,10,4,13,14,7,6,4,15,10,5,3,14,1,14,10,6,12,7,10,6,14,12,7,0,14,0,6,11,14,10,4,7,14,11,15,10,5,0,12,7,12,0,9,10,4,13,14,4,15,10,5,11,2,5,2,5,8,3,14,3,6,6,2,5,0,8,4,15,10,5,1,2,5,10,4,4,3,2,5,8,3,14,2,5,1,14,12,7,5,12,7,6,3,14,3,2,5,13,14,15,10,5,1,9,10,6,14,7,9,10,4,10,4,7,5,2,9,10,4,12,4,15,10,8,14,3,6,6,6,9,4,15,10,5,9,10,6,1,2,5,9,10,4,13,14,10,6,5,15,14,15,10,9,11,7,4,15,10,5,2,9,10,4,13,14,3,2,15,10,9,10,6,1,14,10,4,12,7,5,15,10,5,1,9,10,4,3,11,7,8,6,12,4,15,10,9,10,6,14,10,4,4,15,10,5,5,7,3,2,9,10,6,14,6,1,14,2,5,9,10,4,12,4,15,10,9,10,6,14,15,10,5,11,11,10,6,1,14,2,5,6,3,2,9,10,5,13,14,12,4,15,10,5,14,8,3,2,5,5,2,5,14,1,5,0,11,7,5,13,14,4,15,10,9,10,5,11,0,1,14,2,5,3,14,8,3,14,14,6,0,0,1,9,10,4,12,7,1,2,15,10,5,7,14,10,5,13,14,2,15,10,9,10,4,10,6,13,6,7,8,9,10,4,13,14,12,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"10\", \"6\", \"14\"], \"clip_start\": 380.0, \"clip_end\": 384.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q14_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,4,15,5,5,5,10,4,7,9,10,6,1,2,5,12,7,2,5,0,11,11,7,1,14,11,1,14,4,15,10,8,6,4,15,10,5,10,6,1,2,15,10,8,6,8,13,14,5,5,4,15,10,9,12,7,3,14,1,6,0,1,14,1,5,7,12,7,11,12,7,9,10,6,1,2,9,10,4,10,5,4,15,10,9,10,5,13,14,13,14,6,3,2,5,0,6,7,7,2,5,12,7,12,4,15,10,5,1,2,5,14,13,14,10,4,12,4,15,10,5,15,10,9,10,4,10,4,4,15,10,5,10,5,5,0,7,0,3,2,5,6,10,6,4,15,10,5,1,14,6,2,9,10,6,14,3,14,6,13,14,13,14,12,4,15,10,9,10,4,10,4,0,10,5,10,6,14,7,5,13,14,1,9,10,4,13,14,7,6,4,15,10,5,3,14,1,14,10,6,12,7,10,6,14,12,7,0,14,0,6,11,14,10,4,7,14,11,15,10,5,0,12,7,12,0,9,10,4,13,14,4,15,10,5,11,2,5,2,5,8,3,14,3,6,6,2,5,0,8,4,15,10,5,1,2,5,10,4,4,3,2,5,8,3,14,2,5,1,14,12,7,5,12,7,6,3,14,3,2,5,13,14,15,10,5,1,9,10,6,14,7,9,10,4,10,4,7,5,2,9,10,4,12,4,15,10,8,14,3,6,6,6,9,4,15,10,5,9,10,6,1,2,5,9,10,4,13,14,10,6,5,15,14,15,10,9,11,7,4,15,10,5,2,9,10,4,13,14,3,2,15,10,9,10,6,1,14,10,4,12,7,5,15,10,5,1,9,10,4,3,11,7,8,6,12,4,15,10,9,10,6,14,10,4,4,15,10,5,5,7,3,2,9,10,6,14,6,1,14,2,5,9,10,4,12,4,15,10,9,10,6,14,15,10,5,11,11,10,6,1,14,2,5,6,3,2,9,10,5,13,14,12,4,15,10,5,14,8,3,2,5,5,2,5,14,1,5,0,11,7,5,13,14,4,15,10,9,10,5,11,0,1,14,2,5,3,14,8,3,14,14,6,0,0,1,9,10,4,12,7,1,2,15,10,5,7,14,10,5,13,14,2,15,10,9,10,4,10,6,13,6,7,8,9,10,4,13,14,12,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"15\", \"10\", \"5\", \"1\"], \"clip_start\": 104.0, \"clip_end\": 110.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q15_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,6,4,15,5,5,5,10,4,7,9,10,6,1,2,5,12,7,2,5,0,11,11,7,1,14,11,1,14,4,15,10,8,6,4,15,10,5,10,6,1,2,15,10,8,6,8,13,14,5,5,4,15,10,9,12,7,3,14,1,6,0,1,14,1,5,7,12,7,11,12,7,9,10,6,1,2,9,10,4,10,5,4,15,10,9,10,5,13,14,13,14,6,3,2,5,0,6,7,7,2,5,12,7,12,4,15,10,5,1,2,5,14,13,14,10,4,12,4,15,10,5,15,10,9,10,4,10,4,4,15,10,5,10,5,5,0,7,0,3,2,5,6,10,6,4,15,10,5,1,14,6,2,9,10,6,14,3,14,6,13,14,13,14,12,4,15,10,9,10,4,10,4,0,10,5,10,6,14,7,5,13,14,1,9,10,4,13,14,7,6,4,15,10,5,3,14,1,14,10,6,12,7,10,6,14,12,7,0,14,0,6,11,14,10,4,7,14,11,15,10,5,0,12,7,12,0,9,10,4,13,14,4,15,10,5,11,2,5,2,5,8,3,14,3,6,6,2,5,0,8,4,15,10,5,1,2,5,10,4,4,3,2,5,8,3,14,2,5,1,14,12,7,5,12,7,6,3,14,3,2,5,13,14,15,10,5,1,9,10,6,14,7,9,10,4,10,4,7,5,2,9,10,4,12,4,15,10,8,14,3,6,6,6,9,4,15,10,5,9,10,6,1,2,5,9,10,4,13,14,10,6,5,15,14,15,10,9,11,7,4,15,10,5,2,9,10,4,13,14,3,2,15,10,9,10,6,1,14,10,4,12,7,5,15,10,5,1,9,10,4,3,11,7,8,6,12,4,15,10,9,10,6,14,10,4,4,15,10,5,5,7,3,2,9,10,6,14,6,1,14,2,5,9,10,4,12,4,15,10,9,10,6,14,15,10,5,11,11,10,6,1,14,2,5,6,3,2,9,10,5,13,14,12,4,15,10,5,14,8,3,2,5,5,2,5,14,1,5,0,11,7,5,13,14,4,15,10,9,10,5,11,0,1,14,2,5,3,14,8,3,14,14,6,0,0,1,9,10,4,12,7,1,2,15,10,5,7,14,10,5,13,14,2,15,10,9,10,4,10,6,13,6,7,8,9,10,4,13,14,12,7", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"15\", \"15\", \"7\"], \"clip_start\": 443.0, \"clip_end\": 447.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,7,9,6,9,8,7,7,1,2,15,15,7,7,9,1,2,15,15,7,7,8,12,14,15,3,7,5,10,5,13,4,14,2,15,15,7,7,10,10,3,12,12,9,3,7,0,6,2,0,9,9,9,12,5,10,14,15,3,1,2,15,15,7,7,13,4,14,13,4,14,2,15,15,7,7,8,4,6,11,13,4,14,2,0,2,15,15,3,7,0,5,10,14,15,7,7,8,0,9,2,15,15,7,7,8,1,2,15,15,3,7,5,10,6,1,2,15,15,7,8,11,7,2,15,15,7,7,8,14,15,7,7,8,3,1,9,13,4,14,2,15,15,3,1,2,0,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,7,9,1,0,9,10,8,0,0,9,10,6,1,2,15,15,7,7,9,11,1,5,13,4,2,0,3,1,5,10,14,15,7,9,11,3,7,0,8,5,10,14,15,3,1,5,10,6,4,6,9,13,4,14,2,15,15,13,4,14,2,15,15,3,7,0,5,10,0,5,13,4,14,2,0,5,13,4,14,2,15,15,7,9,7,4,6,3,7,0,5,10,14,15,7,7,13,4,14,2,15,15,7,2,15,15,6,4,6,0,5,13,11,15,7,7,9,2,0,5,4,6,9,8,3,1,5,9,3,7,5,13,4,14,2,0,5,13,4,14,2,0,9,2,0,0,5,13,4,14,2,15,15,7,9,11,13,4,14,2,15,15,3,7,5,10,14,15,7,7,8,8,8,1,9,9,13,4,14,2,15,15,7,9,13,4,14,2,0,0,5,10,5,10,6,10,11,14,15,7,9,14,1,2,15,15,7,9,10,4,6,10,0,5,10,6,4,6,13,4,14,13,4,14,2,15,15,3,7,5,13,4,14,2,0,5,10,6,15,3,1,5,9,11,4,6,14,15,7,7,13,4,14,13,4,14,2,0,9,5,10,14,15,3,13,4,14,13,8,1,2,15,15,7,9,4,6,13,4,14,2,15,7,7,9,15,3,7,0,5,13,4,14,13,4,14,13,4,14,2,0,5,13,4,14,13,4,14,2,0,5,6,11,14,15,3,7,0,5,10,6,4,6,4,6,14,15,7,9,6,13,4,14,2,0,5,13,4,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"4\", \"14\", \"2\"], \"clip_start\": 356.0, \"clip_end\": 361.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,7,9,6,9,8,7,7,1,2,15,15,7,7,9,1,2,15,15,7,7,8,12,14,15,3,7,5,10,5,13,4,14,2,15,15,7,7,10,10,3,12,12,9,3,7,0,6,2,0,9,9,9,12,5,10,14,15,3,1,2,15,15,7,7,13,4,14,13,4,14,2,15,15,7,7,8,4,6,11,13,4,14,2,0,2,15,15,3,7,0,5,10,14,15,7,7,8,0,9,2,15,15,7,7,8,1,2,15,15,3,7,5,10,6,1,2,15,15,7,8,11,7,2,15,15,7,7,8,14,15,7,7,8,3,1,9,13,4,14,2,15,15,3,1,2,0,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,7,9,1,0,9,10,8,0,0,9,10,6,1,2,15,15,7,7,9,11,1,5,13,4,2,0,3,1,5,10,14,15,7,9,11,3,7,0,8,5,10,14,15,3,1,5,10,6,4,6,9,13,4,14,2,15,15,13,4,14,2,15,15,3,7,0,5,10,0,5,13,4,14,2,0,5,13,4,14,2,15,15,7,9,7,4,6,3,7,0,5,10,14,15,7,7,13,4,14,2,15,15,7,2,15,15,6,4,6,0,5,13,11,15,7,7,9,2,0,5,4,6,9,8,3,1,5,9,3,7,5,13,4,14,2,0,5,13,4,14,2,0,9,2,0,0,5,13,4,14,2,15,15,7,9,11,13,4,14,2,15,15,3,7,5,10,14,15,7,7,8,8,8,1,9,9,13,4,14,2,15,15,7,9,13,4,14,2,0,0,5,10,5,10,6,10,11,14,15,7,9,14,1,2,15,15,7,9,10,4,6,10,0,5,10,6,4,6,13,4,14,13,4,14,2,15,15,3,7,5,13,4,14,2,0,5,10,6,15,3,1,5,9,11,4,6,14,15,7,7,13,4,14,13,4,14,2,0,9,5,10,14,15,3,13,4,14,13,8,1,2,15,15,7,9,4,6,13,4,14,2,15,7,7,9,15,3,7,0,5,13,4,14,13,4,14,13,4,14,2,0,5,13,4,14,13,4,14,2,0,5,6,11,14,15,3,7,0,5,10,6,4,6,4,6,14,15,7,9,6,13,4,14,2,0,5,13,4,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"5\", \"13\", \"4\"], \"clip_start\": 301.0, \"clip_end\": 306.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,7,9,6,9,8,7,7,1,2,15,15,7,7,9,1,2,15,15,7,7,8,12,14,15,3,7,5,10,5,13,4,14,2,15,15,7,7,10,10,3,12,12,9,3,7,0,6,2,0,9,9,9,12,5,10,14,15,3,1,2,15,15,7,7,13,4,14,13,4,14,2,15,15,7,7,8,4,6,11,13,4,14,2,0,2,15,15,3,7,0,5,10,14,15,7,7,8,0,9,2,15,15,7,7,8,1,2,15,15,3,7,5,10,6,1,2,15,15,7,8,11,7,2,15,15,7,7,8,14,15,7,7,8,3,1,9,13,4,14,2,15,15,3,1,2,0,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,7,9,1,0,9,10,8,0,0,9,10,6,1,2,15,15,7,7,9,11,1,5,13,4,2,0,3,1,5,10,14,15,7,9,11,3,7,0,8,5,10,14,15,3,1,5,10,6,4,6,9,13,4,14,2,15,15,13,4,14,2,15,15,3,7,0,5,10,0,5,13,4,14,2,0,5,13,4,14,2,15,15,7,9,7,4,6,3,7,0,5,10,14,15,7,7,13,4,14,2,15,15,7,2,15,15,6,4,6,0,5,13,11,15,7,7,9,2,0,5,4,6,9,8,3,1,5,9,3,7,5,13,4,14,2,0,5,13,4,14,2,0,9,2,0,0,5,13,4,14,2,15,15,7,9,11,13,4,14,2,15,15,3,7,5,10,14,15,7,7,8,8,8,1,9,9,13,4,14,2,15,15,7,9,13,4,14,2,0,0,5,10,5,10,6,10,11,14,15,7,9,14,1,2,15,15,7,9,10,4,6,10,0,5,10,6,4,6,13,4,14,13,4,14,2,15,15,3,7,5,13,4,14,2,0,5,10,6,15,3,1,5,9,11,4,6,14,15,7,7,13,4,14,13,4,14,2,0,9,5,10,14,15,3,13,4,14,13,8,1,2,15,15,7,9,4,6,13,4,14,2,15,7,7,9,15,3,7,0,5,13,4,14,13,4,14,13,4,14,2,0,5,13,4,14,13,4,14,2,0,5,6,11,14,15,3,7,0,5,10,6,4,6,4,6,14,15,7,9,6,13,4,14,2,0,5,13,4,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"14\", \"2\", \"15\", \"15\", \"7\"], \"clip_start\": 32.0, \"clip_end\": 38.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,7,9,6,9,8,7,7,1,2,15,15,7,7,9,1,2,15,15,7,7,8,12,14,15,3,7,5,10,5,13,4,14,2,15,15,7,7,10,10,3,12,12,9,3,7,0,6,2,0,9,9,9,12,5,10,14,15,3,1,2,15,15,7,7,13,4,14,13,4,14,2,15,15,7,7,8,4,6,11,13,4,14,2,0,2,15,15,3,7,0,5,10,14,15,7,7,8,0,9,2,15,15,7,7,8,1,2,15,15,3,7,5,10,6,1,2,15,15,7,8,11,7,2,15,15,7,7,8,14,15,7,7,8,3,1,9,13,4,14,2,15,15,3,1,2,0,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,7,9,1,0,9,10,8,0,0,9,10,6,1,2,15,15,7,7,9,11,1,5,13,4,2,0,3,1,5,10,14,15,7,9,11,3,7,0,8,5,10,14,15,3,1,5,10,6,4,6,9,13,4,14,2,15,15,13,4,14,2,15,15,3,7,0,5,10,0,5,13,4,14,2,0,5,13,4,14,2,15,15,7,9,7,4,6,3,7,0,5,10,14,15,7,7,13,4,14,2,15,15,7,2,15,15,6,4,6,0,5,13,11,15,7,7,9,2,0,5,4,6,9,8,3,1,5,9,3,7,5,13,4,14,2,0,5,13,4,14,2,0,9,2,0,0,5,13,4,14,2,15,15,7,9,11,13,4,14,2,15,15,3,7,5,10,14,15,7,7,8,8,8,1,9,9,13,4,14,2,15,15,7,9,13,4,14,2,0,0,5,10,5,10,6,10,11,14,15,7,9,14,1,2,15,15,7,9,10,4,6,10,0,5,10,6,4,6,13,4,14,13,4,14,2,15,15,3,7,5,13,4,14,2,0,5,10,6,15,3,1,5,9,11,4,6,14,15,7,7,13,4,14,13,4,14,2,0,9,5,10,14,15,3,13,4,14,13,8,1,2,15,15,7,9,4,6,13,4,14,2,15,7,7,9,15,3,7,0,5,13,4,14,13,4,14,13,4,14,2,0,5,13,4,14,13,4,14,2,0,5,6,11,14,15,3,7,0,5,10,6,4,6,4,6,14,15,7,9,6,13,4,14,2,0,5,13,4,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"11\", \"4\"], \"clip_start\": 415.0, \"clip_end\": 418.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,7,9,6,9,8,7,7,1,2,15,15,7,7,9,1,2,15,15,7,7,8,12,14,15,3,7,5,10,5,13,4,14,2,15,15,7,7,10,10,3,12,12,9,3,7,0,6,2,0,9,9,9,12,5,10,14,15,3,1,2,15,15,7,7,13,4,14,13,4,14,2,15,15,7,7,8,4,6,11,13,4,14,2,0,2,15,15,3,7,0,5,10,14,15,7,7,8,0,9,2,15,15,7,7,8,1,2,15,15,3,7,5,10,6,1,2,15,15,7,8,11,7,2,15,15,7,7,8,14,15,7,7,8,3,1,9,13,4,14,2,15,15,3,1,2,0,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,7,9,1,0,9,10,8,0,0,9,10,6,1,2,15,15,7,7,9,11,1,5,13,4,2,0,3,1,5,10,14,15,7,9,11,3,7,0,8,5,10,14,15,3,1,5,10,6,4,6,9,13,4,14,2,15,15,13,4,14,2,15,15,3,7,0,5,10,0,5,13,4,14,2,0,5,13,4,14,2,15,15,7,9,7,4,6,3,7,0,5,10,14,15,7,7,13,4,14,2,15,15,7,2,15,15,6,4,6,0,5,13,11,15,7,7,9,2,0,5,4,6,9,8,3,1,5,9,3,7,5,13,4,14,2,0,5,13,4,14,2,0,9,2,0,0,5,13,4,14,2,15,15,7,9,11,13,4,14,2,15,15,3,7,5,10,14,15,7,7,8,8,8,1,9,9,13,4,14,2,15,15,7,9,13,4,14,2,0,0,5,10,5,10,6,10,11,14,15,7,9,14,1,2,15,15,7,9,10,4,6,10,0,5,10,6,4,6,13,4,14,13,4,14,2,15,15,3,7,5,13,4,14,2,0,5,10,6,15,3,1,5,9,11,4,6,14,15,7,7,13,4,14,13,4,14,2,0,9,5,10,14,15,3,13,4,14,13,8,1,2,15,15,7,9,4,6,13,4,14,2,15,7,7,9,15,3,7,0,5,13,4,14,13,4,14,13,4,14,2,0,5,13,4,14,13,4,14,2,0,5,6,11,14,15,3,7,0,5,10,6,4,6,4,6,14,15,7,9,6,13,4,14,2,0,5,13,4,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\", \"1\"], \"clip_start\": 507.0, \"clip_end\": 511.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q5_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,7,9,6,9,8,7,7,1,2,15,15,7,7,9,1,2,15,15,7,7,8,12,14,15,3,7,5,10,5,13,4,14,2,15,15,7,7,10,10,3,12,12,9,3,7,0,6,2,0,9,9,9,12,5,10,14,15,3,1,2,15,15,7,7,13,4,14,13,4,14,2,15,15,7,7,8,4,6,11,13,4,14,2,0,2,15,15,3,7,0,5,10,14,15,7,7,8,0,9,2,15,15,7,7,8,1,2,15,15,3,7,5,10,6,1,2,15,15,7,8,11,7,2,15,15,7,7,8,14,15,7,7,8,3,1,9,13,4,14,2,15,15,3,1,2,0,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,7,9,1,0,9,10,8,0,0,9,10,6,1,2,15,15,7,7,9,11,1,5,13,4,2,0,3,1,5,10,14,15,7,9,11,3,7,0,8,5,10,14,15,3,1,5,10,6,4,6,9,13,4,14,2,15,15,13,4,14,2,15,15,3,7,0,5,10,0,5,13,4,14,2,0,5,13,4,14,2,15,15,7,9,7,4,6,3,7,0,5,10,14,15,7,7,13,4,14,2,15,15,7,2,15,15,6,4,6,0,5,13,11,15,7,7,9,2,0,5,4,6,9,8,3,1,5,9,3,7,5,13,4,14,2,0,5,13,4,14,2,0,9,2,0,0,5,13,4,14,2,15,15,7,9,11,13,4,14,2,15,15,3,7,5,10,14,15,7,7,8,8,8,1,9,9,13,4,14,2,15,15,7,9,13,4,14,2,0,0,5,10,5,10,6,10,11,14,15,7,9,14,1,2,15,15,7,9,10,4,6,10,0,5,10,6,4,6,13,4,14,13,4,14,2,15,15,3,7,5,13,4,14,2,0,5,10,6,15,3,1,5,9,11,4,6,14,15,7,7,13,4,14,13,4,14,2,0,9,5,10,14,15,3,13,4,14,13,8,1,2,15,15,7,9,4,6,13,4,14,2,15,7,7,9,15,3,7,0,5,13,4,14,13,4,14,13,4,14,2,0,5,13,4,14,13,4,14,2,0,5,6,11,14,15,3,7,0,5,10,6,4,6,4,6,14,15,7,9,6,13,4,14,2,0,5,13,4,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"5\", \"7\", \"3\", \"13\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q6_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,7,9,6,9,8,7,7,1,2,15,15,7,7,9,1,2,15,15,7,7,8,12,14,15,3,7,5,10,5,13,4,14,2,15,15,7,7,10,10,3,12,12,9,3,7,0,6,2,0,9,9,9,12,5,10,14,15,3,1,2,15,15,7,7,13,4,14,13,4,14,2,15,15,7,7,8,4,6,11,13,4,14,2,0,2,15,15,3,7,0,5,10,14,15,7,7,8,0,9,2,15,15,7,7,8,1,2,15,15,3,7,5,10,6,1,2,15,15,7,8,11,7,2,15,15,7,7,8,14,15,7,7,8,3,1,9,13,4,14,2,15,15,3,1,2,0,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,7,9,1,0,9,10,8,0,0,9,10,6,1,2,15,15,7,7,9,11,1,5,13,4,2,0,3,1,5,10,14,15,7,9,11,3,7,0,8,5,10,14,15,3,1,5,10,6,4,6,9,13,4,14,2,15,15,13,4,14,2,15,15,3,7,0,5,10,0,5,13,4,14,2,0,5,13,4,14,2,15,15,7,9,7,4,6,3,7,0,5,10,14,15,7,7,13,4,14,2,15,15,7,2,15,15,6,4,6,0,5,13,11,15,7,7,9,2,0,5,4,6,9,8,3,1,5,9,3,7,5,13,4,14,2,0,5,13,4,14,2,0,9,2,0,0,5,13,4,14,2,15,15,7,9,11,13,4,14,2,15,15,3,7,5,10,14,15,7,7,8,8,8,1,9,9,13,4,14,2,15,15,7,9,13,4,14,2,0,0,5,10,5,10,6,10,11,14,15,7,9,14,1,2,15,15,7,9,10,4,6,10,0,5,10,6,4,6,13,4,14,13,4,14,2,15,15,3,7,5,13,4,14,2,0,5,10,6,15,3,1,5,9,11,4,6,14,15,7,7,13,4,14,13,4,14,2,0,9,5,10,14,15,3,13,4,14,13,8,1,2,15,15,7,9,4,6,13,4,14,2,15,7,7,9,15,3,7,0,5,13,4,14,13,4,14,13,4,14,2,0,5,13,4,14,13,4,14,2,0,5,6,11,14,15,3,7,0,5,10,6,4,6,4,6,14,15,7,9,6,13,4,14,2,0,5,13,4,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"14\", \"13\", \"4\"], \"clip_start\": 475.0, \"clip_end\": 480.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,7,9,6,9,8,7,7,1,2,15,15,7,7,9,1,2,15,15,7,7,8,12,14,15,3,7,5,10,5,13,4,14,2,15,15,7,7,10,10,3,12,12,9,3,7,0,6,2,0,9,9,9,12,5,10,14,15,3,1,2,15,15,7,7,13,4,14,13,4,14,2,15,15,7,7,8,4,6,11,13,4,14,2,0,2,15,15,3,7,0,5,10,14,15,7,7,8,0,9,2,15,15,7,7,8,1,2,15,15,3,7,5,10,6,1,2,15,15,7,8,11,7,2,15,15,7,7,8,14,15,7,7,8,3,1,9,13,4,14,2,15,15,3,1,2,0,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,7,9,1,0,9,10,8,0,0,9,10,6,1,2,15,15,7,7,9,11,1,5,13,4,2,0,3,1,5,10,14,15,7,9,11,3,7,0,8,5,10,14,15,3,1,5,10,6,4,6,9,13,4,14,2,15,15,13,4,14,2,15,15,3,7,0,5,10,0,5,13,4,14,2,0,5,13,4,14,2,15,15,7,9,7,4,6,3,7,0,5,10,14,15,7,7,13,4,14,2,15,15,7,2,15,15,6,4,6,0,5,13,11,15,7,7,9,2,0,5,4,6,9,8,3,1,5,9,3,7,5,13,4,14,2,0,5,13,4,14,2,0,9,2,0,0,5,13,4,14,2,15,15,7,9,11,13,4,14,2,15,15,3,7,5,10,14,15,7,7,8,8,8,1,9,9,13,4,14,2,15,15,7,9,13,4,14,2,0,0,5,10,5,10,6,10,11,14,15,7,9,14,1,2,15,15,7,9,10,4,6,10,0,5,10,6,4,6,13,4,14,13,4,14,2,15,15,3,7,5,13,4,14,2,0,5,10,6,15,3,1,5,9,11,4,6,14,15,7,7,13,4,14,13,4,14,2,0,9,5,10,14,15,3,13,4,14,13,8,1,2,15,15,7,9,4,6,13,4,14,2,15,7,7,9,15,3,7,0,5,13,4,14,13,4,14,13,4,14,2,0,5,13,4,14,13,4,14,2,0,5,6,11,14,15,3,7,0,5,10,6,4,6,4,6,14,15,7,9,6,13,4,14,2,0,5,13,4,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"0\", \"8\", \"5\", \"10\"], \"clip_start\": 208.0, \"clip_end\": 214.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q8_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,7,9,6,9,8,7,7,1,2,15,15,7,7,9,1,2,15,15,7,7,8,12,14,15,3,7,5,10,5,13,4,14,2,15,15,7,7,10,10,3,12,12,9,3,7,0,6,2,0,9,9,9,12,5,10,14,15,3,1,2,15,15,7,7,13,4,14,13,4,14,2,15,15,7,7,8,4,6,11,13,4,14,2,0,2,15,15,3,7,0,5,10,14,15,7,7,8,0,9,2,15,15,7,7,8,1,2,15,15,3,7,5,10,6,1,2,15,15,7,8,11,7,2,15,15,7,7,8,14,15,7,7,8,3,1,9,13,4,14,2,15,15,3,1,2,0,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,7,9,1,0,9,10,8,0,0,9,10,6,1,2,15,15,7,7,9,11,1,5,13,4,2,0,3,1,5,10,14,15,7,9,11,3,7,0,8,5,10,14,15,3,1,5,10,6,4,6,9,13,4,14,2,15,15,13,4,14,2,15,15,3,7,0,5,10,0,5,13,4,14,2,0,5,13,4,14,2,15,15,7,9,7,4,6,3,7,0,5,10,14,15,7,7,13,4,14,2,15,15,7,2,15,15,6,4,6,0,5,13,11,15,7,7,9,2,0,5,4,6,9,8,3,1,5,9,3,7,5,13,4,14,2,0,5,13,4,14,2,0,9,2,0,0,5,13,4,14,2,15,15,7,9,11,13,4,14,2,15,15,3,7,5,10,14,15,7,7,8,8,8,1,9,9,13,4,14,2,15,15,7,9,13,4,14,2,0,0,5,10,5,10,6,10,11,14,15,7,9,14,1,2,15,15,7,9,10,4,6,10,0,5,10,6,4,6,13,4,14,13,4,14,2,15,15,3,7,5,13,4,14,2,0,5,10,6,15,3,1,5,9,11,4,6,14,15,7,7,13,4,14,13,4,14,2,0,9,5,10,14,15,3,13,4,14,13,8,1,2,15,15,7,9,4,6,13,4,14,2,15,7,7,9,15,3,7,0,5,13,4,14,13,4,14,13,4,14,2,0,5,13,4,14,13,4,14,2,0,5,6,11,14,15,3,7,0,5,10,6,4,6,4,6,14,15,7,9,6,13,4,14,2,0,5,13,4,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"7\"], \"clip_start\": 444.0, \"clip_end\": 447.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,7,9,6,9,8,7,7,1,2,15,15,7,7,9,1,2,15,15,7,7,8,12,14,15,3,7,5,10,5,13,4,14,2,15,15,7,7,10,10,3,12,12,9,3,7,0,6,2,0,9,9,9,12,5,10,14,15,3,1,2,15,15,7,7,13,4,14,13,4,14,2,15,15,7,7,8,4,6,11,13,4,14,2,0,2,15,15,3,7,0,5,10,14,15,7,7,8,0,9,2,15,15,7,7,8,1,2,15,15,3,7,5,10,6,1,2,15,15,7,8,11,7,2,15,15,7,7,8,14,15,7,7,8,3,1,9,13,4,14,2,15,15,3,1,2,0,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,7,9,1,0,9,10,8,0,0,9,10,6,1,2,15,15,7,7,9,11,1,5,13,4,2,0,3,1,5,10,14,15,7,9,11,3,7,0,8,5,10,14,15,3,1,5,10,6,4,6,9,13,4,14,2,15,15,13,4,14,2,15,15,3,7,0,5,10,0,5,13,4,14,2,0,5,13,4,14,2,15,15,7,9,7,4,6,3,7,0,5,10,14,15,7,7,13,4,14,2,15,15,7,2,15,15,6,4,6,0,5,13,11,15,7,7,9,2,0,5,4,6,9,8,3,1,5,9,3,7,5,13,4,14,2,0,5,13,4,14,2,0,9,2,0,0,5,13,4,14,2,15,15,7,9,11,13,4,14,2,15,15,3,7,5,10,14,15,7,7,8,8,8,1,9,9,13,4,14,2,15,15,7,9,13,4,14,2,0,0,5,10,5,10,6,10,11,14,15,7,9,14,1,2,15,15,7,9,10,4,6,10,0,5,10,6,4,6,13,4,14,13,4,14,2,15,15,3,7,5,13,4,14,2,0,5,10,6,15,3,1,5,9,11,4,6,14,15,7,7,13,4,14,13,4,14,2,0,9,5,10,14,15,3,13,4,14,13,8,1,2,15,15,7,9,4,6,13,4,14,2,15,7,7,9,15,3,7,0,5,13,4,14,13,4,14,13,4,14,2,0,5,13,4,14,13,4,14,2,0,5,6,11,14,15,3,7,0,5,10,6,4,6,4,6,14,15,7,9,6,13,4,14,2,0,5,13,4,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"2\", \"15\", \"15\", \"3\"], \"clip_start\": 140.0, \"clip_end\": 145.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q10_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,7,9,6,9,8,7,7,1,2,15,15,7,7,9,1,2,15,15,7,7,8,12,14,15,3,7,5,10,5,13,4,14,2,15,15,7,7,10,10,3,12,12,9,3,7,0,6,2,0,9,9,9,12,5,10,14,15,3,1,2,15,15,7,7,13,4,14,13,4,14,2,15,15,7,7,8,4,6,11,13,4,14,2,0,2,15,15,3,7,0,5,10,14,15,7,7,8,0,9,2,15,15,7,7,8,1,2,15,15,3,7,5,10,6,1,2,15,15,7,8,11,7,2,15,15,7,7,8,14,15,7,7,8,3,1,9,13,4,14,2,15,15,3,1,2,0,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,7,9,1,0,9,10,8,0,0,9,10,6,1,2,15,15,7,7,9,11,1,5,13,4,2,0,3,1,5,10,14,15,7,9,11,3,7,0,8,5,10,14,15,3,1,5,10,6,4,6,9,13,4,14,2,15,15,13,4,14,2,15,15,3,7,0,5,10,0,5,13,4,14,2,0,5,13,4,14,2,15,15,7,9,7,4,6,3,7,0,5,10,14,15,7,7,13,4,14,2,15,15,7,2,15,15,6,4,6,0,5,13,11,15,7,7,9,2,0,5,4,6,9,8,3,1,5,9,3,7,5,13,4,14,2,0,5,13,4,14,2,0,9,2,0,0,5,13,4,14,2,15,15,7,9,11,13,4,14,2,15,15,3,7,5,10,14,15,7,7,8,8,8,1,9,9,13,4,14,2,15,15,7,9,13,4,14,2,0,0,5,10,5,10,6,10,11,14,15,7,9,14,1,2,15,15,7,9,10,4,6,10,0,5,10,6,4,6,13,4,14,13,4,14,2,15,15,3,7,5,13,4,14,2,0,5,10,6,15,3,1,5,9,11,4,6,14,15,7,7,13,4,14,13,4,14,2,0,9,5,10,14,15,3,13,4,14,13,8,1,2,15,15,7,9,4,6,13,4,14,2,15,7,7,9,15,3,7,0,5,13,4,14,13,4,14,13,4,14,2,0,5,13,4,14,13,4,14,2,0,5,6,11,14,15,3,7,0,5,10,6,4,6,4,6,14,15,7,9,6,13,4,14,2,0,5,13,4,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"9\", \"13\"], \"clip_start\": 221.0, \"clip_end\": 225.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,7,9,6,9,8,7,7,1,2,15,15,7,7,9,1,2,15,15,7,7,8,12,14,15,3,7,5,10,5,13,4,14,2,15,15,7,7,10,10,3,12,12,9,3,7,0,6,2,0,9,9,9,12,5,10,14,15,3,1,2,15,15,7,7,13,4,14,13,4,14,2,15,15,7,7,8,4,6,11,13,4,14,2,0,2,15,15,3,7,0,5,10,14,15,7,7,8,0,9,2,15,15,7,7,8,1,2,15,15,3,7,5,10,6,1,2,15,15,7,8,11,7,2,15,15,7,7,8,14,15,7,7,8,3,1,9,13,4,14,2,15,15,3,1,2,0,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,7,9,1,0,9,10,8,0,0,9,10,6,1,2,15,15,7,7,9,11,1,5,13,4,2,0,3,1,5,10,14,15,7,9,11,3,7,0,8,5,10,14,15,3,1,5,10,6,4,6,9,13,4,14,2,15,15,13,4,14,2,15,15,3,7,0,5,10,0,5,13,4,14,2,0,5,13,4,14,2,15,15,7,9,7,4,6,3,7,0,5,10,14,15,7,7,13,4,14,2,15,15,7,2,15,15,6,4,6,0,5,13,11,15,7,7,9,2,0,5,4,6,9,8,3,1,5,9,3,7,5,13,4,14,2,0,5,13,4,14,2,0,9,2,0,0,5,13,4,14,2,15,15,7,9,11,13,4,14,2,15,15,3,7,5,10,14,15,7,7,8,8,8,1,9,9,13,4,14,2,15,15,7,9,13,4,14,2,0,0,5,10,5,10,6,10,11,14,15,7,9,14,1,2,15,15,7,9,10,4,6,10,0,5,10,6,4,6,13,4,14,13,4,14,2,15,15,3,7,5,13,4,14,2,0,5,10,6,15,3,1,5,9,11,4,6,14,15,7,7,13,4,14,13,4,14,2,0,9,5,10,14,15,3,13,4,14,13,8,1,2,15,15,7,9,4,6,13,4,14,2,15,7,7,9,15,3,7,0,5,13,4,14,13,4,14,13,4,14,2,0,5,13,4,14,13,4,14,2,0,5,6,11,14,15,3,7,0,5,10,6,4,6,4,6,14,15,7,9,6,13,4,14,2,0,5,13,4,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"10\", \"5\", \"10\", \"7\"], \"clip_start\": 444.0, \"clip_end\": 450.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,7,9,6,9,8,7,7,1,2,15,15,7,7,9,1,2,15,15,7,7,8,12,14,15,3,7,5,10,5,13,4,14,2,15,15,7,7,10,10,3,12,12,9,3,7,0,6,2,0,9,9,9,12,5,10,14,15,3,1,2,15,15,7,7,13,4,14,13,4,14,2,15,15,7,7,8,4,6,11,13,4,14,2,0,2,15,15,3,7,0,5,10,14,15,7,7,8,0,9,2,15,15,7,7,8,1,2,15,15,3,7,5,10,6,1,2,15,15,7,8,11,7,2,15,15,7,7,8,14,15,7,7,8,3,1,9,13,4,14,2,15,15,3,1,2,0,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,7,9,1,0,9,10,8,0,0,9,10,6,1,2,15,15,7,7,9,11,1,5,13,4,2,0,3,1,5,10,14,15,7,9,11,3,7,0,8,5,10,14,15,3,1,5,10,6,4,6,9,13,4,14,2,15,15,13,4,14,2,15,15,3,7,0,5,10,0,5,13,4,14,2,0,5,13,4,14,2,15,15,7,9,7,4,6,3,7,0,5,10,14,15,7,7,13,4,14,2,15,15,7,2,15,15,6,4,6,0,5,13,11,15,7,7,9,2,0,5,4,6,9,8,3,1,5,9,3,7,5,13,4,14,2,0,5,13,4,14,2,0,9,2,0,0,5,13,4,14,2,15,15,7,9,11,13,4,14,2,15,15,3,7,5,10,14,15,7,7,8,8,8,1,9,9,13,4,14,2,15,15,7,9,13,4,14,2,0,0,5,10,5,10,6,10,11,14,15,7,9,14,1,2,15,15,7,9,10,4,6,10,0,5,10,6,4,6,13,4,14,13,4,14,2,15,15,3,7,5,13,4,14,2,0,5,10,6,15,3,1,5,9,11,4,6,14,15,7,7,13,4,14,13,4,14,2,0,9,5,10,14,15,3,13,4,14,13,8,1,2,15,15,7,9,4,6,13,4,14,2,15,7,7,9,15,3,7,0,5,13,4,14,13,4,14,13,4,14,2,0,5,13,4,14,13,4,14,2,0,5,6,11,14,15,3,7,0,5,10,6,4,6,4,6,14,15,7,9,6,13,4,14,2,0,5,13,4,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"15\", \"0\", \"0\", \"10\"], \"clip_start\": 127.0, \"clip_end\": 133.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,7,9,6,9,8,7,7,1,2,15,15,7,7,9,1,2,15,15,7,7,8,12,14,15,3,7,5,10,5,13,4,14,2,15,15,7,7,10,10,3,12,12,9,3,7,0,6,2,0,9,9,9,12,5,10,14,15,3,1,2,15,15,7,7,13,4,14,13,4,14,2,15,15,7,7,8,4,6,11,13,4,14,2,0,2,15,15,3,7,0,5,10,14,15,7,7,8,0,9,2,15,15,7,7,8,1,2,15,15,3,7,5,10,6,1,2,15,15,7,8,11,7,2,15,15,7,7,8,14,15,7,7,8,3,1,9,13,4,14,2,15,15,3,1,2,0,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,7,9,1,0,9,10,8,0,0,9,10,6,1,2,15,15,7,7,9,11,1,5,13,4,2,0,3,1,5,10,14,15,7,9,11,3,7,0,8,5,10,14,15,3,1,5,10,6,4,6,9,13,4,14,2,15,15,13,4,14,2,15,15,3,7,0,5,10,0,5,13,4,14,2,0,5,13,4,14,2,15,15,7,9,7,4,6,3,7,0,5,10,14,15,7,7,13,4,14,2,15,15,7,2,15,15,6,4,6,0,5,13,11,15,7,7,9,2,0,5,4,6,9,8,3,1,5,9,3,7,5,13,4,14,2,0,5,13,4,14,2,0,9,2,0,0,5,13,4,14,2,15,15,7,9,11,13,4,14,2,15,15,3,7,5,10,14,15,7,7,8,8,8,1,9,9,13,4,14,2,15,15,7,9,13,4,14,2,0,0,5,10,5,10,6,10,11,14,15,7,9,14,1,2,15,15,7,9,10,4,6,10,0,5,10,6,4,6,13,4,14,13,4,14,2,15,15,3,7,5,13,4,14,2,0,5,10,6,15,3,1,5,9,11,4,6,14,15,7,7,13,4,14,13,4,14,2,0,9,5,10,14,15,3,13,4,14,13,8,1,2,15,15,7,9,4,6,13,4,14,2,15,7,7,9,15,3,7,0,5,13,4,14,13,4,14,13,4,14,2,0,5,13,4,14,13,4,14,2,0,5,6,11,14,15,3,7,0,5,10,6,4,6,4,6,14,15,7,9,6,13,4,14,2,0,5,13,4,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"10\", \"8\"], \"clip_start\": 176.0, \"clip_end\": 180.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,7,9,6,9,8,7,7,1,2,15,15,7,7,9,1,2,15,15,7,7,8,12,14,15,3,7,5,10,5,13,4,14,2,15,15,7,7,10,10,3,12,12,9,3,7,0,6,2,0,9,9,9,12,5,10,14,15,3,1,2,15,15,7,7,13,4,14,13,4,14,2,15,15,7,7,8,4,6,11,13,4,14,2,0,2,15,15,3,7,0,5,10,14,15,7,7,8,0,9,2,15,15,7,7,8,1,2,15,15,3,7,5,10,6,1,2,15,15,7,8,11,7,2,15,15,7,7,8,14,15,7,7,8,3,1,9,13,4,14,2,15,15,3,1,2,0,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,7,9,1,0,9,10,8,0,0,9,10,6,1,2,15,15,7,7,9,11,1,5,13,4,2,0,3,1,5,10,14,15,7,9,11,3,7,0,8,5,10,14,15,3,1,5,10,6,4,6,9,13,4,14,2,15,15,13,4,14,2,15,15,3,7,0,5,10,0,5,13,4,14,2,0,5,13,4,14,2,15,15,7,9,7,4,6,3,7,0,5,10,14,15,7,7,13,4,14,2,15,15,7,2,15,15,6,4,6,0,5,13,11,15,7,7,9,2,0,5,4,6,9,8,3,1,5,9,3,7,5,13,4,14,2,0,5,13,4,14,2,0,9,2,0,0,5,13,4,14,2,15,15,7,9,11,13,4,14,2,15,15,3,7,5,10,14,15,7,7,8,8,8,1,9,9,13,4,14,2,15,15,7,9,13,4,14,2,0,0,5,10,5,10,6,10,11,14,15,7,9,14,1,2,15,15,7,9,10,4,6,10,0,5,10,6,4,6,13,4,14,13,4,14,2,15,15,3,7,5,13,4,14,2,0,5,10,6,15,3,1,5,9,11,4,6,14,15,7,7,13,4,14,13,4,14,2,0,9,5,10,14,15,3,13,4,14,13,8,1,2,15,15,7,9,4,6,13,4,14,2,15,7,7,9,15,3,7,0,5,13,4,14,13,4,14,13,4,14,2,0,5,13,4,14,13,4,14,2,0,5,6,11,14,15,3,7,0,5,10,6,4,6,4,6,14,15,7,9,6,13,4,14,2,0,5,13,4,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"8\", \"5\", \"10\"], \"clip_start\": 124.0, \"clip_end\": 130.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q15_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,7,7,9,6,9,8,7,7,1,2,15,15,7,7,9,1,2,15,15,7,7,8,12,14,15,3,7,5,10,5,13,4,14,2,15,15,7,7,10,10,3,12,12,9,3,7,0,6,2,0,9,9,9,12,5,10,14,15,3,1,2,15,15,7,7,13,4,14,13,4,14,2,15,15,7,7,8,4,6,11,13,4,14,2,0,2,15,15,3,7,0,5,10,14,15,7,7,8,0,9,2,15,15,7,7,8,1,2,15,15,3,7,5,10,6,1,2,15,15,7,8,11,7,2,15,15,7,7,8,14,15,7,7,8,3,1,9,13,4,14,2,15,15,3,1,2,0,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,3,7,5,13,4,14,2,15,15,7,9,1,0,9,10,8,0,0,9,10,6,1,2,15,15,7,7,9,11,1,5,13,4,2,0,3,1,5,10,14,15,7,9,11,3,7,0,8,5,10,14,15,3,1,5,10,6,4,6,9,13,4,14,2,15,15,13,4,14,2,15,15,3,7,0,5,10,0,5,13,4,14,2,0,5,13,4,14,2,15,15,7,9,7,4,6,3,7,0,5,10,14,15,7,7,13,4,14,2,15,15,7,2,15,15,6,4,6,0,5,13,11,15,7,7,9,2,0,5,4,6,9,8,3,1,5,9,3,7,5,13,4,14,2,0,5,13,4,14,2,0,9,2,0,0,5,13,4,14,2,15,15,7,9,11,13,4,14,2,15,15,3,7,5,10,14,15,7,7,8,8,8,1,9,9,13,4,14,2,15,15,7,9,13,4,14,2,0,0,5,10,5,10,6,10,11,14,15,7,9,14,1,2,15,15,7,9,10,4,6,10,0,5,10,6,4,6,13,4,14,13,4,14,2,15,15,3,7,5,13,4,14,2,0,5,10,6,15,3,1,5,9,11,4,6,14,15,7,7,13,4,14,13,4,14,2,0,9,5,10,14,15,3,13,4,14,13,8,1,2,15,15,7,9,4,6,13,4,14,2,15,7,7,9,15,3,7,0,5,13,4,14,13,4,14,13,4,14,2,0,5,13,4,14,13,4,14,2,0,5,6,11,14,15,3,7,0,5,10,6,4,6,4,6,14,15,7,9,6,13,4,14,2,0,5,13,4,14", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"11\"], \"clip_start\": 437.0, \"clip_end\": 440.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,2,3,14,0,11,2,13,5,6,2,15,0,11,7,13,1,2,3,6,0,11,7,11,7,11,2,13,6,2,15,6,0,11,7,11,2,9,13,8,7,8,7,8,7,1,2,3,6,0,11,7,11,2,9,5,6,2,15,14,3,14,0,11,7,11,2,13,13,4,6,2,15,3,14,9,8,7,1,2,1,2,3,14,2,9,10,14,3,14,7,1,2,1,2,1,2,3,14,7,8,7,1,2,3,6,2,15,15,1,2,3,6,0,11,7,11,2,13,13,10,7,8,7,1,2,3,6,2,15,6,0,11,7,11,10,14,3,14,10,14,3,14,3,6,0,11,7,11,2,9,2,8,7,1,2,3,14,13,7,1,2,3,14,7,1,2,3,6,7,8,7,8,7,1,2,3,6,7,11,2,13,10,14,8,7,7,1,2,3,6,4,4,14,12,5,6,0,11,2,8,7,4,7,14,5,6,2,15,13,6,7,8,7,6,2,15,5,6,0,11,2,8,7,1,2,3,6,2,15,15,2,13,2,9,4,3,14,6,7,1,2,3,14,5,6,0,11,7,11,2,9,3,14,4,2,9,5,6,2,15,3,6,0,11,7,11,2,8,7,8,7,8,7,1,2,3,14,8,7,1,2,1,2,3,6,2,15,13,2,8,7,1,2,3,14,3,14,4,6,2,15,13,11,7,11,2,13,11,2,13,5,6,2,15,14,14,7,1,2,1,2,3,6,7,8,7,8,7,8,7,1,2,1,2,3,6,7,8,7,1,2,3,6,2,15,14,5,6,0,11,2,13,5,6,2,15,5,6,2,15,8,7,8,7,8,7,8,7,1,2,3,6,0,11,2,9,11,2,8,7,8,7,1,2,1,2,3,14,4,9,11,2,9,0,11,7,11,2,8,7,1,2,1,2,3,6,7,1,2,1,2,3,14,12,15,7,6,7,1,2,3,14,2,9,10,14,3,6,2,15,6,2,8,7,8,7,14,11,2,9,14,13,3,6,7,1,2,3,6,2,15,8,7,8,7,8,7,1,2,3,6,2,15,11,2,13,6,2,15,6,2,15,10,9,0,11,7,11,3,6,2,15,2,13,6,7,14,4,7,8,7,1,2,3,14,10,14,3,14,6,7,1,2,1,2,1,2,3,14,0", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 162.0, \"clip_end\": 166.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,2,3,14,0,11,2,13,5,6,2,15,0,11,7,13,1,2,3,6,0,11,7,11,7,11,2,13,6,2,15,6,0,11,7,11,2,9,13,8,7,8,7,8,7,1,2,3,6,0,11,7,11,2,9,5,6,2,15,14,3,14,0,11,7,11,2,13,13,4,6,2,15,3,14,9,8,7,1,2,1,2,3,14,2,9,10,14,3,14,7,1,2,1,2,1,2,3,14,7,8,7,1,2,3,6,2,15,15,1,2,3,6,0,11,7,11,2,13,13,10,7,8,7,1,2,3,6,2,15,6,0,11,7,11,10,14,3,14,10,14,3,14,3,6,0,11,7,11,2,9,2,8,7,1,2,3,14,13,7,1,2,3,14,7,1,2,3,6,7,8,7,8,7,1,2,3,6,7,11,2,13,10,14,8,7,7,1,2,3,6,4,4,14,12,5,6,0,11,2,8,7,4,7,14,5,6,2,15,13,6,7,8,7,6,2,15,5,6,0,11,2,8,7,1,2,3,6,2,15,15,2,13,2,9,4,3,14,6,7,1,2,3,14,5,6,0,11,7,11,2,9,3,14,4,2,9,5,6,2,15,3,6,0,11,7,11,2,8,7,8,7,8,7,1,2,3,14,8,7,1,2,1,2,3,6,2,15,13,2,8,7,1,2,3,14,3,14,4,6,2,15,13,11,7,11,2,13,11,2,13,5,6,2,15,14,14,7,1,2,1,2,3,6,7,8,7,8,7,8,7,1,2,1,2,3,6,7,8,7,1,2,3,6,2,15,14,5,6,0,11,2,13,5,6,2,15,5,6,2,15,8,7,8,7,8,7,8,7,1,2,3,6,0,11,2,9,11,2,8,7,8,7,1,2,1,2,3,14,4,9,11,2,9,0,11,7,11,2,8,7,1,2,1,2,3,6,7,1,2,1,2,3,14,12,15,7,6,7,1,2,3,14,2,9,10,14,3,6,2,15,6,2,8,7,8,7,14,11,2,9,14,13,3,6,7,1,2,3,6,2,15,8,7,8,7,8,7,1,2,3,6,2,15,11,2,13,6,2,15,6,2,15,10,9,0,11,7,11,3,6,2,15,2,13,6,7,14,4,7,8,7,1,2,3,14,10,14,3,14,6,7,1,2,1,2,1,2,3,14,0", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"6\", \"0\"], \"clip_start\": 371.0, \"clip_end\": 375.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,2,3,14,0,11,2,13,5,6,2,15,0,11,7,13,1,2,3,6,0,11,7,11,7,11,2,13,6,2,15,6,0,11,7,11,2,9,13,8,7,8,7,8,7,1,2,3,6,0,11,7,11,2,9,5,6,2,15,14,3,14,0,11,7,11,2,13,13,4,6,2,15,3,14,9,8,7,1,2,1,2,3,14,2,9,10,14,3,14,7,1,2,1,2,1,2,3,14,7,8,7,1,2,3,6,2,15,15,1,2,3,6,0,11,7,11,2,13,13,10,7,8,7,1,2,3,6,2,15,6,0,11,7,11,10,14,3,14,10,14,3,14,3,6,0,11,7,11,2,9,2,8,7,1,2,3,14,13,7,1,2,3,14,7,1,2,3,6,7,8,7,8,7,1,2,3,6,7,11,2,13,10,14,8,7,7,1,2,3,6,4,4,14,12,5,6,0,11,2,8,7,4,7,14,5,6,2,15,13,6,7,8,7,6,2,15,5,6,0,11,2,8,7,1,2,3,6,2,15,15,2,13,2,9,4,3,14,6,7,1,2,3,14,5,6,0,11,7,11,2,9,3,14,4,2,9,5,6,2,15,3,6,0,11,7,11,2,8,7,8,7,8,7,1,2,3,14,8,7,1,2,1,2,3,6,2,15,13,2,8,7,1,2,3,14,3,14,4,6,2,15,13,11,7,11,2,13,11,2,13,5,6,2,15,14,14,7,1,2,1,2,3,6,7,8,7,8,7,8,7,1,2,1,2,3,6,7,8,7,1,2,3,6,2,15,14,5,6,0,11,2,13,5,6,2,15,5,6,2,15,8,7,8,7,8,7,8,7,1,2,3,6,0,11,2,9,11,2,8,7,8,7,1,2,1,2,3,14,4,9,11,2,9,0,11,7,11,2,8,7,1,2,1,2,3,6,7,1,2,1,2,3,14,12,15,7,6,7,1,2,3,14,2,9,10,14,3,6,2,15,6,2,8,7,8,7,14,11,2,9,14,13,3,6,7,1,2,3,6,2,15,8,7,8,7,8,7,1,2,3,6,2,15,11,2,13,6,2,15,6,2,15,10,9,0,11,7,11,3,6,2,15,2,13,6,7,14,4,7,8,7,1,2,3,14,10,14,3,14,6,7,1,2,1,2,1,2,3,14,0", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"15\", \"8\", \"7\"], \"clip_start\": 360.0, \"clip_end\": 364.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,2,3,14,0,11,2,13,5,6,2,15,0,11,7,13,1,2,3,6,0,11,7,11,7,11,2,13,6,2,15,6,0,11,7,11,2,9,13,8,7,8,7,8,7,1,2,3,6,0,11,7,11,2,9,5,6,2,15,14,3,14,0,11,7,11,2,13,13,4,6,2,15,3,14,9,8,7,1,2,1,2,3,14,2,9,10,14,3,14,7,1,2,1,2,1,2,3,14,7,8,7,1,2,3,6,2,15,15,1,2,3,6,0,11,7,11,2,13,13,10,7,8,7,1,2,3,6,2,15,6,0,11,7,11,10,14,3,14,10,14,3,14,3,6,0,11,7,11,2,9,2,8,7,1,2,3,14,13,7,1,2,3,14,7,1,2,3,6,7,8,7,8,7,1,2,3,6,7,11,2,13,10,14,8,7,7,1,2,3,6,4,4,14,12,5,6,0,11,2,8,7,4,7,14,5,6,2,15,13,6,7,8,7,6,2,15,5,6,0,11,2,8,7,1,2,3,6,2,15,15,2,13,2,9,4,3,14,6,7,1,2,3,14,5,6,0,11,7,11,2,9,3,14,4,2,9,5,6,2,15,3,6,0,11,7,11,2,8,7,8,7,8,7,1,2,3,14,8,7,1,2,1,2,3,6,2,15,13,2,8,7,1,2,3,14,3,14,4,6,2,15,13,11,7,11,2,13,11,2,13,5,6,2,15,14,14,7,1,2,1,2,3,6,7,8,7,8,7,8,7,1,2,1,2,3,6,7,8,7,1,2,3,6,2,15,14,5,6,0,11,2,13,5,6,2,15,5,6,2,15,8,7,8,7,8,7,8,7,1,2,3,6,0,11,2,9,11,2,8,7,8,7,1,2,1,2,3,14,4,9,11,2,9,0,11,7,11,2,8,7,1,2,1,2,3,6,7,1,2,1,2,3,14,12,15,7,6,7,1,2,3,14,2,9,10,14,3,6,2,15,6,2,8,7,8,7,14,11,2,9,14,13,3,6,7,1,2,3,6,2,15,8,7,8,7,8,7,1,2,3,6,2,15,11,2,13,6,2,15,6,2,15,10,9,0,11,7,11,3,6,2,15,2,13,6,7,14,4,7,8,7,1,2,3,14,10,14,3,14,6,7,1,2,1,2,1,2,3,14,0", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"1\", \"2\", \"3\", \"14\"], \"clip_start\": 291.0, \"clip_end\": 297.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,2,3,14,0,11,2,13,5,6,2,15,0,11,7,13,1,2,3,6,0,11,7,11,7,11,2,13,6,2,15,6,0,11,7,11,2,9,13,8,7,8,7,8,7,1,2,3,6,0,11,7,11,2,9,5,6,2,15,14,3,14,0,11,7,11,2,13,13,4,6,2,15,3,14,9,8,7,1,2,1,2,3,14,2,9,10,14,3,14,7,1,2,1,2,1,2,3,14,7,8,7,1,2,3,6,2,15,15,1,2,3,6,0,11,7,11,2,13,13,10,7,8,7,1,2,3,6,2,15,6,0,11,7,11,10,14,3,14,10,14,3,14,3,6,0,11,7,11,2,9,2,8,7,1,2,3,14,13,7,1,2,3,14,7,1,2,3,6,7,8,7,8,7,1,2,3,6,7,11,2,13,10,14,8,7,7,1,2,3,6,4,4,14,12,5,6,0,11,2,8,7,4,7,14,5,6,2,15,13,6,7,8,7,6,2,15,5,6,0,11,2,8,7,1,2,3,6,2,15,15,2,13,2,9,4,3,14,6,7,1,2,3,14,5,6,0,11,7,11,2,9,3,14,4,2,9,5,6,2,15,3,6,0,11,7,11,2,8,7,8,7,8,7,1,2,3,14,8,7,1,2,1,2,3,6,2,15,13,2,8,7,1,2,3,14,3,14,4,6,2,15,13,11,7,11,2,13,11,2,13,5,6,2,15,14,14,7,1,2,1,2,3,6,7,8,7,8,7,8,7,1,2,1,2,3,6,7,8,7,1,2,3,6,2,15,14,5,6,0,11,2,13,5,6,2,15,5,6,2,15,8,7,8,7,8,7,8,7,1,2,3,6,0,11,2,9,11,2,8,7,8,7,1,2,1,2,3,14,4,9,11,2,9,0,11,7,11,2,8,7,1,2,1,2,3,6,7,1,2,1,2,3,14,12,15,7,6,7,1,2,3,14,2,9,10,14,3,6,2,15,6,2,8,7,8,7,14,11,2,9,14,13,3,6,7,1,2,3,6,2,15,8,7,8,7,8,7,1,2,3,6,2,15,11,2,13,6,2,15,6,2,15,10,9,0,11,7,11,3,6,2,15,2,13,6,7,14,4,7,8,7,1,2,3,14,10,14,3,14,6,7,1,2,1,2,1,2,3,14,0", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"15\", \"5\"], \"clip_start\": 355.0, \"clip_end\": 359.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,2,3,14,0,11,2,13,5,6,2,15,0,11,7,13,1,2,3,6,0,11,7,11,7,11,2,13,6,2,15,6,0,11,7,11,2,9,13,8,7,8,7,8,7,1,2,3,6,0,11,7,11,2,9,5,6,2,15,14,3,14,0,11,7,11,2,13,13,4,6,2,15,3,14,9,8,7,1,2,1,2,3,14,2,9,10,14,3,14,7,1,2,1,2,1,2,3,14,7,8,7,1,2,3,6,2,15,15,1,2,3,6,0,11,7,11,2,13,13,10,7,8,7,1,2,3,6,2,15,6,0,11,7,11,10,14,3,14,10,14,3,14,3,6,0,11,7,11,2,9,2,8,7,1,2,3,14,13,7,1,2,3,14,7,1,2,3,6,7,8,7,8,7,1,2,3,6,7,11,2,13,10,14,8,7,7,1,2,3,6,4,4,14,12,5,6,0,11,2,8,7,4,7,14,5,6,2,15,13,6,7,8,7,6,2,15,5,6,0,11,2,8,7,1,2,3,6,2,15,15,2,13,2,9,4,3,14,6,7,1,2,3,14,5,6,0,11,7,11,2,9,3,14,4,2,9,5,6,2,15,3,6,0,11,7,11,2,8,7,8,7,8,7,1,2,3,14,8,7,1,2,1,2,3,6,2,15,13,2,8,7,1,2,3,14,3,14,4,6,2,15,13,11,7,11,2,13,11,2,13,5,6,2,15,14,14,7,1,2,1,2,3,6,7,8,7,8,7,8,7,1,2,1,2,3,6,7,8,7,1,2,3,6,2,15,14,5,6,0,11,2,13,5,6,2,15,5,6,2,15,8,7,8,7,8,7,8,7,1,2,3,6,0,11,2,9,11,2,8,7,8,7,1,2,1,2,3,14,4,9,11,2,9,0,11,7,11,2,8,7,1,2,1,2,3,6,7,1,2,1,2,3,14,12,15,7,6,7,1,2,3,14,2,9,10,14,3,6,2,15,6,2,8,7,8,7,14,11,2,9,14,13,3,6,7,1,2,3,6,2,15,8,7,8,7,8,7,1,2,3,6,2,15,11,2,13,6,2,15,6,2,15,10,9,0,11,7,11,3,6,2,15,2,13,6,7,14,4,7,8,7,1,2,3,14,10,14,3,14,6,7,1,2,1,2,1,2,3,14,0", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"9\", \"11\"], \"clip_start\": 375.0, \"clip_end\": 379.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,2,3,14,0,11,2,13,5,6,2,15,0,11,7,13,1,2,3,6,0,11,7,11,7,11,2,13,6,2,15,6,0,11,7,11,2,9,13,8,7,8,7,8,7,1,2,3,6,0,11,7,11,2,9,5,6,2,15,14,3,14,0,11,7,11,2,13,13,4,6,2,15,3,14,9,8,7,1,2,1,2,3,14,2,9,10,14,3,14,7,1,2,1,2,1,2,3,14,7,8,7,1,2,3,6,2,15,15,1,2,3,6,0,11,7,11,2,13,13,10,7,8,7,1,2,3,6,2,15,6,0,11,7,11,10,14,3,14,10,14,3,14,3,6,0,11,7,11,2,9,2,8,7,1,2,3,14,13,7,1,2,3,14,7,1,2,3,6,7,8,7,8,7,1,2,3,6,7,11,2,13,10,14,8,7,7,1,2,3,6,4,4,14,12,5,6,0,11,2,8,7,4,7,14,5,6,2,15,13,6,7,8,7,6,2,15,5,6,0,11,2,8,7,1,2,3,6,2,15,15,2,13,2,9,4,3,14,6,7,1,2,3,14,5,6,0,11,7,11,2,9,3,14,4,2,9,5,6,2,15,3,6,0,11,7,11,2,8,7,8,7,8,7,1,2,3,14,8,7,1,2,1,2,3,6,2,15,13,2,8,7,1,2,3,14,3,14,4,6,2,15,13,11,7,11,2,13,11,2,13,5,6,2,15,14,14,7,1,2,1,2,3,6,7,8,7,8,7,8,7,1,2,1,2,3,6,7,8,7,1,2,3,6,2,15,14,5,6,0,11,2,13,5,6,2,15,5,6,2,15,8,7,8,7,8,7,8,7,1,2,3,6,0,11,2,9,11,2,8,7,8,7,1,2,1,2,3,14,4,9,11,2,9,0,11,7,11,2,8,7,1,2,1,2,3,6,7,1,2,1,2,3,14,12,15,7,6,7,1,2,3,14,2,9,10,14,3,6,2,15,6,2,8,7,8,7,14,11,2,9,14,13,3,6,7,1,2,3,6,2,15,8,7,8,7,8,7,1,2,3,6,2,15,11,2,13,6,2,15,6,2,15,10,9,0,11,7,11,3,6,2,15,2,13,6,7,14,4,7,8,7,1,2,3,14,10,14,3,14,6,7,1,2,1,2,1,2,3,14,0", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"1\", \"2\", \"3\", \"6\", \"0\"], \"clip_start\": 109.0, \"clip_end\": 115.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,2,3,14,0,11,2,13,5,6,2,15,0,11,7,13,1,2,3,6,0,11,7,11,7,11,2,13,6,2,15,6,0,11,7,11,2,9,13,8,7,8,7,8,7,1,2,3,6,0,11,7,11,2,9,5,6,2,15,14,3,14,0,11,7,11,2,13,13,4,6,2,15,3,14,9,8,7,1,2,1,2,3,14,2,9,10,14,3,14,7,1,2,1,2,1,2,3,14,7,8,7,1,2,3,6,2,15,15,1,2,3,6,0,11,7,11,2,13,13,10,7,8,7,1,2,3,6,2,15,6,0,11,7,11,10,14,3,14,10,14,3,14,3,6,0,11,7,11,2,9,2,8,7,1,2,3,14,13,7,1,2,3,14,7,1,2,3,6,7,8,7,8,7,1,2,3,6,7,11,2,13,10,14,8,7,7,1,2,3,6,4,4,14,12,5,6,0,11,2,8,7,4,7,14,5,6,2,15,13,6,7,8,7,6,2,15,5,6,0,11,2,8,7,1,2,3,6,2,15,15,2,13,2,9,4,3,14,6,7,1,2,3,14,5,6,0,11,7,11,2,9,3,14,4,2,9,5,6,2,15,3,6,0,11,7,11,2,8,7,8,7,8,7,1,2,3,14,8,7,1,2,1,2,3,6,2,15,13,2,8,7,1,2,3,14,3,14,4,6,2,15,13,11,7,11,2,13,11,2,13,5,6,2,15,14,14,7,1,2,1,2,3,6,7,8,7,8,7,8,7,1,2,1,2,3,6,7,8,7,1,2,3,6,2,15,14,5,6,0,11,2,13,5,6,2,15,5,6,2,15,8,7,8,7,8,7,8,7,1,2,3,6,0,11,2,9,11,2,8,7,8,7,1,2,1,2,3,14,4,9,11,2,9,0,11,7,11,2,8,7,1,2,1,2,3,6,7,1,2,1,2,3,14,12,15,7,6,7,1,2,3,14,2,9,10,14,3,6,2,15,6,2,8,7,8,7,14,11,2,9,14,13,3,6,7,1,2,3,6,2,15,8,7,8,7,8,7,1,2,3,6,2,15,11,2,13,6,2,15,6,2,15,10,9,0,11,7,11,3,6,2,15,2,13,6,7,14,4,7,8,7,1,2,3,14,10,14,3,14,6,7,1,2,1,2,1,2,3,14,0", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"13\", \"5\"], \"clip_start\": 309.0, \"clip_end\": 313.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,2,3,14,0,11,2,13,5,6,2,15,0,11,7,13,1,2,3,6,0,11,7,11,7,11,2,13,6,2,15,6,0,11,7,11,2,9,13,8,7,8,7,8,7,1,2,3,6,0,11,7,11,2,9,5,6,2,15,14,3,14,0,11,7,11,2,13,13,4,6,2,15,3,14,9,8,7,1,2,1,2,3,14,2,9,10,14,3,14,7,1,2,1,2,1,2,3,14,7,8,7,1,2,3,6,2,15,15,1,2,3,6,0,11,7,11,2,13,13,10,7,8,7,1,2,3,6,2,15,6,0,11,7,11,10,14,3,14,10,14,3,14,3,6,0,11,7,11,2,9,2,8,7,1,2,3,14,13,7,1,2,3,14,7,1,2,3,6,7,8,7,8,7,1,2,3,6,7,11,2,13,10,14,8,7,7,1,2,3,6,4,4,14,12,5,6,0,11,2,8,7,4,7,14,5,6,2,15,13,6,7,8,7,6,2,15,5,6,0,11,2,8,7,1,2,3,6,2,15,15,2,13,2,9,4,3,14,6,7,1,2,3,14,5,6,0,11,7,11,2,9,3,14,4,2,9,5,6,2,15,3,6,0,11,7,11,2,8,7,8,7,8,7,1,2,3,14,8,7,1,2,1,2,3,6,2,15,13,2,8,7,1,2,3,14,3,14,4,6,2,15,13,11,7,11,2,13,11,2,13,5,6,2,15,14,14,7,1,2,1,2,3,6,7,8,7,8,7,8,7,1,2,1,2,3,6,7,8,7,1,2,3,6,2,15,14,5,6,0,11,2,13,5,6,2,15,5,6,2,15,8,7,8,7,8,7,8,7,1,2,3,6,0,11,2,9,11,2,8,7,8,7,1,2,1,2,3,14,4,9,11,2,9,0,11,7,11,2,8,7,1,2,1,2,3,6,7,1,2,1,2,3,14,12,15,7,6,7,1,2,3,14,2,9,10,14,3,6,2,15,6,2,8,7,8,7,14,11,2,9,14,13,3,6,7,1,2,3,6,2,15,8,7,8,7,8,7,1,2,3,6,2,15,11,2,13,6,2,15,6,2,15,10,9,0,11,7,11,3,6,2,15,2,13,6,7,14,4,7,8,7,1,2,3,14,10,14,3,14,6,7,1,2,1,2,1,2,3,14,0", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"3\"], \"clip_start\": 245.0, \"clip_end\": 248.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,2,3,14,0,11,2,13,5,6,2,15,0,11,7,13,1,2,3,6,0,11,7,11,7,11,2,13,6,2,15,6,0,11,7,11,2,9,13,8,7,8,7,8,7,1,2,3,6,0,11,7,11,2,9,5,6,2,15,14,3,14,0,11,7,11,2,13,13,4,6,2,15,3,14,9,8,7,1,2,1,2,3,14,2,9,10,14,3,14,7,1,2,1,2,1,2,3,14,7,8,7,1,2,3,6,2,15,15,1,2,3,6,0,11,7,11,2,13,13,10,7,8,7,1,2,3,6,2,15,6,0,11,7,11,10,14,3,14,10,14,3,14,3,6,0,11,7,11,2,9,2,8,7,1,2,3,14,13,7,1,2,3,14,7,1,2,3,6,7,8,7,8,7,1,2,3,6,7,11,2,13,10,14,8,7,7,1,2,3,6,4,4,14,12,5,6,0,11,2,8,7,4,7,14,5,6,2,15,13,6,7,8,7,6,2,15,5,6,0,11,2,8,7,1,2,3,6,2,15,15,2,13,2,9,4,3,14,6,7,1,2,3,14,5,6,0,11,7,11,2,9,3,14,4,2,9,5,6,2,15,3,6,0,11,7,11,2,8,7,8,7,8,7,1,2,3,14,8,7,1,2,1,2,3,6,2,15,13,2,8,7,1,2,3,14,3,14,4,6,2,15,13,11,7,11,2,13,11,2,13,5,6,2,15,14,14,7,1,2,1,2,3,6,7,8,7,8,7,8,7,1,2,1,2,3,6,7,8,7,1,2,3,6,2,15,14,5,6,0,11,2,13,5,6,2,15,5,6,2,15,8,7,8,7,8,7,8,7,1,2,3,6,0,11,2,9,11,2,8,7,8,7,1,2,1,2,3,14,4,9,11,2,9,0,11,7,11,2,8,7,1,2,1,2,3,6,7,1,2,1,2,3,14,12,15,7,6,7,1,2,3,14,2,9,10,14,3,6,2,15,6,2,8,7,8,7,14,11,2,9,14,13,3,6,7,1,2,3,6,2,15,8,7,8,7,8,7,1,2,3,6,2,15,11,2,13,6,2,15,6,2,15,10,9,0,11,7,11,3,6,2,15,2,13,6,7,14,4,7,8,7,1,2,3,14,10,14,3,14,6,7,1,2,1,2,1,2,3,14,0", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\"], \"clip_start\": 219.0, \"clip_end\": 222.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,2,3,14,0,11,2,13,5,6,2,15,0,11,7,13,1,2,3,6,0,11,7,11,7,11,2,13,6,2,15,6,0,11,7,11,2,9,13,8,7,8,7,8,7,1,2,3,6,0,11,7,11,2,9,5,6,2,15,14,3,14,0,11,7,11,2,13,13,4,6,2,15,3,14,9,8,7,1,2,1,2,3,14,2,9,10,14,3,14,7,1,2,1,2,1,2,3,14,7,8,7,1,2,3,6,2,15,15,1,2,3,6,0,11,7,11,2,13,13,10,7,8,7,1,2,3,6,2,15,6,0,11,7,11,10,14,3,14,10,14,3,14,3,6,0,11,7,11,2,9,2,8,7,1,2,3,14,13,7,1,2,3,14,7,1,2,3,6,7,8,7,8,7,1,2,3,6,7,11,2,13,10,14,8,7,7,1,2,3,6,4,4,14,12,5,6,0,11,2,8,7,4,7,14,5,6,2,15,13,6,7,8,7,6,2,15,5,6,0,11,2,8,7,1,2,3,6,2,15,15,2,13,2,9,4,3,14,6,7,1,2,3,14,5,6,0,11,7,11,2,9,3,14,4,2,9,5,6,2,15,3,6,0,11,7,11,2,8,7,8,7,8,7,1,2,3,14,8,7,1,2,1,2,3,6,2,15,13,2,8,7,1,2,3,14,3,14,4,6,2,15,13,11,7,11,2,13,11,2,13,5,6,2,15,14,14,7,1,2,1,2,3,6,7,8,7,8,7,8,7,1,2,1,2,3,6,7,8,7,1,2,3,6,2,15,14,5,6,0,11,2,13,5,6,2,15,5,6,2,15,8,7,8,7,8,7,8,7,1,2,3,6,0,11,2,9,11,2,8,7,8,7,1,2,1,2,3,14,4,9,11,2,9,0,11,7,11,2,8,7,1,2,1,2,3,6,7,1,2,1,2,3,14,12,15,7,6,7,1,2,3,14,2,9,10,14,3,6,2,15,6,2,8,7,8,7,14,11,2,9,14,13,3,6,7,1,2,3,6,2,15,8,7,8,7,8,7,1,2,3,6,2,15,11,2,13,6,2,15,6,2,15,10,9,0,11,7,11,3,6,2,15,2,13,6,7,14,4,7,8,7,1,2,3,14,10,14,3,14,6,7,1,2,1,2,1,2,3,14,0", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"11\"], \"clip_start\": 508.0, \"clip_end\": 511.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,2,3,14,0,11,2,13,5,6,2,15,0,11,7,13,1,2,3,6,0,11,7,11,7,11,2,13,6,2,15,6,0,11,7,11,2,9,13,8,7,8,7,8,7,1,2,3,6,0,11,7,11,2,9,5,6,2,15,14,3,14,0,11,7,11,2,13,13,4,6,2,15,3,14,9,8,7,1,2,1,2,3,14,2,9,10,14,3,14,7,1,2,1,2,1,2,3,14,7,8,7,1,2,3,6,2,15,15,1,2,3,6,0,11,7,11,2,13,13,10,7,8,7,1,2,3,6,2,15,6,0,11,7,11,10,14,3,14,10,14,3,14,3,6,0,11,7,11,2,9,2,8,7,1,2,3,14,13,7,1,2,3,14,7,1,2,3,6,7,8,7,8,7,1,2,3,6,7,11,2,13,10,14,8,7,7,1,2,3,6,4,4,14,12,5,6,0,11,2,8,7,4,7,14,5,6,2,15,13,6,7,8,7,6,2,15,5,6,0,11,2,8,7,1,2,3,6,2,15,15,2,13,2,9,4,3,14,6,7,1,2,3,14,5,6,0,11,7,11,2,9,3,14,4,2,9,5,6,2,15,3,6,0,11,7,11,2,8,7,8,7,8,7,1,2,3,14,8,7,1,2,1,2,3,6,2,15,13,2,8,7,1,2,3,14,3,14,4,6,2,15,13,11,7,11,2,13,11,2,13,5,6,2,15,14,14,7,1,2,1,2,3,6,7,8,7,8,7,8,7,1,2,1,2,3,6,7,8,7,1,2,3,6,2,15,14,5,6,0,11,2,13,5,6,2,15,5,6,2,15,8,7,8,7,8,7,8,7,1,2,3,6,0,11,2,9,11,2,8,7,8,7,1,2,1,2,3,14,4,9,11,2,9,0,11,7,11,2,8,7,1,2,1,2,3,6,7,1,2,1,2,3,14,12,15,7,6,7,1,2,3,14,2,9,10,14,3,6,2,15,6,2,8,7,8,7,14,11,2,9,14,13,3,6,7,1,2,3,6,2,15,8,7,8,7,8,7,1,2,3,6,2,15,11,2,13,6,2,15,6,2,15,10,9,0,11,7,11,3,6,2,15,2,13,6,7,14,4,7,8,7,1,2,3,14,10,14,3,14,6,7,1,2,1,2,1,2,3,14,0", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"15\", \"6\"], \"clip_start\": 429.0, \"clip_end\": 433.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,2,3,14,0,11,2,13,5,6,2,15,0,11,7,13,1,2,3,6,0,11,7,11,7,11,2,13,6,2,15,6,0,11,7,11,2,9,13,8,7,8,7,8,7,1,2,3,6,0,11,7,11,2,9,5,6,2,15,14,3,14,0,11,7,11,2,13,13,4,6,2,15,3,14,9,8,7,1,2,1,2,3,14,2,9,10,14,3,14,7,1,2,1,2,1,2,3,14,7,8,7,1,2,3,6,2,15,15,1,2,3,6,0,11,7,11,2,13,13,10,7,8,7,1,2,3,6,2,15,6,0,11,7,11,10,14,3,14,10,14,3,14,3,6,0,11,7,11,2,9,2,8,7,1,2,3,14,13,7,1,2,3,14,7,1,2,3,6,7,8,7,8,7,1,2,3,6,7,11,2,13,10,14,8,7,7,1,2,3,6,4,4,14,12,5,6,0,11,2,8,7,4,7,14,5,6,2,15,13,6,7,8,7,6,2,15,5,6,0,11,2,8,7,1,2,3,6,2,15,15,2,13,2,9,4,3,14,6,7,1,2,3,14,5,6,0,11,7,11,2,9,3,14,4,2,9,5,6,2,15,3,6,0,11,7,11,2,8,7,8,7,8,7,1,2,3,14,8,7,1,2,1,2,3,6,2,15,13,2,8,7,1,2,3,14,3,14,4,6,2,15,13,11,7,11,2,13,11,2,13,5,6,2,15,14,14,7,1,2,1,2,3,6,7,8,7,8,7,8,7,1,2,1,2,3,6,7,8,7,1,2,3,6,2,15,14,5,6,0,11,2,13,5,6,2,15,5,6,2,15,8,7,8,7,8,7,8,7,1,2,3,6,0,11,2,9,11,2,8,7,8,7,1,2,1,2,3,14,4,9,11,2,9,0,11,7,11,2,8,7,1,2,1,2,3,6,7,1,2,1,2,3,14,12,15,7,6,7,1,2,3,14,2,9,10,14,3,6,2,15,6,2,8,7,8,7,14,11,2,9,14,13,3,6,7,1,2,3,6,2,15,8,7,8,7,8,7,1,2,3,6,2,15,11,2,13,6,2,15,6,2,15,10,9,0,11,7,11,3,6,2,15,2,13,6,7,14,4,7,8,7,1,2,3,14,10,14,3,14,6,7,1,2,1,2,1,2,3,14,0", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"6\", \"2\", \"15\", \"11\"], \"clip_start\": 460.0, \"clip_end\": 466.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,2,3,14,0,11,2,13,5,6,2,15,0,11,7,13,1,2,3,6,0,11,7,11,7,11,2,13,6,2,15,6,0,11,7,11,2,9,13,8,7,8,7,8,7,1,2,3,6,0,11,7,11,2,9,5,6,2,15,14,3,14,0,11,7,11,2,13,13,4,6,2,15,3,14,9,8,7,1,2,1,2,3,14,2,9,10,14,3,14,7,1,2,1,2,1,2,3,14,7,8,7,1,2,3,6,2,15,15,1,2,3,6,0,11,7,11,2,13,13,10,7,8,7,1,2,3,6,2,15,6,0,11,7,11,10,14,3,14,10,14,3,14,3,6,0,11,7,11,2,9,2,8,7,1,2,3,14,13,7,1,2,3,14,7,1,2,3,6,7,8,7,8,7,1,2,3,6,7,11,2,13,10,14,8,7,7,1,2,3,6,4,4,14,12,5,6,0,11,2,8,7,4,7,14,5,6,2,15,13,6,7,8,7,6,2,15,5,6,0,11,2,8,7,1,2,3,6,2,15,15,2,13,2,9,4,3,14,6,7,1,2,3,14,5,6,0,11,7,11,2,9,3,14,4,2,9,5,6,2,15,3,6,0,11,7,11,2,8,7,8,7,8,7,1,2,3,14,8,7,1,2,1,2,3,6,2,15,13,2,8,7,1,2,3,14,3,14,4,6,2,15,13,11,7,11,2,13,11,2,13,5,6,2,15,14,14,7,1,2,1,2,3,6,7,8,7,8,7,8,7,1,2,1,2,3,6,7,8,7,1,2,3,6,2,15,14,5,6,0,11,2,13,5,6,2,15,5,6,2,15,8,7,8,7,8,7,8,7,1,2,3,6,0,11,2,9,11,2,8,7,8,7,1,2,1,2,3,14,4,9,11,2,9,0,11,7,11,2,8,7,1,2,1,2,3,6,7,1,2,1,2,3,14,12,15,7,6,7,1,2,3,14,2,9,10,14,3,6,2,15,6,2,8,7,8,7,14,11,2,9,14,13,3,6,7,1,2,3,6,2,15,8,7,8,7,8,7,1,2,3,6,2,15,11,2,13,6,2,15,6,2,15,10,9,0,11,7,11,3,6,2,15,2,13,6,7,14,4,7,8,7,1,2,3,14,10,14,3,14,6,7,1,2,1,2,1,2,3,14,0", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"6\", \"2\"], \"clip_start\": 479.0, \"clip_end\": 483.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q14_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,2,3,14,0,11,2,13,5,6,2,15,0,11,7,13,1,2,3,6,0,11,7,11,7,11,2,13,6,2,15,6,0,11,7,11,2,9,13,8,7,8,7,8,7,1,2,3,6,0,11,7,11,2,9,5,6,2,15,14,3,14,0,11,7,11,2,13,13,4,6,2,15,3,14,9,8,7,1,2,1,2,3,14,2,9,10,14,3,14,7,1,2,1,2,1,2,3,14,7,8,7,1,2,3,6,2,15,15,1,2,3,6,0,11,7,11,2,13,13,10,7,8,7,1,2,3,6,2,15,6,0,11,7,11,10,14,3,14,10,14,3,14,3,6,0,11,7,11,2,9,2,8,7,1,2,3,14,13,7,1,2,3,14,7,1,2,3,6,7,8,7,8,7,1,2,3,6,7,11,2,13,10,14,8,7,7,1,2,3,6,4,4,14,12,5,6,0,11,2,8,7,4,7,14,5,6,2,15,13,6,7,8,7,6,2,15,5,6,0,11,2,8,7,1,2,3,6,2,15,15,2,13,2,9,4,3,14,6,7,1,2,3,14,5,6,0,11,7,11,2,9,3,14,4,2,9,5,6,2,15,3,6,0,11,7,11,2,8,7,8,7,8,7,1,2,3,14,8,7,1,2,1,2,3,6,2,15,13,2,8,7,1,2,3,14,3,14,4,6,2,15,13,11,7,11,2,13,11,2,13,5,6,2,15,14,14,7,1,2,1,2,3,6,7,8,7,8,7,8,7,1,2,1,2,3,6,7,8,7,1,2,3,6,2,15,14,5,6,0,11,2,13,5,6,2,15,5,6,2,15,8,7,8,7,8,7,8,7,1,2,3,6,0,11,2,9,11,2,8,7,8,7,1,2,1,2,3,14,4,9,11,2,9,0,11,7,11,2,8,7,1,2,1,2,3,6,7,1,2,1,2,3,14,12,15,7,6,7,1,2,3,14,2,9,10,14,3,6,2,15,6,2,8,7,8,7,14,11,2,9,14,13,3,6,7,1,2,3,6,2,15,8,7,8,7,8,7,1,2,3,6,2,15,11,2,13,6,2,15,6,2,15,10,9,0,11,7,11,3,6,2,15,2,13,6,7,14,4,7,8,7,1,2,3,14,10,14,3,14,6,7,1,2,1,2,1,2,3,14,0", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"0\", \"11\", \"2\", \"9\"], \"clip_start\": 373.0, \"clip_end\": 378.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q15_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,1,2,3,14,0,11,2,13,5,6,2,15,0,11,7,13,1,2,3,6,0,11,7,11,7,11,2,13,6,2,15,6,0,11,7,11,2,9,13,8,7,8,7,8,7,1,2,3,6,0,11,7,11,2,9,5,6,2,15,14,3,14,0,11,7,11,2,13,13,4,6,2,15,3,14,9,8,7,1,2,1,2,3,14,2,9,10,14,3,14,7,1,2,1,2,1,2,3,14,7,8,7,1,2,3,6,2,15,15,1,2,3,6,0,11,7,11,2,13,13,10,7,8,7,1,2,3,6,2,15,6,0,11,7,11,10,14,3,14,10,14,3,14,3,6,0,11,7,11,2,9,2,8,7,1,2,3,14,13,7,1,2,3,14,7,1,2,3,6,7,8,7,8,7,1,2,3,6,7,11,2,13,10,14,8,7,7,1,2,3,6,4,4,14,12,5,6,0,11,2,8,7,4,7,14,5,6,2,15,13,6,7,8,7,6,2,15,5,6,0,11,2,8,7,1,2,3,6,2,15,15,2,13,2,9,4,3,14,6,7,1,2,3,14,5,6,0,11,7,11,2,9,3,14,4,2,9,5,6,2,15,3,6,0,11,7,11,2,8,7,8,7,8,7,1,2,3,14,8,7,1,2,1,2,3,6,2,15,13,2,8,7,1,2,3,14,3,14,4,6,2,15,13,11,7,11,2,13,11,2,13,5,6,2,15,14,14,7,1,2,1,2,3,6,7,8,7,8,7,8,7,1,2,1,2,3,6,7,8,7,1,2,3,6,2,15,14,5,6,0,11,2,13,5,6,2,15,5,6,2,15,8,7,8,7,8,7,8,7,1,2,3,6,0,11,2,9,11,2,8,7,8,7,1,2,1,2,3,14,4,9,11,2,9,0,11,7,11,2,8,7,1,2,1,2,3,6,7,1,2,1,2,3,14,12,15,7,6,7,1,2,3,14,2,9,10,14,3,6,2,15,6,2,8,7,8,7,14,11,2,9,14,13,3,6,7,1,2,3,6,2,15,8,7,8,7,8,7,1,2,3,6,2,15,11,2,13,6,2,15,6,2,15,10,9,0,11,7,11,3,6,2,15,2,13,6,7,14,4,7,8,7,1,2,3,14,10,14,3,14,6,7,1,2,1,2,1,2,3,14,0", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"12\", \"7\", \"10\", \"15\", \"12\"], \"clip_start\": 223.0, \"clip_end\": 229.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,5,8,10,2,3,12,7,10,2,6,7,5,7,5,15,7,5,12,7,10,6,0,0,0,7,5,2,5,2,15,12,11,9,14,11,15,12,11,3,5,9,7,5,8,0,9,14,15,12,11,9,4,8,1,0,8,6,3,5,8,6,15,12,11,9,12,7,5,13,1,4,8,9,7,5,14,0,1,11,9,7,5,12,7,5,4,3,5,13,8,11,9,6,13,10,15,12,11,9,6,8,3,5,12,7,10,2,3,12,7,6,14,11,14,6,13,5,15,12,11,10,2,6,10,5,15,12,11,10,15,12,11,15,7,6,0,0,9,5,12,7,10,2,3,12,7,5,15,12,11,15,12,11,9,13,7,10,15,12,11,9,12,13,4,3,12,7,10,5,6,9,4,8,15,12,11,7,10,15,12,11,10,15,12,11,9,9,12,7,5,7,10,15,12,11,9,11,9,7,5,11,9,2,5,3,12,2,6,0,10,2,5,14,3,5,10,2,3,5,3,5,12,7,10,15,12,11,9,8,1,7,10,15,12,11,10,15,12,11,15,7,10,2,5,1,1,13,15,12,11,5,0,10,2,3,12,7,10,15,12,11,15,12,11,15,12,11,9,1,5,5,11,9,3,12,7,10,15,12,11,10,2,3,12,7,10,10,15,12,11,1,6,15,12,11,15,12,11,9,10,15,12,11,15,12,11,9,6,5,15,12,11,10,2,3,5,15,12,11,10,15,12,11,9,7,5,0,1,6,4,3,5,1,3,5,6,6,10,15,12,11,5,7,5,8,11,10,2,5,13,7,5,13,15,12,11,9,14,6,13,5,11,15,12,11,15,12,11,9,0,1,3,12,7,5,14,10,2,5,9,6,9,10,15,12,11,15,12,11,15,12,11,15,7,5,0,6,14,1,5,15,12,11,10,5,9,10,15,12,11,9,15,12,11,15,12,11,10,2,5,8,14,4,2,5,3,5,1,10,15,8,11,9,15,12,11,9,2,6,0,6,1,8,1,11,15,12,11,13,5,12,7,10,2,3,5,15,12,11,15,12,11,15,12,11,15,12,11,10,15,12,11,15,12,11,9,6,9,4,8,14,3,5,6,6,3,12,7,10,15,12,11,9,12,7,1,10,15,12,11,9,15,12,11,9,0,11,10,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"15\", \"12\", \"11\", \"9\", \"8\"], \"clip_start\": 226.0, \"clip_end\": 232.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,5,8,10,2,3,12,7,10,2,6,7,5,7,5,15,7,5,12,7,10,6,0,0,0,7,5,2,5,2,15,12,11,9,14,11,15,12,11,3,5,9,7,5,8,0,9,14,15,12,11,9,4,8,1,0,8,6,3,5,8,6,15,12,11,9,12,7,5,13,1,4,8,9,7,5,14,0,1,11,9,7,5,12,7,5,4,3,5,13,8,11,9,6,13,10,15,12,11,9,6,8,3,5,12,7,10,2,3,12,7,6,14,11,14,6,13,5,15,12,11,10,2,6,10,5,15,12,11,10,15,12,11,15,7,6,0,0,9,5,12,7,10,2,3,12,7,5,15,12,11,15,12,11,9,13,7,10,15,12,11,9,12,13,4,3,12,7,10,5,6,9,4,8,15,12,11,7,10,15,12,11,10,15,12,11,9,9,12,7,5,7,10,15,12,11,9,11,9,7,5,11,9,2,5,3,12,2,6,0,10,2,5,14,3,5,10,2,3,5,3,5,12,7,10,15,12,11,9,8,1,7,10,15,12,11,10,15,12,11,15,7,10,2,5,1,1,13,15,12,11,5,0,10,2,3,12,7,10,15,12,11,15,12,11,15,12,11,9,1,5,5,11,9,3,12,7,10,15,12,11,10,2,3,12,7,10,10,15,12,11,1,6,15,12,11,15,12,11,9,10,15,12,11,15,12,11,9,6,5,15,12,11,10,2,3,5,15,12,11,10,15,12,11,9,7,5,0,1,6,4,3,5,1,3,5,6,6,10,15,12,11,5,7,5,8,11,10,2,5,13,7,5,13,15,12,11,9,14,6,13,5,11,15,12,11,15,12,11,9,0,1,3,12,7,5,14,10,2,5,9,6,9,10,15,12,11,15,12,11,15,12,11,15,7,5,0,6,14,1,5,15,12,11,10,5,9,10,15,12,11,9,15,12,11,15,12,11,10,2,5,8,14,4,2,5,3,5,1,10,15,8,11,9,15,12,11,9,2,6,0,6,1,8,1,11,15,12,11,13,5,12,7,10,2,3,5,15,12,11,15,12,11,15,12,11,15,12,11,10,15,12,11,15,12,11,9,6,9,4,8,14,3,5,6,6,3,12,7,10,15,12,11,9,12,7,1,10,15,12,11,9,15,12,11,9,0,11,10,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"10\", \"15\", \"12\", \"11\"], \"clip_start\": 321.0, \"clip_end\": 326.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,5,8,10,2,3,12,7,10,2,6,7,5,7,5,15,7,5,12,7,10,6,0,0,0,7,5,2,5,2,15,12,11,9,14,11,15,12,11,3,5,9,7,5,8,0,9,14,15,12,11,9,4,8,1,0,8,6,3,5,8,6,15,12,11,9,12,7,5,13,1,4,8,9,7,5,14,0,1,11,9,7,5,12,7,5,4,3,5,13,8,11,9,6,13,10,15,12,11,9,6,8,3,5,12,7,10,2,3,12,7,6,14,11,14,6,13,5,15,12,11,10,2,6,10,5,15,12,11,10,15,12,11,15,7,6,0,0,9,5,12,7,10,2,3,12,7,5,15,12,11,15,12,11,9,13,7,10,15,12,11,9,12,13,4,3,12,7,10,5,6,9,4,8,15,12,11,7,10,15,12,11,10,15,12,11,9,9,12,7,5,7,10,15,12,11,9,11,9,7,5,11,9,2,5,3,12,2,6,0,10,2,5,14,3,5,10,2,3,5,3,5,12,7,10,15,12,11,9,8,1,7,10,15,12,11,10,15,12,11,15,7,10,2,5,1,1,13,15,12,11,5,0,10,2,3,12,7,10,15,12,11,15,12,11,15,12,11,9,1,5,5,11,9,3,12,7,10,15,12,11,10,2,3,12,7,10,10,15,12,11,1,6,15,12,11,15,12,11,9,10,15,12,11,15,12,11,9,6,5,15,12,11,10,2,3,5,15,12,11,10,15,12,11,9,7,5,0,1,6,4,3,5,1,3,5,6,6,10,15,12,11,5,7,5,8,11,10,2,5,13,7,5,13,15,12,11,9,14,6,13,5,11,15,12,11,15,12,11,9,0,1,3,12,7,5,14,10,2,5,9,6,9,10,15,12,11,15,12,11,15,12,11,15,7,5,0,6,14,1,5,15,12,11,10,5,9,10,15,12,11,9,15,12,11,15,12,11,10,2,5,8,14,4,2,5,3,5,1,10,15,8,11,9,15,12,11,9,2,6,0,6,1,8,1,11,15,12,11,13,5,12,7,10,2,3,5,15,12,11,15,12,11,15,12,11,15,12,11,10,15,12,11,15,12,11,9,6,9,4,8,14,3,5,6,6,3,12,7,10,15,12,11,9,12,7,1,10,15,12,11,9,15,12,11,9,0,11,10,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"3\", \"12\", \"2\", \"6\"], \"clip_start\": 206.0, \"clip_end\": 211.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,5,8,10,2,3,12,7,10,2,6,7,5,7,5,15,7,5,12,7,10,6,0,0,0,7,5,2,5,2,15,12,11,9,14,11,15,12,11,3,5,9,7,5,8,0,9,14,15,12,11,9,4,8,1,0,8,6,3,5,8,6,15,12,11,9,12,7,5,13,1,4,8,9,7,5,14,0,1,11,9,7,5,12,7,5,4,3,5,13,8,11,9,6,13,10,15,12,11,9,6,8,3,5,12,7,10,2,3,12,7,6,14,11,14,6,13,5,15,12,11,10,2,6,10,5,15,12,11,10,15,12,11,15,7,6,0,0,9,5,12,7,10,2,3,12,7,5,15,12,11,15,12,11,9,13,7,10,15,12,11,9,12,13,4,3,12,7,10,5,6,9,4,8,15,12,11,7,10,15,12,11,10,15,12,11,9,9,12,7,5,7,10,15,12,11,9,11,9,7,5,11,9,2,5,3,12,2,6,0,10,2,5,14,3,5,10,2,3,5,3,5,12,7,10,15,12,11,9,8,1,7,10,15,12,11,10,15,12,11,15,7,10,2,5,1,1,13,15,12,11,5,0,10,2,3,12,7,10,15,12,11,15,12,11,15,12,11,9,1,5,5,11,9,3,12,7,10,15,12,11,10,2,3,12,7,10,10,15,12,11,1,6,15,12,11,15,12,11,9,10,15,12,11,15,12,11,9,6,5,15,12,11,10,2,3,5,15,12,11,10,15,12,11,9,7,5,0,1,6,4,3,5,1,3,5,6,6,10,15,12,11,5,7,5,8,11,10,2,5,13,7,5,13,15,12,11,9,14,6,13,5,11,15,12,11,15,12,11,9,0,1,3,12,7,5,14,10,2,5,9,6,9,10,15,12,11,15,12,11,15,12,11,15,7,5,0,6,14,1,5,15,12,11,10,5,9,10,15,12,11,9,15,12,11,15,12,11,10,2,5,8,14,4,2,5,3,5,1,10,15,8,11,9,15,12,11,9,2,6,0,6,1,8,1,11,15,12,11,13,5,12,7,10,2,3,5,15,12,11,15,12,11,15,12,11,15,12,11,10,15,12,11,15,12,11,9,6,9,4,8,14,3,5,6,6,3,12,7,10,15,12,11,9,12,7,1,10,15,12,11,9,15,12,11,9,0,11,10,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"15\", \"12\", \"11\", \"9\", \"15\"], \"clip_start\": 409.0, \"clip_end\": 415.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,5,8,10,2,3,12,7,10,2,6,7,5,7,5,15,7,5,12,7,10,6,0,0,0,7,5,2,5,2,15,12,11,9,14,11,15,12,11,3,5,9,7,5,8,0,9,14,15,12,11,9,4,8,1,0,8,6,3,5,8,6,15,12,11,9,12,7,5,13,1,4,8,9,7,5,14,0,1,11,9,7,5,12,7,5,4,3,5,13,8,11,9,6,13,10,15,12,11,9,6,8,3,5,12,7,10,2,3,12,7,6,14,11,14,6,13,5,15,12,11,10,2,6,10,5,15,12,11,10,15,12,11,15,7,6,0,0,9,5,12,7,10,2,3,12,7,5,15,12,11,15,12,11,9,13,7,10,15,12,11,9,12,13,4,3,12,7,10,5,6,9,4,8,15,12,11,7,10,15,12,11,10,15,12,11,9,9,12,7,5,7,10,15,12,11,9,11,9,7,5,11,9,2,5,3,12,2,6,0,10,2,5,14,3,5,10,2,3,5,3,5,12,7,10,15,12,11,9,8,1,7,10,15,12,11,10,15,12,11,15,7,10,2,5,1,1,13,15,12,11,5,0,10,2,3,12,7,10,15,12,11,15,12,11,15,12,11,9,1,5,5,11,9,3,12,7,10,15,12,11,10,2,3,12,7,10,10,15,12,11,1,6,15,12,11,15,12,11,9,10,15,12,11,15,12,11,9,6,5,15,12,11,10,2,3,5,15,12,11,10,15,12,11,9,7,5,0,1,6,4,3,5,1,3,5,6,6,10,15,12,11,5,7,5,8,11,10,2,5,13,7,5,13,15,12,11,9,14,6,13,5,11,15,12,11,15,12,11,9,0,1,3,12,7,5,14,10,2,5,9,6,9,10,15,12,11,15,12,11,15,12,11,15,7,5,0,6,14,1,5,15,12,11,10,5,9,10,15,12,11,9,15,12,11,15,12,11,10,2,5,8,14,4,2,5,3,5,1,10,15,8,11,9,15,12,11,9,2,6,0,6,1,8,1,11,15,12,11,13,5,12,7,10,2,3,5,15,12,11,15,12,11,15,12,11,15,12,11,10,15,12,11,15,12,11,9,6,9,4,8,14,3,5,6,6,3,12,7,10,15,12,11,9,12,7,1,10,15,12,11,9,15,12,11,9,0,11,10,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 418.0, \"clip_end\": 424.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,5,8,10,2,3,12,7,10,2,6,7,5,7,5,15,7,5,12,7,10,6,0,0,0,7,5,2,5,2,15,12,11,9,14,11,15,12,11,3,5,9,7,5,8,0,9,14,15,12,11,9,4,8,1,0,8,6,3,5,8,6,15,12,11,9,12,7,5,13,1,4,8,9,7,5,14,0,1,11,9,7,5,12,7,5,4,3,5,13,8,11,9,6,13,10,15,12,11,9,6,8,3,5,12,7,10,2,3,12,7,6,14,11,14,6,13,5,15,12,11,10,2,6,10,5,15,12,11,10,15,12,11,15,7,6,0,0,9,5,12,7,10,2,3,12,7,5,15,12,11,15,12,11,9,13,7,10,15,12,11,9,12,13,4,3,12,7,10,5,6,9,4,8,15,12,11,7,10,15,12,11,10,15,12,11,9,9,12,7,5,7,10,15,12,11,9,11,9,7,5,11,9,2,5,3,12,2,6,0,10,2,5,14,3,5,10,2,3,5,3,5,12,7,10,15,12,11,9,8,1,7,10,15,12,11,10,15,12,11,15,7,10,2,5,1,1,13,15,12,11,5,0,10,2,3,12,7,10,15,12,11,15,12,11,15,12,11,9,1,5,5,11,9,3,12,7,10,15,12,11,10,2,3,12,7,10,10,15,12,11,1,6,15,12,11,15,12,11,9,10,15,12,11,15,12,11,9,6,5,15,12,11,10,2,3,5,15,12,11,10,15,12,11,9,7,5,0,1,6,4,3,5,1,3,5,6,6,10,15,12,11,5,7,5,8,11,10,2,5,13,7,5,13,15,12,11,9,14,6,13,5,11,15,12,11,15,12,11,9,0,1,3,12,7,5,14,10,2,5,9,6,9,10,15,12,11,15,12,11,15,12,11,15,7,5,0,6,14,1,5,15,12,11,10,5,9,10,15,12,11,9,15,12,11,15,12,11,10,2,5,8,14,4,2,5,3,5,1,10,15,8,11,9,15,12,11,9,2,6,0,6,1,8,1,11,15,12,11,13,5,12,7,10,2,3,5,15,12,11,15,12,11,15,12,11,15,12,11,10,15,12,11,15,12,11,9,6,9,4,8,14,3,5,6,6,3,12,7,10,15,12,11,9,12,7,1,10,15,12,11,9,15,12,11,9,0,11,10,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"5\", \"8\", \"14\", \"4\", \"2\"], \"clip_start\": 421.0, \"clip_end\": 427.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,5,8,10,2,3,12,7,10,2,6,7,5,7,5,15,7,5,12,7,10,6,0,0,0,7,5,2,5,2,15,12,11,9,14,11,15,12,11,3,5,9,7,5,8,0,9,14,15,12,11,9,4,8,1,0,8,6,3,5,8,6,15,12,11,9,12,7,5,13,1,4,8,9,7,5,14,0,1,11,9,7,5,12,7,5,4,3,5,13,8,11,9,6,13,10,15,12,11,9,6,8,3,5,12,7,10,2,3,12,7,6,14,11,14,6,13,5,15,12,11,10,2,6,10,5,15,12,11,10,15,12,11,15,7,6,0,0,9,5,12,7,10,2,3,12,7,5,15,12,11,15,12,11,9,13,7,10,15,12,11,9,12,13,4,3,12,7,10,5,6,9,4,8,15,12,11,7,10,15,12,11,10,15,12,11,9,9,12,7,5,7,10,15,12,11,9,11,9,7,5,11,9,2,5,3,12,2,6,0,10,2,5,14,3,5,10,2,3,5,3,5,12,7,10,15,12,11,9,8,1,7,10,15,12,11,10,15,12,11,15,7,10,2,5,1,1,13,15,12,11,5,0,10,2,3,12,7,10,15,12,11,15,12,11,15,12,11,9,1,5,5,11,9,3,12,7,10,15,12,11,10,2,3,12,7,10,10,15,12,11,1,6,15,12,11,15,12,11,9,10,15,12,11,15,12,11,9,6,5,15,12,11,10,2,3,5,15,12,11,10,15,12,11,9,7,5,0,1,6,4,3,5,1,3,5,6,6,10,15,12,11,5,7,5,8,11,10,2,5,13,7,5,13,15,12,11,9,14,6,13,5,11,15,12,11,15,12,11,9,0,1,3,12,7,5,14,10,2,5,9,6,9,10,15,12,11,15,12,11,15,12,11,15,7,5,0,6,14,1,5,15,12,11,10,5,9,10,15,12,11,9,15,12,11,15,12,11,10,2,5,8,14,4,2,5,3,5,1,10,15,8,11,9,15,12,11,9,2,6,0,6,1,8,1,11,15,12,11,13,5,12,7,10,2,3,5,15,12,11,15,12,11,15,12,11,15,12,11,10,15,12,11,15,12,11,9,6,9,4,8,14,3,5,6,6,3,12,7,10,15,12,11,9,12,7,1,10,15,12,11,9,15,12,11,9,0,11,10,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 158.0, \"clip_end\": 162.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,5,8,10,2,3,12,7,10,2,6,7,5,7,5,15,7,5,12,7,10,6,0,0,0,7,5,2,5,2,15,12,11,9,14,11,15,12,11,3,5,9,7,5,8,0,9,14,15,12,11,9,4,8,1,0,8,6,3,5,8,6,15,12,11,9,12,7,5,13,1,4,8,9,7,5,14,0,1,11,9,7,5,12,7,5,4,3,5,13,8,11,9,6,13,10,15,12,11,9,6,8,3,5,12,7,10,2,3,12,7,6,14,11,14,6,13,5,15,12,11,10,2,6,10,5,15,12,11,10,15,12,11,15,7,6,0,0,9,5,12,7,10,2,3,12,7,5,15,12,11,15,12,11,9,13,7,10,15,12,11,9,12,13,4,3,12,7,10,5,6,9,4,8,15,12,11,7,10,15,12,11,10,15,12,11,9,9,12,7,5,7,10,15,12,11,9,11,9,7,5,11,9,2,5,3,12,2,6,0,10,2,5,14,3,5,10,2,3,5,3,5,12,7,10,15,12,11,9,8,1,7,10,15,12,11,10,15,12,11,15,7,10,2,5,1,1,13,15,12,11,5,0,10,2,3,12,7,10,15,12,11,15,12,11,15,12,11,9,1,5,5,11,9,3,12,7,10,15,12,11,10,2,3,12,7,10,10,15,12,11,1,6,15,12,11,15,12,11,9,10,15,12,11,15,12,11,9,6,5,15,12,11,10,2,3,5,15,12,11,10,15,12,11,9,7,5,0,1,6,4,3,5,1,3,5,6,6,10,15,12,11,5,7,5,8,11,10,2,5,13,7,5,13,15,12,11,9,14,6,13,5,11,15,12,11,15,12,11,9,0,1,3,12,7,5,14,10,2,5,9,6,9,10,15,12,11,15,12,11,15,12,11,15,7,5,0,6,14,1,5,15,12,11,10,5,9,10,15,12,11,9,15,12,11,15,12,11,10,2,5,8,14,4,2,5,3,5,1,10,15,8,11,9,15,12,11,9,2,6,0,6,1,8,1,11,15,12,11,13,5,12,7,10,2,3,5,15,12,11,15,12,11,15,12,11,15,12,11,10,15,12,11,15,12,11,9,6,9,4,8,14,3,5,6,6,3,12,7,10,15,12,11,9,12,7,1,10,15,12,11,9,15,12,11,9,0,11,10,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"1\", \"0\", \"8\", \"6\"], \"clip_start\": 55.0, \"clip_end\": 60.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,5,8,10,2,3,12,7,10,2,6,7,5,7,5,15,7,5,12,7,10,6,0,0,0,7,5,2,5,2,15,12,11,9,14,11,15,12,11,3,5,9,7,5,8,0,9,14,15,12,11,9,4,8,1,0,8,6,3,5,8,6,15,12,11,9,12,7,5,13,1,4,8,9,7,5,14,0,1,11,9,7,5,12,7,5,4,3,5,13,8,11,9,6,13,10,15,12,11,9,6,8,3,5,12,7,10,2,3,12,7,6,14,11,14,6,13,5,15,12,11,10,2,6,10,5,15,12,11,10,15,12,11,15,7,6,0,0,9,5,12,7,10,2,3,12,7,5,15,12,11,15,12,11,9,13,7,10,15,12,11,9,12,13,4,3,12,7,10,5,6,9,4,8,15,12,11,7,10,15,12,11,10,15,12,11,9,9,12,7,5,7,10,15,12,11,9,11,9,7,5,11,9,2,5,3,12,2,6,0,10,2,5,14,3,5,10,2,3,5,3,5,12,7,10,15,12,11,9,8,1,7,10,15,12,11,10,15,12,11,15,7,10,2,5,1,1,13,15,12,11,5,0,10,2,3,12,7,10,15,12,11,15,12,11,15,12,11,9,1,5,5,11,9,3,12,7,10,15,12,11,10,2,3,12,7,10,10,15,12,11,1,6,15,12,11,15,12,11,9,10,15,12,11,15,12,11,9,6,5,15,12,11,10,2,3,5,15,12,11,10,15,12,11,9,7,5,0,1,6,4,3,5,1,3,5,6,6,10,15,12,11,5,7,5,8,11,10,2,5,13,7,5,13,15,12,11,9,14,6,13,5,11,15,12,11,15,12,11,9,0,1,3,12,7,5,14,10,2,5,9,6,9,10,15,12,11,15,12,11,15,12,11,15,7,5,0,6,14,1,5,15,12,11,10,5,9,10,15,12,11,9,15,12,11,15,12,11,10,2,5,8,14,4,2,5,3,5,1,10,15,8,11,9,15,12,11,9,2,6,0,6,1,8,1,11,15,12,11,13,5,12,7,10,2,3,5,15,12,11,15,12,11,15,12,11,15,12,11,10,15,12,11,15,12,11,9,6,9,4,8,14,3,5,6,6,3,12,7,10,15,12,11,9,12,7,1,10,15,12,11,9,15,12,11,9,0,11,10,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"12\", \"11\", \"10\"], \"clip_start\": 318.0, \"clip_end\": 323.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,5,8,10,2,3,12,7,10,2,6,7,5,7,5,15,7,5,12,7,10,6,0,0,0,7,5,2,5,2,15,12,11,9,14,11,15,12,11,3,5,9,7,5,8,0,9,14,15,12,11,9,4,8,1,0,8,6,3,5,8,6,15,12,11,9,12,7,5,13,1,4,8,9,7,5,14,0,1,11,9,7,5,12,7,5,4,3,5,13,8,11,9,6,13,10,15,12,11,9,6,8,3,5,12,7,10,2,3,12,7,6,14,11,14,6,13,5,15,12,11,10,2,6,10,5,15,12,11,10,15,12,11,15,7,6,0,0,9,5,12,7,10,2,3,12,7,5,15,12,11,15,12,11,9,13,7,10,15,12,11,9,12,13,4,3,12,7,10,5,6,9,4,8,15,12,11,7,10,15,12,11,10,15,12,11,9,9,12,7,5,7,10,15,12,11,9,11,9,7,5,11,9,2,5,3,12,2,6,0,10,2,5,14,3,5,10,2,3,5,3,5,12,7,10,15,12,11,9,8,1,7,10,15,12,11,10,15,12,11,15,7,10,2,5,1,1,13,15,12,11,5,0,10,2,3,12,7,10,15,12,11,15,12,11,15,12,11,9,1,5,5,11,9,3,12,7,10,15,12,11,10,2,3,12,7,10,10,15,12,11,1,6,15,12,11,15,12,11,9,10,15,12,11,15,12,11,9,6,5,15,12,11,10,2,3,5,15,12,11,10,15,12,11,9,7,5,0,1,6,4,3,5,1,3,5,6,6,10,15,12,11,5,7,5,8,11,10,2,5,13,7,5,13,15,12,11,9,14,6,13,5,11,15,12,11,15,12,11,9,0,1,3,12,7,5,14,10,2,5,9,6,9,10,15,12,11,15,12,11,15,12,11,15,7,5,0,6,14,1,5,15,12,11,10,5,9,10,15,12,11,9,15,12,11,15,12,11,10,2,5,8,14,4,2,5,3,5,1,10,15,8,11,9,15,12,11,9,2,6,0,6,1,8,1,11,15,12,11,13,5,12,7,10,2,3,5,15,12,11,15,12,11,15,12,11,15,12,11,10,15,12,11,15,12,11,9,6,9,4,8,14,3,5,6,6,3,12,7,10,15,12,11,9,12,7,1,10,15,12,11,9,15,12,11,9,0,11,10,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 188.0, \"clip_end\": 193.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,5,8,10,2,3,12,7,10,2,6,7,5,7,5,15,7,5,12,7,10,6,0,0,0,7,5,2,5,2,15,12,11,9,14,11,15,12,11,3,5,9,7,5,8,0,9,14,15,12,11,9,4,8,1,0,8,6,3,5,8,6,15,12,11,9,12,7,5,13,1,4,8,9,7,5,14,0,1,11,9,7,5,12,7,5,4,3,5,13,8,11,9,6,13,10,15,12,11,9,6,8,3,5,12,7,10,2,3,12,7,6,14,11,14,6,13,5,15,12,11,10,2,6,10,5,15,12,11,10,15,12,11,15,7,6,0,0,9,5,12,7,10,2,3,12,7,5,15,12,11,15,12,11,9,13,7,10,15,12,11,9,12,13,4,3,12,7,10,5,6,9,4,8,15,12,11,7,10,15,12,11,10,15,12,11,9,9,12,7,5,7,10,15,12,11,9,11,9,7,5,11,9,2,5,3,12,2,6,0,10,2,5,14,3,5,10,2,3,5,3,5,12,7,10,15,12,11,9,8,1,7,10,15,12,11,10,15,12,11,15,7,10,2,5,1,1,13,15,12,11,5,0,10,2,3,12,7,10,15,12,11,15,12,11,15,12,11,9,1,5,5,11,9,3,12,7,10,15,12,11,10,2,3,12,7,10,10,15,12,11,1,6,15,12,11,15,12,11,9,10,15,12,11,15,12,11,9,6,5,15,12,11,10,2,3,5,15,12,11,10,15,12,11,9,7,5,0,1,6,4,3,5,1,3,5,6,6,10,15,12,11,5,7,5,8,11,10,2,5,13,7,5,13,15,12,11,9,14,6,13,5,11,15,12,11,15,12,11,9,0,1,3,12,7,5,14,10,2,5,9,6,9,10,15,12,11,15,12,11,15,12,11,15,7,5,0,6,14,1,5,15,12,11,10,5,9,10,15,12,11,9,15,12,11,15,12,11,10,2,5,8,14,4,2,5,3,5,1,10,15,8,11,9,15,12,11,9,2,6,0,6,1,8,1,11,15,12,11,13,5,12,7,10,2,3,5,15,12,11,15,12,11,15,12,11,15,12,11,10,15,12,11,15,12,11,9,6,9,4,8,14,3,5,6,6,3,12,7,10,15,12,11,9,12,7,1,10,15,12,11,9,15,12,11,9,0,11,10,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"11\", \"9\", \"6\"], \"clip_start\": 99.0, \"clip_end\": 103.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,5,8,10,2,3,12,7,10,2,6,7,5,7,5,15,7,5,12,7,10,6,0,0,0,7,5,2,5,2,15,12,11,9,14,11,15,12,11,3,5,9,7,5,8,0,9,14,15,12,11,9,4,8,1,0,8,6,3,5,8,6,15,12,11,9,12,7,5,13,1,4,8,9,7,5,14,0,1,11,9,7,5,12,7,5,4,3,5,13,8,11,9,6,13,10,15,12,11,9,6,8,3,5,12,7,10,2,3,12,7,6,14,11,14,6,13,5,15,12,11,10,2,6,10,5,15,12,11,10,15,12,11,15,7,6,0,0,9,5,12,7,10,2,3,12,7,5,15,12,11,15,12,11,9,13,7,10,15,12,11,9,12,13,4,3,12,7,10,5,6,9,4,8,15,12,11,7,10,15,12,11,10,15,12,11,9,9,12,7,5,7,10,15,12,11,9,11,9,7,5,11,9,2,5,3,12,2,6,0,10,2,5,14,3,5,10,2,3,5,3,5,12,7,10,15,12,11,9,8,1,7,10,15,12,11,10,15,12,11,15,7,10,2,5,1,1,13,15,12,11,5,0,10,2,3,12,7,10,15,12,11,15,12,11,15,12,11,9,1,5,5,11,9,3,12,7,10,15,12,11,10,2,3,12,7,10,10,15,12,11,1,6,15,12,11,15,12,11,9,10,15,12,11,15,12,11,9,6,5,15,12,11,10,2,3,5,15,12,11,10,15,12,11,9,7,5,0,1,6,4,3,5,1,3,5,6,6,10,15,12,11,5,7,5,8,11,10,2,5,13,7,5,13,15,12,11,9,14,6,13,5,11,15,12,11,15,12,11,9,0,1,3,12,7,5,14,10,2,5,9,6,9,10,15,12,11,15,12,11,15,12,11,15,7,5,0,6,14,1,5,15,12,11,10,5,9,10,15,12,11,9,15,12,11,15,12,11,10,2,5,8,14,4,2,5,3,5,1,10,15,8,11,9,15,12,11,9,2,6,0,6,1,8,1,11,15,12,11,13,5,12,7,10,2,3,5,15,12,11,15,12,11,15,12,11,15,12,11,10,15,12,11,15,12,11,9,6,9,4,8,14,3,5,6,6,3,12,7,10,15,12,11,9,12,7,1,10,15,12,11,9,15,12,11,9,0,11,10,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"2\", \"3\", \"12\"], \"clip_start\": 143.0, \"clip_end\": 148.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,5,8,10,2,3,12,7,10,2,6,7,5,7,5,15,7,5,12,7,10,6,0,0,0,7,5,2,5,2,15,12,11,9,14,11,15,12,11,3,5,9,7,5,8,0,9,14,15,12,11,9,4,8,1,0,8,6,3,5,8,6,15,12,11,9,12,7,5,13,1,4,8,9,7,5,14,0,1,11,9,7,5,12,7,5,4,3,5,13,8,11,9,6,13,10,15,12,11,9,6,8,3,5,12,7,10,2,3,12,7,6,14,11,14,6,13,5,15,12,11,10,2,6,10,5,15,12,11,10,15,12,11,15,7,6,0,0,9,5,12,7,10,2,3,12,7,5,15,12,11,15,12,11,9,13,7,10,15,12,11,9,12,13,4,3,12,7,10,5,6,9,4,8,15,12,11,7,10,15,12,11,10,15,12,11,9,9,12,7,5,7,10,15,12,11,9,11,9,7,5,11,9,2,5,3,12,2,6,0,10,2,5,14,3,5,10,2,3,5,3,5,12,7,10,15,12,11,9,8,1,7,10,15,12,11,10,15,12,11,15,7,10,2,5,1,1,13,15,12,11,5,0,10,2,3,12,7,10,15,12,11,15,12,11,15,12,11,9,1,5,5,11,9,3,12,7,10,15,12,11,10,2,3,12,7,10,10,15,12,11,1,6,15,12,11,15,12,11,9,10,15,12,11,15,12,11,9,6,5,15,12,11,10,2,3,5,15,12,11,10,15,12,11,9,7,5,0,1,6,4,3,5,1,3,5,6,6,10,15,12,11,5,7,5,8,11,10,2,5,13,7,5,13,15,12,11,9,14,6,13,5,11,15,12,11,15,12,11,9,0,1,3,12,7,5,14,10,2,5,9,6,9,10,15,12,11,15,12,11,15,12,11,15,7,5,0,6,14,1,5,15,12,11,10,5,9,10,15,12,11,9,15,12,11,15,12,11,10,2,5,8,14,4,2,5,3,5,1,10,15,8,11,9,15,12,11,9,2,6,0,6,1,8,1,11,15,12,11,13,5,12,7,10,2,3,5,15,12,11,15,12,11,15,12,11,15,12,11,10,15,12,11,15,12,11,9,6,9,4,8,14,3,5,6,6,3,12,7,10,15,12,11,9,12,7,1,10,15,12,11,9,15,12,11,9,0,11,10,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"14\", \"6\", \"13\"], \"clip_start\": 358.0, \"clip_end\": 363.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,5,8,10,2,3,12,7,10,2,6,7,5,7,5,15,7,5,12,7,10,6,0,0,0,7,5,2,5,2,15,12,11,9,14,11,15,12,11,3,5,9,7,5,8,0,9,14,15,12,11,9,4,8,1,0,8,6,3,5,8,6,15,12,11,9,12,7,5,13,1,4,8,9,7,5,14,0,1,11,9,7,5,12,7,5,4,3,5,13,8,11,9,6,13,10,15,12,11,9,6,8,3,5,12,7,10,2,3,12,7,6,14,11,14,6,13,5,15,12,11,10,2,6,10,5,15,12,11,10,15,12,11,15,7,6,0,0,9,5,12,7,10,2,3,12,7,5,15,12,11,15,12,11,9,13,7,10,15,12,11,9,12,13,4,3,12,7,10,5,6,9,4,8,15,12,11,7,10,15,12,11,10,15,12,11,9,9,12,7,5,7,10,15,12,11,9,11,9,7,5,11,9,2,5,3,12,2,6,0,10,2,5,14,3,5,10,2,3,5,3,5,12,7,10,15,12,11,9,8,1,7,10,15,12,11,10,15,12,11,15,7,10,2,5,1,1,13,15,12,11,5,0,10,2,3,12,7,10,15,12,11,15,12,11,15,12,11,9,1,5,5,11,9,3,12,7,10,15,12,11,10,2,3,12,7,10,10,15,12,11,1,6,15,12,11,15,12,11,9,10,15,12,11,15,12,11,9,6,5,15,12,11,10,2,3,5,15,12,11,10,15,12,11,9,7,5,0,1,6,4,3,5,1,3,5,6,6,10,15,12,11,5,7,5,8,11,10,2,5,13,7,5,13,15,12,11,9,14,6,13,5,11,15,12,11,15,12,11,9,0,1,3,12,7,5,14,10,2,5,9,6,9,10,15,12,11,15,12,11,15,12,11,15,7,5,0,6,14,1,5,15,12,11,10,5,9,10,15,12,11,9,15,12,11,15,12,11,10,2,5,8,14,4,2,5,3,5,1,10,15,8,11,9,15,12,11,9,2,6,0,6,1,8,1,11,15,12,11,13,5,12,7,10,2,3,5,15,12,11,15,12,11,15,12,11,15,12,11,10,15,12,11,15,12,11,9,6,9,4,8,14,3,5,6,6,3,12,7,10,15,12,11,9,12,7,1,10,15,12,11,9,15,12,11,9,0,11,10,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 279.0, \"clip_end\": 285.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,5,8,10,2,3,12,7,10,2,6,7,5,7,5,15,7,5,12,7,10,6,0,0,0,7,5,2,5,2,15,12,11,9,14,11,15,12,11,3,5,9,7,5,8,0,9,14,15,12,11,9,4,8,1,0,8,6,3,5,8,6,15,12,11,9,12,7,5,13,1,4,8,9,7,5,14,0,1,11,9,7,5,12,7,5,4,3,5,13,8,11,9,6,13,10,15,12,11,9,6,8,3,5,12,7,10,2,3,12,7,6,14,11,14,6,13,5,15,12,11,10,2,6,10,5,15,12,11,10,15,12,11,15,7,6,0,0,9,5,12,7,10,2,3,12,7,5,15,12,11,15,12,11,9,13,7,10,15,12,11,9,12,13,4,3,12,7,10,5,6,9,4,8,15,12,11,7,10,15,12,11,10,15,12,11,9,9,12,7,5,7,10,15,12,11,9,11,9,7,5,11,9,2,5,3,12,2,6,0,10,2,5,14,3,5,10,2,3,5,3,5,12,7,10,15,12,11,9,8,1,7,10,15,12,11,10,15,12,11,15,7,10,2,5,1,1,13,15,12,11,5,0,10,2,3,12,7,10,15,12,11,15,12,11,15,12,11,9,1,5,5,11,9,3,12,7,10,15,12,11,10,2,3,12,7,10,10,15,12,11,1,6,15,12,11,15,12,11,9,10,15,12,11,15,12,11,9,6,5,15,12,11,10,2,3,5,15,12,11,10,15,12,11,9,7,5,0,1,6,4,3,5,1,3,5,6,6,10,15,12,11,5,7,5,8,11,10,2,5,13,7,5,13,15,12,11,9,14,6,13,5,11,15,12,11,15,12,11,9,0,1,3,12,7,5,14,10,2,5,9,6,9,10,15,12,11,15,12,11,15,12,11,15,7,5,0,6,14,1,5,15,12,11,10,5,9,10,15,12,11,9,15,12,11,15,12,11,10,2,5,8,14,4,2,5,3,5,1,10,15,8,11,9,15,12,11,9,2,6,0,6,1,8,1,11,15,12,11,13,5,12,7,10,2,3,5,15,12,11,15,12,11,15,12,11,15,12,11,10,15,12,11,15,12,11,9,6,9,4,8,14,3,5,6,6,3,12,7,10,15,12,11,9,12,7,1,10,15,12,11,9,15,12,11,9,0,11,10,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"7\"], \"clip_start\": 328.0, \"clip_end\": 331.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q15_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "8,2,3,5,8,10,2,3,12,7,10,2,6,7,5,7,5,15,7,5,12,7,10,6,0,0,0,7,5,2,5,2,15,12,11,9,14,11,15,12,11,3,5,9,7,5,8,0,9,14,15,12,11,9,4,8,1,0,8,6,3,5,8,6,15,12,11,9,12,7,5,13,1,4,8,9,7,5,14,0,1,11,9,7,5,12,7,5,4,3,5,13,8,11,9,6,13,10,15,12,11,9,6,8,3,5,12,7,10,2,3,12,7,6,14,11,14,6,13,5,15,12,11,10,2,6,10,5,15,12,11,10,15,12,11,15,7,6,0,0,9,5,12,7,10,2,3,12,7,5,15,12,11,15,12,11,9,13,7,10,15,12,11,9,12,13,4,3,12,7,10,5,6,9,4,8,15,12,11,7,10,15,12,11,10,15,12,11,9,9,12,7,5,7,10,15,12,11,9,11,9,7,5,11,9,2,5,3,12,2,6,0,10,2,5,14,3,5,10,2,3,5,3,5,12,7,10,15,12,11,9,8,1,7,10,15,12,11,10,15,12,11,15,7,10,2,5,1,1,13,15,12,11,5,0,10,2,3,12,7,10,15,12,11,15,12,11,15,12,11,9,1,5,5,11,9,3,12,7,10,15,12,11,10,2,3,12,7,10,10,15,12,11,1,6,15,12,11,15,12,11,9,10,15,12,11,15,12,11,9,6,5,15,12,11,10,2,3,5,15,12,11,10,15,12,11,9,7,5,0,1,6,4,3,5,1,3,5,6,6,10,15,12,11,5,7,5,8,11,10,2,5,13,7,5,13,15,12,11,9,14,6,13,5,11,15,12,11,15,12,11,9,0,1,3,12,7,5,14,10,2,5,9,6,9,10,15,12,11,15,12,11,15,12,11,15,7,5,0,6,14,1,5,15,12,11,10,5,9,10,15,12,11,9,15,12,11,15,12,11,10,2,5,8,14,4,2,5,3,5,1,10,15,8,11,9,15,12,11,9,2,6,0,6,1,8,1,11,15,12,11,13,5,12,7,10,2,3,5,15,12,11,15,12,11,15,12,11,15,12,11,10,15,12,11,15,12,11,9,6,9,4,8,14,3,5,6,6,3,12,7,10,15,12,11,9,12,7,1,10,15,12,11,9,15,12,11,9,0,11,10,2", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"0\", \"7\"], \"clip_start\": 407.0, \"clip_end\": 411.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,0,7,7,4,15,1,15,15,12,3,11,15,7,2,14,0,11,15,3,10,12,13,0,7,11,15,14,0,10,12,2,14,0,10,12,12,11,15,6,13,10,0,7,10,0,7,15,3,10,0,7,0,7,5,15,11,15,4,5,15,9,14,0,11,9,14,0,11,14,0,11,15,15,1,15,3,10,0,7,5,10,0,7,12,3,10,12,1,15,1,15,9,14,0,10,3,11,15,6,2,13,13,1,15,1,15,10,12,1,15,14,0,11,15,3,10,0,7,9,14,0,10,12,14,0,10,12,14,0,10,12,14,0,11,15,1,15,2,13,15,13,4,15,2,14,0,10,6,0,10,0,7,15,2,14,0,11,15,11,15,11,15,6,15,15,0,7,12,8,1,15,3,10,0,7,12,15,3,10,0,7,4,11,15,12,6,10,12,13,9,14,0,10,12,9,14,0,8,1,15,13,10,0,10,12,8,1,15,13,2,0,7,1,15,2,13,10,0,7,12,11,15,12,12,1,15,10,0,10,12,5,4,3,13,9,0,7,15,1,15,1,15,2,14,0,4,12,7,5,0,10,0,7,2,11,15,8,1,15,0,7,3,11,15,3,13,6,7,6,5,11,15,11,15,6,0,10,12,13,0,7,4,13,0,7,4,0,7,1,15,13,3,10,0,7,0,10,0,7,10,0,7,3,13,7,12,7,2,13,0,7,12,10,0,10,12,10,0,7,7,3,13,10,0,7,7,9,14,0,11,9,14,0,11,9,14,0,11,12,13,0,7,11,9,14,0,10,12,4,0,7,1,15,11,15,13,15,2,14,0,11,15,9,14,0,11,14,0,11,15,2,14,0,10,3,11,15,2,11,15,14,0,10,12,11,15,15,3,10,12,8,1,15,3,11,15,12,9,14,0,10,12,1,15,15,9,14,0,7,0,7,7,10,0,6,8,1,15,3,10,12,4,8,1,15,15,4,1,15,11,15,14,0,10,6,5,5,13,8,9,14,0,10,3,13,5,12,6,9,14,0,10,3,10,4,13,5,6,15,11,15,15,3,10,0,1,15,5,13,15,7,1,15,4,7,2,14,0,10,12,11,15,4,9,14,0,11,14,0,11,15,9,14,0,11,12,2,13,14,0,10,6,5,3,10,0,10,12,12,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 490.0, \"clip_end\": 495.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,0,7,7,4,15,1,15,15,12,3,11,15,7,2,14,0,11,15,3,10,12,13,0,7,11,15,14,0,10,12,2,14,0,10,12,12,11,15,6,13,10,0,7,10,0,7,15,3,10,0,7,0,7,5,15,11,15,4,5,15,9,14,0,11,9,14,0,11,14,0,11,15,15,1,15,3,10,0,7,5,10,0,7,12,3,10,12,1,15,1,15,9,14,0,10,3,11,15,6,2,13,13,1,15,1,15,10,12,1,15,14,0,11,15,3,10,0,7,9,14,0,10,12,14,0,10,12,14,0,10,12,14,0,11,15,1,15,2,13,15,13,4,15,2,14,0,10,6,0,10,0,7,15,2,14,0,11,15,11,15,11,15,6,15,15,0,7,12,8,1,15,3,10,0,7,12,15,3,10,0,7,4,11,15,12,6,10,12,13,9,14,0,10,12,9,14,0,8,1,15,13,10,0,10,12,8,1,15,13,2,0,7,1,15,2,13,10,0,7,12,11,15,12,12,1,15,10,0,10,12,5,4,3,13,9,0,7,15,1,15,1,15,2,14,0,4,12,7,5,0,10,0,7,2,11,15,8,1,15,0,7,3,11,15,3,13,6,7,6,5,11,15,11,15,6,0,10,12,13,0,7,4,13,0,7,4,0,7,1,15,13,3,10,0,7,0,10,0,7,10,0,7,3,13,7,12,7,2,13,0,7,12,10,0,10,12,10,0,7,7,3,13,10,0,7,7,9,14,0,11,9,14,0,11,9,14,0,11,12,13,0,7,11,9,14,0,10,12,4,0,7,1,15,11,15,13,15,2,14,0,11,15,9,14,0,11,14,0,11,15,2,14,0,10,3,11,15,2,11,15,14,0,10,12,11,15,15,3,10,12,8,1,15,3,11,15,12,9,14,0,10,12,1,15,15,9,14,0,7,0,7,7,10,0,6,8,1,15,3,10,12,4,8,1,15,15,4,1,15,11,15,14,0,10,6,5,5,13,8,9,14,0,10,3,13,5,12,6,9,14,0,10,3,10,4,13,5,6,15,11,15,15,3,10,0,1,15,5,13,15,7,1,15,4,7,2,14,0,10,12,11,15,4,9,14,0,11,14,0,11,15,9,14,0,11,12,2,13,14,0,10,6,5,3,10,0,10,12,12,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 201.0, \"clip_end\": 206.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,0,7,7,4,15,1,15,15,12,3,11,15,7,2,14,0,11,15,3,10,12,13,0,7,11,15,14,0,10,12,2,14,0,10,12,12,11,15,6,13,10,0,7,10,0,7,15,3,10,0,7,0,7,5,15,11,15,4,5,15,9,14,0,11,9,14,0,11,14,0,11,15,15,1,15,3,10,0,7,5,10,0,7,12,3,10,12,1,15,1,15,9,14,0,10,3,11,15,6,2,13,13,1,15,1,15,10,12,1,15,14,0,11,15,3,10,0,7,9,14,0,10,12,14,0,10,12,14,0,10,12,14,0,11,15,1,15,2,13,15,13,4,15,2,14,0,10,6,0,10,0,7,15,2,14,0,11,15,11,15,11,15,6,15,15,0,7,12,8,1,15,3,10,0,7,12,15,3,10,0,7,4,11,15,12,6,10,12,13,9,14,0,10,12,9,14,0,8,1,15,13,10,0,10,12,8,1,15,13,2,0,7,1,15,2,13,10,0,7,12,11,15,12,12,1,15,10,0,10,12,5,4,3,13,9,0,7,15,1,15,1,15,2,14,0,4,12,7,5,0,10,0,7,2,11,15,8,1,15,0,7,3,11,15,3,13,6,7,6,5,11,15,11,15,6,0,10,12,13,0,7,4,13,0,7,4,0,7,1,15,13,3,10,0,7,0,10,0,7,10,0,7,3,13,7,12,7,2,13,0,7,12,10,0,10,12,10,0,7,7,3,13,10,0,7,7,9,14,0,11,9,14,0,11,9,14,0,11,12,13,0,7,11,9,14,0,10,12,4,0,7,1,15,11,15,13,15,2,14,0,11,15,9,14,0,11,14,0,11,15,2,14,0,10,3,11,15,2,11,15,14,0,10,12,11,15,15,3,10,12,8,1,15,3,11,15,12,9,14,0,10,12,1,15,15,9,14,0,7,0,7,7,10,0,6,8,1,15,3,10,12,4,8,1,15,15,4,1,15,11,15,14,0,10,6,5,5,13,8,9,14,0,10,3,13,5,12,6,9,14,0,10,3,10,4,13,5,6,15,11,15,15,3,10,0,1,15,5,13,15,7,1,15,4,7,2,14,0,10,12,11,15,4,9,14,0,11,14,0,11,15,9,14,0,11,12,2,13,14,0,10,6,5,3,10,0,10,12,12,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"7\", \"12\", \"10\"], \"clip_start\": 310.0, \"clip_end\": 315.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,0,7,7,4,15,1,15,15,12,3,11,15,7,2,14,0,11,15,3,10,12,13,0,7,11,15,14,0,10,12,2,14,0,10,12,12,11,15,6,13,10,0,7,10,0,7,15,3,10,0,7,0,7,5,15,11,15,4,5,15,9,14,0,11,9,14,0,11,14,0,11,15,15,1,15,3,10,0,7,5,10,0,7,12,3,10,12,1,15,1,15,9,14,0,10,3,11,15,6,2,13,13,1,15,1,15,10,12,1,15,14,0,11,15,3,10,0,7,9,14,0,10,12,14,0,10,12,14,0,10,12,14,0,11,15,1,15,2,13,15,13,4,15,2,14,0,10,6,0,10,0,7,15,2,14,0,11,15,11,15,11,15,6,15,15,0,7,12,8,1,15,3,10,0,7,12,15,3,10,0,7,4,11,15,12,6,10,12,13,9,14,0,10,12,9,14,0,8,1,15,13,10,0,10,12,8,1,15,13,2,0,7,1,15,2,13,10,0,7,12,11,15,12,12,1,15,10,0,10,12,5,4,3,13,9,0,7,15,1,15,1,15,2,14,0,4,12,7,5,0,10,0,7,2,11,15,8,1,15,0,7,3,11,15,3,13,6,7,6,5,11,15,11,15,6,0,10,12,13,0,7,4,13,0,7,4,0,7,1,15,13,3,10,0,7,0,10,0,7,10,0,7,3,13,7,12,7,2,13,0,7,12,10,0,10,12,10,0,7,7,3,13,10,0,7,7,9,14,0,11,9,14,0,11,9,14,0,11,12,13,0,7,11,9,14,0,10,12,4,0,7,1,15,11,15,13,15,2,14,0,11,15,9,14,0,11,14,0,11,15,2,14,0,10,3,11,15,2,11,15,14,0,10,12,11,15,15,3,10,12,8,1,15,3,11,15,12,9,14,0,10,12,1,15,15,9,14,0,7,0,7,7,10,0,6,8,1,15,3,10,12,4,8,1,15,15,4,1,15,11,15,14,0,10,6,5,5,13,8,9,14,0,10,3,13,5,12,6,9,14,0,10,3,10,4,13,5,6,15,11,15,15,3,10,0,1,15,5,13,15,7,1,15,4,7,2,14,0,10,12,11,15,4,9,14,0,11,14,0,11,15,9,14,0,11,12,2,13,14,0,10,6,5,3,10,0,10,12,12,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 384.0, \"clip_end\": 388.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,0,7,7,4,15,1,15,15,12,3,11,15,7,2,14,0,11,15,3,10,12,13,0,7,11,15,14,0,10,12,2,14,0,10,12,12,11,15,6,13,10,0,7,10,0,7,15,3,10,0,7,0,7,5,15,11,15,4,5,15,9,14,0,11,9,14,0,11,14,0,11,15,15,1,15,3,10,0,7,5,10,0,7,12,3,10,12,1,15,1,15,9,14,0,10,3,11,15,6,2,13,13,1,15,1,15,10,12,1,15,14,0,11,15,3,10,0,7,9,14,0,10,12,14,0,10,12,14,0,10,12,14,0,11,15,1,15,2,13,15,13,4,15,2,14,0,10,6,0,10,0,7,15,2,14,0,11,15,11,15,11,15,6,15,15,0,7,12,8,1,15,3,10,0,7,12,15,3,10,0,7,4,11,15,12,6,10,12,13,9,14,0,10,12,9,14,0,8,1,15,13,10,0,10,12,8,1,15,13,2,0,7,1,15,2,13,10,0,7,12,11,15,12,12,1,15,10,0,10,12,5,4,3,13,9,0,7,15,1,15,1,15,2,14,0,4,12,7,5,0,10,0,7,2,11,15,8,1,15,0,7,3,11,15,3,13,6,7,6,5,11,15,11,15,6,0,10,12,13,0,7,4,13,0,7,4,0,7,1,15,13,3,10,0,7,0,10,0,7,10,0,7,3,13,7,12,7,2,13,0,7,12,10,0,10,12,10,0,7,7,3,13,10,0,7,7,9,14,0,11,9,14,0,11,9,14,0,11,12,13,0,7,11,9,14,0,10,12,4,0,7,1,15,11,15,13,15,2,14,0,11,15,9,14,0,11,14,0,11,15,2,14,0,10,3,11,15,2,11,15,14,0,10,12,11,15,15,3,10,12,8,1,15,3,11,15,12,9,14,0,10,12,1,15,15,9,14,0,7,0,7,7,10,0,6,8,1,15,3,10,12,4,8,1,15,15,4,1,15,11,15,14,0,10,6,5,5,13,8,9,14,0,10,3,13,5,12,6,9,14,0,10,3,10,4,13,5,6,15,11,15,15,3,10,0,1,15,5,13,15,7,1,15,4,7,2,14,0,10,12,11,15,4,9,14,0,11,14,0,11,15,9,14,0,11,12,2,13,14,0,10,6,5,3,10,0,10,12,12,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 478.0, \"clip_end\": 483.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,0,7,7,4,15,1,15,15,12,3,11,15,7,2,14,0,11,15,3,10,12,13,0,7,11,15,14,0,10,12,2,14,0,10,12,12,11,15,6,13,10,0,7,10,0,7,15,3,10,0,7,0,7,5,15,11,15,4,5,15,9,14,0,11,9,14,0,11,14,0,11,15,15,1,15,3,10,0,7,5,10,0,7,12,3,10,12,1,15,1,15,9,14,0,10,3,11,15,6,2,13,13,1,15,1,15,10,12,1,15,14,0,11,15,3,10,0,7,9,14,0,10,12,14,0,10,12,14,0,10,12,14,0,11,15,1,15,2,13,15,13,4,15,2,14,0,10,6,0,10,0,7,15,2,14,0,11,15,11,15,11,15,6,15,15,0,7,12,8,1,15,3,10,0,7,12,15,3,10,0,7,4,11,15,12,6,10,12,13,9,14,0,10,12,9,14,0,8,1,15,13,10,0,10,12,8,1,15,13,2,0,7,1,15,2,13,10,0,7,12,11,15,12,12,1,15,10,0,10,12,5,4,3,13,9,0,7,15,1,15,1,15,2,14,0,4,12,7,5,0,10,0,7,2,11,15,8,1,15,0,7,3,11,15,3,13,6,7,6,5,11,15,11,15,6,0,10,12,13,0,7,4,13,0,7,4,0,7,1,15,13,3,10,0,7,0,10,0,7,10,0,7,3,13,7,12,7,2,13,0,7,12,10,0,10,12,10,0,7,7,3,13,10,0,7,7,9,14,0,11,9,14,0,11,9,14,0,11,12,13,0,7,11,9,14,0,10,12,4,0,7,1,15,11,15,13,15,2,14,0,11,15,9,14,0,11,14,0,11,15,2,14,0,10,3,11,15,2,11,15,14,0,10,12,11,15,15,3,10,12,8,1,15,3,11,15,12,9,14,0,10,12,1,15,15,9,14,0,7,0,7,7,10,0,6,8,1,15,3,10,12,4,8,1,15,15,4,1,15,11,15,14,0,10,6,5,5,13,8,9,14,0,10,3,13,5,12,6,9,14,0,10,3,10,4,13,5,6,15,11,15,15,3,10,0,1,15,5,13,15,7,1,15,4,7,2,14,0,10,12,11,15,4,9,14,0,11,14,0,11,15,9,14,0,11,12,2,13,14,0,10,6,5,3,10,0,10,12,12,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"7\", \"1\"], \"clip_start\": 351.0, \"clip_end\": 354.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,0,7,7,4,15,1,15,15,12,3,11,15,7,2,14,0,11,15,3,10,12,13,0,7,11,15,14,0,10,12,2,14,0,10,12,12,11,15,6,13,10,0,7,10,0,7,15,3,10,0,7,0,7,5,15,11,15,4,5,15,9,14,0,11,9,14,0,11,14,0,11,15,15,1,15,3,10,0,7,5,10,0,7,12,3,10,12,1,15,1,15,9,14,0,10,3,11,15,6,2,13,13,1,15,1,15,10,12,1,15,14,0,11,15,3,10,0,7,9,14,0,10,12,14,0,10,12,14,0,10,12,14,0,11,15,1,15,2,13,15,13,4,15,2,14,0,10,6,0,10,0,7,15,2,14,0,11,15,11,15,11,15,6,15,15,0,7,12,8,1,15,3,10,0,7,12,15,3,10,0,7,4,11,15,12,6,10,12,13,9,14,0,10,12,9,14,0,8,1,15,13,10,0,10,12,8,1,15,13,2,0,7,1,15,2,13,10,0,7,12,11,15,12,12,1,15,10,0,10,12,5,4,3,13,9,0,7,15,1,15,1,15,2,14,0,4,12,7,5,0,10,0,7,2,11,15,8,1,15,0,7,3,11,15,3,13,6,7,6,5,11,15,11,15,6,0,10,12,13,0,7,4,13,0,7,4,0,7,1,15,13,3,10,0,7,0,10,0,7,10,0,7,3,13,7,12,7,2,13,0,7,12,10,0,10,12,10,0,7,7,3,13,10,0,7,7,9,14,0,11,9,14,0,11,9,14,0,11,12,13,0,7,11,9,14,0,10,12,4,0,7,1,15,11,15,13,15,2,14,0,11,15,9,14,0,11,14,0,11,15,2,14,0,10,3,11,15,2,11,15,14,0,10,12,11,15,15,3,10,12,8,1,15,3,11,15,12,9,14,0,10,12,1,15,15,9,14,0,7,0,7,7,10,0,6,8,1,15,3,10,12,4,8,1,15,15,4,1,15,11,15,14,0,10,6,5,5,13,8,9,14,0,10,3,13,5,12,6,9,14,0,10,3,10,4,13,5,6,15,11,15,15,3,10,0,1,15,5,13,15,7,1,15,4,7,2,14,0,10,12,11,15,4,9,14,0,11,14,0,11,15,9,14,0,11,12,2,13,14,0,10,6,5,3,10,0,10,12,12,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"9\", \"14\", \"0\"], \"clip_start\": 343.0, \"clip_end\": 348.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,0,7,7,4,15,1,15,15,12,3,11,15,7,2,14,0,11,15,3,10,12,13,0,7,11,15,14,0,10,12,2,14,0,10,12,12,11,15,6,13,10,0,7,10,0,7,15,3,10,0,7,0,7,5,15,11,15,4,5,15,9,14,0,11,9,14,0,11,14,0,11,15,15,1,15,3,10,0,7,5,10,0,7,12,3,10,12,1,15,1,15,9,14,0,10,3,11,15,6,2,13,13,1,15,1,15,10,12,1,15,14,0,11,15,3,10,0,7,9,14,0,10,12,14,0,10,12,14,0,10,12,14,0,11,15,1,15,2,13,15,13,4,15,2,14,0,10,6,0,10,0,7,15,2,14,0,11,15,11,15,11,15,6,15,15,0,7,12,8,1,15,3,10,0,7,12,15,3,10,0,7,4,11,15,12,6,10,12,13,9,14,0,10,12,9,14,0,8,1,15,13,10,0,10,12,8,1,15,13,2,0,7,1,15,2,13,10,0,7,12,11,15,12,12,1,15,10,0,10,12,5,4,3,13,9,0,7,15,1,15,1,15,2,14,0,4,12,7,5,0,10,0,7,2,11,15,8,1,15,0,7,3,11,15,3,13,6,7,6,5,11,15,11,15,6,0,10,12,13,0,7,4,13,0,7,4,0,7,1,15,13,3,10,0,7,0,10,0,7,10,0,7,3,13,7,12,7,2,13,0,7,12,10,0,10,12,10,0,7,7,3,13,10,0,7,7,9,14,0,11,9,14,0,11,9,14,0,11,12,13,0,7,11,9,14,0,10,12,4,0,7,1,15,11,15,13,15,2,14,0,11,15,9,14,0,11,14,0,11,15,2,14,0,10,3,11,15,2,11,15,14,0,10,12,11,15,15,3,10,12,8,1,15,3,11,15,12,9,14,0,10,12,1,15,15,9,14,0,7,0,7,7,10,0,6,8,1,15,3,10,12,4,8,1,15,15,4,1,15,11,15,14,0,10,6,5,5,13,8,9,14,0,10,3,13,5,12,6,9,14,0,10,3,10,4,13,5,6,15,11,15,15,3,10,0,1,15,5,13,15,7,1,15,4,7,2,14,0,10,12,11,15,4,9,14,0,11,14,0,11,15,9,14,0,11,12,2,13,14,0,10,6,5,3,10,0,10,12,12,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"13\"], \"clip_start\": 444.0, \"clip_end\": 447.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,0,7,7,4,15,1,15,15,12,3,11,15,7,2,14,0,11,15,3,10,12,13,0,7,11,15,14,0,10,12,2,14,0,10,12,12,11,15,6,13,10,0,7,10,0,7,15,3,10,0,7,0,7,5,15,11,15,4,5,15,9,14,0,11,9,14,0,11,14,0,11,15,15,1,15,3,10,0,7,5,10,0,7,12,3,10,12,1,15,1,15,9,14,0,10,3,11,15,6,2,13,13,1,15,1,15,10,12,1,15,14,0,11,15,3,10,0,7,9,14,0,10,12,14,0,10,12,14,0,10,12,14,0,11,15,1,15,2,13,15,13,4,15,2,14,0,10,6,0,10,0,7,15,2,14,0,11,15,11,15,11,15,6,15,15,0,7,12,8,1,15,3,10,0,7,12,15,3,10,0,7,4,11,15,12,6,10,12,13,9,14,0,10,12,9,14,0,8,1,15,13,10,0,10,12,8,1,15,13,2,0,7,1,15,2,13,10,0,7,12,11,15,12,12,1,15,10,0,10,12,5,4,3,13,9,0,7,15,1,15,1,15,2,14,0,4,12,7,5,0,10,0,7,2,11,15,8,1,15,0,7,3,11,15,3,13,6,7,6,5,11,15,11,15,6,0,10,12,13,0,7,4,13,0,7,4,0,7,1,15,13,3,10,0,7,0,10,0,7,10,0,7,3,13,7,12,7,2,13,0,7,12,10,0,10,12,10,0,7,7,3,13,10,0,7,7,9,14,0,11,9,14,0,11,9,14,0,11,12,13,0,7,11,9,14,0,10,12,4,0,7,1,15,11,15,13,15,2,14,0,11,15,9,14,0,11,14,0,11,15,2,14,0,10,3,11,15,2,11,15,14,0,10,12,11,15,15,3,10,12,8,1,15,3,11,15,12,9,14,0,10,12,1,15,15,9,14,0,7,0,7,7,10,0,6,8,1,15,3,10,12,4,8,1,15,15,4,1,15,11,15,14,0,10,6,5,5,13,8,9,14,0,10,3,13,5,12,6,9,14,0,10,3,10,4,13,5,6,15,11,15,15,3,10,0,1,15,5,13,15,7,1,15,4,7,2,14,0,10,12,11,15,4,9,14,0,11,14,0,11,15,9,14,0,11,12,2,13,14,0,10,6,5,3,10,0,10,12,12,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"0\", \"11\", \"12\"], \"clip_start\": 336.0, \"clip_end\": 341.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,0,7,7,4,15,1,15,15,12,3,11,15,7,2,14,0,11,15,3,10,12,13,0,7,11,15,14,0,10,12,2,14,0,10,12,12,11,15,6,13,10,0,7,10,0,7,15,3,10,0,7,0,7,5,15,11,15,4,5,15,9,14,0,11,9,14,0,11,14,0,11,15,15,1,15,3,10,0,7,5,10,0,7,12,3,10,12,1,15,1,15,9,14,0,10,3,11,15,6,2,13,13,1,15,1,15,10,12,1,15,14,0,11,15,3,10,0,7,9,14,0,10,12,14,0,10,12,14,0,10,12,14,0,11,15,1,15,2,13,15,13,4,15,2,14,0,10,6,0,10,0,7,15,2,14,0,11,15,11,15,11,15,6,15,15,0,7,12,8,1,15,3,10,0,7,12,15,3,10,0,7,4,11,15,12,6,10,12,13,9,14,0,10,12,9,14,0,8,1,15,13,10,0,10,12,8,1,15,13,2,0,7,1,15,2,13,10,0,7,12,11,15,12,12,1,15,10,0,10,12,5,4,3,13,9,0,7,15,1,15,1,15,2,14,0,4,12,7,5,0,10,0,7,2,11,15,8,1,15,0,7,3,11,15,3,13,6,7,6,5,11,15,11,15,6,0,10,12,13,0,7,4,13,0,7,4,0,7,1,15,13,3,10,0,7,0,10,0,7,10,0,7,3,13,7,12,7,2,13,0,7,12,10,0,10,12,10,0,7,7,3,13,10,0,7,7,9,14,0,11,9,14,0,11,9,14,0,11,12,13,0,7,11,9,14,0,10,12,4,0,7,1,15,11,15,13,15,2,14,0,11,15,9,14,0,11,14,0,11,15,2,14,0,10,3,11,15,2,11,15,14,0,10,12,11,15,15,3,10,12,8,1,15,3,11,15,12,9,14,0,10,12,1,15,15,9,14,0,7,0,7,7,10,0,6,8,1,15,3,10,12,4,8,1,15,15,4,1,15,11,15,14,0,10,6,5,5,13,8,9,14,0,10,3,13,5,12,6,9,14,0,10,3,10,4,13,5,6,15,11,15,15,3,10,0,1,15,5,13,15,7,1,15,4,7,2,14,0,10,12,11,15,4,9,14,0,11,14,0,11,15,9,14,0,11,12,2,13,14,0,10,6,5,3,10,0,10,12,12,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"0\", \"2\", \"9\"], \"clip_start\": 290.0, \"clip_end\": 294.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q10_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,0,7,7,4,15,1,15,15,12,3,11,15,7,2,14,0,11,15,3,10,12,13,0,7,11,15,14,0,10,12,2,14,0,10,12,12,11,15,6,13,10,0,7,10,0,7,15,3,10,0,7,0,7,5,15,11,15,4,5,15,9,14,0,11,9,14,0,11,14,0,11,15,15,1,15,3,10,0,7,5,10,0,7,12,3,10,12,1,15,1,15,9,14,0,10,3,11,15,6,2,13,13,1,15,1,15,10,12,1,15,14,0,11,15,3,10,0,7,9,14,0,10,12,14,0,10,12,14,0,10,12,14,0,11,15,1,15,2,13,15,13,4,15,2,14,0,10,6,0,10,0,7,15,2,14,0,11,15,11,15,11,15,6,15,15,0,7,12,8,1,15,3,10,0,7,12,15,3,10,0,7,4,11,15,12,6,10,12,13,9,14,0,10,12,9,14,0,8,1,15,13,10,0,10,12,8,1,15,13,2,0,7,1,15,2,13,10,0,7,12,11,15,12,12,1,15,10,0,10,12,5,4,3,13,9,0,7,15,1,15,1,15,2,14,0,4,12,7,5,0,10,0,7,2,11,15,8,1,15,0,7,3,11,15,3,13,6,7,6,5,11,15,11,15,6,0,10,12,13,0,7,4,13,0,7,4,0,7,1,15,13,3,10,0,7,0,10,0,7,10,0,7,3,13,7,12,7,2,13,0,7,12,10,0,10,12,10,0,7,7,3,13,10,0,7,7,9,14,0,11,9,14,0,11,9,14,0,11,12,13,0,7,11,9,14,0,10,12,4,0,7,1,15,11,15,13,15,2,14,0,11,15,9,14,0,11,14,0,11,15,2,14,0,10,3,11,15,2,11,15,14,0,10,12,11,15,15,3,10,12,8,1,15,3,11,15,12,9,14,0,10,12,1,15,15,9,14,0,7,0,7,7,10,0,6,8,1,15,3,10,12,4,8,1,15,15,4,1,15,11,15,14,0,10,6,5,5,13,8,9,14,0,10,3,13,5,12,6,9,14,0,10,3,10,4,13,5,6,15,11,15,15,3,10,0,1,15,5,13,15,7,1,15,4,7,2,14,0,10,12,11,15,4,9,14,0,11,14,0,11,15,9,14,0,11,12,2,13,14,0,10,6,5,3,10,0,10,12,12,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"10\", \"0\", \"7\", \"12\"], \"clip_start\": 216.0, \"clip_end\": 222.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,0,7,7,4,15,1,15,15,12,3,11,15,7,2,14,0,11,15,3,10,12,13,0,7,11,15,14,0,10,12,2,14,0,10,12,12,11,15,6,13,10,0,7,10,0,7,15,3,10,0,7,0,7,5,15,11,15,4,5,15,9,14,0,11,9,14,0,11,14,0,11,15,15,1,15,3,10,0,7,5,10,0,7,12,3,10,12,1,15,1,15,9,14,0,10,3,11,15,6,2,13,13,1,15,1,15,10,12,1,15,14,0,11,15,3,10,0,7,9,14,0,10,12,14,0,10,12,14,0,10,12,14,0,11,15,1,15,2,13,15,13,4,15,2,14,0,10,6,0,10,0,7,15,2,14,0,11,15,11,15,11,15,6,15,15,0,7,12,8,1,15,3,10,0,7,12,15,3,10,0,7,4,11,15,12,6,10,12,13,9,14,0,10,12,9,14,0,8,1,15,13,10,0,10,12,8,1,15,13,2,0,7,1,15,2,13,10,0,7,12,11,15,12,12,1,15,10,0,10,12,5,4,3,13,9,0,7,15,1,15,1,15,2,14,0,4,12,7,5,0,10,0,7,2,11,15,8,1,15,0,7,3,11,15,3,13,6,7,6,5,11,15,11,15,6,0,10,12,13,0,7,4,13,0,7,4,0,7,1,15,13,3,10,0,7,0,10,0,7,10,0,7,3,13,7,12,7,2,13,0,7,12,10,0,10,12,10,0,7,7,3,13,10,0,7,7,9,14,0,11,9,14,0,11,9,14,0,11,12,13,0,7,11,9,14,0,10,12,4,0,7,1,15,11,15,13,15,2,14,0,11,15,9,14,0,11,14,0,11,15,2,14,0,10,3,11,15,2,11,15,14,0,10,12,11,15,15,3,10,12,8,1,15,3,11,15,12,9,14,0,10,12,1,15,15,9,14,0,7,0,7,7,10,0,6,8,1,15,3,10,12,4,8,1,15,15,4,1,15,11,15,14,0,10,6,5,5,13,8,9,14,0,10,3,13,5,12,6,9,14,0,10,3,10,4,13,5,6,15,11,15,15,3,10,0,1,15,5,13,15,7,1,15,4,7,2,14,0,10,12,11,15,4,9,14,0,11,14,0,11,15,9,14,0,11,12,2,13,14,0,10,6,5,3,10,0,10,12,12,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"7\", \"4\", \"13\", \"0\"], \"clip_start\": 281.0, \"clip_end\": 286.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q12_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,0,7,7,4,15,1,15,15,12,3,11,15,7,2,14,0,11,15,3,10,12,13,0,7,11,15,14,0,10,12,2,14,0,10,12,12,11,15,6,13,10,0,7,10,0,7,15,3,10,0,7,0,7,5,15,11,15,4,5,15,9,14,0,11,9,14,0,11,14,0,11,15,15,1,15,3,10,0,7,5,10,0,7,12,3,10,12,1,15,1,15,9,14,0,10,3,11,15,6,2,13,13,1,15,1,15,10,12,1,15,14,0,11,15,3,10,0,7,9,14,0,10,12,14,0,10,12,14,0,10,12,14,0,11,15,1,15,2,13,15,13,4,15,2,14,0,10,6,0,10,0,7,15,2,14,0,11,15,11,15,11,15,6,15,15,0,7,12,8,1,15,3,10,0,7,12,15,3,10,0,7,4,11,15,12,6,10,12,13,9,14,0,10,12,9,14,0,8,1,15,13,10,0,10,12,8,1,15,13,2,0,7,1,15,2,13,10,0,7,12,11,15,12,12,1,15,10,0,10,12,5,4,3,13,9,0,7,15,1,15,1,15,2,14,0,4,12,7,5,0,10,0,7,2,11,15,8,1,15,0,7,3,11,15,3,13,6,7,6,5,11,15,11,15,6,0,10,12,13,0,7,4,13,0,7,4,0,7,1,15,13,3,10,0,7,0,10,0,7,10,0,7,3,13,7,12,7,2,13,0,7,12,10,0,10,12,10,0,7,7,3,13,10,0,7,7,9,14,0,11,9,14,0,11,9,14,0,11,12,13,0,7,11,9,14,0,10,12,4,0,7,1,15,11,15,13,15,2,14,0,11,15,9,14,0,11,14,0,11,15,2,14,0,10,3,11,15,2,11,15,14,0,10,12,11,15,15,3,10,12,8,1,15,3,11,15,12,9,14,0,10,12,1,15,15,9,14,0,7,0,7,7,10,0,6,8,1,15,3,10,12,4,8,1,15,15,4,1,15,11,15,14,0,10,6,5,5,13,8,9,14,0,10,3,13,5,12,6,9,14,0,10,3,10,4,13,5,6,15,11,15,15,3,10,0,1,15,5,13,15,7,1,15,4,7,2,14,0,10,12,11,15,4,9,14,0,11,14,0,11,15,9,14,0,11,12,2,13,14,0,10,6,5,3,10,0,10,12,12,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"7\", \"0\", \"7\", \"5\"], \"clip_start\": 51.0, \"clip_end\": 56.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,0,7,7,4,15,1,15,15,12,3,11,15,7,2,14,0,11,15,3,10,12,13,0,7,11,15,14,0,10,12,2,14,0,10,12,12,11,15,6,13,10,0,7,10,0,7,15,3,10,0,7,0,7,5,15,11,15,4,5,15,9,14,0,11,9,14,0,11,14,0,11,15,15,1,15,3,10,0,7,5,10,0,7,12,3,10,12,1,15,1,15,9,14,0,10,3,11,15,6,2,13,13,1,15,1,15,10,12,1,15,14,0,11,15,3,10,0,7,9,14,0,10,12,14,0,10,12,14,0,10,12,14,0,11,15,1,15,2,13,15,13,4,15,2,14,0,10,6,0,10,0,7,15,2,14,0,11,15,11,15,11,15,6,15,15,0,7,12,8,1,15,3,10,0,7,12,15,3,10,0,7,4,11,15,12,6,10,12,13,9,14,0,10,12,9,14,0,8,1,15,13,10,0,10,12,8,1,15,13,2,0,7,1,15,2,13,10,0,7,12,11,15,12,12,1,15,10,0,10,12,5,4,3,13,9,0,7,15,1,15,1,15,2,14,0,4,12,7,5,0,10,0,7,2,11,15,8,1,15,0,7,3,11,15,3,13,6,7,6,5,11,15,11,15,6,0,10,12,13,0,7,4,13,0,7,4,0,7,1,15,13,3,10,0,7,0,10,0,7,10,0,7,3,13,7,12,7,2,13,0,7,12,10,0,10,12,10,0,7,7,3,13,10,0,7,7,9,14,0,11,9,14,0,11,9,14,0,11,12,13,0,7,11,9,14,0,10,12,4,0,7,1,15,11,15,13,15,2,14,0,11,15,9,14,0,11,14,0,11,15,2,14,0,10,3,11,15,2,11,15,14,0,10,12,11,15,15,3,10,12,8,1,15,3,11,15,12,9,14,0,10,12,1,15,15,9,14,0,7,0,7,7,10,0,6,8,1,15,3,10,12,4,8,1,15,15,4,1,15,11,15,14,0,10,6,5,5,13,8,9,14,0,10,3,13,5,12,6,9,14,0,10,3,10,4,13,5,6,15,11,15,15,3,10,0,1,15,5,13,15,7,1,15,4,7,2,14,0,10,12,11,15,4,9,14,0,11,14,0,11,15,9,14,0,11,12,2,13,14,0,10,6,5,3,10,0,10,12,12,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"10\", \"6\", \"3\", \"7\", \"3\"], \"clip_start\": 154.0, \"clip_end\": 160.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q14_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,0,7,7,4,15,1,15,15,12,3,11,15,7,2,14,0,11,15,3,10,12,13,0,7,11,15,14,0,10,12,2,14,0,10,12,12,11,15,6,13,10,0,7,10,0,7,15,3,10,0,7,0,7,5,15,11,15,4,5,15,9,14,0,11,9,14,0,11,14,0,11,15,15,1,15,3,10,0,7,5,10,0,7,12,3,10,12,1,15,1,15,9,14,0,10,3,11,15,6,2,13,13,1,15,1,15,10,12,1,15,14,0,11,15,3,10,0,7,9,14,0,10,12,14,0,10,12,14,0,10,12,14,0,11,15,1,15,2,13,15,13,4,15,2,14,0,10,6,0,10,0,7,15,2,14,0,11,15,11,15,11,15,6,15,15,0,7,12,8,1,15,3,10,0,7,12,15,3,10,0,7,4,11,15,12,6,10,12,13,9,14,0,10,12,9,14,0,8,1,15,13,10,0,10,12,8,1,15,13,2,0,7,1,15,2,13,10,0,7,12,11,15,12,12,1,15,10,0,10,12,5,4,3,13,9,0,7,15,1,15,1,15,2,14,0,4,12,7,5,0,10,0,7,2,11,15,8,1,15,0,7,3,11,15,3,13,6,7,6,5,11,15,11,15,6,0,10,12,13,0,7,4,13,0,7,4,0,7,1,15,13,3,10,0,7,0,10,0,7,10,0,7,3,13,7,12,7,2,13,0,7,12,10,0,10,12,10,0,7,7,3,13,10,0,7,7,9,14,0,11,9,14,0,11,9,14,0,11,12,13,0,7,11,9,14,0,10,12,4,0,7,1,15,11,15,13,15,2,14,0,11,15,9,14,0,11,14,0,11,15,2,14,0,10,3,11,15,2,11,15,14,0,10,12,11,15,15,3,10,12,8,1,15,3,11,15,12,9,14,0,10,12,1,15,15,9,14,0,7,0,7,7,10,0,6,8,1,15,3,10,12,4,8,1,15,15,4,1,15,11,15,14,0,10,6,5,5,13,8,9,14,0,10,3,13,5,12,6,9,14,0,10,3,10,4,13,5,6,15,11,15,15,3,10,0,1,15,5,13,15,7,1,15,4,7,2,14,0,10,12,11,15,4,9,14,0,11,14,0,11,15,9,14,0,11,12,2,13,14,0,10,6,5,3,10,0,10,12,12,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"9\", \"0\", \"7\", \"15\"], \"clip_start\": 235.0, \"clip_end\": 240.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q15_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,12,0,7,7,4,15,1,15,15,12,3,11,15,7,2,14,0,11,15,3,10,12,13,0,7,11,15,14,0,10,12,2,14,0,10,12,12,11,15,6,13,10,0,7,10,0,7,15,3,10,0,7,0,7,5,15,11,15,4,5,15,9,14,0,11,9,14,0,11,14,0,11,15,15,1,15,3,10,0,7,5,10,0,7,12,3,10,12,1,15,1,15,9,14,0,10,3,11,15,6,2,13,13,1,15,1,15,10,12,1,15,14,0,11,15,3,10,0,7,9,14,0,10,12,14,0,10,12,14,0,10,12,14,0,11,15,1,15,2,13,15,13,4,15,2,14,0,10,6,0,10,0,7,15,2,14,0,11,15,11,15,11,15,6,15,15,0,7,12,8,1,15,3,10,0,7,12,15,3,10,0,7,4,11,15,12,6,10,12,13,9,14,0,10,12,9,14,0,8,1,15,13,10,0,10,12,8,1,15,13,2,0,7,1,15,2,13,10,0,7,12,11,15,12,12,1,15,10,0,10,12,5,4,3,13,9,0,7,15,1,15,1,15,2,14,0,4,12,7,5,0,10,0,7,2,11,15,8,1,15,0,7,3,11,15,3,13,6,7,6,5,11,15,11,15,6,0,10,12,13,0,7,4,13,0,7,4,0,7,1,15,13,3,10,0,7,0,10,0,7,10,0,7,3,13,7,12,7,2,13,0,7,12,10,0,10,12,10,0,7,7,3,13,10,0,7,7,9,14,0,11,9,14,0,11,9,14,0,11,12,13,0,7,11,9,14,0,10,12,4,0,7,1,15,11,15,13,15,2,14,0,11,15,9,14,0,11,14,0,11,15,2,14,0,10,3,11,15,2,11,15,14,0,10,12,11,15,15,3,10,12,8,1,15,3,11,15,12,9,14,0,10,12,1,15,15,9,14,0,7,0,7,7,10,0,6,8,1,15,3,10,12,4,8,1,15,15,4,1,15,11,15,14,0,10,6,5,5,13,8,9,14,0,10,3,13,5,12,6,9,14,0,10,3,10,4,13,5,6,15,11,15,15,3,10,0,1,15,5,13,15,7,1,15,4,7,2,14,0,10,12,11,15,4,9,14,0,11,14,0,11,15,9,14,0,11,12,2,13,14,0,10,6,5,3,10,0,10,12,12,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"13\", \"9\", \"1\", \"7\"], \"clip_start\": 233.0, \"clip_end\": 238.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,14,8,6,13,9,1,1,9,14,11,15,10,13,9,10,13,2,11,6,8,2,7,5,6,11,13,9,10,13,9,1,9,14,2,6,5,1,9,14,1,9,7,7,0,10,13,9,10,13,9,10,13,9,3,2,0,4,2,14,8,13,9,10,4,5,2,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,1,9,10,13,9,10,13,9,10,13,9,1,7,12,11,7,2,5,11,0,1,9,14,1,9,14,2,10,13,9,10,13,9,1,1,9,14,1,9,14,1,9,14,11,2,4,4,12,11,5,1,9,14,2,11,13,9,10,13,9,10,13,9,1,5,14,8,7,11,5,1,9,14,2,11,14,8,13,9,10,13,9,10,13,9,1,7,3,13,9,1,1,14,8,3,3,0,6,1,9,14,3,3,10,3,5,15,14,8,15,14,8,0,7,11,9,14,2,7,3,7,15,14,8,6,14,8,9,14,1,9,14,1,9,14,1,9,14,11,7,13,9,1,7,3,4,3,7,12,11,7,9,14,2,0,7,6,4,2,2,9,14,11,9,14,11,11,14,8,0,0,15,3,6,5,4,5,5,6,9,14,11,6,11,2,12,11,10,13,9,10,13,9,1,1,9,14,1,9,6,4,0,2,5,1,9,14,11,5,9,5,11,14,8,3,9,14,1,9,0,14,8,5,8,11,10,13,11,2,9,0,10,13,9,1,7,12,11,3,7,4,12,11,1,9,14,11,14,8,12,11,14,8,7,14,8,10,13,9,10,13,9,10,3,2,3,2,8,14,8,8,12,11,2,7,5,5,11,14,8,9,14,11,0,5,4,9,14,2,14,8,10,13,9,10,13,9,10,13,9,1,1,9,14,11,13,9,1,9,14,1,9,14,11,14,8,10,13,9,1,7,11,9,14,11,8,5,5,12,11,11,5,3,15,10,13,9,1,1,9,14,13,7,3,3,11,8,5,0,10,13,9,10,13,9,5,11,11,2,2,14,8,14,8,3,8,3,5,2,11,10,13,9,1,7,11,9,14,1,9,14,14,8,3,7,7,3,10,13,9,1,1,9,14,11,7,11,13,1,9,14,2,0,6,0,13,9,10,13,9,10,13,9,10,13,9,1,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"9\", \"10\", \"13\"], \"clip_start\": 152.0, \"clip_end\": 156.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,14,8,6,13,9,1,1,9,14,11,15,10,13,9,10,13,2,11,6,8,2,7,5,6,11,13,9,10,13,9,1,9,14,2,6,5,1,9,14,1,9,7,7,0,10,13,9,10,13,9,10,13,9,3,2,0,4,2,14,8,13,9,10,4,5,2,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,1,9,10,13,9,10,13,9,10,13,9,1,7,12,11,7,2,5,11,0,1,9,14,1,9,14,2,10,13,9,10,13,9,1,1,9,14,1,9,14,1,9,14,11,2,4,4,12,11,5,1,9,14,2,11,13,9,10,13,9,10,13,9,1,5,14,8,7,11,5,1,9,14,2,11,14,8,13,9,10,13,9,10,13,9,1,7,3,13,9,1,1,14,8,3,3,0,6,1,9,14,3,3,10,3,5,15,14,8,15,14,8,0,7,11,9,14,2,7,3,7,15,14,8,6,14,8,9,14,1,9,14,1,9,14,1,9,14,11,7,13,9,1,7,3,4,3,7,12,11,7,9,14,2,0,7,6,4,2,2,9,14,11,9,14,11,11,14,8,0,0,15,3,6,5,4,5,5,6,9,14,11,6,11,2,12,11,10,13,9,10,13,9,1,1,9,14,1,9,6,4,0,2,5,1,9,14,11,5,9,5,11,14,8,3,9,14,1,9,0,14,8,5,8,11,10,13,11,2,9,0,10,13,9,1,7,12,11,3,7,4,12,11,1,9,14,11,14,8,12,11,14,8,7,14,8,10,13,9,10,13,9,10,3,2,3,2,8,14,8,8,12,11,2,7,5,5,11,14,8,9,14,11,0,5,4,9,14,2,14,8,10,13,9,10,13,9,10,13,9,1,1,9,14,11,13,9,1,9,14,1,9,14,11,14,8,10,13,9,1,7,11,9,14,11,8,5,5,12,11,11,5,3,15,10,13,9,1,1,9,14,13,7,3,3,11,8,5,0,10,13,9,10,13,9,5,11,11,2,2,14,8,14,8,3,8,3,5,2,11,10,13,9,1,7,11,9,14,1,9,14,14,8,3,7,7,3,10,13,9,1,1,9,14,11,7,11,13,1,9,14,2,0,6,0,13,9,10,13,9,10,13,9,10,13,9,1,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"10\", \"13\", \"9\", \"10\"], \"clip_start\": 383.0, \"clip_end\": 389.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,14,8,6,13,9,1,1,9,14,11,15,10,13,9,10,13,2,11,6,8,2,7,5,6,11,13,9,10,13,9,1,9,14,2,6,5,1,9,14,1,9,7,7,0,10,13,9,10,13,9,10,13,9,3,2,0,4,2,14,8,13,9,10,4,5,2,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,1,9,10,13,9,10,13,9,10,13,9,1,7,12,11,7,2,5,11,0,1,9,14,1,9,14,2,10,13,9,10,13,9,1,1,9,14,1,9,14,1,9,14,11,2,4,4,12,11,5,1,9,14,2,11,13,9,10,13,9,10,13,9,1,5,14,8,7,11,5,1,9,14,2,11,14,8,13,9,10,13,9,10,13,9,1,7,3,13,9,1,1,14,8,3,3,0,6,1,9,14,3,3,10,3,5,15,14,8,15,14,8,0,7,11,9,14,2,7,3,7,15,14,8,6,14,8,9,14,1,9,14,1,9,14,1,9,14,11,7,13,9,1,7,3,4,3,7,12,11,7,9,14,2,0,7,6,4,2,2,9,14,11,9,14,11,11,14,8,0,0,15,3,6,5,4,5,5,6,9,14,11,6,11,2,12,11,10,13,9,10,13,9,1,1,9,14,1,9,6,4,0,2,5,1,9,14,11,5,9,5,11,14,8,3,9,14,1,9,0,14,8,5,8,11,10,13,11,2,9,0,10,13,9,1,7,12,11,3,7,4,12,11,1,9,14,11,14,8,12,11,14,8,7,14,8,10,13,9,10,13,9,10,3,2,3,2,8,14,8,8,12,11,2,7,5,5,11,14,8,9,14,11,0,5,4,9,14,2,14,8,10,13,9,10,13,9,10,13,9,1,1,9,14,11,13,9,1,9,14,1,9,14,11,14,8,10,13,9,1,7,11,9,14,11,8,5,5,12,11,11,5,3,15,10,13,9,1,1,9,14,13,7,3,3,11,8,5,0,10,13,9,10,13,9,5,11,11,2,2,14,8,14,8,3,8,3,5,2,11,10,13,9,1,7,11,9,14,1,9,14,14,8,3,7,7,3,10,13,9,1,1,9,14,11,7,11,13,1,9,14,2,0,6,0,13,9,10,13,9,10,13,9,10,13,9,1,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"9\", \"10\", \"13\", \"9\"], \"clip_start\": 100.0, \"clip_end\": 105.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,14,8,6,13,9,1,1,9,14,11,15,10,13,9,10,13,2,11,6,8,2,7,5,6,11,13,9,10,13,9,1,9,14,2,6,5,1,9,14,1,9,7,7,0,10,13,9,10,13,9,10,13,9,3,2,0,4,2,14,8,13,9,10,4,5,2,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,1,9,10,13,9,10,13,9,10,13,9,1,7,12,11,7,2,5,11,0,1,9,14,1,9,14,2,10,13,9,10,13,9,1,1,9,14,1,9,14,1,9,14,11,2,4,4,12,11,5,1,9,14,2,11,13,9,10,13,9,10,13,9,1,5,14,8,7,11,5,1,9,14,2,11,14,8,13,9,10,13,9,10,13,9,1,7,3,13,9,1,1,14,8,3,3,0,6,1,9,14,3,3,10,3,5,15,14,8,15,14,8,0,7,11,9,14,2,7,3,7,15,14,8,6,14,8,9,14,1,9,14,1,9,14,1,9,14,11,7,13,9,1,7,3,4,3,7,12,11,7,9,14,2,0,7,6,4,2,2,9,14,11,9,14,11,11,14,8,0,0,15,3,6,5,4,5,5,6,9,14,11,6,11,2,12,11,10,13,9,10,13,9,1,1,9,14,1,9,6,4,0,2,5,1,9,14,11,5,9,5,11,14,8,3,9,14,1,9,0,14,8,5,8,11,10,13,11,2,9,0,10,13,9,1,7,12,11,3,7,4,12,11,1,9,14,11,14,8,12,11,14,8,7,14,8,10,13,9,10,13,9,10,3,2,3,2,8,14,8,8,12,11,2,7,5,5,11,14,8,9,14,11,0,5,4,9,14,2,14,8,10,13,9,10,13,9,10,13,9,1,1,9,14,11,13,9,1,9,14,1,9,14,11,14,8,10,13,9,1,7,11,9,14,11,8,5,5,12,11,11,5,3,15,10,13,9,1,1,9,14,13,7,3,3,11,8,5,0,10,13,9,10,13,9,5,11,11,2,2,14,8,14,8,3,8,3,5,2,11,10,13,9,1,7,11,9,14,1,9,14,14,8,3,7,7,3,10,13,9,1,1,9,14,11,7,11,13,1,9,14,2,0,6,0,13,9,10,13,9,10,13,9,10,13,9,1,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"0\", \"5\", \"4\", \"9\"], \"clip_start\": 376.0, \"clip_end\": 381.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,14,8,6,13,9,1,1,9,14,11,15,10,13,9,10,13,2,11,6,8,2,7,5,6,11,13,9,10,13,9,1,9,14,2,6,5,1,9,14,1,9,7,7,0,10,13,9,10,13,9,10,13,9,3,2,0,4,2,14,8,13,9,10,4,5,2,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,1,9,10,13,9,10,13,9,10,13,9,1,7,12,11,7,2,5,11,0,1,9,14,1,9,14,2,10,13,9,10,13,9,1,1,9,14,1,9,14,1,9,14,11,2,4,4,12,11,5,1,9,14,2,11,13,9,10,13,9,10,13,9,1,5,14,8,7,11,5,1,9,14,2,11,14,8,13,9,10,13,9,10,13,9,1,7,3,13,9,1,1,14,8,3,3,0,6,1,9,14,3,3,10,3,5,15,14,8,15,14,8,0,7,11,9,14,2,7,3,7,15,14,8,6,14,8,9,14,1,9,14,1,9,14,1,9,14,11,7,13,9,1,7,3,4,3,7,12,11,7,9,14,2,0,7,6,4,2,2,9,14,11,9,14,11,11,14,8,0,0,15,3,6,5,4,5,5,6,9,14,11,6,11,2,12,11,10,13,9,10,13,9,1,1,9,14,1,9,6,4,0,2,5,1,9,14,11,5,9,5,11,14,8,3,9,14,1,9,0,14,8,5,8,11,10,13,11,2,9,0,10,13,9,1,7,12,11,3,7,4,12,11,1,9,14,11,14,8,12,11,14,8,7,14,8,10,13,9,10,13,9,10,3,2,3,2,8,14,8,8,12,11,2,7,5,5,11,14,8,9,14,11,0,5,4,9,14,2,14,8,10,13,9,10,13,9,10,13,9,1,1,9,14,11,13,9,1,9,14,1,9,14,11,14,8,10,13,9,1,7,11,9,14,11,8,5,5,12,11,11,5,3,15,10,13,9,1,1,9,14,13,7,3,3,11,8,5,0,10,13,9,10,13,9,5,11,11,2,2,14,8,14,8,3,8,3,5,2,11,10,13,9,1,7,11,9,14,1,9,14,14,8,3,7,7,3,10,13,9,1,1,9,14,11,7,11,13,1,9,14,2,0,6,0,13,9,10,13,9,10,13,9,10,13,9,1,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"1\", \"9\", \"7\", \"7\"], \"clip_start\": 39.0, \"clip_end\": 45.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,14,8,6,13,9,1,1,9,14,11,15,10,13,9,10,13,2,11,6,8,2,7,5,6,11,13,9,10,13,9,1,9,14,2,6,5,1,9,14,1,9,7,7,0,10,13,9,10,13,9,10,13,9,3,2,0,4,2,14,8,13,9,10,4,5,2,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,1,9,10,13,9,10,13,9,10,13,9,1,7,12,11,7,2,5,11,0,1,9,14,1,9,14,2,10,13,9,10,13,9,1,1,9,14,1,9,14,1,9,14,11,2,4,4,12,11,5,1,9,14,2,11,13,9,10,13,9,10,13,9,1,5,14,8,7,11,5,1,9,14,2,11,14,8,13,9,10,13,9,10,13,9,1,7,3,13,9,1,1,14,8,3,3,0,6,1,9,14,3,3,10,3,5,15,14,8,15,14,8,0,7,11,9,14,2,7,3,7,15,14,8,6,14,8,9,14,1,9,14,1,9,14,1,9,14,11,7,13,9,1,7,3,4,3,7,12,11,7,9,14,2,0,7,6,4,2,2,9,14,11,9,14,11,11,14,8,0,0,15,3,6,5,4,5,5,6,9,14,11,6,11,2,12,11,10,13,9,10,13,9,1,1,9,14,1,9,6,4,0,2,5,1,9,14,11,5,9,5,11,14,8,3,9,14,1,9,0,14,8,5,8,11,10,13,11,2,9,0,10,13,9,1,7,12,11,3,7,4,12,11,1,9,14,11,14,8,12,11,14,8,7,14,8,10,13,9,10,13,9,10,3,2,3,2,8,14,8,8,12,11,2,7,5,5,11,14,8,9,14,11,0,5,4,9,14,2,14,8,10,13,9,10,13,9,10,13,9,1,1,9,14,11,13,9,1,9,14,1,9,14,11,14,8,10,13,9,1,7,11,9,14,11,8,5,5,12,11,11,5,3,15,10,13,9,1,1,9,14,13,7,3,3,11,8,5,0,10,13,9,10,13,9,5,11,11,2,2,14,8,14,8,3,8,3,5,2,11,10,13,9,1,7,11,9,14,1,9,14,14,8,3,7,7,3,10,13,9,1,1,9,14,11,7,11,13,1,9,14,2,0,6,0,13,9,10,13,9,10,13,9,10,13,9,1,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"0\", \"6\", \"1\"], \"clip_start\": 188.0, \"clip_end\": 193.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,14,8,6,13,9,1,1,9,14,11,15,10,13,9,10,13,2,11,6,8,2,7,5,6,11,13,9,10,13,9,1,9,14,2,6,5,1,9,14,1,9,7,7,0,10,13,9,10,13,9,10,13,9,3,2,0,4,2,14,8,13,9,10,4,5,2,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,1,9,10,13,9,10,13,9,10,13,9,1,7,12,11,7,2,5,11,0,1,9,14,1,9,14,2,10,13,9,10,13,9,1,1,9,14,1,9,14,1,9,14,11,2,4,4,12,11,5,1,9,14,2,11,13,9,10,13,9,10,13,9,1,5,14,8,7,11,5,1,9,14,2,11,14,8,13,9,10,13,9,10,13,9,1,7,3,13,9,1,1,14,8,3,3,0,6,1,9,14,3,3,10,3,5,15,14,8,15,14,8,0,7,11,9,14,2,7,3,7,15,14,8,6,14,8,9,14,1,9,14,1,9,14,1,9,14,11,7,13,9,1,7,3,4,3,7,12,11,7,9,14,2,0,7,6,4,2,2,9,14,11,9,14,11,11,14,8,0,0,15,3,6,5,4,5,5,6,9,14,11,6,11,2,12,11,10,13,9,10,13,9,1,1,9,14,1,9,6,4,0,2,5,1,9,14,11,5,9,5,11,14,8,3,9,14,1,9,0,14,8,5,8,11,10,13,11,2,9,0,10,13,9,1,7,12,11,3,7,4,12,11,1,9,14,11,14,8,12,11,14,8,7,14,8,10,13,9,10,13,9,10,3,2,3,2,8,14,8,8,12,11,2,7,5,5,11,14,8,9,14,11,0,5,4,9,14,2,14,8,10,13,9,10,13,9,10,13,9,1,1,9,14,11,13,9,1,9,14,1,9,14,11,14,8,10,13,9,1,7,11,9,14,11,8,5,5,12,11,11,5,3,15,10,13,9,1,1,9,14,13,7,3,3,11,8,5,0,10,13,9,10,13,9,5,11,11,2,2,14,8,14,8,3,8,3,5,2,11,10,13,9,1,7,11,9,14,1,9,14,14,8,3,7,7,3,10,13,9,1,1,9,14,11,7,11,13,1,9,14,2,0,6,0,13,9,10,13,9,10,13,9,10,13,9,1,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"13\", \"9\", \"10\"], \"clip_start\": 442.0, \"clip_end\": 447.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,14,8,6,13,9,1,1,9,14,11,15,10,13,9,10,13,2,11,6,8,2,7,5,6,11,13,9,10,13,9,1,9,14,2,6,5,1,9,14,1,9,7,7,0,10,13,9,10,13,9,10,13,9,3,2,0,4,2,14,8,13,9,10,4,5,2,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,1,9,10,13,9,10,13,9,10,13,9,1,7,12,11,7,2,5,11,0,1,9,14,1,9,14,2,10,13,9,10,13,9,1,1,9,14,1,9,14,1,9,14,11,2,4,4,12,11,5,1,9,14,2,11,13,9,10,13,9,10,13,9,1,5,14,8,7,11,5,1,9,14,2,11,14,8,13,9,10,13,9,10,13,9,1,7,3,13,9,1,1,14,8,3,3,0,6,1,9,14,3,3,10,3,5,15,14,8,15,14,8,0,7,11,9,14,2,7,3,7,15,14,8,6,14,8,9,14,1,9,14,1,9,14,1,9,14,11,7,13,9,1,7,3,4,3,7,12,11,7,9,14,2,0,7,6,4,2,2,9,14,11,9,14,11,11,14,8,0,0,15,3,6,5,4,5,5,6,9,14,11,6,11,2,12,11,10,13,9,10,13,9,1,1,9,14,1,9,6,4,0,2,5,1,9,14,11,5,9,5,11,14,8,3,9,14,1,9,0,14,8,5,8,11,10,13,11,2,9,0,10,13,9,1,7,12,11,3,7,4,12,11,1,9,14,11,14,8,12,11,14,8,7,14,8,10,13,9,10,13,9,10,3,2,3,2,8,14,8,8,12,11,2,7,5,5,11,14,8,9,14,11,0,5,4,9,14,2,14,8,10,13,9,10,13,9,10,13,9,1,1,9,14,11,13,9,1,9,14,1,9,14,11,14,8,10,13,9,1,7,11,9,14,11,8,5,5,12,11,11,5,3,15,10,13,9,1,1,9,14,13,7,3,3,11,8,5,0,10,13,9,10,13,9,5,11,11,2,2,14,8,14,8,3,8,3,5,2,11,10,13,9,1,7,11,9,14,1,9,14,14,8,3,7,7,3,10,13,9,1,1,9,14,11,7,11,13,1,9,14,2,0,6,0,13,9,10,13,9,10,13,9,10,13,9,1,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"14\"], \"clip_start\": 406.0, \"clip_end\": 409.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,14,8,6,13,9,1,1,9,14,11,15,10,13,9,10,13,2,11,6,8,2,7,5,6,11,13,9,10,13,9,1,9,14,2,6,5,1,9,14,1,9,7,7,0,10,13,9,10,13,9,10,13,9,3,2,0,4,2,14,8,13,9,10,4,5,2,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,1,9,10,13,9,10,13,9,10,13,9,1,7,12,11,7,2,5,11,0,1,9,14,1,9,14,2,10,13,9,10,13,9,1,1,9,14,1,9,14,1,9,14,11,2,4,4,12,11,5,1,9,14,2,11,13,9,10,13,9,10,13,9,1,5,14,8,7,11,5,1,9,14,2,11,14,8,13,9,10,13,9,10,13,9,1,7,3,13,9,1,1,14,8,3,3,0,6,1,9,14,3,3,10,3,5,15,14,8,15,14,8,0,7,11,9,14,2,7,3,7,15,14,8,6,14,8,9,14,1,9,14,1,9,14,1,9,14,11,7,13,9,1,7,3,4,3,7,12,11,7,9,14,2,0,7,6,4,2,2,9,14,11,9,14,11,11,14,8,0,0,15,3,6,5,4,5,5,6,9,14,11,6,11,2,12,11,10,13,9,10,13,9,1,1,9,14,1,9,6,4,0,2,5,1,9,14,11,5,9,5,11,14,8,3,9,14,1,9,0,14,8,5,8,11,10,13,11,2,9,0,10,13,9,1,7,12,11,3,7,4,12,11,1,9,14,11,14,8,12,11,14,8,7,14,8,10,13,9,10,13,9,10,3,2,3,2,8,14,8,8,12,11,2,7,5,5,11,14,8,9,14,11,0,5,4,9,14,2,14,8,10,13,9,10,13,9,10,13,9,1,1,9,14,11,13,9,1,9,14,1,9,14,11,14,8,10,13,9,1,7,11,9,14,11,8,5,5,12,11,11,5,3,15,10,13,9,1,1,9,14,13,7,3,3,11,8,5,0,10,13,9,10,13,9,5,11,11,2,2,14,8,14,8,3,8,3,5,2,11,10,13,9,1,7,11,9,14,1,9,14,14,8,3,7,7,3,10,13,9,1,1,9,14,11,7,11,13,1,9,14,2,0,6,0,13,9,10,13,9,10,13,9,10,13,9,1,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"1\", \"9\", \"6\", \"4\", \"0\"], \"clip_start\": 290.0, \"clip_end\": 296.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,14,8,6,13,9,1,1,9,14,11,15,10,13,9,10,13,2,11,6,8,2,7,5,6,11,13,9,10,13,9,1,9,14,2,6,5,1,9,14,1,9,7,7,0,10,13,9,10,13,9,10,13,9,3,2,0,4,2,14,8,13,9,10,4,5,2,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,1,9,10,13,9,10,13,9,10,13,9,1,7,12,11,7,2,5,11,0,1,9,14,1,9,14,2,10,13,9,10,13,9,1,1,9,14,1,9,14,1,9,14,11,2,4,4,12,11,5,1,9,14,2,11,13,9,10,13,9,10,13,9,1,5,14,8,7,11,5,1,9,14,2,11,14,8,13,9,10,13,9,10,13,9,1,7,3,13,9,1,1,14,8,3,3,0,6,1,9,14,3,3,10,3,5,15,14,8,15,14,8,0,7,11,9,14,2,7,3,7,15,14,8,6,14,8,9,14,1,9,14,1,9,14,1,9,14,11,7,13,9,1,7,3,4,3,7,12,11,7,9,14,2,0,7,6,4,2,2,9,14,11,9,14,11,11,14,8,0,0,15,3,6,5,4,5,5,6,9,14,11,6,11,2,12,11,10,13,9,10,13,9,1,1,9,14,1,9,6,4,0,2,5,1,9,14,11,5,9,5,11,14,8,3,9,14,1,9,0,14,8,5,8,11,10,13,11,2,9,0,10,13,9,1,7,12,11,3,7,4,12,11,1,9,14,11,14,8,12,11,14,8,7,14,8,10,13,9,10,13,9,10,3,2,3,2,8,14,8,8,12,11,2,7,5,5,11,14,8,9,14,11,0,5,4,9,14,2,14,8,10,13,9,10,13,9,10,13,9,1,1,9,14,11,13,9,1,9,14,1,9,14,11,14,8,10,13,9,1,7,11,9,14,11,8,5,5,12,11,11,5,3,15,10,13,9,1,1,9,14,13,7,3,3,11,8,5,0,10,13,9,10,13,9,5,11,11,2,2,14,8,14,8,3,8,3,5,2,11,10,13,9,1,7,11,9,14,1,9,14,14,8,3,7,7,3,10,13,9,1,1,9,14,11,7,11,13,1,9,14,2,0,6,0,13,9,10,13,9,10,13,9,10,13,9,1,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"14\", \"8\"], \"clip_start\": 215.0, \"clip_end\": 218.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,14,8,6,13,9,1,1,9,14,11,15,10,13,9,10,13,2,11,6,8,2,7,5,6,11,13,9,10,13,9,1,9,14,2,6,5,1,9,14,1,9,7,7,0,10,13,9,10,13,9,10,13,9,3,2,0,4,2,14,8,13,9,10,4,5,2,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,1,9,10,13,9,10,13,9,10,13,9,1,7,12,11,7,2,5,11,0,1,9,14,1,9,14,2,10,13,9,10,13,9,1,1,9,14,1,9,14,1,9,14,11,2,4,4,12,11,5,1,9,14,2,11,13,9,10,13,9,10,13,9,1,5,14,8,7,11,5,1,9,14,2,11,14,8,13,9,10,13,9,10,13,9,1,7,3,13,9,1,1,14,8,3,3,0,6,1,9,14,3,3,10,3,5,15,14,8,15,14,8,0,7,11,9,14,2,7,3,7,15,14,8,6,14,8,9,14,1,9,14,1,9,14,1,9,14,11,7,13,9,1,7,3,4,3,7,12,11,7,9,14,2,0,7,6,4,2,2,9,14,11,9,14,11,11,14,8,0,0,15,3,6,5,4,5,5,6,9,14,11,6,11,2,12,11,10,13,9,10,13,9,1,1,9,14,1,9,6,4,0,2,5,1,9,14,11,5,9,5,11,14,8,3,9,14,1,9,0,14,8,5,8,11,10,13,11,2,9,0,10,13,9,1,7,12,11,3,7,4,12,11,1,9,14,11,14,8,12,11,14,8,7,14,8,10,13,9,10,13,9,10,3,2,3,2,8,14,8,8,12,11,2,7,5,5,11,14,8,9,14,11,0,5,4,9,14,2,14,8,10,13,9,10,13,9,10,13,9,1,1,9,14,11,13,9,1,9,14,1,9,14,11,14,8,10,13,9,1,7,11,9,14,11,8,5,5,12,11,11,5,3,15,10,13,9,1,1,9,14,13,7,3,3,11,8,5,0,10,13,9,10,13,9,5,11,11,2,2,14,8,14,8,3,8,3,5,2,11,10,13,9,1,7,11,9,14,1,9,14,14,8,3,7,7,3,10,13,9,1,1,9,14,11,7,11,13,1,9,14,2,0,6,0,13,9,10,13,9,10,13,9,10,13,9,1,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"0\", \"6\"], \"clip_start\": 188.0, \"clip_end\": 192.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,14,8,6,13,9,1,1,9,14,11,15,10,13,9,10,13,2,11,6,8,2,7,5,6,11,13,9,10,13,9,1,9,14,2,6,5,1,9,14,1,9,7,7,0,10,13,9,10,13,9,10,13,9,3,2,0,4,2,14,8,13,9,10,4,5,2,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,1,9,10,13,9,10,13,9,10,13,9,1,7,12,11,7,2,5,11,0,1,9,14,1,9,14,2,10,13,9,10,13,9,1,1,9,14,1,9,14,1,9,14,11,2,4,4,12,11,5,1,9,14,2,11,13,9,10,13,9,10,13,9,1,5,14,8,7,11,5,1,9,14,2,11,14,8,13,9,10,13,9,10,13,9,1,7,3,13,9,1,1,14,8,3,3,0,6,1,9,14,3,3,10,3,5,15,14,8,15,14,8,0,7,11,9,14,2,7,3,7,15,14,8,6,14,8,9,14,1,9,14,1,9,14,1,9,14,11,7,13,9,1,7,3,4,3,7,12,11,7,9,14,2,0,7,6,4,2,2,9,14,11,9,14,11,11,14,8,0,0,15,3,6,5,4,5,5,6,9,14,11,6,11,2,12,11,10,13,9,10,13,9,1,1,9,14,1,9,6,4,0,2,5,1,9,14,11,5,9,5,11,14,8,3,9,14,1,9,0,14,8,5,8,11,10,13,11,2,9,0,10,13,9,1,7,12,11,3,7,4,12,11,1,9,14,11,14,8,12,11,14,8,7,14,8,10,13,9,10,13,9,10,3,2,3,2,8,14,8,8,12,11,2,7,5,5,11,14,8,9,14,11,0,5,4,9,14,2,14,8,10,13,9,10,13,9,10,13,9,1,1,9,14,11,13,9,1,9,14,1,9,14,11,14,8,10,13,9,1,7,11,9,14,11,8,5,5,12,11,11,5,3,15,10,13,9,1,1,9,14,13,7,3,3,11,8,5,0,10,13,9,10,13,9,5,11,11,2,2,14,8,14,8,3,8,3,5,2,11,10,13,9,1,7,11,9,14,1,9,14,14,8,3,7,7,3,10,13,9,1,1,9,14,11,7,11,13,1,9,14,2,0,6,0,13,9,10,13,9,10,13,9,10,13,9,1,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"13\", \"9\", \"10\", \"13\"], \"clip_start\": 170.0, \"clip_end\": 175.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,14,8,6,13,9,1,1,9,14,11,15,10,13,9,10,13,2,11,6,8,2,7,5,6,11,13,9,10,13,9,1,9,14,2,6,5,1,9,14,1,9,7,7,0,10,13,9,10,13,9,10,13,9,3,2,0,4,2,14,8,13,9,10,4,5,2,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,1,9,10,13,9,10,13,9,10,13,9,1,7,12,11,7,2,5,11,0,1,9,14,1,9,14,2,10,13,9,10,13,9,1,1,9,14,1,9,14,1,9,14,11,2,4,4,12,11,5,1,9,14,2,11,13,9,10,13,9,10,13,9,1,5,14,8,7,11,5,1,9,14,2,11,14,8,13,9,10,13,9,10,13,9,1,7,3,13,9,1,1,14,8,3,3,0,6,1,9,14,3,3,10,3,5,15,14,8,15,14,8,0,7,11,9,14,2,7,3,7,15,14,8,6,14,8,9,14,1,9,14,1,9,14,1,9,14,11,7,13,9,1,7,3,4,3,7,12,11,7,9,14,2,0,7,6,4,2,2,9,14,11,9,14,11,11,14,8,0,0,15,3,6,5,4,5,5,6,9,14,11,6,11,2,12,11,10,13,9,10,13,9,1,1,9,14,1,9,6,4,0,2,5,1,9,14,11,5,9,5,11,14,8,3,9,14,1,9,0,14,8,5,8,11,10,13,11,2,9,0,10,13,9,1,7,12,11,3,7,4,12,11,1,9,14,11,14,8,12,11,14,8,7,14,8,10,13,9,10,13,9,10,3,2,3,2,8,14,8,8,12,11,2,7,5,5,11,14,8,9,14,11,0,5,4,9,14,2,14,8,10,13,9,10,13,9,10,13,9,1,1,9,14,11,13,9,1,9,14,1,9,14,11,14,8,10,13,9,1,7,11,9,14,11,8,5,5,12,11,11,5,3,15,10,13,9,1,1,9,14,13,7,3,3,11,8,5,0,10,13,9,10,13,9,5,11,11,2,2,14,8,14,8,3,8,3,5,2,11,10,13,9,1,7,11,9,14,1,9,14,14,8,3,7,7,3,10,13,9,1,1,9,14,11,7,11,13,1,9,14,2,0,6,0,13,9,10,13,9,10,13,9,10,13,9,1,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"1\", \"9\", \"14\", \"11\", \"7\"], \"clip_start\": 228.0, \"clip_end\": 234.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,14,8,6,13,9,1,1,9,14,11,15,10,13,9,10,13,2,11,6,8,2,7,5,6,11,13,9,10,13,9,1,9,14,2,6,5,1,9,14,1,9,7,7,0,10,13,9,10,13,9,10,13,9,3,2,0,4,2,14,8,13,9,10,4,5,2,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,1,9,10,13,9,10,13,9,10,13,9,1,7,12,11,7,2,5,11,0,1,9,14,1,9,14,2,10,13,9,10,13,9,1,1,9,14,1,9,14,1,9,14,11,2,4,4,12,11,5,1,9,14,2,11,13,9,10,13,9,10,13,9,1,5,14,8,7,11,5,1,9,14,2,11,14,8,13,9,10,13,9,10,13,9,1,7,3,13,9,1,1,14,8,3,3,0,6,1,9,14,3,3,10,3,5,15,14,8,15,14,8,0,7,11,9,14,2,7,3,7,15,14,8,6,14,8,9,14,1,9,14,1,9,14,1,9,14,11,7,13,9,1,7,3,4,3,7,12,11,7,9,14,2,0,7,6,4,2,2,9,14,11,9,14,11,11,14,8,0,0,15,3,6,5,4,5,5,6,9,14,11,6,11,2,12,11,10,13,9,10,13,9,1,1,9,14,1,9,6,4,0,2,5,1,9,14,11,5,9,5,11,14,8,3,9,14,1,9,0,14,8,5,8,11,10,13,11,2,9,0,10,13,9,1,7,12,11,3,7,4,12,11,1,9,14,11,14,8,12,11,14,8,7,14,8,10,13,9,10,13,9,10,3,2,3,2,8,14,8,8,12,11,2,7,5,5,11,14,8,9,14,11,0,5,4,9,14,2,14,8,10,13,9,10,13,9,10,13,9,1,1,9,14,11,13,9,1,9,14,1,9,14,11,14,8,10,13,9,1,7,11,9,14,11,8,5,5,12,11,11,5,3,15,10,13,9,1,1,9,14,13,7,3,3,11,8,5,0,10,13,9,10,13,9,5,11,11,2,2,14,8,14,8,3,8,3,5,2,11,10,13,9,1,7,11,9,14,1,9,14,14,8,3,7,7,3,10,13,9,1,1,9,14,11,7,11,13,1,9,14,2,0,6,0,13,9,10,13,9,10,13,9,10,13,9,1,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"5\", \"1\", \"9\"], \"clip_start\": 161.0, \"clip_end\": 166.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,14,8,6,13,9,1,1,9,14,11,15,10,13,9,10,13,2,11,6,8,2,7,5,6,11,13,9,10,13,9,1,9,14,2,6,5,1,9,14,1,9,7,7,0,10,13,9,10,13,9,10,13,9,3,2,0,4,2,14,8,13,9,10,4,5,2,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,1,9,10,13,9,10,13,9,10,13,9,1,7,12,11,7,2,5,11,0,1,9,14,1,9,14,2,10,13,9,10,13,9,1,1,9,14,1,9,14,1,9,14,11,2,4,4,12,11,5,1,9,14,2,11,13,9,10,13,9,10,13,9,1,5,14,8,7,11,5,1,9,14,2,11,14,8,13,9,10,13,9,10,13,9,1,7,3,13,9,1,1,14,8,3,3,0,6,1,9,14,3,3,10,3,5,15,14,8,15,14,8,0,7,11,9,14,2,7,3,7,15,14,8,6,14,8,9,14,1,9,14,1,9,14,1,9,14,11,7,13,9,1,7,3,4,3,7,12,11,7,9,14,2,0,7,6,4,2,2,9,14,11,9,14,11,11,14,8,0,0,15,3,6,5,4,5,5,6,9,14,11,6,11,2,12,11,10,13,9,10,13,9,1,1,9,14,1,9,6,4,0,2,5,1,9,14,11,5,9,5,11,14,8,3,9,14,1,9,0,14,8,5,8,11,10,13,11,2,9,0,10,13,9,1,7,12,11,3,7,4,12,11,1,9,14,11,14,8,12,11,14,8,7,14,8,10,13,9,10,13,9,10,3,2,3,2,8,14,8,8,12,11,2,7,5,5,11,14,8,9,14,11,0,5,4,9,14,2,14,8,10,13,9,10,13,9,10,13,9,1,1,9,14,11,13,9,1,9,14,1,9,14,11,14,8,10,13,9,1,7,11,9,14,11,8,5,5,12,11,11,5,3,15,10,13,9,1,1,9,14,13,7,3,3,11,8,5,0,10,13,9,10,13,9,5,11,11,2,2,14,8,14,8,3,8,3,5,2,11,10,13,9,1,7,11,9,14,1,9,14,14,8,3,7,7,3,10,13,9,1,1,9,14,11,7,11,13,1,9,14,2,0,6,0,13,9,10,13,9,10,13,9,10,13,9,1,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"0\", \"10\", \"13\", \"9\"], \"clip_start\": 44.0, \"clip_end\": 49.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "14,8,14,8,6,13,9,1,1,9,14,11,15,10,13,9,10,13,2,11,6,8,2,7,5,6,11,13,9,10,13,9,1,9,14,2,6,5,1,9,14,1,9,7,7,0,10,13,9,10,13,9,10,13,9,3,2,0,4,2,14,8,13,9,10,4,5,2,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,10,13,9,1,9,10,13,9,10,13,9,10,13,9,1,7,12,11,7,2,5,11,0,1,9,14,1,9,14,2,10,13,9,10,13,9,1,1,9,14,1,9,14,1,9,14,11,2,4,4,12,11,5,1,9,14,2,11,13,9,10,13,9,10,13,9,1,5,14,8,7,11,5,1,9,14,2,11,14,8,13,9,10,13,9,10,13,9,1,7,3,13,9,1,1,14,8,3,3,0,6,1,9,14,3,3,10,3,5,15,14,8,15,14,8,0,7,11,9,14,2,7,3,7,15,14,8,6,14,8,9,14,1,9,14,1,9,14,1,9,14,11,7,13,9,1,7,3,4,3,7,12,11,7,9,14,2,0,7,6,4,2,2,9,14,11,9,14,11,11,14,8,0,0,15,3,6,5,4,5,5,6,9,14,11,6,11,2,12,11,10,13,9,10,13,9,1,1,9,14,1,9,6,4,0,2,5,1,9,14,11,5,9,5,11,14,8,3,9,14,1,9,0,14,8,5,8,11,10,13,11,2,9,0,10,13,9,1,7,12,11,3,7,4,12,11,1,9,14,11,14,8,12,11,14,8,7,14,8,10,13,9,10,13,9,10,3,2,3,2,8,14,8,8,12,11,2,7,5,5,11,14,8,9,14,11,0,5,4,9,14,2,14,8,10,13,9,10,13,9,10,13,9,1,1,9,14,11,13,9,1,9,14,1,9,14,11,14,8,10,13,9,1,7,11,9,14,11,8,5,5,12,11,11,5,3,15,10,13,9,1,1,9,14,13,7,3,3,11,8,5,0,10,13,9,10,13,9,5,11,11,2,2,14,8,14,8,3,8,3,5,2,11,10,13,9,1,7,11,9,14,1,9,14,14,8,3,7,7,3,10,13,9,1,1,9,14,11,7,11,13,1,9,14,2,0,6,0,13,9,10,13,9,10,13,9,10,13,9,1,7", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"7\", \"12\", \"3\"], \"clip_start\": 95.0, \"clip_end\": 100.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,8,12,3,9,13,5,15,3,1,9,13,8,4,14,15,13,3,10,2,9,0,13,8,12,3,5,1,6,13,12,3,4,6,1,3,1,7,12,0,4,6,3,5,12,0,4,6,7,4,6,7,6,11,8,12,3,7,0,7,14,15,13,3,1,3,8,12,3,4,14,15,13,3,0,13,8,4,9,13,14,15,13,3,13,1,10,5,8,4,6,7,12,0,4,6,6,7,12,3,6,2,10,0,7,14,15,13,3,8,4,14,15,13,3,3,1,10,5,3,10,0,13,8,12,3,12,3,1,8,4,14,15,0,7,14,15,0,7,14,15,13,3,3,1,10,5,13,6,5,0,13,8,12,13,10,15,1,14,15,13,3,5,14,15,0,7,14,15,13,3,4,6,0,13,8,12,3,1,9,0,7,14,15,13,3,15,1,11,8,12,3,12,3,12,0,4,6,5,1,6,14,15,13,3,14,15,13,3,13,6,15,10,0,13,8,12,3,3,2,9,0,13,8,12,3,8,4,6,15,10,0,13,8,12,3,2,11,8,1,3,9,13,9,15,3,5,4,14,15,0,7,14,15,13,3,8,12,0,4,1,5,5,4,9,13,8,4,14,15,0,13,8,12,3,2,11,8,4,6,13,4,6,8,12,3,5,0,13,8,12,0,4,6,11,8,4,14,15,0,7,14,15,13,3,14,15,15,3,1,13,2,7,7,7,12,3,7,1,6,7,6,15,1,8,4,14,15,13,3,6,6,6,10,0,7,14,15,13,3,4,14,15,13,3,10,0,7,14,15,13,3,2,7,7,7,4,6,11,8,4,14,15,0,13,8,12,0,4,14,15,13,3,13,11,8,4,9,13,7,8,12,0,4,14,15,13,3,15,3,4,9,13,12,0,4,9,13,7,1,12,3,0,13,8,12,3,0,13,8,12,0,4,14,15,13,3,9,13,2,13,6,15,3,1,10,5,14,15,13,3,1,14,15,0,13,8,12,0,4,6,11,8,12,0,4,6,12,0,4,14,12,0,4,14,15,13,3,0,7,14,15,13,3,11,8,4,6,6,8,12,3,7,6,11,12,0,4,14,15,13,3,7,12,0,4,6,5,10,0,13,8,4,14,15,0,13,8,12,3,3,15,3,8,12,0,4,10,5,8,12,3", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"14\", \"15\", \"0\", \"13\"], \"clip_start\": 267.0, \"clip_end\": 272.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,8,12,3,9,13,5,15,3,1,9,13,8,4,14,15,13,3,10,2,9,0,13,8,12,3,5,1,6,13,12,3,4,6,1,3,1,7,12,0,4,6,3,5,12,0,4,6,7,4,6,7,6,11,8,12,3,7,0,7,14,15,13,3,1,3,8,12,3,4,14,15,13,3,0,13,8,4,9,13,14,15,13,3,13,1,10,5,8,4,6,7,12,0,4,6,6,7,12,3,6,2,10,0,7,14,15,13,3,8,4,14,15,13,3,3,1,10,5,3,10,0,13,8,12,3,12,3,1,8,4,14,15,0,7,14,15,0,7,14,15,13,3,3,1,10,5,13,6,5,0,13,8,12,13,10,15,1,14,15,13,3,5,14,15,0,7,14,15,13,3,4,6,0,13,8,12,3,1,9,0,7,14,15,13,3,15,1,11,8,12,3,12,3,12,0,4,6,5,1,6,14,15,13,3,14,15,13,3,13,6,15,10,0,13,8,12,3,3,2,9,0,13,8,12,3,8,4,6,15,10,0,13,8,12,3,2,11,8,1,3,9,13,9,15,3,5,4,14,15,0,7,14,15,13,3,8,12,0,4,1,5,5,4,9,13,8,4,14,15,0,13,8,12,3,2,11,8,4,6,13,4,6,8,12,3,5,0,13,8,12,0,4,6,11,8,4,14,15,0,7,14,15,13,3,14,15,15,3,1,13,2,7,7,7,12,3,7,1,6,7,6,15,1,8,4,14,15,13,3,6,6,6,10,0,7,14,15,13,3,4,14,15,13,3,10,0,7,14,15,13,3,2,7,7,7,4,6,11,8,4,14,15,0,13,8,12,0,4,14,15,13,3,13,11,8,4,9,13,7,8,12,0,4,14,15,13,3,15,3,4,9,13,12,0,4,9,13,7,1,12,3,0,13,8,12,3,0,13,8,12,0,4,14,15,13,3,9,13,2,13,6,15,3,1,10,5,14,15,13,3,1,14,15,0,13,8,12,0,4,6,11,8,12,0,4,6,12,0,4,14,12,0,4,14,15,13,3,0,7,14,15,13,3,11,8,4,6,6,8,12,3,7,6,11,12,0,4,14,15,13,3,7,12,0,4,6,5,10,0,13,8,4,14,15,0,13,8,12,3,3,15,3,8,12,0,4,10,5,8,12,3", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"15\", \"13\", \"3\"], \"clip_start\": 459.0, \"clip_end\": 464.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,8,12,3,9,13,5,15,3,1,9,13,8,4,14,15,13,3,10,2,9,0,13,8,12,3,5,1,6,13,12,3,4,6,1,3,1,7,12,0,4,6,3,5,12,0,4,6,7,4,6,7,6,11,8,12,3,7,0,7,14,15,13,3,1,3,8,12,3,4,14,15,13,3,0,13,8,4,9,13,14,15,13,3,13,1,10,5,8,4,6,7,12,0,4,6,6,7,12,3,6,2,10,0,7,14,15,13,3,8,4,14,15,13,3,3,1,10,5,3,10,0,13,8,12,3,12,3,1,8,4,14,15,0,7,14,15,0,7,14,15,13,3,3,1,10,5,13,6,5,0,13,8,12,13,10,15,1,14,15,13,3,5,14,15,0,7,14,15,13,3,4,6,0,13,8,12,3,1,9,0,7,14,15,13,3,15,1,11,8,12,3,12,3,12,0,4,6,5,1,6,14,15,13,3,14,15,13,3,13,6,15,10,0,13,8,12,3,3,2,9,0,13,8,12,3,8,4,6,15,10,0,13,8,12,3,2,11,8,1,3,9,13,9,15,3,5,4,14,15,0,7,14,15,13,3,8,12,0,4,1,5,5,4,9,13,8,4,14,15,0,13,8,12,3,2,11,8,4,6,13,4,6,8,12,3,5,0,13,8,12,0,4,6,11,8,4,14,15,0,7,14,15,13,3,14,15,15,3,1,13,2,7,7,7,12,3,7,1,6,7,6,15,1,8,4,14,15,13,3,6,6,6,10,0,7,14,15,13,3,4,14,15,13,3,10,0,7,14,15,13,3,2,7,7,7,4,6,11,8,4,14,15,0,13,8,12,0,4,14,15,13,3,13,11,8,4,9,13,7,8,12,0,4,14,15,13,3,15,3,4,9,13,12,0,4,9,13,7,1,12,3,0,13,8,12,3,0,13,8,12,0,4,14,15,13,3,9,13,2,13,6,15,3,1,10,5,14,15,13,3,1,14,15,0,13,8,12,0,4,6,11,8,12,0,4,6,12,0,4,14,12,0,4,14,15,13,3,0,7,14,15,13,3,11,8,4,6,6,8,12,3,7,6,11,12,0,4,14,15,13,3,7,12,0,4,6,5,10,0,13,8,4,14,15,0,13,8,12,3,3,15,3,8,12,0,4,10,5,8,12,3", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"8\", \"4\", \"6\"], \"clip_start\": 86.0, \"clip_end\": 91.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,8,12,3,9,13,5,15,3,1,9,13,8,4,14,15,13,3,10,2,9,0,13,8,12,3,5,1,6,13,12,3,4,6,1,3,1,7,12,0,4,6,3,5,12,0,4,6,7,4,6,7,6,11,8,12,3,7,0,7,14,15,13,3,1,3,8,12,3,4,14,15,13,3,0,13,8,4,9,13,14,15,13,3,13,1,10,5,8,4,6,7,12,0,4,6,6,7,12,3,6,2,10,0,7,14,15,13,3,8,4,14,15,13,3,3,1,10,5,3,10,0,13,8,12,3,12,3,1,8,4,14,15,0,7,14,15,0,7,14,15,13,3,3,1,10,5,13,6,5,0,13,8,12,13,10,15,1,14,15,13,3,5,14,15,0,7,14,15,13,3,4,6,0,13,8,12,3,1,9,0,7,14,15,13,3,15,1,11,8,12,3,12,3,12,0,4,6,5,1,6,14,15,13,3,14,15,13,3,13,6,15,10,0,13,8,12,3,3,2,9,0,13,8,12,3,8,4,6,15,10,0,13,8,12,3,2,11,8,1,3,9,13,9,15,3,5,4,14,15,0,7,14,15,13,3,8,12,0,4,1,5,5,4,9,13,8,4,14,15,0,13,8,12,3,2,11,8,4,6,13,4,6,8,12,3,5,0,13,8,12,0,4,6,11,8,4,14,15,0,7,14,15,13,3,14,15,15,3,1,13,2,7,7,7,12,3,7,1,6,7,6,15,1,8,4,14,15,13,3,6,6,6,10,0,7,14,15,13,3,4,14,15,13,3,10,0,7,14,15,13,3,2,7,7,7,4,6,11,8,4,14,15,0,13,8,12,0,4,14,15,13,3,13,11,8,4,9,13,7,8,12,0,4,14,15,13,3,15,3,4,9,13,12,0,4,9,13,7,1,12,3,0,13,8,12,3,0,13,8,12,0,4,14,15,13,3,9,13,2,13,6,15,3,1,10,5,14,15,13,3,1,14,15,0,13,8,12,0,4,6,11,8,12,0,4,6,12,0,4,14,12,0,4,14,15,13,3,0,7,14,15,13,3,11,8,4,6,6,8,12,3,7,6,11,12,0,4,14,15,13,3,7,12,0,4,6,5,10,0,13,8,4,14,15,0,13,8,12,3,3,15,3,8,12,0,4,10,5,8,12,3", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"9\", \"0\", \"13\"], \"clip_start\": 218.0, \"clip_end\": 223.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,8,12,3,9,13,5,15,3,1,9,13,8,4,14,15,13,3,10,2,9,0,13,8,12,3,5,1,6,13,12,3,4,6,1,3,1,7,12,0,4,6,3,5,12,0,4,6,7,4,6,7,6,11,8,12,3,7,0,7,14,15,13,3,1,3,8,12,3,4,14,15,13,3,0,13,8,4,9,13,14,15,13,3,13,1,10,5,8,4,6,7,12,0,4,6,6,7,12,3,6,2,10,0,7,14,15,13,3,8,4,14,15,13,3,3,1,10,5,3,10,0,13,8,12,3,12,3,1,8,4,14,15,0,7,14,15,0,7,14,15,13,3,3,1,10,5,13,6,5,0,13,8,12,13,10,15,1,14,15,13,3,5,14,15,0,7,14,15,13,3,4,6,0,13,8,12,3,1,9,0,7,14,15,13,3,15,1,11,8,12,3,12,3,12,0,4,6,5,1,6,14,15,13,3,14,15,13,3,13,6,15,10,0,13,8,12,3,3,2,9,0,13,8,12,3,8,4,6,15,10,0,13,8,12,3,2,11,8,1,3,9,13,9,15,3,5,4,14,15,0,7,14,15,13,3,8,12,0,4,1,5,5,4,9,13,8,4,14,15,0,13,8,12,3,2,11,8,4,6,13,4,6,8,12,3,5,0,13,8,12,0,4,6,11,8,4,14,15,0,7,14,15,13,3,14,15,15,3,1,13,2,7,7,7,12,3,7,1,6,7,6,15,1,8,4,14,15,13,3,6,6,6,10,0,7,14,15,13,3,4,14,15,13,3,10,0,7,14,15,13,3,2,7,7,7,4,6,11,8,4,14,15,0,13,8,12,0,4,14,15,13,3,13,11,8,4,9,13,7,8,12,0,4,14,15,13,3,15,3,4,9,13,12,0,4,9,13,7,1,12,3,0,13,8,12,3,0,13,8,12,0,4,14,15,13,3,9,13,2,13,6,15,3,1,10,5,14,15,13,3,1,14,15,0,13,8,12,0,4,6,11,8,12,0,4,6,12,0,4,14,12,0,4,14,15,13,3,0,7,14,15,13,3,11,8,4,6,6,8,12,3,7,6,11,12,0,4,14,15,13,3,7,12,0,4,6,5,10,0,13,8,4,14,15,0,13,8,12,3,3,15,3,8,12,0,4,10,5,8,12,3", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"2\", \"10\", \"0\"], \"clip_start\": 100.0, \"clip_end\": 104.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,8,12,3,9,13,5,15,3,1,9,13,8,4,14,15,13,3,10,2,9,0,13,8,12,3,5,1,6,13,12,3,4,6,1,3,1,7,12,0,4,6,3,5,12,0,4,6,7,4,6,7,6,11,8,12,3,7,0,7,14,15,13,3,1,3,8,12,3,4,14,15,13,3,0,13,8,4,9,13,14,15,13,3,13,1,10,5,8,4,6,7,12,0,4,6,6,7,12,3,6,2,10,0,7,14,15,13,3,8,4,14,15,13,3,3,1,10,5,3,10,0,13,8,12,3,12,3,1,8,4,14,15,0,7,14,15,0,7,14,15,13,3,3,1,10,5,13,6,5,0,13,8,12,13,10,15,1,14,15,13,3,5,14,15,0,7,14,15,13,3,4,6,0,13,8,12,3,1,9,0,7,14,15,13,3,15,1,11,8,12,3,12,3,12,0,4,6,5,1,6,14,15,13,3,14,15,13,3,13,6,15,10,0,13,8,12,3,3,2,9,0,13,8,12,3,8,4,6,15,10,0,13,8,12,3,2,11,8,1,3,9,13,9,15,3,5,4,14,15,0,7,14,15,13,3,8,12,0,4,1,5,5,4,9,13,8,4,14,15,0,13,8,12,3,2,11,8,4,6,13,4,6,8,12,3,5,0,13,8,12,0,4,6,11,8,4,14,15,0,7,14,15,13,3,14,15,15,3,1,13,2,7,7,7,12,3,7,1,6,7,6,15,1,8,4,14,15,13,3,6,6,6,10,0,7,14,15,13,3,4,14,15,13,3,10,0,7,14,15,13,3,2,7,7,7,4,6,11,8,4,14,15,0,13,8,12,0,4,14,15,13,3,13,11,8,4,9,13,7,8,12,0,4,14,15,13,3,15,3,4,9,13,12,0,4,9,13,7,1,12,3,0,13,8,12,3,0,13,8,12,0,4,14,15,13,3,9,13,2,13,6,15,3,1,10,5,14,15,13,3,1,14,15,0,13,8,12,0,4,6,11,8,12,0,4,6,12,0,4,14,12,0,4,14,15,13,3,0,7,14,15,13,3,11,8,4,6,6,8,12,3,7,6,11,12,0,4,14,15,13,3,7,12,0,4,6,5,10,0,13,8,4,14,15,0,13,8,12,3,3,15,3,8,12,0,4,10,5,8,12,3", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 431.0, \"clip_end\": 434.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,8,12,3,9,13,5,15,3,1,9,13,8,4,14,15,13,3,10,2,9,0,13,8,12,3,5,1,6,13,12,3,4,6,1,3,1,7,12,0,4,6,3,5,12,0,4,6,7,4,6,7,6,11,8,12,3,7,0,7,14,15,13,3,1,3,8,12,3,4,14,15,13,3,0,13,8,4,9,13,14,15,13,3,13,1,10,5,8,4,6,7,12,0,4,6,6,7,12,3,6,2,10,0,7,14,15,13,3,8,4,14,15,13,3,3,1,10,5,3,10,0,13,8,12,3,12,3,1,8,4,14,15,0,7,14,15,0,7,14,15,13,3,3,1,10,5,13,6,5,0,13,8,12,13,10,15,1,14,15,13,3,5,14,15,0,7,14,15,13,3,4,6,0,13,8,12,3,1,9,0,7,14,15,13,3,15,1,11,8,12,3,12,3,12,0,4,6,5,1,6,14,15,13,3,14,15,13,3,13,6,15,10,0,13,8,12,3,3,2,9,0,13,8,12,3,8,4,6,15,10,0,13,8,12,3,2,11,8,1,3,9,13,9,15,3,5,4,14,15,0,7,14,15,13,3,8,12,0,4,1,5,5,4,9,13,8,4,14,15,0,13,8,12,3,2,11,8,4,6,13,4,6,8,12,3,5,0,13,8,12,0,4,6,11,8,4,14,15,0,7,14,15,13,3,14,15,15,3,1,13,2,7,7,7,12,3,7,1,6,7,6,15,1,8,4,14,15,13,3,6,6,6,10,0,7,14,15,13,3,4,14,15,13,3,10,0,7,14,15,13,3,2,7,7,7,4,6,11,8,4,14,15,0,13,8,12,0,4,14,15,13,3,13,11,8,4,9,13,7,8,12,0,4,14,15,13,3,15,3,4,9,13,12,0,4,9,13,7,1,12,3,0,13,8,12,3,0,13,8,12,0,4,14,15,13,3,9,13,2,13,6,15,3,1,10,5,14,15,13,3,1,14,15,0,13,8,12,0,4,6,11,8,12,0,4,6,12,0,4,14,12,0,4,14,15,13,3,0,7,14,15,13,3,11,8,4,6,6,8,12,3,7,6,11,12,0,4,14,15,13,3,7,12,0,4,6,5,10,0,13,8,4,14,15,0,13,8,12,3,3,15,3,8,12,0,4,10,5,8,12,3", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"3\", \"1\"], \"clip_start\": 141.0, \"clip_end\": 145.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,8,12,3,9,13,5,15,3,1,9,13,8,4,14,15,13,3,10,2,9,0,13,8,12,3,5,1,6,13,12,3,4,6,1,3,1,7,12,0,4,6,3,5,12,0,4,6,7,4,6,7,6,11,8,12,3,7,0,7,14,15,13,3,1,3,8,12,3,4,14,15,13,3,0,13,8,4,9,13,14,15,13,3,13,1,10,5,8,4,6,7,12,0,4,6,6,7,12,3,6,2,10,0,7,14,15,13,3,8,4,14,15,13,3,3,1,10,5,3,10,0,13,8,12,3,12,3,1,8,4,14,15,0,7,14,15,0,7,14,15,13,3,3,1,10,5,13,6,5,0,13,8,12,13,10,15,1,14,15,13,3,5,14,15,0,7,14,15,13,3,4,6,0,13,8,12,3,1,9,0,7,14,15,13,3,15,1,11,8,12,3,12,3,12,0,4,6,5,1,6,14,15,13,3,14,15,13,3,13,6,15,10,0,13,8,12,3,3,2,9,0,13,8,12,3,8,4,6,15,10,0,13,8,12,3,2,11,8,1,3,9,13,9,15,3,5,4,14,15,0,7,14,15,13,3,8,12,0,4,1,5,5,4,9,13,8,4,14,15,0,13,8,12,3,2,11,8,4,6,13,4,6,8,12,3,5,0,13,8,12,0,4,6,11,8,4,14,15,0,7,14,15,13,3,14,15,15,3,1,13,2,7,7,7,12,3,7,1,6,7,6,15,1,8,4,14,15,13,3,6,6,6,10,0,7,14,15,13,3,4,14,15,13,3,10,0,7,14,15,13,3,2,7,7,7,4,6,11,8,4,14,15,0,13,8,12,0,4,14,15,13,3,13,11,8,4,9,13,7,8,12,0,4,14,15,13,3,15,3,4,9,13,12,0,4,9,13,7,1,12,3,0,13,8,12,3,0,13,8,12,0,4,14,15,13,3,9,13,2,13,6,15,3,1,10,5,14,15,13,3,1,14,15,0,13,8,12,0,4,6,11,8,12,0,4,6,12,0,4,14,12,0,4,14,15,13,3,0,7,14,15,13,3,11,8,4,6,6,8,12,3,7,6,11,12,0,4,14,15,13,3,7,12,0,4,6,5,10,0,13,8,4,14,15,0,13,8,12,3,3,15,3,8,12,0,4,10,5,8,12,3", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"0\", \"7\", \"14\"], \"clip_start\": 131.0, \"clip_end\": 136.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,8,12,3,9,13,5,15,3,1,9,13,8,4,14,15,13,3,10,2,9,0,13,8,12,3,5,1,6,13,12,3,4,6,1,3,1,7,12,0,4,6,3,5,12,0,4,6,7,4,6,7,6,11,8,12,3,7,0,7,14,15,13,3,1,3,8,12,3,4,14,15,13,3,0,13,8,4,9,13,14,15,13,3,13,1,10,5,8,4,6,7,12,0,4,6,6,7,12,3,6,2,10,0,7,14,15,13,3,8,4,14,15,13,3,3,1,10,5,3,10,0,13,8,12,3,12,3,1,8,4,14,15,0,7,14,15,0,7,14,15,13,3,3,1,10,5,13,6,5,0,13,8,12,13,10,15,1,14,15,13,3,5,14,15,0,7,14,15,13,3,4,6,0,13,8,12,3,1,9,0,7,14,15,13,3,15,1,11,8,12,3,12,3,12,0,4,6,5,1,6,14,15,13,3,14,15,13,3,13,6,15,10,0,13,8,12,3,3,2,9,0,13,8,12,3,8,4,6,15,10,0,13,8,12,3,2,11,8,1,3,9,13,9,15,3,5,4,14,15,0,7,14,15,13,3,8,12,0,4,1,5,5,4,9,13,8,4,14,15,0,13,8,12,3,2,11,8,4,6,13,4,6,8,12,3,5,0,13,8,12,0,4,6,11,8,4,14,15,0,7,14,15,13,3,14,15,15,3,1,13,2,7,7,7,12,3,7,1,6,7,6,15,1,8,4,14,15,13,3,6,6,6,10,0,7,14,15,13,3,4,14,15,13,3,10,0,7,14,15,13,3,2,7,7,7,4,6,11,8,4,14,15,0,13,8,12,0,4,14,15,13,3,13,11,8,4,9,13,7,8,12,0,4,14,15,13,3,15,3,4,9,13,12,0,4,9,13,7,1,12,3,0,13,8,12,3,0,13,8,12,0,4,14,15,13,3,9,13,2,13,6,15,3,1,10,5,14,15,13,3,1,14,15,0,13,8,12,0,4,6,11,8,12,0,4,6,12,0,4,14,12,0,4,14,15,13,3,0,7,14,15,13,3,11,8,4,6,6,8,12,3,7,6,11,12,0,4,14,15,13,3,7,12,0,4,6,5,10,0,13,8,4,14,15,0,13,8,12,3,3,15,3,8,12,0,4,10,5,8,12,3", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"8\", \"12\"], \"clip_start\": 221.0, \"clip_end\": 225.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,8,12,3,9,13,5,15,3,1,9,13,8,4,14,15,13,3,10,2,9,0,13,8,12,3,5,1,6,13,12,3,4,6,1,3,1,7,12,0,4,6,3,5,12,0,4,6,7,4,6,7,6,11,8,12,3,7,0,7,14,15,13,3,1,3,8,12,3,4,14,15,13,3,0,13,8,4,9,13,14,15,13,3,13,1,10,5,8,4,6,7,12,0,4,6,6,7,12,3,6,2,10,0,7,14,15,13,3,8,4,14,15,13,3,3,1,10,5,3,10,0,13,8,12,3,12,3,1,8,4,14,15,0,7,14,15,0,7,14,15,13,3,3,1,10,5,13,6,5,0,13,8,12,13,10,15,1,14,15,13,3,5,14,15,0,7,14,15,13,3,4,6,0,13,8,12,3,1,9,0,7,14,15,13,3,15,1,11,8,12,3,12,3,12,0,4,6,5,1,6,14,15,13,3,14,15,13,3,13,6,15,10,0,13,8,12,3,3,2,9,0,13,8,12,3,8,4,6,15,10,0,13,8,12,3,2,11,8,1,3,9,13,9,15,3,5,4,14,15,0,7,14,15,13,3,8,12,0,4,1,5,5,4,9,13,8,4,14,15,0,13,8,12,3,2,11,8,4,6,13,4,6,8,12,3,5,0,13,8,12,0,4,6,11,8,4,14,15,0,7,14,15,13,3,14,15,15,3,1,13,2,7,7,7,12,3,7,1,6,7,6,15,1,8,4,14,15,13,3,6,6,6,10,0,7,14,15,13,3,4,14,15,13,3,10,0,7,14,15,13,3,2,7,7,7,4,6,11,8,4,14,15,0,13,8,12,0,4,14,15,13,3,13,11,8,4,9,13,7,8,12,0,4,14,15,13,3,15,3,4,9,13,12,0,4,9,13,7,1,12,3,0,13,8,12,3,0,13,8,12,0,4,14,15,13,3,9,13,2,13,6,15,3,1,10,5,14,15,13,3,1,14,15,0,13,8,12,0,4,6,11,8,12,0,4,6,12,0,4,14,12,0,4,14,15,13,3,0,7,14,15,13,3,11,8,4,6,6,8,12,3,7,6,11,12,0,4,14,15,13,3,7,12,0,4,6,5,10,0,13,8,4,14,15,0,13,8,12,3,3,15,3,8,12,0,4,10,5,8,12,3", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"2\", \"11\", \"8\"], \"clip_start\": 234.0, \"clip_end\": 239.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,8,12,3,9,13,5,15,3,1,9,13,8,4,14,15,13,3,10,2,9,0,13,8,12,3,5,1,6,13,12,3,4,6,1,3,1,7,12,0,4,6,3,5,12,0,4,6,7,4,6,7,6,11,8,12,3,7,0,7,14,15,13,3,1,3,8,12,3,4,14,15,13,3,0,13,8,4,9,13,14,15,13,3,13,1,10,5,8,4,6,7,12,0,4,6,6,7,12,3,6,2,10,0,7,14,15,13,3,8,4,14,15,13,3,3,1,10,5,3,10,0,13,8,12,3,12,3,1,8,4,14,15,0,7,14,15,0,7,14,15,13,3,3,1,10,5,13,6,5,0,13,8,12,13,10,15,1,14,15,13,3,5,14,15,0,7,14,15,13,3,4,6,0,13,8,12,3,1,9,0,7,14,15,13,3,15,1,11,8,12,3,12,3,12,0,4,6,5,1,6,14,15,13,3,14,15,13,3,13,6,15,10,0,13,8,12,3,3,2,9,0,13,8,12,3,8,4,6,15,10,0,13,8,12,3,2,11,8,1,3,9,13,9,15,3,5,4,14,15,0,7,14,15,13,3,8,12,0,4,1,5,5,4,9,13,8,4,14,15,0,13,8,12,3,2,11,8,4,6,13,4,6,8,12,3,5,0,13,8,12,0,4,6,11,8,4,14,15,0,7,14,15,13,3,14,15,15,3,1,13,2,7,7,7,12,3,7,1,6,7,6,15,1,8,4,14,15,13,3,6,6,6,10,0,7,14,15,13,3,4,14,15,13,3,10,0,7,14,15,13,3,2,7,7,7,4,6,11,8,4,14,15,0,13,8,12,0,4,14,15,13,3,13,11,8,4,9,13,7,8,12,0,4,14,15,13,3,15,3,4,9,13,12,0,4,9,13,7,1,12,3,0,13,8,12,3,0,13,8,12,0,4,14,15,13,3,9,13,2,13,6,15,3,1,10,5,14,15,13,3,1,14,15,0,13,8,12,0,4,6,11,8,12,0,4,6,12,0,4,14,12,0,4,14,15,13,3,0,7,14,15,13,3,11,8,4,6,6,8,12,3,7,6,11,12,0,4,14,15,13,3,7,12,0,4,6,5,10,0,13,8,4,14,15,0,13,8,12,3,3,15,3,8,12,0,4,10,5,8,12,3", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"7\", \"14\", \"15\"], \"clip_start\": 334.0, \"clip_end\": 338.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,8,12,3,9,13,5,15,3,1,9,13,8,4,14,15,13,3,10,2,9,0,13,8,12,3,5,1,6,13,12,3,4,6,1,3,1,7,12,0,4,6,3,5,12,0,4,6,7,4,6,7,6,11,8,12,3,7,0,7,14,15,13,3,1,3,8,12,3,4,14,15,13,3,0,13,8,4,9,13,14,15,13,3,13,1,10,5,8,4,6,7,12,0,4,6,6,7,12,3,6,2,10,0,7,14,15,13,3,8,4,14,15,13,3,3,1,10,5,3,10,0,13,8,12,3,12,3,1,8,4,14,15,0,7,14,15,0,7,14,15,13,3,3,1,10,5,13,6,5,0,13,8,12,13,10,15,1,14,15,13,3,5,14,15,0,7,14,15,13,3,4,6,0,13,8,12,3,1,9,0,7,14,15,13,3,15,1,11,8,12,3,12,3,12,0,4,6,5,1,6,14,15,13,3,14,15,13,3,13,6,15,10,0,13,8,12,3,3,2,9,0,13,8,12,3,8,4,6,15,10,0,13,8,12,3,2,11,8,1,3,9,13,9,15,3,5,4,14,15,0,7,14,15,13,3,8,12,0,4,1,5,5,4,9,13,8,4,14,15,0,13,8,12,3,2,11,8,4,6,13,4,6,8,12,3,5,0,13,8,12,0,4,6,11,8,4,14,15,0,7,14,15,13,3,14,15,15,3,1,13,2,7,7,7,12,3,7,1,6,7,6,15,1,8,4,14,15,13,3,6,6,6,10,0,7,14,15,13,3,4,14,15,13,3,10,0,7,14,15,13,3,2,7,7,7,4,6,11,8,4,14,15,0,13,8,12,0,4,14,15,13,3,13,11,8,4,9,13,7,8,12,0,4,14,15,13,3,15,3,4,9,13,12,0,4,9,13,7,1,12,3,0,13,8,12,3,0,13,8,12,0,4,14,15,13,3,9,13,2,13,6,15,3,1,10,5,14,15,13,3,1,14,15,0,13,8,12,0,4,6,11,8,12,0,4,6,12,0,4,14,12,0,4,14,15,13,3,0,7,14,15,13,3,11,8,4,6,6,8,12,3,7,6,11,12,0,4,14,15,13,3,7,12,0,4,6,5,10,0,13,8,4,14,15,0,13,8,12,3,3,15,3,8,12,0,4,10,5,8,12,3", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\"], \"clip_start\": 163.0, \"clip_end\": 166.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,8,12,3,9,13,5,15,3,1,9,13,8,4,14,15,13,3,10,2,9,0,13,8,12,3,5,1,6,13,12,3,4,6,1,3,1,7,12,0,4,6,3,5,12,0,4,6,7,4,6,7,6,11,8,12,3,7,0,7,14,15,13,3,1,3,8,12,3,4,14,15,13,3,0,13,8,4,9,13,14,15,13,3,13,1,10,5,8,4,6,7,12,0,4,6,6,7,12,3,6,2,10,0,7,14,15,13,3,8,4,14,15,13,3,3,1,10,5,3,10,0,13,8,12,3,12,3,1,8,4,14,15,0,7,14,15,0,7,14,15,13,3,3,1,10,5,13,6,5,0,13,8,12,13,10,15,1,14,15,13,3,5,14,15,0,7,14,15,13,3,4,6,0,13,8,12,3,1,9,0,7,14,15,13,3,15,1,11,8,12,3,12,3,12,0,4,6,5,1,6,14,15,13,3,14,15,13,3,13,6,15,10,0,13,8,12,3,3,2,9,0,13,8,12,3,8,4,6,15,10,0,13,8,12,3,2,11,8,1,3,9,13,9,15,3,5,4,14,15,0,7,14,15,13,3,8,12,0,4,1,5,5,4,9,13,8,4,14,15,0,13,8,12,3,2,11,8,4,6,13,4,6,8,12,3,5,0,13,8,12,0,4,6,11,8,4,14,15,0,7,14,15,13,3,14,15,15,3,1,13,2,7,7,7,12,3,7,1,6,7,6,15,1,8,4,14,15,13,3,6,6,6,10,0,7,14,15,13,3,4,14,15,13,3,10,0,7,14,15,13,3,2,7,7,7,4,6,11,8,4,14,15,0,13,8,12,0,4,14,15,13,3,13,11,8,4,9,13,7,8,12,0,4,14,15,13,3,15,3,4,9,13,12,0,4,9,13,7,1,12,3,0,13,8,12,3,0,13,8,12,0,4,14,15,13,3,9,13,2,13,6,15,3,1,10,5,14,15,13,3,1,14,15,0,13,8,12,0,4,6,11,8,12,0,4,6,12,0,4,14,12,0,4,14,15,13,3,0,7,14,15,13,3,11,8,4,6,6,8,12,3,7,6,11,12,0,4,14,15,13,3,7,12,0,4,6,5,10,0,13,8,4,14,15,0,13,8,12,3,3,15,3,8,12,0,4,10,5,8,12,3", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"15\", \"1\", \"14\", \"15\"], \"clip_start\": 154.0, \"clip_end\": 160.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q13_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,8,12,3,9,13,5,15,3,1,9,13,8,4,14,15,13,3,10,2,9,0,13,8,12,3,5,1,6,13,12,3,4,6,1,3,1,7,12,0,4,6,3,5,12,0,4,6,7,4,6,7,6,11,8,12,3,7,0,7,14,15,13,3,1,3,8,12,3,4,14,15,13,3,0,13,8,4,9,13,14,15,13,3,13,1,10,5,8,4,6,7,12,0,4,6,6,7,12,3,6,2,10,0,7,14,15,13,3,8,4,14,15,13,3,3,1,10,5,3,10,0,13,8,12,3,12,3,1,8,4,14,15,0,7,14,15,0,7,14,15,13,3,3,1,10,5,13,6,5,0,13,8,12,13,10,15,1,14,15,13,3,5,14,15,0,7,14,15,13,3,4,6,0,13,8,12,3,1,9,0,7,14,15,13,3,15,1,11,8,12,3,12,3,12,0,4,6,5,1,6,14,15,13,3,14,15,13,3,13,6,15,10,0,13,8,12,3,3,2,9,0,13,8,12,3,8,4,6,15,10,0,13,8,12,3,2,11,8,1,3,9,13,9,15,3,5,4,14,15,0,7,14,15,13,3,8,12,0,4,1,5,5,4,9,13,8,4,14,15,0,13,8,12,3,2,11,8,4,6,13,4,6,8,12,3,5,0,13,8,12,0,4,6,11,8,4,14,15,0,7,14,15,13,3,14,15,15,3,1,13,2,7,7,7,12,3,7,1,6,7,6,15,1,8,4,14,15,13,3,6,6,6,10,0,7,14,15,13,3,4,14,15,13,3,10,0,7,14,15,13,3,2,7,7,7,4,6,11,8,4,14,15,0,13,8,12,0,4,14,15,13,3,13,11,8,4,9,13,7,8,12,0,4,14,15,13,3,15,3,4,9,13,12,0,4,9,13,7,1,12,3,0,13,8,12,3,0,13,8,12,0,4,14,15,13,3,9,13,2,13,6,15,3,1,10,5,14,15,13,3,1,14,15,0,13,8,12,0,4,6,11,8,12,0,4,6,12,0,4,14,12,0,4,14,15,13,3,0,7,14,15,13,3,11,8,4,6,6,8,12,3,7,6,11,12,0,4,14,15,13,3,7,12,0,4,6,5,10,0,13,8,4,14,15,0,13,8,12,3,3,15,3,8,12,0,4,10,5,8,12,3", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"15\", \"3\", \"8\", \"12\"], \"clip_start\": 499.0, \"clip_end\": 505.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,8,12,3,9,13,5,15,3,1,9,13,8,4,14,15,13,3,10,2,9,0,13,8,12,3,5,1,6,13,12,3,4,6,1,3,1,7,12,0,4,6,3,5,12,0,4,6,7,4,6,7,6,11,8,12,3,7,0,7,14,15,13,3,1,3,8,12,3,4,14,15,13,3,0,13,8,4,9,13,14,15,13,3,13,1,10,5,8,4,6,7,12,0,4,6,6,7,12,3,6,2,10,0,7,14,15,13,3,8,4,14,15,13,3,3,1,10,5,3,10,0,13,8,12,3,12,3,1,8,4,14,15,0,7,14,15,0,7,14,15,13,3,3,1,10,5,13,6,5,0,13,8,12,13,10,15,1,14,15,13,3,5,14,15,0,7,14,15,13,3,4,6,0,13,8,12,3,1,9,0,7,14,15,13,3,15,1,11,8,12,3,12,3,12,0,4,6,5,1,6,14,15,13,3,14,15,13,3,13,6,15,10,0,13,8,12,3,3,2,9,0,13,8,12,3,8,4,6,15,10,0,13,8,12,3,2,11,8,1,3,9,13,9,15,3,5,4,14,15,0,7,14,15,13,3,8,12,0,4,1,5,5,4,9,13,8,4,14,15,0,13,8,12,3,2,11,8,4,6,13,4,6,8,12,3,5,0,13,8,12,0,4,6,11,8,4,14,15,0,7,14,15,13,3,14,15,15,3,1,13,2,7,7,7,12,3,7,1,6,7,6,15,1,8,4,14,15,13,3,6,6,6,10,0,7,14,15,13,3,4,14,15,13,3,10,0,7,14,15,13,3,2,7,7,7,4,6,11,8,4,14,15,0,13,8,12,0,4,14,15,13,3,13,11,8,4,9,13,7,8,12,0,4,14,15,13,3,15,3,4,9,13,12,0,4,9,13,7,1,12,3,0,13,8,12,3,0,13,8,12,0,4,14,15,13,3,9,13,2,13,6,15,3,1,10,5,14,15,13,3,1,14,15,0,13,8,12,0,4,6,11,8,12,0,4,6,12,0,4,14,12,0,4,14,15,13,3,0,7,14,15,13,3,11,8,4,6,6,8,12,3,7,6,11,12,0,4,14,15,13,3,7,12,0,4,6,5,10,0,13,8,4,14,15,0,13,8,12,3,3,15,3,8,12,0,4,10,5,8,12,3", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"8\", \"4\", \"9\"], \"clip_start\": 74.0, \"clip_end\": 79.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,8,12,3,9,13,5,15,3,1,9,13,8,4,14,15,13,3,10,2,9,0,13,8,12,3,5,1,6,13,12,3,4,6,1,3,1,7,12,0,4,6,3,5,12,0,4,6,7,4,6,7,6,11,8,12,3,7,0,7,14,15,13,3,1,3,8,12,3,4,14,15,13,3,0,13,8,4,9,13,14,15,13,3,13,1,10,5,8,4,6,7,12,0,4,6,6,7,12,3,6,2,10,0,7,14,15,13,3,8,4,14,15,13,3,3,1,10,5,3,10,0,13,8,12,3,12,3,1,8,4,14,15,0,7,14,15,0,7,14,15,13,3,3,1,10,5,13,6,5,0,13,8,12,13,10,15,1,14,15,13,3,5,14,15,0,7,14,15,13,3,4,6,0,13,8,12,3,1,9,0,7,14,15,13,3,15,1,11,8,12,3,12,3,12,0,4,6,5,1,6,14,15,13,3,14,15,13,3,13,6,15,10,0,13,8,12,3,3,2,9,0,13,8,12,3,8,4,6,15,10,0,13,8,12,3,2,11,8,1,3,9,13,9,15,3,5,4,14,15,0,7,14,15,13,3,8,12,0,4,1,5,5,4,9,13,8,4,14,15,0,13,8,12,3,2,11,8,4,6,13,4,6,8,12,3,5,0,13,8,12,0,4,6,11,8,4,14,15,0,7,14,15,13,3,14,15,15,3,1,13,2,7,7,7,12,3,7,1,6,7,6,15,1,8,4,14,15,13,3,6,6,6,10,0,7,14,15,13,3,4,14,15,13,3,10,0,7,14,15,13,3,2,7,7,7,4,6,11,8,4,14,15,0,13,8,12,0,4,14,15,13,3,13,11,8,4,9,13,7,8,12,0,4,14,15,13,3,15,3,4,9,13,12,0,4,9,13,7,1,12,3,0,13,8,12,3,0,13,8,12,0,4,14,15,13,3,9,13,2,13,6,15,3,1,10,5,14,15,13,3,1,14,15,0,13,8,12,0,4,6,11,8,12,0,4,6,12,0,4,14,12,0,4,14,15,13,3,0,7,14,15,13,3,11,8,4,6,6,8,12,3,7,6,11,12,0,4,14,15,13,3,7,12,0,4,6,5,10,0,13,8,4,14,15,0,13,8,12,3,3,15,3,8,12,0,4,10,5,8,12,3", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 328.0, \"clip_end\": 332.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,2,2,9,7,12,14,5,6,2,13,1,8,13,1,7,14,0,13,1,7,15,15,4,0,13,1,8,5,3,0,11,6,15,3,1,8,5,10,6,2,6,2,6,2,6,15,6,15,8,5,9,1,3,1,2,12,14,13,14,0,13,1,14,0,11,6,15,10,1,11,4,2,0,11,6,15,6,2,7,8,13,1,0,13,1,14,0,11,0,13,1,9,7,15,7,13,1,12,14,4,13,1,3,1,1,9,5,12,2,8,9,1,5,11,4,2,5,3,1,12,4,1,2,10,14,0,11,0,13,1,8,5,6,15,3,0,13,1,4,14,0,13,1,14,6,4,14,0,11,8,13,1,7,2,8,5,9,7,0,11,0,11,0,11,6,2,13,1,12,14,15,0,11,0,11,6,4,14,0,11,0,13,1,9,1,9,7,6,2,13,1,8,5,11,4,9,1,3,0,13,1,7,14,0,13,2,15,2,10,5,5,15,1,6,15,14,6,15,11,7,9,7,14,0,11,0,13,1,5,7,8,5,15,11,4,2,14,0,11,6,2,6,2,13,12,14,14,0,13,1,11,4,2,12,14,14,5,13,1,14,0,13,1,15,1,15,4,14,0,11,0,11,6,15,4,14,6,2,7,2,6,4,14,0,13,1,5,1,3,0,11,2,14,0,11,6,4,14,0,13,1,14,0,13,1,5,9,1,5,5,2,1,6,2,13,1,9,7,3,0,13,1,8,5,14,6,15,14,0,11,6,2,13,1,4,14,0,13,1,7,9,1,8,13,9,3,1,0,11,0,13,1,11,4,2,12,14,13,1,10,14,0,11,0,11,6,15,15,7,3,14,6,4,14,0,11,2,3,0,11,2,3,15,0,11,0,11,6,15,7,11,4,2,4,14,0,11,6,4,14,0,13,1,14,0,13,1,11,4,2,12,14,14,0,11,0,11,0,11,0,13,1,10,5,8,5,4,14,0,13,1,5,12,14,14,0,11,6,2,6,2,6,15,4,14,0,13,1,3,0,13,1,0,11,14,0,11,6,4,14,0,11,6,2,13,1,1,5,0,11,2,13,1,11,10,5,13,1,5,4,14,0,13,1,7,5,10,1,10,5,6,15,5,10,14,0,11,2,1,13,1,5,8,5,12,14,14,0,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"1\", \"5\"], \"clip_start\": 304.0, \"clip_end\": 308.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,2,2,9,7,12,14,5,6,2,13,1,8,13,1,7,14,0,13,1,7,15,15,4,0,13,1,8,5,3,0,11,6,15,3,1,8,5,10,6,2,6,2,6,2,6,15,6,15,8,5,9,1,3,1,2,12,14,13,14,0,13,1,14,0,11,6,15,10,1,11,4,2,0,11,6,15,6,2,7,8,13,1,0,13,1,14,0,11,0,13,1,9,7,15,7,13,1,12,14,4,13,1,3,1,1,9,5,12,2,8,9,1,5,11,4,2,5,3,1,12,4,1,2,10,14,0,11,0,13,1,8,5,6,15,3,0,13,1,4,14,0,13,1,14,6,4,14,0,11,8,13,1,7,2,8,5,9,7,0,11,0,11,0,11,6,2,13,1,12,14,15,0,11,0,11,6,4,14,0,11,0,13,1,9,1,9,7,6,2,13,1,8,5,11,4,9,1,3,0,13,1,7,14,0,13,2,15,2,10,5,5,15,1,6,15,14,6,15,11,7,9,7,14,0,11,0,13,1,5,7,8,5,15,11,4,2,14,0,11,6,2,6,2,13,12,14,14,0,13,1,11,4,2,12,14,14,5,13,1,14,0,13,1,15,1,15,4,14,0,11,0,11,6,15,4,14,6,2,7,2,6,4,14,0,13,1,5,1,3,0,11,2,14,0,11,6,4,14,0,13,1,14,0,13,1,5,9,1,5,5,2,1,6,2,13,1,9,7,3,0,13,1,8,5,14,6,15,14,0,11,6,2,13,1,4,14,0,13,1,7,9,1,8,13,9,3,1,0,11,0,13,1,11,4,2,12,14,13,1,10,14,0,11,0,11,6,15,15,7,3,14,6,4,14,0,11,2,3,0,11,2,3,15,0,11,0,11,6,15,7,11,4,2,4,14,0,11,6,4,14,0,13,1,14,0,13,1,11,4,2,12,14,14,0,11,0,11,0,11,0,13,1,10,5,8,5,4,14,0,13,1,5,12,14,14,0,11,6,2,6,2,6,15,4,14,0,13,1,3,0,13,1,0,11,14,0,11,6,4,14,0,11,6,2,13,1,1,5,0,11,2,13,1,11,10,5,13,1,5,4,14,0,13,1,7,5,10,1,10,5,6,15,5,10,14,0,11,2,1,13,1,5,8,5,12,14,14,0,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 20.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,2,2,9,7,12,14,5,6,2,13,1,8,13,1,7,14,0,13,1,7,15,15,4,0,13,1,8,5,3,0,11,6,15,3,1,8,5,10,6,2,6,2,6,2,6,15,6,15,8,5,9,1,3,1,2,12,14,13,14,0,13,1,14,0,11,6,15,10,1,11,4,2,0,11,6,15,6,2,7,8,13,1,0,13,1,14,0,11,0,13,1,9,7,15,7,13,1,12,14,4,13,1,3,1,1,9,5,12,2,8,9,1,5,11,4,2,5,3,1,12,4,1,2,10,14,0,11,0,13,1,8,5,6,15,3,0,13,1,4,14,0,13,1,14,6,4,14,0,11,8,13,1,7,2,8,5,9,7,0,11,0,11,0,11,6,2,13,1,12,14,15,0,11,0,11,6,4,14,0,11,0,13,1,9,1,9,7,6,2,13,1,8,5,11,4,9,1,3,0,13,1,7,14,0,13,2,15,2,10,5,5,15,1,6,15,14,6,15,11,7,9,7,14,0,11,0,13,1,5,7,8,5,15,11,4,2,14,0,11,6,2,6,2,13,12,14,14,0,13,1,11,4,2,12,14,14,5,13,1,14,0,13,1,15,1,15,4,14,0,11,0,11,6,15,4,14,6,2,7,2,6,4,14,0,13,1,5,1,3,0,11,2,14,0,11,6,4,14,0,13,1,14,0,13,1,5,9,1,5,5,2,1,6,2,13,1,9,7,3,0,13,1,8,5,14,6,15,14,0,11,6,2,13,1,4,14,0,13,1,7,9,1,8,13,9,3,1,0,11,0,13,1,11,4,2,12,14,13,1,10,14,0,11,0,11,6,15,15,7,3,14,6,4,14,0,11,2,3,0,11,2,3,15,0,11,0,11,6,15,7,11,4,2,4,14,0,11,6,4,14,0,13,1,14,0,13,1,11,4,2,12,14,14,0,11,0,11,0,11,0,13,1,10,5,8,5,4,14,0,13,1,5,12,14,14,0,11,6,2,6,2,6,15,4,14,0,13,1,3,0,13,1,0,11,14,0,11,6,4,14,0,11,6,2,13,1,1,5,0,11,2,13,1,11,10,5,13,1,5,4,14,0,13,1,7,5,10,1,10,5,6,15,5,10,14,0,11,2,1,13,1,5,8,5,12,14,14,0,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"14\", \"0\"], \"clip_start\": 297.0, \"clip_end\": 301.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,2,2,9,7,12,14,5,6,2,13,1,8,13,1,7,14,0,13,1,7,15,15,4,0,13,1,8,5,3,0,11,6,15,3,1,8,5,10,6,2,6,2,6,2,6,15,6,15,8,5,9,1,3,1,2,12,14,13,14,0,13,1,14,0,11,6,15,10,1,11,4,2,0,11,6,15,6,2,7,8,13,1,0,13,1,14,0,11,0,13,1,9,7,15,7,13,1,12,14,4,13,1,3,1,1,9,5,12,2,8,9,1,5,11,4,2,5,3,1,12,4,1,2,10,14,0,11,0,13,1,8,5,6,15,3,0,13,1,4,14,0,13,1,14,6,4,14,0,11,8,13,1,7,2,8,5,9,7,0,11,0,11,0,11,6,2,13,1,12,14,15,0,11,0,11,6,4,14,0,11,0,13,1,9,1,9,7,6,2,13,1,8,5,11,4,9,1,3,0,13,1,7,14,0,13,2,15,2,10,5,5,15,1,6,15,14,6,15,11,7,9,7,14,0,11,0,13,1,5,7,8,5,15,11,4,2,14,0,11,6,2,6,2,13,12,14,14,0,13,1,11,4,2,12,14,14,5,13,1,14,0,13,1,15,1,15,4,14,0,11,0,11,6,15,4,14,6,2,7,2,6,4,14,0,13,1,5,1,3,0,11,2,14,0,11,6,4,14,0,13,1,14,0,13,1,5,9,1,5,5,2,1,6,2,13,1,9,7,3,0,13,1,8,5,14,6,15,14,0,11,6,2,13,1,4,14,0,13,1,7,9,1,8,13,9,3,1,0,11,0,13,1,11,4,2,12,14,13,1,10,14,0,11,0,11,6,15,15,7,3,14,6,4,14,0,11,2,3,0,11,2,3,15,0,11,0,11,6,15,7,11,4,2,4,14,0,11,6,4,14,0,13,1,14,0,13,1,11,4,2,12,14,14,0,11,0,11,0,11,0,13,1,10,5,8,5,4,14,0,13,1,5,12,14,14,0,11,6,2,6,2,6,15,4,14,0,13,1,3,0,13,1,0,11,14,0,11,6,4,14,0,11,6,2,13,1,1,5,0,11,2,13,1,11,10,5,13,1,5,4,14,0,13,1,7,5,10,1,10,5,6,15,5,10,14,0,11,2,1,13,1,5,8,5,12,14,14,0,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"4\"], \"clip_start\": 390.0, \"clip_end\": 394.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,2,2,9,7,12,14,5,6,2,13,1,8,13,1,7,14,0,13,1,7,15,15,4,0,13,1,8,5,3,0,11,6,15,3,1,8,5,10,6,2,6,2,6,2,6,15,6,15,8,5,9,1,3,1,2,12,14,13,14,0,13,1,14,0,11,6,15,10,1,11,4,2,0,11,6,15,6,2,7,8,13,1,0,13,1,14,0,11,0,13,1,9,7,15,7,13,1,12,14,4,13,1,3,1,1,9,5,12,2,8,9,1,5,11,4,2,5,3,1,12,4,1,2,10,14,0,11,0,13,1,8,5,6,15,3,0,13,1,4,14,0,13,1,14,6,4,14,0,11,8,13,1,7,2,8,5,9,7,0,11,0,11,0,11,6,2,13,1,12,14,15,0,11,0,11,6,4,14,0,11,0,13,1,9,1,9,7,6,2,13,1,8,5,11,4,9,1,3,0,13,1,7,14,0,13,2,15,2,10,5,5,15,1,6,15,14,6,15,11,7,9,7,14,0,11,0,13,1,5,7,8,5,15,11,4,2,14,0,11,6,2,6,2,13,12,14,14,0,13,1,11,4,2,12,14,14,5,13,1,14,0,13,1,15,1,15,4,14,0,11,0,11,6,15,4,14,6,2,7,2,6,4,14,0,13,1,5,1,3,0,11,2,14,0,11,6,4,14,0,13,1,14,0,13,1,5,9,1,5,5,2,1,6,2,13,1,9,7,3,0,13,1,8,5,14,6,15,14,0,11,6,2,13,1,4,14,0,13,1,7,9,1,8,13,9,3,1,0,11,0,13,1,11,4,2,12,14,13,1,10,14,0,11,0,11,6,15,15,7,3,14,6,4,14,0,11,2,3,0,11,2,3,15,0,11,0,11,6,15,7,11,4,2,4,14,0,11,6,4,14,0,13,1,14,0,13,1,11,4,2,12,14,14,0,11,0,11,0,11,0,13,1,10,5,8,5,4,14,0,13,1,5,12,14,14,0,11,6,2,6,2,6,15,4,14,0,13,1,3,0,13,1,0,11,14,0,11,6,4,14,0,11,6,2,13,1,1,5,0,11,2,13,1,11,10,5,13,1,5,4,14,0,13,1,7,5,10,1,10,5,6,15,5,10,14,0,11,2,1,13,1,5,8,5,12,14,14,0,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"4\", \"14\", \"0\", \"11\"], \"clip_start\": 267.0, \"clip_end\": 272.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,2,2,9,7,12,14,5,6,2,13,1,8,13,1,7,14,0,13,1,7,15,15,4,0,13,1,8,5,3,0,11,6,15,3,1,8,5,10,6,2,6,2,6,2,6,15,6,15,8,5,9,1,3,1,2,12,14,13,14,0,13,1,14,0,11,6,15,10,1,11,4,2,0,11,6,15,6,2,7,8,13,1,0,13,1,14,0,11,0,13,1,9,7,15,7,13,1,12,14,4,13,1,3,1,1,9,5,12,2,8,9,1,5,11,4,2,5,3,1,12,4,1,2,10,14,0,11,0,13,1,8,5,6,15,3,0,13,1,4,14,0,13,1,14,6,4,14,0,11,8,13,1,7,2,8,5,9,7,0,11,0,11,0,11,6,2,13,1,12,14,15,0,11,0,11,6,4,14,0,11,0,13,1,9,1,9,7,6,2,13,1,8,5,11,4,9,1,3,0,13,1,7,14,0,13,2,15,2,10,5,5,15,1,6,15,14,6,15,11,7,9,7,14,0,11,0,13,1,5,7,8,5,15,11,4,2,14,0,11,6,2,6,2,13,12,14,14,0,13,1,11,4,2,12,14,14,5,13,1,14,0,13,1,15,1,15,4,14,0,11,0,11,6,15,4,14,6,2,7,2,6,4,14,0,13,1,5,1,3,0,11,2,14,0,11,6,4,14,0,13,1,14,0,13,1,5,9,1,5,5,2,1,6,2,13,1,9,7,3,0,13,1,8,5,14,6,15,14,0,11,6,2,13,1,4,14,0,13,1,7,9,1,8,13,9,3,1,0,11,0,13,1,11,4,2,12,14,13,1,10,14,0,11,0,11,6,15,15,7,3,14,6,4,14,0,11,2,3,0,11,2,3,15,0,11,0,11,6,15,7,11,4,2,4,14,0,11,6,4,14,0,13,1,14,0,13,1,11,4,2,12,14,14,0,11,0,11,0,11,0,13,1,10,5,8,5,4,14,0,13,1,5,12,14,14,0,11,6,2,6,2,6,15,4,14,0,13,1,3,0,13,1,0,11,14,0,11,6,4,14,0,11,6,2,13,1,1,5,0,11,2,13,1,11,10,5,13,1,5,4,14,0,13,1,7,5,10,1,10,5,6,15,5,10,14,0,11,2,1,13,1,5,8,5,12,14,14,0,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"14\", \"0\", \"13\"], \"clip_start\": 58.0, \"clip_end\": 63.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,2,2,9,7,12,14,5,6,2,13,1,8,13,1,7,14,0,13,1,7,15,15,4,0,13,1,8,5,3,0,11,6,15,3,1,8,5,10,6,2,6,2,6,2,6,15,6,15,8,5,9,1,3,1,2,12,14,13,14,0,13,1,14,0,11,6,15,10,1,11,4,2,0,11,6,15,6,2,7,8,13,1,0,13,1,14,0,11,0,13,1,9,7,15,7,13,1,12,14,4,13,1,3,1,1,9,5,12,2,8,9,1,5,11,4,2,5,3,1,12,4,1,2,10,14,0,11,0,13,1,8,5,6,15,3,0,13,1,4,14,0,13,1,14,6,4,14,0,11,8,13,1,7,2,8,5,9,7,0,11,0,11,0,11,6,2,13,1,12,14,15,0,11,0,11,6,4,14,0,11,0,13,1,9,1,9,7,6,2,13,1,8,5,11,4,9,1,3,0,13,1,7,14,0,13,2,15,2,10,5,5,15,1,6,15,14,6,15,11,7,9,7,14,0,11,0,13,1,5,7,8,5,15,11,4,2,14,0,11,6,2,6,2,13,12,14,14,0,13,1,11,4,2,12,14,14,5,13,1,14,0,13,1,15,1,15,4,14,0,11,0,11,6,15,4,14,6,2,7,2,6,4,14,0,13,1,5,1,3,0,11,2,14,0,11,6,4,14,0,13,1,14,0,13,1,5,9,1,5,5,2,1,6,2,13,1,9,7,3,0,13,1,8,5,14,6,15,14,0,11,6,2,13,1,4,14,0,13,1,7,9,1,8,13,9,3,1,0,11,0,13,1,11,4,2,12,14,13,1,10,14,0,11,0,11,6,15,15,7,3,14,6,4,14,0,11,2,3,0,11,2,3,15,0,11,0,11,6,15,7,11,4,2,4,14,0,11,6,4,14,0,13,1,14,0,13,1,11,4,2,12,14,14,0,11,0,11,0,11,0,13,1,10,5,8,5,4,14,0,13,1,5,12,14,14,0,11,6,2,6,2,6,15,4,14,0,13,1,3,0,13,1,0,11,14,0,11,6,4,14,0,11,6,2,13,1,1,5,0,11,2,13,1,11,10,5,13,1,5,4,14,0,13,1,7,5,10,1,10,5,6,15,5,10,14,0,11,2,1,13,1,5,8,5,12,14,14,0,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"13\", \"1\", \"8\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,2,2,9,7,12,14,5,6,2,13,1,8,13,1,7,14,0,13,1,7,15,15,4,0,13,1,8,5,3,0,11,6,15,3,1,8,5,10,6,2,6,2,6,2,6,15,6,15,8,5,9,1,3,1,2,12,14,13,14,0,13,1,14,0,11,6,15,10,1,11,4,2,0,11,6,15,6,2,7,8,13,1,0,13,1,14,0,11,0,13,1,9,7,15,7,13,1,12,14,4,13,1,3,1,1,9,5,12,2,8,9,1,5,11,4,2,5,3,1,12,4,1,2,10,14,0,11,0,13,1,8,5,6,15,3,0,13,1,4,14,0,13,1,14,6,4,14,0,11,8,13,1,7,2,8,5,9,7,0,11,0,11,0,11,6,2,13,1,12,14,15,0,11,0,11,6,4,14,0,11,0,13,1,9,1,9,7,6,2,13,1,8,5,11,4,9,1,3,0,13,1,7,14,0,13,2,15,2,10,5,5,15,1,6,15,14,6,15,11,7,9,7,14,0,11,0,13,1,5,7,8,5,15,11,4,2,14,0,11,6,2,6,2,13,12,14,14,0,13,1,11,4,2,12,14,14,5,13,1,14,0,13,1,15,1,15,4,14,0,11,0,11,6,15,4,14,6,2,7,2,6,4,14,0,13,1,5,1,3,0,11,2,14,0,11,6,4,14,0,13,1,14,0,13,1,5,9,1,5,5,2,1,6,2,13,1,9,7,3,0,13,1,8,5,14,6,15,14,0,11,6,2,13,1,4,14,0,13,1,7,9,1,8,13,9,3,1,0,11,0,13,1,11,4,2,12,14,13,1,10,14,0,11,0,11,6,15,15,7,3,14,6,4,14,0,11,2,3,0,11,2,3,15,0,11,0,11,6,15,7,11,4,2,4,14,0,11,6,4,14,0,13,1,14,0,13,1,11,4,2,12,14,14,0,11,0,11,0,11,0,13,1,10,5,8,5,4,14,0,13,1,5,12,14,14,0,11,6,2,6,2,6,15,4,14,0,13,1,3,0,13,1,0,11,14,0,11,6,4,14,0,11,6,2,13,1,1,5,0,11,2,13,1,11,10,5,13,1,5,4,14,0,13,1,7,5,10,1,10,5,6,15,5,10,14,0,11,2,1,13,1,5,8,5,12,14,14,0,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"4\", \"14\", \"0\", \"13\", \"1\"], \"clip_start\": 444.0, \"clip_end\": 450.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,2,2,9,7,12,14,5,6,2,13,1,8,13,1,7,14,0,13,1,7,15,15,4,0,13,1,8,5,3,0,11,6,15,3,1,8,5,10,6,2,6,2,6,2,6,15,6,15,8,5,9,1,3,1,2,12,14,13,14,0,13,1,14,0,11,6,15,10,1,11,4,2,0,11,6,15,6,2,7,8,13,1,0,13,1,14,0,11,0,13,1,9,7,15,7,13,1,12,14,4,13,1,3,1,1,9,5,12,2,8,9,1,5,11,4,2,5,3,1,12,4,1,2,10,14,0,11,0,13,1,8,5,6,15,3,0,13,1,4,14,0,13,1,14,6,4,14,0,11,8,13,1,7,2,8,5,9,7,0,11,0,11,0,11,6,2,13,1,12,14,15,0,11,0,11,6,4,14,0,11,0,13,1,9,1,9,7,6,2,13,1,8,5,11,4,9,1,3,0,13,1,7,14,0,13,2,15,2,10,5,5,15,1,6,15,14,6,15,11,7,9,7,14,0,11,0,13,1,5,7,8,5,15,11,4,2,14,0,11,6,2,6,2,13,12,14,14,0,13,1,11,4,2,12,14,14,5,13,1,14,0,13,1,15,1,15,4,14,0,11,0,11,6,15,4,14,6,2,7,2,6,4,14,0,13,1,5,1,3,0,11,2,14,0,11,6,4,14,0,13,1,14,0,13,1,5,9,1,5,5,2,1,6,2,13,1,9,7,3,0,13,1,8,5,14,6,15,14,0,11,6,2,13,1,4,14,0,13,1,7,9,1,8,13,9,3,1,0,11,0,13,1,11,4,2,12,14,13,1,10,14,0,11,0,11,6,15,15,7,3,14,6,4,14,0,11,2,3,0,11,2,3,15,0,11,0,11,6,15,7,11,4,2,4,14,0,11,6,4,14,0,13,1,14,0,13,1,11,4,2,12,14,14,0,11,0,11,0,11,0,13,1,10,5,8,5,4,14,0,13,1,5,12,14,14,0,11,6,2,6,2,6,15,4,14,0,13,1,3,0,13,1,0,11,14,0,11,6,4,14,0,11,6,2,13,1,1,5,0,11,2,13,1,11,10,5,13,1,5,4,14,0,13,1,7,5,10,1,10,5,6,15,5,10,14,0,11,2,1,13,1,5,8,5,12,14,14,0,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"0\", \"13\", \"1\", \"11\"], \"clip_start\": 405.0, \"clip_end\": 410.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,2,2,9,7,12,14,5,6,2,13,1,8,13,1,7,14,0,13,1,7,15,15,4,0,13,1,8,5,3,0,11,6,15,3,1,8,5,10,6,2,6,2,6,2,6,15,6,15,8,5,9,1,3,1,2,12,14,13,14,0,13,1,14,0,11,6,15,10,1,11,4,2,0,11,6,15,6,2,7,8,13,1,0,13,1,14,0,11,0,13,1,9,7,15,7,13,1,12,14,4,13,1,3,1,1,9,5,12,2,8,9,1,5,11,4,2,5,3,1,12,4,1,2,10,14,0,11,0,13,1,8,5,6,15,3,0,13,1,4,14,0,13,1,14,6,4,14,0,11,8,13,1,7,2,8,5,9,7,0,11,0,11,0,11,6,2,13,1,12,14,15,0,11,0,11,6,4,14,0,11,0,13,1,9,1,9,7,6,2,13,1,8,5,11,4,9,1,3,0,13,1,7,14,0,13,2,15,2,10,5,5,15,1,6,15,14,6,15,11,7,9,7,14,0,11,0,13,1,5,7,8,5,15,11,4,2,14,0,11,6,2,6,2,13,12,14,14,0,13,1,11,4,2,12,14,14,5,13,1,14,0,13,1,15,1,15,4,14,0,11,0,11,6,15,4,14,6,2,7,2,6,4,14,0,13,1,5,1,3,0,11,2,14,0,11,6,4,14,0,13,1,14,0,13,1,5,9,1,5,5,2,1,6,2,13,1,9,7,3,0,13,1,8,5,14,6,15,14,0,11,6,2,13,1,4,14,0,13,1,7,9,1,8,13,9,3,1,0,11,0,13,1,11,4,2,12,14,13,1,10,14,0,11,0,11,6,15,15,7,3,14,6,4,14,0,11,2,3,0,11,2,3,15,0,11,0,11,6,15,7,11,4,2,4,14,0,11,6,4,14,0,13,1,14,0,13,1,11,4,2,12,14,14,0,11,0,11,0,11,0,13,1,10,5,8,5,4,14,0,13,1,5,12,14,14,0,11,6,2,6,2,6,15,4,14,0,13,1,3,0,13,1,0,11,14,0,11,6,4,14,0,11,6,2,13,1,1,5,0,11,2,13,1,11,10,5,13,1,5,4,14,0,13,1,7,5,10,1,10,5,6,15,5,10,14,0,11,2,1,13,1,5,8,5,12,14,14,0,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"14\", \"0\", \"13\"], \"clip_start\": 445.0, \"clip_end\": 449.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,2,2,9,7,12,14,5,6,2,13,1,8,13,1,7,14,0,13,1,7,15,15,4,0,13,1,8,5,3,0,11,6,15,3,1,8,5,10,6,2,6,2,6,2,6,15,6,15,8,5,9,1,3,1,2,12,14,13,14,0,13,1,14,0,11,6,15,10,1,11,4,2,0,11,6,15,6,2,7,8,13,1,0,13,1,14,0,11,0,13,1,9,7,15,7,13,1,12,14,4,13,1,3,1,1,9,5,12,2,8,9,1,5,11,4,2,5,3,1,12,4,1,2,10,14,0,11,0,13,1,8,5,6,15,3,0,13,1,4,14,0,13,1,14,6,4,14,0,11,8,13,1,7,2,8,5,9,7,0,11,0,11,0,11,6,2,13,1,12,14,15,0,11,0,11,6,4,14,0,11,0,13,1,9,1,9,7,6,2,13,1,8,5,11,4,9,1,3,0,13,1,7,14,0,13,2,15,2,10,5,5,15,1,6,15,14,6,15,11,7,9,7,14,0,11,0,13,1,5,7,8,5,15,11,4,2,14,0,11,6,2,6,2,13,12,14,14,0,13,1,11,4,2,12,14,14,5,13,1,14,0,13,1,15,1,15,4,14,0,11,0,11,6,15,4,14,6,2,7,2,6,4,14,0,13,1,5,1,3,0,11,2,14,0,11,6,4,14,0,13,1,14,0,13,1,5,9,1,5,5,2,1,6,2,13,1,9,7,3,0,13,1,8,5,14,6,15,14,0,11,6,2,13,1,4,14,0,13,1,7,9,1,8,13,9,3,1,0,11,0,13,1,11,4,2,12,14,13,1,10,14,0,11,0,11,6,15,15,7,3,14,6,4,14,0,11,2,3,0,11,2,3,15,0,11,0,11,6,15,7,11,4,2,4,14,0,11,6,4,14,0,13,1,14,0,13,1,11,4,2,12,14,14,0,11,0,11,0,11,0,13,1,10,5,8,5,4,14,0,13,1,5,12,14,14,0,11,6,2,6,2,6,15,4,14,0,13,1,3,0,13,1,0,11,14,0,11,6,4,14,0,11,6,2,13,1,1,5,0,11,2,13,1,11,10,5,13,1,5,4,14,0,13,1,7,5,10,1,10,5,6,15,5,10,14,0,11,2,1,13,1,5,8,5,12,14,14,0,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,2,2,9,7,12,14,5,6,2,13,1,8,13,1,7,14,0,13,1,7,15,15,4,0,13,1,8,5,3,0,11,6,15,3,1,8,5,10,6,2,6,2,6,2,6,15,6,15,8,5,9,1,3,1,2,12,14,13,14,0,13,1,14,0,11,6,15,10,1,11,4,2,0,11,6,15,6,2,7,8,13,1,0,13,1,14,0,11,0,13,1,9,7,15,7,13,1,12,14,4,13,1,3,1,1,9,5,12,2,8,9,1,5,11,4,2,5,3,1,12,4,1,2,10,14,0,11,0,13,1,8,5,6,15,3,0,13,1,4,14,0,13,1,14,6,4,14,0,11,8,13,1,7,2,8,5,9,7,0,11,0,11,0,11,6,2,13,1,12,14,15,0,11,0,11,6,4,14,0,11,0,13,1,9,1,9,7,6,2,13,1,8,5,11,4,9,1,3,0,13,1,7,14,0,13,2,15,2,10,5,5,15,1,6,15,14,6,15,11,7,9,7,14,0,11,0,13,1,5,7,8,5,15,11,4,2,14,0,11,6,2,6,2,13,12,14,14,0,13,1,11,4,2,12,14,14,5,13,1,14,0,13,1,15,1,15,4,14,0,11,0,11,6,15,4,14,6,2,7,2,6,4,14,0,13,1,5,1,3,0,11,2,14,0,11,6,4,14,0,13,1,14,0,13,1,5,9,1,5,5,2,1,6,2,13,1,9,7,3,0,13,1,8,5,14,6,15,14,0,11,6,2,13,1,4,14,0,13,1,7,9,1,8,13,9,3,1,0,11,0,13,1,11,4,2,12,14,13,1,10,14,0,11,0,11,6,15,15,7,3,14,6,4,14,0,11,2,3,0,11,2,3,15,0,11,0,11,6,15,7,11,4,2,4,14,0,11,6,4,14,0,13,1,14,0,13,1,11,4,2,12,14,14,0,11,0,11,0,11,0,13,1,10,5,8,5,4,14,0,13,1,5,12,14,14,0,11,6,2,6,2,6,15,4,14,0,13,1,3,0,13,1,0,11,14,0,11,6,4,14,0,11,6,2,13,1,1,5,0,11,2,13,1,11,10,5,13,1,5,4,14,0,13,1,7,5,10,1,10,5,6,15,5,10,14,0,11,2,1,13,1,5,8,5,12,14,14,0,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"0\", \"11\"], \"clip_start\": 452.0, \"clip_end\": 456.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,2,2,9,7,12,14,5,6,2,13,1,8,13,1,7,14,0,13,1,7,15,15,4,0,13,1,8,5,3,0,11,6,15,3,1,8,5,10,6,2,6,2,6,2,6,15,6,15,8,5,9,1,3,1,2,12,14,13,14,0,13,1,14,0,11,6,15,10,1,11,4,2,0,11,6,15,6,2,7,8,13,1,0,13,1,14,0,11,0,13,1,9,7,15,7,13,1,12,14,4,13,1,3,1,1,9,5,12,2,8,9,1,5,11,4,2,5,3,1,12,4,1,2,10,14,0,11,0,13,1,8,5,6,15,3,0,13,1,4,14,0,13,1,14,6,4,14,0,11,8,13,1,7,2,8,5,9,7,0,11,0,11,0,11,6,2,13,1,12,14,15,0,11,0,11,6,4,14,0,11,0,13,1,9,1,9,7,6,2,13,1,8,5,11,4,9,1,3,0,13,1,7,14,0,13,2,15,2,10,5,5,15,1,6,15,14,6,15,11,7,9,7,14,0,11,0,13,1,5,7,8,5,15,11,4,2,14,0,11,6,2,6,2,13,12,14,14,0,13,1,11,4,2,12,14,14,5,13,1,14,0,13,1,15,1,15,4,14,0,11,0,11,6,15,4,14,6,2,7,2,6,4,14,0,13,1,5,1,3,0,11,2,14,0,11,6,4,14,0,13,1,14,0,13,1,5,9,1,5,5,2,1,6,2,13,1,9,7,3,0,13,1,8,5,14,6,15,14,0,11,6,2,13,1,4,14,0,13,1,7,9,1,8,13,9,3,1,0,11,0,13,1,11,4,2,12,14,13,1,10,14,0,11,0,11,6,15,15,7,3,14,6,4,14,0,11,2,3,0,11,2,3,15,0,11,0,11,6,15,7,11,4,2,4,14,0,11,6,4,14,0,13,1,14,0,13,1,11,4,2,12,14,14,0,11,0,11,0,11,0,13,1,10,5,8,5,4,14,0,13,1,5,12,14,14,0,11,6,2,6,2,6,15,4,14,0,13,1,3,0,13,1,0,11,14,0,11,6,4,14,0,11,6,2,13,1,1,5,0,11,2,13,1,11,10,5,13,1,5,4,14,0,13,1,7,5,10,1,10,5,6,15,5,10,14,0,11,2,1,13,1,5,8,5,12,14,14,0,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"12\"], \"clip_start\": 478.0, \"clip_end\": 481.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,2,2,9,7,12,14,5,6,2,13,1,8,13,1,7,14,0,13,1,7,15,15,4,0,13,1,8,5,3,0,11,6,15,3,1,8,5,10,6,2,6,2,6,2,6,15,6,15,8,5,9,1,3,1,2,12,14,13,14,0,13,1,14,0,11,6,15,10,1,11,4,2,0,11,6,15,6,2,7,8,13,1,0,13,1,14,0,11,0,13,1,9,7,15,7,13,1,12,14,4,13,1,3,1,1,9,5,12,2,8,9,1,5,11,4,2,5,3,1,12,4,1,2,10,14,0,11,0,13,1,8,5,6,15,3,0,13,1,4,14,0,13,1,14,6,4,14,0,11,8,13,1,7,2,8,5,9,7,0,11,0,11,0,11,6,2,13,1,12,14,15,0,11,0,11,6,4,14,0,11,0,13,1,9,1,9,7,6,2,13,1,8,5,11,4,9,1,3,0,13,1,7,14,0,13,2,15,2,10,5,5,15,1,6,15,14,6,15,11,7,9,7,14,0,11,0,13,1,5,7,8,5,15,11,4,2,14,0,11,6,2,6,2,13,12,14,14,0,13,1,11,4,2,12,14,14,5,13,1,14,0,13,1,15,1,15,4,14,0,11,0,11,6,15,4,14,6,2,7,2,6,4,14,0,13,1,5,1,3,0,11,2,14,0,11,6,4,14,0,13,1,14,0,13,1,5,9,1,5,5,2,1,6,2,13,1,9,7,3,0,13,1,8,5,14,6,15,14,0,11,6,2,13,1,4,14,0,13,1,7,9,1,8,13,9,3,1,0,11,0,13,1,11,4,2,12,14,13,1,10,14,0,11,0,11,6,15,15,7,3,14,6,4,14,0,11,2,3,0,11,2,3,15,0,11,0,11,6,15,7,11,4,2,4,14,0,11,6,4,14,0,13,1,14,0,13,1,11,4,2,12,14,14,0,11,0,11,0,11,0,13,1,10,5,8,5,4,14,0,13,1,5,12,14,14,0,11,6,2,6,2,6,15,4,14,0,13,1,3,0,13,1,0,11,14,0,11,6,4,14,0,11,6,2,13,1,1,5,0,11,2,13,1,11,10,5,13,1,5,4,14,0,13,1,7,5,10,1,10,5,6,15,5,10,14,0,11,2,1,13,1,5,8,5,12,14,14,0,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"2\", \"13\", \"1\"], \"clip_start\": 188.0, \"clip_end\": 193.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q14_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,2,2,9,7,12,14,5,6,2,13,1,8,13,1,7,14,0,13,1,7,15,15,4,0,13,1,8,5,3,0,11,6,15,3,1,8,5,10,6,2,6,2,6,2,6,15,6,15,8,5,9,1,3,1,2,12,14,13,14,0,13,1,14,0,11,6,15,10,1,11,4,2,0,11,6,15,6,2,7,8,13,1,0,13,1,14,0,11,0,13,1,9,7,15,7,13,1,12,14,4,13,1,3,1,1,9,5,12,2,8,9,1,5,11,4,2,5,3,1,12,4,1,2,10,14,0,11,0,13,1,8,5,6,15,3,0,13,1,4,14,0,13,1,14,6,4,14,0,11,8,13,1,7,2,8,5,9,7,0,11,0,11,0,11,6,2,13,1,12,14,15,0,11,0,11,6,4,14,0,11,0,13,1,9,1,9,7,6,2,13,1,8,5,11,4,9,1,3,0,13,1,7,14,0,13,2,15,2,10,5,5,15,1,6,15,14,6,15,11,7,9,7,14,0,11,0,13,1,5,7,8,5,15,11,4,2,14,0,11,6,2,6,2,13,12,14,14,0,13,1,11,4,2,12,14,14,5,13,1,14,0,13,1,15,1,15,4,14,0,11,0,11,6,15,4,14,6,2,7,2,6,4,14,0,13,1,5,1,3,0,11,2,14,0,11,6,4,14,0,13,1,14,0,13,1,5,9,1,5,5,2,1,6,2,13,1,9,7,3,0,13,1,8,5,14,6,15,14,0,11,6,2,13,1,4,14,0,13,1,7,9,1,8,13,9,3,1,0,11,0,13,1,11,4,2,12,14,13,1,10,14,0,11,0,11,6,15,15,7,3,14,6,4,14,0,11,2,3,0,11,2,3,15,0,11,0,11,6,15,7,11,4,2,4,14,0,11,6,4,14,0,13,1,14,0,13,1,11,4,2,12,14,14,0,11,0,11,0,11,0,13,1,10,5,8,5,4,14,0,13,1,5,12,14,14,0,11,6,2,6,2,6,15,4,14,0,13,1,3,0,13,1,0,11,14,0,11,6,4,14,0,11,6,2,13,1,1,5,0,11,2,13,1,11,10,5,13,1,5,4,14,0,13,1,7,5,10,1,10,5,6,15,5,10,14,0,11,2,1,13,1,5,8,5,12,14,14,0,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_MED", "source_split": "substream_video", "length_L": 512, "entropy_band": "medium", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"1\", \"9\", \"7\"], \"clip_start\": 90.0, \"clip_end\": 95.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,4,2,2,9,7,12,14,5,6,2,13,1,8,13,1,7,14,0,13,1,7,15,15,4,0,13,1,8,5,3,0,11,6,15,3,1,8,5,10,6,2,6,2,6,2,6,15,6,15,8,5,9,1,3,1,2,12,14,13,14,0,13,1,14,0,11,6,15,10,1,11,4,2,0,11,6,15,6,2,7,8,13,1,0,13,1,14,0,11,0,13,1,9,7,15,7,13,1,12,14,4,13,1,3,1,1,9,5,12,2,8,9,1,5,11,4,2,5,3,1,12,4,1,2,10,14,0,11,0,13,1,8,5,6,15,3,0,13,1,4,14,0,13,1,14,6,4,14,0,11,8,13,1,7,2,8,5,9,7,0,11,0,11,0,11,6,2,13,1,12,14,15,0,11,0,11,6,4,14,0,11,0,13,1,9,1,9,7,6,2,13,1,8,5,11,4,9,1,3,0,13,1,7,14,0,13,2,15,2,10,5,5,15,1,6,15,14,6,15,11,7,9,7,14,0,11,0,13,1,5,7,8,5,15,11,4,2,14,0,11,6,2,6,2,13,12,14,14,0,13,1,11,4,2,12,14,14,5,13,1,14,0,13,1,15,1,15,4,14,0,11,0,11,6,15,4,14,6,2,7,2,6,4,14,0,13,1,5,1,3,0,11,2,14,0,11,6,4,14,0,13,1,14,0,13,1,5,9,1,5,5,2,1,6,2,13,1,9,7,3,0,13,1,8,5,14,6,15,14,0,11,6,2,13,1,4,14,0,13,1,7,9,1,8,13,9,3,1,0,11,0,13,1,11,4,2,12,14,13,1,10,14,0,11,0,11,6,15,15,7,3,14,6,4,14,0,11,2,3,0,11,2,3,15,0,11,0,11,6,15,7,11,4,2,4,14,0,11,6,4,14,0,13,1,14,0,13,1,11,4,2,12,14,14,0,11,0,11,0,11,0,13,1,10,5,8,5,4,14,0,13,1,5,12,14,14,0,11,6,2,6,2,6,15,4,14,0,13,1,3,0,13,1,0,11,14,0,11,6,4,14,0,11,6,2,13,1,1,5,0,11,2,13,1,11,10,5,13,1,5,4,14,0,13,1,7,5,10,1,10,5,6,15,5,10,14,0,11,2,1,13,1,5,8,5,12,14,14,0,11,6", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"10\", \"15\", \"8\", \"10\"], \"clip_start\": 503.0, \"clip_end\": 509.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q0_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,0,12,10,2,10,8,1,6,3,10,5,7,10,9,13,9,4,2,3,8,7,2,10,10,10,9,14,5,13,14,3,11,10,0,9,2,8,10,0,6,15,13,1,3,4,11,0,15,12,7,7,2,4,4,0,10,8,4,5,1,15,4,2,3,14,6,6,13,2,9,15,13,3,1,13,0,0,2,6,7,14,7,11,3,10,9,10,12,13,10,12,11,10,0,9,3,1,4,6,6,13,11,7,15,1,10,3,10,15,1,9,3,14,12,3,7,8,0,2,2,6,14,12,14,10,11,14,0,6,13,9,8,15,6,3,2,15,13,4,8,0,2,4,8,2,11,10,14,10,4,0,10,12,7,4,10,1,9,12,0,12,5,3,7,5,6,9,7,3,6,6,10,13,15,9,8,8,9,6,7,15,3,2,1,14,2,10,11,6,4,0,0,7,2,11,10,0,15,7,15,13,4,3,9,6,0,15,6,0,13,12,1,0,2,10,12,0,3,0,4,12,4,8,5,9,4,1,5,2,15,11,1,13,7,12,6,5,10,1,9,4,6,1,14,9,8,6,12,10,15,14,12,10,8,7,1,4,11,0,7,9,1,10,11,4,2,3,0,14,12,1,10,11,8,3,9,3,1,8,8,2,10,9,5,11,15,13,10,15,4,15,9,7,12,14,8,7,13,1,14,11,8,2,4,5,0,0,9,9,0,13,6,5,2,11,8,15,3,12,11,10,4,2,1,10,6,13,4,5,13,0,6,13,5,12,14,8,9,2,5,7,12,3,1,6,8,10,13,4,14,11,1,8,10,14,14,4,13,10,7,3,8,15,9,8,14,13,14,12,4,9,2,10,14,3,15,2,1,7,15,3,8,15,15,13,0,14,9,12,11,2,15,6,14,5,8,1,11,8,8,13,10,7,14,8,9,13,4,5,10,11,14,14,12,8,2,13,3,7,15,6,13,2,6,6,7,1,1,10,15,4,5,0,9,15,7,10,7,1,11,7,13,9,0,4,12,6,14,2,12,10,11,10,0,12,13,14,5,7,14,8,9,6,13,5,1,6,6,2,4,7,7,5,15,14,8,7,1,14,6,4,4,10,2,11,13,4,10,9,15,4,0,6,2,9,8,2,10,4,13,0,11,6,9,7,4,12,14,4,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"7\", \"13\", \"9\"], \"clip_start\": 441.0, \"clip_end\": 445.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,0,12,10,2,10,8,1,6,3,10,5,7,10,9,13,9,4,2,3,8,7,2,10,10,10,9,14,5,13,14,3,11,10,0,9,2,8,10,0,6,15,13,1,3,4,11,0,15,12,7,7,2,4,4,0,10,8,4,5,1,15,4,2,3,14,6,6,13,2,9,15,13,3,1,13,0,0,2,6,7,14,7,11,3,10,9,10,12,13,10,12,11,10,0,9,3,1,4,6,6,13,11,7,15,1,10,3,10,15,1,9,3,14,12,3,7,8,0,2,2,6,14,12,14,10,11,14,0,6,13,9,8,15,6,3,2,15,13,4,8,0,2,4,8,2,11,10,14,10,4,0,10,12,7,4,10,1,9,12,0,12,5,3,7,5,6,9,7,3,6,6,10,13,15,9,8,8,9,6,7,15,3,2,1,14,2,10,11,6,4,0,0,7,2,11,10,0,15,7,15,13,4,3,9,6,0,15,6,0,13,12,1,0,2,10,12,0,3,0,4,12,4,8,5,9,4,1,5,2,15,11,1,13,7,12,6,5,10,1,9,4,6,1,14,9,8,6,12,10,15,14,12,10,8,7,1,4,11,0,7,9,1,10,11,4,2,3,0,14,12,1,10,11,8,3,9,3,1,8,8,2,10,9,5,11,15,13,10,15,4,15,9,7,12,14,8,7,13,1,14,11,8,2,4,5,0,0,9,9,0,13,6,5,2,11,8,15,3,12,11,10,4,2,1,10,6,13,4,5,13,0,6,13,5,12,14,8,9,2,5,7,12,3,1,6,8,10,13,4,14,11,1,8,10,14,14,4,13,10,7,3,8,15,9,8,14,13,14,12,4,9,2,10,14,3,15,2,1,7,15,3,8,15,15,13,0,14,9,12,11,2,15,6,14,5,8,1,11,8,8,13,10,7,14,8,9,13,4,5,10,11,14,14,12,8,2,13,3,7,15,6,13,2,6,6,7,1,1,10,15,4,5,0,9,15,7,10,7,1,11,7,13,9,0,4,12,6,14,2,12,10,11,10,0,12,13,14,5,7,14,8,9,6,13,5,1,6,6,2,4,7,7,5,15,14,8,7,1,14,6,4,4,10,2,11,13,4,10,9,15,4,0,6,2,9,8,2,10,4,13,0,11,6,9,7,4,12,14,4,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"8\"], \"clip_start\": 19.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,0,12,10,2,10,8,1,6,3,10,5,7,10,9,13,9,4,2,3,8,7,2,10,10,10,9,14,5,13,14,3,11,10,0,9,2,8,10,0,6,15,13,1,3,4,11,0,15,12,7,7,2,4,4,0,10,8,4,5,1,15,4,2,3,14,6,6,13,2,9,15,13,3,1,13,0,0,2,6,7,14,7,11,3,10,9,10,12,13,10,12,11,10,0,9,3,1,4,6,6,13,11,7,15,1,10,3,10,15,1,9,3,14,12,3,7,8,0,2,2,6,14,12,14,10,11,14,0,6,13,9,8,15,6,3,2,15,13,4,8,0,2,4,8,2,11,10,14,10,4,0,10,12,7,4,10,1,9,12,0,12,5,3,7,5,6,9,7,3,6,6,10,13,15,9,8,8,9,6,7,15,3,2,1,14,2,10,11,6,4,0,0,7,2,11,10,0,15,7,15,13,4,3,9,6,0,15,6,0,13,12,1,0,2,10,12,0,3,0,4,12,4,8,5,9,4,1,5,2,15,11,1,13,7,12,6,5,10,1,9,4,6,1,14,9,8,6,12,10,15,14,12,10,8,7,1,4,11,0,7,9,1,10,11,4,2,3,0,14,12,1,10,11,8,3,9,3,1,8,8,2,10,9,5,11,15,13,10,15,4,15,9,7,12,14,8,7,13,1,14,11,8,2,4,5,0,0,9,9,0,13,6,5,2,11,8,15,3,12,11,10,4,2,1,10,6,13,4,5,13,0,6,13,5,12,14,8,9,2,5,7,12,3,1,6,8,10,13,4,14,11,1,8,10,14,14,4,13,10,7,3,8,15,9,8,14,13,14,12,4,9,2,10,14,3,15,2,1,7,15,3,8,15,15,13,0,14,9,12,11,2,15,6,14,5,8,1,11,8,8,13,10,7,14,8,9,13,4,5,10,11,14,14,12,8,2,13,3,7,15,6,13,2,6,6,7,1,1,10,15,4,5,0,9,15,7,10,7,1,11,7,13,9,0,4,12,6,14,2,12,10,11,10,0,12,13,14,5,7,14,8,9,6,13,5,1,6,6,2,4,7,7,5,15,14,8,7,1,14,6,4,4,10,2,11,13,4,10,9,15,4,0,6,2,9,8,2,10,4,13,0,11,6,9,7,4,12,14,4,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"1\", \"13\", \"0\"], \"clip_start\": 73.0, \"clip_end\": 78.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q3_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,0,12,10,2,10,8,1,6,3,10,5,7,10,9,13,9,4,2,3,8,7,2,10,10,10,9,14,5,13,14,3,11,10,0,9,2,8,10,0,6,15,13,1,3,4,11,0,15,12,7,7,2,4,4,0,10,8,4,5,1,15,4,2,3,14,6,6,13,2,9,15,13,3,1,13,0,0,2,6,7,14,7,11,3,10,9,10,12,13,10,12,11,10,0,9,3,1,4,6,6,13,11,7,15,1,10,3,10,15,1,9,3,14,12,3,7,8,0,2,2,6,14,12,14,10,11,14,0,6,13,9,8,15,6,3,2,15,13,4,8,0,2,4,8,2,11,10,14,10,4,0,10,12,7,4,10,1,9,12,0,12,5,3,7,5,6,9,7,3,6,6,10,13,15,9,8,8,9,6,7,15,3,2,1,14,2,10,11,6,4,0,0,7,2,11,10,0,15,7,15,13,4,3,9,6,0,15,6,0,13,12,1,0,2,10,12,0,3,0,4,12,4,8,5,9,4,1,5,2,15,11,1,13,7,12,6,5,10,1,9,4,6,1,14,9,8,6,12,10,15,14,12,10,8,7,1,4,11,0,7,9,1,10,11,4,2,3,0,14,12,1,10,11,8,3,9,3,1,8,8,2,10,9,5,11,15,13,10,15,4,15,9,7,12,14,8,7,13,1,14,11,8,2,4,5,0,0,9,9,0,13,6,5,2,11,8,15,3,12,11,10,4,2,1,10,6,13,4,5,13,0,6,13,5,12,14,8,9,2,5,7,12,3,1,6,8,10,13,4,14,11,1,8,10,14,14,4,13,10,7,3,8,15,9,8,14,13,14,12,4,9,2,10,14,3,15,2,1,7,15,3,8,15,15,13,0,14,9,12,11,2,15,6,14,5,8,1,11,8,8,13,10,7,14,8,9,13,4,5,10,11,14,14,12,8,2,13,3,7,15,6,13,2,6,6,7,1,1,10,15,4,5,0,9,15,7,10,7,1,11,7,13,9,0,4,12,6,14,2,12,10,11,10,0,12,13,14,5,7,14,8,9,6,13,5,1,6,6,2,4,7,7,5,15,14,8,7,1,14,6,4,4,10,2,11,13,4,10,9,15,4,0,6,2,9,8,2,10,4,13,0,11,6,9,7,4,12,14,4,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"9\", \"4\", \"2\", \"3\", \"8\"], \"clip_start\": 16.0, \"clip_end\": 22.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,0,12,10,2,10,8,1,6,3,10,5,7,10,9,13,9,4,2,3,8,7,2,10,10,10,9,14,5,13,14,3,11,10,0,9,2,8,10,0,6,15,13,1,3,4,11,0,15,12,7,7,2,4,4,0,10,8,4,5,1,15,4,2,3,14,6,6,13,2,9,15,13,3,1,13,0,0,2,6,7,14,7,11,3,10,9,10,12,13,10,12,11,10,0,9,3,1,4,6,6,13,11,7,15,1,10,3,10,15,1,9,3,14,12,3,7,8,0,2,2,6,14,12,14,10,11,14,0,6,13,9,8,15,6,3,2,15,13,4,8,0,2,4,8,2,11,10,14,10,4,0,10,12,7,4,10,1,9,12,0,12,5,3,7,5,6,9,7,3,6,6,10,13,15,9,8,8,9,6,7,15,3,2,1,14,2,10,11,6,4,0,0,7,2,11,10,0,15,7,15,13,4,3,9,6,0,15,6,0,13,12,1,0,2,10,12,0,3,0,4,12,4,8,5,9,4,1,5,2,15,11,1,13,7,12,6,5,10,1,9,4,6,1,14,9,8,6,12,10,15,14,12,10,8,7,1,4,11,0,7,9,1,10,11,4,2,3,0,14,12,1,10,11,8,3,9,3,1,8,8,2,10,9,5,11,15,13,10,15,4,15,9,7,12,14,8,7,13,1,14,11,8,2,4,5,0,0,9,9,0,13,6,5,2,11,8,15,3,12,11,10,4,2,1,10,6,13,4,5,13,0,6,13,5,12,14,8,9,2,5,7,12,3,1,6,8,10,13,4,14,11,1,8,10,14,14,4,13,10,7,3,8,15,9,8,14,13,14,12,4,9,2,10,14,3,15,2,1,7,15,3,8,15,15,13,0,14,9,12,11,2,15,6,14,5,8,1,11,8,8,13,10,7,14,8,9,13,4,5,10,11,14,14,12,8,2,13,3,7,15,6,13,2,6,6,7,1,1,10,15,4,5,0,9,15,7,10,7,1,11,7,13,9,0,4,12,6,14,2,12,10,11,10,0,12,13,14,5,7,14,8,9,6,13,5,1,6,6,2,4,7,7,5,15,14,8,7,1,14,6,4,4,10,2,11,13,4,10,9,15,4,0,6,2,9,8,2,10,4,13,0,11,6,9,7,4,12,14,4,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"10\", \"4\"], \"clip_start\": 149.0, \"clip_end\": 152.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,0,12,10,2,10,8,1,6,3,10,5,7,10,9,13,9,4,2,3,8,7,2,10,10,10,9,14,5,13,14,3,11,10,0,9,2,8,10,0,6,15,13,1,3,4,11,0,15,12,7,7,2,4,4,0,10,8,4,5,1,15,4,2,3,14,6,6,13,2,9,15,13,3,1,13,0,0,2,6,7,14,7,11,3,10,9,10,12,13,10,12,11,10,0,9,3,1,4,6,6,13,11,7,15,1,10,3,10,15,1,9,3,14,12,3,7,8,0,2,2,6,14,12,14,10,11,14,0,6,13,9,8,15,6,3,2,15,13,4,8,0,2,4,8,2,11,10,14,10,4,0,10,12,7,4,10,1,9,12,0,12,5,3,7,5,6,9,7,3,6,6,10,13,15,9,8,8,9,6,7,15,3,2,1,14,2,10,11,6,4,0,0,7,2,11,10,0,15,7,15,13,4,3,9,6,0,15,6,0,13,12,1,0,2,10,12,0,3,0,4,12,4,8,5,9,4,1,5,2,15,11,1,13,7,12,6,5,10,1,9,4,6,1,14,9,8,6,12,10,15,14,12,10,8,7,1,4,11,0,7,9,1,10,11,4,2,3,0,14,12,1,10,11,8,3,9,3,1,8,8,2,10,9,5,11,15,13,10,15,4,15,9,7,12,14,8,7,13,1,14,11,8,2,4,5,0,0,9,9,0,13,6,5,2,11,8,15,3,12,11,10,4,2,1,10,6,13,4,5,13,0,6,13,5,12,14,8,9,2,5,7,12,3,1,6,8,10,13,4,14,11,1,8,10,14,14,4,13,10,7,3,8,15,9,8,14,13,14,12,4,9,2,10,14,3,15,2,1,7,15,3,8,15,15,13,0,14,9,12,11,2,15,6,14,5,8,1,11,8,8,13,10,7,14,8,9,13,4,5,10,11,14,14,12,8,2,13,3,7,15,6,13,2,6,6,7,1,1,10,15,4,5,0,9,15,7,10,7,1,11,7,13,9,0,4,12,6,14,2,12,10,11,10,0,12,13,14,5,7,14,8,9,6,13,5,1,6,6,2,4,7,7,5,15,14,8,7,1,14,6,4,4,10,2,11,13,4,10,9,15,4,0,6,2,9,8,2,10,4,13,0,11,6,9,7,4,12,14,4,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"8\", \"7\", \"1\", \"4\", \"11\"], \"clip_start\": 254.0, \"clip_end\": 260.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q6_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,0,12,10,2,10,8,1,6,3,10,5,7,10,9,13,9,4,2,3,8,7,2,10,10,10,9,14,5,13,14,3,11,10,0,9,2,8,10,0,6,15,13,1,3,4,11,0,15,12,7,7,2,4,4,0,10,8,4,5,1,15,4,2,3,14,6,6,13,2,9,15,13,3,1,13,0,0,2,6,7,14,7,11,3,10,9,10,12,13,10,12,11,10,0,9,3,1,4,6,6,13,11,7,15,1,10,3,10,15,1,9,3,14,12,3,7,8,0,2,2,6,14,12,14,10,11,14,0,6,13,9,8,15,6,3,2,15,13,4,8,0,2,4,8,2,11,10,14,10,4,0,10,12,7,4,10,1,9,12,0,12,5,3,7,5,6,9,7,3,6,6,10,13,15,9,8,8,9,6,7,15,3,2,1,14,2,10,11,6,4,0,0,7,2,11,10,0,15,7,15,13,4,3,9,6,0,15,6,0,13,12,1,0,2,10,12,0,3,0,4,12,4,8,5,9,4,1,5,2,15,11,1,13,7,12,6,5,10,1,9,4,6,1,14,9,8,6,12,10,15,14,12,10,8,7,1,4,11,0,7,9,1,10,11,4,2,3,0,14,12,1,10,11,8,3,9,3,1,8,8,2,10,9,5,11,15,13,10,15,4,15,9,7,12,14,8,7,13,1,14,11,8,2,4,5,0,0,9,9,0,13,6,5,2,11,8,15,3,12,11,10,4,2,1,10,6,13,4,5,13,0,6,13,5,12,14,8,9,2,5,7,12,3,1,6,8,10,13,4,14,11,1,8,10,14,14,4,13,10,7,3,8,15,9,8,14,13,14,12,4,9,2,10,14,3,15,2,1,7,15,3,8,15,15,13,0,14,9,12,11,2,15,6,14,5,8,1,11,8,8,13,10,7,14,8,9,13,4,5,10,11,14,14,12,8,2,13,3,7,15,6,13,2,6,6,7,1,1,10,15,4,5,0,9,15,7,10,7,1,11,7,13,9,0,4,12,6,14,2,12,10,11,10,0,12,13,14,5,7,14,8,9,6,13,5,1,6,6,2,4,7,7,5,15,14,8,7,1,14,6,4,4,10,2,11,13,4,10,9,15,4,0,6,2,9,8,2,10,4,13,0,11,6,9,7,4,12,14,4,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"2\", \"10\", \"8\"], \"clip_start\": 4.0, \"clip_end\": 8.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q7_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,0,12,10,2,10,8,1,6,3,10,5,7,10,9,13,9,4,2,3,8,7,2,10,10,10,9,14,5,13,14,3,11,10,0,9,2,8,10,0,6,15,13,1,3,4,11,0,15,12,7,7,2,4,4,0,10,8,4,5,1,15,4,2,3,14,6,6,13,2,9,15,13,3,1,13,0,0,2,6,7,14,7,11,3,10,9,10,12,13,10,12,11,10,0,9,3,1,4,6,6,13,11,7,15,1,10,3,10,15,1,9,3,14,12,3,7,8,0,2,2,6,14,12,14,10,11,14,0,6,13,9,8,15,6,3,2,15,13,4,8,0,2,4,8,2,11,10,14,10,4,0,10,12,7,4,10,1,9,12,0,12,5,3,7,5,6,9,7,3,6,6,10,13,15,9,8,8,9,6,7,15,3,2,1,14,2,10,11,6,4,0,0,7,2,11,10,0,15,7,15,13,4,3,9,6,0,15,6,0,13,12,1,0,2,10,12,0,3,0,4,12,4,8,5,9,4,1,5,2,15,11,1,13,7,12,6,5,10,1,9,4,6,1,14,9,8,6,12,10,15,14,12,10,8,7,1,4,11,0,7,9,1,10,11,4,2,3,0,14,12,1,10,11,8,3,9,3,1,8,8,2,10,9,5,11,15,13,10,15,4,15,9,7,12,14,8,7,13,1,14,11,8,2,4,5,0,0,9,9,0,13,6,5,2,11,8,15,3,12,11,10,4,2,1,10,6,13,4,5,13,0,6,13,5,12,14,8,9,2,5,7,12,3,1,6,8,10,13,4,14,11,1,8,10,14,14,4,13,10,7,3,8,15,9,8,14,13,14,12,4,9,2,10,14,3,15,2,1,7,15,3,8,15,15,13,0,14,9,12,11,2,15,6,14,5,8,1,11,8,8,13,10,7,14,8,9,13,4,5,10,11,14,14,12,8,2,13,3,7,15,6,13,2,6,6,7,1,1,10,15,4,5,0,9,15,7,10,7,1,11,7,13,9,0,4,12,6,14,2,12,10,11,10,0,12,13,14,5,7,14,8,9,6,13,5,1,6,6,2,4,7,7,5,15,14,8,7,1,14,6,4,4,10,2,11,13,4,10,9,15,4,0,6,2,9,8,2,10,4,13,0,11,6,9,7,4,12,14,4,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"8\"], \"clip_start\": 414.0, \"clip_end\": 417.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,0,12,10,2,10,8,1,6,3,10,5,7,10,9,13,9,4,2,3,8,7,2,10,10,10,9,14,5,13,14,3,11,10,0,9,2,8,10,0,6,15,13,1,3,4,11,0,15,12,7,7,2,4,4,0,10,8,4,5,1,15,4,2,3,14,6,6,13,2,9,15,13,3,1,13,0,0,2,6,7,14,7,11,3,10,9,10,12,13,10,12,11,10,0,9,3,1,4,6,6,13,11,7,15,1,10,3,10,15,1,9,3,14,12,3,7,8,0,2,2,6,14,12,14,10,11,14,0,6,13,9,8,15,6,3,2,15,13,4,8,0,2,4,8,2,11,10,14,10,4,0,10,12,7,4,10,1,9,12,0,12,5,3,7,5,6,9,7,3,6,6,10,13,15,9,8,8,9,6,7,15,3,2,1,14,2,10,11,6,4,0,0,7,2,11,10,0,15,7,15,13,4,3,9,6,0,15,6,0,13,12,1,0,2,10,12,0,3,0,4,12,4,8,5,9,4,1,5,2,15,11,1,13,7,12,6,5,10,1,9,4,6,1,14,9,8,6,12,10,15,14,12,10,8,7,1,4,11,0,7,9,1,10,11,4,2,3,0,14,12,1,10,11,8,3,9,3,1,8,8,2,10,9,5,11,15,13,10,15,4,15,9,7,12,14,8,7,13,1,14,11,8,2,4,5,0,0,9,9,0,13,6,5,2,11,8,15,3,12,11,10,4,2,1,10,6,13,4,5,13,0,6,13,5,12,14,8,9,2,5,7,12,3,1,6,8,10,13,4,14,11,1,8,10,14,14,4,13,10,7,3,8,15,9,8,14,13,14,12,4,9,2,10,14,3,15,2,1,7,15,3,8,15,15,13,0,14,9,12,11,2,15,6,14,5,8,1,11,8,8,13,10,7,14,8,9,13,4,5,10,11,14,14,12,8,2,13,3,7,15,6,13,2,6,6,7,1,1,10,15,4,5,0,9,15,7,10,7,1,11,7,13,9,0,4,12,6,14,2,12,10,11,10,0,12,13,14,5,7,14,8,9,6,13,5,1,6,6,2,4,7,7,5,15,14,8,7,1,14,6,4,4,10,2,11,13,4,10,9,15,4,0,6,2,9,8,2,10,4,13,0,11,6,9,7,4,12,14,4,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"3\", \"14\"], \"clip_start\": 308.0, \"clip_end\": 311.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,0,12,10,2,10,8,1,6,3,10,5,7,10,9,13,9,4,2,3,8,7,2,10,10,10,9,14,5,13,14,3,11,10,0,9,2,8,10,0,6,15,13,1,3,4,11,0,15,12,7,7,2,4,4,0,10,8,4,5,1,15,4,2,3,14,6,6,13,2,9,15,13,3,1,13,0,0,2,6,7,14,7,11,3,10,9,10,12,13,10,12,11,10,0,9,3,1,4,6,6,13,11,7,15,1,10,3,10,15,1,9,3,14,12,3,7,8,0,2,2,6,14,12,14,10,11,14,0,6,13,9,8,15,6,3,2,15,13,4,8,0,2,4,8,2,11,10,14,10,4,0,10,12,7,4,10,1,9,12,0,12,5,3,7,5,6,9,7,3,6,6,10,13,15,9,8,8,9,6,7,15,3,2,1,14,2,10,11,6,4,0,0,7,2,11,10,0,15,7,15,13,4,3,9,6,0,15,6,0,13,12,1,0,2,10,12,0,3,0,4,12,4,8,5,9,4,1,5,2,15,11,1,13,7,12,6,5,10,1,9,4,6,1,14,9,8,6,12,10,15,14,12,10,8,7,1,4,11,0,7,9,1,10,11,4,2,3,0,14,12,1,10,11,8,3,9,3,1,8,8,2,10,9,5,11,15,13,10,15,4,15,9,7,12,14,8,7,13,1,14,11,8,2,4,5,0,0,9,9,0,13,6,5,2,11,8,15,3,12,11,10,4,2,1,10,6,13,4,5,13,0,6,13,5,12,14,8,9,2,5,7,12,3,1,6,8,10,13,4,14,11,1,8,10,14,14,4,13,10,7,3,8,15,9,8,14,13,14,12,4,9,2,10,14,3,15,2,1,7,15,3,8,15,15,13,0,14,9,12,11,2,15,6,14,5,8,1,11,8,8,13,10,7,14,8,9,13,4,5,10,11,14,14,12,8,2,13,3,7,15,6,13,2,6,6,7,1,1,10,15,4,5,0,9,15,7,10,7,1,11,7,13,9,0,4,12,6,14,2,12,10,11,10,0,12,13,14,5,7,14,8,9,6,13,5,1,6,6,2,4,7,7,5,15,14,8,7,1,14,6,4,4,10,2,11,13,4,10,9,15,4,0,6,2,9,8,2,10,4,13,0,11,6,9,7,4,12,14,4,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"9\", \"2\", \"13\", \"4\", \"10\"], \"clip_start\": 229.0, \"clip_end\": 235.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q10_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,0,12,10,2,10,8,1,6,3,10,5,7,10,9,13,9,4,2,3,8,7,2,10,10,10,9,14,5,13,14,3,11,10,0,9,2,8,10,0,6,15,13,1,3,4,11,0,15,12,7,7,2,4,4,0,10,8,4,5,1,15,4,2,3,14,6,6,13,2,9,15,13,3,1,13,0,0,2,6,7,14,7,11,3,10,9,10,12,13,10,12,11,10,0,9,3,1,4,6,6,13,11,7,15,1,10,3,10,15,1,9,3,14,12,3,7,8,0,2,2,6,14,12,14,10,11,14,0,6,13,9,8,15,6,3,2,15,13,4,8,0,2,4,8,2,11,10,14,10,4,0,10,12,7,4,10,1,9,12,0,12,5,3,7,5,6,9,7,3,6,6,10,13,15,9,8,8,9,6,7,15,3,2,1,14,2,10,11,6,4,0,0,7,2,11,10,0,15,7,15,13,4,3,9,6,0,15,6,0,13,12,1,0,2,10,12,0,3,0,4,12,4,8,5,9,4,1,5,2,15,11,1,13,7,12,6,5,10,1,9,4,6,1,14,9,8,6,12,10,15,14,12,10,8,7,1,4,11,0,7,9,1,10,11,4,2,3,0,14,12,1,10,11,8,3,9,3,1,8,8,2,10,9,5,11,15,13,10,15,4,15,9,7,12,14,8,7,13,1,14,11,8,2,4,5,0,0,9,9,0,13,6,5,2,11,8,15,3,12,11,10,4,2,1,10,6,13,4,5,13,0,6,13,5,12,14,8,9,2,5,7,12,3,1,6,8,10,13,4,14,11,1,8,10,14,14,4,13,10,7,3,8,15,9,8,14,13,14,12,4,9,2,10,14,3,15,2,1,7,15,3,8,15,15,13,0,14,9,12,11,2,15,6,14,5,8,1,11,8,8,13,10,7,14,8,9,13,4,5,10,11,14,14,12,8,2,13,3,7,15,6,13,2,6,6,7,1,1,10,15,4,5,0,9,15,7,10,7,1,11,7,13,9,0,4,12,6,14,2,12,10,11,10,0,12,13,14,5,7,14,8,9,6,13,5,1,6,6,2,4,7,7,5,15,14,8,7,1,14,6,4,4,10,2,11,13,4,10,9,15,4,0,6,2,9,8,2,10,4,13,0,11,6,9,7,4,12,14,4,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 1, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\", \"2\"], \"clip_start\": 2.0, \"clip_end\": 6.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q11_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,0,12,10,2,10,8,1,6,3,10,5,7,10,9,13,9,4,2,3,8,7,2,10,10,10,9,14,5,13,14,3,11,10,0,9,2,8,10,0,6,15,13,1,3,4,11,0,15,12,7,7,2,4,4,0,10,8,4,5,1,15,4,2,3,14,6,6,13,2,9,15,13,3,1,13,0,0,2,6,7,14,7,11,3,10,9,10,12,13,10,12,11,10,0,9,3,1,4,6,6,13,11,7,15,1,10,3,10,15,1,9,3,14,12,3,7,8,0,2,2,6,14,12,14,10,11,14,0,6,13,9,8,15,6,3,2,15,13,4,8,0,2,4,8,2,11,10,14,10,4,0,10,12,7,4,10,1,9,12,0,12,5,3,7,5,6,9,7,3,6,6,10,13,15,9,8,8,9,6,7,15,3,2,1,14,2,10,11,6,4,0,0,7,2,11,10,0,15,7,15,13,4,3,9,6,0,15,6,0,13,12,1,0,2,10,12,0,3,0,4,12,4,8,5,9,4,1,5,2,15,11,1,13,7,12,6,5,10,1,9,4,6,1,14,9,8,6,12,10,15,14,12,10,8,7,1,4,11,0,7,9,1,10,11,4,2,3,0,14,12,1,10,11,8,3,9,3,1,8,8,2,10,9,5,11,15,13,10,15,4,15,9,7,12,14,8,7,13,1,14,11,8,2,4,5,0,0,9,9,0,13,6,5,2,11,8,15,3,12,11,10,4,2,1,10,6,13,4,5,13,0,6,13,5,12,14,8,9,2,5,7,12,3,1,6,8,10,13,4,14,11,1,8,10,14,14,4,13,10,7,3,8,15,9,8,14,13,14,12,4,9,2,10,14,3,15,2,1,7,15,3,8,15,15,13,0,14,9,12,11,2,15,6,14,5,8,1,11,8,8,13,10,7,14,8,9,13,4,5,10,11,14,14,12,8,2,13,3,7,15,6,13,2,6,6,7,1,1,10,15,4,5,0,9,15,7,10,7,1,11,7,13,9,0,4,12,6,14,2,12,10,11,10,0,12,13,14,5,7,14,8,9,6,13,5,1,6,6,2,4,7,7,5,15,14,8,7,1,14,6,4,4,10,2,11,13,4,10,9,15,4,0,6,2,9,8,2,10,4,13,0,11,6,9,7,4,12,14,4,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"9\", \"15\"], \"clip_start\": 70.0, \"clip_end\": 73.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,0,12,10,2,10,8,1,6,3,10,5,7,10,9,13,9,4,2,3,8,7,2,10,10,10,9,14,5,13,14,3,11,10,0,9,2,8,10,0,6,15,13,1,3,4,11,0,15,12,7,7,2,4,4,0,10,8,4,5,1,15,4,2,3,14,6,6,13,2,9,15,13,3,1,13,0,0,2,6,7,14,7,11,3,10,9,10,12,13,10,12,11,10,0,9,3,1,4,6,6,13,11,7,15,1,10,3,10,15,1,9,3,14,12,3,7,8,0,2,2,6,14,12,14,10,11,14,0,6,13,9,8,15,6,3,2,15,13,4,8,0,2,4,8,2,11,10,14,10,4,0,10,12,7,4,10,1,9,12,0,12,5,3,7,5,6,9,7,3,6,6,10,13,15,9,8,8,9,6,7,15,3,2,1,14,2,10,11,6,4,0,0,7,2,11,10,0,15,7,15,13,4,3,9,6,0,15,6,0,13,12,1,0,2,10,12,0,3,0,4,12,4,8,5,9,4,1,5,2,15,11,1,13,7,12,6,5,10,1,9,4,6,1,14,9,8,6,12,10,15,14,12,10,8,7,1,4,11,0,7,9,1,10,11,4,2,3,0,14,12,1,10,11,8,3,9,3,1,8,8,2,10,9,5,11,15,13,10,15,4,15,9,7,12,14,8,7,13,1,14,11,8,2,4,5,0,0,9,9,0,13,6,5,2,11,8,15,3,12,11,10,4,2,1,10,6,13,4,5,13,0,6,13,5,12,14,8,9,2,5,7,12,3,1,6,8,10,13,4,14,11,1,8,10,14,14,4,13,10,7,3,8,15,9,8,14,13,14,12,4,9,2,10,14,3,15,2,1,7,15,3,8,15,15,13,0,14,9,12,11,2,15,6,14,5,8,1,11,8,8,13,10,7,14,8,9,13,4,5,10,11,14,14,12,8,2,13,3,7,15,6,13,2,6,6,7,1,1,10,15,4,5,0,9,15,7,10,7,1,11,7,13,9,0,4,12,6,14,2,12,10,11,10,0,12,13,14,5,7,14,8,9,6,13,5,1,6,6,2,4,7,7,5,15,14,8,7,1,14,6,4,4,10,2,11,13,4,10,9,15,4,0,6,2,9,8,2,10,4,13,0,11,6,9,7,4,12,14,4,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"5\", \"9\"], \"clip_start\": 223.0, \"clip_end\": 227.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q13_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,0,12,10,2,10,8,1,6,3,10,5,7,10,9,13,9,4,2,3,8,7,2,10,10,10,9,14,5,13,14,3,11,10,0,9,2,8,10,0,6,15,13,1,3,4,11,0,15,12,7,7,2,4,4,0,10,8,4,5,1,15,4,2,3,14,6,6,13,2,9,15,13,3,1,13,0,0,2,6,7,14,7,11,3,10,9,10,12,13,10,12,11,10,0,9,3,1,4,6,6,13,11,7,15,1,10,3,10,15,1,9,3,14,12,3,7,8,0,2,2,6,14,12,14,10,11,14,0,6,13,9,8,15,6,3,2,15,13,4,8,0,2,4,8,2,11,10,14,10,4,0,10,12,7,4,10,1,9,12,0,12,5,3,7,5,6,9,7,3,6,6,10,13,15,9,8,8,9,6,7,15,3,2,1,14,2,10,11,6,4,0,0,7,2,11,10,0,15,7,15,13,4,3,9,6,0,15,6,0,13,12,1,0,2,10,12,0,3,0,4,12,4,8,5,9,4,1,5,2,15,11,1,13,7,12,6,5,10,1,9,4,6,1,14,9,8,6,12,10,15,14,12,10,8,7,1,4,11,0,7,9,1,10,11,4,2,3,0,14,12,1,10,11,8,3,9,3,1,8,8,2,10,9,5,11,15,13,10,15,4,15,9,7,12,14,8,7,13,1,14,11,8,2,4,5,0,0,9,9,0,13,6,5,2,11,8,15,3,12,11,10,4,2,1,10,6,13,4,5,13,0,6,13,5,12,14,8,9,2,5,7,12,3,1,6,8,10,13,4,14,11,1,8,10,14,14,4,13,10,7,3,8,15,9,8,14,13,14,12,4,9,2,10,14,3,15,2,1,7,15,3,8,15,15,13,0,14,9,12,11,2,15,6,14,5,8,1,11,8,8,13,10,7,14,8,9,13,4,5,10,11,14,14,12,8,2,13,3,7,15,6,13,2,6,6,7,1,1,10,15,4,5,0,9,15,7,10,7,1,11,7,13,9,0,4,12,6,14,2,12,10,11,10,0,12,13,14,5,7,14,8,9,6,13,5,1,6,6,2,4,7,7,5,15,14,8,7,1,14,6,4,4,10,2,11,13,4,10,9,15,4,0,6,2,9,8,2,10,4,13,0,11,6,9,7,4,12,14,4,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"6\", \"10\", \"5\", \"6\"], \"clip_start\": 408.0, \"clip_end\": 413.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q14_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,0,12,10,2,10,8,1,6,3,10,5,7,10,9,13,9,4,2,3,8,7,2,10,10,10,9,14,5,13,14,3,11,10,0,9,2,8,10,0,6,15,13,1,3,4,11,0,15,12,7,7,2,4,4,0,10,8,4,5,1,15,4,2,3,14,6,6,13,2,9,15,13,3,1,13,0,0,2,6,7,14,7,11,3,10,9,10,12,13,10,12,11,10,0,9,3,1,4,6,6,13,11,7,15,1,10,3,10,15,1,9,3,14,12,3,7,8,0,2,2,6,14,12,14,10,11,14,0,6,13,9,8,15,6,3,2,15,13,4,8,0,2,4,8,2,11,10,14,10,4,0,10,12,7,4,10,1,9,12,0,12,5,3,7,5,6,9,7,3,6,6,10,13,15,9,8,8,9,6,7,15,3,2,1,14,2,10,11,6,4,0,0,7,2,11,10,0,15,7,15,13,4,3,9,6,0,15,6,0,13,12,1,0,2,10,12,0,3,0,4,12,4,8,5,9,4,1,5,2,15,11,1,13,7,12,6,5,10,1,9,4,6,1,14,9,8,6,12,10,15,14,12,10,8,7,1,4,11,0,7,9,1,10,11,4,2,3,0,14,12,1,10,11,8,3,9,3,1,8,8,2,10,9,5,11,15,13,10,15,4,15,9,7,12,14,8,7,13,1,14,11,8,2,4,5,0,0,9,9,0,13,6,5,2,11,8,15,3,12,11,10,4,2,1,10,6,13,4,5,13,0,6,13,5,12,14,8,9,2,5,7,12,3,1,6,8,10,13,4,14,11,1,8,10,14,14,4,13,10,7,3,8,15,9,8,14,13,14,12,4,9,2,10,14,3,15,2,1,7,15,3,8,15,15,13,0,14,9,12,11,2,15,6,14,5,8,1,11,8,8,13,10,7,14,8,9,13,4,5,10,11,14,14,12,8,2,13,3,7,15,6,13,2,6,6,7,1,1,10,15,4,5,0,9,15,7,10,7,1,11,7,13,9,0,4,12,6,14,2,12,10,11,10,0,12,13,14,5,7,14,8,9,6,13,5,1,6,6,2,4,7,7,5,15,14,8,7,1,14,6,4,4,10,2,11,13,4,10,9,15,4,0,6,2,9,8,2,10,4,13,0,11,6,9,7,4,12,14,4,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 1, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"12\", \"12\", \"15\", \"11\", \"12\"], \"clip_start\": 126.0, \"clip_end\": 132.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q15_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,11,0,12,10,2,10,8,1,6,3,10,5,7,10,9,13,9,4,2,3,8,7,2,10,10,10,9,14,5,13,14,3,11,10,0,9,2,8,10,0,6,15,13,1,3,4,11,0,15,12,7,7,2,4,4,0,10,8,4,5,1,15,4,2,3,14,6,6,13,2,9,15,13,3,1,13,0,0,2,6,7,14,7,11,3,10,9,10,12,13,10,12,11,10,0,9,3,1,4,6,6,13,11,7,15,1,10,3,10,15,1,9,3,14,12,3,7,8,0,2,2,6,14,12,14,10,11,14,0,6,13,9,8,15,6,3,2,15,13,4,8,0,2,4,8,2,11,10,14,10,4,0,10,12,7,4,10,1,9,12,0,12,5,3,7,5,6,9,7,3,6,6,10,13,15,9,8,8,9,6,7,15,3,2,1,14,2,10,11,6,4,0,0,7,2,11,10,0,15,7,15,13,4,3,9,6,0,15,6,0,13,12,1,0,2,10,12,0,3,0,4,12,4,8,5,9,4,1,5,2,15,11,1,13,7,12,6,5,10,1,9,4,6,1,14,9,8,6,12,10,15,14,12,10,8,7,1,4,11,0,7,9,1,10,11,4,2,3,0,14,12,1,10,11,8,3,9,3,1,8,8,2,10,9,5,11,15,13,10,15,4,15,9,7,12,14,8,7,13,1,14,11,8,2,4,5,0,0,9,9,0,13,6,5,2,11,8,15,3,12,11,10,4,2,1,10,6,13,4,5,13,0,6,13,5,12,14,8,9,2,5,7,12,3,1,6,8,10,13,4,14,11,1,8,10,14,14,4,13,10,7,3,8,15,9,8,14,13,14,12,4,9,2,10,14,3,15,2,1,7,15,3,8,15,15,13,0,14,9,12,11,2,15,6,14,5,8,1,11,8,8,13,10,7,14,8,9,13,4,5,10,11,14,14,12,8,2,13,3,7,15,6,13,2,6,6,7,1,1,10,15,4,5,0,9,15,7,10,7,1,11,7,13,9,0,4,12,6,14,2,12,10,11,10,0,12,13,14,5,7,14,8,9,6,13,5,1,6,6,2,4,7,7,5,15,14,8,7,1,14,6,4,4,10,2,11,13,4,10,9,15,4,0,6,2,9,8,2,10,4,13,0,11,6,9,7,4,12,14,4,10", "source_class": null, "source_dataset": null, "video_id": "video_1_v0", "question_id": "video_1_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"1\", \"7\", \"1\", \"14\"], \"clip_start\": 216.0, \"clip_end\": 221.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,14,13,4,14,0,14,5,10,14,11,11,4,15,14,9,7,9,9,14,5,4,12,11,15,5,11,4,15,13,14,6,13,13,3,13,3,9,6,6,8,9,4,8,3,11,2,5,8,1,9,4,6,9,5,9,0,8,0,11,12,5,14,0,9,4,10,15,9,4,13,2,9,5,3,10,3,4,12,10,2,0,12,10,8,8,6,13,8,11,10,8,8,12,12,8,7,10,1,14,6,9,11,12,4,2,9,15,3,5,11,9,4,3,14,15,5,12,4,7,13,1,9,10,11,1,11,15,11,15,12,11,14,14,12,10,4,0,13,1,15,5,11,13,6,10,11,11,4,7,6,10,3,2,5,1,11,1,15,8,1,10,8,1,6,4,8,11,4,14,0,15,10,10,8,11,10,0,3,14,6,9,5,5,5,5,0,3,14,8,5,2,7,1,5,6,2,10,15,3,14,6,14,13,8,6,4,13,4,9,9,7,6,8,6,11,1,7,1,14,13,7,2,9,4,14,5,5,15,13,1,13,6,10,4,15,8,13,15,8,7,9,6,8,10,14,10,1,9,14,11,14,10,9,4,12,8,10,12,14,12,4,0,13,3,4,15,6,6,15,10,11,15,11,0,10,3,8,11,4,4,14,2,6,4,11,13,8,12,9,0,9,3,6,6,2,8,2,0,11,10,12,12,4,13,13,7,14,5,2,11,11,4,4,9,4,15,15,2,15,4,15,2,12,6,13,15,8,14,14,6,4,11,2,4,1,15,14,5,13,12,3,8,0,5,14,9,7,9,1,7,15,8,13,8,2,9,1,3,3,2,8,11,9,10,0,1,4,10,5,2,5,15,4,9,13,10,7,13,11,0,1,15,4,9,9,7,3,6,7,3,5,5,4,11,2,15,13,11,10,14,2,9,2,8,10,7,2,10,10,9,4,11,6,13,10,14,5,13,5,14,3,5,8,3,4,15,0,9,4,10,15,7,2,15,13,2,3,11,0,0,11,10,2,8,15,6,7,14,15,3,12,10,3,8,3,8,11,5,8,11,11,13,0,11,5,2,10,3,10,14,5,12,9,0,10,14,12,0,5,10,15,14,12,6,13,0,15,6,2,13,7,9,1,11,10,13,10,2,7,8,13,13,13,7,3,12,0,11,11,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"11\", \"1\", \"15\", \"8\"], \"clip_start\": 155.0, \"clip_end\": 161.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,14,13,4,14,0,14,5,10,14,11,11,4,15,14,9,7,9,9,14,5,4,12,11,15,5,11,4,15,13,14,6,13,13,3,13,3,9,6,6,8,9,4,8,3,11,2,5,8,1,9,4,6,9,5,9,0,8,0,11,12,5,14,0,9,4,10,15,9,4,13,2,9,5,3,10,3,4,12,10,2,0,12,10,8,8,6,13,8,11,10,8,8,12,12,8,7,10,1,14,6,9,11,12,4,2,9,15,3,5,11,9,4,3,14,15,5,12,4,7,13,1,9,10,11,1,11,15,11,15,12,11,14,14,12,10,4,0,13,1,15,5,11,13,6,10,11,11,4,7,6,10,3,2,5,1,11,1,15,8,1,10,8,1,6,4,8,11,4,14,0,15,10,10,8,11,10,0,3,14,6,9,5,5,5,5,0,3,14,8,5,2,7,1,5,6,2,10,15,3,14,6,14,13,8,6,4,13,4,9,9,7,6,8,6,11,1,7,1,14,13,7,2,9,4,14,5,5,15,13,1,13,6,10,4,15,8,13,15,8,7,9,6,8,10,14,10,1,9,14,11,14,10,9,4,12,8,10,12,14,12,4,0,13,3,4,15,6,6,15,10,11,15,11,0,10,3,8,11,4,4,14,2,6,4,11,13,8,12,9,0,9,3,6,6,2,8,2,0,11,10,12,12,4,13,13,7,14,5,2,11,11,4,4,9,4,15,15,2,15,4,15,2,12,6,13,15,8,14,14,6,4,11,2,4,1,15,14,5,13,12,3,8,0,5,14,9,7,9,1,7,15,8,13,8,2,9,1,3,3,2,8,11,9,10,0,1,4,10,5,2,5,15,4,9,13,10,7,13,11,0,1,15,4,9,9,7,3,6,7,3,5,5,4,11,2,15,13,11,10,14,2,9,2,8,10,7,2,10,10,9,4,11,6,13,10,14,5,13,5,14,3,5,8,3,4,15,0,9,4,10,15,7,2,15,13,2,3,11,0,0,11,10,2,8,15,6,7,14,15,3,12,10,3,8,3,8,11,5,8,11,11,13,0,11,5,2,10,3,10,14,5,12,9,0,10,14,12,0,5,10,15,14,12,6,13,0,15,6,2,13,7,9,1,11,10,13,10,2,7,8,13,13,13,7,3,12,0,11,11,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"8\", \"15\", \"12\", \"15\", \"10\"], \"clip_start\": 494.0, \"clip_end\": 500.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q2_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,14,13,4,14,0,14,5,10,14,11,11,4,15,14,9,7,9,9,14,5,4,12,11,15,5,11,4,15,13,14,6,13,13,3,13,3,9,6,6,8,9,4,8,3,11,2,5,8,1,9,4,6,9,5,9,0,8,0,11,12,5,14,0,9,4,10,15,9,4,13,2,9,5,3,10,3,4,12,10,2,0,12,10,8,8,6,13,8,11,10,8,8,12,12,8,7,10,1,14,6,9,11,12,4,2,9,15,3,5,11,9,4,3,14,15,5,12,4,7,13,1,9,10,11,1,11,15,11,15,12,11,14,14,12,10,4,0,13,1,15,5,11,13,6,10,11,11,4,7,6,10,3,2,5,1,11,1,15,8,1,10,8,1,6,4,8,11,4,14,0,15,10,10,8,11,10,0,3,14,6,9,5,5,5,5,0,3,14,8,5,2,7,1,5,6,2,10,15,3,14,6,14,13,8,6,4,13,4,9,9,7,6,8,6,11,1,7,1,14,13,7,2,9,4,14,5,5,15,13,1,13,6,10,4,15,8,13,15,8,7,9,6,8,10,14,10,1,9,14,11,14,10,9,4,12,8,10,12,14,12,4,0,13,3,4,15,6,6,15,10,11,15,11,0,10,3,8,11,4,4,14,2,6,4,11,13,8,12,9,0,9,3,6,6,2,8,2,0,11,10,12,12,4,13,13,7,14,5,2,11,11,4,4,9,4,15,15,2,15,4,15,2,12,6,13,15,8,14,14,6,4,11,2,4,1,15,14,5,13,12,3,8,0,5,14,9,7,9,1,7,15,8,13,8,2,9,1,3,3,2,8,11,9,10,0,1,4,10,5,2,5,15,4,9,13,10,7,13,11,0,1,15,4,9,9,7,3,6,7,3,5,5,4,11,2,15,13,11,10,14,2,9,2,8,10,7,2,10,10,9,4,11,6,13,10,14,5,13,5,14,3,5,8,3,4,15,0,9,4,10,15,7,2,15,13,2,3,11,0,0,11,10,2,8,15,6,7,14,15,3,12,10,3,8,3,8,11,5,8,11,11,13,0,11,5,2,10,3,10,14,5,12,9,0,10,14,12,0,5,10,15,14,12,6,13,0,15,6,2,13,7,9,1,11,10,13,10,2,7,8,13,13,13,7,3,12,0,11,11,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"2\", \"15\", \"13\", \"11\"], \"clip_start\": 394.0, \"clip_end\": 400.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q3_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,14,13,4,14,0,14,5,10,14,11,11,4,15,14,9,7,9,9,14,5,4,12,11,15,5,11,4,15,13,14,6,13,13,3,13,3,9,6,6,8,9,4,8,3,11,2,5,8,1,9,4,6,9,5,9,0,8,0,11,12,5,14,0,9,4,10,15,9,4,13,2,9,5,3,10,3,4,12,10,2,0,12,10,8,8,6,13,8,11,10,8,8,12,12,8,7,10,1,14,6,9,11,12,4,2,9,15,3,5,11,9,4,3,14,15,5,12,4,7,13,1,9,10,11,1,11,15,11,15,12,11,14,14,12,10,4,0,13,1,15,5,11,13,6,10,11,11,4,7,6,10,3,2,5,1,11,1,15,8,1,10,8,1,6,4,8,11,4,14,0,15,10,10,8,11,10,0,3,14,6,9,5,5,5,5,0,3,14,8,5,2,7,1,5,6,2,10,15,3,14,6,14,13,8,6,4,13,4,9,9,7,6,8,6,11,1,7,1,14,13,7,2,9,4,14,5,5,15,13,1,13,6,10,4,15,8,13,15,8,7,9,6,8,10,14,10,1,9,14,11,14,10,9,4,12,8,10,12,14,12,4,0,13,3,4,15,6,6,15,10,11,15,11,0,10,3,8,11,4,4,14,2,6,4,11,13,8,12,9,0,9,3,6,6,2,8,2,0,11,10,12,12,4,13,13,7,14,5,2,11,11,4,4,9,4,15,15,2,15,4,15,2,12,6,13,15,8,14,14,6,4,11,2,4,1,15,14,5,13,12,3,8,0,5,14,9,7,9,1,7,15,8,13,8,2,9,1,3,3,2,8,11,9,10,0,1,4,10,5,2,5,15,4,9,13,10,7,13,11,0,1,15,4,9,9,7,3,6,7,3,5,5,4,11,2,15,13,11,10,14,2,9,2,8,10,7,2,10,10,9,4,11,6,13,10,14,5,13,5,14,3,5,8,3,4,15,0,9,4,10,15,7,2,15,13,2,3,11,0,0,11,10,2,8,15,6,7,14,15,3,12,10,3,8,3,8,11,5,8,11,11,13,0,11,5,2,10,3,10,14,5,12,9,0,10,14,12,0,5,10,15,14,12,6,13,0,15,6,2,13,7,9,1,11,10,13,10,2,7,8,13,13,13,7,3,12,0,11,11,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"5\", \"4\", \"12\", \"11\"], \"clip_start\": 19.0, \"clip_end\": 25.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q4_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,14,13,4,14,0,14,5,10,14,11,11,4,15,14,9,7,9,9,14,5,4,12,11,15,5,11,4,15,13,14,6,13,13,3,13,3,9,6,6,8,9,4,8,3,11,2,5,8,1,9,4,6,9,5,9,0,8,0,11,12,5,14,0,9,4,10,15,9,4,13,2,9,5,3,10,3,4,12,10,2,0,12,10,8,8,6,13,8,11,10,8,8,12,12,8,7,10,1,14,6,9,11,12,4,2,9,15,3,5,11,9,4,3,14,15,5,12,4,7,13,1,9,10,11,1,11,15,11,15,12,11,14,14,12,10,4,0,13,1,15,5,11,13,6,10,11,11,4,7,6,10,3,2,5,1,11,1,15,8,1,10,8,1,6,4,8,11,4,14,0,15,10,10,8,11,10,0,3,14,6,9,5,5,5,5,0,3,14,8,5,2,7,1,5,6,2,10,15,3,14,6,14,13,8,6,4,13,4,9,9,7,6,8,6,11,1,7,1,14,13,7,2,9,4,14,5,5,15,13,1,13,6,10,4,15,8,13,15,8,7,9,6,8,10,14,10,1,9,14,11,14,10,9,4,12,8,10,12,14,12,4,0,13,3,4,15,6,6,15,10,11,15,11,0,10,3,8,11,4,4,14,2,6,4,11,13,8,12,9,0,9,3,6,6,2,8,2,0,11,10,12,12,4,13,13,7,14,5,2,11,11,4,4,9,4,15,15,2,15,4,15,2,12,6,13,15,8,14,14,6,4,11,2,4,1,15,14,5,13,12,3,8,0,5,14,9,7,9,1,7,15,8,13,8,2,9,1,3,3,2,8,11,9,10,0,1,4,10,5,2,5,15,4,9,13,10,7,13,11,0,1,15,4,9,9,7,3,6,7,3,5,5,4,11,2,15,13,11,10,14,2,9,2,8,10,7,2,10,10,9,4,11,6,13,10,14,5,13,5,14,3,5,8,3,4,15,0,9,4,10,15,7,2,15,13,2,3,11,0,0,11,10,2,8,15,6,7,14,15,3,12,10,3,8,3,8,11,5,8,11,11,13,0,11,5,2,10,3,10,14,5,12,9,0,10,14,12,0,5,10,15,14,12,6,13,0,15,6,2,13,7,9,1,11,10,13,10,2,7,8,13,13,13,7,3,12,0,11,11,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"2\", \"15\"], \"clip_start\": 317.0, \"clip_end\": 321.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,14,13,4,14,0,14,5,10,14,11,11,4,15,14,9,7,9,9,14,5,4,12,11,15,5,11,4,15,13,14,6,13,13,3,13,3,9,6,6,8,9,4,8,3,11,2,5,8,1,9,4,6,9,5,9,0,8,0,11,12,5,14,0,9,4,10,15,9,4,13,2,9,5,3,10,3,4,12,10,2,0,12,10,8,8,6,13,8,11,10,8,8,12,12,8,7,10,1,14,6,9,11,12,4,2,9,15,3,5,11,9,4,3,14,15,5,12,4,7,13,1,9,10,11,1,11,15,11,15,12,11,14,14,12,10,4,0,13,1,15,5,11,13,6,10,11,11,4,7,6,10,3,2,5,1,11,1,15,8,1,10,8,1,6,4,8,11,4,14,0,15,10,10,8,11,10,0,3,14,6,9,5,5,5,5,0,3,14,8,5,2,7,1,5,6,2,10,15,3,14,6,14,13,8,6,4,13,4,9,9,7,6,8,6,11,1,7,1,14,13,7,2,9,4,14,5,5,15,13,1,13,6,10,4,15,8,13,15,8,7,9,6,8,10,14,10,1,9,14,11,14,10,9,4,12,8,10,12,14,12,4,0,13,3,4,15,6,6,15,10,11,15,11,0,10,3,8,11,4,4,14,2,6,4,11,13,8,12,9,0,9,3,6,6,2,8,2,0,11,10,12,12,4,13,13,7,14,5,2,11,11,4,4,9,4,15,15,2,15,4,15,2,12,6,13,15,8,14,14,6,4,11,2,4,1,15,14,5,13,12,3,8,0,5,14,9,7,9,1,7,15,8,13,8,2,9,1,3,3,2,8,11,9,10,0,1,4,10,5,2,5,15,4,9,13,10,7,13,11,0,1,15,4,9,9,7,3,6,7,3,5,5,4,11,2,15,13,11,10,14,2,9,2,8,10,7,2,10,10,9,4,11,6,13,10,14,5,13,5,14,3,5,8,3,4,15,0,9,4,10,15,7,2,15,13,2,3,11,0,0,11,10,2,8,15,6,7,14,15,3,12,10,3,8,3,8,11,5,8,11,11,13,0,11,5,2,10,3,10,14,5,12,9,0,10,14,12,0,5,10,15,14,12,6,13,0,15,6,2,13,7,9,1,11,10,13,10,2,7,8,13,13,13,7,3,12,0,11,11,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"10\", \"15\", \"14\"], \"clip_start\": 480.0, \"clip_end\": 484.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,14,13,4,14,0,14,5,10,14,11,11,4,15,14,9,7,9,9,14,5,4,12,11,15,5,11,4,15,13,14,6,13,13,3,13,3,9,6,6,8,9,4,8,3,11,2,5,8,1,9,4,6,9,5,9,0,8,0,11,12,5,14,0,9,4,10,15,9,4,13,2,9,5,3,10,3,4,12,10,2,0,12,10,8,8,6,13,8,11,10,8,8,12,12,8,7,10,1,14,6,9,11,12,4,2,9,15,3,5,11,9,4,3,14,15,5,12,4,7,13,1,9,10,11,1,11,15,11,15,12,11,14,14,12,10,4,0,13,1,15,5,11,13,6,10,11,11,4,7,6,10,3,2,5,1,11,1,15,8,1,10,8,1,6,4,8,11,4,14,0,15,10,10,8,11,10,0,3,14,6,9,5,5,5,5,0,3,14,8,5,2,7,1,5,6,2,10,15,3,14,6,14,13,8,6,4,13,4,9,9,7,6,8,6,11,1,7,1,14,13,7,2,9,4,14,5,5,15,13,1,13,6,10,4,15,8,13,15,8,7,9,6,8,10,14,10,1,9,14,11,14,10,9,4,12,8,10,12,14,12,4,0,13,3,4,15,6,6,15,10,11,15,11,0,10,3,8,11,4,4,14,2,6,4,11,13,8,12,9,0,9,3,6,6,2,8,2,0,11,10,12,12,4,13,13,7,14,5,2,11,11,4,4,9,4,15,15,2,15,4,15,2,12,6,13,15,8,14,14,6,4,11,2,4,1,15,14,5,13,12,3,8,0,5,14,9,7,9,1,7,15,8,13,8,2,9,1,3,3,2,8,11,9,10,0,1,4,10,5,2,5,15,4,9,13,10,7,13,11,0,1,15,4,9,9,7,3,6,7,3,5,5,4,11,2,15,13,11,10,14,2,9,2,8,10,7,2,10,10,9,4,11,6,13,10,14,5,13,5,14,3,5,8,3,4,15,0,9,4,10,15,7,2,15,13,2,3,11,0,0,11,10,2,8,15,6,7,14,15,3,12,10,3,8,3,8,11,5,8,11,11,13,0,11,5,2,10,3,10,14,5,12,9,0,10,14,12,0,5,10,15,14,12,6,13,0,15,6,2,13,7,9,1,11,10,13,10,2,7,8,13,13,13,7,3,12,0,11,11,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"3\", \"8\", \"14\", \"6\"], \"clip_start\": 165.0, \"clip_end\": 171.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,14,13,4,14,0,14,5,10,14,11,11,4,15,14,9,7,9,9,14,5,4,12,11,15,5,11,4,15,13,14,6,13,13,3,13,3,9,6,6,8,9,4,8,3,11,2,5,8,1,9,4,6,9,5,9,0,8,0,11,12,5,14,0,9,4,10,15,9,4,13,2,9,5,3,10,3,4,12,10,2,0,12,10,8,8,6,13,8,11,10,8,8,12,12,8,7,10,1,14,6,9,11,12,4,2,9,15,3,5,11,9,4,3,14,15,5,12,4,7,13,1,9,10,11,1,11,15,11,15,12,11,14,14,12,10,4,0,13,1,15,5,11,13,6,10,11,11,4,7,6,10,3,2,5,1,11,1,15,8,1,10,8,1,6,4,8,11,4,14,0,15,10,10,8,11,10,0,3,14,6,9,5,5,5,5,0,3,14,8,5,2,7,1,5,6,2,10,15,3,14,6,14,13,8,6,4,13,4,9,9,7,6,8,6,11,1,7,1,14,13,7,2,9,4,14,5,5,15,13,1,13,6,10,4,15,8,13,15,8,7,9,6,8,10,14,10,1,9,14,11,14,10,9,4,12,8,10,12,14,12,4,0,13,3,4,15,6,6,15,10,11,15,11,0,10,3,8,11,4,4,14,2,6,4,11,13,8,12,9,0,9,3,6,6,2,8,2,0,11,10,12,12,4,13,13,7,14,5,2,11,11,4,4,9,4,15,15,2,15,4,15,2,12,6,13,15,8,14,14,6,4,11,2,4,1,15,14,5,13,12,3,8,0,5,14,9,7,9,1,7,15,8,13,8,2,9,1,3,3,2,8,11,9,10,0,1,4,10,5,2,5,15,4,9,13,10,7,13,11,0,1,15,4,9,9,7,3,6,7,3,5,5,4,11,2,15,13,11,10,14,2,9,2,8,10,7,2,10,10,9,4,11,6,13,10,14,5,13,5,14,3,5,8,3,4,15,0,9,4,10,15,7,2,15,13,2,3,11,0,0,11,10,2,8,15,6,7,14,15,3,12,10,3,8,3,8,11,5,8,11,11,13,0,11,5,2,10,3,10,14,5,12,9,0,10,14,12,0,5,10,15,14,12,6,13,0,15,6,2,13,7,9,1,11,10,13,10,2,7,8,13,13,13,7,3,12,0,11,11,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"12\", \"14\", \"12\"], \"clip_start\": 391.0, \"clip_end\": 395.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q8_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,14,13,4,14,0,14,5,10,14,11,11,4,15,14,9,7,9,9,14,5,4,12,11,15,5,11,4,15,13,14,6,13,13,3,13,3,9,6,6,8,9,4,8,3,11,2,5,8,1,9,4,6,9,5,9,0,8,0,11,12,5,14,0,9,4,10,15,9,4,13,2,9,5,3,10,3,4,12,10,2,0,12,10,8,8,6,13,8,11,10,8,8,12,12,8,7,10,1,14,6,9,11,12,4,2,9,15,3,5,11,9,4,3,14,15,5,12,4,7,13,1,9,10,11,1,11,15,11,15,12,11,14,14,12,10,4,0,13,1,15,5,11,13,6,10,11,11,4,7,6,10,3,2,5,1,11,1,15,8,1,10,8,1,6,4,8,11,4,14,0,15,10,10,8,11,10,0,3,14,6,9,5,5,5,5,0,3,14,8,5,2,7,1,5,6,2,10,15,3,14,6,14,13,8,6,4,13,4,9,9,7,6,8,6,11,1,7,1,14,13,7,2,9,4,14,5,5,15,13,1,13,6,10,4,15,8,13,15,8,7,9,6,8,10,14,10,1,9,14,11,14,10,9,4,12,8,10,12,14,12,4,0,13,3,4,15,6,6,15,10,11,15,11,0,10,3,8,11,4,4,14,2,6,4,11,13,8,12,9,0,9,3,6,6,2,8,2,0,11,10,12,12,4,13,13,7,14,5,2,11,11,4,4,9,4,15,15,2,15,4,15,2,12,6,13,15,8,14,14,6,4,11,2,4,1,15,14,5,13,12,3,8,0,5,14,9,7,9,1,7,15,8,13,8,2,9,1,3,3,2,8,11,9,10,0,1,4,10,5,2,5,15,4,9,13,10,7,13,11,0,1,15,4,9,9,7,3,6,7,3,5,5,4,11,2,15,13,11,10,14,2,9,2,8,10,7,2,10,10,9,4,11,6,13,10,14,5,13,5,14,3,5,8,3,4,15,0,9,4,10,15,7,2,15,13,2,3,11,0,0,11,10,2,8,15,6,7,14,15,3,12,10,3,8,3,8,11,5,8,11,11,13,0,11,5,2,10,3,10,14,5,12,9,0,10,14,12,0,5,10,15,14,12,6,13,0,15,6,2,13,7,9,1,11,10,13,10,2,7,8,13,13,13,7,3,12,0,11,11,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"3\", \"14\", \"6\", \"9\"], \"clip_start\": 178.0, \"clip_end\": 183.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q9_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,14,13,4,14,0,14,5,10,14,11,11,4,15,14,9,7,9,9,14,5,4,12,11,15,5,11,4,15,13,14,6,13,13,3,13,3,9,6,6,8,9,4,8,3,11,2,5,8,1,9,4,6,9,5,9,0,8,0,11,12,5,14,0,9,4,10,15,9,4,13,2,9,5,3,10,3,4,12,10,2,0,12,10,8,8,6,13,8,11,10,8,8,12,12,8,7,10,1,14,6,9,11,12,4,2,9,15,3,5,11,9,4,3,14,15,5,12,4,7,13,1,9,10,11,1,11,15,11,15,12,11,14,14,12,10,4,0,13,1,15,5,11,13,6,10,11,11,4,7,6,10,3,2,5,1,11,1,15,8,1,10,8,1,6,4,8,11,4,14,0,15,10,10,8,11,10,0,3,14,6,9,5,5,5,5,0,3,14,8,5,2,7,1,5,6,2,10,15,3,14,6,14,13,8,6,4,13,4,9,9,7,6,8,6,11,1,7,1,14,13,7,2,9,4,14,5,5,15,13,1,13,6,10,4,15,8,13,15,8,7,9,6,8,10,14,10,1,9,14,11,14,10,9,4,12,8,10,12,14,12,4,0,13,3,4,15,6,6,15,10,11,15,11,0,10,3,8,11,4,4,14,2,6,4,11,13,8,12,9,0,9,3,6,6,2,8,2,0,11,10,12,12,4,13,13,7,14,5,2,11,11,4,4,9,4,15,15,2,15,4,15,2,12,6,13,15,8,14,14,6,4,11,2,4,1,15,14,5,13,12,3,8,0,5,14,9,7,9,1,7,15,8,13,8,2,9,1,3,3,2,8,11,9,10,0,1,4,10,5,2,5,15,4,9,13,10,7,13,11,0,1,15,4,9,9,7,3,6,7,3,5,5,4,11,2,15,13,11,10,14,2,9,2,8,10,7,2,10,10,9,4,11,6,13,10,14,5,13,5,14,3,5,8,3,4,15,0,9,4,10,15,7,2,15,13,2,3,11,0,0,11,10,2,8,15,6,7,14,15,3,12,10,3,8,3,8,11,5,8,11,11,13,0,11,5,2,10,3,10,14,5,12,9,0,10,14,12,0,5,10,15,14,12,6,13,0,15,6,2,13,7,9,1,11,10,13,10,2,7,8,13,13,13,7,3,12,0,11,11,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"15\", \"12\", \"11\", \"14\", \"14\"], \"clip_start\": 129.0, \"clip_end\": 135.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q10_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,14,13,4,14,0,14,5,10,14,11,11,4,15,14,9,7,9,9,14,5,4,12,11,15,5,11,4,15,13,14,6,13,13,3,13,3,9,6,6,8,9,4,8,3,11,2,5,8,1,9,4,6,9,5,9,0,8,0,11,12,5,14,0,9,4,10,15,9,4,13,2,9,5,3,10,3,4,12,10,2,0,12,10,8,8,6,13,8,11,10,8,8,12,12,8,7,10,1,14,6,9,11,12,4,2,9,15,3,5,11,9,4,3,14,15,5,12,4,7,13,1,9,10,11,1,11,15,11,15,12,11,14,14,12,10,4,0,13,1,15,5,11,13,6,10,11,11,4,7,6,10,3,2,5,1,11,1,15,8,1,10,8,1,6,4,8,11,4,14,0,15,10,10,8,11,10,0,3,14,6,9,5,5,5,5,0,3,14,8,5,2,7,1,5,6,2,10,15,3,14,6,14,13,8,6,4,13,4,9,9,7,6,8,6,11,1,7,1,14,13,7,2,9,4,14,5,5,15,13,1,13,6,10,4,15,8,13,15,8,7,9,6,8,10,14,10,1,9,14,11,14,10,9,4,12,8,10,12,14,12,4,0,13,3,4,15,6,6,15,10,11,15,11,0,10,3,8,11,4,4,14,2,6,4,11,13,8,12,9,0,9,3,6,6,2,8,2,0,11,10,12,12,4,13,13,7,14,5,2,11,11,4,4,9,4,15,15,2,15,4,15,2,12,6,13,15,8,14,14,6,4,11,2,4,1,15,14,5,13,12,3,8,0,5,14,9,7,9,1,7,15,8,13,8,2,9,1,3,3,2,8,11,9,10,0,1,4,10,5,2,5,15,4,9,13,10,7,13,11,0,1,15,4,9,9,7,3,6,7,3,5,5,4,11,2,15,13,11,10,14,2,9,2,8,10,7,2,10,10,9,4,11,6,13,10,14,5,13,5,14,3,5,8,3,4,15,0,9,4,10,15,7,2,15,13,2,3,11,0,0,11,10,2,8,15,6,7,14,15,3,12,10,3,8,3,8,11,5,8,11,11,13,0,11,5,2,10,3,10,14,5,12,9,0,10,14,12,0,5,10,15,14,12,6,13,0,15,6,2,13,7,9,1,11,10,13,10,2,7,8,13,13,13,7,3,12,0,11,11,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"11\", \"4\"], \"clip_start\": 29.0, \"clip_end\": 32.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q11_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,14,13,4,14,0,14,5,10,14,11,11,4,15,14,9,7,9,9,14,5,4,12,11,15,5,11,4,15,13,14,6,13,13,3,13,3,9,6,6,8,9,4,8,3,11,2,5,8,1,9,4,6,9,5,9,0,8,0,11,12,5,14,0,9,4,10,15,9,4,13,2,9,5,3,10,3,4,12,10,2,0,12,10,8,8,6,13,8,11,10,8,8,12,12,8,7,10,1,14,6,9,11,12,4,2,9,15,3,5,11,9,4,3,14,15,5,12,4,7,13,1,9,10,11,1,11,15,11,15,12,11,14,14,12,10,4,0,13,1,15,5,11,13,6,10,11,11,4,7,6,10,3,2,5,1,11,1,15,8,1,10,8,1,6,4,8,11,4,14,0,15,10,10,8,11,10,0,3,14,6,9,5,5,5,5,0,3,14,8,5,2,7,1,5,6,2,10,15,3,14,6,14,13,8,6,4,13,4,9,9,7,6,8,6,11,1,7,1,14,13,7,2,9,4,14,5,5,15,13,1,13,6,10,4,15,8,13,15,8,7,9,6,8,10,14,10,1,9,14,11,14,10,9,4,12,8,10,12,14,12,4,0,13,3,4,15,6,6,15,10,11,15,11,0,10,3,8,11,4,4,14,2,6,4,11,13,8,12,9,0,9,3,6,6,2,8,2,0,11,10,12,12,4,13,13,7,14,5,2,11,11,4,4,9,4,15,15,2,15,4,15,2,12,6,13,15,8,14,14,6,4,11,2,4,1,15,14,5,13,12,3,8,0,5,14,9,7,9,1,7,15,8,13,8,2,9,1,3,3,2,8,11,9,10,0,1,4,10,5,2,5,15,4,9,13,10,7,13,11,0,1,15,4,9,9,7,3,6,7,3,5,5,4,11,2,15,13,11,10,14,2,9,2,8,10,7,2,10,10,9,4,11,6,13,10,14,5,13,5,14,3,5,8,3,4,15,0,9,4,10,15,7,2,15,13,2,3,11,0,0,11,10,2,8,15,6,7,14,15,3,12,10,3,8,3,8,11,5,8,11,11,13,0,11,5,2,10,3,10,14,5,12,9,0,10,14,12,0,5,10,15,14,12,6,13,0,15,6,2,13,7,9,1,11,10,13,10,2,7,8,13,13,13,7,3,12,0,11,11,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"14\", \"2\", \"9\", \"2\"], \"clip_start\": 400.0, \"clip_end\": 405.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q12_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,14,13,4,14,0,14,5,10,14,11,11,4,15,14,9,7,9,9,14,5,4,12,11,15,5,11,4,15,13,14,6,13,13,3,13,3,9,6,6,8,9,4,8,3,11,2,5,8,1,9,4,6,9,5,9,0,8,0,11,12,5,14,0,9,4,10,15,9,4,13,2,9,5,3,10,3,4,12,10,2,0,12,10,8,8,6,13,8,11,10,8,8,12,12,8,7,10,1,14,6,9,11,12,4,2,9,15,3,5,11,9,4,3,14,15,5,12,4,7,13,1,9,10,11,1,11,15,11,15,12,11,14,14,12,10,4,0,13,1,15,5,11,13,6,10,11,11,4,7,6,10,3,2,5,1,11,1,15,8,1,10,8,1,6,4,8,11,4,14,0,15,10,10,8,11,10,0,3,14,6,9,5,5,5,5,0,3,14,8,5,2,7,1,5,6,2,10,15,3,14,6,14,13,8,6,4,13,4,9,9,7,6,8,6,11,1,7,1,14,13,7,2,9,4,14,5,5,15,13,1,13,6,10,4,15,8,13,15,8,7,9,6,8,10,14,10,1,9,14,11,14,10,9,4,12,8,10,12,14,12,4,0,13,3,4,15,6,6,15,10,11,15,11,0,10,3,8,11,4,4,14,2,6,4,11,13,8,12,9,0,9,3,6,6,2,8,2,0,11,10,12,12,4,13,13,7,14,5,2,11,11,4,4,9,4,15,15,2,15,4,15,2,12,6,13,15,8,14,14,6,4,11,2,4,1,15,14,5,13,12,3,8,0,5,14,9,7,9,1,7,15,8,13,8,2,9,1,3,3,2,8,11,9,10,0,1,4,10,5,2,5,15,4,9,13,10,7,13,11,0,1,15,4,9,9,7,3,6,7,3,5,5,4,11,2,15,13,11,10,14,2,9,2,8,10,7,2,10,10,9,4,11,6,13,10,14,5,13,5,14,3,5,8,3,4,15,0,9,4,10,15,7,2,15,13,2,3,11,0,0,11,10,2,8,15,6,7,14,15,3,12,10,3,8,3,8,11,5,8,11,11,13,0,11,5,2,10,3,10,14,5,12,9,0,10,14,12,0,5,10,15,14,12,6,13,0,15,6,2,13,7,9,1,11,10,13,10,2,7,8,13,13,13,7,3,12,0,11,11,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 2, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"11\", \"10\", \"2\"], \"clip_start\": 441.0, \"clip_end\": 445.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q13_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,14,13,4,14,0,14,5,10,14,11,11,4,15,14,9,7,9,9,14,5,4,12,11,15,5,11,4,15,13,14,6,13,13,3,13,3,9,6,6,8,9,4,8,3,11,2,5,8,1,9,4,6,9,5,9,0,8,0,11,12,5,14,0,9,4,10,15,9,4,13,2,9,5,3,10,3,4,12,10,2,0,12,10,8,8,6,13,8,11,10,8,8,12,12,8,7,10,1,14,6,9,11,12,4,2,9,15,3,5,11,9,4,3,14,15,5,12,4,7,13,1,9,10,11,1,11,15,11,15,12,11,14,14,12,10,4,0,13,1,15,5,11,13,6,10,11,11,4,7,6,10,3,2,5,1,11,1,15,8,1,10,8,1,6,4,8,11,4,14,0,15,10,10,8,11,10,0,3,14,6,9,5,5,5,5,0,3,14,8,5,2,7,1,5,6,2,10,15,3,14,6,14,13,8,6,4,13,4,9,9,7,6,8,6,11,1,7,1,14,13,7,2,9,4,14,5,5,15,13,1,13,6,10,4,15,8,13,15,8,7,9,6,8,10,14,10,1,9,14,11,14,10,9,4,12,8,10,12,14,12,4,0,13,3,4,15,6,6,15,10,11,15,11,0,10,3,8,11,4,4,14,2,6,4,11,13,8,12,9,0,9,3,6,6,2,8,2,0,11,10,12,12,4,13,13,7,14,5,2,11,11,4,4,9,4,15,15,2,15,4,15,2,12,6,13,15,8,14,14,6,4,11,2,4,1,15,14,5,13,12,3,8,0,5,14,9,7,9,1,7,15,8,13,8,2,9,1,3,3,2,8,11,9,10,0,1,4,10,5,2,5,15,4,9,13,10,7,13,11,0,1,15,4,9,9,7,3,6,7,3,5,5,4,11,2,15,13,11,10,14,2,9,2,8,10,7,2,10,10,9,4,11,6,13,10,14,5,13,5,14,3,5,8,3,4,15,0,9,4,10,15,7,2,15,13,2,3,11,0,0,11,10,2,8,15,6,7,14,15,3,12,10,3,8,3,8,11,5,8,11,11,13,0,11,5,2,10,3,10,14,5,12,9,0,10,14,12,0,5,10,15,14,12,6,13,0,15,6,2,13,7,9,1,11,10,13,10,2,7,8,13,13,13,7,3,12,0,11,11,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"0\", \"12\"], \"clip_start\": 120.0, \"clip_end\": 124.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q14_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,14,13,4,14,0,14,5,10,14,11,11,4,15,14,9,7,9,9,14,5,4,12,11,15,5,11,4,15,13,14,6,13,13,3,13,3,9,6,6,8,9,4,8,3,11,2,5,8,1,9,4,6,9,5,9,0,8,0,11,12,5,14,0,9,4,10,15,9,4,13,2,9,5,3,10,3,4,12,10,2,0,12,10,8,8,6,13,8,11,10,8,8,12,12,8,7,10,1,14,6,9,11,12,4,2,9,15,3,5,11,9,4,3,14,15,5,12,4,7,13,1,9,10,11,1,11,15,11,15,12,11,14,14,12,10,4,0,13,1,15,5,11,13,6,10,11,11,4,7,6,10,3,2,5,1,11,1,15,8,1,10,8,1,6,4,8,11,4,14,0,15,10,10,8,11,10,0,3,14,6,9,5,5,5,5,0,3,14,8,5,2,7,1,5,6,2,10,15,3,14,6,14,13,8,6,4,13,4,9,9,7,6,8,6,11,1,7,1,14,13,7,2,9,4,14,5,5,15,13,1,13,6,10,4,15,8,13,15,8,7,9,6,8,10,14,10,1,9,14,11,14,10,9,4,12,8,10,12,14,12,4,0,13,3,4,15,6,6,15,10,11,15,11,0,10,3,8,11,4,4,14,2,6,4,11,13,8,12,9,0,9,3,6,6,2,8,2,0,11,10,12,12,4,13,13,7,14,5,2,11,11,4,4,9,4,15,15,2,15,4,15,2,12,6,13,15,8,14,14,6,4,11,2,4,1,15,14,5,13,12,3,8,0,5,14,9,7,9,1,7,15,8,13,8,2,9,1,3,3,2,8,11,9,10,0,1,4,10,5,2,5,15,4,9,13,10,7,13,11,0,1,15,4,9,9,7,3,6,7,3,5,5,4,11,2,15,13,11,10,14,2,9,2,8,10,7,2,10,10,9,4,11,6,13,10,14,5,13,5,14,3,5,8,3,4,15,0,9,4,10,15,7,2,15,13,2,3,11,0,0,11,10,2,8,15,6,7,14,15,3,12,10,3,8,3,8,11,5,8,11,11,13,0,11,5,2,10,3,10,14,5,12,9,0,10,14,12,0,5,10,15,14,12,6,13,0,15,6,2,13,7,9,1,11,10,13,10,2,7,8,13,13,13,7,3,12,0,11,11,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 2, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"4\", \"15\", \"6\", \"6\", \"15\"], \"clip_start\": 265.0, \"clip_end\": 271.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q15_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4", "dataset_source": "synthetic", "input_sequence": "7,13,14,13,4,14,0,14,5,10,14,11,11,4,15,14,9,7,9,9,14,5,4,12,11,15,5,11,4,15,13,14,6,13,13,3,13,3,9,6,6,8,9,4,8,3,11,2,5,8,1,9,4,6,9,5,9,0,8,0,11,12,5,14,0,9,4,10,15,9,4,13,2,9,5,3,10,3,4,12,10,2,0,12,10,8,8,6,13,8,11,10,8,8,12,12,8,7,10,1,14,6,9,11,12,4,2,9,15,3,5,11,9,4,3,14,15,5,12,4,7,13,1,9,10,11,1,11,15,11,15,12,11,14,14,12,10,4,0,13,1,15,5,11,13,6,10,11,11,4,7,6,10,3,2,5,1,11,1,15,8,1,10,8,1,6,4,8,11,4,14,0,15,10,10,8,11,10,0,3,14,6,9,5,5,5,5,0,3,14,8,5,2,7,1,5,6,2,10,15,3,14,6,14,13,8,6,4,13,4,9,9,7,6,8,6,11,1,7,1,14,13,7,2,9,4,14,5,5,15,13,1,13,6,10,4,15,8,13,15,8,7,9,6,8,10,14,10,1,9,14,11,14,10,9,4,12,8,10,12,14,12,4,0,13,3,4,15,6,6,15,10,11,15,11,0,10,3,8,11,4,4,14,2,6,4,11,13,8,12,9,0,9,3,6,6,2,8,2,0,11,10,12,12,4,13,13,7,14,5,2,11,11,4,4,9,4,15,15,2,15,4,15,2,12,6,13,15,8,14,14,6,4,11,2,4,1,15,14,5,13,12,3,8,0,5,14,9,7,9,1,7,15,8,13,8,2,9,1,3,3,2,8,11,9,10,0,1,4,10,5,2,5,15,4,9,13,10,7,13,11,0,1,15,4,9,9,7,3,6,7,3,5,5,4,11,2,15,13,11,10,14,2,9,2,8,10,7,2,10,10,9,4,11,6,13,10,14,5,13,5,14,3,5,8,3,4,15,0,9,4,10,15,7,2,15,13,2,3,11,0,0,11,10,2,8,15,6,7,14,15,3,12,10,3,8,3,8,11,5,8,11,11,13,0,11,5,2,10,3,10,14,5,12,9,0,10,14,12,0,5,10,15,14,12,6,13,0,15,6,2,13,7,9,1,11,10,13,10,2,7,8,13,13,13,7,3,12,0,11,11,6", "source_class": null, "source_dataset": null, "video_id": "video_2_v0", "question_id": "video_2_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"5\", \"1\", \"6\", \"3\"], \"clip_start\": 110.0, \"clip_end\": 116.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q0_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,13,10,13,6,11,13,13,2,3,5,4,6,3,3,14,6,10,6,7,3,1,8,2,15,8,4,11,13,4,6,1,8,13,10,14,7,14,14,7,11,7,6,11,5,12,0,11,12,2,14,11,1,7,1,7,12,8,5,12,0,7,8,1,10,14,8,14,9,11,10,1,9,2,4,2,11,13,2,6,8,5,4,6,2,8,13,4,13,10,8,13,12,9,15,1,11,1,3,1,13,11,14,7,15,1,10,5,9,14,3,5,1,6,3,8,13,15,2,8,12,5,15,7,8,15,2,11,6,1,1,5,7,15,0,12,5,9,11,9,11,7,14,7,9,1,10,0,13,9,0,2,1,2,7,8,8,10,1,15,13,1,11,7,13,11,4,11,3,12,2,2,7,6,3,3,14,10,2,3,12,6,9,0,10,0,5,6,13,1,5,12,1,13,6,6,3,15,15,13,5,3,1,3,9,8,5,8,2,8,14,15,1,9,3,12,7,15,11,12,0,7,6,5,9,12,9,15,13,9,0,3,3,13,14,7,7,1,4,11,5,15,10,9,11,15,7,13,14,5,11,4,0,4,12,14,11,13,12,14,4,2,14,9,15,11,13,7,3,12,13,11,8,6,4,10,9,13,1,12,4,2,5,3,15,5,2,6,14,6,13,3,14,15,11,3,12,0,12,1,2,13,8,11,0,3,14,12,8,5,3,3,12,15,14,1,1,7,0,6,6,15,2,0,1,7,10,7,1,8,11,6,10,1,0,3,4,10,3,10,8,3,14,2,12,14,11,13,11,13,2,11,6,1,0,10,0,6,13,10,10,0,11,14,6,1,5,13,3,8,15,2,13,10,1,2,8,1,5,1,8,11,4,0,13,0,14,4,4,9,9,4,13,0,7,4,15,9,10,10,10,15,13,6,8,9,4,12,7,14,15,6,13,4,14,7,10,6,4,5,10,14,14,0,13,1,5,13,4,5,15,0,2,3,2,11,7,4,7,7,2,12,11,6,13,12,9,6,2,10,6,7,9,6,12,11,12,9,14,8,15,0,5,9,1,7,1,6,10,13,3,7,4,3,5,1,13,8,9,7,13,8,12,6,15,7,10,1,9,4,11,12,11,5,2,15,1,12,12,15,11,14,4,14,14,9,9,8,15,0,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"1\", \"2\", \"13\"], \"clip_start\": 298.0, \"clip_end\": 303.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,13,10,13,6,11,13,13,2,3,5,4,6,3,3,14,6,10,6,7,3,1,8,2,15,8,4,11,13,4,6,1,8,13,10,14,7,14,14,7,11,7,6,11,5,12,0,11,12,2,14,11,1,7,1,7,12,8,5,12,0,7,8,1,10,14,8,14,9,11,10,1,9,2,4,2,11,13,2,6,8,5,4,6,2,8,13,4,13,10,8,13,12,9,15,1,11,1,3,1,13,11,14,7,15,1,10,5,9,14,3,5,1,6,3,8,13,15,2,8,12,5,15,7,8,15,2,11,6,1,1,5,7,15,0,12,5,9,11,9,11,7,14,7,9,1,10,0,13,9,0,2,1,2,7,8,8,10,1,15,13,1,11,7,13,11,4,11,3,12,2,2,7,6,3,3,14,10,2,3,12,6,9,0,10,0,5,6,13,1,5,12,1,13,6,6,3,15,15,13,5,3,1,3,9,8,5,8,2,8,14,15,1,9,3,12,7,15,11,12,0,7,6,5,9,12,9,15,13,9,0,3,3,13,14,7,7,1,4,11,5,15,10,9,11,15,7,13,14,5,11,4,0,4,12,14,11,13,12,14,4,2,14,9,15,11,13,7,3,12,13,11,8,6,4,10,9,13,1,12,4,2,5,3,15,5,2,6,14,6,13,3,14,15,11,3,12,0,12,1,2,13,8,11,0,3,14,12,8,5,3,3,12,15,14,1,1,7,0,6,6,15,2,0,1,7,10,7,1,8,11,6,10,1,0,3,4,10,3,10,8,3,14,2,12,14,11,13,11,13,2,11,6,1,0,10,0,6,13,10,10,0,11,14,6,1,5,13,3,8,15,2,13,10,1,2,8,1,5,1,8,11,4,0,13,0,14,4,4,9,9,4,13,0,7,4,15,9,10,10,10,15,13,6,8,9,4,12,7,14,15,6,13,4,14,7,10,6,4,5,10,14,14,0,13,1,5,13,4,5,15,0,2,3,2,11,7,4,7,7,2,12,11,6,13,12,9,6,2,10,6,7,9,6,12,11,12,9,14,8,15,0,5,9,1,7,1,6,10,13,3,7,4,3,5,1,13,8,9,7,13,8,12,6,15,7,10,1,9,4,11,12,11,5,2,15,1,12,12,15,11,14,4,14,14,9,9,8,15,0,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"10\", \"13\", \"6\", \"11\", \"13\"], \"clip_start\": 2.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,13,10,13,6,11,13,13,2,3,5,4,6,3,3,14,6,10,6,7,3,1,8,2,15,8,4,11,13,4,6,1,8,13,10,14,7,14,14,7,11,7,6,11,5,12,0,11,12,2,14,11,1,7,1,7,12,8,5,12,0,7,8,1,10,14,8,14,9,11,10,1,9,2,4,2,11,13,2,6,8,5,4,6,2,8,13,4,13,10,8,13,12,9,15,1,11,1,3,1,13,11,14,7,15,1,10,5,9,14,3,5,1,6,3,8,13,15,2,8,12,5,15,7,8,15,2,11,6,1,1,5,7,15,0,12,5,9,11,9,11,7,14,7,9,1,10,0,13,9,0,2,1,2,7,8,8,10,1,15,13,1,11,7,13,11,4,11,3,12,2,2,7,6,3,3,14,10,2,3,12,6,9,0,10,0,5,6,13,1,5,12,1,13,6,6,3,15,15,13,5,3,1,3,9,8,5,8,2,8,14,15,1,9,3,12,7,15,11,12,0,7,6,5,9,12,9,15,13,9,0,3,3,13,14,7,7,1,4,11,5,15,10,9,11,15,7,13,14,5,11,4,0,4,12,14,11,13,12,14,4,2,14,9,15,11,13,7,3,12,13,11,8,6,4,10,9,13,1,12,4,2,5,3,15,5,2,6,14,6,13,3,14,15,11,3,12,0,12,1,2,13,8,11,0,3,14,12,8,5,3,3,12,15,14,1,1,7,0,6,6,15,2,0,1,7,10,7,1,8,11,6,10,1,0,3,4,10,3,10,8,3,14,2,12,14,11,13,11,13,2,11,6,1,0,10,0,6,13,10,10,0,11,14,6,1,5,13,3,8,15,2,13,10,1,2,8,1,5,1,8,11,4,0,13,0,14,4,4,9,9,4,13,0,7,4,15,9,10,10,10,15,13,6,8,9,4,12,7,14,15,6,13,4,14,7,10,6,4,5,10,14,14,0,13,1,5,13,4,5,15,0,2,3,2,11,7,4,7,7,2,12,11,6,13,12,9,6,2,10,6,7,9,6,12,11,12,9,14,8,15,0,5,9,1,7,1,6,10,13,3,7,4,3,5,1,13,8,9,7,13,8,12,6,15,7,10,1,9,4,11,12,11,5,2,15,1,12,12,15,11,14,4,14,14,9,9,8,15,0,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"4\", \"3\", \"5\", \"1\"], \"clip_start\": 472.0, \"clip_end\": 477.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q3_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,13,10,13,6,11,13,13,2,3,5,4,6,3,3,14,6,10,6,7,3,1,8,2,15,8,4,11,13,4,6,1,8,13,10,14,7,14,14,7,11,7,6,11,5,12,0,11,12,2,14,11,1,7,1,7,12,8,5,12,0,7,8,1,10,14,8,14,9,11,10,1,9,2,4,2,11,13,2,6,8,5,4,6,2,8,13,4,13,10,8,13,12,9,15,1,11,1,3,1,13,11,14,7,15,1,10,5,9,14,3,5,1,6,3,8,13,15,2,8,12,5,15,7,8,15,2,11,6,1,1,5,7,15,0,12,5,9,11,9,11,7,14,7,9,1,10,0,13,9,0,2,1,2,7,8,8,10,1,15,13,1,11,7,13,11,4,11,3,12,2,2,7,6,3,3,14,10,2,3,12,6,9,0,10,0,5,6,13,1,5,12,1,13,6,6,3,15,15,13,5,3,1,3,9,8,5,8,2,8,14,15,1,9,3,12,7,15,11,12,0,7,6,5,9,12,9,15,13,9,0,3,3,13,14,7,7,1,4,11,5,15,10,9,11,15,7,13,14,5,11,4,0,4,12,14,11,13,12,14,4,2,14,9,15,11,13,7,3,12,13,11,8,6,4,10,9,13,1,12,4,2,5,3,15,5,2,6,14,6,13,3,14,15,11,3,12,0,12,1,2,13,8,11,0,3,14,12,8,5,3,3,12,15,14,1,1,7,0,6,6,15,2,0,1,7,10,7,1,8,11,6,10,1,0,3,4,10,3,10,8,3,14,2,12,14,11,13,11,13,2,11,6,1,0,10,0,6,13,10,10,0,11,14,6,1,5,13,3,8,15,2,13,10,1,2,8,1,5,1,8,11,4,0,13,0,14,4,4,9,9,4,13,0,7,4,15,9,10,10,10,15,13,6,8,9,4,12,7,14,15,6,13,4,14,7,10,6,4,5,10,14,14,0,13,1,5,13,4,5,15,0,2,3,2,11,7,4,7,7,2,12,11,6,13,12,9,6,2,10,6,7,9,6,12,11,12,9,14,8,15,0,5,9,1,7,1,6,10,13,3,7,4,3,5,1,13,8,9,7,13,8,12,6,15,7,10,1,9,4,11,12,11,5,2,15,1,12,12,15,11,14,4,14,14,9,9,8,15,0,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"13\", \"11\"], \"clip_start\": 346.0, \"clip_end\": 350.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q4_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,13,10,13,6,11,13,13,2,3,5,4,6,3,3,14,6,10,6,7,3,1,8,2,15,8,4,11,13,4,6,1,8,13,10,14,7,14,14,7,11,7,6,11,5,12,0,11,12,2,14,11,1,7,1,7,12,8,5,12,0,7,8,1,10,14,8,14,9,11,10,1,9,2,4,2,11,13,2,6,8,5,4,6,2,8,13,4,13,10,8,13,12,9,15,1,11,1,3,1,13,11,14,7,15,1,10,5,9,14,3,5,1,6,3,8,13,15,2,8,12,5,15,7,8,15,2,11,6,1,1,5,7,15,0,12,5,9,11,9,11,7,14,7,9,1,10,0,13,9,0,2,1,2,7,8,8,10,1,15,13,1,11,7,13,11,4,11,3,12,2,2,7,6,3,3,14,10,2,3,12,6,9,0,10,0,5,6,13,1,5,12,1,13,6,6,3,15,15,13,5,3,1,3,9,8,5,8,2,8,14,15,1,9,3,12,7,15,11,12,0,7,6,5,9,12,9,15,13,9,0,3,3,13,14,7,7,1,4,11,5,15,10,9,11,15,7,13,14,5,11,4,0,4,12,14,11,13,12,14,4,2,14,9,15,11,13,7,3,12,13,11,8,6,4,10,9,13,1,12,4,2,5,3,15,5,2,6,14,6,13,3,14,15,11,3,12,0,12,1,2,13,8,11,0,3,14,12,8,5,3,3,12,15,14,1,1,7,0,6,6,15,2,0,1,7,10,7,1,8,11,6,10,1,0,3,4,10,3,10,8,3,14,2,12,14,11,13,11,13,2,11,6,1,0,10,0,6,13,10,10,0,11,14,6,1,5,13,3,8,15,2,13,10,1,2,8,1,5,1,8,11,4,0,13,0,14,4,4,9,9,4,13,0,7,4,15,9,10,10,10,15,13,6,8,9,4,12,7,14,15,6,13,4,14,7,10,6,4,5,10,14,14,0,13,1,5,13,4,5,15,0,2,3,2,11,7,4,7,7,2,12,11,6,13,12,9,6,2,10,6,7,9,6,12,11,12,9,14,8,15,0,5,9,1,7,1,6,10,13,3,7,4,3,5,1,13,8,9,7,13,8,12,6,15,7,10,1,9,4,11,12,11,5,2,15,1,12,12,15,11,14,4,14,14,9,9,8,15,0,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"6\", \"3\", \"3\", \"14\"], \"clip_start\": 12.0, \"clip_end\": 17.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q5_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,13,10,13,6,11,13,13,2,3,5,4,6,3,3,14,6,10,6,7,3,1,8,2,15,8,4,11,13,4,6,1,8,13,10,14,7,14,14,7,11,7,6,11,5,12,0,11,12,2,14,11,1,7,1,7,12,8,5,12,0,7,8,1,10,14,8,14,9,11,10,1,9,2,4,2,11,13,2,6,8,5,4,6,2,8,13,4,13,10,8,13,12,9,15,1,11,1,3,1,13,11,14,7,15,1,10,5,9,14,3,5,1,6,3,8,13,15,2,8,12,5,15,7,8,15,2,11,6,1,1,5,7,15,0,12,5,9,11,9,11,7,14,7,9,1,10,0,13,9,0,2,1,2,7,8,8,10,1,15,13,1,11,7,13,11,4,11,3,12,2,2,7,6,3,3,14,10,2,3,12,6,9,0,10,0,5,6,13,1,5,12,1,13,6,6,3,15,15,13,5,3,1,3,9,8,5,8,2,8,14,15,1,9,3,12,7,15,11,12,0,7,6,5,9,12,9,15,13,9,0,3,3,13,14,7,7,1,4,11,5,15,10,9,11,15,7,13,14,5,11,4,0,4,12,14,11,13,12,14,4,2,14,9,15,11,13,7,3,12,13,11,8,6,4,10,9,13,1,12,4,2,5,3,15,5,2,6,14,6,13,3,14,15,11,3,12,0,12,1,2,13,8,11,0,3,14,12,8,5,3,3,12,15,14,1,1,7,0,6,6,15,2,0,1,7,10,7,1,8,11,6,10,1,0,3,4,10,3,10,8,3,14,2,12,14,11,13,11,13,2,11,6,1,0,10,0,6,13,10,10,0,11,14,6,1,5,13,3,8,15,2,13,10,1,2,8,1,5,1,8,11,4,0,13,0,14,4,4,9,9,4,13,0,7,4,15,9,10,10,10,15,13,6,8,9,4,12,7,14,15,6,13,4,14,7,10,6,4,5,10,14,14,0,13,1,5,13,4,5,15,0,2,3,2,11,7,4,7,7,2,12,11,6,13,12,9,6,2,10,6,7,9,6,12,11,12,9,14,8,15,0,5,9,1,7,1,6,10,13,3,7,4,3,5,1,13,8,9,7,13,8,12,6,15,7,10,1,9,4,11,12,11,5,2,15,1,12,12,15,11,14,4,14,14,9,9,8,15,0,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"3\", \"3\", \"13\", \"14\"], \"clip_start\": 231.0, \"clip_end\": 236.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q6_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,13,10,13,6,11,13,13,2,3,5,4,6,3,3,14,6,10,6,7,3,1,8,2,15,8,4,11,13,4,6,1,8,13,10,14,7,14,14,7,11,7,6,11,5,12,0,11,12,2,14,11,1,7,1,7,12,8,5,12,0,7,8,1,10,14,8,14,9,11,10,1,9,2,4,2,11,13,2,6,8,5,4,6,2,8,13,4,13,10,8,13,12,9,15,1,11,1,3,1,13,11,14,7,15,1,10,5,9,14,3,5,1,6,3,8,13,15,2,8,12,5,15,7,8,15,2,11,6,1,1,5,7,15,0,12,5,9,11,9,11,7,14,7,9,1,10,0,13,9,0,2,1,2,7,8,8,10,1,15,13,1,11,7,13,11,4,11,3,12,2,2,7,6,3,3,14,10,2,3,12,6,9,0,10,0,5,6,13,1,5,12,1,13,6,6,3,15,15,13,5,3,1,3,9,8,5,8,2,8,14,15,1,9,3,12,7,15,11,12,0,7,6,5,9,12,9,15,13,9,0,3,3,13,14,7,7,1,4,11,5,15,10,9,11,15,7,13,14,5,11,4,0,4,12,14,11,13,12,14,4,2,14,9,15,11,13,7,3,12,13,11,8,6,4,10,9,13,1,12,4,2,5,3,15,5,2,6,14,6,13,3,14,15,11,3,12,0,12,1,2,13,8,11,0,3,14,12,8,5,3,3,12,15,14,1,1,7,0,6,6,15,2,0,1,7,10,7,1,8,11,6,10,1,0,3,4,10,3,10,8,3,14,2,12,14,11,13,11,13,2,11,6,1,0,10,0,6,13,10,10,0,11,14,6,1,5,13,3,8,15,2,13,10,1,2,8,1,5,1,8,11,4,0,13,0,14,4,4,9,9,4,13,0,7,4,15,9,10,10,10,15,13,6,8,9,4,12,7,14,15,6,13,4,14,7,10,6,4,5,10,14,14,0,13,1,5,13,4,5,15,0,2,3,2,11,7,4,7,7,2,12,11,6,13,12,9,6,2,10,6,7,9,6,12,11,12,9,14,8,15,0,5,9,1,7,1,6,10,13,3,7,4,3,5,1,13,8,9,7,13,8,12,6,15,7,10,1,9,4,11,12,11,5,2,15,1,12,12,15,11,14,4,14,14,9,9,8,15,0,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"8\", \"4\", \"11\", \"13\", \"4\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q7_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,13,10,13,6,11,13,13,2,3,5,4,6,3,3,14,6,10,6,7,3,1,8,2,15,8,4,11,13,4,6,1,8,13,10,14,7,14,14,7,11,7,6,11,5,12,0,11,12,2,14,11,1,7,1,7,12,8,5,12,0,7,8,1,10,14,8,14,9,11,10,1,9,2,4,2,11,13,2,6,8,5,4,6,2,8,13,4,13,10,8,13,12,9,15,1,11,1,3,1,13,11,14,7,15,1,10,5,9,14,3,5,1,6,3,8,13,15,2,8,12,5,15,7,8,15,2,11,6,1,1,5,7,15,0,12,5,9,11,9,11,7,14,7,9,1,10,0,13,9,0,2,1,2,7,8,8,10,1,15,13,1,11,7,13,11,4,11,3,12,2,2,7,6,3,3,14,10,2,3,12,6,9,0,10,0,5,6,13,1,5,12,1,13,6,6,3,15,15,13,5,3,1,3,9,8,5,8,2,8,14,15,1,9,3,12,7,15,11,12,0,7,6,5,9,12,9,15,13,9,0,3,3,13,14,7,7,1,4,11,5,15,10,9,11,15,7,13,14,5,11,4,0,4,12,14,11,13,12,14,4,2,14,9,15,11,13,7,3,12,13,11,8,6,4,10,9,13,1,12,4,2,5,3,15,5,2,6,14,6,13,3,14,15,11,3,12,0,12,1,2,13,8,11,0,3,14,12,8,5,3,3,12,15,14,1,1,7,0,6,6,15,2,0,1,7,10,7,1,8,11,6,10,1,0,3,4,10,3,10,8,3,14,2,12,14,11,13,11,13,2,11,6,1,0,10,0,6,13,10,10,0,11,14,6,1,5,13,3,8,15,2,13,10,1,2,8,1,5,1,8,11,4,0,13,0,14,4,4,9,9,4,13,0,7,4,15,9,10,10,10,15,13,6,8,9,4,12,7,14,15,6,13,4,14,7,10,6,4,5,10,14,14,0,13,1,5,13,4,5,15,0,2,3,2,11,7,4,7,7,2,12,11,6,13,12,9,6,2,10,6,7,9,6,12,11,12,9,14,8,15,0,5,9,1,7,1,6,10,13,3,7,4,3,5,1,13,8,9,7,13,8,12,6,15,7,10,1,9,4,11,12,11,5,2,15,1,12,12,15,11,14,4,14,14,9,9,8,15,0,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"9\", \"12\", \"9\"], \"clip_start\": 224.0, \"clip_end\": 228.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q8_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,13,10,13,6,11,13,13,2,3,5,4,6,3,3,14,6,10,6,7,3,1,8,2,15,8,4,11,13,4,6,1,8,13,10,14,7,14,14,7,11,7,6,11,5,12,0,11,12,2,14,11,1,7,1,7,12,8,5,12,0,7,8,1,10,14,8,14,9,11,10,1,9,2,4,2,11,13,2,6,8,5,4,6,2,8,13,4,13,10,8,13,12,9,15,1,11,1,3,1,13,11,14,7,15,1,10,5,9,14,3,5,1,6,3,8,13,15,2,8,12,5,15,7,8,15,2,11,6,1,1,5,7,15,0,12,5,9,11,9,11,7,14,7,9,1,10,0,13,9,0,2,1,2,7,8,8,10,1,15,13,1,11,7,13,11,4,11,3,12,2,2,7,6,3,3,14,10,2,3,12,6,9,0,10,0,5,6,13,1,5,12,1,13,6,6,3,15,15,13,5,3,1,3,9,8,5,8,2,8,14,15,1,9,3,12,7,15,11,12,0,7,6,5,9,12,9,15,13,9,0,3,3,13,14,7,7,1,4,11,5,15,10,9,11,15,7,13,14,5,11,4,0,4,12,14,11,13,12,14,4,2,14,9,15,11,13,7,3,12,13,11,8,6,4,10,9,13,1,12,4,2,5,3,15,5,2,6,14,6,13,3,14,15,11,3,12,0,12,1,2,13,8,11,0,3,14,12,8,5,3,3,12,15,14,1,1,7,0,6,6,15,2,0,1,7,10,7,1,8,11,6,10,1,0,3,4,10,3,10,8,3,14,2,12,14,11,13,11,13,2,11,6,1,0,10,0,6,13,10,10,0,11,14,6,1,5,13,3,8,15,2,13,10,1,2,8,1,5,1,8,11,4,0,13,0,14,4,4,9,9,4,13,0,7,4,15,9,10,10,10,15,13,6,8,9,4,12,7,14,15,6,13,4,14,7,10,6,4,5,10,14,14,0,13,1,5,13,4,5,15,0,2,3,2,11,7,4,7,7,2,12,11,6,13,12,9,6,2,10,6,7,9,6,12,11,12,9,14,8,15,0,5,9,1,7,1,6,10,13,3,7,4,3,5,1,13,8,9,7,13,8,12,6,15,7,10,1,9,4,11,12,11,5,2,15,1,12,12,15,11,14,4,14,14,9,9,8,15,0,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"11\", \"14\", \"7\", \"15\"], \"clip_start\": 101.0, \"clip_end\": 106.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q9_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,13,10,13,6,11,13,13,2,3,5,4,6,3,3,14,6,10,6,7,3,1,8,2,15,8,4,11,13,4,6,1,8,13,10,14,7,14,14,7,11,7,6,11,5,12,0,11,12,2,14,11,1,7,1,7,12,8,5,12,0,7,8,1,10,14,8,14,9,11,10,1,9,2,4,2,11,13,2,6,8,5,4,6,2,8,13,4,13,10,8,13,12,9,15,1,11,1,3,1,13,11,14,7,15,1,10,5,9,14,3,5,1,6,3,8,13,15,2,8,12,5,15,7,8,15,2,11,6,1,1,5,7,15,0,12,5,9,11,9,11,7,14,7,9,1,10,0,13,9,0,2,1,2,7,8,8,10,1,15,13,1,11,7,13,11,4,11,3,12,2,2,7,6,3,3,14,10,2,3,12,6,9,0,10,0,5,6,13,1,5,12,1,13,6,6,3,15,15,13,5,3,1,3,9,8,5,8,2,8,14,15,1,9,3,12,7,15,11,12,0,7,6,5,9,12,9,15,13,9,0,3,3,13,14,7,7,1,4,11,5,15,10,9,11,15,7,13,14,5,11,4,0,4,12,14,11,13,12,14,4,2,14,9,15,11,13,7,3,12,13,11,8,6,4,10,9,13,1,12,4,2,5,3,15,5,2,6,14,6,13,3,14,15,11,3,12,0,12,1,2,13,8,11,0,3,14,12,8,5,3,3,12,15,14,1,1,7,0,6,6,15,2,0,1,7,10,7,1,8,11,6,10,1,0,3,4,10,3,10,8,3,14,2,12,14,11,13,11,13,2,11,6,1,0,10,0,6,13,10,10,0,11,14,6,1,5,13,3,8,15,2,13,10,1,2,8,1,5,1,8,11,4,0,13,0,14,4,4,9,9,4,13,0,7,4,15,9,10,10,10,15,13,6,8,9,4,12,7,14,15,6,13,4,14,7,10,6,4,5,10,14,14,0,13,1,5,13,4,5,15,0,2,3,2,11,7,4,7,7,2,12,11,6,13,12,9,6,2,10,6,7,9,6,12,11,12,9,14,8,15,0,5,9,1,7,1,6,10,13,3,7,4,3,5,1,13,8,9,7,13,8,12,6,15,7,10,1,9,4,11,12,11,5,2,15,1,12,12,15,11,14,4,14,14,9,9,8,15,0,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"11\", \"14\", \"6\", \"1\", \"5\"], \"clip_start\": 362.0, \"clip_end\": 368.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,13,10,13,6,11,13,13,2,3,5,4,6,3,3,14,6,10,6,7,3,1,8,2,15,8,4,11,13,4,6,1,8,13,10,14,7,14,14,7,11,7,6,11,5,12,0,11,12,2,14,11,1,7,1,7,12,8,5,12,0,7,8,1,10,14,8,14,9,11,10,1,9,2,4,2,11,13,2,6,8,5,4,6,2,8,13,4,13,10,8,13,12,9,15,1,11,1,3,1,13,11,14,7,15,1,10,5,9,14,3,5,1,6,3,8,13,15,2,8,12,5,15,7,8,15,2,11,6,1,1,5,7,15,0,12,5,9,11,9,11,7,14,7,9,1,10,0,13,9,0,2,1,2,7,8,8,10,1,15,13,1,11,7,13,11,4,11,3,12,2,2,7,6,3,3,14,10,2,3,12,6,9,0,10,0,5,6,13,1,5,12,1,13,6,6,3,15,15,13,5,3,1,3,9,8,5,8,2,8,14,15,1,9,3,12,7,15,11,12,0,7,6,5,9,12,9,15,13,9,0,3,3,13,14,7,7,1,4,11,5,15,10,9,11,15,7,13,14,5,11,4,0,4,12,14,11,13,12,14,4,2,14,9,15,11,13,7,3,12,13,11,8,6,4,10,9,13,1,12,4,2,5,3,15,5,2,6,14,6,13,3,14,15,11,3,12,0,12,1,2,13,8,11,0,3,14,12,8,5,3,3,12,15,14,1,1,7,0,6,6,15,2,0,1,7,10,7,1,8,11,6,10,1,0,3,4,10,3,10,8,3,14,2,12,14,11,13,11,13,2,11,6,1,0,10,0,6,13,10,10,0,11,14,6,1,5,13,3,8,15,2,13,10,1,2,8,1,5,1,8,11,4,0,13,0,14,4,4,9,9,4,13,0,7,4,15,9,10,10,10,15,13,6,8,9,4,12,7,14,15,6,13,4,14,7,10,6,4,5,10,14,14,0,13,1,5,13,4,5,15,0,2,3,2,11,7,4,7,7,2,12,11,6,13,12,9,6,2,10,6,7,9,6,12,11,12,9,14,8,15,0,5,9,1,7,1,6,10,13,3,7,4,3,5,1,13,8,9,7,13,8,12,6,15,7,10,1,9,4,11,12,11,5,2,15,1,12,12,15,11,14,4,14,14,9,9,8,15,0,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"15\", \"11\", \"13\", \"7\", \"3\"], \"clip_start\": 264.0, \"clip_end\": 270.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,13,10,13,6,11,13,13,2,3,5,4,6,3,3,14,6,10,6,7,3,1,8,2,15,8,4,11,13,4,6,1,8,13,10,14,7,14,14,7,11,7,6,11,5,12,0,11,12,2,14,11,1,7,1,7,12,8,5,12,0,7,8,1,10,14,8,14,9,11,10,1,9,2,4,2,11,13,2,6,8,5,4,6,2,8,13,4,13,10,8,13,12,9,15,1,11,1,3,1,13,11,14,7,15,1,10,5,9,14,3,5,1,6,3,8,13,15,2,8,12,5,15,7,8,15,2,11,6,1,1,5,7,15,0,12,5,9,11,9,11,7,14,7,9,1,10,0,13,9,0,2,1,2,7,8,8,10,1,15,13,1,11,7,13,11,4,11,3,12,2,2,7,6,3,3,14,10,2,3,12,6,9,0,10,0,5,6,13,1,5,12,1,13,6,6,3,15,15,13,5,3,1,3,9,8,5,8,2,8,14,15,1,9,3,12,7,15,11,12,0,7,6,5,9,12,9,15,13,9,0,3,3,13,14,7,7,1,4,11,5,15,10,9,11,15,7,13,14,5,11,4,0,4,12,14,11,13,12,14,4,2,14,9,15,11,13,7,3,12,13,11,8,6,4,10,9,13,1,12,4,2,5,3,15,5,2,6,14,6,13,3,14,15,11,3,12,0,12,1,2,13,8,11,0,3,14,12,8,5,3,3,12,15,14,1,1,7,0,6,6,15,2,0,1,7,10,7,1,8,11,6,10,1,0,3,4,10,3,10,8,3,14,2,12,14,11,13,11,13,2,11,6,1,0,10,0,6,13,10,10,0,11,14,6,1,5,13,3,8,15,2,13,10,1,2,8,1,5,1,8,11,4,0,13,0,14,4,4,9,9,4,13,0,7,4,15,9,10,10,10,15,13,6,8,9,4,12,7,14,15,6,13,4,14,7,10,6,4,5,10,14,14,0,13,1,5,13,4,5,15,0,2,3,2,11,7,4,7,7,2,12,11,6,13,12,9,6,2,10,6,7,9,6,12,11,12,9,14,8,15,0,5,9,1,7,1,6,10,13,3,7,4,3,5,1,13,8,9,7,13,8,12,6,15,7,10,1,9,4,11,12,11,5,2,15,1,12,12,15,11,14,4,14,14,9,9,8,15,0,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"13\", \"5\", \"3\", \"1\"], \"clip_start\": 198.0, \"clip_end\": 204.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q12_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,13,10,13,6,11,13,13,2,3,5,4,6,3,3,14,6,10,6,7,3,1,8,2,15,8,4,11,13,4,6,1,8,13,10,14,7,14,14,7,11,7,6,11,5,12,0,11,12,2,14,11,1,7,1,7,12,8,5,12,0,7,8,1,10,14,8,14,9,11,10,1,9,2,4,2,11,13,2,6,8,5,4,6,2,8,13,4,13,10,8,13,12,9,15,1,11,1,3,1,13,11,14,7,15,1,10,5,9,14,3,5,1,6,3,8,13,15,2,8,12,5,15,7,8,15,2,11,6,1,1,5,7,15,0,12,5,9,11,9,11,7,14,7,9,1,10,0,13,9,0,2,1,2,7,8,8,10,1,15,13,1,11,7,13,11,4,11,3,12,2,2,7,6,3,3,14,10,2,3,12,6,9,0,10,0,5,6,13,1,5,12,1,13,6,6,3,15,15,13,5,3,1,3,9,8,5,8,2,8,14,15,1,9,3,12,7,15,11,12,0,7,6,5,9,12,9,15,13,9,0,3,3,13,14,7,7,1,4,11,5,15,10,9,11,15,7,13,14,5,11,4,0,4,12,14,11,13,12,14,4,2,14,9,15,11,13,7,3,12,13,11,8,6,4,10,9,13,1,12,4,2,5,3,15,5,2,6,14,6,13,3,14,15,11,3,12,0,12,1,2,13,8,11,0,3,14,12,8,5,3,3,12,15,14,1,1,7,0,6,6,15,2,0,1,7,10,7,1,8,11,6,10,1,0,3,4,10,3,10,8,3,14,2,12,14,11,13,11,13,2,11,6,1,0,10,0,6,13,10,10,0,11,14,6,1,5,13,3,8,15,2,13,10,1,2,8,1,5,1,8,11,4,0,13,0,14,4,4,9,9,4,13,0,7,4,15,9,10,10,10,15,13,6,8,9,4,12,7,14,15,6,13,4,14,7,10,6,4,5,10,14,14,0,13,1,5,13,4,5,15,0,2,3,2,11,7,4,7,7,2,12,11,6,13,12,9,6,2,10,6,7,9,6,12,11,12,9,14,8,15,0,5,9,1,7,1,6,10,13,3,7,4,3,5,1,13,8,9,7,13,8,12,6,15,7,10,1,9,4,11,12,11,5,2,15,1,12,12,15,11,14,4,14,14,9,9,8,15,0,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"15\", \"9\", \"1\", \"6\"], \"clip_start\": 203.0, \"clip_end\": 208.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,13,10,13,6,11,13,13,2,3,5,4,6,3,3,14,6,10,6,7,3,1,8,2,15,8,4,11,13,4,6,1,8,13,10,14,7,14,14,7,11,7,6,11,5,12,0,11,12,2,14,11,1,7,1,7,12,8,5,12,0,7,8,1,10,14,8,14,9,11,10,1,9,2,4,2,11,13,2,6,8,5,4,6,2,8,13,4,13,10,8,13,12,9,15,1,11,1,3,1,13,11,14,7,15,1,10,5,9,14,3,5,1,6,3,8,13,15,2,8,12,5,15,7,8,15,2,11,6,1,1,5,7,15,0,12,5,9,11,9,11,7,14,7,9,1,10,0,13,9,0,2,1,2,7,8,8,10,1,15,13,1,11,7,13,11,4,11,3,12,2,2,7,6,3,3,14,10,2,3,12,6,9,0,10,0,5,6,13,1,5,12,1,13,6,6,3,15,15,13,5,3,1,3,9,8,5,8,2,8,14,15,1,9,3,12,7,15,11,12,0,7,6,5,9,12,9,15,13,9,0,3,3,13,14,7,7,1,4,11,5,15,10,9,11,15,7,13,14,5,11,4,0,4,12,14,11,13,12,14,4,2,14,9,15,11,13,7,3,12,13,11,8,6,4,10,9,13,1,12,4,2,5,3,15,5,2,6,14,6,13,3,14,15,11,3,12,0,12,1,2,13,8,11,0,3,14,12,8,5,3,3,12,15,14,1,1,7,0,6,6,15,2,0,1,7,10,7,1,8,11,6,10,1,0,3,4,10,3,10,8,3,14,2,12,14,11,13,11,13,2,11,6,1,0,10,0,6,13,10,10,0,11,14,6,1,5,13,3,8,15,2,13,10,1,2,8,1,5,1,8,11,4,0,13,0,14,4,4,9,9,4,13,0,7,4,15,9,10,10,10,15,13,6,8,9,4,12,7,14,15,6,13,4,14,7,10,6,4,5,10,14,14,0,13,1,5,13,4,5,15,0,2,3,2,11,7,4,7,7,2,12,11,6,13,12,9,6,2,10,6,7,9,6,12,11,12,9,14,8,15,0,5,9,1,7,1,6,10,13,3,7,4,3,5,1,13,8,9,7,13,8,12,6,15,7,10,1,9,4,11,12,11,5,2,15,1,12,12,15,11,14,4,14,14,9,9,8,15,0,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 3, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"5\", \"6\"], \"clip_start\": 184.0, \"clip_end\": 189.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q14_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,13,10,13,6,11,13,13,2,3,5,4,6,3,3,14,6,10,6,7,3,1,8,2,15,8,4,11,13,4,6,1,8,13,10,14,7,14,14,7,11,7,6,11,5,12,0,11,12,2,14,11,1,7,1,7,12,8,5,12,0,7,8,1,10,14,8,14,9,11,10,1,9,2,4,2,11,13,2,6,8,5,4,6,2,8,13,4,13,10,8,13,12,9,15,1,11,1,3,1,13,11,14,7,15,1,10,5,9,14,3,5,1,6,3,8,13,15,2,8,12,5,15,7,8,15,2,11,6,1,1,5,7,15,0,12,5,9,11,9,11,7,14,7,9,1,10,0,13,9,0,2,1,2,7,8,8,10,1,15,13,1,11,7,13,11,4,11,3,12,2,2,7,6,3,3,14,10,2,3,12,6,9,0,10,0,5,6,13,1,5,12,1,13,6,6,3,15,15,13,5,3,1,3,9,8,5,8,2,8,14,15,1,9,3,12,7,15,11,12,0,7,6,5,9,12,9,15,13,9,0,3,3,13,14,7,7,1,4,11,5,15,10,9,11,15,7,13,14,5,11,4,0,4,12,14,11,13,12,14,4,2,14,9,15,11,13,7,3,12,13,11,8,6,4,10,9,13,1,12,4,2,5,3,15,5,2,6,14,6,13,3,14,15,11,3,12,0,12,1,2,13,8,11,0,3,14,12,8,5,3,3,12,15,14,1,1,7,0,6,6,15,2,0,1,7,10,7,1,8,11,6,10,1,0,3,4,10,3,10,8,3,14,2,12,14,11,13,11,13,2,11,6,1,0,10,0,6,13,10,10,0,11,14,6,1,5,13,3,8,15,2,13,10,1,2,8,1,5,1,8,11,4,0,13,0,14,4,4,9,9,4,13,0,7,4,15,9,10,10,10,15,13,6,8,9,4,12,7,14,15,6,13,4,14,7,10,6,4,5,10,14,14,0,13,1,5,13,4,5,15,0,2,3,2,11,7,4,7,7,2,12,11,6,13,12,9,6,2,10,6,7,9,6,12,11,12,9,14,8,15,0,5,9,1,7,1,6,10,13,3,7,4,3,5,1,13,8,9,7,13,8,12,6,15,7,10,1,9,4,11,12,11,5,2,15,1,12,12,15,11,14,4,14,14,9,9,8,15,0,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 3, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"3\", \"8\", \"0\"], \"clip_start\": 215.0, \"clip_end\": 219.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q15_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4", "dataset_source": "synthetic", "input_sequence": "15,3,13,10,13,6,11,13,13,2,3,5,4,6,3,3,14,6,10,6,7,3,1,8,2,15,8,4,11,13,4,6,1,8,13,10,14,7,14,14,7,11,7,6,11,5,12,0,11,12,2,14,11,1,7,1,7,12,8,5,12,0,7,8,1,10,14,8,14,9,11,10,1,9,2,4,2,11,13,2,6,8,5,4,6,2,8,13,4,13,10,8,13,12,9,15,1,11,1,3,1,13,11,14,7,15,1,10,5,9,14,3,5,1,6,3,8,13,15,2,8,12,5,15,7,8,15,2,11,6,1,1,5,7,15,0,12,5,9,11,9,11,7,14,7,9,1,10,0,13,9,0,2,1,2,7,8,8,10,1,15,13,1,11,7,13,11,4,11,3,12,2,2,7,6,3,3,14,10,2,3,12,6,9,0,10,0,5,6,13,1,5,12,1,13,6,6,3,15,15,13,5,3,1,3,9,8,5,8,2,8,14,15,1,9,3,12,7,15,11,12,0,7,6,5,9,12,9,15,13,9,0,3,3,13,14,7,7,1,4,11,5,15,10,9,11,15,7,13,14,5,11,4,0,4,12,14,11,13,12,14,4,2,14,9,15,11,13,7,3,12,13,11,8,6,4,10,9,13,1,12,4,2,5,3,15,5,2,6,14,6,13,3,14,15,11,3,12,0,12,1,2,13,8,11,0,3,14,12,8,5,3,3,12,15,14,1,1,7,0,6,6,15,2,0,1,7,10,7,1,8,11,6,10,1,0,3,4,10,3,10,8,3,14,2,12,14,11,13,11,13,2,11,6,1,0,10,0,6,13,10,10,0,11,14,6,1,5,13,3,8,15,2,13,10,1,2,8,1,5,1,8,11,4,0,13,0,14,4,4,9,9,4,13,0,7,4,15,9,10,10,10,15,13,6,8,9,4,12,7,14,15,6,13,4,14,7,10,6,4,5,10,14,14,0,13,1,5,13,4,5,15,0,2,3,2,11,7,4,7,7,2,12,11,6,13,12,9,6,2,10,6,7,9,6,12,11,12,9,14,8,15,0,5,9,1,7,1,6,10,13,3,7,4,3,5,1,13,8,9,7,13,8,12,6,15,7,10,1,9,4,11,12,11,5,2,15,1,12,12,15,11,14,4,14,14,9,9,8,15,0,15", "source_class": null, "source_dataset": null, "video_id": "video_3_v0", "question_id": "video_3_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"11\", \"10\", \"4\", \"4\", \"12\"], \"clip_start\": 349.0, \"clip_end\": 355.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,8,6,9,11,9,3,7,10,10,13,11,4,4,7,15,15,7,3,10,11,0,14,2,0,6,7,11,4,4,10,14,0,13,4,1,9,15,7,13,9,3,5,14,2,8,0,8,0,14,11,4,14,7,14,12,4,1,10,12,12,4,9,10,3,12,12,7,1,6,3,10,14,7,0,14,11,0,4,12,11,1,5,7,7,6,11,7,7,5,15,12,14,10,3,14,3,2,6,9,2,15,14,10,14,2,2,1,3,2,4,14,5,8,4,7,2,1,6,12,1,6,12,8,9,10,5,2,6,11,8,8,8,4,2,14,14,11,0,3,7,5,9,15,8,12,15,14,13,2,8,12,9,9,5,7,8,12,13,7,10,8,6,9,7,14,14,10,12,11,0,7,4,2,15,3,11,2,7,2,9,7,0,0,8,15,6,1,8,6,9,10,5,1,1,12,7,2,4,9,1,2,14,6,6,13,1,1,0,12,4,3,10,0,3,3,7,15,6,14,3,14,10,14,7,5,0,1,2,6,7,13,14,7,15,0,0,2,7,3,8,14,12,10,5,12,14,0,10,12,11,7,7,1,2,11,0,15,2,13,4,2,3,6,0,10,3,5,13,11,12,5,3,8,0,1,3,7,2,0,8,12,15,11,1,0,0,11,4,1,13,13,1,0,6,6,12,13,9,5,9,1,4,3,10,8,6,14,2,2,4,8,11,8,14,1,1,7,7,12,14,8,1,4,3,9,14,11,14,7,1,9,15,5,11,8,14,11,11,8,14,6,10,14,6,13,12,5,0,11,10,4,4,12,12,3,10,7,9,3,3,11,3,10,9,7,0,14,9,5,1,1,10,7,5,0,12,12,8,6,15,12,2,10,6,6,14,5,15,10,15,10,13,6,8,8,9,3,2,9,2,2,3,8,8,15,14,13,3,7,9,14,5,1,9,13,15,4,6,3,15,2,2,5,3,8,6,10,13,7,12,14,14,14,3,7,10,9,15,10,15,8,10,14,6,12,3,9,4,8,14,11,5,6,3,6,5,8,8,4,6,14,1,4,6,1,5,0,1,1,9,6,14,3,11,13,15,0,7,11,9,13,9,3,10,13,1,3,7,5,9,10,12,2,6,14,15,9,8,11,3,9,5,9,13,8,10,13,9,7,3", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"1\", \"4\", \"3\"], \"clip_start\": 321.0, \"clip_end\": 326.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,8,6,9,11,9,3,7,10,10,13,11,4,4,7,15,15,7,3,10,11,0,14,2,0,6,7,11,4,4,10,14,0,13,4,1,9,15,7,13,9,3,5,14,2,8,0,8,0,14,11,4,14,7,14,12,4,1,10,12,12,4,9,10,3,12,12,7,1,6,3,10,14,7,0,14,11,0,4,12,11,1,5,7,7,6,11,7,7,5,15,12,14,10,3,14,3,2,6,9,2,15,14,10,14,2,2,1,3,2,4,14,5,8,4,7,2,1,6,12,1,6,12,8,9,10,5,2,6,11,8,8,8,4,2,14,14,11,0,3,7,5,9,15,8,12,15,14,13,2,8,12,9,9,5,7,8,12,13,7,10,8,6,9,7,14,14,10,12,11,0,7,4,2,15,3,11,2,7,2,9,7,0,0,8,15,6,1,8,6,9,10,5,1,1,12,7,2,4,9,1,2,14,6,6,13,1,1,0,12,4,3,10,0,3,3,7,15,6,14,3,14,10,14,7,5,0,1,2,6,7,13,14,7,15,0,0,2,7,3,8,14,12,10,5,12,14,0,10,12,11,7,7,1,2,11,0,15,2,13,4,2,3,6,0,10,3,5,13,11,12,5,3,8,0,1,3,7,2,0,8,12,15,11,1,0,0,11,4,1,13,13,1,0,6,6,12,13,9,5,9,1,4,3,10,8,6,14,2,2,4,8,11,8,14,1,1,7,7,12,14,8,1,4,3,9,14,11,14,7,1,9,15,5,11,8,14,11,11,8,14,6,10,14,6,13,12,5,0,11,10,4,4,12,12,3,10,7,9,3,3,11,3,10,9,7,0,14,9,5,1,1,10,7,5,0,12,12,8,6,15,12,2,10,6,6,14,5,15,10,15,10,13,6,8,8,9,3,2,9,2,2,3,8,8,15,14,13,3,7,9,14,5,1,9,13,15,4,6,3,15,2,2,5,3,8,6,10,13,7,12,14,14,14,3,7,10,9,15,10,15,8,10,14,6,12,3,9,4,8,14,11,5,6,3,6,5,8,8,4,6,14,1,4,6,1,5,0,1,1,9,6,14,3,11,13,15,0,7,11,9,13,9,3,10,13,1,3,7,5,9,10,12,2,6,14,15,9,8,11,3,9,5,9,13,8,10,13,9,7,3", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"3\", \"11\", \"13\"], \"clip_start\": 472.0, \"clip_end\": 477.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,8,6,9,11,9,3,7,10,10,13,11,4,4,7,15,15,7,3,10,11,0,14,2,0,6,7,11,4,4,10,14,0,13,4,1,9,15,7,13,9,3,5,14,2,8,0,8,0,14,11,4,14,7,14,12,4,1,10,12,12,4,9,10,3,12,12,7,1,6,3,10,14,7,0,14,11,0,4,12,11,1,5,7,7,6,11,7,7,5,15,12,14,10,3,14,3,2,6,9,2,15,14,10,14,2,2,1,3,2,4,14,5,8,4,7,2,1,6,12,1,6,12,8,9,10,5,2,6,11,8,8,8,4,2,14,14,11,0,3,7,5,9,15,8,12,15,14,13,2,8,12,9,9,5,7,8,12,13,7,10,8,6,9,7,14,14,10,12,11,0,7,4,2,15,3,11,2,7,2,9,7,0,0,8,15,6,1,8,6,9,10,5,1,1,12,7,2,4,9,1,2,14,6,6,13,1,1,0,12,4,3,10,0,3,3,7,15,6,14,3,14,10,14,7,5,0,1,2,6,7,13,14,7,15,0,0,2,7,3,8,14,12,10,5,12,14,0,10,12,11,7,7,1,2,11,0,15,2,13,4,2,3,6,0,10,3,5,13,11,12,5,3,8,0,1,3,7,2,0,8,12,15,11,1,0,0,11,4,1,13,13,1,0,6,6,12,13,9,5,9,1,4,3,10,8,6,14,2,2,4,8,11,8,14,1,1,7,7,12,14,8,1,4,3,9,14,11,14,7,1,9,15,5,11,8,14,11,11,8,14,6,10,14,6,13,12,5,0,11,10,4,4,12,12,3,10,7,9,3,3,11,3,10,9,7,0,14,9,5,1,1,10,7,5,0,12,12,8,6,15,12,2,10,6,6,14,5,15,10,15,10,13,6,8,8,9,3,2,9,2,2,3,8,8,15,14,13,3,7,9,14,5,1,9,13,15,4,6,3,15,2,2,5,3,8,6,10,13,7,12,14,14,14,3,7,10,9,15,10,15,8,10,14,6,12,3,9,4,8,14,11,5,6,3,6,5,8,8,4,6,14,1,4,6,1,5,0,1,1,9,6,14,3,11,13,15,0,7,11,9,13,9,3,10,13,1,3,7,5,9,10,12,2,6,14,15,9,8,11,3,9,5,9,13,8,10,13,9,7,3", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"9\", \"10\", \"3\"], \"clip_start\": 61.0, \"clip_end\": 66.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,8,6,9,11,9,3,7,10,10,13,11,4,4,7,15,15,7,3,10,11,0,14,2,0,6,7,11,4,4,10,14,0,13,4,1,9,15,7,13,9,3,5,14,2,8,0,8,0,14,11,4,14,7,14,12,4,1,10,12,12,4,9,10,3,12,12,7,1,6,3,10,14,7,0,14,11,0,4,12,11,1,5,7,7,6,11,7,7,5,15,12,14,10,3,14,3,2,6,9,2,15,14,10,14,2,2,1,3,2,4,14,5,8,4,7,2,1,6,12,1,6,12,8,9,10,5,2,6,11,8,8,8,4,2,14,14,11,0,3,7,5,9,15,8,12,15,14,13,2,8,12,9,9,5,7,8,12,13,7,10,8,6,9,7,14,14,10,12,11,0,7,4,2,15,3,11,2,7,2,9,7,0,0,8,15,6,1,8,6,9,10,5,1,1,12,7,2,4,9,1,2,14,6,6,13,1,1,0,12,4,3,10,0,3,3,7,15,6,14,3,14,10,14,7,5,0,1,2,6,7,13,14,7,15,0,0,2,7,3,8,14,12,10,5,12,14,0,10,12,11,7,7,1,2,11,0,15,2,13,4,2,3,6,0,10,3,5,13,11,12,5,3,8,0,1,3,7,2,0,8,12,15,11,1,0,0,11,4,1,13,13,1,0,6,6,12,13,9,5,9,1,4,3,10,8,6,14,2,2,4,8,11,8,14,1,1,7,7,12,14,8,1,4,3,9,14,11,14,7,1,9,15,5,11,8,14,11,11,8,14,6,10,14,6,13,12,5,0,11,10,4,4,12,12,3,10,7,9,3,3,11,3,10,9,7,0,14,9,5,1,1,10,7,5,0,12,12,8,6,15,12,2,10,6,6,14,5,15,10,15,10,13,6,8,8,9,3,2,9,2,2,3,8,8,15,14,13,3,7,9,14,5,1,9,13,15,4,6,3,15,2,2,5,3,8,6,10,13,7,12,14,14,14,3,7,10,9,15,10,15,8,10,14,6,12,3,9,4,8,14,11,5,6,3,6,5,8,8,4,6,14,1,4,6,1,5,0,1,1,9,6,14,3,11,13,15,0,7,11,9,13,9,3,10,13,1,3,7,5,9,10,12,2,6,14,15,9,8,11,3,9,5,9,13,8,10,13,9,7,3", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"10\"], \"clip_start\": 70.0, \"clip_end\": 73.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,8,6,9,11,9,3,7,10,10,13,11,4,4,7,15,15,7,3,10,11,0,14,2,0,6,7,11,4,4,10,14,0,13,4,1,9,15,7,13,9,3,5,14,2,8,0,8,0,14,11,4,14,7,14,12,4,1,10,12,12,4,9,10,3,12,12,7,1,6,3,10,14,7,0,14,11,0,4,12,11,1,5,7,7,6,11,7,7,5,15,12,14,10,3,14,3,2,6,9,2,15,14,10,14,2,2,1,3,2,4,14,5,8,4,7,2,1,6,12,1,6,12,8,9,10,5,2,6,11,8,8,8,4,2,14,14,11,0,3,7,5,9,15,8,12,15,14,13,2,8,12,9,9,5,7,8,12,13,7,10,8,6,9,7,14,14,10,12,11,0,7,4,2,15,3,11,2,7,2,9,7,0,0,8,15,6,1,8,6,9,10,5,1,1,12,7,2,4,9,1,2,14,6,6,13,1,1,0,12,4,3,10,0,3,3,7,15,6,14,3,14,10,14,7,5,0,1,2,6,7,13,14,7,15,0,0,2,7,3,8,14,12,10,5,12,14,0,10,12,11,7,7,1,2,11,0,15,2,13,4,2,3,6,0,10,3,5,13,11,12,5,3,8,0,1,3,7,2,0,8,12,15,11,1,0,0,11,4,1,13,13,1,0,6,6,12,13,9,5,9,1,4,3,10,8,6,14,2,2,4,8,11,8,14,1,1,7,7,12,14,8,1,4,3,9,14,11,14,7,1,9,15,5,11,8,14,11,11,8,14,6,10,14,6,13,12,5,0,11,10,4,4,12,12,3,10,7,9,3,3,11,3,10,9,7,0,14,9,5,1,1,10,7,5,0,12,12,8,6,15,12,2,10,6,6,14,5,15,10,15,10,13,6,8,8,9,3,2,9,2,2,3,8,8,15,14,13,3,7,9,14,5,1,9,13,15,4,6,3,15,2,2,5,3,8,6,10,13,7,12,14,14,14,3,7,10,9,15,10,15,8,10,14,6,12,3,9,4,8,14,11,5,6,3,6,5,8,8,4,6,14,1,4,6,1,5,0,1,1,9,6,14,3,11,13,15,0,7,11,9,13,9,3,10,13,1,3,7,5,9,10,12,2,6,14,15,9,8,11,3,9,5,9,13,8,10,13,9,7,3", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"14\", \"9\", \"5\", \"1\", \"1\"], \"clip_start\": 367.0, \"clip_end\": 373.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,8,6,9,11,9,3,7,10,10,13,11,4,4,7,15,15,7,3,10,11,0,14,2,0,6,7,11,4,4,10,14,0,13,4,1,9,15,7,13,9,3,5,14,2,8,0,8,0,14,11,4,14,7,14,12,4,1,10,12,12,4,9,10,3,12,12,7,1,6,3,10,14,7,0,14,11,0,4,12,11,1,5,7,7,6,11,7,7,5,15,12,14,10,3,14,3,2,6,9,2,15,14,10,14,2,2,1,3,2,4,14,5,8,4,7,2,1,6,12,1,6,12,8,9,10,5,2,6,11,8,8,8,4,2,14,14,11,0,3,7,5,9,15,8,12,15,14,13,2,8,12,9,9,5,7,8,12,13,7,10,8,6,9,7,14,14,10,12,11,0,7,4,2,15,3,11,2,7,2,9,7,0,0,8,15,6,1,8,6,9,10,5,1,1,12,7,2,4,9,1,2,14,6,6,13,1,1,0,12,4,3,10,0,3,3,7,15,6,14,3,14,10,14,7,5,0,1,2,6,7,13,14,7,15,0,0,2,7,3,8,14,12,10,5,12,14,0,10,12,11,7,7,1,2,11,0,15,2,13,4,2,3,6,0,10,3,5,13,11,12,5,3,8,0,1,3,7,2,0,8,12,15,11,1,0,0,11,4,1,13,13,1,0,6,6,12,13,9,5,9,1,4,3,10,8,6,14,2,2,4,8,11,8,14,1,1,7,7,12,14,8,1,4,3,9,14,11,14,7,1,9,15,5,11,8,14,11,11,8,14,6,10,14,6,13,12,5,0,11,10,4,4,12,12,3,10,7,9,3,3,11,3,10,9,7,0,14,9,5,1,1,10,7,5,0,12,12,8,6,15,12,2,10,6,6,14,5,15,10,15,10,13,6,8,8,9,3,2,9,2,2,3,8,8,15,14,13,3,7,9,14,5,1,9,13,15,4,6,3,15,2,2,5,3,8,6,10,13,7,12,14,14,14,3,7,10,9,15,10,15,8,10,14,6,12,3,9,4,8,14,11,5,6,3,6,5,8,8,4,6,14,1,4,6,1,5,0,1,1,9,6,14,3,11,13,15,0,7,11,9,13,9,3,10,13,1,3,7,5,9,10,12,2,6,14,15,9,8,11,3,9,5,9,13,8,10,13,9,7,3", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"12\"], \"clip_start\": 266.0, \"clip_end\": 269.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q6_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,8,6,9,11,9,3,7,10,10,13,11,4,4,7,15,15,7,3,10,11,0,14,2,0,6,7,11,4,4,10,14,0,13,4,1,9,15,7,13,9,3,5,14,2,8,0,8,0,14,11,4,14,7,14,12,4,1,10,12,12,4,9,10,3,12,12,7,1,6,3,10,14,7,0,14,11,0,4,12,11,1,5,7,7,6,11,7,7,5,15,12,14,10,3,14,3,2,6,9,2,15,14,10,14,2,2,1,3,2,4,14,5,8,4,7,2,1,6,12,1,6,12,8,9,10,5,2,6,11,8,8,8,4,2,14,14,11,0,3,7,5,9,15,8,12,15,14,13,2,8,12,9,9,5,7,8,12,13,7,10,8,6,9,7,14,14,10,12,11,0,7,4,2,15,3,11,2,7,2,9,7,0,0,8,15,6,1,8,6,9,10,5,1,1,12,7,2,4,9,1,2,14,6,6,13,1,1,0,12,4,3,10,0,3,3,7,15,6,14,3,14,10,14,7,5,0,1,2,6,7,13,14,7,15,0,0,2,7,3,8,14,12,10,5,12,14,0,10,12,11,7,7,1,2,11,0,15,2,13,4,2,3,6,0,10,3,5,13,11,12,5,3,8,0,1,3,7,2,0,8,12,15,11,1,0,0,11,4,1,13,13,1,0,6,6,12,13,9,5,9,1,4,3,10,8,6,14,2,2,4,8,11,8,14,1,1,7,7,12,14,8,1,4,3,9,14,11,14,7,1,9,15,5,11,8,14,11,11,8,14,6,10,14,6,13,12,5,0,11,10,4,4,12,12,3,10,7,9,3,3,11,3,10,9,7,0,14,9,5,1,1,10,7,5,0,12,12,8,6,15,12,2,10,6,6,14,5,15,10,15,10,13,6,8,8,9,3,2,9,2,2,3,8,8,15,14,13,3,7,9,14,5,1,9,13,15,4,6,3,15,2,2,5,3,8,6,10,13,7,12,14,14,14,3,7,10,9,15,10,15,8,10,14,6,12,3,9,4,8,14,11,5,6,3,6,5,8,8,4,6,14,1,4,6,1,5,0,1,1,9,6,14,3,11,13,15,0,7,11,9,13,9,3,10,13,1,3,7,5,9,10,12,2,6,14,15,9,8,11,3,9,5,9,13,8,10,13,9,7,3", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"2\", \"6\", \"11\", \"8\"], \"clip_start\": 126.0, \"clip_end\": 132.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,8,6,9,11,9,3,7,10,10,13,11,4,4,7,15,15,7,3,10,11,0,14,2,0,6,7,11,4,4,10,14,0,13,4,1,9,15,7,13,9,3,5,14,2,8,0,8,0,14,11,4,14,7,14,12,4,1,10,12,12,4,9,10,3,12,12,7,1,6,3,10,14,7,0,14,11,0,4,12,11,1,5,7,7,6,11,7,7,5,15,12,14,10,3,14,3,2,6,9,2,15,14,10,14,2,2,1,3,2,4,14,5,8,4,7,2,1,6,12,1,6,12,8,9,10,5,2,6,11,8,8,8,4,2,14,14,11,0,3,7,5,9,15,8,12,15,14,13,2,8,12,9,9,5,7,8,12,13,7,10,8,6,9,7,14,14,10,12,11,0,7,4,2,15,3,11,2,7,2,9,7,0,0,8,15,6,1,8,6,9,10,5,1,1,12,7,2,4,9,1,2,14,6,6,13,1,1,0,12,4,3,10,0,3,3,7,15,6,14,3,14,10,14,7,5,0,1,2,6,7,13,14,7,15,0,0,2,7,3,8,14,12,10,5,12,14,0,10,12,11,7,7,1,2,11,0,15,2,13,4,2,3,6,0,10,3,5,13,11,12,5,3,8,0,1,3,7,2,0,8,12,15,11,1,0,0,11,4,1,13,13,1,0,6,6,12,13,9,5,9,1,4,3,10,8,6,14,2,2,4,8,11,8,14,1,1,7,7,12,14,8,1,4,3,9,14,11,14,7,1,9,15,5,11,8,14,11,11,8,14,6,10,14,6,13,12,5,0,11,10,4,4,12,12,3,10,7,9,3,3,11,3,10,9,7,0,14,9,5,1,1,10,7,5,0,12,12,8,6,15,12,2,10,6,6,14,5,15,10,15,10,13,6,8,8,9,3,2,9,2,2,3,8,8,15,14,13,3,7,9,14,5,1,9,13,15,4,6,3,15,2,2,5,3,8,6,10,13,7,12,14,14,14,3,7,10,9,15,10,15,8,10,14,6,12,3,9,4,8,14,11,5,6,3,6,5,8,8,4,6,14,1,4,6,1,5,0,1,1,9,6,14,3,11,13,15,0,7,11,9,13,9,3,10,13,1,3,7,5,9,10,12,2,6,14,15,9,8,11,3,9,5,9,13,8,10,13,9,7,3", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"8\", \"15\", \"14\"], \"clip_start\": 404.0, \"clip_end\": 408.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,8,6,9,11,9,3,7,10,10,13,11,4,4,7,15,15,7,3,10,11,0,14,2,0,6,7,11,4,4,10,14,0,13,4,1,9,15,7,13,9,3,5,14,2,8,0,8,0,14,11,4,14,7,14,12,4,1,10,12,12,4,9,10,3,12,12,7,1,6,3,10,14,7,0,14,11,0,4,12,11,1,5,7,7,6,11,7,7,5,15,12,14,10,3,14,3,2,6,9,2,15,14,10,14,2,2,1,3,2,4,14,5,8,4,7,2,1,6,12,1,6,12,8,9,10,5,2,6,11,8,8,8,4,2,14,14,11,0,3,7,5,9,15,8,12,15,14,13,2,8,12,9,9,5,7,8,12,13,7,10,8,6,9,7,14,14,10,12,11,0,7,4,2,15,3,11,2,7,2,9,7,0,0,8,15,6,1,8,6,9,10,5,1,1,12,7,2,4,9,1,2,14,6,6,13,1,1,0,12,4,3,10,0,3,3,7,15,6,14,3,14,10,14,7,5,0,1,2,6,7,13,14,7,15,0,0,2,7,3,8,14,12,10,5,12,14,0,10,12,11,7,7,1,2,11,0,15,2,13,4,2,3,6,0,10,3,5,13,11,12,5,3,8,0,1,3,7,2,0,8,12,15,11,1,0,0,11,4,1,13,13,1,0,6,6,12,13,9,5,9,1,4,3,10,8,6,14,2,2,4,8,11,8,14,1,1,7,7,12,14,8,1,4,3,9,14,11,14,7,1,9,15,5,11,8,14,11,11,8,14,6,10,14,6,13,12,5,0,11,10,4,4,12,12,3,10,7,9,3,3,11,3,10,9,7,0,14,9,5,1,1,10,7,5,0,12,12,8,6,15,12,2,10,6,6,14,5,15,10,15,10,13,6,8,8,9,3,2,9,2,2,3,8,8,15,14,13,3,7,9,14,5,1,9,13,15,4,6,3,15,2,2,5,3,8,6,10,13,7,12,14,14,14,3,7,10,9,15,10,15,8,10,14,6,12,3,9,4,8,14,11,5,6,3,6,5,8,8,4,6,14,1,4,6,1,5,0,1,1,9,6,14,3,11,13,15,0,7,11,9,13,9,3,10,13,1,3,7,5,9,10,12,2,6,14,15,9,8,11,3,9,5,9,13,8,10,13,9,7,3", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"6\", \"12\", \"1\"], \"clip_start\": 118.0, \"clip_end\": 122.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q9_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,8,6,9,11,9,3,7,10,10,13,11,4,4,7,15,15,7,3,10,11,0,14,2,0,6,7,11,4,4,10,14,0,13,4,1,9,15,7,13,9,3,5,14,2,8,0,8,0,14,11,4,14,7,14,12,4,1,10,12,12,4,9,10,3,12,12,7,1,6,3,10,14,7,0,14,11,0,4,12,11,1,5,7,7,6,11,7,7,5,15,12,14,10,3,14,3,2,6,9,2,15,14,10,14,2,2,1,3,2,4,14,5,8,4,7,2,1,6,12,1,6,12,8,9,10,5,2,6,11,8,8,8,4,2,14,14,11,0,3,7,5,9,15,8,12,15,14,13,2,8,12,9,9,5,7,8,12,13,7,10,8,6,9,7,14,14,10,12,11,0,7,4,2,15,3,11,2,7,2,9,7,0,0,8,15,6,1,8,6,9,10,5,1,1,12,7,2,4,9,1,2,14,6,6,13,1,1,0,12,4,3,10,0,3,3,7,15,6,14,3,14,10,14,7,5,0,1,2,6,7,13,14,7,15,0,0,2,7,3,8,14,12,10,5,12,14,0,10,12,11,7,7,1,2,11,0,15,2,13,4,2,3,6,0,10,3,5,13,11,12,5,3,8,0,1,3,7,2,0,8,12,15,11,1,0,0,11,4,1,13,13,1,0,6,6,12,13,9,5,9,1,4,3,10,8,6,14,2,2,4,8,11,8,14,1,1,7,7,12,14,8,1,4,3,9,14,11,14,7,1,9,15,5,11,8,14,11,11,8,14,6,10,14,6,13,12,5,0,11,10,4,4,12,12,3,10,7,9,3,3,11,3,10,9,7,0,14,9,5,1,1,10,7,5,0,12,12,8,6,15,12,2,10,6,6,14,5,15,10,15,10,13,6,8,8,9,3,2,9,2,2,3,8,8,15,14,13,3,7,9,14,5,1,9,13,15,4,6,3,15,2,2,5,3,8,6,10,13,7,12,14,14,14,3,7,10,9,15,10,15,8,10,14,6,12,3,9,4,8,14,11,5,6,3,6,5,8,8,4,6,14,1,4,6,1,5,0,1,1,9,6,14,3,11,13,15,0,7,11,9,13,9,3,10,13,1,3,7,5,9,10,12,2,6,14,15,9,8,11,3,9,5,9,13,8,10,13,9,7,3", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"11\", \"9\", \"13\"], \"clip_start\": 479.0, \"clip_end\": 483.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,8,6,9,11,9,3,7,10,10,13,11,4,4,7,15,15,7,3,10,11,0,14,2,0,6,7,11,4,4,10,14,0,13,4,1,9,15,7,13,9,3,5,14,2,8,0,8,0,14,11,4,14,7,14,12,4,1,10,12,12,4,9,10,3,12,12,7,1,6,3,10,14,7,0,14,11,0,4,12,11,1,5,7,7,6,11,7,7,5,15,12,14,10,3,14,3,2,6,9,2,15,14,10,14,2,2,1,3,2,4,14,5,8,4,7,2,1,6,12,1,6,12,8,9,10,5,2,6,11,8,8,8,4,2,14,14,11,0,3,7,5,9,15,8,12,15,14,13,2,8,12,9,9,5,7,8,12,13,7,10,8,6,9,7,14,14,10,12,11,0,7,4,2,15,3,11,2,7,2,9,7,0,0,8,15,6,1,8,6,9,10,5,1,1,12,7,2,4,9,1,2,14,6,6,13,1,1,0,12,4,3,10,0,3,3,7,15,6,14,3,14,10,14,7,5,0,1,2,6,7,13,14,7,15,0,0,2,7,3,8,14,12,10,5,12,14,0,10,12,11,7,7,1,2,11,0,15,2,13,4,2,3,6,0,10,3,5,13,11,12,5,3,8,0,1,3,7,2,0,8,12,15,11,1,0,0,11,4,1,13,13,1,0,6,6,12,13,9,5,9,1,4,3,10,8,6,14,2,2,4,8,11,8,14,1,1,7,7,12,14,8,1,4,3,9,14,11,14,7,1,9,15,5,11,8,14,11,11,8,14,6,10,14,6,13,12,5,0,11,10,4,4,12,12,3,10,7,9,3,3,11,3,10,9,7,0,14,9,5,1,1,10,7,5,0,12,12,8,6,15,12,2,10,6,6,14,5,15,10,15,10,13,6,8,8,9,3,2,9,2,2,3,8,8,15,14,13,3,7,9,14,5,1,9,13,15,4,6,3,15,2,2,5,3,8,6,10,13,7,12,14,14,14,3,7,10,9,15,10,15,8,10,14,6,12,3,9,4,8,14,11,5,6,3,6,5,8,8,4,6,14,1,4,6,1,5,0,1,1,9,6,14,3,11,13,15,0,7,11,9,13,9,3,10,13,1,3,7,5,9,10,12,2,6,14,15,9,8,11,3,9,5,9,13,8,10,13,9,7,3", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"9\", \"11\", \"11\", \"7\"], \"clip_start\": 34.0, \"clip_end\": 40.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q11_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,8,6,9,11,9,3,7,10,10,13,11,4,4,7,15,15,7,3,10,11,0,14,2,0,6,7,11,4,4,10,14,0,13,4,1,9,15,7,13,9,3,5,14,2,8,0,8,0,14,11,4,14,7,14,12,4,1,10,12,12,4,9,10,3,12,12,7,1,6,3,10,14,7,0,14,11,0,4,12,11,1,5,7,7,6,11,7,7,5,15,12,14,10,3,14,3,2,6,9,2,15,14,10,14,2,2,1,3,2,4,14,5,8,4,7,2,1,6,12,1,6,12,8,9,10,5,2,6,11,8,8,8,4,2,14,14,11,0,3,7,5,9,15,8,12,15,14,13,2,8,12,9,9,5,7,8,12,13,7,10,8,6,9,7,14,14,10,12,11,0,7,4,2,15,3,11,2,7,2,9,7,0,0,8,15,6,1,8,6,9,10,5,1,1,12,7,2,4,9,1,2,14,6,6,13,1,1,0,12,4,3,10,0,3,3,7,15,6,14,3,14,10,14,7,5,0,1,2,6,7,13,14,7,15,0,0,2,7,3,8,14,12,10,5,12,14,0,10,12,11,7,7,1,2,11,0,15,2,13,4,2,3,6,0,10,3,5,13,11,12,5,3,8,0,1,3,7,2,0,8,12,15,11,1,0,0,11,4,1,13,13,1,0,6,6,12,13,9,5,9,1,4,3,10,8,6,14,2,2,4,8,11,8,14,1,1,7,7,12,14,8,1,4,3,9,14,11,14,7,1,9,15,5,11,8,14,11,11,8,14,6,10,14,6,13,12,5,0,11,10,4,4,12,12,3,10,7,9,3,3,11,3,10,9,7,0,14,9,5,1,1,10,7,5,0,12,12,8,6,15,12,2,10,6,6,14,5,15,10,15,10,13,6,8,8,9,3,2,9,2,2,3,8,8,15,14,13,3,7,9,14,5,1,9,13,15,4,6,3,15,2,2,5,3,8,6,10,13,7,12,14,14,14,3,7,10,9,15,10,15,8,10,14,6,12,3,9,4,8,14,11,5,6,3,6,5,8,8,4,6,14,1,4,6,1,5,0,1,1,9,6,14,3,11,13,15,0,7,11,9,13,9,3,10,13,1,3,7,5,9,10,12,2,6,14,15,9,8,11,3,9,5,9,13,8,10,13,9,7,3", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"11\", \"4\"], \"clip_start\": 26.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,8,6,9,11,9,3,7,10,10,13,11,4,4,7,15,15,7,3,10,11,0,14,2,0,6,7,11,4,4,10,14,0,13,4,1,9,15,7,13,9,3,5,14,2,8,0,8,0,14,11,4,14,7,14,12,4,1,10,12,12,4,9,10,3,12,12,7,1,6,3,10,14,7,0,14,11,0,4,12,11,1,5,7,7,6,11,7,7,5,15,12,14,10,3,14,3,2,6,9,2,15,14,10,14,2,2,1,3,2,4,14,5,8,4,7,2,1,6,12,1,6,12,8,9,10,5,2,6,11,8,8,8,4,2,14,14,11,0,3,7,5,9,15,8,12,15,14,13,2,8,12,9,9,5,7,8,12,13,7,10,8,6,9,7,14,14,10,12,11,0,7,4,2,15,3,11,2,7,2,9,7,0,0,8,15,6,1,8,6,9,10,5,1,1,12,7,2,4,9,1,2,14,6,6,13,1,1,0,12,4,3,10,0,3,3,7,15,6,14,3,14,10,14,7,5,0,1,2,6,7,13,14,7,15,0,0,2,7,3,8,14,12,10,5,12,14,0,10,12,11,7,7,1,2,11,0,15,2,13,4,2,3,6,0,10,3,5,13,11,12,5,3,8,0,1,3,7,2,0,8,12,15,11,1,0,0,11,4,1,13,13,1,0,6,6,12,13,9,5,9,1,4,3,10,8,6,14,2,2,4,8,11,8,14,1,1,7,7,12,14,8,1,4,3,9,14,11,14,7,1,9,15,5,11,8,14,11,11,8,14,6,10,14,6,13,12,5,0,11,10,4,4,12,12,3,10,7,9,3,3,11,3,10,9,7,0,14,9,5,1,1,10,7,5,0,12,12,8,6,15,12,2,10,6,6,14,5,15,10,15,10,13,6,8,8,9,3,2,9,2,2,3,8,8,15,14,13,3,7,9,14,5,1,9,13,15,4,6,3,15,2,2,5,3,8,6,10,13,7,12,14,14,14,3,7,10,9,15,10,15,8,10,14,6,12,3,9,4,8,14,11,5,6,3,6,5,8,8,4,6,14,1,4,6,1,5,0,1,1,9,6,14,3,11,13,15,0,7,11,9,13,9,3,10,13,1,3,7,5,9,10,12,2,6,14,15,9,8,11,3,9,5,9,13,8,10,13,9,7,3", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"5\", \"1\"], \"clip_start\": 504.0, \"clip_end\": 507.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,8,6,9,11,9,3,7,10,10,13,11,4,4,7,15,15,7,3,10,11,0,14,2,0,6,7,11,4,4,10,14,0,13,4,1,9,15,7,13,9,3,5,14,2,8,0,8,0,14,11,4,14,7,14,12,4,1,10,12,12,4,9,10,3,12,12,7,1,6,3,10,14,7,0,14,11,0,4,12,11,1,5,7,7,6,11,7,7,5,15,12,14,10,3,14,3,2,6,9,2,15,14,10,14,2,2,1,3,2,4,14,5,8,4,7,2,1,6,12,1,6,12,8,9,10,5,2,6,11,8,8,8,4,2,14,14,11,0,3,7,5,9,15,8,12,15,14,13,2,8,12,9,9,5,7,8,12,13,7,10,8,6,9,7,14,14,10,12,11,0,7,4,2,15,3,11,2,7,2,9,7,0,0,8,15,6,1,8,6,9,10,5,1,1,12,7,2,4,9,1,2,14,6,6,13,1,1,0,12,4,3,10,0,3,3,7,15,6,14,3,14,10,14,7,5,0,1,2,6,7,13,14,7,15,0,0,2,7,3,8,14,12,10,5,12,14,0,10,12,11,7,7,1,2,11,0,15,2,13,4,2,3,6,0,10,3,5,13,11,12,5,3,8,0,1,3,7,2,0,8,12,15,11,1,0,0,11,4,1,13,13,1,0,6,6,12,13,9,5,9,1,4,3,10,8,6,14,2,2,4,8,11,8,14,1,1,7,7,12,14,8,1,4,3,9,14,11,14,7,1,9,15,5,11,8,14,11,11,8,14,6,10,14,6,13,12,5,0,11,10,4,4,12,12,3,10,7,9,3,3,11,3,10,9,7,0,14,9,5,1,1,10,7,5,0,12,12,8,6,15,12,2,10,6,6,14,5,15,10,15,10,13,6,8,8,9,3,2,9,2,2,3,8,8,15,14,13,3,7,9,14,5,1,9,13,15,4,6,3,15,2,2,5,3,8,6,10,13,7,12,14,14,14,3,7,10,9,15,10,15,8,10,14,6,12,3,9,4,8,14,11,5,6,3,6,5,8,8,4,6,14,1,4,6,1,5,0,1,1,9,6,14,3,11,13,15,0,7,11,9,13,9,3,10,13,1,3,7,5,9,10,12,2,6,14,15,9,8,11,3,9,5,9,13,8,10,13,9,7,3", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 4, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"6\", \"14\", \"15\"], \"clip_start\": 494.0, \"clip_end\": 498.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q14_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,8,6,9,11,9,3,7,10,10,13,11,4,4,7,15,15,7,3,10,11,0,14,2,0,6,7,11,4,4,10,14,0,13,4,1,9,15,7,13,9,3,5,14,2,8,0,8,0,14,11,4,14,7,14,12,4,1,10,12,12,4,9,10,3,12,12,7,1,6,3,10,14,7,0,14,11,0,4,12,11,1,5,7,7,6,11,7,7,5,15,12,14,10,3,14,3,2,6,9,2,15,14,10,14,2,2,1,3,2,4,14,5,8,4,7,2,1,6,12,1,6,12,8,9,10,5,2,6,11,8,8,8,4,2,14,14,11,0,3,7,5,9,15,8,12,15,14,13,2,8,12,9,9,5,7,8,12,13,7,10,8,6,9,7,14,14,10,12,11,0,7,4,2,15,3,11,2,7,2,9,7,0,0,8,15,6,1,8,6,9,10,5,1,1,12,7,2,4,9,1,2,14,6,6,13,1,1,0,12,4,3,10,0,3,3,7,15,6,14,3,14,10,14,7,5,0,1,2,6,7,13,14,7,15,0,0,2,7,3,8,14,12,10,5,12,14,0,10,12,11,7,7,1,2,11,0,15,2,13,4,2,3,6,0,10,3,5,13,11,12,5,3,8,0,1,3,7,2,0,8,12,15,11,1,0,0,11,4,1,13,13,1,0,6,6,12,13,9,5,9,1,4,3,10,8,6,14,2,2,4,8,11,8,14,1,1,7,7,12,14,8,1,4,3,9,14,11,14,7,1,9,15,5,11,8,14,11,11,8,14,6,10,14,6,13,12,5,0,11,10,4,4,12,12,3,10,7,9,3,3,11,3,10,9,7,0,14,9,5,1,1,10,7,5,0,12,12,8,6,15,12,2,10,6,6,14,5,15,10,15,10,13,6,8,8,9,3,2,9,2,2,3,8,8,15,14,13,3,7,9,14,5,1,9,13,15,4,6,3,15,2,2,5,3,8,6,10,13,7,12,14,14,14,3,7,10,9,15,10,15,8,10,14,6,12,3,9,4,8,14,11,5,6,3,6,5,8,8,4,6,14,1,4,6,1,5,0,1,1,9,6,14,3,11,13,15,0,7,11,9,13,9,3,10,13,1,3,7,5,9,10,12,2,6,14,15,9,8,11,3,9,5,9,13,8,10,13,9,7,3", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 4, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"2\", \"9\", \"6\", \"6\"], \"clip_start\": 160.0, \"clip_end\": 166.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q15_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4", "dataset_source": "synthetic", "input_sequence": "2,12,8,6,9,11,9,3,7,10,10,13,11,4,4,7,15,15,7,3,10,11,0,14,2,0,6,7,11,4,4,10,14,0,13,4,1,9,15,7,13,9,3,5,14,2,8,0,8,0,14,11,4,14,7,14,12,4,1,10,12,12,4,9,10,3,12,12,7,1,6,3,10,14,7,0,14,11,0,4,12,11,1,5,7,7,6,11,7,7,5,15,12,14,10,3,14,3,2,6,9,2,15,14,10,14,2,2,1,3,2,4,14,5,8,4,7,2,1,6,12,1,6,12,8,9,10,5,2,6,11,8,8,8,4,2,14,14,11,0,3,7,5,9,15,8,12,15,14,13,2,8,12,9,9,5,7,8,12,13,7,10,8,6,9,7,14,14,10,12,11,0,7,4,2,15,3,11,2,7,2,9,7,0,0,8,15,6,1,8,6,9,10,5,1,1,12,7,2,4,9,1,2,14,6,6,13,1,1,0,12,4,3,10,0,3,3,7,15,6,14,3,14,10,14,7,5,0,1,2,6,7,13,14,7,15,0,0,2,7,3,8,14,12,10,5,12,14,0,10,12,11,7,7,1,2,11,0,15,2,13,4,2,3,6,0,10,3,5,13,11,12,5,3,8,0,1,3,7,2,0,8,12,15,11,1,0,0,11,4,1,13,13,1,0,6,6,12,13,9,5,9,1,4,3,10,8,6,14,2,2,4,8,11,8,14,1,1,7,7,12,14,8,1,4,3,9,14,11,14,7,1,9,15,5,11,8,14,11,11,8,14,6,10,14,6,13,12,5,0,11,10,4,4,12,12,3,10,7,9,3,3,11,3,10,9,7,0,14,9,5,1,1,10,7,5,0,12,12,8,6,15,12,2,10,6,6,14,5,15,10,15,10,13,6,8,8,9,3,2,9,2,2,3,8,8,15,14,13,3,7,9,14,5,1,9,13,15,4,6,3,15,2,2,5,3,8,6,10,13,7,12,14,14,14,3,7,10,9,15,10,15,8,10,14,6,12,3,9,4,8,14,11,5,6,3,6,5,8,8,4,6,14,1,4,6,1,5,0,1,1,9,6,14,3,11,13,15,0,7,11,9,13,9,3,10,13,1,3,7,5,9,10,12,2,6,14,15,9,8,11,3,9,5,9,13,8,10,13,9,7,3", "source_class": null, "source_dataset": null, "video_id": "video_4_v0", "question_id": "video_4_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"10\", \"5\", \"4\", \"12\"], \"clip_start\": 220.0, \"clip_end\": 226.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,15,9,12,5,10,15,2,7,1,9,4,15,7,2,11,15,11,12,4,9,1,6,6,0,7,14,9,0,15,0,1,0,3,12,7,9,14,0,5,6,15,1,11,13,3,7,1,12,7,0,1,10,14,2,0,3,13,5,8,0,4,10,7,1,12,12,14,2,12,1,10,2,14,15,4,6,12,2,3,4,15,7,1,7,4,1,13,7,14,3,1,15,6,6,8,7,7,3,0,3,14,2,2,14,1,12,5,6,12,1,0,6,9,3,10,6,13,8,15,6,4,9,9,13,7,1,2,9,2,0,9,1,2,7,7,2,15,15,11,11,3,4,7,3,5,8,13,4,1,3,0,12,11,6,13,5,4,3,3,6,4,12,3,2,8,2,2,11,7,9,15,2,2,7,5,1,9,7,5,7,6,8,3,4,6,1,6,9,2,12,15,14,15,7,13,12,4,4,8,8,8,12,14,2,5,2,15,7,15,11,7,15,5,7,6,2,11,10,10,1,10,5,4,12,14,12,9,15,1,14,12,12,5,7,8,9,2,10,12,15,8,0,7,15,11,6,6,4,2,6,6,4,12,7,7,2,3,10,0,6,12,12,14,1,9,9,14,0,5,4,5,13,2,7,15,4,6,3,7,15,6,11,6,5,9,13,8,10,5,7,0,2,6,1,13,13,12,8,5,9,5,9,12,5,6,8,6,14,12,3,2,4,8,4,11,12,3,12,10,3,4,7,1,15,6,13,5,1,10,13,10,10,13,8,14,11,3,15,12,5,6,5,0,13,5,11,1,5,7,4,5,13,15,4,9,14,5,9,11,7,5,5,13,2,10,15,0,5,2,13,8,0,6,12,9,14,1,0,1,15,14,1,9,11,0,13,10,10,10,14,10,2,2,7,10,11,1,8,12,14,5,3,2,12,7,8,2,9,1,15,10,2,15,12,14,12,13,2,1,11,8,3,4,15,14,1,8,9,8,2,9,5,7,12,14,11,13,1,10,15,0,14,6,6,8,0,1,6,7,8,12,5,13,8,8,5,0,2,15,12,8,2,12,13,14,5,4,8,5,2,7,0,4,10,7,13,7,8,14,11,13,6,4,11,13,3,8,0,8,8,2,10,9,3,4,3,5,15,4,0,0,11,6,15,0,6,9,5,6,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"10\", \"14\"], \"clip_start\": 51.0, \"clip_end\": 55.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q1_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,15,9,12,5,10,15,2,7,1,9,4,15,7,2,11,15,11,12,4,9,1,6,6,0,7,14,9,0,15,0,1,0,3,12,7,9,14,0,5,6,15,1,11,13,3,7,1,12,7,0,1,10,14,2,0,3,13,5,8,0,4,10,7,1,12,12,14,2,12,1,10,2,14,15,4,6,12,2,3,4,15,7,1,7,4,1,13,7,14,3,1,15,6,6,8,7,7,3,0,3,14,2,2,14,1,12,5,6,12,1,0,6,9,3,10,6,13,8,15,6,4,9,9,13,7,1,2,9,2,0,9,1,2,7,7,2,15,15,11,11,3,4,7,3,5,8,13,4,1,3,0,12,11,6,13,5,4,3,3,6,4,12,3,2,8,2,2,11,7,9,15,2,2,7,5,1,9,7,5,7,6,8,3,4,6,1,6,9,2,12,15,14,15,7,13,12,4,4,8,8,8,12,14,2,5,2,15,7,15,11,7,15,5,7,6,2,11,10,10,1,10,5,4,12,14,12,9,15,1,14,12,12,5,7,8,9,2,10,12,15,8,0,7,15,11,6,6,4,2,6,6,4,12,7,7,2,3,10,0,6,12,12,14,1,9,9,14,0,5,4,5,13,2,7,15,4,6,3,7,15,6,11,6,5,9,13,8,10,5,7,0,2,6,1,13,13,12,8,5,9,5,9,12,5,6,8,6,14,12,3,2,4,8,4,11,12,3,12,10,3,4,7,1,15,6,13,5,1,10,13,10,10,13,8,14,11,3,15,12,5,6,5,0,13,5,11,1,5,7,4,5,13,15,4,9,14,5,9,11,7,5,5,13,2,10,15,0,5,2,13,8,0,6,12,9,14,1,0,1,15,14,1,9,11,0,13,10,10,10,14,10,2,2,7,10,11,1,8,12,14,5,3,2,12,7,8,2,9,1,15,10,2,15,12,14,12,13,2,1,11,8,3,4,15,14,1,8,9,8,2,9,5,7,12,14,11,13,1,10,15,0,14,6,6,8,0,1,6,7,8,12,5,13,8,8,5,0,2,15,12,8,2,12,13,14,5,4,8,5,2,7,0,4,10,7,13,7,8,14,11,13,6,4,11,13,3,8,0,8,8,2,10,9,3,4,3,5,15,4,0,0,11,6,15,0,6,9,5,6,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"15\", \"14\", \"15\", \"7\"], \"clip_start\": 191.0, \"clip_end\": 196.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q2_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,15,9,12,5,10,15,2,7,1,9,4,15,7,2,11,15,11,12,4,9,1,6,6,0,7,14,9,0,15,0,1,0,3,12,7,9,14,0,5,6,15,1,11,13,3,7,1,12,7,0,1,10,14,2,0,3,13,5,8,0,4,10,7,1,12,12,14,2,12,1,10,2,14,15,4,6,12,2,3,4,15,7,1,7,4,1,13,7,14,3,1,15,6,6,8,7,7,3,0,3,14,2,2,14,1,12,5,6,12,1,0,6,9,3,10,6,13,8,15,6,4,9,9,13,7,1,2,9,2,0,9,1,2,7,7,2,15,15,11,11,3,4,7,3,5,8,13,4,1,3,0,12,11,6,13,5,4,3,3,6,4,12,3,2,8,2,2,11,7,9,15,2,2,7,5,1,9,7,5,7,6,8,3,4,6,1,6,9,2,12,15,14,15,7,13,12,4,4,8,8,8,12,14,2,5,2,15,7,15,11,7,15,5,7,6,2,11,10,10,1,10,5,4,12,14,12,9,15,1,14,12,12,5,7,8,9,2,10,12,15,8,0,7,15,11,6,6,4,2,6,6,4,12,7,7,2,3,10,0,6,12,12,14,1,9,9,14,0,5,4,5,13,2,7,15,4,6,3,7,15,6,11,6,5,9,13,8,10,5,7,0,2,6,1,13,13,12,8,5,9,5,9,12,5,6,8,6,14,12,3,2,4,8,4,11,12,3,12,10,3,4,7,1,15,6,13,5,1,10,13,10,10,13,8,14,11,3,15,12,5,6,5,0,13,5,11,1,5,7,4,5,13,15,4,9,14,5,9,11,7,5,5,13,2,10,15,0,5,2,13,8,0,6,12,9,14,1,0,1,15,14,1,9,11,0,13,10,10,10,14,10,2,2,7,10,11,1,8,12,14,5,3,2,12,7,8,2,9,1,15,10,2,15,12,14,12,13,2,1,11,8,3,4,15,14,1,8,9,8,2,9,5,7,12,14,11,13,1,10,15,0,14,6,6,8,0,1,6,7,8,12,5,13,8,8,5,0,2,15,12,8,2,12,13,14,5,4,8,5,2,7,0,4,10,7,13,7,8,14,11,13,6,4,11,13,3,8,0,8,8,2,10,9,3,4,3,5,15,4,0,0,11,6,15,0,6,9,5,6,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"15\", \"5\", \"2\", \"12\"], \"clip_start\": 433.0, \"clip_end\": 438.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q3_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,15,9,12,5,10,15,2,7,1,9,4,15,7,2,11,15,11,12,4,9,1,6,6,0,7,14,9,0,15,0,1,0,3,12,7,9,14,0,5,6,15,1,11,13,3,7,1,12,7,0,1,10,14,2,0,3,13,5,8,0,4,10,7,1,12,12,14,2,12,1,10,2,14,15,4,6,12,2,3,4,15,7,1,7,4,1,13,7,14,3,1,15,6,6,8,7,7,3,0,3,14,2,2,14,1,12,5,6,12,1,0,6,9,3,10,6,13,8,15,6,4,9,9,13,7,1,2,9,2,0,9,1,2,7,7,2,15,15,11,11,3,4,7,3,5,8,13,4,1,3,0,12,11,6,13,5,4,3,3,6,4,12,3,2,8,2,2,11,7,9,15,2,2,7,5,1,9,7,5,7,6,8,3,4,6,1,6,9,2,12,15,14,15,7,13,12,4,4,8,8,8,12,14,2,5,2,15,7,15,11,7,15,5,7,6,2,11,10,10,1,10,5,4,12,14,12,9,15,1,14,12,12,5,7,8,9,2,10,12,15,8,0,7,15,11,6,6,4,2,6,6,4,12,7,7,2,3,10,0,6,12,12,14,1,9,9,14,0,5,4,5,13,2,7,15,4,6,3,7,15,6,11,6,5,9,13,8,10,5,7,0,2,6,1,13,13,12,8,5,9,5,9,12,5,6,8,6,14,12,3,2,4,8,4,11,12,3,12,10,3,4,7,1,15,6,13,5,1,10,13,10,10,13,8,14,11,3,15,12,5,6,5,0,13,5,11,1,5,7,4,5,13,15,4,9,14,5,9,11,7,5,5,13,2,10,15,0,5,2,13,8,0,6,12,9,14,1,0,1,15,14,1,9,11,0,13,10,10,10,14,10,2,2,7,10,11,1,8,12,14,5,3,2,12,7,8,2,9,1,15,10,2,15,12,14,12,13,2,1,11,8,3,4,15,14,1,8,9,8,2,9,5,7,12,14,11,13,1,10,15,0,14,6,6,8,0,1,6,7,8,12,5,13,8,8,5,0,2,15,12,8,2,12,13,14,5,4,8,5,2,7,0,4,10,7,13,7,8,14,11,13,6,4,11,13,3,8,0,8,8,2,10,9,3,4,3,5,15,4,0,0,11,6,15,0,6,9,5,6,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"13\", \"4\"], \"clip_start\": 416.0, \"clip_end\": 419.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q4_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,15,9,12,5,10,15,2,7,1,9,4,15,7,2,11,15,11,12,4,9,1,6,6,0,7,14,9,0,15,0,1,0,3,12,7,9,14,0,5,6,15,1,11,13,3,7,1,12,7,0,1,10,14,2,0,3,13,5,8,0,4,10,7,1,12,12,14,2,12,1,10,2,14,15,4,6,12,2,3,4,15,7,1,7,4,1,13,7,14,3,1,15,6,6,8,7,7,3,0,3,14,2,2,14,1,12,5,6,12,1,0,6,9,3,10,6,13,8,15,6,4,9,9,13,7,1,2,9,2,0,9,1,2,7,7,2,15,15,11,11,3,4,7,3,5,8,13,4,1,3,0,12,11,6,13,5,4,3,3,6,4,12,3,2,8,2,2,11,7,9,15,2,2,7,5,1,9,7,5,7,6,8,3,4,6,1,6,9,2,12,15,14,15,7,13,12,4,4,8,8,8,12,14,2,5,2,15,7,15,11,7,15,5,7,6,2,11,10,10,1,10,5,4,12,14,12,9,15,1,14,12,12,5,7,8,9,2,10,12,15,8,0,7,15,11,6,6,4,2,6,6,4,12,7,7,2,3,10,0,6,12,12,14,1,9,9,14,0,5,4,5,13,2,7,15,4,6,3,7,15,6,11,6,5,9,13,8,10,5,7,0,2,6,1,13,13,12,8,5,9,5,9,12,5,6,8,6,14,12,3,2,4,8,4,11,12,3,12,10,3,4,7,1,15,6,13,5,1,10,13,10,10,13,8,14,11,3,15,12,5,6,5,0,13,5,11,1,5,7,4,5,13,15,4,9,14,5,9,11,7,5,5,13,2,10,15,0,5,2,13,8,0,6,12,9,14,1,0,1,15,14,1,9,11,0,13,10,10,10,14,10,2,2,7,10,11,1,8,12,14,5,3,2,12,7,8,2,9,1,15,10,2,15,12,14,12,13,2,1,11,8,3,4,15,14,1,8,9,8,2,9,5,7,12,14,11,13,1,10,15,0,14,6,6,8,0,1,6,7,8,12,5,13,8,8,5,0,2,15,12,8,2,12,13,14,5,4,8,5,2,7,0,4,10,7,13,7,8,14,11,13,6,4,11,13,3,8,0,8,8,2,10,9,3,4,3,5,15,4,0,0,11,6,15,0,6,9,5,6,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"11\", \"1\", \"5\", \"7\", \"4\"], \"clip_start\": 346.0, \"clip_end\": 352.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,15,9,12,5,10,15,2,7,1,9,4,15,7,2,11,15,11,12,4,9,1,6,6,0,7,14,9,0,15,0,1,0,3,12,7,9,14,0,5,6,15,1,11,13,3,7,1,12,7,0,1,10,14,2,0,3,13,5,8,0,4,10,7,1,12,12,14,2,12,1,10,2,14,15,4,6,12,2,3,4,15,7,1,7,4,1,13,7,14,3,1,15,6,6,8,7,7,3,0,3,14,2,2,14,1,12,5,6,12,1,0,6,9,3,10,6,13,8,15,6,4,9,9,13,7,1,2,9,2,0,9,1,2,7,7,2,15,15,11,11,3,4,7,3,5,8,13,4,1,3,0,12,11,6,13,5,4,3,3,6,4,12,3,2,8,2,2,11,7,9,15,2,2,7,5,1,9,7,5,7,6,8,3,4,6,1,6,9,2,12,15,14,15,7,13,12,4,4,8,8,8,12,14,2,5,2,15,7,15,11,7,15,5,7,6,2,11,10,10,1,10,5,4,12,14,12,9,15,1,14,12,12,5,7,8,9,2,10,12,15,8,0,7,15,11,6,6,4,2,6,6,4,12,7,7,2,3,10,0,6,12,12,14,1,9,9,14,0,5,4,5,13,2,7,15,4,6,3,7,15,6,11,6,5,9,13,8,10,5,7,0,2,6,1,13,13,12,8,5,9,5,9,12,5,6,8,6,14,12,3,2,4,8,4,11,12,3,12,10,3,4,7,1,15,6,13,5,1,10,13,10,10,13,8,14,11,3,15,12,5,6,5,0,13,5,11,1,5,7,4,5,13,15,4,9,14,5,9,11,7,5,5,13,2,10,15,0,5,2,13,8,0,6,12,9,14,1,0,1,15,14,1,9,11,0,13,10,10,10,14,10,2,2,7,10,11,1,8,12,14,5,3,2,12,7,8,2,9,1,15,10,2,15,12,14,12,13,2,1,11,8,3,4,15,14,1,8,9,8,2,9,5,7,12,14,11,13,1,10,15,0,14,6,6,8,0,1,6,7,8,12,5,13,8,8,5,0,2,15,12,8,2,12,13,14,5,4,8,5,2,7,0,4,10,7,13,7,8,14,11,13,6,4,11,13,3,8,0,8,8,2,10,9,3,4,3,5,15,4,0,0,11,6,15,0,6,9,5,6,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"3\", \"15\"], \"clip_start\": 336.0, \"clip_end\": 340.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q6_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,15,9,12,5,10,15,2,7,1,9,4,15,7,2,11,15,11,12,4,9,1,6,6,0,7,14,9,0,15,0,1,0,3,12,7,9,14,0,5,6,15,1,11,13,3,7,1,12,7,0,1,10,14,2,0,3,13,5,8,0,4,10,7,1,12,12,14,2,12,1,10,2,14,15,4,6,12,2,3,4,15,7,1,7,4,1,13,7,14,3,1,15,6,6,8,7,7,3,0,3,14,2,2,14,1,12,5,6,12,1,0,6,9,3,10,6,13,8,15,6,4,9,9,13,7,1,2,9,2,0,9,1,2,7,7,2,15,15,11,11,3,4,7,3,5,8,13,4,1,3,0,12,11,6,13,5,4,3,3,6,4,12,3,2,8,2,2,11,7,9,15,2,2,7,5,1,9,7,5,7,6,8,3,4,6,1,6,9,2,12,15,14,15,7,13,12,4,4,8,8,8,12,14,2,5,2,15,7,15,11,7,15,5,7,6,2,11,10,10,1,10,5,4,12,14,12,9,15,1,14,12,12,5,7,8,9,2,10,12,15,8,0,7,15,11,6,6,4,2,6,6,4,12,7,7,2,3,10,0,6,12,12,14,1,9,9,14,0,5,4,5,13,2,7,15,4,6,3,7,15,6,11,6,5,9,13,8,10,5,7,0,2,6,1,13,13,12,8,5,9,5,9,12,5,6,8,6,14,12,3,2,4,8,4,11,12,3,12,10,3,4,7,1,15,6,13,5,1,10,13,10,10,13,8,14,11,3,15,12,5,6,5,0,13,5,11,1,5,7,4,5,13,15,4,9,14,5,9,11,7,5,5,13,2,10,15,0,5,2,13,8,0,6,12,9,14,1,0,1,15,14,1,9,11,0,13,10,10,10,14,10,2,2,7,10,11,1,8,12,14,5,3,2,12,7,8,2,9,1,15,10,2,15,12,14,12,13,2,1,11,8,3,4,15,14,1,8,9,8,2,9,5,7,12,14,11,13,1,10,15,0,14,6,6,8,0,1,6,7,8,12,5,13,8,8,5,0,2,15,12,8,2,12,13,14,5,4,8,5,2,7,0,4,10,7,13,7,8,14,11,13,6,4,11,13,3,8,0,8,8,2,10,9,3,4,3,5,15,4,0,0,11,6,15,0,6,9,5,6,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"0\", \"13\", \"10\", \"10\", \"10\"], \"clip_start\": 385.0, \"clip_end\": 391.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q7_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,15,9,12,5,10,15,2,7,1,9,4,15,7,2,11,15,11,12,4,9,1,6,6,0,7,14,9,0,15,0,1,0,3,12,7,9,14,0,5,6,15,1,11,13,3,7,1,12,7,0,1,10,14,2,0,3,13,5,8,0,4,10,7,1,12,12,14,2,12,1,10,2,14,15,4,6,12,2,3,4,15,7,1,7,4,1,13,7,14,3,1,15,6,6,8,7,7,3,0,3,14,2,2,14,1,12,5,6,12,1,0,6,9,3,10,6,13,8,15,6,4,9,9,13,7,1,2,9,2,0,9,1,2,7,7,2,15,15,11,11,3,4,7,3,5,8,13,4,1,3,0,12,11,6,13,5,4,3,3,6,4,12,3,2,8,2,2,11,7,9,15,2,2,7,5,1,9,7,5,7,6,8,3,4,6,1,6,9,2,12,15,14,15,7,13,12,4,4,8,8,8,12,14,2,5,2,15,7,15,11,7,15,5,7,6,2,11,10,10,1,10,5,4,12,14,12,9,15,1,14,12,12,5,7,8,9,2,10,12,15,8,0,7,15,11,6,6,4,2,6,6,4,12,7,7,2,3,10,0,6,12,12,14,1,9,9,14,0,5,4,5,13,2,7,15,4,6,3,7,15,6,11,6,5,9,13,8,10,5,7,0,2,6,1,13,13,12,8,5,9,5,9,12,5,6,8,6,14,12,3,2,4,8,4,11,12,3,12,10,3,4,7,1,15,6,13,5,1,10,13,10,10,13,8,14,11,3,15,12,5,6,5,0,13,5,11,1,5,7,4,5,13,15,4,9,14,5,9,11,7,5,5,13,2,10,15,0,5,2,13,8,0,6,12,9,14,1,0,1,15,14,1,9,11,0,13,10,10,10,14,10,2,2,7,10,11,1,8,12,14,5,3,2,12,7,8,2,9,1,15,10,2,15,12,14,12,13,2,1,11,8,3,4,15,14,1,8,9,8,2,9,5,7,12,14,11,13,1,10,15,0,14,6,6,8,0,1,6,7,8,12,5,13,8,8,5,0,2,15,12,8,2,12,13,14,5,4,8,5,2,7,0,4,10,7,13,7,8,14,11,13,6,4,11,13,3,8,0,8,8,2,10,9,3,4,3,5,15,4,0,0,11,6,15,0,6,9,5,6,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"5\", \"13\", \"2\", \"10\", \"15\"], \"clip_start\": 362.0, \"clip_end\": 368.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q8_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,15,9,12,5,10,15,2,7,1,9,4,15,7,2,11,15,11,12,4,9,1,6,6,0,7,14,9,0,15,0,1,0,3,12,7,9,14,0,5,6,15,1,11,13,3,7,1,12,7,0,1,10,14,2,0,3,13,5,8,0,4,10,7,1,12,12,14,2,12,1,10,2,14,15,4,6,12,2,3,4,15,7,1,7,4,1,13,7,14,3,1,15,6,6,8,7,7,3,0,3,14,2,2,14,1,12,5,6,12,1,0,6,9,3,10,6,13,8,15,6,4,9,9,13,7,1,2,9,2,0,9,1,2,7,7,2,15,15,11,11,3,4,7,3,5,8,13,4,1,3,0,12,11,6,13,5,4,3,3,6,4,12,3,2,8,2,2,11,7,9,15,2,2,7,5,1,9,7,5,7,6,8,3,4,6,1,6,9,2,12,15,14,15,7,13,12,4,4,8,8,8,12,14,2,5,2,15,7,15,11,7,15,5,7,6,2,11,10,10,1,10,5,4,12,14,12,9,15,1,14,12,12,5,7,8,9,2,10,12,15,8,0,7,15,11,6,6,4,2,6,6,4,12,7,7,2,3,10,0,6,12,12,14,1,9,9,14,0,5,4,5,13,2,7,15,4,6,3,7,15,6,11,6,5,9,13,8,10,5,7,0,2,6,1,13,13,12,8,5,9,5,9,12,5,6,8,6,14,12,3,2,4,8,4,11,12,3,12,10,3,4,7,1,15,6,13,5,1,10,13,10,10,13,8,14,11,3,15,12,5,6,5,0,13,5,11,1,5,7,4,5,13,15,4,9,14,5,9,11,7,5,5,13,2,10,15,0,5,2,13,8,0,6,12,9,14,1,0,1,15,14,1,9,11,0,13,10,10,10,14,10,2,2,7,10,11,1,8,12,14,5,3,2,12,7,8,2,9,1,15,10,2,15,12,14,12,13,2,1,11,8,3,4,15,14,1,8,9,8,2,9,5,7,12,14,11,13,1,10,15,0,14,6,6,8,0,1,6,7,8,12,5,13,8,8,5,0,2,15,12,8,2,12,13,14,5,4,8,5,2,7,0,4,10,7,13,7,8,14,11,13,6,4,11,13,3,8,0,8,8,2,10,9,3,4,3,5,15,4,0,0,11,6,15,0,6,9,5,6,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"14\", \"5\", \"7\"], \"clip_start\": 239.0, \"clip_end\": 243.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,15,9,12,5,10,15,2,7,1,9,4,15,7,2,11,15,11,12,4,9,1,6,6,0,7,14,9,0,15,0,1,0,3,12,7,9,14,0,5,6,15,1,11,13,3,7,1,12,7,0,1,10,14,2,0,3,13,5,8,0,4,10,7,1,12,12,14,2,12,1,10,2,14,15,4,6,12,2,3,4,15,7,1,7,4,1,13,7,14,3,1,15,6,6,8,7,7,3,0,3,14,2,2,14,1,12,5,6,12,1,0,6,9,3,10,6,13,8,15,6,4,9,9,13,7,1,2,9,2,0,9,1,2,7,7,2,15,15,11,11,3,4,7,3,5,8,13,4,1,3,0,12,11,6,13,5,4,3,3,6,4,12,3,2,8,2,2,11,7,9,15,2,2,7,5,1,9,7,5,7,6,8,3,4,6,1,6,9,2,12,15,14,15,7,13,12,4,4,8,8,8,12,14,2,5,2,15,7,15,11,7,15,5,7,6,2,11,10,10,1,10,5,4,12,14,12,9,15,1,14,12,12,5,7,8,9,2,10,12,15,8,0,7,15,11,6,6,4,2,6,6,4,12,7,7,2,3,10,0,6,12,12,14,1,9,9,14,0,5,4,5,13,2,7,15,4,6,3,7,15,6,11,6,5,9,13,8,10,5,7,0,2,6,1,13,13,12,8,5,9,5,9,12,5,6,8,6,14,12,3,2,4,8,4,11,12,3,12,10,3,4,7,1,15,6,13,5,1,10,13,10,10,13,8,14,11,3,15,12,5,6,5,0,13,5,11,1,5,7,4,5,13,15,4,9,14,5,9,11,7,5,5,13,2,10,15,0,5,2,13,8,0,6,12,9,14,1,0,1,15,14,1,9,11,0,13,10,10,10,14,10,2,2,7,10,11,1,8,12,14,5,3,2,12,7,8,2,9,1,15,10,2,15,12,14,12,13,2,1,11,8,3,4,15,14,1,8,9,8,2,9,5,7,12,14,11,13,1,10,15,0,14,6,6,8,0,1,6,7,8,12,5,13,8,8,5,0,2,15,12,8,2,12,13,14,5,4,8,5,2,7,0,4,10,7,13,7,8,14,11,13,6,4,11,13,3,8,0,8,8,2,10,9,3,4,3,5,15,4,0,0,11,6,15,0,6,9,5,6,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"8\", \"0\"], \"clip_start\": 421.0, \"clip_end\": 425.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q10_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,15,9,12,5,10,15,2,7,1,9,4,15,7,2,11,15,11,12,4,9,1,6,6,0,7,14,9,0,15,0,1,0,3,12,7,9,14,0,5,6,15,1,11,13,3,7,1,12,7,0,1,10,14,2,0,3,13,5,8,0,4,10,7,1,12,12,14,2,12,1,10,2,14,15,4,6,12,2,3,4,15,7,1,7,4,1,13,7,14,3,1,15,6,6,8,7,7,3,0,3,14,2,2,14,1,12,5,6,12,1,0,6,9,3,10,6,13,8,15,6,4,9,9,13,7,1,2,9,2,0,9,1,2,7,7,2,15,15,11,11,3,4,7,3,5,8,13,4,1,3,0,12,11,6,13,5,4,3,3,6,4,12,3,2,8,2,2,11,7,9,15,2,2,7,5,1,9,7,5,7,6,8,3,4,6,1,6,9,2,12,15,14,15,7,13,12,4,4,8,8,8,12,14,2,5,2,15,7,15,11,7,15,5,7,6,2,11,10,10,1,10,5,4,12,14,12,9,15,1,14,12,12,5,7,8,9,2,10,12,15,8,0,7,15,11,6,6,4,2,6,6,4,12,7,7,2,3,10,0,6,12,12,14,1,9,9,14,0,5,4,5,13,2,7,15,4,6,3,7,15,6,11,6,5,9,13,8,10,5,7,0,2,6,1,13,13,12,8,5,9,5,9,12,5,6,8,6,14,12,3,2,4,8,4,11,12,3,12,10,3,4,7,1,15,6,13,5,1,10,13,10,10,13,8,14,11,3,15,12,5,6,5,0,13,5,11,1,5,7,4,5,13,15,4,9,14,5,9,11,7,5,5,13,2,10,15,0,5,2,13,8,0,6,12,9,14,1,0,1,15,14,1,9,11,0,13,10,10,10,14,10,2,2,7,10,11,1,8,12,14,5,3,2,12,7,8,2,9,1,15,10,2,15,12,14,12,13,2,1,11,8,3,4,15,14,1,8,9,8,2,9,5,7,12,14,11,13,1,10,15,0,14,6,6,8,0,1,6,7,8,12,5,13,8,8,5,0,2,15,12,8,2,12,13,14,5,4,8,5,2,7,0,4,10,7,13,7,8,14,11,13,6,4,11,13,3,8,0,8,8,2,10,9,3,4,3,5,15,4,0,0,11,6,15,0,6,9,5,6,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"6\", \"11\", \"6\", \"5\"], \"clip_start\": 280.0, \"clip_end\": 286.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q11_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,15,9,12,5,10,15,2,7,1,9,4,15,7,2,11,15,11,12,4,9,1,6,6,0,7,14,9,0,15,0,1,0,3,12,7,9,14,0,5,6,15,1,11,13,3,7,1,12,7,0,1,10,14,2,0,3,13,5,8,0,4,10,7,1,12,12,14,2,12,1,10,2,14,15,4,6,12,2,3,4,15,7,1,7,4,1,13,7,14,3,1,15,6,6,8,7,7,3,0,3,14,2,2,14,1,12,5,6,12,1,0,6,9,3,10,6,13,8,15,6,4,9,9,13,7,1,2,9,2,0,9,1,2,7,7,2,15,15,11,11,3,4,7,3,5,8,13,4,1,3,0,12,11,6,13,5,4,3,3,6,4,12,3,2,8,2,2,11,7,9,15,2,2,7,5,1,9,7,5,7,6,8,3,4,6,1,6,9,2,12,15,14,15,7,13,12,4,4,8,8,8,12,14,2,5,2,15,7,15,11,7,15,5,7,6,2,11,10,10,1,10,5,4,12,14,12,9,15,1,14,12,12,5,7,8,9,2,10,12,15,8,0,7,15,11,6,6,4,2,6,6,4,12,7,7,2,3,10,0,6,12,12,14,1,9,9,14,0,5,4,5,13,2,7,15,4,6,3,7,15,6,11,6,5,9,13,8,10,5,7,0,2,6,1,13,13,12,8,5,9,5,9,12,5,6,8,6,14,12,3,2,4,8,4,11,12,3,12,10,3,4,7,1,15,6,13,5,1,10,13,10,10,13,8,14,11,3,15,12,5,6,5,0,13,5,11,1,5,7,4,5,13,15,4,9,14,5,9,11,7,5,5,13,2,10,15,0,5,2,13,8,0,6,12,9,14,1,0,1,15,14,1,9,11,0,13,10,10,10,14,10,2,2,7,10,11,1,8,12,14,5,3,2,12,7,8,2,9,1,15,10,2,15,12,14,12,13,2,1,11,8,3,4,15,14,1,8,9,8,2,9,5,7,12,14,11,13,1,10,15,0,14,6,6,8,0,1,6,7,8,12,5,13,8,8,5,0,2,15,12,8,2,12,13,14,5,4,8,5,2,7,0,4,10,7,13,7,8,14,11,13,6,4,11,13,3,8,0,8,8,2,10,9,3,4,3,5,15,4,0,0,11,6,15,0,6,9,5,6,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 5, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"1\", \"12\", \"12\"], \"clip_start\": 64.0, \"clip_end\": 68.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,15,9,12,5,10,15,2,7,1,9,4,15,7,2,11,15,11,12,4,9,1,6,6,0,7,14,9,0,15,0,1,0,3,12,7,9,14,0,5,6,15,1,11,13,3,7,1,12,7,0,1,10,14,2,0,3,13,5,8,0,4,10,7,1,12,12,14,2,12,1,10,2,14,15,4,6,12,2,3,4,15,7,1,7,4,1,13,7,14,3,1,15,6,6,8,7,7,3,0,3,14,2,2,14,1,12,5,6,12,1,0,6,9,3,10,6,13,8,15,6,4,9,9,13,7,1,2,9,2,0,9,1,2,7,7,2,15,15,11,11,3,4,7,3,5,8,13,4,1,3,0,12,11,6,13,5,4,3,3,6,4,12,3,2,8,2,2,11,7,9,15,2,2,7,5,1,9,7,5,7,6,8,3,4,6,1,6,9,2,12,15,14,15,7,13,12,4,4,8,8,8,12,14,2,5,2,15,7,15,11,7,15,5,7,6,2,11,10,10,1,10,5,4,12,14,12,9,15,1,14,12,12,5,7,8,9,2,10,12,15,8,0,7,15,11,6,6,4,2,6,6,4,12,7,7,2,3,10,0,6,12,12,14,1,9,9,14,0,5,4,5,13,2,7,15,4,6,3,7,15,6,11,6,5,9,13,8,10,5,7,0,2,6,1,13,13,12,8,5,9,5,9,12,5,6,8,6,14,12,3,2,4,8,4,11,12,3,12,10,3,4,7,1,15,6,13,5,1,10,13,10,10,13,8,14,11,3,15,12,5,6,5,0,13,5,11,1,5,7,4,5,13,15,4,9,14,5,9,11,7,5,5,13,2,10,15,0,5,2,13,8,0,6,12,9,14,1,0,1,15,14,1,9,11,0,13,10,10,10,14,10,2,2,7,10,11,1,8,12,14,5,3,2,12,7,8,2,9,1,15,10,2,15,12,14,12,13,2,1,11,8,3,4,15,14,1,8,9,8,2,9,5,7,12,14,11,13,1,10,15,0,14,6,6,8,0,1,6,7,8,12,5,13,8,8,5,0,2,15,12,8,2,12,13,14,5,4,8,5,2,7,0,4,10,7,13,7,8,14,11,13,6,4,11,13,3,8,0,8,8,2,10,9,3,4,3,5,15,4,0,0,11,6,15,0,6,9,5,6,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"4\", \"12\", \"3\"], \"clip_start\": 161.0, \"clip_end\": 165.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,15,9,12,5,10,15,2,7,1,9,4,15,7,2,11,15,11,12,4,9,1,6,6,0,7,14,9,0,15,0,1,0,3,12,7,9,14,0,5,6,15,1,11,13,3,7,1,12,7,0,1,10,14,2,0,3,13,5,8,0,4,10,7,1,12,12,14,2,12,1,10,2,14,15,4,6,12,2,3,4,15,7,1,7,4,1,13,7,14,3,1,15,6,6,8,7,7,3,0,3,14,2,2,14,1,12,5,6,12,1,0,6,9,3,10,6,13,8,15,6,4,9,9,13,7,1,2,9,2,0,9,1,2,7,7,2,15,15,11,11,3,4,7,3,5,8,13,4,1,3,0,12,11,6,13,5,4,3,3,6,4,12,3,2,8,2,2,11,7,9,15,2,2,7,5,1,9,7,5,7,6,8,3,4,6,1,6,9,2,12,15,14,15,7,13,12,4,4,8,8,8,12,14,2,5,2,15,7,15,11,7,15,5,7,6,2,11,10,10,1,10,5,4,12,14,12,9,15,1,14,12,12,5,7,8,9,2,10,12,15,8,0,7,15,11,6,6,4,2,6,6,4,12,7,7,2,3,10,0,6,12,12,14,1,9,9,14,0,5,4,5,13,2,7,15,4,6,3,7,15,6,11,6,5,9,13,8,10,5,7,0,2,6,1,13,13,12,8,5,9,5,9,12,5,6,8,6,14,12,3,2,4,8,4,11,12,3,12,10,3,4,7,1,15,6,13,5,1,10,13,10,10,13,8,14,11,3,15,12,5,6,5,0,13,5,11,1,5,7,4,5,13,15,4,9,14,5,9,11,7,5,5,13,2,10,15,0,5,2,13,8,0,6,12,9,14,1,0,1,15,14,1,9,11,0,13,10,10,10,14,10,2,2,7,10,11,1,8,12,14,5,3,2,12,7,8,2,9,1,15,10,2,15,12,14,12,13,2,1,11,8,3,4,15,14,1,8,9,8,2,9,5,7,12,14,11,13,1,10,15,0,14,6,6,8,0,1,6,7,8,12,5,13,8,8,5,0,2,15,12,8,2,12,13,14,5,4,8,5,2,7,0,4,10,7,13,7,8,14,11,13,6,4,11,13,3,8,0,8,8,2,10,9,3,4,3,5,15,4,0,0,11,6,15,0,6,9,5,6,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"15\", \"6\", \"6\", \"8\", \"7\"], \"clip_start\": 92.0, \"clip_end\": 98.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q14_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,15,9,12,5,10,15,2,7,1,9,4,15,7,2,11,15,11,12,4,9,1,6,6,0,7,14,9,0,15,0,1,0,3,12,7,9,14,0,5,6,15,1,11,13,3,7,1,12,7,0,1,10,14,2,0,3,13,5,8,0,4,10,7,1,12,12,14,2,12,1,10,2,14,15,4,6,12,2,3,4,15,7,1,7,4,1,13,7,14,3,1,15,6,6,8,7,7,3,0,3,14,2,2,14,1,12,5,6,12,1,0,6,9,3,10,6,13,8,15,6,4,9,9,13,7,1,2,9,2,0,9,1,2,7,7,2,15,15,11,11,3,4,7,3,5,8,13,4,1,3,0,12,11,6,13,5,4,3,3,6,4,12,3,2,8,2,2,11,7,9,15,2,2,7,5,1,9,7,5,7,6,8,3,4,6,1,6,9,2,12,15,14,15,7,13,12,4,4,8,8,8,12,14,2,5,2,15,7,15,11,7,15,5,7,6,2,11,10,10,1,10,5,4,12,14,12,9,15,1,14,12,12,5,7,8,9,2,10,12,15,8,0,7,15,11,6,6,4,2,6,6,4,12,7,7,2,3,10,0,6,12,12,14,1,9,9,14,0,5,4,5,13,2,7,15,4,6,3,7,15,6,11,6,5,9,13,8,10,5,7,0,2,6,1,13,13,12,8,5,9,5,9,12,5,6,8,6,14,12,3,2,4,8,4,11,12,3,12,10,3,4,7,1,15,6,13,5,1,10,13,10,10,13,8,14,11,3,15,12,5,6,5,0,13,5,11,1,5,7,4,5,13,15,4,9,14,5,9,11,7,5,5,13,2,10,15,0,5,2,13,8,0,6,12,9,14,1,0,1,15,14,1,9,11,0,13,10,10,10,14,10,2,2,7,10,11,1,8,12,14,5,3,2,12,7,8,2,9,1,15,10,2,15,12,14,12,13,2,1,11,8,3,4,15,14,1,8,9,8,2,9,5,7,12,14,11,13,1,10,15,0,14,6,6,8,0,1,6,7,8,12,5,13,8,8,5,0,2,15,12,8,2,12,13,14,5,4,8,5,2,7,0,4,10,7,13,7,8,14,11,13,6,4,11,13,3,8,0,8,8,2,10,9,3,4,3,5,15,4,0,0,11,6,15,0,6,9,5,6,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 5, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"9\", \"9\", \"14\", \"0\", \"5\"], \"clip_start\": 265.0, \"clip_end\": 271.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q15_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,12,15,9,12,5,10,15,2,7,1,9,4,15,7,2,11,15,11,12,4,9,1,6,6,0,7,14,9,0,15,0,1,0,3,12,7,9,14,0,5,6,15,1,11,13,3,7,1,12,7,0,1,10,14,2,0,3,13,5,8,0,4,10,7,1,12,12,14,2,12,1,10,2,14,15,4,6,12,2,3,4,15,7,1,7,4,1,13,7,14,3,1,15,6,6,8,7,7,3,0,3,14,2,2,14,1,12,5,6,12,1,0,6,9,3,10,6,13,8,15,6,4,9,9,13,7,1,2,9,2,0,9,1,2,7,7,2,15,15,11,11,3,4,7,3,5,8,13,4,1,3,0,12,11,6,13,5,4,3,3,6,4,12,3,2,8,2,2,11,7,9,15,2,2,7,5,1,9,7,5,7,6,8,3,4,6,1,6,9,2,12,15,14,15,7,13,12,4,4,8,8,8,12,14,2,5,2,15,7,15,11,7,15,5,7,6,2,11,10,10,1,10,5,4,12,14,12,9,15,1,14,12,12,5,7,8,9,2,10,12,15,8,0,7,15,11,6,6,4,2,6,6,4,12,7,7,2,3,10,0,6,12,12,14,1,9,9,14,0,5,4,5,13,2,7,15,4,6,3,7,15,6,11,6,5,9,13,8,10,5,7,0,2,6,1,13,13,12,8,5,9,5,9,12,5,6,8,6,14,12,3,2,4,8,4,11,12,3,12,10,3,4,7,1,15,6,13,5,1,10,13,10,10,13,8,14,11,3,15,12,5,6,5,0,13,5,11,1,5,7,4,5,13,15,4,9,14,5,9,11,7,5,5,13,2,10,15,0,5,2,13,8,0,6,12,9,14,1,0,1,15,14,1,9,11,0,13,10,10,10,14,10,2,2,7,10,11,1,8,12,14,5,3,2,12,7,8,2,9,1,15,10,2,15,12,14,12,13,2,1,11,8,3,4,15,14,1,8,9,8,2,9,5,7,12,14,11,13,1,10,15,0,14,6,6,8,0,1,6,7,8,12,5,13,8,8,5,0,2,15,12,8,2,12,13,14,5,4,8,5,2,7,0,4,10,7,13,7,8,14,11,13,6,4,11,13,3,8,0,8,8,2,10,9,3,4,3,5,15,4,0,0,11,6,15,0,6,9,5,6,10", "source_class": null, "source_dataset": null, "video_id": "video_5_v0", "question_id": "video_5_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"13\", \"10\", \"2\", \"0\"], \"clip_start\": 412.0, \"clip_end\": 418.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,3,12,14,10,15,1,4,12,4,8,11,12,11,12,0,6,5,10,8,7,8,13,10,12,14,14,12,14,2,3,0,9,3,4,15,1,10,2,8,5,7,1,11,2,9,4,14,0,2,7,0,11,4,1,0,5,12,3,2,0,5,11,2,1,7,13,0,3,11,9,0,3,15,3,6,8,5,9,0,6,10,1,13,15,5,4,11,5,11,13,7,11,1,4,5,1,11,10,0,14,12,13,11,11,0,8,8,5,1,3,4,13,11,13,12,4,12,12,15,13,9,13,14,14,5,1,5,0,8,11,13,13,7,10,0,11,1,15,9,2,12,3,8,15,7,11,10,1,2,8,3,1,14,11,0,8,3,2,12,0,15,11,0,10,1,2,9,0,2,11,3,11,11,8,4,9,13,8,10,15,0,3,11,15,1,10,4,11,3,1,2,2,15,13,5,9,8,9,11,6,9,6,10,14,6,14,4,6,6,4,2,3,6,8,1,15,11,10,2,15,8,8,15,9,11,11,0,2,8,7,11,11,12,0,3,10,3,4,15,3,15,14,9,0,11,8,1,2,11,10,10,4,7,9,1,7,3,0,2,0,11,13,13,5,13,11,13,11,2,12,6,14,7,9,8,7,5,12,0,10,4,15,14,2,13,14,15,1,4,14,13,8,5,7,2,14,1,3,11,9,14,6,6,0,10,4,6,3,13,0,11,2,1,10,4,12,12,9,14,3,5,3,2,13,15,11,1,8,10,1,0,1,11,15,13,2,12,7,14,3,14,12,12,11,4,6,0,5,4,8,10,10,13,3,6,0,1,2,5,4,6,4,14,6,1,0,2,3,14,4,4,5,7,7,15,4,4,4,10,12,13,11,5,12,14,9,10,2,4,1,15,12,14,14,14,13,9,14,1,0,1,3,9,5,8,5,14,7,11,7,14,3,13,10,2,0,6,11,9,7,14,5,10,7,7,1,13,14,15,10,13,12,2,3,11,8,4,1,14,5,6,3,14,15,2,9,13,15,6,11,6,14,1,6,14,0,8,14,3,4,5,3,12,10,12,5,5,15,0,13,13,12,10,2,7,2,15,11,8,1,10,5,7,10,11,2,3,9,12,0,12,6,2,13,13,11,9,6,11,3,3,10,15,15,11,9,4,12,9,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"4\", \"7\", \"9\"], \"clip_start\": 252.0, \"clip_end\": 256.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,3,12,14,10,15,1,4,12,4,8,11,12,11,12,0,6,5,10,8,7,8,13,10,12,14,14,12,14,2,3,0,9,3,4,15,1,10,2,8,5,7,1,11,2,9,4,14,0,2,7,0,11,4,1,0,5,12,3,2,0,5,11,2,1,7,13,0,3,11,9,0,3,15,3,6,8,5,9,0,6,10,1,13,15,5,4,11,5,11,13,7,11,1,4,5,1,11,10,0,14,12,13,11,11,0,8,8,5,1,3,4,13,11,13,12,4,12,12,15,13,9,13,14,14,5,1,5,0,8,11,13,13,7,10,0,11,1,15,9,2,12,3,8,15,7,11,10,1,2,8,3,1,14,11,0,8,3,2,12,0,15,11,0,10,1,2,9,0,2,11,3,11,11,8,4,9,13,8,10,15,0,3,11,15,1,10,4,11,3,1,2,2,15,13,5,9,8,9,11,6,9,6,10,14,6,14,4,6,6,4,2,3,6,8,1,15,11,10,2,15,8,8,15,9,11,11,0,2,8,7,11,11,12,0,3,10,3,4,15,3,15,14,9,0,11,8,1,2,11,10,10,4,7,9,1,7,3,0,2,0,11,13,13,5,13,11,13,11,2,12,6,14,7,9,8,7,5,12,0,10,4,15,14,2,13,14,15,1,4,14,13,8,5,7,2,14,1,3,11,9,14,6,6,0,10,4,6,3,13,0,11,2,1,10,4,12,12,9,14,3,5,3,2,13,15,11,1,8,10,1,0,1,11,15,13,2,12,7,14,3,14,12,12,11,4,6,0,5,4,8,10,10,13,3,6,0,1,2,5,4,6,4,14,6,1,0,2,3,14,4,4,5,7,7,15,4,4,4,10,12,13,11,5,12,14,9,10,2,4,1,15,12,14,14,14,13,9,14,1,0,1,3,9,5,8,5,14,7,11,7,14,3,13,10,2,0,6,11,9,7,14,5,10,7,7,1,13,14,15,10,13,12,2,3,11,8,4,1,14,5,6,3,14,15,2,9,13,15,6,11,6,14,1,6,14,0,8,14,3,4,5,3,12,10,12,5,5,15,0,13,13,12,10,2,7,2,15,11,8,1,10,5,7,10,11,2,3,9,12,0,12,6,2,13,13,11,9,6,11,3,3,10,15,15,11,9,4,12,9,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"2\", \"0\", \"5\", \"11\", \"2\"], \"clip_start\": 59.0, \"clip_end\": 65.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q2_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,3,12,14,10,15,1,4,12,4,8,11,12,11,12,0,6,5,10,8,7,8,13,10,12,14,14,12,14,2,3,0,9,3,4,15,1,10,2,8,5,7,1,11,2,9,4,14,0,2,7,0,11,4,1,0,5,12,3,2,0,5,11,2,1,7,13,0,3,11,9,0,3,15,3,6,8,5,9,0,6,10,1,13,15,5,4,11,5,11,13,7,11,1,4,5,1,11,10,0,14,12,13,11,11,0,8,8,5,1,3,4,13,11,13,12,4,12,12,15,13,9,13,14,14,5,1,5,0,8,11,13,13,7,10,0,11,1,15,9,2,12,3,8,15,7,11,10,1,2,8,3,1,14,11,0,8,3,2,12,0,15,11,0,10,1,2,9,0,2,11,3,11,11,8,4,9,13,8,10,15,0,3,11,15,1,10,4,11,3,1,2,2,15,13,5,9,8,9,11,6,9,6,10,14,6,14,4,6,6,4,2,3,6,8,1,15,11,10,2,15,8,8,15,9,11,11,0,2,8,7,11,11,12,0,3,10,3,4,15,3,15,14,9,0,11,8,1,2,11,10,10,4,7,9,1,7,3,0,2,0,11,13,13,5,13,11,13,11,2,12,6,14,7,9,8,7,5,12,0,10,4,15,14,2,13,14,15,1,4,14,13,8,5,7,2,14,1,3,11,9,14,6,6,0,10,4,6,3,13,0,11,2,1,10,4,12,12,9,14,3,5,3,2,13,15,11,1,8,10,1,0,1,11,15,13,2,12,7,14,3,14,12,12,11,4,6,0,5,4,8,10,10,13,3,6,0,1,2,5,4,6,4,14,6,1,0,2,3,14,4,4,5,7,7,15,4,4,4,10,12,13,11,5,12,14,9,10,2,4,1,15,12,14,14,14,13,9,14,1,0,1,3,9,5,8,5,14,7,11,7,14,3,13,10,2,0,6,11,9,7,14,5,10,7,7,1,13,14,15,10,13,12,2,3,11,8,4,1,14,5,6,3,14,15,2,9,13,15,6,11,6,14,1,6,14,0,8,14,3,4,5,3,12,10,12,5,5,15,0,13,13,12,10,2,7,2,15,11,8,1,10,5,7,10,11,2,3,9,12,0,12,6,2,13,13,11,9,6,11,3,3,10,15,15,11,9,4,12,9,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"3\"], \"clip_start\": 73.0, \"clip_end\": 76.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q3_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,3,12,14,10,15,1,4,12,4,8,11,12,11,12,0,6,5,10,8,7,8,13,10,12,14,14,12,14,2,3,0,9,3,4,15,1,10,2,8,5,7,1,11,2,9,4,14,0,2,7,0,11,4,1,0,5,12,3,2,0,5,11,2,1,7,13,0,3,11,9,0,3,15,3,6,8,5,9,0,6,10,1,13,15,5,4,11,5,11,13,7,11,1,4,5,1,11,10,0,14,12,13,11,11,0,8,8,5,1,3,4,13,11,13,12,4,12,12,15,13,9,13,14,14,5,1,5,0,8,11,13,13,7,10,0,11,1,15,9,2,12,3,8,15,7,11,10,1,2,8,3,1,14,11,0,8,3,2,12,0,15,11,0,10,1,2,9,0,2,11,3,11,11,8,4,9,13,8,10,15,0,3,11,15,1,10,4,11,3,1,2,2,15,13,5,9,8,9,11,6,9,6,10,14,6,14,4,6,6,4,2,3,6,8,1,15,11,10,2,15,8,8,15,9,11,11,0,2,8,7,11,11,12,0,3,10,3,4,15,3,15,14,9,0,11,8,1,2,11,10,10,4,7,9,1,7,3,0,2,0,11,13,13,5,13,11,13,11,2,12,6,14,7,9,8,7,5,12,0,10,4,15,14,2,13,14,15,1,4,14,13,8,5,7,2,14,1,3,11,9,14,6,6,0,10,4,6,3,13,0,11,2,1,10,4,12,12,9,14,3,5,3,2,13,15,11,1,8,10,1,0,1,11,15,13,2,12,7,14,3,14,12,12,11,4,6,0,5,4,8,10,10,13,3,6,0,1,2,5,4,6,4,14,6,1,0,2,3,14,4,4,5,7,7,15,4,4,4,10,12,13,11,5,12,14,9,10,2,4,1,15,12,14,14,14,13,9,14,1,0,1,3,9,5,8,5,14,7,11,7,14,3,13,10,2,0,6,11,9,7,14,5,10,7,7,1,13,14,15,10,13,12,2,3,11,8,4,1,14,5,6,3,14,15,2,9,13,15,6,11,6,14,1,6,14,0,8,14,3,4,5,3,12,10,12,5,5,15,0,13,13,12,10,2,7,2,15,11,8,1,10,5,7,10,11,2,3,9,12,0,12,6,2,13,13,11,9,6,11,3,3,10,15,15,11,9,4,12,9,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"4\", \"6\", \"3\"], \"clip_start\": 305.0, \"clip_end\": 310.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,3,12,14,10,15,1,4,12,4,8,11,12,11,12,0,6,5,10,8,7,8,13,10,12,14,14,12,14,2,3,0,9,3,4,15,1,10,2,8,5,7,1,11,2,9,4,14,0,2,7,0,11,4,1,0,5,12,3,2,0,5,11,2,1,7,13,0,3,11,9,0,3,15,3,6,8,5,9,0,6,10,1,13,15,5,4,11,5,11,13,7,11,1,4,5,1,11,10,0,14,12,13,11,11,0,8,8,5,1,3,4,13,11,13,12,4,12,12,15,13,9,13,14,14,5,1,5,0,8,11,13,13,7,10,0,11,1,15,9,2,12,3,8,15,7,11,10,1,2,8,3,1,14,11,0,8,3,2,12,0,15,11,0,10,1,2,9,0,2,11,3,11,11,8,4,9,13,8,10,15,0,3,11,15,1,10,4,11,3,1,2,2,15,13,5,9,8,9,11,6,9,6,10,14,6,14,4,6,6,4,2,3,6,8,1,15,11,10,2,15,8,8,15,9,11,11,0,2,8,7,11,11,12,0,3,10,3,4,15,3,15,14,9,0,11,8,1,2,11,10,10,4,7,9,1,7,3,0,2,0,11,13,13,5,13,11,13,11,2,12,6,14,7,9,8,7,5,12,0,10,4,15,14,2,13,14,15,1,4,14,13,8,5,7,2,14,1,3,11,9,14,6,6,0,10,4,6,3,13,0,11,2,1,10,4,12,12,9,14,3,5,3,2,13,15,11,1,8,10,1,0,1,11,15,13,2,12,7,14,3,14,12,12,11,4,6,0,5,4,8,10,10,13,3,6,0,1,2,5,4,6,4,14,6,1,0,2,3,14,4,4,5,7,7,15,4,4,4,10,12,13,11,5,12,14,9,10,2,4,1,15,12,14,14,14,13,9,14,1,0,1,3,9,5,8,5,14,7,11,7,14,3,13,10,2,0,6,11,9,7,14,5,10,7,7,1,13,14,15,10,13,12,2,3,11,8,4,1,14,5,6,3,14,15,2,9,13,15,6,11,6,14,1,6,14,0,8,14,3,4,5,3,12,10,12,5,5,15,0,13,13,12,10,2,7,2,15,11,8,1,10,5,7,10,11,2,3,9,12,0,12,6,2,13,13,11,9,6,11,3,3,10,15,15,11,9,4,12,9,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"3\", \"14\", \"15\", \"2\", \"9\"], \"clip_start\": 442.0, \"clip_end\": 448.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,3,12,14,10,15,1,4,12,4,8,11,12,11,12,0,6,5,10,8,7,8,13,10,12,14,14,12,14,2,3,0,9,3,4,15,1,10,2,8,5,7,1,11,2,9,4,14,0,2,7,0,11,4,1,0,5,12,3,2,0,5,11,2,1,7,13,0,3,11,9,0,3,15,3,6,8,5,9,0,6,10,1,13,15,5,4,11,5,11,13,7,11,1,4,5,1,11,10,0,14,12,13,11,11,0,8,8,5,1,3,4,13,11,13,12,4,12,12,15,13,9,13,14,14,5,1,5,0,8,11,13,13,7,10,0,11,1,15,9,2,12,3,8,15,7,11,10,1,2,8,3,1,14,11,0,8,3,2,12,0,15,11,0,10,1,2,9,0,2,11,3,11,11,8,4,9,13,8,10,15,0,3,11,15,1,10,4,11,3,1,2,2,15,13,5,9,8,9,11,6,9,6,10,14,6,14,4,6,6,4,2,3,6,8,1,15,11,10,2,15,8,8,15,9,11,11,0,2,8,7,11,11,12,0,3,10,3,4,15,3,15,14,9,0,11,8,1,2,11,10,10,4,7,9,1,7,3,0,2,0,11,13,13,5,13,11,13,11,2,12,6,14,7,9,8,7,5,12,0,10,4,15,14,2,13,14,15,1,4,14,13,8,5,7,2,14,1,3,11,9,14,6,6,0,10,4,6,3,13,0,11,2,1,10,4,12,12,9,14,3,5,3,2,13,15,11,1,8,10,1,0,1,11,15,13,2,12,7,14,3,14,12,12,11,4,6,0,5,4,8,10,10,13,3,6,0,1,2,5,4,6,4,14,6,1,0,2,3,14,4,4,5,7,7,15,4,4,4,10,12,13,11,5,12,14,9,10,2,4,1,15,12,14,14,14,13,9,14,1,0,1,3,9,5,8,5,14,7,11,7,14,3,13,10,2,0,6,11,9,7,14,5,10,7,7,1,13,14,15,10,13,12,2,3,11,8,4,1,14,5,6,3,14,15,2,9,13,15,6,11,6,14,1,6,14,0,8,14,3,4,5,3,12,10,12,5,5,15,0,13,13,12,10,2,7,2,15,11,8,1,10,5,7,10,11,2,3,9,12,0,12,6,2,13,13,11,9,6,11,3,3,10,15,15,11,9,4,12,9,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"10\", \"15\", \"1\"], \"clip_start\": 3.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q6_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,3,12,14,10,15,1,4,12,4,8,11,12,11,12,0,6,5,10,8,7,8,13,10,12,14,14,12,14,2,3,0,9,3,4,15,1,10,2,8,5,7,1,11,2,9,4,14,0,2,7,0,11,4,1,0,5,12,3,2,0,5,11,2,1,7,13,0,3,11,9,0,3,15,3,6,8,5,9,0,6,10,1,13,15,5,4,11,5,11,13,7,11,1,4,5,1,11,10,0,14,12,13,11,11,0,8,8,5,1,3,4,13,11,13,12,4,12,12,15,13,9,13,14,14,5,1,5,0,8,11,13,13,7,10,0,11,1,15,9,2,12,3,8,15,7,11,10,1,2,8,3,1,14,11,0,8,3,2,12,0,15,11,0,10,1,2,9,0,2,11,3,11,11,8,4,9,13,8,10,15,0,3,11,15,1,10,4,11,3,1,2,2,15,13,5,9,8,9,11,6,9,6,10,14,6,14,4,6,6,4,2,3,6,8,1,15,11,10,2,15,8,8,15,9,11,11,0,2,8,7,11,11,12,0,3,10,3,4,15,3,15,14,9,0,11,8,1,2,11,10,10,4,7,9,1,7,3,0,2,0,11,13,13,5,13,11,13,11,2,12,6,14,7,9,8,7,5,12,0,10,4,15,14,2,13,14,15,1,4,14,13,8,5,7,2,14,1,3,11,9,14,6,6,0,10,4,6,3,13,0,11,2,1,10,4,12,12,9,14,3,5,3,2,13,15,11,1,8,10,1,0,1,11,15,13,2,12,7,14,3,14,12,12,11,4,6,0,5,4,8,10,10,13,3,6,0,1,2,5,4,6,4,14,6,1,0,2,3,14,4,4,5,7,7,15,4,4,4,10,12,13,11,5,12,14,9,10,2,4,1,15,12,14,14,14,13,9,14,1,0,1,3,9,5,8,5,14,7,11,7,14,3,13,10,2,0,6,11,9,7,14,5,10,7,7,1,13,14,15,10,13,12,2,3,11,8,4,1,14,5,6,3,14,15,2,9,13,15,6,11,6,14,1,6,14,0,8,14,3,4,5,3,12,10,12,5,5,15,0,13,13,12,10,2,7,2,15,11,8,1,10,5,7,10,11,2,3,9,12,0,12,6,2,13,13,11,9,6,11,3,3,10,15,15,11,9,4,12,9,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"3\", \"11\", \"9\", \"0\", \"3\"], \"clip_start\": 68.0, \"clip_end\": 74.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q7_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,3,12,14,10,15,1,4,12,4,8,11,12,11,12,0,6,5,10,8,7,8,13,10,12,14,14,12,14,2,3,0,9,3,4,15,1,10,2,8,5,7,1,11,2,9,4,14,0,2,7,0,11,4,1,0,5,12,3,2,0,5,11,2,1,7,13,0,3,11,9,0,3,15,3,6,8,5,9,0,6,10,1,13,15,5,4,11,5,11,13,7,11,1,4,5,1,11,10,0,14,12,13,11,11,0,8,8,5,1,3,4,13,11,13,12,4,12,12,15,13,9,13,14,14,5,1,5,0,8,11,13,13,7,10,0,11,1,15,9,2,12,3,8,15,7,11,10,1,2,8,3,1,14,11,0,8,3,2,12,0,15,11,0,10,1,2,9,0,2,11,3,11,11,8,4,9,13,8,10,15,0,3,11,15,1,10,4,11,3,1,2,2,15,13,5,9,8,9,11,6,9,6,10,14,6,14,4,6,6,4,2,3,6,8,1,15,11,10,2,15,8,8,15,9,11,11,0,2,8,7,11,11,12,0,3,10,3,4,15,3,15,14,9,0,11,8,1,2,11,10,10,4,7,9,1,7,3,0,2,0,11,13,13,5,13,11,13,11,2,12,6,14,7,9,8,7,5,12,0,10,4,15,14,2,13,14,15,1,4,14,13,8,5,7,2,14,1,3,11,9,14,6,6,0,10,4,6,3,13,0,11,2,1,10,4,12,12,9,14,3,5,3,2,13,15,11,1,8,10,1,0,1,11,15,13,2,12,7,14,3,14,12,12,11,4,6,0,5,4,8,10,10,13,3,6,0,1,2,5,4,6,4,14,6,1,0,2,3,14,4,4,5,7,7,15,4,4,4,10,12,13,11,5,12,14,9,10,2,4,1,15,12,14,14,14,13,9,14,1,0,1,3,9,5,8,5,14,7,11,7,14,3,13,10,2,0,6,11,9,7,14,5,10,7,7,1,13,14,15,10,13,12,2,3,11,8,4,1,14,5,6,3,14,15,2,9,13,15,6,11,6,14,1,6,14,0,8,14,3,4,5,3,12,10,12,5,5,15,0,13,13,12,10,2,7,2,15,11,8,1,10,5,7,10,11,2,3,9,12,0,12,6,2,13,13,11,9,6,11,3,3,10,15,15,11,9,4,12,9,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"1\", \"3\", \"11\", \"9\"], \"clip_start\": 297.0, \"clip_end\": 302.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,3,12,14,10,15,1,4,12,4,8,11,12,11,12,0,6,5,10,8,7,8,13,10,12,14,14,12,14,2,3,0,9,3,4,15,1,10,2,8,5,7,1,11,2,9,4,14,0,2,7,0,11,4,1,0,5,12,3,2,0,5,11,2,1,7,13,0,3,11,9,0,3,15,3,6,8,5,9,0,6,10,1,13,15,5,4,11,5,11,13,7,11,1,4,5,1,11,10,0,14,12,13,11,11,0,8,8,5,1,3,4,13,11,13,12,4,12,12,15,13,9,13,14,14,5,1,5,0,8,11,13,13,7,10,0,11,1,15,9,2,12,3,8,15,7,11,10,1,2,8,3,1,14,11,0,8,3,2,12,0,15,11,0,10,1,2,9,0,2,11,3,11,11,8,4,9,13,8,10,15,0,3,11,15,1,10,4,11,3,1,2,2,15,13,5,9,8,9,11,6,9,6,10,14,6,14,4,6,6,4,2,3,6,8,1,15,11,10,2,15,8,8,15,9,11,11,0,2,8,7,11,11,12,0,3,10,3,4,15,3,15,14,9,0,11,8,1,2,11,10,10,4,7,9,1,7,3,0,2,0,11,13,13,5,13,11,13,11,2,12,6,14,7,9,8,7,5,12,0,10,4,15,14,2,13,14,15,1,4,14,13,8,5,7,2,14,1,3,11,9,14,6,6,0,10,4,6,3,13,0,11,2,1,10,4,12,12,9,14,3,5,3,2,13,15,11,1,8,10,1,0,1,11,15,13,2,12,7,14,3,14,12,12,11,4,6,0,5,4,8,10,10,13,3,6,0,1,2,5,4,6,4,14,6,1,0,2,3,14,4,4,5,7,7,15,4,4,4,10,12,13,11,5,12,14,9,10,2,4,1,15,12,14,14,14,13,9,14,1,0,1,3,9,5,8,5,14,7,11,7,14,3,13,10,2,0,6,11,9,7,14,5,10,7,7,1,13,14,15,10,13,12,2,3,11,8,4,1,14,5,6,3,14,15,2,9,13,15,6,11,6,14,1,6,14,0,8,14,3,4,5,3,12,10,12,5,5,15,0,13,13,12,10,2,7,2,15,11,8,1,10,5,7,10,11,2,3,9,12,0,12,6,2,13,13,11,9,6,11,3,3,10,15,15,11,9,4,12,9,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"1\", \"15\", \"12\"], \"clip_start\": 390.0, \"clip_end\": 394.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,3,12,14,10,15,1,4,12,4,8,11,12,11,12,0,6,5,10,8,7,8,13,10,12,14,14,12,14,2,3,0,9,3,4,15,1,10,2,8,5,7,1,11,2,9,4,14,0,2,7,0,11,4,1,0,5,12,3,2,0,5,11,2,1,7,13,0,3,11,9,0,3,15,3,6,8,5,9,0,6,10,1,13,15,5,4,11,5,11,13,7,11,1,4,5,1,11,10,0,14,12,13,11,11,0,8,8,5,1,3,4,13,11,13,12,4,12,12,15,13,9,13,14,14,5,1,5,0,8,11,13,13,7,10,0,11,1,15,9,2,12,3,8,15,7,11,10,1,2,8,3,1,14,11,0,8,3,2,12,0,15,11,0,10,1,2,9,0,2,11,3,11,11,8,4,9,13,8,10,15,0,3,11,15,1,10,4,11,3,1,2,2,15,13,5,9,8,9,11,6,9,6,10,14,6,14,4,6,6,4,2,3,6,8,1,15,11,10,2,15,8,8,15,9,11,11,0,2,8,7,11,11,12,0,3,10,3,4,15,3,15,14,9,0,11,8,1,2,11,10,10,4,7,9,1,7,3,0,2,0,11,13,13,5,13,11,13,11,2,12,6,14,7,9,8,7,5,12,0,10,4,15,14,2,13,14,15,1,4,14,13,8,5,7,2,14,1,3,11,9,14,6,6,0,10,4,6,3,13,0,11,2,1,10,4,12,12,9,14,3,5,3,2,13,15,11,1,8,10,1,0,1,11,15,13,2,12,7,14,3,14,12,12,11,4,6,0,5,4,8,10,10,13,3,6,0,1,2,5,4,6,4,14,6,1,0,2,3,14,4,4,5,7,7,15,4,4,4,10,12,13,11,5,12,14,9,10,2,4,1,15,12,14,14,14,13,9,14,1,0,1,3,9,5,8,5,14,7,11,7,14,3,13,10,2,0,6,11,9,7,14,5,10,7,7,1,13,14,15,10,13,12,2,3,11,8,4,1,14,5,6,3,14,15,2,9,13,15,6,11,6,14,1,6,14,0,8,14,3,4,5,3,12,10,12,5,5,15,0,13,13,12,10,2,7,2,15,11,8,1,10,5,7,10,11,2,3,9,12,0,12,6,2,13,13,11,9,6,11,3,3,10,15,15,11,9,4,12,9,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"8\", \"10\", \"10\"], \"clip_start\": 349.0, \"clip_end\": 354.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q10_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,3,12,14,10,15,1,4,12,4,8,11,12,11,12,0,6,5,10,8,7,8,13,10,12,14,14,12,14,2,3,0,9,3,4,15,1,10,2,8,5,7,1,11,2,9,4,14,0,2,7,0,11,4,1,0,5,12,3,2,0,5,11,2,1,7,13,0,3,11,9,0,3,15,3,6,8,5,9,0,6,10,1,13,15,5,4,11,5,11,13,7,11,1,4,5,1,11,10,0,14,12,13,11,11,0,8,8,5,1,3,4,13,11,13,12,4,12,12,15,13,9,13,14,14,5,1,5,0,8,11,13,13,7,10,0,11,1,15,9,2,12,3,8,15,7,11,10,1,2,8,3,1,14,11,0,8,3,2,12,0,15,11,0,10,1,2,9,0,2,11,3,11,11,8,4,9,13,8,10,15,0,3,11,15,1,10,4,11,3,1,2,2,15,13,5,9,8,9,11,6,9,6,10,14,6,14,4,6,6,4,2,3,6,8,1,15,11,10,2,15,8,8,15,9,11,11,0,2,8,7,11,11,12,0,3,10,3,4,15,3,15,14,9,0,11,8,1,2,11,10,10,4,7,9,1,7,3,0,2,0,11,13,13,5,13,11,13,11,2,12,6,14,7,9,8,7,5,12,0,10,4,15,14,2,13,14,15,1,4,14,13,8,5,7,2,14,1,3,11,9,14,6,6,0,10,4,6,3,13,0,11,2,1,10,4,12,12,9,14,3,5,3,2,13,15,11,1,8,10,1,0,1,11,15,13,2,12,7,14,3,14,12,12,11,4,6,0,5,4,8,10,10,13,3,6,0,1,2,5,4,6,4,14,6,1,0,2,3,14,4,4,5,7,7,15,4,4,4,10,12,13,11,5,12,14,9,10,2,4,1,15,12,14,14,14,13,9,14,1,0,1,3,9,5,8,5,14,7,11,7,14,3,13,10,2,0,6,11,9,7,14,5,10,7,7,1,13,14,15,10,13,12,2,3,11,8,4,1,14,5,6,3,14,15,2,9,13,15,6,11,6,14,1,6,14,0,8,14,3,4,5,3,12,10,12,5,5,15,0,13,13,12,10,2,7,2,15,11,8,1,10,5,7,10,11,2,3,9,12,0,12,6,2,13,13,11,9,6,11,3,3,10,15,15,11,9,4,12,9,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"3\", \"10\", \"15\", \"15\"], \"clip_start\": 500.0, \"clip_end\": 506.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,3,12,14,10,15,1,4,12,4,8,11,12,11,12,0,6,5,10,8,7,8,13,10,12,14,14,12,14,2,3,0,9,3,4,15,1,10,2,8,5,7,1,11,2,9,4,14,0,2,7,0,11,4,1,0,5,12,3,2,0,5,11,2,1,7,13,0,3,11,9,0,3,15,3,6,8,5,9,0,6,10,1,13,15,5,4,11,5,11,13,7,11,1,4,5,1,11,10,0,14,12,13,11,11,0,8,8,5,1,3,4,13,11,13,12,4,12,12,15,13,9,13,14,14,5,1,5,0,8,11,13,13,7,10,0,11,1,15,9,2,12,3,8,15,7,11,10,1,2,8,3,1,14,11,0,8,3,2,12,0,15,11,0,10,1,2,9,0,2,11,3,11,11,8,4,9,13,8,10,15,0,3,11,15,1,10,4,11,3,1,2,2,15,13,5,9,8,9,11,6,9,6,10,14,6,14,4,6,6,4,2,3,6,8,1,15,11,10,2,15,8,8,15,9,11,11,0,2,8,7,11,11,12,0,3,10,3,4,15,3,15,14,9,0,11,8,1,2,11,10,10,4,7,9,1,7,3,0,2,0,11,13,13,5,13,11,13,11,2,12,6,14,7,9,8,7,5,12,0,10,4,15,14,2,13,14,15,1,4,14,13,8,5,7,2,14,1,3,11,9,14,6,6,0,10,4,6,3,13,0,11,2,1,10,4,12,12,9,14,3,5,3,2,13,15,11,1,8,10,1,0,1,11,15,13,2,12,7,14,3,14,12,12,11,4,6,0,5,4,8,10,10,13,3,6,0,1,2,5,4,6,4,14,6,1,0,2,3,14,4,4,5,7,7,15,4,4,4,10,12,13,11,5,12,14,9,10,2,4,1,15,12,14,14,14,13,9,14,1,0,1,3,9,5,8,5,14,7,11,7,14,3,13,10,2,0,6,11,9,7,14,5,10,7,7,1,13,14,15,10,13,12,2,3,11,8,4,1,14,5,6,3,14,15,2,9,13,15,6,11,6,14,1,6,14,0,8,14,3,4,5,3,12,10,12,5,5,15,0,13,13,12,10,2,7,2,15,11,8,1,10,5,7,10,11,2,3,9,12,0,12,6,2,13,13,11,9,6,11,3,3,10,15,15,11,9,4,12,9,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"9\", \"0\", \"6\", \"10\", \"1\"], \"clip_start\": 78.0, \"clip_end\": 84.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q12_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,3,12,14,10,15,1,4,12,4,8,11,12,11,12,0,6,5,10,8,7,8,13,10,12,14,14,12,14,2,3,0,9,3,4,15,1,10,2,8,5,7,1,11,2,9,4,14,0,2,7,0,11,4,1,0,5,12,3,2,0,5,11,2,1,7,13,0,3,11,9,0,3,15,3,6,8,5,9,0,6,10,1,13,15,5,4,11,5,11,13,7,11,1,4,5,1,11,10,0,14,12,13,11,11,0,8,8,5,1,3,4,13,11,13,12,4,12,12,15,13,9,13,14,14,5,1,5,0,8,11,13,13,7,10,0,11,1,15,9,2,12,3,8,15,7,11,10,1,2,8,3,1,14,11,0,8,3,2,12,0,15,11,0,10,1,2,9,0,2,11,3,11,11,8,4,9,13,8,10,15,0,3,11,15,1,10,4,11,3,1,2,2,15,13,5,9,8,9,11,6,9,6,10,14,6,14,4,6,6,4,2,3,6,8,1,15,11,10,2,15,8,8,15,9,11,11,0,2,8,7,11,11,12,0,3,10,3,4,15,3,15,14,9,0,11,8,1,2,11,10,10,4,7,9,1,7,3,0,2,0,11,13,13,5,13,11,13,11,2,12,6,14,7,9,8,7,5,12,0,10,4,15,14,2,13,14,15,1,4,14,13,8,5,7,2,14,1,3,11,9,14,6,6,0,10,4,6,3,13,0,11,2,1,10,4,12,12,9,14,3,5,3,2,13,15,11,1,8,10,1,0,1,11,15,13,2,12,7,14,3,14,12,12,11,4,6,0,5,4,8,10,10,13,3,6,0,1,2,5,4,6,4,14,6,1,0,2,3,14,4,4,5,7,7,15,4,4,4,10,12,13,11,5,12,14,9,10,2,4,1,15,12,14,14,14,13,9,14,1,0,1,3,9,5,8,5,14,7,11,7,14,3,13,10,2,0,6,11,9,7,14,5,10,7,7,1,13,14,15,10,13,12,2,3,11,8,4,1,14,5,6,3,14,15,2,9,13,15,6,11,6,14,1,6,14,0,8,14,3,4,5,3,12,10,12,5,5,15,0,13,13,12,10,2,7,2,15,11,8,1,10,5,7,10,11,2,3,9,12,0,12,6,2,13,13,11,9,6,11,3,3,10,15,15,11,9,4,12,9,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"1\", \"0\", \"1\"], \"clip_start\": 398.0, \"clip_end\": 403.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,3,12,14,10,15,1,4,12,4,8,11,12,11,12,0,6,5,10,8,7,8,13,10,12,14,14,12,14,2,3,0,9,3,4,15,1,10,2,8,5,7,1,11,2,9,4,14,0,2,7,0,11,4,1,0,5,12,3,2,0,5,11,2,1,7,13,0,3,11,9,0,3,15,3,6,8,5,9,0,6,10,1,13,15,5,4,11,5,11,13,7,11,1,4,5,1,11,10,0,14,12,13,11,11,0,8,8,5,1,3,4,13,11,13,12,4,12,12,15,13,9,13,14,14,5,1,5,0,8,11,13,13,7,10,0,11,1,15,9,2,12,3,8,15,7,11,10,1,2,8,3,1,14,11,0,8,3,2,12,0,15,11,0,10,1,2,9,0,2,11,3,11,11,8,4,9,13,8,10,15,0,3,11,15,1,10,4,11,3,1,2,2,15,13,5,9,8,9,11,6,9,6,10,14,6,14,4,6,6,4,2,3,6,8,1,15,11,10,2,15,8,8,15,9,11,11,0,2,8,7,11,11,12,0,3,10,3,4,15,3,15,14,9,0,11,8,1,2,11,10,10,4,7,9,1,7,3,0,2,0,11,13,13,5,13,11,13,11,2,12,6,14,7,9,8,7,5,12,0,10,4,15,14,2,13,14,15,1,4,14,13,8,5,7,2,14,1,3,11,9,14,6,6,0,10,4,6,3,13,0,11,2,1,10,4,12,12,9,14,3,5,3,2,13,15,11,1,8,10,1,0,1,11,15,13,2,12,7,14,3,14,12,12,11,4,6,0,5,4,8,10,10,13,3,6,0,1,2,5,4,6,4,14,6,1,0,2,3,14,4,4,5,7,7,15,4,4,4,10,12,13,11,5,12,14,9,10,2,4,1,15,12,14,14,14,13,9,14,1,0,1,3,9,5,8,5,14,7,11,7,14,3,13,10,2,0,6,11,9,7,14,5,10,7,7,1,13,14,15,10,13,12,2,3,11,8,4,1,14,5,6,3,14,15,2,9,13,15,6,11,6,14,1,6,14,0,8,14,3,4,5,3,12,10,12,5,5,15,0,13,13,12,10,2,7,2,15,11,8,1,10,5,7,10,11,2,3,9,12,0,12,6,2,13,13,11,9,6,11,3,3,10,15,15,11,9,4,12,9,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 6, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\", \"2\", \"15\", \"0\"], \"clip_start\": 455.0, \"clip_end\": 461.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q14_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,3,12,14,10,15,1,4,12,4,8,11,12,11,12,0,6,5,10,8,7,8,13,10,12,14,14,12,14,2,3,0,9,3,4,15,1,10,2,8,5,7,1,11,2,9,4,14,0,2,7,0,11,4,1,0,5,12,3,2,0,5,11,2,1,7,13,0,3,11,9,0,3,15,3,6,8,5,9,0,6,10,1,13,15,5,4,11,5,11,13,7,11,1,4,5,1,11,10,0,14,12,13,11,11,0,8,8,5,1,3,4,13,11,13,12,4,12,12,15,13,9,13,14,14,5,1,5,0,8,11,13,13,7,10,0,11,1,15,9,2,12,3,8,15,7,11,10,1,2,8,3,1,14,11,0,8,3,2,12,0,15,11,0,10,1,2,9,0,2,11,3,11,11,8,4,9,13,8,10,15,0,3,11,15,1,10,4,11,3,1,2,2,15,13,5,9,8,9,11,6,9,6,10,14,6,14,4,6,6,4,2,3,6,8,1,15,11,10,2,15,8,8,15,9,11,11,0,2,8,7,11,11,12,0,3,10,3,4,15,3,15,14,9,0,11,8,1,2,11,10,10,4,7,9,1,7,3,0,2,0,11,13,13,5,13,11,13,11,2,12,6,14,7,9,8,7,5,12,0,10,4,15,14,2,13,14,15,1,4,14,13,8,5,7,2,14,1,3,11,9,14,6,6,0,10,4,6,3,13,0,11,2,1,10,4,12,12,9,14,3,5,3,2,13,15,11,1,8,10,1,0,1,11,15,13,2,12,7,14,3,14,12,12,11,4,6,0,5,4,8,10,10,13,3,6,0,1,2,5,4,6,4,14,6,1,0,2,3,14,4,4,5,7,7,15,4,4,4,10,12,13,11,5,12,14,9,10,2,4,1,15,12,14,14,14,13,9,14,1,0,1,3,9,5,8,5,14,7,11,7,14,3,13,10,2,0,6,11,9,7,14,5,10,7,7,1,13,14,15,10,13,12,2,3,11,8,4,1,14,5,6,3,14,15,2,9,13,15,6,11,6,14,1,6,14,0,8,14,3,4,5,3,12,10,12,5,5,15,0,13,13,12,10,2,7,2,15,11,8,1,10,5,7,10,11,2,3,9,12,0,12,6,2,13,13,11,9,6,11,3,3,10,15,15,11,9,4,12,9,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 6, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"0\", \"2\", \"7\"], \"clip_start\": 48.0, \"clip_end\": 52.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q15_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,10,3,12,14,10,15,1,4,12,4,8,11,12,11,12,0,6,5,10,8,7,8,13,10,12,14,14,12,14,2,3,0,9,3,4,15,1,10,2,8,5,7,1,11,2,9,4,14,0,2,7,0,11,4,1,0,5,12,3,2,0,5,11,2,1,7,13,0,3,11,9,0,3,15,3,6,8,5,9,0,6,10,1,13,15,5,4,11,5,11,13,7,11,1,4,5,1,11,10,0,14,12,13,11,11,0,8,8,5,1,3,4,13,11,13,12,4,12,12,15,13,9,13,14,14,5,1,5,0,8,11,13,13,7,10,0,11,1,15,9,2,12,3,8,15,7,11,10,1,2,8,3,1,14,11,0,8,3,2,12,0,15,11,0,10,1,2,9,0,2,11,3,11,11,8,4,9,13,8,10,15,0,3,11,15,1,10,4,11,3,1,2,2,15,13,5,9,8,9,11,6,9,6,10,14,6,14,4,6,6,4,2,3,6,8,1,15,11,10,2,15,8,8,15,9,11,11,0,2,8,7,11,11,12,0,3,10,3,4,15,3,15,14,9,0,11,8,1,2,11,10,10,4,7,9,1,7,3,0,2,0,11,13,13,5,13,11,13,11,2,12,6,14,7,9,8,7,5,12,0,10,4,15,14,2,13,14,15,1,4,14,13,8,5,7,2,14,1,3,11,9,14,6,6,0,10,4,6,3,13,0,11,2,1,10,4,12,12,9,14,3,5,3,2,13,15,11,1,8,10,1,0,1,11,15,13,2,12,7,14,3,14,12,12,11,4,6,0,5,4,8,10,10,13,3,6,0,1,2,5,4,6,4,14,6,1,0,2,3,14,4,4,5,7,7,15,4,4,4,10,12,13,11,5,12,14,9,10,2,4,1,15,12,14,14,14,13,9,14,1,0,1,3,9,5,8,5,14,7,11,7,14,3,13,10,2,0,6,11,9,7,14,5,10,7,7,1,13,14,15,10,13,12,2,3,11,8,4,1,14,5,6,3,14,15,2,9,13,15,6,11,6,14,1,6,14,0,8,14,3,4,5,3,12,10,12,5,5,15,0,13,13,12,10,2,7,2,15,11,8,1,10,5,7,10,11,2,3,9,12,0,12,6,2,13,13,11,9,6,11,3,3,10,15,15,11,9,4,12,9,1", "source_class": null, "source_dataset": null, "video_id": "video_6_v0", "question_id": "video_6_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"3\", \"1\", \"9\", \"1\"], \"clip_start\": 371.0, \"clip_end\": 376.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,12,13,7,3,6,2,10,13,14,2,2,14,13,7,15,3,6,6,3,4,10,4,2,10,13,3,11,9,12,8,11,5,2,7,1,10,11,7,5,1,7,15,11,11,3,12,5,14,11,12,12,1,8,9,7,7,8,5,11,0,12,6,15,3,8,12,0,15,14,6,8,2,15,6,10,3,12,11,8,6,15,14,6,5,14,6,14,5,8,12,0,6,7,13,2,15,0,0,14,1,13,10,13,4,3,3,4,11,14,3,1,15,8,8,12,1,10,1,7,14,13,3,13,5,14,4,15,13,2,6,11,14,9,13,4,14,3,10,0,6,8,7,2,3,10,7,5,13,3,1,11,14,11,5,9,5,2,2,0,0,14,15,11,12,13,13,1,2,12,15,2,12,11,2,11,10,14,11,7,6,11,4,1,12,13,1,12,3,14,12,9,4,10,13,5,4,3,14,10,7,9,5,10,7,7,13,3,13,0,0,12,14,2,0,8,9,7,0,9,12,1,6,1,12,8,5,3,12,11,13,0,9,7,7,15,0,6,13,5,15,7,15,13,6,11,13,2,6,6,13,5,7,9,0,11,5,9,15,9,10,5,8,9,8,4,3,12,7,11,0,9,7,15,7,0,13,7,3,11,10,13,7,12,8,15,9,15,6,13,1,9,8,8,5,5,13,13,13,10,5,9,9,6,12,10,8,0,5,10,8,13,11,12,10,15,12,13,10,9,5,11,12,14,6,14,8,5,9,10,8,5,13,5,8,15,7,0,6,2,3,1,2,5,9,7,4,8,10,10,12,10,13,15,4,8,5,12,5,14,10,6,12,4,6,11,13,2,1,6,13,10,3,1,9,1,2,15,8,4,10,6,2,9,8,13,9,1,9,10,5,15,0,12,2,15,3,4,6,0,3,14,15,15,5,1,3,9,11,9,12,4,13,4,7,3,15,12,14,15,9,10,10,15,1,4,8,8,11,7,11,14,14,13,6,13,7,11,0,13,5,0,7,12,8,8,2,4,9,13,5,0,2,14,12,12,6,6,3,4,15,1,10,7,12,5,14,4,7,15,10,4,11,9,13,9,5,8,5,7,9,6,12,5,9,3,5,8,7,6,9,15,8,14,2,4,9,12,14,14,0,6,15,5,4,7,1,7,11,8,0,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"3\", \"9\"], \"clip_start\": 404.0, \"clip_end\": 408.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,12,13,7,3,6,2,10,13,14,2,2,14,13,7,15,3,6,6,3,4,10,4,2,10,13,3,11,9,12,8,11,5,2,7,1,10,11,7,5,1,7,15,11,11,3,12,5,14,11,12,12,1,8,9,7,7,8,5,11,0,12,6,15,3,8,12,0,15,14,6,8,2,15,6,10,3,12,11,8,6,15,14,6,5,14,6,14,5,8,12,0,6,7,13,2,15,0,0,14,1,13,10,13,4,3,3,4,11,14,3,1,15,8,8,12,1,10,1,7,14,13,3,13,5,14,4,15,13,2,6,11,14,9,13,4,14,3,10,0,6,8,7,2,3,10,7,5,13,3,1,11,14,11,5,9,5,2,2,0,0,14,15,11,12,13,13,1,2,12,15,2,12,11,2,11,10,14,11,7,6,11,4,1,12,13,1,12,3,14,12,9,4,10,13,5,4,3,14,10,7,9,5,10,7,7,13,3,13,0,0,12,14,2,0,8,9,7,0,9,12,1,6,1,12,8,5,3,12,11,13,0,9,7,7,15,0,6,13,5,15,7,15,13,6,11,13,2,6,6,13,5,7,9,0,11,5,9,15,9,10,5,8,9,8,4,3,12,7,11,0,9,7,15,7,0,13,7,3,11,10,13,7,12,8,15,9,15,6,13,1,9,8,8,5,5,13,13,13,10,5,9,9,6,12,10,8,0,5,10,8,13,11,12,10,15,12,13,10,9,5,11,12,14,6,14,8,5,9,10,8,5,13,5,8,15,7,0,6,2,3,1,2,5,9,7,4,8,10,10,12,10,13,15,4,8,5,12,5,14,10,6,12,4,6,11,13,2,1,6,13,10,3,1,9,1,2,15,8,4,10,6,2,9,8,13,9,1,9,10,5,15,0,12,2,15,3,4,6,0,3,14,15,15,5,1,3,9,11,9,12,4,13,4,7,3,15,12,14,15,9,10,10,15,1,4,8,8,11,7,11,14,14,13,6,13,7,11,0,13,5,0,7,12,8,8,2,4,9,13,5,0,2,14,12,12,6,6,3,4,15,1,10,7,12,5,14,4,7,15,10,4,11,9,13,9,5,8,5,7,9,6,12,5,9,3,5,8,7,6,9,15,8,14,2,4,9,12,14,14,0,6,15,5,4,7,1,7,11,8,0,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"14\", \"4\", \"7\"], \"clip_start\": 465.0, \"clip_end\": 469.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q2_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,12,13,7,3,6,2,10,13,14,2,2,14,13,7,15,3,6,6,3,4,10,4,2,10,13,3,11,9,12,8,11,5,2,7,1,10,11,7,5,1,7,15,11,11,3,12,5,14,11,12,12,1,8,9,7,7,8,5,11,0,12,6,15,3,8,12,0,15,14,6,8,2,15,6,10,3,12,11,8,6,15,14,6,5,14,6,14,5,8,12,0,6,7,13,2,15,0,0,14,1,13,10,13,4,3,3,4,11,14,3,1,15,8,8,12,1,10,1,7,14,13,3,13,5,14,4,15,13,2,6,11,14,9,13,4,14,3,10,0,6,8,7,2,3,10,7,5,13,3,1,11,14,11,5,9,5,2,2,0,0,14,15,11,12,13,13,1,2,12,15,2,12,11,2,11,10,14,11,7,6,11,4,1,12,13,1,12,3,14,12,9,4,10,13,5,4,3,14,10,7,9,5,10,7,7,13,3,13,0,0,12,14,2,0,8,9,7,0,9,12,1,6,1,12,8,5,3,12,11,13,0,9,7,7,15,0,6,13,5,15,7,15,13,6,11,13,2,6,6,13,5,7,9,0,11,5,9,15,9,10,5,8,9,8,4,3,12,7,11,0,9,7,15,7,0,13,7,3,11,10,13,7,12,8,15,9,15,6,13,1,9,8,8,5,5,13,13,13,10,5,9,9,6,12,10,8,0,5,10,8,13,11,12,10,15,12,13,10,9,5,11,12,14,6,14,8,5,9,10,8,5,13,5,8,15,7,0,6,2,3,1,2,5,9,7,4,8,10,10,12,10,13,15,4,8,5,12,5,14,10,6,12,4,6,11,13,2,1,6,13,10,3,1,9,1,2,15,8,4,10,6,2,9,8,13,9,1,9,10,5,15,0,12,2,15,3,4,6,0,3,14,15,15,5,1,3,9,11,9,12,4,13,4,7,3,15,12,14,15,9,10,10,15,1,4,8,8,11,7,11,14,14,13,6,13,7,11,0,13,5,0,7,12,8,8,2,4,9,13,5,0,2,14,12,12,6,6,3,4,15,1,10,7,12,5,14,4,7,15,10,4,11,9,13,9,5,8,5,7,9,6,12,5,9,3,5,8,7,6,9,15,8,14,2,4,9,12,14,14,0,6,15,5,4,7,1,7,11,8,0,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"3\", \"13\", \"5\"], \"clip_start\": 120.0, \"clip_end\": 125.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q3_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,12,13,7,3,6,2,10,13,14,2,2,14,13,7,15,3,6,6,3,4,10,4,2,10,13,3,11,9,12,8,11,5,2,7,1,10,11,7,5,1,7,15,11,11,3,12,5,14,11,12,12,1,8,9,7,7,8,5,11,0,12,6,15,3,8,12,0,15,14,6,8,2,15,6,10,3,12,11,8,6,15,14,6,5,14,6,14,5,8,12,0,6,7,13,2,15,0,0,14,1,13,10,13,4,3,3,4,11,14,3,1,15,8,8,12,1,10,1,7,14,13,3,13,5,14,4,15,13,2,6,11,14,9,13,4,14,3,10,0,6,8,7,2,3,10,7,5,13,3,1,11,14,11,5,9,5,2,2,0,0,14,15,11,12,13,13,1,2,12,15,2,12,11,2,11,10,14,11,7,6,11,4,1,12,13,1,12,3,14,12,9,4,10,13,5,4,3,14,10,7,9,5,10,7,7,13,3,13,0,0,12,14,2,0,8,9,7,0,9,12,1,6,1,12,8,5,3,12,11,13,0,9,7,7,15,0,6,13,5,15,7,15,13,6,11,13,2,6,6,13,5,7,9,0,11,5,9,15,9,10,5,8,9,8,4,3,12,7,11,0,9,7,15,7,0,13,7,3,11,10,13,7,12,8,15,9,15,6,13,1,9,8,8,5,5,13,13,13,10,5,9,9,6,12,10,8,0,5,10,8,13,11,12,10,15,12,13,10,9,5,11,12,14,6,14,8,5,9,10,8,5,13,5,8,15,7,0,6,2,3,1,2,5,9,7,4,8,10,10,12,10,13,15,4,8,5,12,5,14,10,6,12,4,6,11,13,2,1,6,13,10,3,1,9,1,2,15,8,4,10,6,2,9,8,13,9,1,9,10,5,15,0,12,2,15,3,4,6,0,3,14,15,15,5,1,3,9,11,9,12,4,13,4,7,3,15,12,14,15,9,10,10,15,1,4,8,8,11,7,11,14,14,13,6,13,7,11,0,13,5,0,7,12,8,8,2,4,9,13,5,0,2,14,12,12,6,6,3,4,15,1,10,7,12,5,14,4,7,15,10,4,11,9,13,9,5,8,5,7,9,6,12,5,9,3,5,8,7,6,9,15,8,14,2,4,9,12,14,14,0,6,15,5,4,7,1,7,11,8,0,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"0\", \"10\"], \"clip_start\": 266.0, \"clip_end\": 270.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q4_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,12,13,7,3,6,2,10,13,14,2,2,14,13,7,15,3,6,6,3,4,10,4,2,10,13,3,11,9,12,8,11,5,2,7,1,10,11,7,5,1,7,15,11,11,3,12,5,14,11,12,12,1,8,9,7,7,8,5,11,0,12,6,15,3,8,12,0,15,14,6,8,2,15,6,10,3,12,11,8,6,15,14,6,5,14,6,14,5,8,12,0,6,7,13,2,15,0,0,14,1,13,10,13,4,3,3,4,11,14,3,1,15,8,8,12,1,10,1,7,14,13,3,13,5,14,4,15,13,2,6,11,14,9,13,4,14,3,10,0,6,8,7,2,3,10,7,5,13,3,1,11,14,11,5,9,5,2,2,0,0,14,15,11,12,13,13,1,2,12,15,2,12,11,2,11,10,14,11,7,6,11,4,1,12,13,1,12,3,14,12,9,4,10,13,5,4,3,14,10,7,9,5,10,7,7,13,3,13,0,0,12,14,2,0,8,9,7,0,9,12,1,6,1,12,8,5,3,12,11,13,0,9,7,7,15,0,6,13,5,15,7,15,13,6,11,13,2,6,6,13,5,7,9,0,11,5,9,15,9,10,5,8,9,8,4,3,12,7,11,0,9,7,15,7,0,13,7,3,11,10,13,7,12,8,15,9,15,6,13,1,9,8,8,5,5,13,13,13,10,5,9,9,6,12,10,8,0,5,10,8,13,11,12,10,15,12,13,10,9,5,11,12,14,6,14,8,5,9,10,8,5,13,5,8,15,7,0,6,2,3,1,2,5,9,7,4,8,10,10,12,10,13,15,4,8,5,12,5,14,10,6,12,4,6,11,13,2,1,6,13,10,3,1,9,1,2,15,8,4,10,6,2,9,8,13,9,1,9,10,5,15,0,12,2,15,3,4,6,0,3,14,15,15,5,1,3,9,11,9,12,4,13,4,7,3,15,12,14,15,9,10,10,15,1,4,8,8,11,7,11,14,14,13,6,13,7,11,0,13,5,0,7,12,8,8,2,4,9,13,5,0,2,14,12,12,6,6,3,4,15,1,10,7,12,5,14,4,7,15,10,4,11,9,13,9,5,8,5,7,9,6,12,5,9,3,5,8,7,6,9,15,8,14,2,4,9,12,14,14,0,6,15,5,4,7,1,7,11,8,0,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"7\", \"15\"], \"clip_start\": 239.0, \"clip_end\": 243.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q5_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,12,13,7,3,6,2,10,13,14,2,2,14,13,7,15,3,6,6,3,4,10,4,2,10,13,3,11,9,12,8,11,5,2,7,1,10,11,7,5,1,7,15,11,11,3,12,5,14,11,12,12,1,8,9,7,7,8,5,11,0,12,6,15,3,8,12,0,15,14,6,8,2,15,6,10,3,12,11,8,6,15,14,6,5,14,6,14,5,8,12,0,6,7,13,2,15,0,0,14,1,13,10,13,4,3,3,4,11,14,3,1,15,8,8,12,1,10,1,7,14,13,3,13,5,14,4,15,13,2,6,11,14,9,13,4,14,3,10,0,6,8,7,2,3,10,7,5,13,3,1,11,14,11,5,9,5,2,2,0,0,14,15,11,12,13,13,1,2,12,15,2,12,11,2,11,10,14,11,7,6,11,4,1,12,13,1,12,3,14,12,9,4,10,13,5,4,3,14,10,7,9,5,10,7,7,13,3,13,0,0,12,14,2,0,8,9,7,0,9,12,1,6,1,12,8,5,3,12,11,13,0,9,7,7,15,0,6,13,5,15,7,15,13,6,11,13,2,6,6,13,5,7,9,0,11,5,9,15,9,10,5,8,9,8,4,3,12,7,11,0,9,7,15,7,0,13,7,3,11,10,13,7,12,8,15,9,15,6,13,1,9,8,8,5,5,13,13,13,10,5,9,9,6,12,10,8,0,5,10,8,13,11,12,10,15,12,13,10,9,5,11,12,14,6,14,8,5,9,10,8,5,13,5,8,15,7,0,6,2,3,1,2,5,9,7,4,8,10,10,12,10,13,15,4,8,5,12,5,14,10,6,12,4,6,11,13,2,1,6,13,10,3,1,9,1,2,15,8,4,10,6,2,9,8,13,9,1,9,10,5,15,0,12,2,15,3,4,6,0,3,14,15,15,5,1,3,9,11,9,12,4,13,4,7,3,15,12,14,15,9,10,10,15,1,4,8,8,11,7,11,14,14,13,6,13,7,11,0,13,5,0,7,12,8,8,2,4,9,13,5,0,2,14,12,12,6,6,3,4,15,1,10,7,12,5,14,4,7,15,10,4,11,9,13,9,5,8,5,7,9,6,12,5,9,3,5,8,7,6,9,15,8,14,2,4,9,12,14,14,0,6,15,5,4,7,1,7,11,8,0,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"7\", \"11\", \"0\"], \"clip_start\": 435.0, \"clip_end\": 439.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q6_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,12,13,7,3,6,2,10,13,14,2,2,14,13,7,15,3,6,6,3,4,10,4,2,10,13,3,11,9,12,8,11,5,2,7,1,10,11,7,5,1,7,15,11,11,3,12,5,14,11,12,12,1,8,9,7,7,8,5,11,0,12,6,15,3,8,12,0,15,14,6,8,2,15,6,10,3,12,11,8,6,15,14,6,5,14,6,14,5,8,12,0,6,7,13,2,15,0,0,14,1,13,10,13,4,3,3,4,11,14,3,1,15,8,8,12,1,10,1,7,14,13,3,13,5,14,4,15,13,2,6,11,14,9,13,4,14,3,10,0,6,8,7,2,3,10,7,5,13,3,1,11,14,11,5,9,5,2,2,0,0,14,15,11,12,13,13,1,2,12,15,2,12,11,2,11,10,14,11,7,6,11,4,1,12,13,1,12,3,14,12,9,4,10,13,5,4,3,14,10,7,9,5,10,7,7,13,3,13,0,0,12,14,2,0,8,9,7,0,9,12,1,6,1,12,8,5,3,12,11,13,0,9,7,7,15,0,6,13,5,15,7,15,13,6,11,13,2,6,6,13,5,7,9,0,11,5,9,15,9,10,5,8,9,8,4,3,12,7,11,0,9,7,15,7,0,13,7,3,11,10,13,7,12,8,15,9,15,6,13,1,9,8,8,5,5,13,13,13,10,5,9,9,6,12,10,8,0,5,10,8,13,11,12,10,15,12,13,10,9,5,11,12,14,6,14,8,5,9,10,8,5,13,5,8,15,7,0,6,2,3,1,2,5,9,7,4,8,10,10,12,10,13,15,4,8,5,12,5,14,10,6,12,4,6,11,13,2,1,6,13,10,3,1,9,1,2,15,8,4,10,6,2,9,8,13,9,1,9,10,5,15,0,12,2,15,3,4,6,0,3,14,15,15,5,1,3,9,11,9,12,4,13,4,7,3,15,12,14,15,9,10,10,15,1,4,8,8,11,7,11,14,14,13,6,13,7,11,0,13,5,0,7,12,8,8,2,4,9,13,5,0,2,14,12,12,6,6,3,4,15,1,10,7,12,5,14,4,7,15,10,4,11,9,13,9,5,8,5,7,9,6,12,5,9,3,5,8,7,6,9,15,8,14,2,4,9,12,14,14,0,6,15,5,4,7,1,7,11,8,0,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"5\", \"11\", \"4\"], \"clip_start\": 460.0, \"clip_end\": 465.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,12,13,7,3,6,2,10,13,14,2,2,14,13,7,15,3,6,6,3,4,10,4,2,10,13,3,11,9,12,8,11,5,2,7,1,10,11,7,5,1,7,15,11,11,3,12,5,14,11,12,12,1,8,9,7,7,8,5,11,0,12,6,15,3,8,12,0,15,14,6,8,2,15,6,10,3,12,11,8,6,15,14,6,5,14,6,14,5,8,12,0,6,7,13,2,15,0,0,14,1,13,10,13,4,3,3,4,11,14,3,1,15,8,8,12,1,10,1,7,14,13,3,13,5,14,4,15,13,2,6,11,14,9,13,4,14,3,10,0,6,8,7,2,3,10,7,5,13,3,1,11,14,11,5,9,5,2,2,0,0,14,15,11,12,13,13,1,2,12,15,2,12,11,2,11,10,14,11,7,6,11,4,1,12,13,1,12,3,14,12,9,4,10,13,5,4,3,14,10,7,9,5,10,7,7,13,3,13,0,0,12,14,2,0,8,9,7,0,9,12,1,6,1,12,8,5,3,12,11,13,0,9,7,7,15,0,6,13,5,15,7,15,13,6,11,13,2,6,6,13,5,7,9,0,11,5,9,15,9,10,5,8,9,8,4,3,12,7,11,0,9,7,15,7,0,13,7,3,11,10,13,7,12,8,15,9,15,6,13,1,9,8,8,5,5,13,13,13,10,5,9,9,6,12,10,8,0,5,10,8,13,11,12,10,15,12,13,10,9,5,11,12,14,6,14,8,5,9,10,8,5,13,5,8,15,7,0,6,2,3,1,2,5,9,7,4,8,10,10,12,10,13,15,4,8,5,12,5,14,10,6,12,4,6,11,13,2,1,6,13,10,3,1,9,1,2,15,8,4,10,6,2,9,8,13,9,1,9,10,5,15,0,12,2,15,3,4,6,0,3,14,15,15,5,1,3,9,11,9,12,4,13,4,7,3,15,12,14,15,9,10,10,15,1,4,8,8,11,7,11,14,14,13,6,13,7,11,0,13,5,0,7,12,8,8,2,4,9,13,5,0,2,14,12,12,6,6,3,4,15,1,10,7,12,5,14,4,7,15,10,4,11,9,13,9,5,8,5,7,9,6,12,5,9,3,5,8,7,6,9,15,8,14,2,4,9,12,14,14,0,6,15,5,4,7,1,7,11,8,0,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"10\", \"7\"], \"clip_start\": 143.0, \"clip_end\": 147.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q8_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,12,13,7,3,6,2,10,13,14,2,2,14,13,7,15,3,6,6,3,4,10,4,2,10,13,3,11,9,12,8,11,5,2,7,1,10,11,7,5,1,7,15,11,11,3,12,5,14,11,12,12,1,8,9,7,7,8,5,11,0,12,6,15,3,8,12,0,15,14,6,8,2,15,6,10,3,12,11,8,6,15,14,6,5,14,6,14,5,8,12,0,6,7,13,2,15,0,0,14,1,13,10,13,4,3,3,4,11,14,3,1,15,8,8,12,1,10,1,7,14,13,3,13,5,14,4,15,13,2,6,11,14,9,13,4,14,3,10,0,6,8,7,2,3,10,7,5,13,3,1,11,14,11,5,9,5,2,2,0,0,14,15,11,12,13,13,1,2,12,15,2,12,11,2,11,10,14,11,7,6,11,4,1,12,13,1,12,3,14,12,9,4,10,13,5,4,3,14,10,7,9,5,10,7,7,13,3,13,0,0,12,14,2,0,8,9,7,0,9,12,1,6,1,12,8,5,3,12,11,13,0,9,7,7,15,0,6,13,5,15,7,15,13,6,11,13,2,6,6,13,5,7,9,0,11,5,9,15,9,10,5,8,9,8,4,3,12,7,11,0,9,7,15,7,0,13,7,3,11,10,13,7,12,8,15,9,15,6,13,1,9,8,8,5,5,13,13,13,10,5,9,9,6,12,10,8,0,5,10,8,13,11,12,10,15,12,13,10,9,5,11,12,14,6,14,8,5,9,10,8,5,13,5,8,15,7,0,6,2,3,1,2,5,9,7,4,8,10,10,12,10,13,15,4,8,5,12,5,14,10,6,12,4,6,11,13,2,1,6,13,10,3,1,9,1,2,15,8,4,10,6,2,9,8,13,9,1,9,10,5,15,0,12,2,15,3,4,6,0,3,14,15,15,5,1,3,9,11,9,12,4,13,4,7,3,15,12,14,15,9,10,10,15,1,4,8,8,11,7,11,14,14,13,6,13,7,11,0,13,5,0,7,12,8,8,2,4,9,13,5,0,2,14,12,12,6,6,3,4,15,1,10,7,12,5,14,4,7,15,10,4,11,9,13,9,5,8,5,7,9,6,12,5,9,3,5,8,7,6,9,15,8,14,2,4,9,12,14,14,0,6,15,5,4,7,1,7,11,8,0,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"14\", \"8\"], \"clip_start\": 442.0, \"clip_end\": 445.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,12,13,7,3,6,2,10,13,14,2,2,14,13,7,15,3,6,6,3,4,10,4,2,10,13,3,11,9,12,8,11,5,2,7,1,10,11,7,5,1,7,15,11,11,3,12,5,14,11,12,12,1,8,9,7,7,8,5,11,0,12,6,15,3,8,12,0,15,14,6,8,2,15,6,10,3,12,11,8,6,15,14,6,5,14,6,14,5,8,12,0,6,7,13,2,15,0,0,14,1,13,10,13,4,3,3,4,11,14,3,1,15,8,8,12,1,10,1,7,14,13,3,13,5,14,4,15,13,2,6,11,14,9,13,4,14,3,10,0,6,8,7,2,3,10,7,5,13,3,1,11,14,11,5,9,5,2,2,0,0,14,15,11,12,13,13,1,2,12,15,2,12,11,2,11,10,14,11,7,6,11,4,1,12,13,1,12,3,14,12,9,4,10,13,5,4,3,14,10,7,9,5,10,7,7,13,3,13,0,0,12,14,2,0,8,9,7,0,9,12,1,6,1,12,8,5,3,12,11,13,0,9,7,7,15,0,6,13,5,15,7,15,13,6,11,13,2,6,6,13,5,7,9,0,11,5,9,15,9,10,5,8,9,8,4,3,12,7,11,0,9,7,15,7,0,13,7,3,11,10,13,7,12,8,15,9,15,6,13,1,9,8,8,5,5,13,13,13,10,5,9,9,6,12,10,8,0,5,10,8,13,11,12,10,15,12,13,10,9,5,11,12,14,6,14,8,5,9,10,8,5,13,5,8,15,7,0,6,2,3,1,2,5,9,7,4,8,10,10,12,10,13,15,4,8,5,12,5,14,10,6,12,4,6,11,13,2,1,6,13,10,3,1,9,1,2,15,8,4,10,6,2,9,8,13,9,1,9,10,5,15,0,12,2,15,3,4,6,0,3,14,15,15,5,1,3,9,11,9,12,4,13,4,7,3,15,12,14,15,9,10,10,15,1,4,8,8,11,7,11,14,14,13,6,13,7,11,0,13,5,0,7,12,8,8,2,4,9,13,5,0,2,14,12,12,6,6,3,4,15,1,10,7,12,5,14,4,7,15,10,4,11,9,13,9,5,8,5,7,9,6,12,5,9,3,5,8,7,6,9,15,8,14,2,4,9,12,14,14,0,6,15,5,4,7,1,7,11,8,0,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"0\", \"14\", \"1\", \"13\"], \"clip_start\": 97.0, \"clip_end\": 102.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,12,13,7,3,6,2,10,13,14,2,2,14,13,7,15,3,6,6,3,4,10,4,2,10,13,3,11,9,12,8,11,5,2,7,1,10,11,7,5,1,7,15,11,11,3,12,5,14,11,12,12,1,8,9,7,7,8,5,11,0,12,6,15,3,8,12,0,15,14,6,8,2,15,6,10,3,12,11,8,6,15,14,6,5,14,6,14,5,8,12,0,6,7,13,2,15,0,0,14,1,13,10,13,4,3,3,4,11,14,3,1,15,8,8,12,1,10,1,7,14,13,3,13,5,14,4,15,13,2,6,11,14,9,13,4,14,3,10,0,6,8,7,2,3,10,7,5,13,3,1,11,14,11,5,9,5,2,2,0,0,14,15,11,12,13,13,1,2,12,15,2,12,11,2,11,10,14,11,7,6,11,4,1,12,13,1,12,3,14,12,9,4,10,13,5,4,3,14,10,7,9,5,10,7,7,13,3,13,0,0,12,14,2,0,8,9,7,0,9,12,1,6,1,12,8,5,3,12,11,13,0,9,7,7,15,0,6,13,5,15,7,15,13,6,11,13,2,6,6,13,5,7,9,0,11,5,9,15,9,10,5,8,9,8,4,3,12,7,11,0,9,7,15,7,0,13,7,3,11,10,13,7,12,8,15,9,15,6,13,1,9,8,8,5,5,13,13,13,10,5,9,9,6,12,10,8,0,5,10,8,13,11,12,10,15,12,13,10,9,5,11,12,14,6,14,8,5,9,10,8,5,13,5,8,15,7,0,6,2,3,1,2,5,9,7,4,8,10,10,12,10,13,15,4,8,5,12,5,14,10,6,12,4,6,11,13,2,1,6,13,10,3,1,9,1,2,15,8,4,10,6,2,9,8,13,9,1,9,10,5,15,0,12,2,15,3,4,6,0,3,14,15,15,5,1,3,9,11,9,12,4,13,4,7,3,15,12,14,15,9,10,10,15,1,4,8,8,11,7,11,14,14,13,6,13,7,11,0,13,5,0,7,12,8,8,2,4,9,13,5,0,2,14,12,12,6,6,3,4,15,1,10,7,12,5,14,4,7,15,10,4,11,9,13,9,5,8,5,7,9,6,12,5,9,3,5,8,7,6,9,15,8,14,2,4,9,12,14,14,0,6,15,5,4,7,1,7,11,8,0,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"2\", \"5\", \"9\"], \"clip_start\": 341.0, \"clip_end\": 345.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,12,13,7,3,6,2,10,13,14,2,2,14,13,7,15,3,6,6,3,4,10,4,2,10,13,3,11,9,12,8,11,5,2,7,1,10,11,7,5,1,7,15,11,11,3,12,5,14,11,12,12,1,8,9,7,7,8,5,11,0,12,6,15,3,8,12,0,15,14,6,8,2,15,6,10,3,12,11,8,6,15,14,6,5,14,6,14,5,8,12,0,6,7,13,2,15,0,0,14,1,13,10,13,4,3,3,4,11,14,3,1,15,8,8,12,1,10,1,7,14,13,3,13,5,14,4,15,13,2,6,11,14,9,13,4,14,3,10,0,6,8,7,2,3,10,7,5,13,3,1,11,14,11,5,9,5,2,2,0,0,14,15,11,12,13,13,1,2,12,15,2,12,11,2,11,10,14,11,7,6,11,4,1,12,13,1,12,3,14,12,9,4,10,13,5,4,3,14,10,7,9,5,10,7,7,13,3,13,0,0,12,14,2,0,8,9,7,0,9,12,1,6,1,12,8,5,3,12,11,13,0,9,7,7,15,0,6,13,5,15,7,15,13,6,11,13,2,6,6,13,5,7,9,0,11,5,9,15,9,10,5,8,9,8,4,3,12,7,11,0,9,7,15,7,0,13,7,3,11,10,13,7,12,8,15,9,15,6,13,1,9,8,8,5,5,13,13,13,10,5,9,9,6,12,10,8,0,5,10,8,13,11,12,10,15,12,13,10,9,5,11,12,14,6,14,8,5,9,10,8,5,13,5,8,15,7,0,6,2,3,1,2,5,9,7,4,8,10,10,12,10,13,15,4,8,5,12,5,14,10,6,12,4,6,11,13,2,1,6,13,10,3,1,9,1,2,15,8,4,10,6,2,9,8,13,9,1,9,10,5,15,0,12,2,15,3,4,6,0,3,14,15,15,5,1,3,9,11,9,12,4,13,4,7,3,15,12,14,15,9,10,10,15,1,4,8,8,11,7,11,14,14,13,6,13,7,11,0,13,5,0,7,12,8,8,2,4,9,13,5,0,2,14,12,12,6,6,3,4,15,1,10,7,12,5,14,4,7,15,10,4,11,9,13,9,5,8,5,7,9,6,12,5,9,3,5,8,7,6,9,15,8,14,2,4,9,12,14,14,0,6,15,5,4,7,1,7,11,8,0,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 7, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"13\", \"14\"], \"clip_start\": 50.0, \"clip_end\": 53.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,12,13,7,3,6,2,10,13,14,2,2,14,13,7,15,3,6,6,3,4,10,4,2,10,13,3,11,9,12,8,11,5,2,7,1,10,11,7,5,1,7,15,11,11,3,12,5,14,11,12,12,1,8,9,7,7,8,5,11,0,12,6,15,3,8,12,0,15,14,6,8,2,15,6,10,3,12,11,8,6,15,14,6,5,14,6,14,5,8,12,0,6,7,13,2,15,0,0,14,1,13,10,13,4,3,3,4,11,14,3,1,15,8,8,12,1,10,1,7,14,13,3,13,5,14,4,15,13,2,6,11,14,9,13,4,14,3,10,0,6,8,7,2,3,10,7,5,13,3,1,11,14,11,5,9,5,2,2,0,0,14,15,11,12,13,13,1,2,12,15,2,12,11,2,11,10,14,11,7,6,11,4,1,12,13,1,12,3,14,12,9,4,10,13,5,4,3,14,10,7,9,5,10,7,7,13,3,13,0,0,12,14,2,0,8,9,7,0,9,12,1,6,1,12,8,5,3,12,11,13,0,9,7,7,15,0,6,13,5,15,7,15,13,6,11,13,2,6,6,13,5,7,9,0,11,5,9,15,9,10,5,8,9,8,4,3,12,7,11,0,9,7,15,7,0,13,7,3,11,10,13,7,12,8,15,9,15,6,13,1,9,8,8,5,5,13,13,13,10,5,9,9,6,12,10,8,0,5,10,8,13,11,12,10,15,12,13,10,9,5,11,12,14,6,14,8,5,9,10,8,5,13,5,8,15,7,0,6,2,3,1,2,5,9,7,4,8,10,10,12,10,13,15,4,8,5,12,5,14,10,6,12,4,6,11,13,2,1,6,13,10,3,1,9,1,2,15,8,4,10,6,2,9,8,13,9,1,9,10,5,15,0,12,2,15,3,4,6,0,3,14,15,15,5,1,3,9,11,9,12,4,13,4,7,3,15,12,14,15,9,10,10,15,1,4,8,8,11,7,11,14,14,13,6,13,7,11,0,13,5,0,7,12,8,8,2,4,9,13,5,0,2,14,12,12,6,6,3,4,15,1,10,7,12,5,14,4,7,15,10,4,11,9,13,9,5,8,5,7,9,6,12,5,9,3,5,8,7,6,9,15,8,14,2,4,9,12,14,14,0,6,15,5,4,7,1,7,11,8,0,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"15\", \"0\", \"12\"], \"clip_start\": 390.0, \"clip_end\": 394.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,12,13,7,3,6,2,10,13,14,2,2,14,13,7,15,3,6,6,3,4,10,4,2,10,13,3,11,9,12,8,11,5,2,7,1,10,11,7,5,1,7,15,11,11,3,12,5,14,11,12,12,1,8,9,7,7,8,5,11,0,12,6,15,3,8,12,0,15,14,6,8,2,15,6,10,3,12,11,8,6,15,14,6,5,14,6,14,5,8,12,0,6,7,13,2,15,0,0,14,1,13,10,13,4,3,3,4,11,14,3,1,15,8,8,12,1,10,1,7,14,13,3,13,5,14,4,15,13,2,6,11,14,9,13,4,14,3,10,0,6,8,7,2,3,10,7,5,13,3,1,11,14,11,5,9,5,2,2,0,0,14,15,11,12,13,13,1,2,12,15,2,12,11,2,11,10,14,11,7,6,11,4,1,12,13,1,12,3,14,12,9,4,10,13,5,4,3,14,10,7,9,5,10,7,7,13,3,13,0,0,12,14,2,0,8,9,7,0,9,12,1,6,1,12,8,5,3,12,11,13,0,9,7,7,15,0,6,13,5,15,7,15,13,6,11,13,2,6,6,13,5,7,9,0,11,5,9,15,9,10,5,8,9,8,4,3,12,7,11,0,9,7,15,7,0,13,7,3,11,10,13,7,12,8,15,9,15,6,13,1,9,8,8,5,5,13,13,13,10,5,9,9,6,12,10,8,0,5,10,8,13,11,12,10,15,12,13,10,9,5,11,12,14,6,14,8,5,9,10,8,5,13,5,8,15,7,0,6,2,3,1,2,5,9,7,4,8,10,10,12,10,13,15,4,8,5,12,5,14,10,6,12,4,6,11,13,2,1,6,13,10,3,1,9,1,2,15,8,4,10,6,2,9,8,13,9,1,9,10,5,15,0,12,2,15,3,4,6,0,3,14,15,15,5,1,3,9,11,9,12,4,13,4,7,3,15,12,14,15,9,10,10,15,1,4,8,8,11,7,11,14,14,13,6,13,7,11,0,13,5,0,7,12,8,8,2,4,9,13,5,0,2,14,12,12,6,6,3,4,15,1,10,7,12,5,14,4,7,15,10,4,11,9,13,9,5,8,5,7,9,6,12,5,9,3,5,8,7,6,9,15,8,14,2,4,9,12,14,14,0,6,15,5,4,7,1,7,11,8,0,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"10\", \"13\"], \"clip_start\": 349.0, \"clip_end\": 353.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q14_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,12,13,7,3,6,2,10,13,14,2,2,14,13,7,15,3,6,6,3,4,10,4,2,10,13,3,11,9,12,8,11,5,2,7,1,10,11,7,5,1,7,15,11,11,3,12,5,14,11,12,12,1,8,9,7,7,8,5,11,0,12,6,15,3,8,12,0,15,14,6,8,2,15,6,10,3,12,11,8,6,15,14,6,5,14,6,14,5,8,12,0,6,7,13,2,15,0,0,14,1,13,10,13,4,3,3,4,11,14,3,1,15,8,8,12,1,10,1,7,14,13,3,13,5,14,4,15,13,2,6,11,14,9,13,4,14,3,10,0,6,8,7,2,3,10,7,5,13,3,1,11,14,11,5,9,5,2,2,0,0,14,15,11,12,13,13,1,2,12,15,2,12,11,2,11,10,14,11,7,6,11,4,1,12,13,1,12,3,14,12,9,4,10,13,5,4,3,14,10,7,9,5,10,7,7,13,3,13,0,0,12,14,2,0,8,9,7,0,9,12,1,6,1,12,8,5,3,12,11,13,0,9,7,7,15,0,6,13,5,15,7,15,13,6,11,13,2,6,6,13,5,7,9,0,11,5,9,15,9,10,5,8,9,8,4,3,12,7,11,0,9,7,15,7,0,13,7,3,11,10,13,7,12,8,15,9,15,6,13,1,9,8,8,5,5,13,13,13,10,5,9,9,6,12,10,8,0,5,10,8,13,11,12,10,15,12,13,10,9,5,11,12,14,6,14,8,5,9,10,8,5,13,5,8,15,7,0,6,2,3,1,2,5,9,7,4,8,10,10,12,10,13,15,4,8,5,12,5,14,10,6,12,4,6,11,13,2,1,6,13,10,3,1,9,1,2,15,8,4,10,6,2,9,8,13,9,1,9,10,5,15,0,12,2,15,3,4,6,0,3,14,15,15,5,1,3,9,11,9,12,4,13,4,7,3,15,12,14,15,9,10,10,15,1,4,8,8,11,7,11,14,14,13,6,13,7,11,0,13,5,0,7,12,8,8,2,4,9,13,5,0,2,14,12,12,6,6,3,4,15,1,10,7,12,5,14,4,7,15,10,4,11,9,13,9,5,8,5,7,9,6,12,5,9,3,5,8,7,6,9,15,8,14,2,4,9,12,14,14,0,6,15,5,4,7,1,7,11,8,0,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 7, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"7\", \"7\", \"8\", \"5\", \"11\"], \"clip_start\": 54.0, \"clip_end\": 60.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q15_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,12,13,7,3,6,2,10,13,14,2,2,14,13,7,15,3,6,6,3,4,10,4,2,10,13,3,11,9,12,8,11,5,2,7,1,10,11,7,5,1,7,15,11,11,3,12,5,14,11,12,12,1,8,9,7,7,8,5,11,0,12,6,15,3,8,12,0,15,14,6,8,2,15,6,10,3,12,11,8,6,15,14,6,5,14,6,14,5,8,12,0,6,7,13,2,15,0,0,14,1,13,10,13,4,3,3,4,11,14,3,1,15,8,8,12,1,10,1,7,14,13,3,13,5,14,4,15,13,2,6,11,14,9,13,4,14,3,10,0,6,8,7,2,3,10,7,5,13,3,1,11,14,11,5,9,5,2,2,0,0,14,15,11,12,13,13,1,2,12,15,2,12,11,2,11,10,14,11,7,6,11,4,1,12,13,1,12,3,14,12,9,4,10,13,5,4,3,14,10,7,9,5,10,7,7,13,3,13,0,0,12,14,2,0,8,9,7,0,9,12,1,6,1,12,8,5,3,12,11,13,0,9,7,7,15,0,6,13,5,15,7,15,13,6,11,13,2,6,6,13,5,7,9,0,11,5,9,15,9,10,5,8,9,8,4,3,12,7,11,0,9,7,15,7,0,13,7,3,11,10,13,7,12,8,15,9,15,6,13,1,9,8,8,5,5,13,13,13,10,5,9,9,6,12,10,8,0,5,10,8,13,11,12,10,15,12,13,10,9,5,11,12,14,6,14,8,5,9,10,8,5,13,5,8,15,7,0,6,2,3,1,2,5,9,7,4,8,10,10,12,10,13,15,4,8,5,12,5,14,10,6,12,4,6,11,13,2,1,6,13,10,3,1,9,1,2,15,8,4,10,6,2,9,8,13,9,1,9,10,5,15,0,12,2,15,3,4,6,0,3,14,15,15,5,1,3,9,11,9,12,4,13,4,7,3,15,12,14,15,9,10,10,15,1,4,8,8,11,7,11,14,14,13,6,13,7,11,0,13,5,0,7,12,8,8,2,4,9,13,5,0,2,14,12,12,6,6,3,4,15,1,10,7,12,5,14,4,7,15,10,4,11,9,13,9,5,8,5,7,9,6,12,5,9,3,5,8,7,6,9,15,8,14,2,4,9,12,14,14,0,6,15,5,4,7,1,7,11,8,0,4", "source_class": null, "source_dataset": null, "video_id": "video_7_v0", "question_id": "video_7_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"2\", \"14\", \"12\", \"4\"], \"clip_start\": 424.0, \"clip_end\": 429.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,14,8,11,6,11,0,13,2,5,7,13,14,12,3,8,9,11,7,7,11,0,10,13,5,2,6,11,13,2,4,5,13,3,10,2,9,1,14,9,6,3,8,2,14,0,11,10,4,6,10,3,9,0,14,4,12,0,10,3,1,7,6,2,10,2,7,14,13,12,6,4,6,7,3,13,3,13,5,4,7,8,7,9,13,5,3,3,2,2,4,5,3,4,9,12,5,0,9,0,0,1,3,2,15,5,9,6,6,10,2,5,1,12,15,4,1,1,13,3,10,14,10,7,5,1,6,10,4,6,14,2,4,6,8,8,8,0,7,13,9,13,5,14,2,1,12,10,2,9,11,14,6,10,5,7,9,0,15,13,14,15,7,14,9,1,7,12,10,2,13,12,5,6,4,15,6,5,6,7,11,5,11,7,11,8,3,5,15,14,8,8,2,6,14,8,7,9,2,3,13,13,14,5,9,10,9,4,12,9,6,7,3,6,13,4,5,9,12,0,5,14,8,1,11,13,7,10,14,11,3,14,12,6,4,11,0,12,14,5,8,0,15,3,11,6,5,2,10,8,0,13,10,1,1,3,9,7,7,8,7,8,6,13,11,4,10,12,9,4,9,15,0,5,3,10,14,6,8,5,9,8,2,3,6,1,0,1,15,8,11,2,6,9,4,13,13,5,13,7,7,15,0,4,9,12,6,8,0,4,14,9,7,12,10,7,7,14,13,5,5,2,14,5,6,13,4,15,9,7,5,12,4,5,2,12,2,5,2,5,9,10,6,12,14,14,14,13,4,3,12,6,4,1,7,11,2,1,3,13,12,2,15,0,2,5,11,5,3,2,0,3,1,4,11,10,7,1,5,3,10,11,6,10,1,12,3,5,4,9,14,4,5,8,2,7,13,9,9,1,2,10,3,4,6,13,11,6,13,8,3,12,10,15,1,9,7,2,8,8,6,7,7,5,2,14,12,4,10,11,15,8,5,2,9,12,0,1,5,4,3,9,4,8,2,0,0,5,1,8,15,13,8,2,15,14,5,0,8,4,2,8,10,7,10,2,11,2,5,10,4,14,12,11,15,1,6,11,10,11,2,11,12,2,2,9,5,12,8,13,5,14,7,3,12,13,4,12,5,7,15,7,5,13,11,4,13,9,7,1,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"4\", \"13\", \"13\", \"5\", \"13\"], \"clip_start\": 294.0, \"clip_end\": 300.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q1_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,14,8,11,6,11,0,13,2,5,7,13,14,12,3,8,9,11,7,7,11,0,10,13,5,2,6,11,13,2,4,5,13,3,10,2,9,1,14,9,6,3,8,2,14,0,11,10,4,6,10,3,9,0,14,4,12,0,10,3,1,7,6,2,10,2,7,14,13,12,6,4,6,7,3,13,3,13,5,4,7,8,7,9,13,5,3,3,2,2,4,5,3,4,9,12,5,0,9,0,0,1,3,2,15,5,9,6,6,10,2,5,1,12,15,4,1,1,13,3,10,14,10,7,5,1,6,10,4,6,14,2,4,6,8,8,8,0,7,13,9,13,5,14,2,1,12,10,2,9,11,14,6,10,5,7,9,0,15,13,14,15,7,14,9,1,7,12,10,2,13,12,5,6,4,15,6,5,6,7,11,5,11,7,11,8,3,5,15,14,8,8,2,6,14,8,7,9,2,3,13,13,14,5,9,10,9,4,12,9,6,7,3,6,13,4,5,9,12,0,5,14,8,1,11,13,7,10,14,11,3,14,12,6,4,11,0,12,14,5,8,0,15,3,11,6,5,2,10,8,0,13,10,1,1,3,9,7,7,8,7,8,6,13,11,4,10,12,9,4,9,15,0,5,3,10,14,6,8,5,9,8,2,3,6,1,0,1,15,8,11,2,6,9,4,13,13,5,13,7,7,15,0,4,9,12,6,8,0,4,14,9,7,12,10,7,7,14,13,5,5,2,14,5,6,13,4,15,9,7,5,12,4,5,2,12,2,5,2,5,9,10,6,12,14,14,14,13,4,3,12,6,4,1,7,11,2,1,3,13,12,2,15,0,2,5,11,5,3,2,0,3,1,4,11,10,7,1,5,3,10,11,6,10,1,12,3,5,4,9,14,4,5,8,2,7,13,9,9,1,2,10,3,4,6,13,11,6,13,8,3,12,10,15,1,9,7,2,8,8,6,7,7,5,2,14,12,4,10,11,15,8,5,2,9,12,0,1,5,4,3,9,4,8,2,0,0,5,1,8,15,13,8,2,15,14,5,0,8,4,2,8,10,7,10,2,11,2,5,10,4,14,12,11,15,1,6,11,10,11,2,11,12,2,2,9,5,12,8,13,5,14,7,3,12,13,4,12,5,7,15,7,5,13,11,4,13,9,7,1,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"4\", \"7\", \"8\", \"7\"], \"clip_start\": 78.0, \"clip_end\": 84.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q2_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,14,8,11,6,11,0,13,2,5,7,13,14,12,3,8,9,11,7,7,11,0,10,13,5,2,6,11,13,2,4,5,13,3,10,2,9,1,14,9,6,3,8,2,14,0,11,10,4,6,10,3,9,0,14,4,12,0,10,3,1,7,6,2,10,2,7,14,13,12,6,4,6,7,3,13,3,13,5,4,7,8,7,9,13,5,3,3,2,2,4,5,3,4,9,12,5,0,9,0,0,1,3,2,15,5,9,6,6,10,2,5,1,12,15,4,1,1,13,3,10,14,10,7,5,1,6,10,4,6,14,2,4,6,8,8,8,0,7,13,9,13,5,14,2,1,12,10,2,9,11,14,6,10,5,7,9,0,15,13,14,15,7,14,9,1,7,12,10,2,13,12,5,6,4,15,6,5,6,7,11,5,11,7,11,8,3,5,15,14,8,8,2,6,14,8,7,9,2,3,13,13,14,5,9,10,9,4,12,9,6,7,3,6,13,4,5,9,12,0,5,14,8,1,11,13,7,10,14,11,3,14,12,6,4,11,0,12,14,5,8,0,15,3,11,6,5,2,10,8,0,13,10,1,1,3,9,7,7,8,7,8,6,13,11,4,10,12,9,4,9,15,0,5,3,10,14,6,8,5,9,8,2,3,6,1,0,1,15,8,11,2,6,9,4,13,13,5,13,7,7,15,0,4,9,12,6,8,0,4,14,9,7,12,10,7,7,14,13,5,5,2,14,5,6,13,4,15,9,7,5,12,4,5,2,12,2,5,2,5,9,10,6,12,14,14,14,13,4,3,12,6,4,1,7,11,2,1,3,13,12,2,15,0,2,5,11,5,3,2,0,3,1,4,11,10,7,1,5,3,10,11,6,10,1,12,3,5,4,9,14,4,5,8,2,7,13,9,9,1,2,10,3,4,6,13,11,6,13,8,3,12,10,15,1,9,7,2,8,8,6,7,7,5,2,14,12,4,10,11,15,8,5,2,9,12,0,1,5,4,3,9,4,8,2,0,0,5,1,8,15,13,8,2,15,14,5,0,8,4,2,8,10,7,10,2,11,2,5,10,4,14,12,11,15,1,6,11,10,11,2,11,12,2,2,9,5,12,8,13,5,14,7,3,12,13,4,12,5,7,15,7,5,13,11,4,13,9,7,1,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"6\", \"7\"], \"clip_start\": 178.0, \"clip_end\": 181.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,14,8,11,6,11,0,13,2,5,7,13,14,12,3,8,9,11,7,7,11,0,10,13,5,2,6,11,13,2,4,5,13,3,10,2,9,1,14,9,6,3,8,2,14,0,11,10,4,6,10,3,9,0,14,4,12,0,10,3,1,7,6,2,10,2,7,14,13,12,6,4,6,7,3,13,3,13,5,4,7,8,7,9,13,5,3,3,2,2,4,5,3,4,9,12,5,0,9,0,0,1,3,2,15,5,9,6,6,10,2,5,1,12,15,4,1,1,13,3,10,14,10,7,5,1,6,10,4,6,14,2,4,6,8,8,8,0,7,13,9,13,5,14,2,1,12,10,2,9,11,14,6,10,5,7,9,0,15,13,14,15,7,14,9,1,7,12,10,2,13,12,5,6,4,15,6,5,6,7,11,5,11,7,11,8,3,5,15,14,8,8,2,6,14,8,7,9,2,3,13,13,14,5,9,10,9,4,12,9,6,7,3,6,13,4,5,9,12,0,5,14,8,1,11,13,7,10,14,11,3,14,12,6,4,11,0,12,14,5,8,0,15,3,11,6,5,2,10,8,0,13,10,1,1,3,9,7,7,8,7,8,6,13,11,4,10,12,9,4,9,15,0,5,3,10,14,6,8,5,9,8,2,3,6,1,0,1,15,8,11,2,6,9,4,13,13,5,13,7,7,15,0,4,9,12,6,8,0,4,14,9,7,12,10,7,7,14,13,5,5,2,14,5,6,13,4,15,9,7,5,12,4,5,2,12,2,5,2,5,9,10,6,12,14,14,14,13,4,3,12,6,4,1,7,11,2,1,3,13,12,2,15,0,2,5,11,5,3,2,0,3,1,4,11,10,7,1,5,3,10,11,6,10,1,12,3,5,4,9,14,4,5,8,2,7,13,9,9,1,2,10,3,4,6,13,11,6,13,8,3,12,10,15,1,9,7,2,8,8,6,7,7,5,2,14,12,4,10,11,15,8,5,2,9,12,0,1,5,4,3,9,4,8,2,0,0,5,1,8,15,13,8,2,15,14,5,0,8,4,2,8,10,7,10,2,11,2,5,10,4,14,12,11,15,1,6,11,10,11,2,11,12,2,2,9,5,12,8,13,5,14,7,3,12,13,4,12,5,7,15,7,5,13,11,4,13,9,7,1,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"6\", \"10\", \"4\"], \"clip_start\": 125.0, \"clip_end\": 130.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q4_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,14,8,11,6,11,0,13,2,5,7,13,14,12,3,8,9,11,7,7,11,0,10,13,5,2,6,11,13,2,4,5,13,3,10,2,9,1,14,9,6,3,8,2,14,0,11,10,4,6,10,3,9,0,14,4,12,0,10,3,1,7,6,2,10,2,7,14,13,12,6,4,6,7,3,13,3,13,5,4,7,8,7,9,13,5,3,3,2,2,4,5,3,4,9,12,5,0,9,0,0,1,3,2,15,5,9,6,6,10,2,5,1,12,15,4,1,1,13,3,10,14,10,7,5,1,6,10,4,6,14,2,4,6,8,8,8,0,7,13,9,13,5,14,2,1,12,10,2,9,11,14,6,10,5,7,9,0,15,13,14,15,7,14,9,1,7,12,10,2,13,12,5,6,4,15,6,5,6,7,11,5,11,7,11,8,3,5,15,14,8,8,2,6,14,8,7,9,2,3,13,13,14,5,9,10,9,4,12,9,6,7,3,6,13,4,5,9,12,0,5,14,8,1,11,13,7,10,14,11,3,14,12,6,4,11,0,12,14,5,8,0,15,3,11,6,5,2,10,8,0,13,10,1,1,3,9,7,7,8,7,8,6,13,11,4,10,12,9,4,9,15,0,5,3,10,14,6,8,5,9,8,2,3,6,1,0,1,15,8,11,2,6,9,4,13,13,5,13,7,7,15,0,4,9,12,6,8,0,4,14,9,7,12,10,7,7,14,13,5,5,2,14,5,6,13,4,15,9,7,5,12,4,5,2,12,2,5,2,5,9,10,6,12,14,14,14,13,4,3,12,6,4,1,7,11,2,1,3,13,12,2,15,0,2,5,11,5,3,2,0,3,1,4,11,10,7,1,5,3,10,11,6,10,1,12,3,5,4,9,14,4,5,8,2,7,13,9,9,1,2,10,3,4,6,13,11,6,13,8,3,12,10,15,1,9,7,2,8,8,6,7,7,5,2,14,12,4,10,11,15,8,5,2,9,12,0,1,5,4,3,9,4,8,2,0,0,5,1,8,15,13,8,2,15,14,5,0,8,4,2,8,10,7,10,2,11,2,5,10,4,14,12,11,15,1,6,11,10,11,2,11,12,2,2,9,5,12,8,13,5,14,7,3,12,13,4,12,5,7,15,7,5,13,11,4,13,9,7,1,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"4\", \"5\", \"8\", \"2\"], \"clip_start\": 390.0, \"clip_end\": 396.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,14,8,11,6,11,0,13,2,5,7,13,14,12,3,8,9,11,7,7,11,0,10,13,5,2,6,11,13,2,4,5,13,3,10,2,9,1,14,9,6,3,8,2,14,0,11,10,4,6,10,3,9,0,14,4,12,0,10,3,1,7,6,2,10,2,7,14,13,12,6,4,6,7,3,13,3,13,5,4,7,8,7,9,13,5,3,3,2,2,4,5,3,4,9,12,5,0,9,0,0,1,3,2,15,5,9,6,6,10,2,5,1,12,15,4,1,1,13,3,10,14,10,7,5,1,6,10,4,6,14,2,4,6,8,8,8,0,7,13,9,13,5,14,2,1,12,10,2,9,11,14,6,10,5,7,9,0,15,13,14,15,7,14,9,1,7,12,10,2,13,12,5,6,4,15,6,5,6,7,11,5,11,7,11,8,3,5,15,14,8,8,2,6,14,8,7,9,2,3,13,13,14,5,9,10,9,4,12,9,6,7,3,6,13,4,5,9,12,0,5,14,8,1,11,13,7,10,14,11,3,14,12,6,4,11,0,12,14,5,8,0,15,3,11,6,5,2,10,8,0,13,10,1,1,3,9,7,7,8,7,8,6,13,11,4,10,12,9,4,9,15,0,5,3,10,14,6,8,5,9,8,2,3,6,1,0,1,15,8,11,2,6,9,4,13,13,5,13,7,7,15,0,4,9,12,6,8,0,4,14,9,7,12,10,7,7,14,13,5,5,2,14,5,6,13,4,15,9,7,5,12,4,5,2,12,2,5,2,5,9,10,6,12,14,14,14,13,4,3,12,6,4,1,7,11,2,1,3,13,12,2,15,0,2,5,11,5,3,2,0,3,1,4,11,10,7,1,5,3,10,11,6,10,1,12,3,5,4,9,14,4,5,8,2,7,13,9,9,1,2,10,3,4,6,13,11,6,13,8,3,12,10,15,1,9,7,2,8,8,6,7,7,5,2,14,12,4,10,11,15,8,5,2,9,12,0,1,5,4,3,9,4,8,2,0,0,5,1,8,15,13,8,2,15,14,5,0,8,4,2,8,10,7,10,2,11,2,5,10,4,14,12,11,15,1,6,11,10,11,2,11,12,2,2,9,5,12,8,13,5,14,7,3,12,13,4,12,5,7,15,7,5,13,11,4,13,9,7,1,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"8\", \"2\", \"3\"], \"clip_start\": 281.0, \"clip_end\": 285.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,14,8,11,6,11,0,13,2,5,7,13,14,12,3,8,9,11,7,7,11,0,10,13,5,2,6,11,13,2,4,5,13,3,10,2,9,1,14,9,6,3,8,2,14,0,11,10,4,6,10,3,9,0,14,4,12,0,10,3,1,7,6,2,10,2,7,14,13,12,6,4,6,7,3,13,3,13,5,4,7,8,7,9,13,5,3,3,2,2,4,5,3,4,9,12,5,0,9,0,0,1,3,2,15,5,9,6,6,10,2,5,1,12,15,4,1,1,13,3,10,14,10,7,5,1,6,10,4,6,14,2,4,6,8,8,8,0,7,13,9,13,5,14,2,1,12,10,2,9,11,14,6,10,5,7,9,0,15,13,14,15,7,14,9,1,7,12,10,2,13,12,5,6,4,15,6,5,6,7,11,5,11,7,11,8,3,5,15,14,8,8,2,6,14,8,7,9,2,3,13,13,14,5,9,10,9,4,12,9,6,7,3,6,13,4,5,9,12,0,5,14,8,1,11,13,7,10,14,11,3,14,12,6,4,11,0,12,14,5,8,0,15,3,11,6,5,2,10,8,0,13,10,1,1,3,9,7,7,8,7,8,6,13,11,4,10,12,9,4,9,15,0,5,3,10,14,6,8,5,9,8,2,3,6,1,0,1,15,8,11,2,6,9,4,13,13,5,13,7,7,15,0,4,9,12,6,8,0,4,14,9,7,12,10,7,7,14,13,5,5,2,14,5,6,13,4,15,9,7,5,12,4,5,2,12,2,5,2,5,9,10,6,12,14,14,14,13,4,3,12,6,4,1,7,11,2,1,3,13,12,2,15,0,2,5,11,5,3,2,0,3,1,4,11,10,7,1,5,3,10,11,6,10,1,12,3,5,4,9,14,4,5,8,2,7,13,9,9,1,2,10,3,4,6,13,11,6,13,8,3,12,10,15,1,9,7,2,8,8,6,7,7,5,2,14,12,4,10,11,15,8,5,2,9,12,0,1,5,4,3,9,4,8,2,0,0,5,1,8,15,13,8,2,15,14,5,0,8,4,2,8,10,7,10,2,11,2,5,10,4,14,12,11,15,1,6,11,10,11,2,11,12,2,2,9,5,12,8,13,5,14,7,3,12,13,4,12,5,7,15,7,5,13,11,4,13,9,7,1,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"5\", \"15\", \"14\", \"8\", \"8\"], \"clip_start\": 187.0, \"clip_end\": 193.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,14,8,11,6,11,0,13,2,5,7,13,14,12,3,8,9,11,7,7,11,0,10,13,5,2,6,11,13,2,4,5,13,3,10,2,9,1,14,9,6,3,8,2,14,0,11,10,4,6,10,3,9,0,14,4,12,0,10,3,1,7,6,2,10,2,7,14,13,12,6,4,6,7,3,13,3,13,5,4,7,8,7,9,13,5,3,3,2,2,4,5,3,4,9,12,5,0,9,0,0,1,3,2,15,5,9,6,6,10,2,5,1,12,15,4,1,1,13,3,10,14,10,7,5,1,6,10,4,6,14,2,4,6,8,8,8,0,7,13,9,13,5,14,2,1,12,10,2,9,11,14,6,10,5,7,9,0,15,13,14,15,7,14,9,1,7,12,10,2,13,12,5,6,4,15,6,5,6,7,11,5,11,7,11,8,3,5,15,14,8,8,2,6,14,8,7,9,2,3,13,13,14,5,9,10,9,4,12,9,6,7,3,6,13,4,5,9,12,0,5,14,8,1,11,13,7,10,14,11,3,14,12,6,4,11,0,12,14,5,8,0,15,3,11,6,5,2,10,8,0,13,10,1,1,3,9,7,7,8,7,8,6,13,11,4,10,12,9,4,9,15,0,5,3,10,14,6,8,5,9,8,2,3,6,1,0,1,15,8,11,2,6,9,4,13,13,5,13,7,7,15,0,4,9,12,6,8,0,4,14,9,7,12,10,7,7,14,13,5,5,2,14,5,6,13,4,15,9,7,5,12,4,5,2,12,2,5,2,5,9,10,6,12,14,14,14,13,4,3,12,6,4,1,7,11,2,1,3,13,12,2,15,0,2,5,11,5,3,2,0,3,1,4,11,10,7,1,5,3,10,11,6,10,1,12,3,5,4,9,14,4,5,8,2,7,13,9,9,1,2,10,3,4,6,13,11,6,13,8,3,12,10,15,1,9,7,2,8,8,6,7,7,5,2,14,12,4,10,11,15,8,5,2,9,12,0,1,5,4,3,9,4,8,2,0,0,5,1,8,15,13,8,2,15,14,5,0,8,4,2,8,10,7,10,2,11,2,5,10,4,14,12,11,15,1,6,11,10,11,2,11,12,2,2,9,5,12,8,13,5,14,7,3,12,13,4,12,5,7,15,7,5,13,11,4,13,9,7,1,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"3\", \"10\", \"8\"], \"clip_start\": 154.0, \"clip_end\": 159.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q8_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,14,8,11,6,11,0,13,2,5,7,13,14,12,3,8,9,11,7,7,11,0,10,13,5,2,6,11,13,2,4,5,13,3,10,2,9,1,14,9,6,3,8,2,14,0,11,10,4,6,10,3,9,0,14,4,12,0,10,3,1,7,6,2,10,2,7,14,13,12,6,4,6,7,3,13,3,13,5,4,7,8,7,9,13,5,3,3,2,2,4,5,3,4,9,12,5,0,9,0,0,1,3,2,15,5,9,6,6,10,2,5,1,12,15,4,1,1,13,3,10,14,10,7,5,1,6,10,4,6,14,2,4,6,8,8,8,0,7,13,9,13,5,14,2,1,12,10,2,9,11,14,6,10,5,7,9,0,15,13,14,15,7,14,9,1,7,12,10,2,13,12,5,6,4,15,6,5,6,7,11,5,11,7,11,8,3,5,15,14,8,8,2,6,14,8,7,9,2,3,13,13,14,5,9,10,9,4,12,9,6,7,3,6,13,4,5,9,12,0,5,14,8,1,11,13,7,10,14,11,3,14,12,6,4,11,0,12,14,5,8,0,15,3,11,6,5,2,10,8,0,13,10,1,1,3,9,7,7,8,7,8,6,13,11,4,10,12,9,4,9,15,0,5,3,10,14,6,8,5,9,8,2,3,6,1,0,1,15,8,11,2,6,9,4,13,13,5,13,7,7,15,0,4,9,12,6,8,0,4,14,9,7,12,10,7,7,14,13,5,5,2,14,5,6,13,4,15,9,7,5,12,4,5,2,12,2,5,2,5,9,10,6,12,14,14,14,13,4,3,12,6,4,1,7,11,2,1,3,13,12,2,15,0,2,5,11,5,3,2,0,3,1,4,11,10,7,1,5,3,10,11,6,10,1,12,3,5,4,9,14,4,5,8,2,7,13,9,9,1,2,10,3,4,6,13,11,6,13,8,3,12,10,15,1,9,7,2,8,8,6,7,7,5,2,14,12,4,10,11,15,8,5,2,9,12,0,1,5,4,3,9,4,8,2,0,0,5,1,8,15,13,8,2,15,14,5,0,8,4,2,8,10,7,10,2,11,2,5,10,4,14,12,11,15,1,6,11,10,11,2,11,12,2,2,9,5,12,8,13,5,14,7,3,12,13,4,12,5,7,15,7,5,13,11,4,13,9,7,1,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"8\", \"3\", \"5\"], \"clip_start\": 185.0, \"clip_end\": 189.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q9_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,14,8,11,6,11,0,13,2,5,7,13,14,12,3,8,9,11,7,7,11,0,10,13,5,2,6,11,13,2,4,5,13,3,10,2,9,1,14,9,6,3,8,2,14,0,11,10,4,6,10,3,9,0,14,4,12,0,10,3,1,7,6,2,10,2,7,14,13,12,6,4,6,7,3,13,3,13,5,4,7,8,7,9,13,5,3,3,2,2,4,5,3,4,9,12,5,0,9,0,0,1,3,2,15,5,9,6,6,10,2,5,1,12,15,4,1,1,13,3,10,14,10,7,5,1,6,10,4,6,14,2,4,6,8,8,8,0,7,13,9,13,5,14,2,1,12,10,2,9,11,14,6,10,5,7,9,0,15,13,14,15,7,14,9,1,7,12,10,2,13,12,5,6,4,15,6,5,6,7,11,5,11,7,11,8,3,5,15,14,8,8,2,6,14,8,7,9,2,3,13,13,14,5,9,10,9,4,12,9,6,7,3,6,13,4,5,9,12,0,5,14,8,1,11,13,7,10,14,11,3,14,12,6,4,11,0,12,14,5,8,0,15,3,11,6,5,2,10,8,0,13,10,1,1,3,9,7,7,8,7,8,6,13,11,4,10,12,9,4,9,15,0,5,3,10,14,6,8,5,9,8,2,3,6,1,0,1,15,8,11,2,6,9,4,13,13,5,13,7,7,15,0,4,9,12,6,8,0,4,14,9,7,12,10,7,7,14,13,5,5,2,14,5,6,13,4,15,9,7,5,12,4,5,2,12,2,5,2,5,9,10,6,12,14,14,14,13,4,3,12,6,4,1,7,11,2,1,3,13,12,2,15,0,2,5,11,5,3,2,0,3,1,4,11,10,7,1,5,3,10,11,6,10,1,12,3,5,4,9,14,4,5,8,2,7,13,9,9,1,2,10,3,4,6,13,11,6,13,8,3,12,10,15,1,9,7,2,8,8,6,7,7,5,2,14,12,4,10,11,15,8,5,2,9,12,0,1,5,4,3,9,4,8,2,0,0,5,1,8,15,13,8,2,15,14,5,0,8,4,2,8,10,7,10,2,11,2,5,10,4,14,12,11,15,1,6,11,10,11,2,11,12,2,2,9,5,12,8,13,5,14,7,3,12,13,4,12,5,7,15,7,5,13,11,4,13,9,7,1,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"4\", \"12\", \"1\"], \"clip_start\": 297.0, \"clip_end\": 301.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q10_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,14,8,11,6,11,0,13,2,5,7,13,14,12,3,8,9,11,7,7,11,0,10,13,5,2,6,11,13,2,4,5,13,3,10,2,9,1,14,9,6,3,8,2,14,0,11,10,4,6,10,3,9,0,14,4,12,0,10,3,1,7,6,2,10,2,7,14,13,12,6,4,6,7,3,13,3,13,5,4,7,8,7,9,13,5,3,3,2,2,4,5,3,4,9,12,5,0,9,0,0,1,3,2,15,5,9,6,6,10,2,5,1,12,15,4,1,1,13,3,10,14,10,7,5,1,6,10,4,6,14,2,4,6,8,8,8,0,7,13,9,13,5,14,2,1,12,10,2,9,11,14,6,10,5,7,9,0,15,13,14,15,7,14,9,1,7,12,10,2,13,12,5,6,4,15,6,5,6,7,11,5,11,7,11,8,3,5,15,14,8,8,2,6,14,8,7,9,2,3,13,13,14,5,9,10,9,4,12,9,6,7,3,6,13,4,5,9,12,0,5,14,8,1,11,13,7,10,14,11,3,14,12,6,4,11,0,12,14,5,8,0,15,3,11,6,5,2,10,8,0,13,10,1,1,3,9,7,7,8,7,8,6,13,11,4,10,12,9,4,9,15,0,5,3,10,14,6,8,5,9,8,2,3,6,1,0,1,15,8,11,2,6,9,4,13,13,5,13,7,7,15,0,4,9,12,6,8,0,4,14,9,7,12,10,7,7,14,13,5,5,2,14,5,6,13,4,15,9,7,5,12,4,5,2,12,2,5,2,5,9,10,6,12,14,14,14,13,4,3,12,6,4,1,7,11,2,1,3,13,12,2,15,0,2,5,11,5,3,2,0,3,1,4,11,10,7,1,5,3,10,11,6,10,1,12,3,5,4,9,14,4,5,8,2,7,13,9,9,1,2,10,3,4,6,13,11,6,13,8,3,12,10,15,1,9,7,2,8,8,6,7,7,5,2,14,12,4,10,11,15,8,5,2,9,12,0,1,5,4,3,9,4,8,2,0,0,5,1,8,15,13,8,2,15,14,5,0,8,4,2,8,10,7,10,2,11,2,5,10,4,14,12,11,15,1,6,11,10,11,2,11,12,2,2,9,5,12,8,13,5,14,7,3,12,13,4,12,5,7,15,7,5,13,11,4,13,9,7,1,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 8, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"0\", \"9\", \"0\", \"0\"], \"clip_start\": 97.0, \"clip_end\": 102.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,14,8,11,6,11,0,13,2,5,7,13,14,12,3,8,9,11,7,7,11,0,10,13,5,2,6,11,13,2,4,5,13,3,10,2,9,1,14,9,6,3,8,2,14,0,11,10,4,6,10,3,9,0,14,4,12,0,10,3,1,7,6,2,10,2,7,14,13,12,6,4,6,7,3,13,3,13,5,4,7,8,7,9,13,5,3,3,2,2,4,5,3,4,9,12,5,0,9,0,0,1,3,2,15,5,9,6,6,10,2,5,1,12,15,4,1,1,13,3,10,14,10,7,5,1,6,10,4,6,14,2,4,6,8,8,8,0,7,13,9,13,5,14,2,1,12,10,2,9,11,14,6,10,5,7,9,0,15,13,14,15,7,14,9,1,7,12,10,2,13,12,5,6,4,15,6,5,6,7,11,5,11,7,11,8,3,5,15,14,8,8,2,6,14,8,7,9,2,3,13,13,14,5,9,10,9,4,12,9,6,7,3,6,13,4,5,9,12,0,5,14,8,1,11,13,7,10,14,11,3,14,12,6,4,11,0,12,14,5,8,0,15,3,11,6,5,2,10,8,0,13,10,1,1,3,9,7,7,8,7,8,6,13,11,4,10,12,9,4,9,15,0,5,3,10,14,6,8,5,9,8,2,3,6,1,0,1,15,8,11,2,6,9,4,13,13,5,13,7,7,15,0,4,9,12,6,8,0,4,14,9,7,12,10,7,7,14,13,5,5,2,14,5,6,13,4,15,9,7,5,12,4,5,2,12,2,5,2,5,9,10,6,12,14,14,14,13,4,3,12,6,4,1,7,11,2,1,3,13,12,2,15,0,2,5,11,5,3,2,0,3,1,4,11,10,7,1,5,3,10,11,6,10,1,12,3,5,4,9,14,4,5,8,2,7,13,9,9,1,2,10,3,4,6,13,11,6,13,8,3,12,10,15,1,9,7,2,8,8,6,7,7,5,2,14,12,4,10,11,15,8,5,2,9,12,0,1,5,4,3,9,4,8,2,0,0,5,1,8,15,13,8,2,15,14,5,0,8,4,2,8,10,7,10,2,11,2,5,10,4,14,12,11,15,1,6,11,10,11,2,11,12,2,2,9,5,12,8,13,5,14,7,3,12,13,4,12,5,7,15,7,5,13,11,4,13,9,7,1,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"1\", \"12\", \"3\"], \"clip_start\": 383.0, \"clip_end\": 388.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q12_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,14,8,11,6,11,0,13,2,5,7,13,14,12,3,8,9,11,7,7,11,0,10,13,5,2,6,11,13,2,4,5,13,3,10,2,9,1,14,9,6,3,8,2,14,0,11,10,4,6,10,3,9,0,14,4,12,0,10,3,1,7,6,2,10,2,7,14,13,12,6,4,6,7,3,13,3,13,5,4,7,8,7,9,13,5,3,3,2,2,4,5,3,4,9,12,5,0,9,0,0,1,3,2,15,5,9,6,6,10,2,5,1,12,15,4,1,1,13,3,10,14,10,7,5,1,6,10,4,6,14,2,4,6,8,8,8,0,7,13,9,13,5,14,2,1,12,10,2,9,11,14,6,10,5,7,9,0,15,13,14,15,7,14,9,1,7,12,10,2,13,12,5,6,4,15,6,5,6,7,11,5,11,7,11,8,3,5,15,14,8,8,2,6,14,8,7,9,2,3,13,13,14,5,9,10,9,4,12,9,6,7,3,6,13,4,5,9,12,0,5,14,8,1,11,13,7,10,14,11,3,14,12,6,4,11,0,12,14,5,8,0,15,3,11,6,5,2,10,8,0,13,10,1,1,3,9,7,7,8,7,8,6,13,11,4,10,12,9,4,9,15,0,5,3,10,14,6,8,5,9,8,2,3,6,1,0,1,15,8,11,2,6,9,4,13,13,5,13,7,7,15,0,4,9,12,6,8,0,4,14,9,7,12,10,7,7,14,13,5,5,2,14,5,6,13,4,15,9,7,5,12,4,5,2,12,2,5,2,5,9,10,6,12,14,14,14,13,4,3,12,6,4,1,7,11,2,1,3,13,12,2,15,0,2,5,11,5,3,2,0,3,1,4,11,10,7,1,5,3,10,11,6,10,1,12,3,5,4,9,14,4,5,8,2,7,13,9,9,1,2,10,3,4,6,13,11,6,13,8,3,12,10,15,1,9,7,2,8,8,6,7,7,5,2,14,12,4,10,11,15,8,5,2,9,12,0,1,5,4,3,9,4,8,2,0,0,5,1,8,15,13,8,2,15,14,5,0,8,4,2,8,10,7,10,2,11,2,5,10,4,14,12,11,15,1,6,11,10,11,2,11,12,2,2,9,5,12,8,13,5,14,7,3,12,13,4,12,5,7,15,7,5,13,11,4,13,9,7,1,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"1\", \"7\", \"11\"], \"clip_start\": 353.0, \"clip_end\": 357.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,14,8,11,6,11,0,13,2,5,7,13,14,12,3,8,9,11,7,7,11,0,10,13,5,2,6,11,13,2,4,5,13,3,10,2,9,1,14,9,6,3,8,2,14,0,11,10,4,6,10,3,9,0,14,4,12,0,10,3,1,7,6,2,10,2,7,14,13,12,6,4,6,7,3,13,3,13,5,4,7,8,7,9,13,5,3,3,2,2,4,5,3,4,9,12,5,0,9,0,0,1,3,2,15,5,9,6,6,10,2,5,1,12,15,4,1,1,13,3,10,14,10,7,5,1,6,10,4,6,14,2,4,6,8,8,8,0,7,13,9,13,5,14,2,1,12,10,2,9,11,14,6,10,5,7,9,0,15,13,14,15,7,14,9,1,7,12,10,2,13,12,5,6,4,15,6,5,6,7,11,5,11,7,11,8,3,5,15,14,8,8,2,6,14,8,7,9,2,3,13,13,14,5,9,10,9,4,12,9,6,7,3,6,13,4,5,9,12,0,5,14,8,1,11,13,7,10,14,11,3,14,12,6,4,11,0,12,14,5,8,0,15,3,11,6,5,2,10,8,0,13,10,1,1,3,9,7,7,8,7,8,6,13,11,4,10,12,9,4,9,15,0,5,3,10,14,6,8,5,9,8,2,3,6,1,0,1,15,8,11,2,6,9,4,13,13,5,13,7,7,15,0,4,9,12,6,8,0,4,14,9,7,12,10,7,7,14,13,5,5,2,14,5,6,13,4,15,9,7,5,12,4,5,2,12,2,5,2,5,9,10,6,12,14,14,14,13,4,3,12,6,4,1,7,11,2,1,3,13,12,2,15,0,2,5,11,5,3,2,0,3,1,4,11,10,7,1,5,3,10,11,6,10,1,12,3,5,4,9,14,4,5,8,2,7,13,9,9,1,2,10,3,4,6,13,11,6,13,8,3,12,10,15,1,9,7,2,8,8,6,7,7,5,2,14,12,4,10,11,15,8,5,2,9,12,0,1,5,4,3,9,4,8,2,0,0,5,1,8,15,13,8,2,15,14,5,0,8,4,2,8,10,7,10,2,11,2,5,10,4,14,12,11,15,1,6,11,10,11,2,11,12,2,2,9,5,12,8,13,5,14,7,3,12,13,4,12,5,7,15,7,5,13,11,4,13,9,7,1,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"3\", \"3\", \"2\", \"2\"], \"clip_start\": 85.0, \"clip_end\": 91.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q14_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,14,8,11,6,11,0,13,2,5,7,13,14,12,3,8,9,11,7,7,11,0,10,13,5,2,6,11,13,2,4,5,13,3,10,2,9,1,14,9,6,3,8,2,14,0,11,10,4,6,10,3,9,0,14,4,12,0,10,3,1,7,6,2,10,2,7,14,13,12,6,4,6,7,3,13,3,13,5,4,7,8,7,9,13,5,3,3,2,2,4,5,3,4,9,12,5,0,9,0,0,1,3,2,15,5,9,6,6,10,2,5,1,12,15,4,1,1,13,3,10,14,10,7,5,1,6,10,4,6,14,2,4,6,8,8,8,0,7,13,9,13,5,14,2,1,12,10,2,9,11,14,6,10,5,7,9,0,15,13,14,15,7,14,9,1,7,12,10,2,13,12,5,6,4,15,6,5,6,7,11,5,11,7,11,8,3,5,15,14,8,8,2,6,14,8,7,9,2,3,13,13,14,5,9,10,9,4,12,9,6,7,3,6,13,4,5,9,12,0,5,14,8,1,11,13,7,10,14,11,3,14,12,6,4,11,0,12,14,5,8,0,15,3,11,6,5,2,10,8,0,13,10,1,1,3,9,7,7,8,7,8,6,13,11,4,10,12,9,4,9,15,0,5,3,10,14,6,8,5,9,8,2,3,6,1,0,1,15,8,11,2,6,9,4,13,13,5,13,7,7,15,0,4,9,12,6,8,0,4,14,9,7,12,10,7,7,14,13,5,5,2,14,5,6,13,4,15,9,7,5,12,4,5,2,12,2,5,2,5,9,10,6,12,14,14,14,13,4,3,12,6,4,1,7,11,2,1,3,13,12,2,15,0,2,5,11,5,3,2,0,3,1,4,11,10,7,1,5,3,10,11,6,10,1,12,3,5,4,9,14,4,5,8,2,7,13,9,9,1,2,10,3,4,6,13,11,6,13,8,3,12,10,15,1,9,7,2,8,8,6,7,7,5,2,14,12,4,10,11,15,8,5,2,9,12,0,1,5,4,3,9,4,8,2,0,0,5,1,8,15,13,8,2,15,14,5,0,8,4,2,8,10,7,10,2,11,2,5,10,4,14,12,11,15,1,6,11,10,11,2,11,12,2,2,9,5,12,8,13,5,14,7,3,12,13,4,12,5,7,15,7,5,13,11,4,13,9,7,1,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 8, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"6\", \"1\"], \"clip_start\": 283.0, \"clip_end\": 287.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q15_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,5,14,8,11,6,11,0,13,2,5,7,13,14,12,3,8,9,11,7,7,11,0,10,13,5,2,6,11,13,2,4,5,13,3,10,2,9,1,14,9,6,3,8,2,14,0,11,10,4,6,10,3,9,0,14,4,12,0,10,3,1,7,6,2,10,2,7,14,13,12,6,4,6,7,3,13,3,13,5,4,7,8,7,9,13,5,3,3,2,2,4,5,3,4,9,12,5,0,9,0,0,1,3,2,15,5,9,6,6,10,2,5,1,12,15,4,1,1,13,3,10,14,10,7,5,1,6,10,4,6,14,2,4,6,8,8,8,0,7,13,9,13,5,14,2,1,12,10,2,9,11,14,6,10,5,7,9,0,15,13,14,15,7,14,9,1,7,12,10,2,13,12,5,6,4,15,6,5,6,7,11,5,11,7,11,8,3,5,15,14,8,8,2,6,14,8,7,9,2,3,13,13,14,5,9,10,9,4,12,9,6,7,3,6,13,4,5,9,12,0,5,14,8,1,11,13,7,10,14,11,3,14,12,6,4,11,0,12,14,5,8,0,15,3,11,6,5,2,10,8,0,13,10,1,1,3,9,7,7,8,7,8,6,13,11,4,10,12,9,4,9,15,0,5,3,10,14,6,8,5,9,8,2,3,6,1,0,1,15,8,11,2,6,9,4,13,13,5,13,7,7,15,0,4,9,12,6,8,0,4,14,9,7,12,10,7,7,14,13,5,5,2,14,5,6,13,4,15,9,7,5,12,4,5,2,12,2,5,2,5,9,10,6,12,14,14,14,13,4,3,12,6,4,1,7,11,2,1,3,13,12,2,15,0,2,5,11,5,3,2,0,3,1,4,11,10,7,1,5,3,10,11,6,10,1,12,3,5,4,9,14,4,5,8,2,7,13,9,9,1,2,10,3,4,6,13,11,6,13,8,3,12,10,15,1,9,7,2,8,8,6,7,7,5,2,14,12,4,10,11,15,8,5,2,9,12,0,1,5,4,3,9,4,8,2,0,0,5,1,8,15,13,8,2,15,14,5,0,8,4,2,8,10,7,10,2,11,2,5,10,4,14,12,11,15,1,6,11,10,11,2,11,12,2,2,9,5,12,8,13,5,14,7,3,12,13,4,12,5,7,15,7,5,13,11,4,13,9,7,1,6", "source_class": null, "source_dataset": null, "video_id": "video_8_v0", "question_id": "video_8_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"1\", \"4\", \"11\"], \"clip_start\": 196.0, \"clip_end\": 201.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,15,8,14,11,4,15,11,5,4,13,12,0,15,5,13,3,7,12,5,12,6,1,7,14,9,1,14,11,11,4,15,1,0,12,0,7,2,8,14,9,14,3,5,8,15,1,5,15,9,4,4,2,5,9,6,12,10,12,2,2,8,2,12,10,1,11,2,9,12,8,4,1,8,11,7,10,4,15,0,9,1,13,4,9,11,10,7,4,4,7,10,9,15,13,1,6,2,2,12,2,6,10,11,11,7,12,5,0,4,14,5,8,7,3,9,11,10,12,10,9,7,9,4,7,6,3,13,11,4,13,11,15,15,6,9,12,14,9,15,11,14,4,8,5,11,14,13,12,7,2,1,3,15,8,6,7,10,14,15,7,11,2,13,10,10,12,3,12,14,3,6,8,14,0,11,5,0,10,1,10,6,8,3,13,2,2,8,6,11,14,4,12,12,1,11,7,2,1,4,11,11,14,14,12,8,15,14,8,7,7,13,5,9,4,8,14,13,1,0,6,13,3,0,1,7,9,0,0,15,15,9,9,11,6,15,6,7,1,4,14,8,12,14,15,4,11,2,2,3,3,13,14,3,11,0,4,13,10,9,6,12,14,3,10,9,4,5,0,2,4,1,5,15,15,9,9,1,4,9,10,2,14,0,14,0,8,11,8,10,1,1,3,12,14,1,11,3,7,3,3,15,5,6,1,14,9,8,3,0,1,7,8,4,0,1,2,15,1,5,13,11,9,15,4,11,2,9,2,9,14,9,2,3,5,6,10,5,1,4,3,8,8,7,14,6,10,7,0,14,14,8,0,12,8,6,8,5,1,15,1,2,5,5,4,15,3,11,3,12,4,3,0,4,14,4,12,13,14,8,8,9,0,8,12,15,2,8,12,14,15,7,15,4,14,11,7,5,5,9,14,14,4,8,9,11,6,14,6,6,13,2,9,8,10,10,11,0,12,1,7,3,2,7,12,0,14,8,11,9,11,9,5,0,1,13,10,6,11,5,3,14,13,10,13,6,7,1,5,12,12,9,4,5,0,11,15,15,9,3,15,10,7,10,1,0,11,3,12,3,13,10,3,15,0,10,15,14,11,12,1,11,15,14,6,9,8,11,11,7,14,3,14,6,14,7,11,15,11,12,0,3,15,9,13,4,10,14,12,5,12,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"6\", \"8\", \"14\", \"0\"], \"clip_start\": 170.0, \"clip_end\": 175.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q1_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,15,8,14,11,4,15,11,5,4,13,12,0,15,5,13,3,7,12,5,12,6,1,7,14,9,1,14,11,11,4,15,1,0,12,0,7,2,8,14,9,14,3,5,8,15,1,5,15,9,4,4,2,5,9,6,12,10,12,2,2,8,2,12,10,1,11,2,9,12,8,4,1,8,11,7,10,4,15,0,9,1,13,4,9,11,10,7,4,4,7,10,9,15,13,1,6,2,2,12,2,6,10,11,11,7,12,5,0,4,14,5,8,7,3,9,11,10,12,10,9,7,9,4,7,6,3,13,11,4,13,11,15,15,6,9,12,14,9,15,11,14,4,8,5,11,14,13,12,7,2,1,3,15,8,6,7,10,14,15,7,11,2,13,10,10,12,3,12,14,3,6,8,14,0,11,5,0,10,1,10,6,8,3,13,2,2,8,6,11,14,4,12,12,1,11,7,2,1,4,11,11,14,14,12,8,15,14,8,7,7,13,5,9,4,8,14,13,1,0,6,13,3,0,1,7,9,0,0,15,15,9,9,11,6,15,6,7,1,4,14,8,12,14,15,4,11,2,2,3,3,13,14,3,11,0,4,13,10,9,6,12,14,3,10,9,4,5,0,2,4,1,5,15,15,9,9,1,4,9,10,2,14,0,14,0,8,11,8,10,1,1,3,12,14,1,11,3,7,3,3,15,5,6,1,14,9,8,3,0,1,7,8,4,0,1,2,15,1,5,13,11,9,15,4,11,2,9,2,9,14,9,2,3,5,6,10,5,1,4,3,8,8,7,14,6,10,7,0,14,14,8,0,12,8,6,8,5,1,15,1,2,5,5,4,15,3,11,3,12,4,3,0,4,14,4,12,13,14,8,8,9,0,8,12,15,2,8,12,14,15,7,15,4,14,11,7,5,5,9,14,14,4,8,9,11,6,14,6,6,13,2,9,8,10,10,11,0,12,1,7,3,2,7,12,0,14,8,11,9,11,9,5,0,1,13,10,6,11,5,3,14,13,10,13,6,7,1,5,12,12,9,4,5,0,11,15,15,9,3,15,10,7,10,1,0,11,3,12,3,13,10,3,15,0,10,15,14,11,12,1,11,15,14,6,9,8,11,11,7,14,3,14,6,14,7,11,15,11,12,0,3,15,9,13,4,10,14,12,5,12,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"15\"], \"clip_start\": 458.0, \"clip_end\": 461.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,15,8,14,11,4,15,11,5,4,13,12,0,15,5,13,3,7,12,5,12,6,1,7,14,9,1,14,11,11,4,15,1,0,12,0,7,2,8,14,9,14,3,5,8,15,1,5,15,9,4,4,2,5,9,6,12,10,12,2,2,8,2,12,10,1,11,2,9,12,8,4,1,8,11,7,10,4,15,0,9,1,13,4,9,11,10,7,4,4,7,10,9,15,13,1,6,2,2,12,2,6,10,11,11,7,12,5,0,4,14,5,8,7,3,9,11,10,12,10,9,7,9,4,7,6,3,13,11,4,13,11,15,15,6,9,12,14,9,15,11,14,4,8,5,11,14,13,12,7,2,1,3,15,8,6,7,10,14,15,7,11,2,13,10,10,12,3,12,14,3,6,8,14,0,11,5,0,10,1,10,6,8,3,13,2,2,8,6,11,14,4,12,12,1,11,7,2,1,4,11,11,14,14,12,8,15,14,8,7,7,13,5,9,4,8,14,13,1,0,6,13,3,0,1,7,9,0,0,15,15,9,9,11,6,15,6,7,1,4,14,8,12,14,15,4,11,2,2,3,3,13,14,3,11,0,4,13,10,9,6,12,14,3,10,9,4,5,0,2,4,1,5,15,15,9,9,1,4,9,10,2,14,0,14,0,8,11,8,10,1,1,3,12,14,1,11,3,7,3,3,15,5,6,1,14,9,8,3,0,1,7,8,4,0,1,2,15,1,5,13,11,9,15,4,11,2,9,2,9,14,9,2,3,5,6,10,5,1,4,3,8,8,7,14,6,10,7,0,14,14,8,0,12,8,6,8,5,1,15,1,2,5,5,4,15,3,11,3,12,4,3,0,4,14,4,12,13,14,8,8,9,0,8,12,15,2,8,12,14,15,7,15,4,14,11,7,5,5,9,14,14,4,8,9,11,6,14,6,6,13,2,9,8,10,10,11,0,12,1,7,3,2,7,12,0,14,8,11,9,11,9,5,0,1,13,10,6,11,5,3,14,13,10,13,6,7,1,5,12,12,9,4,5,0,11,15,15,9,3,15,10,7,10,1,0,11,3,12,3,13,10,3,15,0,10,15,14,11,12,1,11,15,14,6,9,8,11,11,7,14,3,14,6,14,7,11,15,11,12,0,3,15,9,13,4,10,14,12,5,12,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"2\", \"12\", \"3\", \"1\", \"4\"], \"clip_start\": 81.0, \"clip_end\": 87.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q3_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,15,8,14,11,4,15,11,5,4,13,12,0,15,5,13,3,7,12,5,12,6,1,7,14,9,1,14,11,11,4,15,1,0,12,0,7,2,8,14,9,14,3,5,8,15,1,5,15,9,4,4,2,5,9,6,12,10,12,2,2,8,2,12,10,1,11,2,9,12,8,4,1,8,11,7,10,4,15,0,9,1,13,4,9,11,10,7,4,4,7,10,9,15,13,1,6,2,2,12,2,6,10,11,11,7,12,5,0,4,14,5,8,7,3,9,11,10,12,10,9,7,9,4,7,6,3,13,11,4,13,11,15,15,6,9,12,14,9,15,11,14,4,8,5,11,14,13,12,7,2,1,3,15,8,6,7,10,14,15,7,11,2,13,10,10,12,3,12,14,3,6,8,14,0,11,5,0,10,1,10,6,8,3,13,2,2,8,6,11,14,4,12,12,1,11,7,2,1,4,11,11,14,14,12,8,15,14,8,7,7,13,5,9,4,8,14,13,1,0,6,13,3,0,1,7,9,0,0,15,15,9,9,11,6,15,6,7,1,4,14,8,12,14,15,4,11,2,2,3,3,13,14,3,11,0,4,13,10,9,6,12,14,3,10,9,4,5,0,2,4,1,5,15,15,9,9,1,4,9,10,2,14,0,14,0,8,11,8,10,1,1,3,12,14,1,11,3,7,3,3,15,5,6,1,14,9,8,3,0,1,7,8,4,0,1,2,15,1,5,13,11,9,15,4,11,2,9,2,9,14,9,2,3,5,6,10,5,1,4,3,8,8,7,14,6,10,7,0,14,14,8,0,12,8,6,8,5,1,15,1,2,5,5,4,15,3,11,3,12,4,3,0,4,14,4,12,13,14,8,8,9,0,8,12,15,2,8,12,14,15,7,15,4,14,11,7,5,5,9,14,14,4,8,9,11,6,14,6,6,13,2,9,8,10,10,11,0,12,1,7,3,2,7,12,0,14,8,11,9,11,9,5,0,1,13,10,6,11,5,3,14,13,10,13,6,7,1,5,12,12,9,4,5,0,11,15,15,9,3,15,10,7,10,1,0,11,3,12,3,13,10,3,15,0,10,15,14,11,12,1,11,15,14,6,9,8,11,11,7,14,3,14,6,14,7,11,15,11,12,0,3,15,9,13,4,10,14,12,5,12,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"11\", \"14\", \"4\"], \"clip_start\": 188.0, \"clip_end\": 192.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q4_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,15,8,14,11,4,15,11,5,4,13,12,0,15,5,13,3,7,12,5,12,6,1,7,14,9,1,14,11,11,4,15,1,0,12,0,7,2,8,14,9,14,3,5,8,15,1,5,15,9,4,4,2,5,9,6,12,10,12,2,2,8,2,12,10,1,11,2,9,12,8,4,1,8,11,7,10,4,15,0,9,1,13,4,9,11,10,7,4,4,7,10,9,15,13,1,6,2,2,12,2,6,10,11,11,7,12,5,0,4,14,5,8,7,3,9,11,10,12,10,9,7,9,4,7,6,3,13,11,4,13,11,15,15,6,9,12,14,9,15,11,14,4,8,5,11,14,13,12,7,2,1,3,15,8,6,7,10,14,15,7,11,2,13,10,10,12,3,12,14,3,6,8,14,0,11,5,0,10,1,10,6,8,3,13,2,2,8,6,11,14,4,12,12,1,11,7,2,1,4,11,11,14,14,12,8,15,14,8,7,7,13,5,9,4,8,14,13,1,0,6,13,3,0,1,7,9,0,0,15,15,9,9,11,6,15,6,7,1,4,14,8,12,14,15,4,11,2,2,3,3,13,14,3,11,0,4,13,10,9,6,12,14,3,10,9,4,5,0,2,4,1,5,15,15,9,9,1,4,9,10,2,14,0,14,0,8,11,8,10,1,1,3,12,14,1,11,3,7,3,3,15,5,6,1,14,9,8,3,0,1,7,8,4,0,1,2,15,1,5,13,11,9,15,4,11,2,9,2,9,14,9,2,3,5,6,10,5,1,4,3,8,8,7,14,6,10,7,0,14,14,8,0,12,8,6,8,5,1,15,1,2,5,5,4,15,3,11,3,12,4,3,0,4,14,4,12,13,14,8,8,9,0,8,12,15,2,8,12,14,15,7,15,4,14,11,7,5,5,9,14,14,4,8,9,11,6,14,6,6,13,2,9,8,10,10,11,0,12,1,7,3,2,7,12,0,14,8,11,9,11,9,5,0,1,13,10,6,11,5,3,14,13,10,13,6,7,1,5,12,12,9,4,5,0,11,15,15,9,3,15,10,7,10,1,0,11,3,12,3,13,10,3,15,0,10,15,14,11,12,1,11,15,14,6,9,8,11,11,7,14,3,14,6,14,7,11,15,11,12,0,3,15,9,13,4,10,14,12,5,12,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"2\", \"8\", \"6\"], \"clip_start\": 185.0, \"clip_end\": 189.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,15,8,14,11,4,15,11,5,4,13,12,0,15,5,13,3,7,12,5,12,6,1,7,14,9,1,14,11,11,4,15,1,0,12,0,7,2,8,14,9,14,3,5,8,15,1,5,15,9,4,4,2,5,9,6,12,10,12,2,2,8,2,12,10,1,11,2,9,12,8,4,1,8,11,7,10,4,15,0,9,1,13,4,9,11,10,7,4,4,7,10,9,15,13,1,6,2,2,12,2,6,10,11,11,7,12,5,0,4,14,5,8,7,3,9,11,10,12,10,9,7,9,4,7,6,3,13,11,4,13,11,15,15,6,9,12,14,9,15,11,14,4,8,5,11,14,13,12,7,2,1,3,15,8,6,7,10,14,15,7,11,2,13,10,10,12,3,12,14,3,6,8,14,0,11,5,0,10,1,10,6,8,3,13,2,2,8,6,11,14,4,12,12,1,11,7,2,1,4,11,11,14,14,12,8,15,14,8,7,7,13,5,9,4,8,14,13,1,0,6,13,3,0,1,7,9,0,0,15,15,9,9,11,6,15,6,7,1,4,14,8,12,14,15,4,11,2,2,3,3,13,14,3,11,0,4,13,10,9,6,12,14,3,10,9,4,5,0,2,4,1,5,15,15,9,9,1,4,9,10,2,14,0,14,0,8,11,8,10,1,1,3,12,14,1,11,3,7,3,3,15,5,6,1,14,9,8,3,0,1,7,8,4,0,1,2,15,1,5,13,11,9,15,4,11,2,9,2,9,14,9,2,3,5,6,10,5,1,4,3,8,8,7,14,6,10,7,0,14,14,8,0,12,8,6,8,5,1,15,1,2,5,5,4,15,3,11,3,12,4,3,0,4,14,4,12,13,14,8,8,9,0,8,12,15,2,8,12,14,15,7,15,4,14,11,7,5,5,9,14,14,4,8,9,11,6,14,6,6,13,2,9,8,10,10,11,0,12,1,7,3,2,7,12,0,14,8,11,9,11,9,5,0,1,13,10,6,11,5,3,14,13,10,13,6,7,1,5,12,12,9,4,5,0,11,15,15,9,3,15,10,7,10,1,0,11,3,12,3,13,10,3,15,0,10,15,14,11,12,1,11,15,14,6,9,8,11,11,7,14,3,14,6,14,7,11,15,11,12,0,3,15,9,13,4,10,14,12,5,12,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"10\", \"15\"], \"clip_start\": 473.0, \"clip_end\": 477.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q6_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,15,8,14,11,4,15,11,5,4,13,12,0,15,5,13,3,7,12,5,12,6,1,7,14,9,1,14,11,11,4,15,1,0,12,0,7,2,8,14,9,14,3,5,8,15,1,5,15,9,4,4,2,5,9,6,12,10,12,2,2,8,2,12,10,1,11,2,9,12,8,4,1,8,11,7,10,4,15,0,9,1,13,4,9,11,10,7,4,4,7,10,9,15,13,1,6,2,2,12,2,6,10,11,11,7,12,5,0,4,14,5,8,7,3,9,11,10,12,10,9,7,9,4,7,6,3,13,11,4,13,11,15,15,6,9,12,14,9,15,11,14,4,8,5,11,14,13,12,7,2,1,3,15,8,6,7,10,14,15,7,11,2,13,10,10,12,3,12,14,3,6,8,14,0,11,5,0,10,1,10,6,8,3,13,2,2,8,6,11,14,4,12,12,1,11,7,2,1,4,11,11,14,14,12,8,15,14,8,7,7,13,5,9,4,8,14,13,1,0,6,13,3,0,1,7,9,0,0,15,15,9,9,11,6,15,6,7,1,4,14,8,12,14,15,4,11,2,2,3,3,13,14,3,11,0,4,13,10,9,6,12,14,3,10,9,4,5,0,2,4,1,5,15,15,9,9,1,4,9,10,2,14,0,14,0,8,11,8,10,1,1,3,12,14,1,11,3,7,3,3,15,5,6,1,14,9,8,3,0,1,7,8,4,0,1,2,15,1,5,13,11,9,15,4,11,2,9,2,9,14,9,2,3,5,6,10,5,1,4,3,8,8,7,14,6,10,7,0,14,14,8,0,12,8,6,8,5,1,15,1,2,5,5,4,15,3,11,3,12,4,3,0,4,14,4,12,13,14,8,8,9,0,8,12,15,2,8,12,14,15,7,15,4,14,11,7,5,5,9,14,14,4,8,9,11,6,14,6,6,13,2,9,8,10,10,11,0,12,1,7,3,2,7,12,0,14,8,11,9,11,9,5,0,1,13,10,6,11,5,3,14,13,10,13,6,7,1,5,12,12,9,4,5,0,11,15,15,9,3,15,10,7,10,1,0,11,3,12,3,13,10,3,15,0,10,15,14,11,12,1,11,15,14,6,9,8,11,11,7,14,3,14,6,14,7,11,15,11,12,0,3,15,9,13,4,10,14,12,5,12,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"7\", \"3\", \"3\", \"15\"], \"clip_start\": 297.0, \"clip_end\": 302.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q7_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,15,8,14,11,4,15,11,5,4,13,12,0,15,5,13,3,7,12,5,12,6,1,7,14,9,1,14,11,11,4,15,1,0,12,0,7,2,8,14,9,14,3,5,8,15,1,5,15,9,4,4,2,5,9,6,12,10,12,2,2,8,2,12,10,1,11,2,9,12,8,4,1,8,11,7,10,4,15,0,9,1,13,4,9,11,10,7,4,4,7,10,9,15,13,1,6,2,2,12,2,6,10,11,11,7,12,5,0,4,14,5,8,7,3,9,11,10,12,10,9,7,9,4,7,6,3,13,11,4,13,11,15,15,6,9,12,14,9,15,11,14,4,8,5,11,14,13,12,7,2,1,3,15,8,6,7,10,14,15,7,11,2,13,10,10,12,3,12,14,3,6,8,14,0,11,5,0,10,1,10,6,8,3,13,2,2,8,6,11,14,4,12,12,1,11,7,2,1,4,11,11,14,14,12,8,15,14,8,7,7,13,5,9,4,8,14,13,1,0,6,13,3,0,1,7,9,0,0,15,15,9,9,11,6,15,6,7,1,4,14,8,12,14,15,4,11,2,2,3,3,13,14,3,11,0,4,13,10,9,6,12,14,3,10,9,4,5,0,2,4,1,5,15,15,9,9,1,4,9,10,2,14,0,14,0,8,11,8,10,1,1,3,12,14,1,11,3,7,3,3,15,5,6,1,14,9,8,3,0,1,7,8,4,0,1,2,15,1,5,13,11,9,15,4,11,2,9,2,9,14,9,2,3,5,6,10,5,1,4,3,8,8,7,14,6,10,7,0,14,14,8,0,12,8,6,8,5,1,15,1,2,5,5,4,15,3,11,3,12,4,3,0,4,14,4,12,13,14,8,8,9,0,8,12,15,2,8,12,14,15,7,15,4,14,11,7,5,5,9,14,14,4,8,9,11,6,14,6,6,13,2,9,8,10,10,11,0,12,1,7,3,2,7,12,0,14,8,11,9,11,9,5,0,1,13,10,6,11,5,3,14,13,10,13,6,7,1,5,12,12,9,4,5,0,11,15,15,9,3,15,10,7,10,1,0,11,3,12,3,13,10,3,15,0,10,15,14,11,12,1,11,15,14,6,9,8,11,11,7,14,3,14,6,14,7,11,15,11,12,0,3,15,9,13,4,10,14,12,5,12,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"2\", \"12\", \"10\", \"1\"], \"clip_start\": 61.0, \"clip_end\": 66.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q8_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,15,8,14,11,4,15,11,5,4,13,12,0,15,5,13,3,7,12,5,12,6,1,7,14,9,1,14,11,11,4,15,1,0,12,0,7,2,8,14,9,14,3,5,8,15,1,5,15,9,4,4,2,5,9,6,12,10,12,2,2,8,2,12,10,1,11,2,9,12,8,4,1,8,11,7,10,4,15,0,9,1,13,4,9,11,10,7,4,4,7,10,9,15,13,1,6,2,2,12,2,6,10,11,11,7,12,5,0,4,14,5,8,7,3,9,11,10,12,10,9,7,9,4,7,6,3,13,11,4,13,11,15,15,6,9,12,14,9,15,11,14,4,8,5,11,14,13,12,7,2,1,3,15,8,6,7,10,14,15,7,11,2,13,10,10,12,3,12,14,3,6,8,14,0,11,5,0,10,1,10,6,8,3,13,2,2,8,6,11,14,4,12,12,1,11,7,2,1,4,11,11,14,14,12,8,15,14,8,7,7,13,5,9,4,8,14,13,1,0,6,13,3,0,1,7,9,0,0,15,15,9,9,11,6,15,6,7,1,4,14,8,12,14,15,4,11,2,2,3,3,13,14,3,11,0,4,13,10,9,6,12,14,3,10,9,4,5,0,2,4,1,5,15,15,9,9,1,4,9,10,2,14,0,14,0,8,11,8,10,1,1,3,12,14,1,11,3,7,3,3,15,5,6,1,14,9,8,3,0,1,7,8,4,0,1,2,15,1,5,13,11,9,15,4,11,2,9,2,9,14,9,2,3,5,6,10,5,1,4,3,8,8,7,14,6,10,7,0,14,14,8,0,12,8,6,8,5,1,15,1,2,5,5,4,15,3,11,3,12,4,3,0,4,14,4,12,13,14,8,8,9,0,8,12,15,2,8,12,14,15,7,15,4,14,11,7,5,5,9,14,14,4,8,9,11,6,14,6,6,13,2,9,8,10,10,11,0,12,1,7,3,2,7,12,0,14,8,11,9,11,9,5,0,1,13,10,6,11,5,3,14,13,10,13,6,7,1,5,12,12,9,4,5,0,11,15,15,9,3,15,10,7,10,1,0,11,3,12,3,13,10,3,15,0,10,15,14,11,12,1,11,15,14,6,9,8,11,11,7,14,3,14,6,14,7,11,15,11,12,0,3,15,9,13,4,10,14,12,5,12,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"3\", \"13\", \"10\", \"3\"], \"clip_start\": 468.0, \"clip_end\": 473.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,15,8,14,11,4,15,11,5,4,13,12,0,15,5,13,3,7,12,5,12,6,1,7,14,9,1,14,11,11,4,15,1,0,12,0,7,2,8,14,9,14,3,5,8,15,1,5,15,9,4,4,2,5,9,6,12,10,12,2,2,8,2,12,10,1,11,2,9,12,8,4,1,8,11,7,10,4,15,0,9,1,13,4,9,11,10,7,4,4,7,10,9,15,13,1,6,2,2,12,2,6,10,11,11,7,12,5,0,4,14,5,8,7,3,9,11,10,12,10,9,7,9,4,7,6,3,13,11,4,13,11,15,15,6,9,12,14,9,15,11,14,4,8,5,11,14,13,12,7,2,1,3,15,8,6,7,10,14,15,7,11,2,13,10,10,12,3,12,14,3,6,8,14,0,11,5,0,10,1,10,6,8,3,13,2,2,8,6,11,14,4,12,12,1,11,7,2,1,4,11,11,14,14,12,8,15,14,8,7,7,13,5,9,4,8,14,13,1,0,6,13,3,0,1,7,9,0,0,15,15,9,9,11,6,15,6,7,1,4,14,8,12,14,15,4,11,2,2,3,3,13,14,3,11,0,4,13,10,9,6,12,14,3,10,9,4,5,0,2,4,1,5,15,15,9,9,1,4,9,10,2,14,0,14,0,8,11,8,10,1,1,3,12,14,1,11,3,7,3,3,15,5,6,1,14,9,8,3,0,1,7,8,4,0,1,2,15,1,5,13,11,9,15,4,11,2,9,2,9,14,9,2,3,5,6,10,5,1,4,3,8,8,7,14,6,10,7,0,14,14,8,0,12,8,6,8,5,1,15,1,2,5,5,4,15,3,11,3,12,4,3,0,4,14,4,12,13,14,8,8,9,0,8,12,15,2,8,12,14,15,7,15,4,14,11,7,5,5,9,14,14,4,8,9,11,6,14,6,6,13,2,9,8,10,10,11,0,12,1,7,3,2,7,12,0,14,8,11,9,11,9,5,0,1,13,10,6,11,5,3,14,13,10,13,6,7,1,5,12,12,9,4,5,0,11,15,15,9,3,15,10,7,10,1,0,11,3,12,3,13,10,3,15,0,10,15,14,11,12,1,11,15,14,6,9,8,11,11,7,14,3,14,6,14,7,11,15,11,12,0,3,15,9,13,4,10,14,12,5,12,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"8\", \"3\", \"13\", \"2\"], \"clip_start\": 181.0, \"clip_end\": 186.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q10_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,15,8,14,11,4,15,11,5,4,13,12,0,15,5,13,3,7,12,5,12,6,1,7,14,9,1,14,11,11,4,15,1,0,12,0,7,2,8,14,9,14,3,5,8,15,1,5,15,9,4,4,2,5,9,6,12,10,12,2,2,8,2,12,10,1,11,2,9,12,8,4,1,8,11,7,10,4,15,0,9,1,13,4,9,11,10,7,4,4,7,10,9,15,13,1,6,2,2,12,2,6,10,11,11,7,12,5,0,4,14,5,8,7,3,9,11,10,12,10,9,7,9,4,7,6,3,13,11,4,13,11,15,15,6,9,12,14,9,15,11,14,4,8,5,11,14,13,12,7,2,1,3,15,8,6,7,10,14,15,7,11,2,13,10,10,12,3,12,14,3,6,8,14,0,11,5,0,10,1,10,6,8,3,13,2,2,8,6,11,14,4,12,12,1,11,7,2,1,4,11,11,14,14,12,8,15,14,8,7,7,13,5,9,4,8,14,13,1,0,6,13,3,0,1,7,9,0,0,15,15,9,9,11,6,15,6,7,1,4,14,8,12,14,15,4,11,2,2,3,3,13,14,3,11,0,4,13,10,9,6,12,14,3,10,9,4,5,0,2,4,1,5,15,15,9,9,1,4,9,10,2,14,0,14,0,8,11,8,10,1,1,3,12,14,1,11,3,7,3,3,15,5,6,1,14,9,8,3,0,1,7,8,4,0,1,2,15,1,5,13,11,9,15,4,11,2,9,2,9,14,9,2,3,5,6,10,5,1,4,3,8,8,7,14,6,10,7,0,14,14,8,0,12,8,6,8,5,1,15,1,2,5,5,4,15,3,11,3,12,4,3,0,4,14,4,12,13,14,8,8,9,0,8,12,15,2,8,12,14,15,7,15,4,14,11,7,5,5,9,14,14,4,8,9,11,6,14,6,6,13,2,9,8,10,10,11,0,12,1,7,3,2,7,12,0,14,8,11,9,11,9,5,0,1,13,10,6,11,5,3,14,13,10,13,6,7,1,5,12,12,9,4,5,0,11,15,15,9,3,15,10,7,10,1,0,11,3,12,3,13,10,3,15,0,10,15,14,11,12,1,11,15,14,6,9,8,11,11,7,14,3,14,6,14,7,11,15,11,12,0,3,15,9,13,4,10,14,12,5,12,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"12\", \"4\", \"3\"], \"clip_start\": 367.0, \"clip_end\": 372.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q11_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,15,8,14,11,4,15,11,5,4,13,12,0,15,5,13,3,7,12,5,12,6,1,7,14,9,1,14,11,11,4,15,1,0,12,0,7,2,8,14,9,14,3,5,8,15,1,5,15,9,4,4,2,5,9,6,12,10,12,2,2,8,2,12,10,1,11,2,9,12,8,4,1,8,11,7,10,4,15,0,9,1,13,4,9,11,10,7,4,4,7,10,9,15,13,1,6,2,2,12,2,6,10,11,11,7,12,5,0,4,14,5,8,7,3,9,11,10,12,10,9,7,9,4,7,6,3,13,11,4,13,11,15,15,6,9,12,14,9,15,11,14,4,8,5,11,14,13,12,7,2,1,3,15,8,6,7,10,14,15,7,11,2,13,10,10,12,3,12,14,3,6,8,14,0,11,5,0,10,1,10,6,8,3,13,2,2,8,6,11,14,4,12,12,1,11,7,2,1,4,11,11,14,14,12,8,15,14,8,7,7,13,5,9,4,8,14,13,1,0,6,13,3,0,1,7,9,0,0,15,15,9,9,11,6,15,6,7,1,4,14,8,12,14,15,4,11,2,2,3,3,13,14,3,11,0,4,13,10,9,6,12,14,3,10,9,4,5,0,2,4,1,5,15,15,9,9,1,4,9,10,2,14,0,14,0,8,11,8,10,1,1,3,12,14,1,11,3,7,3,3,15,5,6,1,14,9,8,3,0,1,7,8,4,0,1,2,15,1,5,13,11,9,15,4,11,2,9,2,9,14,9,2,3,5,6,10,5,1,4,3,8,8,7,14,6,10,7,0,14,14,8,0,12,8,6,8,5,1,15,1,2,5,5,4,15,3,11,3,12,4,3,0,4,14,4,12,13,14,8,8,9,0,8,12,15,2,8,12,14,15,7,15,4,14,11,7,5,5,9,14,14,4,8,9,11,6,14,6,6,13,2,9,8,10,10,11,0,12,1,7,3,2,7,12,0,14,8,11,9,11,9,5,0,1,13,10,6,11,5,3,14,13,10,13,6,7,1,5,12,12,9,4,5,0,11,15,15,9,3,15,10,7,10,1,0,11,3,12,3,13,10,3,15,0,10,15,14,11,12,1,11,15,14,6,9,8,11,11,7,14,3,14,6,14,7,11,15,11,12,0,3,15,9,13,4,10,14,12,5,12,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"4\", \"8\", \"9\"], \"clip_start\": 400.0, \"clip_end\": 405.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q12_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,15,8,14,11,4,15,11,5,4,13,12,0,15,5,13,3,7,12,5,12,6,1,7,14,9,1,14,11,11,4,15,1,0,12,0,7,2,8,14,9,14,3,5,8,15,1,5,15,9,4,4,2,5,9,6,12,10,12,2,2,8,2,12,10,1,11,2,9,12,8,4,1,8,11,7,10,4,15,0,9,1,13,4,9,11,10,7,4,4,7,10,9,15,13,1,6,2,2,12,2,6,10,11,11,7,12,5,0,4,14,5,8,7,3,9,11,10,12,10,9,7,9,4,7,6,3,13,11,4,13,11,15,15,6,9,12,14,9,15,11,14,4,8,5,11,14,13,12,7,2,1,3,15,8,6,7,10,14,15,7,11,2,13,10,10,12,3,12,14,3,6,8,14,0,11,5,0,10,1,10,6,8,3,13,2,2,8,6,11,14,4,12,12,1,11,7,2,1,4,11,11,14,14,12,8,15,14,8,7,7,13,5,9,4,8,14,13,1,0,6,13,3,0,1,7,9,0,0,15,15,9,9,11,6,15,6,7,1,4,14,8,12,14,15,4,11,2,2,3,3,13,14,3,11,0,4,13,10,9,6,12,14,3,10,9,4,5,0,2,4,1,5,15,15,9,9,1,4,9,10,2,14,0,14,0,8,11,8,10,1,1,3,12,14,1,11,3,7,3,3,15,5,6,1,14,9,8,3,0,1,7,8,4,0,1,2,15,1,5,13,11,9,15,4,11,2,9,2,9,14,9,2,3,5,6,10,5,1,4,3,8,8,7,14,6,10,7,0,14,14,8,0,12,8,6,8,5,1,15,1,2,5,5,4,15,3,11,3,12,4,3,0,4,14,4,12,13,14,8,8,9,0,8,12,15,2,8,12,14,15,7,15,4,14,11,7,5,5,9,14,14,4,8,9,11,6,14,6,6,13,2,9,8,10,10,11,0,12,1,7,3,2,7,12,0,14,8,11,9,11,9,5,0,1,13,10,6,11,5,3,14,13,10,13,6,7,1,5,12,12,9,4,5,0,11,15,15,9,3,15,10,7,10,1,0,11,3,12,3,13,10,3,15,0,10,15,14,11,12,1,11,15,14,6,9,8,11,11,7,14,3,14,6,14,7,11,15,11,12,0,3,15,9,13,4,10,14,12,5,12,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"12\", \"1\", \"11\"], \"clip_start\": 477.0, \"clip_end\": 482.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,15,8,14,11,4,15,11,5,4,13,12,0,15,5,13,3,7,12,5,12,6,1,7,14,9,1,14,11,11,4,15,1,0,12,0,7,2,8,14,9,14,3,5,8,15,1,5,15,9,4,4,2,5,9,6,12,10,12,2,2,8,2,12,10,1,11,2,9,12,8,4,1,8,11,7,10,4,15,0,9,1,13,4,9,11,10,7,4,4,7,10,9,15,13,1,6,2,2,12,2,6,10,11,11,7,12,5,0,4,14,5,8,7,3,9,11,10,12,10,9,7,9,4,7,6,3,13,11,4,13,11,15,15,6,9,12,14,9,15,11,14,4,8,5,11,14,13,12,7,2,1,3,15,8,6,7,10,14,15,7,11,2,13,10,10,12,3,12,14,3,6,8,14,0,11,5,0,10,1,10,6,8,3,13,2,2,8,6,11,14,4,12,12,1,11,7,2,1,4,11,11,14,14,12,8,15,14,8,7,7,13,5,9,4,8,14,13,1,0,6,13,3,0,1,7,9,0,0,15,15,9,9,11,6,15,6,7,1,4,14,8,12,14,15,4,11,2,2,3,3,13,14,3,11,0,4,13,10,9,6,12,14,3,10,9,4,5,0,2,4,1,5,15,15,9,9,1,4,9,10,2,14,0,14,0,8,11,8,10,1,1,3,12,14,1,11,3,7,3,3,15,5,6,1,14,9,8,3,0,1,7,8,4,0,1,2,15,1,5,13,11,9,15,4,11,2,9,2,9,14,9,2,3,5,6,10,5,1,4,3,8,8,7,14,6,10,7,0,14,14,8,0,12,8,6,8,5,1,15,1,2,5,5,4,15,3,11,3,12,4,3,0,4,14,4,12,13,14,8,8,9,0,8,12,15,2,8,12,14,15,7,15,4,14,11,7,5,5,9,14,14,4,8,9,11,6,14,6,6,13,2,9,8,10,10,11,0,12,1,7,3,2,7,12,0,14,8,11,9,11,9,5,0,1,13,10,6,11,5,3,14,13,10,13,6,7,1,5,12,12,9,4,5,0,11,15,15,9,3,15,10,7,10,1,0,11,3,12,3,13,10,3,15,0,10,15,14,11,12,1,11,15,14,6,9,8,11,11,7,14,3,14,6,14,7,11,15,11,12,0,3,15,9,13,4,10,14,12,5,12,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 9, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"13\", \"10\"], \"clip_start\": 434.0, \"clip_end\": 437.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q14_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,15,8,14,11,4,15,11,5,4,13,12,0,15,5,13,3,7,12,5,12,6,1,7,14,9,1,14,11,11,4,15,1,0,12,0,7,2,8,14,9,14,3,5,8,15,1,5,15,9,4,4,2,5,9,6,12,10,12,2,2,8,2,12,10,1,11,2,9,12,8,4,1,8,11,7,10,4,15,0,9,1,13,4,9,11,10,7,4,4,7,10,9,15,13,1,6,2,2,12,2,6,10,11,11,7,12,5,0,4,14,5,8,7,3,9,11,10,12,10,9,7,9,4,7,6,3,13,11,4,13,11,15,15,6,9,12,14,9,15,11,14,4,8,5,11,14,13,12,7,2,1,3,15,8,6,7,10,14,15,7,11,2,13,10,10,12,3,12,14,3,6,8,14,0,11,5,0,10,1,10,6,8,3,13,2,2,8,6,11,14,4,12,12,1,11,7,2,1,4,11,11,14,14,12,8,15,14,8,7,7,13,5,9,4,8,14,13,1,0,6,13,3,0,1,7,9,0,0,15,15,9,9,11,6,15,6,7,1,4,14,8,12,14,15,4,11,2,2,3,3,13,14,3,11,0,4,13,10,9,6,12,14,3,10,9,4,5,0,2,4,1,5,15,15,9,9,1,4,9,10,2,14,0,14,0,8,11,8,10,1,1,3,12,14,1,11,3,7,3,3,15,5,6,1,14,9,8,3,0,1,7,8,4,0,1,2,15,1,5,13,11,9,15,4,11,2,9,2,9,14,9,2,3,5,6,10,5,1,4,3,8,8,7,14,6,10,7,0,14,14,8,0,12,8,6,8,5,1,15,1,2,5,5,4,15,3,11,3,12,4,3,0,4,14,4,12,13,14,8,8,9,0,8,12,15,2,8,12,14,15,7,15,4,14,11,7,5,5,9,14,14,4,8,9,11,6,14,6,6,13,2,9,8,10,10,11,0,12,1,7,3,2,7,12,0,14,8,11,9,11,9,5,0,1,13,10,6,11,5,3,14,13,10,13,6,7,1,5,12,12,9,4,5,0,11,15,15,9,3,15,10,7,10,1,0,11,3,12,3,13,10,3,15,0,10,15,14,11,12,1,11,15,14,6,9,8,11,11,7,14,3,14,6,14,7,11,15,11,12,0,3,15,9,13,4,10,14,12,5,12,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 9, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"12\", \"7\", \"2\", \"1\"], \"clip_start\": 146.0, \"clip_end\": 152.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,15,8,14,11,4,15,11,5,4,13,12,0,15,5,13,3,7,12,5,12,6,1,7,14,9,1,14,11,11,4,15,1,0,12,0,7,2,8,14,9,14,3,5,8,15,1,5,15,9,4,4,2,5,9,6,12,10,12,2,2,8,2,12,10,1,11,2,9,12,8,4,1,8,11,7,10,4,15,0,9,1,13,4,9,11,10,7,4,4,7,10,9,15,13,1,6,2,2,12,2,6,10,11,11,7,12,5,0,4,14,5,8,7,3,9,11,10,12,10,9,7,9,4,7,6,3,13,11,4,13,11,15,15,6,9,12,14,9,15,11,14,4,8,5,11,14,13,12,7,2,1,3,15,8,6,7,10,14,15,7,11,2,13,10,10,12,3,12,14,3,6,8,14,0,11,5,0,10,1,10,6,8,3,13,2,2,8,6,11,14,4,12,12,1,11,7,2,1,4,11,11,14,14,12,8,15,14,8,7,7,13,5,9,4,8,14,13,1,0,6,13,3,0,1,7,9,0,0,15,15,9,9,11,6,15,6,7,1,4,14,8,12,14,15,4,11,2,2,3,3,13,14,3,11,0,4,13,10,9,6,12,14,3,10,9,4,5,0,2,4,1,5,15,15,9,9,1,4,9,10,2,14,0,14,0,8,11,8,10,1,1,3,12,14,1,11,3,7,3,3,15,5,6,1,14,9,8,3,0,1,7,8,4,0,1,2,15,1,5,13,11,9,15,4,11,2,9,2,9,14,9,2,3,5,6,10,5,1,4,3,8,8,7,14,6,10,7,0,14,14,8,0,12,8,6,8,5,1,15,1,2,5,5,4,15,3,11,3,12,4,3,0,4,14,4,12,13,14,8,8,9,0,8,12,15,2,8,12,14,15,7,15,4,14,11,7,5,5,9,14,14,4,8,9,11,6,14,6,6,13,2,9,8,10,10,11,0,12,1,7,3,2,7,12,0,14,8,11,9,11,9,5,0,1,13,10,6,11,5,3,14,13,10,13,6,7,1,5,12,12,9,4,5,0,11,15,15,9,3,15,10,7,10,1,0,11,3,12,3,13,10,3,15,0,10,15,14,11,12,1,11,15,14,6,9,8,11,11,7,14,3,14,6,14,7,11,15,11,12,0,3,15,9,13,4,10,14,12,5,12,7", "source_class": null, "source_dataset": null, "video_id": "video_9_v0", "question_id": "video_9_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"1\", \"12\", \"4\", \"3\", \"3\"], \"clip_start\": 3.0, \"clip_end\": 9.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q0_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,3,7,6,12,1,6,0,8,6,15,13,15,11,1,3,9,11,13,0,8,4,9,1,7,12,5,11,1,15,0,10,8,3,12,9,15,6,12,5,12,8,10,12,6,10,5,15,14,13,3,10,10,11,13,14,1,2,14,12,15,4,13,14,12,5,4,8,5,8,8,6,4,1,5,6,9,3,14,10,8,12,5,9,4,15,11,4,3,2,2,0,10,14,9,10,8,5,5,1,3,10,4,7,5,13,11,0,10,15,2,12,8,5,13,0,15,10,0,1,9,0,11,12,11,14,7,4,0,9,3,14,13,13,14,8,3,8,3,3,1,1,5,8,1,8,2,6,1,15,8,10,13,8,8,11,7,15,2,12,11,14,13,5,12,14,15,3,12,14,7,6,3,3,0,2,11,7,9,13,5,12,12,11,15,0,1,6,0,5,7,6,4,6,4,11,0,14,2,12,2,15,8,13,0,13,2,12,0,2,7,13,14,10,0,3,9,4,7,11,14,13,6,11,8,7,2,2,6,13,8,4,15,1,11,7,4,13,7,6,7,1,12,4,1,4,6,7,4,11,2,7,12,9,5,14,1,12,13,9,15,6,12,4,15,13,0,4,12,11,2,13,5,5,1,10,8,6,11,6,13,10,14,13,4,9,9,7,11,1,12,4,6,7,1,14,9,0,14,11,5,4,7,3,3,3,14,8,14,15,2,5,2,0,5,5,13,13,13,12,0,7,0,10,10,8,6,7,13,15,14,2,10,11,8,12,4,4,3,13,4,12,9,3,3,13,15,7,14,8,10,5,3,8,12,9,1,1,1,3,11,1,10,2,5,15,3,1,2,9,5,4,11,6,14,2,13,8,7,4,13,13,0,11,12,9,5,6,5,3,0,10,13,3,0,5,10,11,10,9,0,2,12,8,8,10,10,7,8,6,7,7,15,11,4,1,12,5,1,7,5,3,9,7,6,0,5,2,0,0,1,2,15,5,7,7,7,3,15,1,9,4,3,2,0,1,7,6,3,1,3,2,12,0,8,15,6,15,14,4,1,3,3,4,1,10,0,11,0,2,13,4,10,1,13,8,15,8,5,5,4,6,3,6,10,13,2,5,10,6,14,14,2,6,8,5,12,12,15,8,10,6,0,14,7,0,5,5,12,5,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"4\", \"10\", \"1\", \"13\", \"8\"], \"clip_start\": 471.0, \"clip_end\": 477.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,3,7,6,12,1,6,0,8,6,15,13,15,11,1,3,9,11,13,0,8,4,9,1,7,12,5,11,1,15,0,10,8,3,12,9,15,6,12,5,12,8,10,12,6,10,5,15,14,13,3,10,10,11,13,14,1,2,14,12,15,4,13,14,12,5,4,8,5,8,8,6,4,1,5,6,9,3,14,10,8,12,5,9,4,15,11,4,3,2,2,0,10,14,9,10,8,5,5,1,3,10,4,7,5,13,11,0,10,15,2,12,8,5,13,0,15,10,0,1,9,0,11,12,11,14,7,4,0,9,3,14,13,13,14,8,3,8,3,3,1,1,5,8,1,8,2,6,1,15,8,10,13,8,8,11,7,15,2,12,11,14,13,5,12,14,15,3,12,14,7,6,3,3,0,2,11,7,9,13,5,12,12,11,15,0,1,6,0,5,7,6,4,6,4,11,0,14,2,12,2,15,8,13,0,13,2,12,0,2,7,13,14,10,0,3,9,4,7,11,14,13,6,11,8,7,2,2,6,13,8,4,15,1,11,7,4,13,7,6,7,1,12,4,1,4,6,7,4,11,2,7,12,9,5,14,1,12,13,9,15,6,12,4,15,13,0,4,12,11,2,13,5,5,1,10,8,6,11,6,13,10,14,13,4,9,9,7,11,1,12,4,6,7,1,14,9,0,14,11,5,4,7,3,3,3,14,8,14,15,2,5,2,0,5,5,13,13,13,12,0,7,0,10,10,8,6,7,13,15,14,2,10,11,8,12,4,4,3,13,4,12,9,3,3,13,15,7,14,8,10,5,3,8,12,9,1,1,1,3,11,1,10,2,5,15,3,1,2,9,5,4,11,6,14,2,13,8,7,4,13,13,0,11,12,9,5,6,5,3,0,10,13,3,0,5,10,11,10,9,0,2,12,8,8,10,10,7,8,6,7,7,15,11,4,1,12,5,1,7,5,3,9,7,6,0,5,2,0,0,1,2,15,5,7,7,7,3,15,1,9,4,3,2,0,1,7,6,3,1,3,2,12,0,8,15,6,15,14,4,1,3,3,4,1,10,0,11,0,2,13,4,10,1,13,8,15,8,5,5,4,6,3,6,10,13,2,5,10,6,14,14,2,6,8,5,12,12,15,8,10,6,0,14,7,0,5,5,12,5,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"15\", \"14\"], \"clip_start\": 457.0, \"clip_end\": 460.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,3,7,6,12,1,6,0,8,6,15,13,15,11,1,3,9,11,13,0,8,4,9,1,7,12,5,11,1,15,0,10,8,3,12,9,15,6,12,5,12,8,10,12,6,10,5,15,14,13,3,10,10,11,13,14,1,2,14,12,15,4,13,14,12,5,4,8,5,8,8,6,4,1,5,6,9,3,14,10,8,12,5,9,4,15,11,4,3,2,2,0,10,14,9,10,8,5,5,1,3,10,4,7,5,13,11,0,10,15,2,12,8,5,13,0,15,10,0,1,9,0,11,12,11,14,7,4,0,9,3,14,13,13,14,8,3,8,3,3,1,1,5,8,1,8,2,6,1,15,8,10,13,8,8,11,7,15,2,12,11,14,13,5,12,14,15,3,12,14,7,6,3,3,0,2,11,7,9,13,5,12,12,11,15,0,1,6,0,5,7,6,4,6,4,11,0,14,2,12,2,15,8,13,0,13,2,12,0,2,7,13,14,10,0,3,9,4,7,11,14,13,6,11,8,7,2,2,6,13,8,4,15,1,11,7,4,13,7,6,7,1,12,4,1,4,6,7,4,11,2,7,12,9,5,14,1,12,13,9,15,6,12,4,15,13,0,4,12,11,2,13,5,5,1,10,8,6,11,6,13,10,14,13,4,9,9,7,11,1,12,4,6,7,1,14,9,0,14,11,5,4,7,3,3,3,14,8,14,15,2,5,2,0,5,5,13,13,13,12,0,7,0,10,10,8,6,7,13,15,14,2,10,11,8,12,4,4,3,13,4,12,9,3,3,13,15,7,14,8,10,5,3,8,12,9,1,1,1,3,11,1,10,2,5,15,3,1,2,9,5,4,11,6,14,2,13,8,7,4,13,13,0,11,12,9,5,6,5,3,0,10,13,3,0,5,10,11,10,9,0,2,12,8,8,10,10,7,8,6,7,7,15,11,4,1,12,5,1,7,5,3,9,7,6,0,5,2,0,0,1,2,15,5,7,7,7,3,15,1,9,4,3,2,0,1,7,6,3,1,3,2,12,0,8,15,6,15,14,4,1,3,3,4,1,10,0,11,0,2,13,4,10,1,13,8,15,8,5,5,4,6,3,6,10,13,2,5,10,6,14,14,2,6,8,5,12,12,15,8,10,6,0,14,7,0,5,5,12,5,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"5\"], \"clip_start\": 45.0, \"clip_end\": 48.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,3,7,6,12,1,6,0,8,6,15,13,15,11,1,3,9,11,13,0,8,4,9,1,7,12,5,11,1,15,0,10,8,3,12,9,15,6,12,5,12,8,10,12,6,10,5,15,14,13,3,10,10,11,13,14,1,2,14,12,15,4,13,14,12,5,4,8,5,8,8,6,4,1,5,6,9,3,14,10,8,12,5,9,4,15,11,4,3,2,2,0,10,14,9,10,8,5,5,1,3,10,4,7,5,13,11,0,10,15,2,12,8,5,13,0,15,10,0,1,9,0,11,12,11,14,7,4,0,9,3,14,13,13,14,8,3,8,3,3,1,1,5,8,1,8,2,6,1,15,8,10,13,8,8,11,7,15,2,12,11,14,13,5,12,14,15,3,12,14,7,6,3,3,0,2,11,7,9,13,5,12,12,11,15,0,1,6,0,5,7,6,4,6,4,11,0,14,2,12,2,15,8,13,0,13,2,12,0,2,7,13,14,10,0,3,9,4,7,11,14,13,6,11,8,7,2,2,6,13,8,4,15,1,11,7,4,13,7,6,7,1,12,4,1,4,6,7,4,11,2,7,12,9,5,14,1,12,13,9,15,6,12,4,15,13,0,4,12,11,2,13,5,5,1,10,8,6,11,6,13,10,14,13,4,9,9,7,11,1,12,4,6,7,1,14,9,0,14,11,5,4,7,3,3,3,14,8,14,15,2,5,2,0,5,5,13,13,13,12,0,7,0,10,10,8,6,7,13,15,14,2,10,11,8,12,4,4,3,13,4,12,9,3,3,13,15,7,14,8,10,5,3,8,12,9,1,1,1,3,11,1,10,2,5,15,3,1,2,9,5,4,11,6,14,2,13,8,7,4,13,13,0,11,12,9,5,6,5,3,0,10,13,3,0,5,10,11,10,9,0,2,12,8,8,10,10,7,8,6,7,7,15,11,4,1,12,5,1,7,5,3,9,7,6,0,5,2,0,0,1,2,15,5,7,7,7,3,15,1,9,4,3,2,0,1,7,6,3,1,3,2,12,0,8,15,6,15,14,4,1,3,3,4,1,10,0,11,0,2,13,4,10,1,13,8,15,8,5,5,4,6,3,6,10,13,2,5,10,6,14,14,2,6,8,5,12,12,15,8,10,6,0,14,7,0,5,5,12,5,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"2\"], \"clip_start\": 309.0, \"clip_end\": 312.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,3,7,6,12,1,6,0,8,6,15,13,15,11,1,3,9,11,13,0,8,4,9,1,7,12,5,11,1,15,0,10,8,3,12,9,15,6,12,5,12,8,10,12,6,10,5,15,14,13,3,10,10,11,13,14,1,2,14,12,15,4,13,14,12,5,4,8,5,8,8,6,4,1,5,6,9,3,14,10,8,12,5,9,4,15,11,4,3,2,2,0,10,14,9,10,8,5,5,1,3,10,4,7,5,13,11,0,10,15,2,12,8,5,13,0,15,10,0,1,9,0,11,12,11,14,7,4,0,9,3,14,13,13,14,8,3,8,3,3,1,1,5,8,1,8,2,6,1,15,8,10,13,8,8,11,7,15,2,12,11,14,13,5,12,14,15,3,12,14,7,6,3,3,0,2,11,7,9,13,5,12,12,11,15,0,1,6,0,5,7,6,4,6,4,11,0,14,2,12,2,15,8,13,0,13,2,12,0,2,7,13,14,10,0,3,9,4,7,11,14,13,6,11,8,7,2,2,6,13,8,4,15,1,11,7,4,13,7,6,7,1,12,4,1,4,6,7,4,11,2,7,12,9,5,14,1,12,13,9,15,6,12,4,15,13,0,4,12,11,2,13,5,5,1,10,8,6,11,6,13,10,14,13,4,9,9,7,11,1,12,4,6,7,1,14,9,0,14,11,5,4,7,3,3,3,14,8,14,15,2,5,2,0,5,5,13,13,13,12,0,7,0,10,10,8,6,7,13,15,14,2,10,11,8,12,4,4,3,13,4,12,9,3,3,13,15,7,14,8,10,5,3,8,12,9,1,1,1,3,11,1,10,2,5,15,3,1,2,9,5,4,11,6,14,2,13,8,7,4,13,13,0,11,12,9,5,6,5,3,0,10,13,3,0,5,10,11,10,9,0,2,12,8,8,10,10,7,8,6,7,7,15,11,4,1,12,5,1,7,5,3,9,7,6,0,5,2,0,0,1,2,15,5,7,7,7,3,15,1,9,4,3,2,0,1,7,6,3,1,3,2,12,0,8,15,6,15,14,4,1,3,3,4,1,10,0,11,0,2,13,4,10,1,13,8,15,8,5,5,4,6,3,6,10,13,2,5,10,6,14,14,2,6,8,5,12,12,15,8,10,6,0,14,7,0,5,5,12,5,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"15\", \"6\", \"12\"], \"clip_start\": 35.0, \"clip_end\": 40.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,3,7,6,12,1,6,0,8,6,15,13,15,11,1,3,9,11,13,0,8,4,9,1,7,12,5,11,1,15,0,10,8,3,12,9,15,6,12,5,12,8,10,12,6,10,5,15,14,13,3,10,10,11,13,14,1,2,14,12,15,4,13,14,12,5,4,8,5,8,8,6,4,1,5,6,9,3,14,10,8,12,5,9,4,15,11,4,3,2,2,0,10,14,9,10,8,5,5,1,3,10,4,7,5,13,11,0,10,15,2,12,8,5,13,0,15,10,0,1,9,0,11,12,11,14,7,4,0,9,3,14,13,13,14,8,3,8,3,3,1,1,5,8,1,8,2,6,1,15,8,10,13,8,8,11,7,15,2,12,11,14,13,5,12,14,15,3,12,14,7,6,3,3,0,2,11,7,9,13,5,12,12,11,15,0,1,6,0,5,7,6,4,6,4,11,0,14,2,12,2,15,8,13,0,13,2,12,0,2,7,13,14,10,0,3,9,4,7,11,14,13,6,11,8,7,2,2,6,13,8,4,15,1,11,7,4,13,7,6,7,1,12,4,1,4,6,7,4,11,2,7,12,9,5,14,1,12,13,9,15,6,12,4,15,13,0,4,12,11,2,13,5,5,1,10,8,6,11,6,13,10,14,13,4,9,9,7,11,1,12,4,6,7,1,14,9,0,14,11,5,4,7,3,3,3,14,8,14,15,2,5,2,0,5,5,13,13,13,12,0,7,0,10,10,8,6,7,13,15,14,2,10,11,8,12,4,4,3,13,4,12,9,3,3,13,15,7,14,8,10,5,3,8,12,9,1,1,1,3,11,1,10,2,5,15,3,1,2,9,5,4,11,6,14,2,13,8,7,4,13,13,0,11,12,9,5,6,5,3,0,10,13,3,0,5,10,11,10,9,0,2,12,8,8,10,10,7,8,6,7,7,15,11,4,1,12,5,1,7,5,3,9,7,6,0,5,2,0,0,1,2,15,5,7,7,7,3,15,1,9,4,3,2,0,1,7,6,3,1,3,2,12,0,8,15,6,15,14,4,1,3,3,4,1,10,0,11,0,2,13,4,10,1,13,8,15,8,5,5,4,6,3,6,10,13,2,5,10,6,14,14,2,6,8,5,12,12,15,8,10,6,0,14,7,0,5,5,12,5,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"10\", \"0\", \"3\", \"9\"], \"clip_start\": 213.0, \"clip_end\": 218.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,3,7,6,12,1,6,0,8,6,15,13,15,11,1,3,9,11,13,0,8,4,9,1,7,12,5,11,1,15,0,10,8,3,12,9,15,6,12,5,12,8,10,12,6,10,5,15,14,13,3,10,10,11,13,14,1,2,14,12,15,4,13,14,12,5,4,8,5,8,8,6,4,1,5,6,9,3,14,10,8,12,5,9,4,15,11,4,3,2,2,0,10,14,9,10,8,5,5,1,3,10,4,7,5,13,11,0,10,15,2,12,8,5,13,0,15,10,0,1,9,0,11,12,11,14,7,4,0,9,3,14,13,13,14,8,3,8,3,3,1,1,5,8,1,8,2,6,1,15,8,10,13,8,8,11,7,15,2,12,11,14,13,5,12,14,15,3,12,14,7,6,3,3,0,2,11,7,9,13,5,12,12,11,15,0,1,6,0,5,7,6,4,6,4,11,0,14,2,12,2,15,8,13,0,13,2,12,0,2,7,13,14,10,0,3,9,4,7,11,14,13,6,11,8,7,2,2,6,13,8,4,15,1,11,7,4,13,7,6,7,1,12,4,1,4,6,7,4,11,2,7,12,9,5,14,1,12,13,9,15,6,12,4,15,13,0,4,12,11,2,13,5,5,1,10,8,6,11,6,13,10,14,13,4,9,9,7,11,1,12,4,6,7,1,14,9,0,14,11,5,4,7,3,3,3,14,8,14,15,2,5,2,0,5,5,13,13,13,12,0,7,0,10,10,8,6,7,13,15,14,2,10,11,8,12,4,4,3,13,4,12,9,3,3,13,15,7,14,8,10,5,3,8,12,9,1,1,1,3,11,1,10,2,5,15,3,1,2,9,5,4,11,6,14,2,13,8,7,4,13,13,0,11,12,9,5,6,5,3,0,10,13,3,0,5,10,11,10,9,0,2,12,8,8,10,10,7,8,6,7,7,15,11,4,1,12,5,1,7,5,3,9,7,6,0,5,2,0,0,1,2,15,5,7,7,7,3,15,1,9,4,3,2,0,1,7,6,3,1,3,2,12,0,8,15,6,15,14,4,1,3,3,4,1,10,0,11,0,2,13,4,10,1,13,8,15,8,5,5,4,6,3,6,10,13,2,5,10,6,14,14,2,6,8,5,12,12,15,8,10,6,0,14,7,0,5,5,12,5,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"3\", \"12\"], \"clip_start\": 318.0, \"clip_end\": 322.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,3,7,6,12,1,6,0,8,6,15,13,15,11,1,3,9,11,13,0,8,4,9,1,7,12,5,11,1,15,0,10,8,3,12,9,15,6,12,5,12,8,10,12,6,10,5,15,14,13,3,10,10,11,13,14,1,2,14,12,15,4,13,14,12,5,4,8,5,8,8,6,4,1,5,6,9,3,14,10,8,12,5,9,4,15,11,4,3,2,2,0,10,14,9,10,8,5,5,1,3,10,4,7,5,13,11,0,10,15,2,12,8,5,13,0,15,10,0,1,9,0,11,12,11,14,7,4,0,9,3,14,13,13,14,8,3,8,3,3,1,1,5,8,1,8,2,6,1,15,8,10,13,8,8,11,7,15,2,12,11,14,13,5,12,14,15,3,12,14,7,6,3,3,0,2,11,7,9,13,5,12,12,11,15,0,1,6,0,5,7,6,4,6,4,11,0,14,2,12,2,15,8,13,0,13,2,12,0,2,7,13,14,10,0,3,9,4,7,11,14,13,6,11,8,7,2,2,6,13,8,4,15,1,11,7,4,13,7,6,7,1,12,4,1,4,6,7,4,11,2,7,12,9,5,14,1,12,13,9,15,6,12,4,15,13,0,4,12,11,2,13,5,5,1,10,8,6,11,6,13,10,14,13,4,9,9,7,11,1,12,4,6,7,1,14,9,0,14,11,5,4,7,3,3,3,14,8,14,15,2,5,2,0,5,5,13,13,13,12,0,7,0,10,10,8,6,7,13,15,14,2,10,11,8,12,4,4,3,13,4,12,9,3,3,13,15,7,14,8,10,5,3,8,12,9,1,1,1,3,11,1,10,2,5,15,3,1,2,9,5,4,11,6,14,2,13,8,7,4,13,13,0,11,12,9,5,6,5,3,0,10,13,3,0,5,10,11,10,9,0,2,12,8,8,10,10,7,8,6,7,7,15,11,4,1,12,5,1,7,5,3,9,7,6,0,5,2,0,0,1,2,15,5,7,7,7,3,15,1,9,4,3,2,0,1,7,6,3,1,3,2,12,0,8,15,6,15,14,4,1,3,3,4,1,10,0,11,0,2,13,4,10,1,13,8,15,8,5,5,4,6,3,6,10,13,2,5,10,6,14,14,2,6,8,5,12,12,15,8,10,6,0,14,7,0,5,5,12,5,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"5\", \"11\", \"1\", \"15\"], \"clip_start\": 25.0, \"clip_end\": 31.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,3,7,6,12,1,6,0,8,6,15,13,15,11,1,3,9,11,13,0,8,4,9,1,7,12,5,11,1,15,0,10,8,3,12,9,15,6,12,5,12,8,10,12,6,10,5,15,14,13,3,10,10,11,13,14,1,2,14,12,15,4,13,14,12,5,4,8,5,8,8,6,4,1,5,6,9,3,14,10,8,12,5,9,4,15,11,4,3,2,2,0,10,14,9,10,8,5,5,1,3,10,4,7,5,13,11,0,10,15,2,12,8,5,13,0,15,10,0,1,9,0,11,12,11,14,7,4,0,9,3,14,13,13,14,8,3,8,3,3,1,1,5,8,1,8,2,6,1,15,8,10,13,8,8,11,7,15,2,12,11,14,13,5,12,14,15,3,12,14,7,6,3,3,0,2,11,7,9,13,5,12,12,11,15,0,1,6,0,5,7,6,4,6,4,11,0,14,2,12,2,15,8,13,0,13,2,12,0,2,7,13,14,10,0,3,9,4,7,11,14,13,6,11,8,7,2,2,6,13,8,4,15,1,11,7,4,13,7,6,7,1,12,4,1,4,6,7,4,11,2,7,12,9,5,14,1,12,13,9,15,6,12,4,15,13,0,4,12,11,2,13,5,5,1,10,8,6,11,6,13,10,14,13,4,9,9,7,11,1,12,4,6,7,1,14,9,0,14,11,5,4,7,3,3,3,14,8,14,15,2,5,2,0,5,5,13,13,13,12,0,7,0,10,10,8,6,7,13,15,14,2,10,11,8,12,4,4,3,13,4,12,9,3,3,13,15,7,14,8,10,5,3,8,12,9,1,1,1,3,11,1,10,2,5,15,3,1,2,9,5,4,11,6,14,2,13,8,7,4,13,13,0,11,12,9,5,6,5,3,0,10,13,3,0,5,10,11,10,9,0,2,12,8,8,10,10,7,8,6,7,7,15,11,4,1,12,5,1,7,5,3,9,7,6,0,5,2,0,0,1,2,15,5,7,7,7,3,15,1,9,4,3,2,0,1,7,6,3,1,3,2,12,0,8,15,6,15,14,4,1,3,3,4,1,10,0,11,0,2,13,4,10,1,13,8,15,8,5,5,4,6,3,6,10,13,2,5,10,6,14,14,2,6,8,5,12,12,15,8,10,6,0,14,7,0,5,5,12,5,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"4\", \"13\", \"7\", \"6\"], \"clip_start\": 236.0, \"clip_end\": 241.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q9_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,3,7,6,12,1,6,0,8,6,15,13,15,11,1,3,9,11,13,0,8,4,9,1,7,12,5,11,1,15,0,10,8,3,12,9,15,6,12,5,12,8,10,12,6,10,5,15,14,13,3,10,10,11,13,14,1,2,14,12,15,4,13,14,12,5,4,8,5,8,8,6,4,1,5,6,9,3,14,10,8,12,5,9,4,15,11,4,3,2,2,0,10,14,9,10,8,5,5,1,3,10,4,7,5,13,11,0,10,15,2,12,8,5,13,0,15,10,0,1,9,0,11,12,11,14,7,4,0,9,3,14,13,13,14,8,3,8,3,3,1,1,5,8,1,8,2,6,1,15,8,10,13,8,8,11,7,15,2,12,11,14,13,5,12,14,15,3,12,14,7,6,3,3,0,2,11,7,9,13,5,12,12,11,15,0,1,6,0,5,7,6,4,6,4,11,0,14,2,12,2,15,8,13,0,13,2,12,0,2,7,13,14,10,0,3,9,4,7,11,14,13,6,11,8,7,2,2,6,13,8,4,15,1,11,7,4,13,7,6,7,1,12,4,1,4,6,7,4,11,2,7,12,9,5,14,1,12,13,9,15,6,12,4,15,13,0,4,12,11,2,13,5,5,1,10,8,6,11,6,13,10,14,13,4,9,9,7,11,1,12,4,6,7,1,14,9,0,14,11,5,4,7,3,3,3,14,8,14,15,2,5,2,0,5,5,13,13,13,12,0,7,0,10,10,8,6,7,13,15,14,2,10,11,8,12,4,4,3,13,4,12,9,3,3,13,15,7,14,8,10,5,3,8,12,9,1,1,1,3,11,1,10,2,5,15,3,1,2,9,5,4,11,6,14,2,13,8,7,4,13,13,0,11,12,9,5,6,5,3,0,10,13,3,0,5,10,11,10,9,0,2,12,8,8,10,10,7,8,6,7,7,15,11,4,1,12,5,1,7,5,3,9,7,6,0,5,2,0,0,1,2,15,5,7,7,7,3,15,1,9,4,3,2,0,1,7,6,3,1,3,2,12,0,8,15,6,15,14,4,1,3,3,4,1,10,0,11,0,2,13,4,10,1,13,8,15,8,5,5,4,6,3,6,10,13,2,5,10,6,14,14,2,6,8,5,12,12,15,8,10,6,0,14,7,0,5,5,12,5,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"12\", \"15\"], \"clip_start\": 447.0, \"clip_end\": 451.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q10_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,3,7,6,12,1,6,0,8,6,15,13,15,11,1,3,9,11,13,0,8,4,9,1,7,12,5,11,1,15,0,10,8,3,12,9,15,6,12,5,12,8,10,12,6,10,5,15,14,13,3,10,10,11,13,14,1,2,14,12,15,4,13,14,12,5,4,8,5,8,8,6,4,1,5,6,9,3,14,10,8,12,5,9,4,15,11,4,3,2,2,0,10,14,9,10,8,5,5,1,3,10,4,7,5,13,11,0,10,15,2,12,8,5,13,0,15,10,0,1,9,0,11,12,11,14,7,4,0,9,3,14,13,13,14,8,3,8,3,3,1,1,5,8,1,8,2,6,1,15,8,10,13,8,8,11,7,15,2,12,11,14,13,5,12,14,15,3,12,14,7,6,3,3,0,2,11,7,9,13,5,12,12,11,15,0,1,6,0,5,7,6,4,6,4,11,0,14,2,12,2,15,8,13,0,13,2,12,0,2,7,13,14,10,0,3,9,4,7,11,14,13,6,11,8,7,2,2,6,13,8,4,15,1,11,7,4,13,7,6,7,1,12,4,1,4,6,7,4,11,2,7,12,9,5,14,1,12,13,9,15,6,12,4,15,13,0,4,12,11,2,13,5,5,1,10,8,6,11,6,13,10,14,13,4,9,9,7,11,1,12,4,6,7,1,14,9,0,14,11,5,4,7,3,3,3,14,8,14,15,2,5,2,0,5,5,13,13,13,12,0,7,0,10,10,8,6,7,13,15,14,2,10,11,8,12,4,4,3,13,4,12,9,3,3,13,15,7,14,8,10,5,3,8,12,9,1,1,1,3,11,1,10,2,5,15,3,1,2,9,5,4,11,6,14,2,13,8,7,4,13,13,0,11,12,9,5,6,5,3,0,10,13,3,0,5,10,11,10,9,0,2,12,8,8,10,10,7,8,6,7,7,15,11,4,1,12,5,1,7,5,3,9,7,6,0,5,2,0,0,1,2,15,5,7,7,7,3,15,1,9,4,3,2,0,1,7,6,3,1,3,2,12,0,8,15,6,15,14,4,1,3,3,4,1,10,0,11,0,2,13,4,10,1,13,8,15,8,5,5,4,6,3,6,10,13,2,5,10,6,14,14,2,6,8,5,12,12,15,8,10,6,0,14,7,0,5,5,12,5,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"6\", \"10\", \"5\"], \"clip_start\": 43.0, \"clip_end\": 48.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,3,7,6,12,1,6,0,8,6,15,13,15,11,1,3,9,11,13,0,8,4,9,1,7,12,5,11,1,15,0,10,8,3,12,9,15,6,12,5,12,8,10,12,6,10,5,15,14,13,3,10,10,11,13,14,1,2,14,12,15,4,13,14,12,5,4,8,5,8,8,6,4,1,5,6,9,3,14,10,8,12,5,9,4,15,11,4,3,2,2,0,10,14,9,10,8,5,5,1,3,10,4,7,5,13,11,0,10,15,2,12,8,5,13,0,15,10,0,1,9,0,11,12,11,14,7,4,0,9,3,14,13,13,14,8,3,8,3,3,1,1,5,8,1,8,2,6,1,15,8,10,13,8,8,11,7,15,2,12,11,14,13,5,12,14,15,3,12,14,7,6,3,3,0,2,11,7,9,13,5,12,12,11,15,0,1,6,0,5,7,6,4,6,4,11,0,14,2,12,2,15,8,13,0,13,2,12,0,2,7,13,14,10,0,3,9,4,7,11,14,13,6,11,8,7,2,2,6,13,8,4,15,1,11,7,4,13,7,6,7,1,12,4,1,4,6,7,4,11,2,7,12,9,5,14,1,12,13,9,15,6,12,4,15,13,0,4,12,11,2,13,5,5,1,10,8,6,11,6,13,10,14,13,4,9,9,7,11,1,12,4,6,7,1,14,9,0,14,11,5,4,7,3,3,3,14,8,14,15,2,5,2,0,5,5,13,13,13,12,0,7,0,10,10,8,6,7,13,15,14,2,10,11,8,12,4,4,3,13,4,12,9,3,3,13,15,7,14,8,10,5,3,8,12,9,1,1,1,3,11,1,10,2,5,15,3,1,2,9,5,4,11,6,14,2,13,8,7,4,13,13,0,11,12,9,5,6,5,3,0,10,13,3,0,5,10,11,10,9,0,2,12,8,8,10,10,7,8,6,7,7,15,11,4,1,12,5,1,7,5,3,9,7,6,0,5,2,0,0,1,2,15,5,7,7,7,3,15,1,9,4,3,2,0,1,7,6,3,1,3,2,12,0,8,15,6,15,14,4,1,3,3,4,1,10,0,11,0,2,13,4,10,1,13,8,15,8,5,5,4,6,3,6,10,13,2,5,10,6,14,14,2,6,8,5,12,12,15,8,10,6,0,14,7,0,5,5,12,5,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"6\", \"11\", \"6\"], \"clip_start\": 277.0, \"clip_end\": 281.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,3,7,6,12,1,6,0,8,6,15,13,15,11,1,3,9,11,13,0,8,4,9,1,7,12,5,11,1,15,0,10,8,3,12,9,15,6,12,5,12,8,10,12,6,10,5,15,14,13,3,10,10,11,13,14,1,2,14,12,15,4,13,14,12,5,4,8,5,8,8,6,4,1,5,6,9,3,14,10,8,12,5,9,4,15,11,4,3,2,2,0,10,14,9,10,8,5,5,1,3,10,4,7,5,13,11,0,10,15,2,12,8,5,13,0,15,10,0,1,9,0,11,12,11,14,7,4,0,9,3,14,13,13,14,8,3,8,3,3,1,1,5,8,1,8,2,6,1,15,8,10,13,8,8,11,7,15,2,12,11,14,13,5,12,14,15,3,12,14,7,6,3,3,0,2,11,7,9,13,5,12,12,11,15,0,1,6,0,5,7,6,4,6,4,11,0,14,2,12,2,15,8,13,0,13,2,12,0,2,7,13,14,10,0,3,9,4,7,11,14,13,6,11,8,7,2,2,6,13,8,4,15,1,11,7,4,13,7,6,7,1,12,4,1,4,6,7,4,11,2,7,12,9,5,14,1,12,13,9,15,6,12,4,15,13,0,4,12,11,2,13,5,5,1,10,8,6,11,6,13,10,14,13,4,9,9,7,11,1,12,4,6,7,1,14,9,0,14,11,5,4,7,3,3,3,14,8,14,15,2,5,2,0,5,5,13,13,13,12,0,7,0,10,10,8,6,7,13,15,14,2,10,11,8,12,4,4,3,13,4,12,9,3,3,13,15,7,14,8,10,5,3,8,12,9,1,1,1,3,11,1,10,2,5,15,3,1,2,9,5,4,11,6,14,2,13,8,7,4,13,13,0,11,12,9,5,6,5,3,0,10,13,3,0,5,10,11,10,9,0,2,12,8,8,10,10,7,8,6,7,7,15,11,4,1,12,5,1,7,5,3,9,7,6,0,5,2,0,0,1,2,15,5,7,7,7,3,15,1,9,4,3,2,0,1,7,6,3,1,3,2,12,0,8,15,6,15,14,4,1,3,3,4,1,10,0,11,0,2,13,4,10,1,13,8,15,8,5,5,4,6,3,6,10,13,2,5,10,6,14,14,2,6,8,5,12,12,15,8,10,6,0,14,7,0,5,5,12,5,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 10, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"0\", \"4\", \"12\", \"11\", \"2\"], \"clip_start\": 266.0, \"clip_end\": 272.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q13_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,3,7,6,12,1,6,0,8,6,15,13,15,11,1,3,9,11,13,0,8,4,9,1,7,12,5,11,1,15,0,10,8,3,12,9,15,6,12,5,12,8,10,12,6,10,5,15,14,13,3,10,10,11,13,14,1,2,14,12,15,4,13,14,12,5,4,8,5,8,8,6,4,1,5,6,9,3,14,10,8,12,5,9,4,15,11,4,3,2,2,0,10,14,9,10,8,5,5,1,3,10,4,7,5,13,11,0,10,15,2,12,8,5,13,0,15,10,0,1,9,0,11,12,11,14,7,4,0,9,3,14,13,13,14,8,3,8,3,3,1,1,5,8,1,8,2,6,1,15,8,10,13,8,8,11,7,15,2,12,11,14,13,5,12,14,15,3,12,14,7,6,3,3,0,2,11,7,9,13,5,12,12,11,15,0,1,6,0,5,7,6,4,6,4,11,0,14,2,12,2,15,8,13,0,13,2,12,0,2,7,13,14,10,0,3,9,4,7,11,14,13,6,11,8,7,2,2,6,13,8,4,15,1,11,7,4,13,7,6,7,1,12,4,1,4,6,7,4,11,2,7,12,9,5,14,1,12,13,9,15,6,12,4,15,13,0,4,12,11,2,13,5,5,1,10,8,6,11,6,13,10,14,13,4,9,9,7,11,1,12,4,6,7,1,14,9,0,14,11,5,4,7,3,3,3,14,8,14,15,2,5,2,0,5,5,13,13,13,12,0,7,0,10,10,8,6,7,13,15,14,2,10,11,8,12,4,4,3,13,4,12,9,3,3,13,15,7,14,8,10,5,3,8,12,9,1,1,1,3,11,1,10,2,5,15,3,1,2,9,5,4,11,6,14,2,13,8,7,4,13,13,0,11,12,9,5,6,5,3,0,10,13,3,0,5,10,11,10,9,0,2,12,8,8,10,10,7,8,6,7,7,15,11,4,1,12,5,1,7,5,3,9,7,6,0,5,2,0,0,1,2,15,5,7,7,7,3,15,1,9,4,3,2,0,1,7,6,3,1,3,2,12,0,8,15,6,15,14,4,1,3,3,4,1,10,0,11,0,2,13,4,10,1,13,8,15,8,5,5,4,6,3,6,10,13,2,5,10,6,14,14,2,6,8,5,12,12,15,8,10,6,0,14,7,0,5,5,12,5,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"10\", \"10\", \"11\", \"13\"], \"clip_start\": 50.0, \"clip_end\": 56.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q14_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,3,7,6,12,1,6,0,8,6,15,13,15,11,1,3,9,11,13,0,8,4,9,1,7,12,5,11,1,15,0,10,8,3,12,9,15,6,12,5,12,8,10,12,6,10,5,15,14,13,3,10,10,11,13,14,1,2,14,12,15,4,13,14,12,5,4,8,5,8,8,6,4,1,5,6,9,3,14,10,8,12,5,9,4,15,11,4,3,2,2,0,10,14,9,10,8,5,5,1,3,10,4,7,5,13,11,0,10,15,2,12,8,5,13,0,15,10,0,1,9,0,11,12,11,14,7,4,0,9,3,14,13,13,14,8,3,8,3,3,1,1,5,8,1,8,2,6,1,15,8,10,13,8,8,11,7,15,2,12,11,14,13,5,12,14,15,3,12,14,7,6,3,3,0,2,11,7,9,13,5,12,12,11,15,0,1,6,0,5,7,6,4,6,4,11,0,14,2,12,2,15,8,13,0,13,2,12,0,2,7,13,14,10,0,3,9,4,7,11,14,13,6,11,8,7,2,2,6,13,8,4,15,1,11,7,4,13,7,6,7,1,12,4,1,4,6,7,4,11,2,7,12,9,5,14,1,12,13,9,15,6,12,4,15,13,0,4,12,11,2,13,5,5,1,10,8,6,11,6,13,10,14,13,4,9,9,7,11,1,12,4,6,7,1,14,9,0,14,11,5,4,7,3,3,3,14,8,14,15,2,5,2,0,5,5,13,13,13,12,0,7,0,10,10,8,6,7,13,15,14,2,10,11,8,12,4,4,3,13,4,12,9,3,3,13,15,7,14,8,10,5,3,8,12,9,1,1,1,3,11,1,10,2,5,15,3,1,2,9,5,4,11,6,14,2,13,8,7,4,13,13,0,11,12,9,5,6,5,3,0,10,13,3,0,5,10,11,10,9,0,2,12,8,8,10,10,7,8,6,7,7,15,11,4,1,12,5,1,7,5,3,9,7,6,0,5,2,0,0,1,2,15,5,7,7,7,3,15,1,9,4,3,2,0,1,7,6,3,1,3,2,12,0,8,15,6,15,14,4,1,3,3,4,1,10,0,11,0,2,13,4,10,1,13,8,15,8,5,5,4,6,3,6,10,13,2,5,10,6,14,14,2,6,8,5,12,12,15,8,10,6,0,14,7,0,5,5,12,5,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 10, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"3\", \"2\", \"12\", \"0\", \"8\"], \"clip_start\": 450.0, \"clip_end\": 456.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4", "dataset_source": "synthetic", "input_sequence": "0,0,3,7,6,12,1,6,0,8,6,15,13,15,11,1,3,9,11,13,0,8,4,9,1,7,12,5,11,1,15,0,10,8,3,12,9,15,6,12,5,12,8,10,12,6,10,5,15,14,13,3,10,10,11,13,14,1,2,14,12,15,4,13,14,12,5,4,8,5,8,8,6,4,1,5,6,9,3,14,10,8,12,5,9,4,15,11,4,3,2,2,0,10,14,9,10,8,5,5,1,3,10,4,7,5,13,11,0,10,15,2,12,8,5,13,0,15,10,0,1,9,0,11,12,11,14,7,4,0,9,3,14,13,13,14,8,3,8,3,3,1,1,5,8,1,8,2,6,1,15,8,10,13,8,8,11,7,15,2,12,11,14,13,5,12,14,15,3,12,14,7,6,3,3,0,2,11,7,9,13,5,12,12,11,15,0,1,6,0,5,7,6,4,6,4,11,0,14,2,12,2,15,8,13,0,13,2,12,0,2,7,13,14,10,0,3,9,4,7,11,14,13,6,11,8,7,2,2,6,13,8,4,15,1,11,7,4,13,7,6,7,1,12,4,1,4,6,7,4,11,2,7,12,9,5,14,1,12,13,9,15,6,12,4,15,13,0,4,12,11,2,13,5,5,1,10,8,6,11,6,13,10,14,13,4,9,9,7,11,1,12,4,6,7,1,14,9,0,14,11,5,4,7,3,3,3,14,8,14,15,2,5,2,0,5,5,13,13,13,12,0,7,0,10,10,8,6,7,13,15,14,2,10,11,8,12,4,4,3,13,4,12,9,3,3,13,15,7,14,8,10,5,3,8,12,9,1,1,1,3,11,1,10,2,5,15,3,1,2,9,5,4,11,6,14,2,13,8,7,4,13,13,0,11,12,9,5,6,5,3,0,10,13,3,0,5,10,11,10,9,0,2,12,8,8,10,10,7,8,6,7,7,15,11,4,1,12,5,1,7,5,3,9,7,6,0,5,2,0,0,1,2,15,5,7,7,7,3,15,1,9,4,3,2,0,1,7,6,3,1,3,2,12,0,8,15,6,15,14,4,1,3,3,4,1,10,0,11,0,2,13,4,10,1,13,8,15,8,5,5,4,6,3,6,10,13,2,5,10,6,14,14,2,6,8,5,12,12,15,8,10,6,0,14,7,0,5,5,12,5,12", "source_class": null, "source_dataset": null, "video_id": "video_10_v0", "question_id": "video_10_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"15\", \"15\", \"7\", \"10\", \"8\"], \"clip_start\": 27.0, \"clip_end\": 33.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,8,0,7,11,7,8,5,9,2,3,12,7,15,15,12,7,12,15,7,2,15,5,8,12,12,7,15,15,7,10,8,1,2,3,3,0,12,3,5,4,10,12,13,2,7,8,9,4,13,5,10,1,6,2,7,13,13,15,6,10,11,1,0,6,5,1,15,6,14,7,4,12,11,6,4,9,11,0,3,9,12,11,8,11,3,0,9,8,0,14,9,15,6,3,6,5,6,13,11,2,9,9,10,2,10,15,9,6,9,3,6,12,2,9,5,9,0,11,4,14,11,7,7,8,8,2,1,0,11,3,15,6,12,10,13,6,9,15,3,13,12,10,14,9,14,4,8,13,3,4,1,10,9,11,10,8,8,9,9,13,7,5,13,15,3,5,6,0,15,13,6,5,4,15,0,11,1,10,12,12,8,15,3,5,10,6,2,2,5,5,0,5,14,12,5,4,11,0,3,4,0,1,12,3,2,11,7,5,2,7,4,4,1,11,9,14,8,8,9,9,1,6,0,6,1,7,1,13,2,6,6,4,3,5,12,5,0,15,11,4,15,3,13,11,13,15,2,10,3,14,13,7,8,10,8,7,13,6,15,10,0,6,3,11,9,11,15,2,10,7,8,13,15,8,2,7,6,6,11,0,10,5,1,7,15,15,0,3,7,6,1,15,13,0,7,10,12,7,5,15,0,7,7,3,10,13,3,3,8,13,2,15,15,14,2,1,5,6,8,10,9,0,9,15,9,0,12,9,3,14,10,9,8,2,1,15,5,13,6,8,0,8,4,0,7,10,10,3,1,9,9,1,14,3,5,15,11,7,1,13,7,10,14,1,4,11,0,15,4,8,7,7,11,15,12,10,9,0,3,5,4,11,3,14,3,10,14,0,12,10,1,14,9,12,13,6,7,13,4,3,1,5,11,9,1,14,8,0,11,5,14,12,1,1,9,10,0,12,13,4,14,4,0,2,3,15,3,2,0,0,8,6,6,8,2,13,8,12,3,4,7,1,11,0,0,6,14,4,12,7,11,11,0,0,12,9,12,10,12,11,11,4,14,12,5,11,8,11,3,8,8,13,11,9,11,11,12,12,8,9,11,7,2,7,7,12,12,11,1,0,11,8,13,7,12,2,6,1,4,7,2,5,12,12,8,7,14,2,11,1", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"2\", \"4\", \"6\"], \"clip_start\": 311.0, \"clip_end\": 317.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q1_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,8,0,7,11,7,8,5,9,2,3,12,7,15,15,12,7,12,15,7,2,15,5,8,12,12,7,15,15,7,10,8,1,2,3,3,0,12,3,5,4,10,12,13,2,7,8,9,4,13,5,10,1,6,2,7,13,13,15,6,10,11,1,0,6,5,1,15,6,14,7,4,12,11,6,4,9,11,0,3,9,12,11,8,11,3,0,9,8,0,14,9,15,6,3,6,5,6,13,11,2,9,9,10,2,10,15,9,6,9,3,6,12,2,9,5,9,0,11,4,14,11,7,7,8,8,2,1,0,11,3,15,6,12,10,13,6,9,15,3,13,12,10,14,9,14,4,8,13,3,4,1,10,9,11,10,8,8,9,9,13,7,5,13,15,3,5,6,0,15,13,6,5,4,15,0,11,1,10,12,12,8,15,3,5,10,6,2,2,5,5,0,5,14,12,5,4,11,0,3,4,0,1,12,3,2,11,7,5,2,7,4,4,1,11,9,14,8,8,9,9,1,6,0,6,1,7,1,13,2,6,6,4,3,5,12,5,0,15,11,4,15,3,13,11,13,15,2,10,3,14,13,7,8,10,8,7,13,6,15,10,0,6,3,11,9,11,15,2,10,7,8,13,15,8,2,7,6,6,11,0,10,5,1,7,15,15,0,3,7,6,1,15,13,0,7,10,12,7,5,15,0,7,7,3,10,13,3,3,8,13,2,15,15,14,2,1,5,6,8,10,9,0,9,15,9,0,12,9,3,14,10,9,8,2,1,15,5,13,6,8,0,8,4,0,7,10,10,3,1,9,9,1,14,3,5,15,11,7,1,13,7,10,14,1,4,11,0,15,4,8,7,7,11,15,12,10,9,0,3,5,4,11,3,14,3,10,14,0,12,10,1,14,9,12,13,6,7,13,4,3,1,5,11,9,1,14,8,0,11,5,14,12,1,1,9,10,0,12,13,4,14,4,0,2,3,15,3,2,0,0,8,6,6,8,2,13,8,12,3,4,7,1,11,0,0,6,14,4,12,7,11,11,0,0,12,9,12,10,12,11,11,4,14,12,5,11,8,11,3,8,8,13,11,9,11,11,12,12,8,9,11,7,2,7,7,12,12,11,1,0,11,8,13,7,12,2,6,1,4,7,2,5,12,12,8,7,14,2,11,1", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"12\", \"12\", \"7\", \"15\", \"15\"], \"clip_start\": 24.0, \"clip_end\": 30.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q2_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,8,0,7,11,7,8,5,9,2,3,12,7,15,15,12,7,12,15,7,2,15,5,8,12,12,7,15,15,7,10,8,1,2,3,3,0,12,3,5,4,10,12,13,2,7,8,9,4,13,5,10,1,6,2,7,13,13,15,6,10,11,1,0,6,5,1,15,6,14,7,4,12,11,6,4,9,11,0,3,9,12,11,8,11,3,0,9,8,0,14,9,15,6,3,6,5,6,13,11,2,9,9,10,2,10,15,9,6,9,3,6,12,2,9,5,9,0,11,4,14,11,7,7,8,8,2,1,0,11,3,15,6,12,10,13,6,9,15,3,13,12,10,14,9,14,4,8,13,3,4,1,10,9,11,10,8,8,9,9,13,7,5,13,15,3,5,6,0,15,13,6,5,4,15,0,11,1,10,12,12,8,15,3,5,10,6,2,2,5,5,0,5,14,12,5,4,11,0,3,4,0,1,12,3,2,11,7,5,2,7,4,4,1,11,9,14,8,8,9,9,1,6,0,6,1,7,1,13,2,6,6,4,3,5,12,5,0,15,11,4,15,3,13,11,13,15,2,10,3,14,13,7,8,10,8,7,13,6,15,10,0,6,3,11,9,11,15,2,10,7,8,13,15,8,2,7,6,6,11,0,10,5,1,7,15,15,0,3,7,6,1,15,13,0,7,10,12,7,5,15,0,7,7,3,10,13,3,3,8,13,2,15,15,14,2,1,5,6,8,10,9,0,9,15,9,0,12,9,3,14,10,9,8,2,1,15,5,13,6,8,0,8,4,0,7,10,10,3,1,9,9,1,14,3,5,15,11,7,1,13,7,10,14,1,4,11,0,15,4,8,7,7,11,15,12,10,9,0,3,5,4,11,3,14,3,10,14,0,12,10,1,14,9,12,13,6,7,13,4,3,1,5,11,9,1,14,8,0,11,5,14,12,1,1,9,10,0,12,13,4,14,4,0,2,3,15,3,2,0,0,8,6,6,8,2,13,8,12,3,4,7,1,11,0,0,6,14,4,12,7,11,11,0,0,12,9,12,10,12,11,11,4,14,12,5,11,8,11,3,8,8,13,11,9,11,11,12,12,8,9,11,7,2,7,7,12,12,11,1,0,11,8,13,7,12,2,6,1,4,7,2,5,12,12,8,7,14,2,11,1", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"12\", \"7\", \"5\", \"15\", \"0\"], \"clip_start\": 297.0, \"clip_end\": 303.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,8,0,7,11,7,8,5,9,2,3,12,7,15,15,12,7,12,15,7,2,15,5,8,12,12,7,15,15,7,10,8,1,2,3,3,0,12,3,5,4,10,12,13,2,7,8,9,4,13,5,10,1,6,2,7,13,13,15,6,10,11,1,0,6,5,1,15,6,14,7,4,12,11,6,4,9,11,0,3,9,12,11,8,11,3,0,9,8,0,14,9,15,6,3,6,5,6,13,11,2,9,9,10,2,10,15,9,6,9,3,6,12,2,9,5,9,0,11,4,14,11,7,7,8,8,2,1,0,11,3,15,6,12,10,13,6,9,15,3,13,12,10,14,9,14,4,8,13,3,4,1,10,9,11,10,8,8,9,9,13,7,5,13,15,3,5,6,0,15,13,6,5,4,15,0,11,1,10,12,12,8,15,3,5,10,6,2,2,5,5,0,5,14,12,5,4,11,0,3,4,0,1,12,3,2,11,7,5,2,7,4,4,1,11,9,14,8,8,9,9,1,6,0,6,1,7,1,13,2,6,6,4,3,5,12,5,0,15,11,4,15,3,13,11,13,15,2,10,3,14,13,7,8,10,8,7,13,6,15,10,0,6,3,11,9,11,15,2,10,7,8,13,15,8,2,7,6,6,11,0,10,5,1,7,15,15,0,3,7,6,1,15,13,0,7,10,12,7,5,15,0,7,7,3,10,13,3,3,8,13,2,15,15,14,2,1,5,6,8,10,9,0,9,15,9,0,12,9,3,14,10,9,8,2,1,15,5,13,6,8,0,8,4,0,7,10,10,3,1,9,9,1,14,3,5,15,11,7,1,13,7,10,14,1,4,11,0,15,4,8,7,7,11,15,12,10,9,0,3,5,4,11,3,14,3,10,14,0,12,10,1,14,9,12,13,6,7,13,4,3,1,5,11,9,1,14,8,0,11,5,14,12,1,1,9,10,0,12,13,4,14,4,0,2,3,15,3,2,0,0,8,6,6,8,2,13,8,12,3,4,7,1,11,0,0,6,14,4,12,7,11,11,0,0,12,9,12,10,12,11,11,4,14,12,5,11,8,11,3,8,8,13,11,9,11,11,12,12,8,9,11,7,2,7,7,12,12,11,1,0,11,8,13,7,12,2,6,1,4,7,2,5,12,12,8,7,14,2,11,1", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"14\", \"10\", \"9\", \"8\"], \"clip_start\": 329.0, \"clip_end\": 335.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,8,0,7,11,7,8,5,9,2,3,12,7,15,15,12,7,12,15,7,2,15,5,8,12,12,7,15,15,7,10,8,1,2,3,3,0,12,3,5,4,10,12,13,2,7,8,9,4,13,5,10,1,6,2,7,13,13,15,6,10,11,1,0,6,5,1,15,6,14,7,4,12,11,6,4,9,11,0,3,9,12,11,8,11,3,0,9,8,0,14,9,15,6,3,6,5,6,13,11,2,9,9,10,2,10,15,9,6,9,3,6,12,2,9,5,9,0,11,4,14,11,7,7,8,8,2,1,0,11,3,15,6,12,10,13,6,9,15,3,13,12,10,14,9,14,4,8,13,3,4,1,10,9,11,10,8,8,9,9,13,7,5,13,15,3,5,6,0,15,13,6,5,4,15,0,11,1,10,12,12,8,15,3,5,10,6,2,2,5,5,0,5,14,12,5,4,11,0,3,4,0,1,12,3,2,11,7,5,2,7,4,4,1,11,9,14,8,8,9,9,1,6,0,6,1,7,1,13,2,6,6,4,3,5,12,5,0,15,11,4,15,3,13,11,13,15,2,10,3,14,13,7,8,10,8,7,13,6,15,10,0,6,3,11,9,11,15,2,10,7,8,13,15,8,2,7,6,6,11,0,10,5,1,7,15,15,0,3,7,6,1,15,13,0,7,10,12,7,5,15,0,7,7,3,10,13,3,3,8,13,2,15,15,14,2,1,5,6,8,10,9,0,9,15,9,0,12,9,3,14,10,9,8,2,1,15,5,13,6,8,0,8,4,0,7,10,10,3,1,9,9,1,14,3,5,15,11,7,1,13,7,10,14,1,4,11,0,15,4,8,7,7,11,15,12,10,9,0,3,5,4,11,3,14,3,10,14,0,12,10,1,14,9,12,13,6,7,13,4,3,1,5,11,9,1,14,8,0,11,5,14,12,1,1,9,10,0,12,13,4,14,4,0,2,3,15,3,2,0,0,8,6,6,8,2,13,8,12,3,4,7,1,11,0,0,6,14,4,12,7,11,11,0,0,12,9,12,10,12,11,11,4,14,12,5,11,8,11,3,8,8,13,11,9,11,11,12,12,8,9,11,7,2,7,7,12,12,11,1,0,11,8,13,7,12,2,6,1,4,7,2,5,12,12,8,7,14,2,11,1", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"10\", \"8\", \"7\", \"13\", \"6\"], \"clip_start\": 254.0, \"clip_end\": 260.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,8,0,7,11,7,8,5,9,2,3,12,7,15,15,12,7,12,15,7,2,15,5,8,12,12,7,15,15,7,10,8,1,2,3,3,0,12,3,5,4,10,12,13,2,7,8,9,4,13,5,10,1,6,2,7,13,13,15,6,10,11,1,0,6,5,1,15,6,14,7,4,12,11,6,4,9,11,0,3,9,12,11,8,11,3,0,9,8,0,14,9,15,6,3,6,5,6,13,11,2,9,9,10,2,10,15,9,6,9,3,6,12,2,9,5,9,0,11,4,14,11,7,7,8,8,2,1,0,11,3,15,6,12,10,13,6,9,15,3,13,12,10,14,9,14,4,8,13,3,4,1,10,9,11,10,8,8,9,9,13,7,5,13,15,3,5,6,0,15,13,6,5,4,15,0,11,1,10,12,12,8,15,3,5,10,6,2,2,5,5,0,5,14,12,5,4,11,0,3,4,0,1,12,3,2,11,7,5,2,7,4,4,1,11,9,14,8,8,9,9,1,6,0,6,1,7,1,13,2,6,6,4,3,5,12,5,0,15,11,4,15,3,13,11,13,15,2,10,3,14,13,7,8,10,8,7,13,6,15,10,0,6,3,11,9,11,15,2,10,7,8,13,15,8,2,7,6,6,11,0,10,5,1,7,15,15,0,3,7,6,1,15,13,0,7,10,12,7,5,15,0,7,7,3,10,13,3,3,8,13,2,15,15,14,2,1,5,6,8,10,9,0,9,15,9,0,12,9,3,14,10,9,8,2,1,15,5,13,6,8,0,8,4,0,7,10,10,3,1,9,9,1,14,3,5,15,11,7,1,13,7,10,14,1,4,11,0,15,4,8,7,7,11,15,12,10,9,0,3,5,4,11,3,14,3,10,14,0,12,10,1,14,9,12,13,6,7,13,4,3,1,5,11,9,1,14,8,0,11,5,14,12,1,1,9,10,0,12,13,4,14,4,0,2,3,15,3,2,0,0,8,6,6,8,2,13,8,12,3,4,7,1,11,0,0,6,14,4,12,7,11,11,0,0,12,9,12,10,12,11,11,4,14,12,5,11,8,11,3,8,8,13,11,9,11,11,12,12,8,9,11,7,2,7,7,12,12,11,1,0,11,8,13,7,12,2,6,1,4,7,2,5,12,12,8,7,14,2,11,1", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"8\", \"8\"], \"clip_start\": 469.0, \"clip_end\": 473.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,8,0,7,11,7,8,5,9,2,3,12,7,15,15,12,7,12,15,7,2,15,5,8,12,12,7,15,15,7,10,8,1,2,3,3,0,12,3,5,4,10,12,13,2,7,8,9,4,13,5,10,1,6,2,7,13,13,15,6,10,11,1,0,6,5,1,15,6,14,7,4,12,11,6,4,9,11,0,3,9,12,11,8,11,3,0,9,8,0,14,9,15,6,3,6,5,6,13,11,2,9,9,10,2,10,15,9,6,9,3,6,12,2,9,5,9,0,11,4,14,11,7,7,8,8,2,1,0,11,3,15,6,12,10,13,6,9,15,3,13,12,10,14,9,14,4,8,13,3,4,1,10,9,11,10,8,8,9,9,13,7,5,13,15,3,5,6,0,15,13,6,5,4,15,0,11,1,10,12,12,8,15,3,5,10,6,2,2,5,5,0,5,14,12,5,4,11,0,3,4,0,1,12,3,2,11,7,5,2,7,4,4,1,11,9,14,8,8,9,9,1,6,0,6,1,7,1,13,2,6,6,4,3,5,12,5,0,15,11,4,15,3,13,11,13,15,2,10,3,14,13,7,8,10,8,7,13,6,15,10,0,6,3,11,9,11,15,2,10,7,8,13,15,8,2,7,6,6,11,0,10,5,1,7,15,15,0,3,7,6,1,15,13,0,7,10,12,7,5,15,0,7,7,3,10,13,3,3,8,13,2,15,15,14,2,1,5,6,8,10,9,0,9,15,9,0,12,9,3,14,10,9,8,2,1,15,5,13,6,8,0,8,4,0,7,10,10,3,1,9,9,1,14,3,5,15,11,7,1,13,7,10,14,1,4,11,0,15,4,8,7,7,11,15,12,10,9,0,3,5,4,11,3,14,3,10,14,0,12,10,1,14,9,12,13,6,7,13,4,3,1,5,11,9,1,14,8,0,11,5,14,12,1,1,9,10,0,12,13,4,14,4,0,2,3,15,3,2,0,0,8,6,6,8,2,13,8,12,3,4,7,1,11,0,0,6,14,4,12,7,11,11,0,0,12,9,12,10,12,11,11,4,14,12,5,11,8,11,3,8,8,13,11,9,11,11,12,12,8,9,11,7,2,7,7,12,12,11,1,0,11,8,13,7,12,2,6,1,4,7,2,5,12,12,8,7,14,2,11,1", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"7\", \"14\", \"2\", \"11\", \"1\"], \"clip_start\": 506.0, \"clip_end\": 512.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,8,0,7,11,7,8,5,9,2,3,12,7,15,15,12,7,12,15,7,2,15,5,8,12,12,7,15,15,7,10,8,1,2,3,3,0,12,3,5,4,10,12,13,2,7,8,9,4,13,5,10,1,6,2,7,13,13,15,6,10,11,1,0,6,5,1,15,6,14,7,4,12,11,6,4,9,11,0,3,9,12,11,8,11,3,0,9,8,0,14,9,15,6,3,6,5,6,13,11,2,9,9,10,2,10,15,9,6,9,3,6,12,2,9,5,9,0,11,4,14,11,7,7,8,8,2,1,0,11,3,15,6,12,10,13,6,9,15,3,13,12,10,14,9,14,4,8,13,3,4,1,10,9,11,10,8,8,9,9,13,7,5,13,15,3,5,6,0,15,13,6,5,4,15,0,11,1,10,12,12,8,15,3,5,10,6,2,2,5,5,0,5,14,12,5,4,11,0,3,4,0,1,12,3,2,11,7,5,2,7,4,4,1,11,9,14,8,8,9,9,1,6,0,6,1,7,1,13,2,6,6,4,3,5,12,5,0,15,11,4,15,3,13,11,13,15,2,10,3,14,13,7,8,10,8,7,13,6,15,10,0,6,3,11,9,11,15,2,10,7,8,13,15,8,2,7,6,6,11,0,10,5,1,7,15,15,0,3,7,6,1,15,13,0,7,10,12,7,5,15,0,7,7,3,10,13,3,3,8,13,2,15,15,14,2,1,5,6,8,10,9,0,9,15,9,0,12,9,3,14,10,9,8,2,1,15,5,13,6,8,0,8,4,0,7,10,10,3,1,9,9,1,14,3,5,15,11,7,1,13,7,10,14,1,4,11,0,15,4,8,7,7,11,15,12,10,9,0,3,5,4,11,3,14,3,10,14,0,12,10,1,14,9,12,13,6,7,13,4,3,1,5,11,9,1,14,8,0,11,5,14,12,1,1,9,10,0,12,13,4,14,4,0,2,3,15,3,2,0,0,8,6,6,8,2,13,8,12,3,4,7,1,11,0,0,6,14,4,12,7,11,11,0,0,12,9,12,10,12,11,11,4,14,12,5,11,8,11,3,8,8,13,11,9,11,11,12,12,8,9,11,7,2,7,7,12,12,11,1,0,11,8,13,7,12,2,6,1,4,7,2,5,12,12,8,7,14,2,11,1", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"4\", \"11\", \"0\"], \"clip_start\": 196.0, \"clip_end\": 200.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q8_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,8,0,7,11,7,8,5,9,2,3,12,7,15,15,12,7,12,15,7,2,15,5,8,12,12,7,15,15,7,10,8,1,2,3,3,0,12,3,5,4,10,12,13,2,7,8,9,4,13,5,10,1,6,2,7,13,13,15,6,10,11,1,0,6,5,1,15,6,14,7,4,12,11,6,4,9,11,0,3,9,12,11,8,11,3,0,9,8,0,14,9,15,6,3,6,5,6,13,11,2,9,9,10,2,10,15,9,6,9,3,6,12,2,9,5,9,0,11,4,14,11,7,7,8,8,2,1,0,11,3,15,6,12,10,13,6,9,15,3,13,12,10,14,9,14,4,8,13,3,4,1,10,9,11,10,8,8,9,9,13,7,5,13,15,3,5,6,0,15,13,6,5,4,15,0,11,1,10,12,12,8,15,3,5,10,6,2,2,5,5,0,5,14,12,5,4,11,0,3,4,0,1,12,3,2,11,7,5,2,7,4,4,1,11,9,14,8,8,9,9,1,6,0,6,1,7,1,13,2,6,6,4,3,5,12,5,0,15,11,4,15,3,13,11,13,15,2,10,3,14,13,7,8,10,8,7,13,6,15,10,0,6,3,11,9,11,15,2,10,7,8,13,15,8,2,7,6,6,11,0,10,5,1,7,15,15,0,3,7,6,1,15,13,0,7,10,12,7,5,15,0,7,7,3,10,13,3,3,8,13,2,15,15,14,2,1,5,6,8,10,9,0,9,15,9,0,12,9,3,14,10,9,8,2,1,15,5,13,6,8,0,8,4,0,7,10,10,3,1,9,9,1,14,3,5,15,11,7,1,13,7,10,14,1,4,11,0,15,4,8,7,7,11,15,12,10,9,0,3,5,4,11,3,14,3,10,14,0,12,10,1,14,9,12,13,6,7,13,4,3,1,5,11,9,1,14,8,0,11,5,14,12,1,1,9,10,0,12,13,4,14,4,0,2,3,15,3,2,0,0,8,6,6,8,2,13,8,12,3,4,7,1,11,0,0,6,14,4,12,7,11,11,0,0,12,9,12,10,12,11,11,4,14,12,5,11,8,11,3,8,8,13,11,9,11,11,12,12,8,9,11,7,2,7,7,12,12,11,1,0,11,8,13,7,12,2,6,1,4,7,2,5,12,12,8,7,14,2,11,1", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"0\"], \"clip_start\": 506.0, \"clip_end\": 509.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,8,0,7,11,7,8,5,9,2,3,12,7,15,15,12,7,12,15,7,2,15,5,8,12,12,7,15,15,7,10,8,1,2,3,3,0,12,3,5,4,10,12,13,2,7,8,9,4,13,5,10,1,6,2,7,13,13,15,6,10,11,1,0,6,5,1,15,6,14,7,4,12,11,6,4,9,11,0,3,9,12,11,8,11,3,0,9,8,0,14,9,15,6,3,6,5,6,13,11,2,9,9,10,2,10,15,9,6,9,3,6,12,2,9,5,9,0,11,4,14,11,7,7,8,8,2,1,0,11,3,15,6,12,10,13,6,9,15,3,13,12,10,14,9,14,4,8,13,3,4,1,10,9,11,10,8,8,9,9,13,7,5,13,15,3,5,6,0,15,13,6,5,4,15,0,11,1,10,12,12,8,15,3,5,10,6,2,2,5,5,0,5,14,12,5,4,11,0,3,4,0,1,12,3,2,11,7,5,2,7,4,4,1,11,9,14,8,8,9,9,1,6,0,6,1,7,1,13,2,6,6,4,3,5,12,5,0,15,11,4,15,3,13,11,13,15,2,10,3,14,13,7,8,10,8,7,13,6,15,10,0,6,3,11,9,11,15,2,10,7,8,13,15,8,2,7,6,6,11,0,10,5,1,7,15,15,0,3,7,6,1,15,13,0,7,10,12,7,5,15,0,7,7,3,10,13,3,3,8,13,2,15,15,14,2,1,5,6,8,10,9,0,9,15,9,0,12,9,3,14,10,9,8,2,1,15,5,13,6,8,0,8,4,0,7,10,10,3,1,9,9,1,14,3,5,15,11,7,1,13,7,10,14,1,4,11,0,15,4,8,7,7,11,15,12,10,9,0,3,5,4,11,3,14,3,10,14,0,12,10,1,14,9,12,13,6,7,13,4,3,1,5,11,9,1,14,8,0,11,5,14,12,1,1,9,10,0,12,13,4,14,4,0,2,3,15,3,2,0,0,8,6,6,8,2,13,8,12,3,4,7,1,11,0,0,6,14,4,12,7,11,11,0,0,12,9,12,10,12,11,11,4,14,12,5,11,8,11,3,8,8,13,11,9,11,11,12,12,8,9,11,7,2,7,7,12,12,11,1,0,11,8,13,7,12,2,6,1,4,7,2,5,12,12,8,7,14,2,11,1", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"3\", \"5\", \"4\", \"11\"], \"clip_start\": 379.0, \"clip_end\": 384.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,8,0,7,11,7,8,5,9,2,3,12,7,15,15,12,7,12,15,7,2,15,5,8,12,12,7,15,15,7,10,8,1,2,3,3,0,12,3,5,4,10,12,13,2,7,8,9,4,13,5,10,1,6,2,7,13,13,15,6,10,11,1,0,6,5,1,15,6,14,7,4,12,11,6,4,9,11,0,3,9,12,11,8,11,3,0,9,8,0,14,9,15,6,3,6,5,6,13,11,2,9,9,10,2,10,15,9,6,9,3,6,12,2,9,5,9,0,11,4,14,11,7,7,8,8,2,1,0,11,3,15,6,12,10,13,6,9,15,3,13,12,10,14,9,14,4,8,13,3,4,1,10,9,11,10,8,8,9,9,13,7,5,13,15,3,5,6,0,15,13,6,5,4,15,0,11,1,10,12,12,8,15,3,5,10,6,2,2,5,5,0,5,14,12,5,4,11,0,3,4,0,1,12,3,2,11,7,5,2,7,4,4,1,11,9,14,8,8,9,9,1,6,0,6,1,7,1,13,2,6,6,4,3,5,12,5,0,15,11,4,15,3,13,11,13,15,2,10,3,14,13,7,8,10,8,7,13,6,15,10,0,6,3,11,9,11,15,2,10,7,8,13,15,8,2,7,6,6,11,0,10,5,1,7,15,15,0,3,7,6,1,15,13,0,7,10,12,7,5,15,0,7,7,3,10,13,3,3,8,13,2,15,15,14,2,1,5,6,8,10,9,0,9,15,9,0,12,9,3,14,10,9,8,2,1,15,5,13,6,8,0,8,4,0,7,10,10,3,1,9,9,1,14,3,5,15,11,7,1,13,7,10,14,1,4,11,0,15,4,8,7,7,11,15,12,10,9,0,3,5,4,11,3,14,3,10,14,0,12,10,1,14,9,12,13,6,7,13,4,3,1,5,11,9,1,14,8,0,11,5,14,12,1,1,9,10,0,12,13,4,14,4,0,2,3,15,3,2,0,0,8,6,6,8,2,13,8,12,3,4,7,1,11,0,0,6,14,4,12,7,11,11,0,0,12,9,12,10,12,11,11,4,14,12,5,11,8,11,3,8,8,13,11,9,11,11,12,12,8,9,11,7,2,7,7,12,12,11,1,0,11,8,13,7,12,2,6,1,4,7,2,5,12,12,8,7,14,2,11,1", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"8\", \"8\", \"13\"], \"clip_start\": 470.0, \"clip_end\": 474.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,8,0,7,11,7,8,5,9,2,3,12,7,15,15,12,7,12,15,7,2,15,5,8,12,12,7,15,15,7,10,8,1,2,3,3,0,12,3,5,4,10,12,13,2,7,8,9,4,13,5,10,1,6,2,7,13,13,15,6,10,11,1,0,6,5,1,15,6,14,7,4,12,11,6,4,9,11,0,3,9,12,11,8,11,3,0,9,8,0,14,9,15,6,3,6,5,6,13,11,2,9,9,10,2,10,15,9,6,9,3,6,12,2,9,5,9,0,11,4,14,11,7,7,8,8,2,1,0,11,3,15,6,12,10,13,6,9,15,3,13,12,10,14,9,14,4,8,13,3,4,1,10,9,11,10,8,8,9,9,13,7,5,13,15,3,5,6,0,15,13,6,5,4,15,0,11,1,10,12,12,8,15,3,5,10,6,2,2,5,5,0,5,14,12,5,4,11,0,3,4,0,1,12,3,2,11,7,5,2,7,4,4,1,11,9,14,8,8,9,9,1,6,0,6,1,7,1,13,2,6,6,4,3,5,12,5,0,15,11,4,15,3,13,11,13,15,2,10,3,14,13,7,8,10,8,7,13,6,15,10,0,6,3,11,9,11,15,2,10,7,8,13,15,8,2,7,6,6,11,0,10,5,1,7,15,15,0,3,7,6,1,15,13,0,7,10,12,7,5,15,0,7,7,3,10,13,3,3,8,13,2,15,15,14,2,1,5,6,8,10,9,0,9,15,9,0,12,9,3,14,10,9,8,2,1,15,5,13,6,8,0,8,4,0,7,10,10,3,1,9,9,1,14,3,5,15,11,7,1,13,7,10,14,1,4,11,0,15,4,8,7,7,11,15,12,10,9,0,3,5,4,11,3,14,3,10,14,0,12,10,1,14,9,12,13,6,7,13,4,3,1,5,11,9,1,14,8,0,11,5,14,12,1,1,9,10,0,12,13,4,14,4,0,2,3,15,3,2,0,0,8,6,6,8,2,13,8,12,3,4,7,1,11,0,0,6,14,4,12,7,11,11,0,0,12,9,12,10,12,11,11,4,14,12,5,11,8,11,3,8,8,13,11,9,11,11,12,12,8,9,11,7,2,7,7,12,12,11,1,0,11,8,13,7,12,2,6,1,4,7,2,5,12,12,8,7,14,2,11,1", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"10\", \"10\", \"3\", \"1\"], \"clip_start\": 346.0, \"clip_end\": 351.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q12_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,8,0,7,11,7,8,5,9,2,3,12,7,15,15,12,7,12,15,7,2,15,5,8,12,12,7,15,15,7,10,8,1,2,3,3,0,12,3,5,4,10,12,13,2,7,8,9,4,13,5,10,1,6,2,7,13,13,15,6,10,11,1,0,6,5,1,15,6,14,7,4,12,11,6,4,9,11,0,3,9,12,11,8,11,3,0,9,8,0,14,9,15,6,3,6,5,6,13,11,2,9,9,10,2,10,15,9,6,9,3,6,12,2,9,5,9,0,11,4,14,11,7,7,8,8,2,1,0,11,3,15,6,12,10,13,6,9,15,3,13,12,10,14,9,14,4,8,13,3,4,1,10,9,11,10,8,8,9,9,13,7,5,13,15,3,5,6,0,15,13,6,5,4,15,0,11,1,10,12,12,8,15,3,5,10,6,2,2,5,5,0,5,14,12,5,4,11,0,3,4,0,1,12,3,2,11,7,5,2,7,4,4,1,11,9,14,8,8,9,9,1,6,0,6,1,7,1,13,2,6,6,4,3,5,12,5,0,15,11,4,15,3,13,11,13,15,2,10,3,14,13,7,8,10,8,7,13,6,15,10,0,6,3,11,9,11,15,2,10,7,8,13,15,8,2,7,6,6,11,0,10,5,1,7,15,15,0,3,7,6,1,15,13,0,7,10,12,7,5,15,0,7,7,3,10,13,3,3,8,13,2,15,15,14,2,1,5,6,8,10,9,0,9,15,9,0,12,9,3,14,10,9,8,2,1,15,5,13,6,8,0,8,4,0,7,10,10,3,1,9,9,1,14,3,5,15,11,7,1,13,7,10,14,1,4,11,0,15,4,8,7,7,11,15,12,10,9,0,3,5,4,11,3,14,3,10,14,0,12,10,1,14,9,12,13,6,7,13,4,3,1,5,11,9,1,14,8,0,11,5,14,12,1,1,9,10,0,12,13,4,14,4,0,2,3,15,3,2,0,0,8,6,6,8,2,13,8,12,3,4,7,1,11,0,0,6,14,4,12,7,11,11,0,0,12,9,12,10,12,11,11,4,14,12,5,11,8,11,3,8,8,13,11,9,11,11,12,12,8,9,11,7,2,7,7,12,12,11,1,0,11,8,13,7,12,2,6,1,4,7,2,5,12,12,8,7,14,2,11,1", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"7\", \"11\", \"2\", \"2\", \"14\"], \"clip_start\": 266.0, \"clip_end\": 272.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,8,0,7,11,7,8,5,9,2,3,12,7,15,15,12,7,12,15,7,2,15,5,8,12,12,7,15,15,7,10,8,1,2,3,3,0,12,3,5,4,10,12,13,2,7,8,9,4,13,5,10,1,6,2,7,13,13,15,6,10,11,1,0,6,5,1,15,6,14,7,4,12,11,6,4,9,11,0,3,9,12,11,8,11,3,0,9,8,0,14,9,15,6,3,6,5,6,13,11,2,9,9,10,2,10,15,9,6,9,3,6,12,2,9,5,9,0,11,4,14,11,7,7,8,8,2,1,0,11,3,15,6,12,10,13,6,9,15,3,13,12,10,14,9,14,4,8,13,3,4,1,10,9,11,10,8,8,9,9,13,7,5,13,15,3,5,6,0,15,13,6,5,4,15,0,11,1,10,12,12,8,15,3,5,10,6,2,2,5,5,0,5,14,12,5,4,11,0,3,4,0,1,12,3,2,11,7,5,2,7,4,4,1,11,9,14,8,8,9,9,1,6,0,6,1,7,1,13,2,6,6,4,3,5,12,5,0,15,11,4,15,3,13,11,13,15,2,10,3,14,13,7,8,10,8,7,13,6,15,10,0,6,3,11,9,11,15,2,10,7,8,13,15,8,2,7,6,6,11,0,10,5,1,7,15,15,0,3,7,6,1,15,13,0,7,10,12,7,5,15,0,7,7,3,10,13,3,3,8,13,2,15,15,14,2,1,5,6,8,10,9,0,9,15,9,0,12,9,3,14,10,9,8,2,1,15,5,13,6,8,0,8,4,0,7,10,10,3,1,9,9,1,14,3,5,15,11,7,1,13,7,10,14,1,4,11,0,15,4,8,7,7,11,15,12,10,9,0,3,5,4,11,3,14,3,10,14,0,12,10,1,14,9,12,13,6,7,13,4,3,1,5,11,9,1,14,8,0,11,5,14,12,1,1,9,10,0,12,13,4,14,4,0,2,3,15,3,2,0,0,8,6,6,8,2,13,8,12,3,4,7,1,11,0,0,6,14,4,12,7,11,11,0,0,12,9,12,10,12,11,11,4,14,12,5,11,8,11,3,8,8,13,11,9,11,11,12,12,8,9,11,7,2,7,7,12,12,11,1,0,11,8,13,7,12,2,6,1,4,7,2,5,12,12,8,7,14,2,11,1", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 11, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"0\", \"12\", \"3\"], \"clip_start\": 36.0, \"clip_end\": 40.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q14_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,8,0,7,11,7,8,5,9,2,3,12,7,15,15,12,7,12,15,7,2,15,5,8,12,12,7,15,15,7,10,8,1,2,3,3,0,12,3,5,4,10,12,13,2,7,8,9,4,13,5,10,1,6,2,7,13,13,15,6,10,11,1,0,6,5,1,15,6,14,7,4,12,11,6,4,9,11,0,3,9,12,11,8,11,3,0,9,8,0,14,9,15,6,3,6,5,6,13,11,2,9,9,10,2,10,15,9,6,9,3,6,12,2,9,5,9,0,11,4,14,11,7,7,8,8,2,1,0,11,3,15,6,12,10,13,6,9,15,3,13,12,10,14,9,14,4,8,13,3,4,1,10,9,11,10,8,8,9,9,13,7,5,13,15,3,5,6,0,15,13,6,5,4,15,0,11,1,10,12,12,8,15,3,5,10,6,2,2,5,5,0,5,14,12,5,4,11,0,3,4,0,1,12,3,2,11,7,5,2,7,4,4,1,11,9,14,8,8,9,9,1,6,0,6,1,7,1,13,2,6,6,4,3,5,12,5,0,15,11,4,15,3,13,11,13,15,2,10,3,14,13,7,8,10,8,7,13,6,15,10,0,6,3,11,9,11,15,2,10,7,8,13,15,8,2,7,6,6,11,0,10,5,1,7,15,15,0,3,7,6,1,15,13,0,7,10,12,7,5,15,0,7,7,3,10,13,3,3,8,13,2,15,15,14,2,1,5,6,8,10,9,0,9,15,9,0,12,9,3,14,10,9,8,2,1,15,5,13,6,8,0,8,4,0,7,10,10,3,1,9,9,1,14,3,5,15,11,7,1,13,7,10,14,1,4,11,0,15,4,8,7,7,11,15,12,10,9,0,3,5,4,11,3,14,3,10,14,0,12,10,1,14,9,12,13,6,7,13,4,3,1,5,11,9,1,14,8,0,11,5,14,12,1,1,9,10,0,12,13,4,14,4,0,2,3,15,3,2,0,0,8,6,6,8,2,13,8,12,3,4,7,1,11,0,0,6,14,4,12,7,11,11,0,0,12,9,12,10,12,11,11,4,14,12,5,11,8,11,3,8,8,13,11,9,11,11,12,12,8,9,11,7,2,7,7,12,12,11,1,0,11,8,13,7,12,2,6,1,4,7,2,5,12,12,8,7,14,2,11,1", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 11, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"12\", \"10\", \"9\", \"0\"], \"clip_start\": 375.0, \"clip_end\": 380.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q15_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4", "dataset_source": "synthetic", "input_sequence": "11,13,8,0,7,11,7,8,5,9,2,3,12,7,15,15,12,7,12,15,7,2,15,5,8,12,12,7,15,15,7,10,8,1,2,3,3,0,12,3,5,4,10,12,13,2,7,8,9,4,13,5,10,1,6,2,7,13,13,15,6,10,11,1,0,6,5,1,15,6,14,7,4,12,11,6,4,9,11,0,3,9,12,11,8,11,3,0,9,8,0,14,9,15,6,3,6,5,6,13,11,2,9,9,10,2,10,15,9,6,9,3,6,12,2,9,5,9,0,11,4,14,11,7,7,8,8,2,1,0,11,3,15,6,12,10,13,6,9,15,3,13,12,10,14,9,14,4,8,13,3,4,1,10,9,11,10,8,8,9,9,13,7,5,13,15,3,5,6,0,15,13,6,5,4,15,0,11,1,10,12,12,8,15,3,5,10,6,2,2,5,5,0,5,14,12,5,4,11,0,3,4,0,1,12,3,2,11,7,5,2,7,4,4,1,11,9,14,8,8,9,9,1,6,0,6,1,7,1,13,2,6,6,4,3,5,12,5,0,15,11,4,15,3,13,11,13,15,2,10,3,14,13,7,8,10,8,7,13,6,15,10,0,6,3,11,9,11,15,2,10,7,8,13,15,8,2,7,6,6,11,0,10,5,1,7,15,15,0,3,7,6,1,15,13,0,7,10,12,7,5,15,0,7,7,3,10,13,3,3,8,13,2,15,15,14,2,1,5,6,8,10,9,0,9,15,9,0,12,9,3,14,10,9,8,2,1,15,5,13,6,8,0,8,4,0,7,10,10,3,1,9,9,1,14,3,5,15,11,7,1,13,7,10,14,1,4,11,0,15,4,8,7,7,11,15,12,10,9,0,3,5,4,11,3,14,3,10,14,0,12,10,1,14,9,12,13,6,7,13,4,3,1,5,11,9,1,14,8,0,11,5,14,12,1,1,9,10,0,12,13,4,14,4,0,2,3,15,3,2,0,0,8,6,6,8,2,13,8,12,3,4,7,1,11,0,0,6,14,4,12,7,11,11,0,0,12,9,12,10,12,11,11,4,14,12,5,11,8,11,3,8,8,13,11,9,11,11,12,12,8,9,11,7,2,7,7,12,12,11,1,0,11,8,13,7,12,2,6,1,4,7,2,5,12,12,8,7,14,2,11,1", "source_class": null, "source_dataset": null, "video_id": "video_11_v0", "question_id": "video_11_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"13\", \"3\", \"6\", \"2\"], \"clip_start\": 432.0, \"clip_end\": 438.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,10,15,5,5,3,2,0,6,7,1,12,13,0,10,2,15,10,9,13,3,1,5,15,2,4,8,8,5,15,9,15,15,5,6,4,3,12,5,2,13,1,0,12,14,12,8,13,3,15,1,4,10,9,14,2,0,9,7,6,12,8,14,4,14,7,2,5,7,13,5,5,1,6,2,0,15,14,9,6,5,14,2,3,7,15,11,14,10,5,5,11,3,12,2,12,7,4,15,13,0,12,15,6,3,7,4,1,5,12,13,2,0,1,2,1,2,4,14,10,7,4,1,11,14,2,9,9,7,2,13,6,10,1,9,12,15,9,15,8,9,5,8,5,2,7,6,11,5,9,9,9,10,6,9,9,13,2,0,6,12,15,9,15,9,12,15,11,15,13,5,7,3,3,10,13,8,12,3,12,12,4,5,8,8,6,15,12,14,7,5,15,5,3,1,0,0,1,7,6,6,6,15,1,10,14,2,14,13,11,2,2,8,12,13,8,6,3,9,12,3,12,6,6,2,5,14,5,0,11,7,5,9,2,4,14,11,5,3,12,11,15,9,1,15,15,12,15,12,11,5,8,4,14,15,8,0,9,15,6,12,9,14,9,4,10,7,1,5,5,11,1,7,9,10,11,2,3,13,6,5,5,4,7,6,7,11,11,2,8,11,10,5,12,8,1,2,13,5,12,1,7,6,5,6,9,9,6,6,13,15,11,5,7,13,0,10,5,7,6,9,15,5,0,1,10,5,3,8,10,11,8,6,12,11,8,15,8,1,10,13,14,7,3,6,6,7,15,11,11,0,15,15,5,3,2,11,11,12,15,0,13,2,3,3,11,2,3,4,5,1,6,6,13,6,12,8,10,4,3,8,9,9,5,10,13,5,15,14,5,10,3,3,9,12,3,15,12,6,15,8,4,11,8,9,3,2,14,10,8,9,4,10,1,11,8,8,12,5,12,8,8,4,6,13,11,0,2,14,7,2,12,9,13,3,6,2,5,14,6,4,8,7,9,4,11,10,11,11,13,12,3,9,5,4,4,9,9,10,9,6,11,6,0,4,8,4,14,6,14,14,9,6,14,12,3,0,14,12,9,13,11,12,8,5,0,2,2,11,6,4,9,14,7,3,5,6,5,0,11,8,6,15,11,7,14,8,10,0,7,1", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"11\", \"3\"], \"clip_start\": 91.0, \"clip_end\": 94.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q1_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,10,15,5,5,3,2,0,6,7,1,12,13,0,10,2,15,10,9,13,3,1,5,15,2,4,8,8,5,15,9,15,15,5,6,4,3,12,5,2,13,1,0,12,14,12,8,13,3,15,1,4,10,9,14,2,0,9,7,6,12,8,14,4,14,7,2,5,7,13,5,5,1,6,2,0,15,14,9,6,5,14,2,3,7,15,11,14,10,5,5,11,3,12,2,12,7,4,15,13,0,12,15,6,3,7,4,1,5,12,13,2,0,1,2,1,2,4,14,10,7,4,1,11,14,2,9,9,7,2,13,6,10,1,9,12,15,9,15,8,9,5,8,5,2,7,6,11,5,9,9,9,10,6,9,9,13,2,0,6,12,15,9,15,9,12,15,11,15,13,5,7,3,3,10,13,8,12,3,12,12,4,5,8,8,6,15,12,14,7,5,15,5,3,1,0,0,1,7,6,6,6,15,1,10,14,2,14,13,11,2,2,8,12,13,8,6,3,9,12,3,12,6,6,2,5,14,5,0,11,7,5,9,2,4,14,11,5,3,12,11,15,9,1,15,15,12,15,12,11,5,8,4,14,15,8,0,9,15,6,12,9,14,9,4,10,7,1,5,5,11,1,7,9,10,11,2,3,13,6,5,5,4,7,6,7,11,11,2,8,11,10,5,12,8,1,2,13,5,12,1,7,6,5,6,9,9,6,6,13,15,11,5,7,13,0,10,5,7,6,9,15,5,0,1,10,5,3,8,10,11,8,6,12,11,8,15,8,1,10,13,14,7,3,6,6,7,15,11,11,0,15,15,5,3,2,11,11,12,15,0,13,2,3,3,11,2,3,4,5,1,6,6,13,6,12,8,10,4,3,8,9,9,5,10,13,5,15,14,5,10,3,3,9,12,3,15,12,6,15,8,4,11,8,9,3,2,14,10,8,9,4,10,1,11,8,8,12,5,12,8,8,4,6,13,11,0,2,14,7,2,12,9,13,3,6,2,5,14,6,4,8,7,9,4,11,10,11,11,13,12,3,9,5,4,4,9,9,10,9,6,11,6,0,4,8,4,14,6,14,14,9,6,14,12,3,0,14,12,9,13,11,12,8,5,0,2,2,11,6,4,9,14,7,3,5,6,5,0,11,8,6,15,11,7,14,8,10,0,7,1", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"3\", \"6\", \"2\", \"5\"], \"clip_start\": 434.0, \"clip_end\": 439.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q2_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,10,15,5,5,3,2,0,6,7,1,12,13,0,10,2,15,10,9,13,3,1,5,15,2,4,8,8,5,15,9,15,15,5,6,4,3,12,5,2,13,1,0,12,14,12,8,13,3,15,1,4,10,9,14,2,0,9,7,6,12,8,14,4,14,7,2,5,7,13,5,5,1,6,2,0,15,14,9,6,5,14,2,3,7,15,11,14,10,5,5,11,3,12,2,12,7,4,15,13,0,12,15,6,3,7,4,1,5,12,13,2,0,1,2,1,2,4,14,10,7,4,1,11,14,2,9,9,7,2,13,6,10,1,9,12,15,9,15,8,9,5,8,5,2,7,6,11,5,9,9,9,10,6,9,9,13,2,0,6,12,15,9,15,9,12,15,11,15,13,5,7,3,3,10,13,8,12,3,12,12,4,5,8,8,6,15,12,14,7,5,15,5,3,1,0,0,1,7,6,6,6,15,1,10,14,2,14,13,11,2,2,8,12,13,8,6,3,9,12,3,12,6,6,2,5,14,5,0,11,7,5,9,2,4,14,11,5,3,12,11,15,9,1,15,15,12,15,12,11,5,8,4,14,15,8,0,9,15,6,12,9,14,9,4,10,7,1,5,5,11,1,7,9,10,11,2,3,13,6,5,5,4,7,6,7,11,11,2,8,11,10,5,12,8,1,2,13,5,12,1,7,6,5,6,9,9,6,6,13,15,11,5,7,13,0,10,5,7,6,9,15,5,0,1,10,5,3,8,10,11,8,6,12,11,8,15,8,1,10,13,14,7,3,6,6,7,15,11,11,0,15,15,5,3,2,11,11,12,15,0,13,2,3,3,11,2,3,4,5,1,6,6,13,6,12,8,10,4,3,8,9,9,5,10,13,5,15,14,5,10,3,3,9,12,3,15,12,6,15,8,4,11,8,9,3,2,14,10,8,9,4,10,1,11,8,8,12,5,12,8,8,4,6,13,11,0,2,14,7,2,12,9,13,3,6,2,5,14,6,4,8,7,9,4,11,10,11,11,13,12,3,9,5,4,4,9,9,10,9,6,11,6,0,4,8,4,14,6,14,14,9,6,14,12,3,0,14,12,9,13,11,12,8,5,0,2,2,11,6,4,9,14,7,3,5,6,5,0,11,8,6,15,11,7,14,8,10,0,7,1", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"0\", \"13\", \"2\"], \"clip_start\": 360.0, \"clip_end\": 364.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q3_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,10,15,5,5,3,2,0,6,7,1,12,13,0,10,2,15,10,9,13,3,1,5,15,2,4,8,8,5,15,9,15,15,5,6,4,3,12,5,2,13,1,0,12,14,12,8,13,3,15,1,4,10,9,14,2,0,9,7,6,12,8,14,4,14,7,2,5,7,13,5,5,1,6,2,0,15,14,9,6,5,14,2,3,7,15,11,14,10,5,5,11,3,12,2,12,7,4,15,13,0,12,15,6,3,7,4,1,5,12,13,2,0,1,2,1,2,4,14,10,7,4,1,11,14,2,9,9,7,2,13,6,10,1,9,12,15,9,15,8,9,5,8,5,2,7,6,11,5,9,9,9,10,6,9,9,13,2,0,6,12,15,9,15,9,12,15,11,15,13,5,7,3,3,10,13,8,12,3,12,12,4,5,8,8,6,15,12,14,7,5,15,5,3,1,0,0,1,7,6,6,6,15,1,10,14,2,14,13,11,2,2,8,12,13,8,6,3,9,12,3,12,6,6,2,5,14,5,0,11,7,5,9,2,4,14,11,5,3,12,11,15,9,1,15,15,12,15,12,11,5,8,4,14,15,8,0,9,15,6,12,9,14,9,4,10,7,1,5,5,11,1,7,9,10,11,2,3,13,6,5,5,4,7,6,7,11,11,2,8,11,10,5,12,8,1,2,13,5,12,1,7,6,5,6,9,9,6,6,13,15,11,5,7,13,0,10,5,7,6,9,15,5,0,1,10,5,3,8,10,11,8,6,12,11,8,15,8,1,10,13,14,7,3,6,6,7,15,11,11,0,15,15,5,3,2,11,11,12,15,0,13,2,3,3,11,2,3,4,5,1,6,6,13,6,12,8,10,4,3,8,9,9,5,10,13,5,15,14,5,10,3,3,9,12,3,15,12,6,15,8,4,11,8,9,3,2,14,10,8,9,4,10,1,11,8,8,12,5,12,8,8,4,6,13,11,0,2,14,7,2,12,9,13,3,6,2,5,14,6,4,8,7,9,4,11,10,11,11,13,12,3,9,5,4,4,9,9,10,9,6,11,6,0,4,8,4,14,6,14,14,9,6,14,12,3,0,14,12,9,13,11,12,8,5,0,2,2,11,6,4,9,14,7,3,5,6,5,0,11,8,6,15,11,7,14,8,10,0,7,1", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"12\", \"10\"], \"clip_start\": 68.0, \"clip_end\": 71.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q4_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,10,15,5,5,3,2,0,6,7,1,12,13,0,10,2,15,10,9,13,3,1,5,15,2,4,8,8,5,15,9,15,15,5,6,4,3,12,5,2,13,1,0,12,14,12,8,13,3,15,1,4,10,9,14,2,0,9,7,6,12,8,14,4,14,7,2,5,7,13,5,5,1,6,2,0,15,14,9,6,5,14,2,3,7,15,11,14,10,5,5,11,3,12,2,12,7,4,15,13,0,12,15,6,3,7,4,1,5,12,13,2,0,1,2,1,2,4,14,10,7,4,1,11,14,2,9,9,7,2,13,6,10,1,9,12,15,9,15,8,9,5,8,5,2,7,6,11,5,9,9,9,10,6,9,9,13,2,0,6,12,15,9,15,9,12,15,11,15,13,5,7,3,3,10,13,8,12,3,12,12,4,5,8,8,6,15,12,14,7,5,15,5,3,1,0,0,1,7,6,6,6,15,1,10,14,2,14,13,11,2,2,8,12,13,8,6,3,9,12,3,12,6,6,2,5,14,5,0,11,7,5,9,2,4,14,11,5,3,12,11,15,9,1,15,15,12,15,12,11,5,8,4,14,15,8,0,9,15,6,12,9,14,9,4,10,7,1,5,5,11,1,7,9,10,11,2,3,13,6,5,5,4,7,6,7,11,11,2,8,11,10,5,12,8,1,2,13,5,12,1,7,6,5,6,9,9,6,6,13,15,11,5,7,13,0,10,5,7,6,9,15,5,0,1,10,5,3,8,10,11,8,6,12,11,8,15,8,1,10,13,14,7,3,6,6,7,15,11,11,0,15,15,5,3,2,11,11,12,15,0,13,2,3,3,11,2,3,4,5,1,6,6,13,6,12,8,10,4,3,8,9,9,5,10,13,5,15,14,5,10,3,3,9,12,3,15,12,6,15,8,4,11,8,9,3,2,14,10,8,9,4,10,1,11,8,8,12,5,12,8,8,4,6,13,11,0,2,14,7,2,12,9,13,3,6,2,5,14,6,4,8,7,9,4,11,10,11,11,13,12,3,9,5,4,4,9,9,10,9,6,11,6,0,4,8,4,14,6,14,14,9,6,14,12,3,0,14,12,9,13,11,12,8,5,0,2,2,11,6,4,9,14,7,3,5,6,5,0,11,8,6,15,11,7,14,8,10,0,7,1", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"2\", \"0\", \"6\", \"12\", \"15\"], \"clip_start\": 157.0, \"clip_end\": 163.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q5_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,10,15,5,5,3,2,0,6,7,1,12,13,0,10,2,15,10,9,13,3,1,5,15,2,4,8,8,5,15,9,15,15,5,6,4,3,12,5,2,13,1,0,12,14,12,8,13,3,15,1,4,10,9,14,2,0,9,7,6,12,8,14,4,14,7,2,5,7,13,5,5,1,6,2,0,15,14,9,6,5,14,2,3,7,15,11,14,10,5,5,11,3,12,2,12,7,4,15,13,0,12,15,6,3,7,4,1,5,12,13,2,0,1,2,1,2,4,14,10,7,4,1,11,14,2,9,9,7,2,13,6,10,1,9,12,15,9,15,8,9,5,8,5,2,7,6,11,5,9,9,9,10,6,9,9,13,2,0,6,12,15,9,15,9,12,15,11,15,13,5,7,3,3,10,13,8,12,3,12,12,4,5,8,8,6,15,12,14,7,5,15,5,3,1,0,0,1,7,6,6,6,15,1,10,14,2,14,13,11,2,2,8,12,13,8,6,3,9,12,3,12,6,6,2,5,14,5,0,11,7,5,9,2,4,14,11,5,3,12,11,15,9,1,15,15,12,15,12,11,5,8,4,14,15,8,0,9,15,6,12,9,14,9,4,10,7,1,5,5,11,1,7,9,10,11,2,3,13,6,5,5,4,7,6,7,11,11,2,8,11,10,5,12,8,1,2,13,5,12,1,7,6,5,6,9,9,6,6,13,15,11,5,7,13,0,10,5,7,6,9,15,5,0,1,10,5,3,8,10,11,8,6,12,11,8,15,8,1,10,13,14,7,3,6,6,7,15,11,11,0,15,15,5,3,2,11,11,12,15,0,13,2,3,3,11,2,3,4,5,1,6,6,13,6,12,8,10,4,3,8,9,9,5,10,13,5,15,14,5,10,3,3,9,12,3,15,12,6,15,8,4,11,8,9,3,2,14,10,8,9,4,10,1,11,8,8,12,5,12,8,8,4,6,13,11,0,2,14,7,2,12,9,13,3,6,2,5,14,6,4,8,7,9,4,11,10,11,11,13,12,3,9,5,4,4,9,9,10,9,6,11,6,0,4,8,4,14,6,14,14,9,6,14,12,3,0,14,12,9,13,11,12,8,5,0,2,2,11,6,4,9,14,7,3,5,6,5,0,11,8,6,15,11,7,14,8,10,0,7,1", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"10\", \"11\", \"8\"], \"clip_start\": 329.0, \"clip_end\": 333.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,10,15,5,5,3,2,0,6,7,1,12,13,0,10,2,15,10,9,13,3,1,5,15,2,4,8,8,5,15,9,15,15,5,6,4,3,12,5,2,13,1,0,12,14,12,8,13,3,15,1,4,10,9,14,2,0,9,7,6,12,8,14,4,14,7,2,5,7,13,5,5,1,6,2,0,15,14,9,6,5,14,2,3,7,15,11,14,10,5,5,11,3,12,2,12,7,4,15,13,0,12,15,6,3,7,4,1,5,12,13,2,0,1,2,1,2,4,14,10,7,4,1,11,14,2,9,9,7,2,13,6,10,1,9,12,15,9,15,8,9,5,8,5,2,7,6,11,5,9,9,9,10,6,9,9,13,2,0,6,12,15,9,15,9,12,15,11,15,13,5,7,3,3,10,13,8,12,3,12,12,4,5,8,8,6,15,12,14,7,5,15,5,3,1,0,0,1,7,6,6,6,15,1,10,14,2,14,13,11,2,2,8,12,13,8,6,3,9,12,3,12,6,6,2,5,14,5,0,11,7,5,9,2,4,14,11,5,3,12,11,15,9,1,15,15,12,15,12,11,5,8,4,14,15,8,0,9,15,6,12,9,14,9,4,10,7,1,5,5,11,1,7,9,10,11,2,3,13,6,5,5,4,7,6,7,11,11,2,8,11,10,5,12,8,1,2,13,5,12,1,7,6,5,6,9,9,6,6,13,15,11,5,7,13,0,10,5,7,6,9,15,5,0,1,10,5,3,8,10,11,8,6,12,11,8,15,8,1,10,13,14,7,3,6,6,7,15,11,11,0,15,15,5,3,2,11,11,12,15,0,13,2,3,3,11,2,3,4,5,1,6,6,13,6,12,8,10,4,3,8,9,9,5,10,13,5,15,14,5,10,3,3,9,12,3,15,12,6,15,8,4,11,8,9,3,2,14,10,8,9,4,10,1,11,8,8,12,5,12,8,8,4,6,13,11,0,2,14,7,2,12,9,13,3,6,2,5,14,6,4,8,7,9,4,11,10,11,11,13,12,3,9,5,4,4,9,9,10,9,6,11,6,0,4,8,4,14,6,14,14,9,6,14,12,3,0,14,12,9,13,11,12,8,5,0,2,2,11,6,4,9,14,7,3,5,6,5,0,11,8,6,15,11,7,14,8,10,0,7,1", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"4\", \"8\", \"6\", \"0\"], \"clip_start\": 455.0, \"clip_end\": 461.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,10,15,5,5,3,2,0,6,7,1,12,13,0,10,2,15,10,9,13,3,1,5,15,2,4,8,8,5,15,9,15,15,5,6,4,3,12,5,2,13,1,0,12,14,12,8,13,3,15,1,4,10,9,14,2,0,9,7,6,12,8,14,4,14,7,2,5,7,13,5,5,1,6,2,0,15,14,9,6,5,14,2,3,7,15,11,14,10,5,5,11,3,12,2,12,7,4,15,13,0,12,15,6,3,7,4,1,5,12,13,2,0,1,2,1,2,4,14,10,7,4,1,11,14,2,9,9,7,2,13,6,10,1,9,12,15,9,15,8,9,5,8,5,2,7,6,11,5,9,9,9,10,6,9,9,13,2,0,6,12,15,9,15,9,12,15,11,15,13,5,7,3,3,10,13,8,12,3,12,12,4,5,8,8,6,15,12,14,7,5,15,5,3,1,0,0,1,7,6,6,6,15,1,10,14,2,14,13,11,2,2,8,12,13,8,6,3,9,12,3,12,6,6,2,5,14,5,0,11,7,5,9,2,4,14,11,5,3,12,11,15,9,1,15,15,12,15,12,11,5,8,4,14,15,8,0,9,15,6,12,9,14,9,4,10,7,1,5,5,11,1,7,9,10,11,2,3,13,6,5,5,4,7,6,7,11,11,2,8,11,10,5,12,8,1,2,13,5,12,1,7,6,5,6,9,9,6,6,13,15,11,5,7,13,0,10,5,7,6,9,15,5,0,1,10,5,3,8,10,11,8,6,12,11,8,15,8,1,10,13,14,7,3,6,6,7,15,11,11,0,15,15,5,3,2,11,11,12,15,0,13,2,3,3,11,2,3,4,5,1,6,6,13,6,12,8,10,4,3,8,9,9,5,10,13,5,15,14,5,10,3,3,9,12,3,15,12,6,15,8,4,11,8,9,3,2,14,10,8,9,4,10,1,11,8,8,12,5,12,8,8,4,6,13,11,0,2,14,7,2,12,9,13,3,6,2,5,14,6,4,8,7,9,4,11,10,11,11,13,12,3,9,5,4,4,9,9,10,9,6,11,6,0,4,8,4,14,6,14,14,9,6,14,12,3,0,14,12,9,13,11,12,8,5,0,2,2,11,6,4,9,14,7,3,5,6,5,0,11,8,6,15,11,7,14,8,10,0,7,1", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"6\", \"9\"], \"clip_start\": 319.0, \"clip_end\": 322.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,10,15,5,5,3,2,0,6,7,1,12,13,0,10,2,15,10,9,13,3,1,5,15,2,4,8,8,5,15,9,15,15,5,6,4,3,12,5,2,13,1,0,12,14,12,8,13,3,15,1,4,10,9,14,2,0,9,7,6,12,8,14,4,14,7,2,5,7,13,5,5,1,6,2,0,15,14,9,6,5,14,2,3,7,15,11,14,10,5,5,11,3,12,2,12,7,4,15,13,0,12,15,6,3,7,4,1,5,12,13,2,0,1,2,1,2,4,14,10,7,4,1,11,14,2,9,9,7,2,13,6,10,1,9,12,15,9,15,8,9,5,8,5,2,7,6,11,5,9,9,9,10,6,9,9,13,2,0,6,12,15,9,15,9,12,15,11,15,13,5,7,3,3,10,13,8,12,3,12,12,4,5,8,8,6,15,12,14,7,5,15,5,3,1,0,0,1,7,6,6,6,15,1,10,14,2,14,13,11,2,2,8,12,13,8,6,3,9,12,3,12,6,6,2,5,14,5,0,11,7,5,9,2,4,14,11,5,3,12,11,15,9,1,15,15,12,15,12,11,5,8,4,14,15,8,0,9,15,6,12,9,14,9,4,10,7,1,5,5,11,1,7,9,10,11,2,3,13,6,5,5,4,7,6,7,11,11,2,8,11,10,5,12,8,1,2,13,5,12,1,7,6,5,6,9,9,6,6,13,15,11,5,7,13,0,10,5,7,6,9,15,5,0,1,10,5,3,8,10,11,8,6,12,11,8,15,8,1,10,13,14,7,3,6,6,7,15,11,11,0,15,15,5,3,2,11,11,12,15,0,13,2,3,3,11,2,3,4,5,1,6,6,13,6,12,8,10,4,3,8,9,9,5,10,13,5,15,14,5,10,3,3,9,12,3,15,12,6,15,8,4,11,8,9,3,2,14,10,8,9,4,10,1,11,8,8,12,5,12,8,8,4,6,13,11,0,2,14,7,2,12,9,13,3,6,2,5,14,6,4,8,7,9,4,11,10,11,11,13,12,3,9,5,4,4,9,9,10,9,6,11,6,0,4,8,4,14,6,14,14,9,6,14,12,3,0,14,12,9,13,11,12,8,5,0,2,2,11,6,4,9,14,7,3,5,6,5,0,11,8,6,15,11,7,14,8,10,0,7,1", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"2\", \"15\", \"10\", \"9\"], \"clip_start\": 14.0, \"clip_end\": 20.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,10,15,5,5,3,2,0,6,7,1,12,13,0,10,2,15,10,9,13,3,1,5,15,2,4,8,8,5,15,9,15,15,5,6,4,3,12,5,2,13,1,0,12,14,12,8,13,3,15,1,4,10,9,14,2,0,9,7,6,12,8,14,4,14,7,2,5,7,13,5,5,1,6,2,0,15,14,9,6,5,14,2,3,7,15,11,14,10,5,5,11,3,12,2,12,7,4,15,13,0,12,15,6,3,7,4,1,5,12,13,2,0,1,2,1,2,4,14,10,7,4,1,11,14,2,9,9,7,2,13,6,10,1,9,12,15,9,15,8,9,5,8,5,2,7,6,11,5,9,9,9,10,6,9,9,13,2,0,6,12,15,9,15,9,12,15,11,15,13,5,7,3,3,10,13,8,12,3,12,12,4,5,8,8,6,15,12,14,7,5,15,5,3,1,0,0,1,7,6,6,6,15,1,10,14,2,14,13,11,2,2,8,12,13,8,6,3,9,12,3,12,6,6,2,5,14,5,0,11,7,5,9,2,4,14,11,5,3,12,11,15,9,1,15,15,12,15,12,11,5,8,4,14,15,8,0,9,15,6,12,9,14,9,4,10,7,1,5,5,11,1,7,9,10,11,2,3,13,6,5,5,4,7,6,7,11,11,2,8,11,10,5,12,8,1,2,13,5,12,1,7,6,5,6,9,9,6,6,13,15,11,5,7,13,0,10,5,7,6,9,15,5,0,1,10,5,3,8,10,11,8,6,12,11,8,15,8,1,10,13,14,7,3,6,6,7,15,11,11,0,15,15,5,3,2,11,11,12,15,0,13,2,3,3,11,2,3,4,5,1,6,6,13,6,12,8,10,4,3,8,9,9,5,10,13,5,15,14,5,10,3,3,9,12,3,15,12,6,15,8,4,11,8,9,3,2,14,10,8,9,4,10,1,11,8,8,12,5,12,8,8,4,6,13,11,0,2,14,7,2,12,9,13,3,6,2,5,14,6,4,8,7,9,4,11,10,11,11,13,12,3,9,5,4,4,9,9,10,9,6,11,6,0,4,8,4,14,6,14,14,9,6,14,12,3,0,14,12,9,13,11,12,8,5,0,2,2,11,6,4,9,14,7,3,5,6,5,0,11,8,6,15,11,7,14,8,10,0,7,1", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"4\", \"10\"], \"clip_start\": 411.0, \"clip_end\": 414.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q10_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,10,15,5,5,3,2,0,6,7,1,12,13,0,10,2,15,10,9,13,3,1,5,15,2,4,8,8,5,15,9,15,15,5,6,4,3,12,5,2,13,1,0,12,14,12,8,13,3,15,1,4,10,9,14,2,0,9,7,6,12,8,14,4,14,7,2,5,7,13,5,5,1,6,2,0,15,14,9,6,5,14,2,3,7,15,11,14,10,5,5,11,3,12,2,12,7,4,15,13,0,12,15,6,3,7,4,1,5,12,13,2,0,1,2,1,2,4,14,10,7,4,1,11,14,2,9,9,7,2,13,6,10,1,9,12,15,9,15,8,9,5,8,5,2,7,6,11,5,9,9,9,10,6,9,9,13,2,0,6,12,15,9,15,9,12,15,11,15,13,5,7,3,3,10,13,8,12,3,12,12,4,5,8,8,6,15,12,14,7,5,15,5,3,1,0,0,1,7,6,6,6,15,1,10,14,2,14,13,11,2,2,8,12,13,8,6,3,9,12,3,12,6,6,2,5,14,5,0,11,7,5,9,2,4,14,11,5,3,12,11,15,9,1,15,15,12,15,12,11,5,8,4,14,15,8,0,9,15,6,12,9,14,9,4,10,7,1,5,5,11,1,7,9,10,11,2,3,13,6,5,5,4,7,6,7,11,11,2,8,11,10,5,12,8,1,2,13,5,12,1,7,6,5,6,9,9,6,6,13,15,11,5,7,13,0,10,5,7,6,9,15,5,0,1,10,5,3,8,10,11,8,6,12,11,8,15,8,1,10,13,14,7,3,6,6,7,15,11,11,0,15,15,5,3,2,11,11,12,15,0,13,2,3,3,11,2,3,4,5,1,6,6,13,6,12,8,10,4,3,8,9,9,5,10,13,5,15,14,5,10,3,3,9,12,3,15,12,6,15,8,4,11,8,9,3,2,14,10,8,9,4,10,1,11,8,8,12,5,12,8,8,4,6,13,11,0,2,14,7,2,12,9,13,3,6,2,5,14,6,4,8,7,9,4,11,10,11,11,13,12,3,9,5,4,4,9,9,10,9,6,11,6,0,4,8,4,14,6,14,14,9,6,14,12,3,0,14,12,9,13,11,12,8,5,0,2,2,11,6,4,9,14,7,3,5,6,5,0,11,8,6,15,11,7,14,8,10,0,7,1", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"10\", \"5\", \"3\"], \"clip_start\": 325.0, \"clip_end\": 329.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,10,15,5,5,3,2,0,6,7,1,12,13,0,10,2,15,10,9,13,3,1,5,15,2,4,8,8,5,15,9,15,15,5,6,4,3,12,5,2,13,1,0,12,14,12,8,13,3,15,1,4,10,9,14,2,0,9,7,6,12,8,14,4,14,7,2,5,7,13,5,5,1,6,2,0,15,14,9,6,5,14,2,3,7,15,11,14,10,5,5,11,3,12,2,12,7,4,15,13,0,12,15,6,3,7,4,1,5,12,13,2,0,1,2,1,2,4,14,10,7,4,1,11,14,2,9,9,7,2,13,6,10,1,9,12,15,9,15,8,9,5,8,5,2,7,6,11,5,9,9,9,10,6,9,9,13,2,0,6,12,15,9,15,9,12,15,11,15,13,5,7,3,3,10,13,8,12,3,12,12,4,5,8,8,6,15,12,14,7,5,15,5,3,1,0,0,1,7,6,6,6,15,1,10,14,2,14,13,11,2,2,8,12,13,8,6,3,9,12,3,12,6,6,2,5,14,5,0,11,7,5,9,2,4,14,11,5,3,12,11,15,9,1,15,15,12,15,12,11,5,8,4,14,15,8,0,9,15,6,12,9,14,9,4,10,7,1,5,5,11,1,7,9,10,11,2,3,13,6,5,5,4,7,6,7,11,11,2,8,11,10,5,12,8,1,2,13,5,12,1,7,6,5,6,9,9,6,6,13,15,11,5,7,13,0,10,5,7,6,9,15,5,0,1,10,5,3,8,10,11,8,6,12,11,8,15,8,1,10,13,14,7,3,6,6,7,15,11,11,0,15,15,5,3,2,11,11,12,15,0,13,2,3,3,11,2,3,4,5,1,6,6,13,6,12,8,10,4,3,8,9,9,5,10,13,5,15,14,5,10,3,3,9,12,3,15,12,6,15,8,4,11,8,9,3,2,14,10,8,9,4,10,1,11,8,8,12,5,12,8,8,4,6,13,11,0,2,14,7,2,12,9,13,3,6,2,5,14,6,4,8,7,9,4,11,10,11,11,13,12,3,9,5,4,4,9,9,10,9,6,11,6,0,4,8,4,14,6,14,14,9,6,14,12,3,0,14,12,9,13,11,12,8,5,0,2,2,11,6,4,9,14,7,3,5,6,5,0,11,8,6,15,11,7,14,8,10,0,7,1", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"7\", \"11\", \"3\"], \"clip_start\": 271.0, \"clip_end\": 275.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,10,15,5,5,3,2,0,6,7,1,12,13,0,10,2,15,10,9,13,3,1,5,15,2,4,8,8,5,15,9,15,15,5,6,4,3,12,5,2,13,1,0,12,14,12,8,13,3,15,1,4,10,9,14,2,0,9,7,6,12,8,14,4,14,7,2,5,7,13,5,5,1,6,2,0,15,14,9,6,5,14,2,3,7,15,11,14,10,5,5,11,3,12,2,12,7,4,15,13,0,12,15,6,3,7,4,1,5,12,13,2,0,1,2,1,2,4,14,10,7,4,1,11,14,2,9,9,7,2,13,6,10,1,9,12,15,9,15,8,9,5,8,5,2,7,6,11,5,9,9,9,10,6,9,9,13,2,0,6,12,15,9,15,9,12,15,11,15,13,5,7,3,3,10,13,8,12,3,12,12,4,5,8,8,6,15,12,14,7,5,15,5,3,1,0,0,1,7,6,6,6,15,1,10,14,2,14,13,11,2,2,8,12,13,8,6,3,9,12,3,12,6,6,2,5,14,5,0,11,7,5,9,2,4,14,11,5,3,12,11,15,9,1,15,15,12,15,12,11,5,8,4,14,15,8,0,9,15,6,12,9,14,9,4,10,7,1,5,5,11,1,7,9,10,11,2,3,13,6,5,5,4,7,6,7,11,11,2,8,11,10,5,12,8,1,2,13,5,12,1,7,6,5,6,9,9,6,6,13,15,11,5,7,13,0,10,5,7,6,9,15,5,0,1,10,5,3,8,10,11,8,6,12,11,8,15,8,1,10,13,14,7,3,6,6,7,15,11,11,0,15,15,5,3,2,11,11,12,15,0,13,2,3,3,11,2,3,4,5,1,6,6,13,6,12,8,10,4,3,8,9,9,5,10,13,5,15,14,5,10,3,3,9,12,3,15,12,6,15,8,4,11,8,9,3,2,14,10,8,9,4,10,1,11,8,8,12,5,12,8,8,4,6,13,11,0,2,14,7,2,12,9,13,3,6,2,5,14,6,4,8,7,9,4,11,10,11,11,13,12,3,9,5,4,4,9,9,10,9,6,11,6,0,4,8,4,14,6,14,14,9,6,14,12,3,0,14,12,9,13,11,12,8,5,0,2,2,11,6,4,9,14,7,3,5,6,5,0,11,8,6,15,11,7,14,8,10,0,7,1", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"5\", \"12\", \"13\", \"2\", \"0\"], \"clip_start\": 108.0, \"clip_end\": 114.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q13_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,10,15,5,5,3,2,0,6,7,1,12,13,0,10,2,15,10,9,13,3,1,5,15,2,4,8,8,5,15,9,15,15,5,6,4,3,12,5,2,13,1,0,12,14,12,8,13,3,15,1,4,10,9,14,2,0,9,7,6,12,8,14,4,14,7,2,5,7,13,5,5,1,6,2,0,15,14,9,6,5,14,2,3,7,15,11,14,10,5,5,11,3,12,2,12,7,4,15,13,0,12,15,6,3,7,4,1,5,12,13,2,0,1,2,1,2,4,14,10,7,4,1,11,14,2,9,9,7,2,13,6,10,1,9,12,15,9,15,8,9,5,8,5,2,7,6,11,5,9,9,9,10,6,9,9,13,2,0,6,12,15,9,15,9,12,15,11,15,13,5,7,3,3,10,13,8,12,3,12,12,4,5,8,8,6,15,12,14,7,5,15,5,3,1,0,0,1,7,6,6,6,15,1,10,14,2,14,13,11,2,2,8,12,13,8,6,3,9,12,3,12,6,6,2,5,14,5,0,11,7,5,9,2,4,14,11,5,3,12,11,15,9,1,15,15,12,15,12,11,5,8,4,14,15,8,0,9,15,6,12,9,14,9,4,10,7,1,5,5,11,1,7,9,10,11,2,3,13,6,5,5,4,7,6,7,11,11,2,8,11,10,5,12,8,1,2,13,5,12,1,7,6,5,6,9,9,6,6,13,15,11,5,7,13,0,10,5,7,6,9,15,5,0,1,10,5,3,8,10,11,8,6,12,11,8,15,8,1,10,13,14,7,3,6,6,7,15,11,11,0,15,15,5,3,2,11,11,12,15,0,13,2,3,3,11,2,3,4,5,1,6,6,13,6,12,8,10,4,3,8,9,9,5,10,13,5,15,14,5,10,3,3,9,12,3,15,12,6,15,8,4,11,8,9,3,2,14,10,8,9,4,10,1,11,8,8,12,5,12,8,8,4,6,13,11,0,2,14,7,2,12,9,13,3,6,2,5,14,6,4,8,7,9,4,11,10,11,11,13,12,3,9,5,4,4,9,9,10,9,6,11,6,0,4,8,4,14,6,14,14,9,6,14,12,3,0,14,12,9,13,11,12,8,5,0,2,2,11,6,4,9,14,7,3,5,6,5,0,11,8,6,15,11,7,14,8,10,0,7,1", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 12, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"12\", \"9\", \"13\", \"3\", \"6\"], \"clip_start\": 431.0, \"clip_end\": 437.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q14_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,10,15,5,5,3,2,0,6,7,1,12,13,0,10,2,15,10,9,13,3,1,5,15,2,4,8,8,5,15,9,15,15,5,6,4,3,12,5,2,13,1,0,12,14,12,8,13,3,15,1,4,10,9,14,2,0,9,7,6,12,8,14,4,14,7,2,5,7,13,5,5,1,6,2,0,15,14,9,6,5,14,2,3,7,15,11,14,10,5,5,11,3,12,2,12,7,4,15,13,0,12,15,6,3,7,4,1,5,12,13,2,0,1,2,1,2,4,14,10,7,4,1,11,14,2,9,9,7,2,13,6,10,1,9,12,15,9,15,8,9,5,8,5,2,7,6,11,5,9,9,9,10,6,9,9,13,2,0,6,12,15,9,15,9,12,15,11,15,13,5,7,3,3,10,13,8,12,3,12,12,4,5,8,8,6,15,12,14,7,5,15,5,3,1,0,0,1,7,6,6,6,15,1,10,14,2,14,13,11,2,2,8,12,13,8,6,3,9,12,3,12,6,6,2,5,14,5,0,11,7,5,9,2,4,14,11,5,3,12,11,15,9,1,15,15,12,15,12,11,5,8,4,14,15,8,0,9,15,6,12,9,14,9,4,10,7,1,5,5,11,1,7,9,10,11,2,3,13,6,5,5,4,7,6,7,11,11,2,8,11,10,5,12,8,1,2,13,5,12,1,7,6,5,6,9,9,6,6,13,15,11,5,7,13,0,10,5,7,6,9,15,5,0,1,10,5,3,8,10,11,8,6,12,11,8,15,8,1,10,13,14,7,3,6,6,7,15,11,11,0,15,15,5,3,2,11,11,12,15,0,13,2,3,3,11,2,3,4,5,1,6,6,13,6,12,8,10,4,3,8,9,9,5,10,13,5,15,14,5,10,3,3,9,12,3,15,12,6,15,8,4,11,8,9,3,2,14,10,8,9,4,10,1,11,8,8,12,5,12,8,8,4,6,13,11,0,2,14,7,2,12,9,13,3,6,2,5,14,6,4,8,7,9,4,11,10,11,11,13,12,3,9,5,4,4,9,9,10,9,6,11,6,0,4,8,4,14,6,14,14,9,6,14,12,3,0,14,12,9,13,11,12,8,5,0,2,2,11,6,4,9,14,7,3,5,6,5,0,11,8,6,15,11,7,14,8,10,0,7,1", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 12, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"3\", \"4\", \"5\", \"1\"], \"clip_start\": 366.0, \"clip_end\": 372.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4", "dataset_source": "synthetic", "input_sequence": "4,13,10,15,5,5,3,2,0,6,7,1,12,13,0,10,2,15,10,9,13,3,1,5,15,2,4,8,8,5,15,9,15,15,5,6,4,3,12,5,2,13,1,0,12,14,12,8,13,3,15,1,4,10,9,14,2,0,9,7,6,12,8,14,4,14,7,2,5,7,13,5,5,1,6,2,0,15,14,9,6,5,14,2,3,7,15,11,14,10,5,5,11,3,12,2,12,7,4,15,13,0,12,15,6,3,7,4,1,5,12,13,2,0,1,2,1,2,4,14,10,7,4,1,11,14,2,9,9,7,2,13,6,10,1,9,12,15,9,15,8,9,5,8,5,2,7,6,11,5,9,9,9,10,6,9,9,13,2,0,6,12,15,9,15,9,12,15,11,15,13,5,7,3,3,10,13,8,12,3,12,12,4,5,8,8,6,15,12,14,7,5,15,5,3,1,0,0,1,7,6,6,6,15,1,10,14,2,14,13,11,2,2,8,12,13,8,6,3,9,12,3,12,6,6,2,5,14,5,0,11,7,5,9,2,4,14,11,5,3,12,11,15,9,1,15,15,12,15,12,11,5,8,4,14,15,8,0,9,15,6,12,9,14,9,4,10,7,1,5,5,11,1,7,9,10,11,2,3,13,6,5,5,4,7,6,7,11,11,2,8,11,10,5,12,8,1,2,13,5,12,1,7,6,5,6,9,9,6,6,13,15,11,5,7,13,0,10,5,7,6,9,15,5,0,1,10,5,3,8,10,11,8,6,12,11,8,15,8,1,10,13,14,7,3,6,6,7,15,11,11,0,15,15,5,3,2,11,11,12,15,0,13,2,3,3,11,2,3,4,5,1,6,6,13,6,12,8,10,4,3,8,9,9,5,10,13,5,15,14,5,10,3,3,9,12,3,15,12,6,15,8,4,11,8,9,3,2,14,10,8,9,4,10,1,11,8,8,12,5,12,8,8,4,6,13,11,0,2,14,7,2,12,9,13,3,6,2,5,14,6,4,8,7,9,4,11,10,11,11,13,12,3,9,5,4,4,9,9,10,9,6,11,6,0,4,8,4,14,6,14,14,9,6,14,12,3,0,14,12,9,13,11,12,8,5,0,2,2,11,6,4,9,14,7,3,5,6,5,0,11,8,6,15,11,7,14,8,10,0,7,1", "source_class": null, "source_dataset": null, "video_id": "video_12_v0", "question_id": "video_12_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"15\", \"10\", \"15\", \"15\"], \"clip_start\": 462.0, \"clip_end\": 467.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,7,0,13,4,3,0,6,10,5,4,2,9,13,15,4,0,11,1,4,5,6,3,14,3,3,12,14,12,2,1,3,8,7,11,9,7,12,11,6,2,14,6,13,10,7,10,2,10,8,9,4,14,9,14,11,10,12,15,6,10,12,10,2,6,3,5,0,7,6,10,7,1,2,13,12,0,7,7,8,9,5,3,4,14,11,15,13,11,4,9,6,2,12,5,8,2,3,8,3,0,8,14,8,3,12,8,8,2,8,3,3,5,10,11,15,3,8,15,11,10,5,4,6,13,8,15,15,8,11,0,3,14,13,0,3,15,14,11,5,1,11,13,13,1,0,13,9,13,2,8,9,0,0,10,12,11,12,8,13,4,14,11,0,6,11,1,10,12,11,1,5,4,2,11,4,3,1,10,14,4,11,14,8,15,11,15,2,3,8,10,15,11,12,7,14,13,13,11,1,10,10,12,14,13,7,13,3,5,8,4,2,5,13,7,12,10,3,14,8,5,1,14,6,5,13,1,13,10,15,12,15,6,5,13,11,13,10,1,10,2,15,6,15,14,6,15,5,8,5,1,7,8,12,13,2,3,9,8,11,8,11,13,12,2,10,1,10,0,4,1,10,14,4,13,1,10,3,4,12,14,0,13,4,6,5,15,0,3,13,11,1,10,8,12,11,3,15,3,10,10,5,3,9,14,12,14,7,1,6,15,11,9,4,15,6,0,1,1,15,9,15,6,8,7,2,1,15,6,14,9,11,2,6,15,12,3,10,3,4,12,4,12,11,13,7,1,7,15,5,11,5,0,3,2,0,0,5,4,5,2,14,6,2,8,14,6,2,2,9,13,11,2,5,10,14,7,6,11,13,5,0,14,15,7,6,10,13,9,3,1,5,4,6,2,5,15,6,5,15,13,7,14,0,8,15,4,15,4,5,4,1,3,4,15,12,8,11,15,11,0,0,1,11,6,8,0,4,2,8,13,3,6,6,0,11,9,15,0,14,2,14,12,8,8,3,13,4,3,9,14,5,6,15,1,0,13,14,1,12,6,10,15,10,15,15,15,6,7,13,10,13,13,3,6,8,3,11,14,6,14,2,9,8,6,6,12,4,10,6,0,2,4,3,8,5,5,7,0,3,1,8,7,13,8,6,3,1,12,2,12", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"15\", \"13\", \"7\"], \"clip_start\": 398.0, \"clip_end\": 403.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,7,0,13,4,3,0,6,10,5,4,2,9,13,15,4,0,11,1,4,5,6,3,14,3,3,12,14,12,2,1,3,8,7,11,9,7,12,11,6,2,14,6,13,10,7,10,2,10,8,9,4,14,9,14,11,10,12,15,6,10,12,10,2,6,3,5,0,7,6,10,7,1,2,13,12,0,7,7,8,9,5,3,4,14,11,15,13,11,4,9,6,2,12,5,8,2,3,8,3,0,8,14,8,3,12,8,8,2,8,3,3,5,10,11,15,3,8,15,11,10,5,4,6,13,8,15,15,8,11,0,3,14,13,0,3,15,14,11,5,1,11,13,13,1,0,13,9,13,2,8,9,0,0,10,12,11,12,8,13,4,14,11,0,6,11,1,10,12,11,1,5,4,2,11,4,3,1,10,14,4,11,14,8,15,11,15,2,3,8,10,15,11,12,7,14,13,13,11,1,10,10,12,14,13,7,13,3,5,8,4,2,5,13,7,12,10,3,14,8,5,1,14,6,5,13,1,13,10,15,12,15,6,5,13,11,13,10,1,10,2,15,6,15,14,6,15,5,8,5,1,7,8,12,13,2,3,9,8,11,8,11,13,12,2,10,1,10,0,4,1,10,14,4,13,1,10,3,4,12,14,0,13,4,6,5,15,0,3,13,11,1,10,8,12,11,3,15,3,10,10,5,3,9,14,12,14,7,1,6,15,11,9,4,15,6,0,1,1,15,9,15,6,8,7,2,1,15,6,14,9,11,2,6,15,12,3,10,3,4,12,4,12,11,13,7,1,7,15,5,11,5,0,3,2,0,0,5,4,5,2,14,6,2,8,14,6,2,2,9,13,11,2,5,10,14,7,6,11,13,5,0,14,15,7,6,10,13,9,3,1,5,4,6,2,5,15,6,5,15,13,7,14,0,8,15,4,15,4,5,4,1,3,4,15,12,8,11,15,11,0,0,1,11,6,8,0,4,2,8,13,3,6,6,0,11,9,15,0,14,2,14,12,8,8,3,13,4,3,9,14,5,6,15,1,0,13,14,1,12,6,10,15,10,15,15,15,6,7,13,10,13,13,3,6,8,3,11,14,6,14,2,9,8,6,6,12,4,10,6,0,2,4,3,8,5,5,7,0,3,1,8,7,13,8,6,3,1,12,2,12", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"5\", \"3\", \"4\"], \"clip_start\": 81.0, \"clip_end\": 85.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q2_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,7,0,13,4,3,0,6,10,5,4,2,9,13,15,4,0,11,1,4,5,6,3,14,3,3,12,14,12,2,1,3,8,7,11,9,7,12,11,6,2,14,6,13,10,7,10,2,10,8,9,4,14,9,14,11,10,12,15,6,10,12,10,2,6,3,5,0,7,6,10,7,1,2,13,12,0,7,7,8,9,5,3,4,14,11,15,13,11,4,9,6,2,12,5,8,2,3,8,3,0,8,14,8,3,12,8,8,2,8,3,3,5,10,11,15,3,8,15,11,10,5,4,6,13,8,15,15,8,11,0,3,14,13,0,3,15,14,11,5,1,11,13,13,1,0,13,9,13,2,8,9,0,0,10,12,11,12,8,13,4,14,11,0,6,11,1,10,12,11,1,5,4,2,11,4,3,1,10,14,4,11,14,8,15,11,15,2,3,8,10,15,11,12,7,14,13,13,11,1,10,10,12,14,13,7,13,3,5,8,4,2,5,13,7,12,10,3,14,8,5,1,14,6,5,13,1,13,10,15,12,15,6,5,13,11,13,10,1,10,2,15,6,15,14,6,15,5,8,5,1,7,8,12,13,2,3,9,8,11,8,11,13,12,2,10,1,10,0,4,1,10,14,4,13,1,10,3,4,12,14,0,13,4,6,5,15,0,3,13,11,1,10,8,12,11,3,15,3,10,10,5,3,9,14,12,14,7,1,6,15,11,9,4,15,6,0,1,1,15,9,15,6,8,7,2,1,15,6,14,9,11,2,6,15,12,3,10,3,4,12,4,12,11,13,7,1,7,15,5,11,5,0,3,2,0,0,5,4,5,2,14,6,2,8,14,6,2,2,9,13,11,2,5,10,14,7,6,11,13,5,0,14,15,7,6,10,13,9,3,1,5,4,6,2,5,15,6,5,15,13,7,14,0,8,15,4,15,4,5,4,1,3,4,15,12,8,11,15,11,0,0,1,11,6,8,0,4,2,8,13,3,6,6,0,11,9,15,0,14,2,14,12,8,8,3,13,4,3,9,14,5,6,15,1,0,13,14,1,12,6,10,15,10,15,15,15,6,7,13,10,13,13,3,6,8,3,11,14,6,14,2,9,8,6,6,12,4,10,6,0,2,4,3,8,5,5,7,0,3,1,8,7,13,8,6,3,1,12,2,12", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 139.0, \"clip_end\": 142.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q3_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,7,0,13,4,3,0,6,10,5,4,2,9,13,15,4,0,11,1,4,5,6,3,14,3,3,12,14,12,2,1,3,8,7,11,9,7,12,11,6,2,14,6,13,10,7,10,2,10,8,9,4,14,9,14,11,10,12,15,6,10,12,10,2,6,3,5,0,7,6,10,7,1,2,13,12,0,7,7,8,9,5,3,4,14,11,15,13,11,4,9,6,2,12,5,8,2,3,8,3,0,8,14,8,3,12,8,8,2,8,3,3,5,10,11,15,3,8,15,11,10,5,4,6,13,8,15,15,8,11,0,3,14,13,0,3,15,14,11,5,1,11,13,13,1,0,13,9,13,2,8,9,0,0,10,12,11,12,8,13,4,14,11,0,6,11,1,10,12,11,1,5,4,2,11,4,3,1,10,14,4,11,14,8,15,11,15,2,3,8,10,15,11,12,7,14,13,13,11,1,10,10,12,14,13,7,13,3,5,8,4,2,5,13,7,12,10,3,14,8,5,1,14,6,5,13,1,13,10,15,12,15,6,5,13,11,13,10,1,10,2,15,6,15,14,6,15,5,8,5,1,7,8,12,13,2,3,9,8,11,8,11,13,12,2,10,1,10,0,4,1,10,14,4,13,1,10,3,4,12,14,0,13,4,6,5,15,0,3,13,11,1,10,8,12,11,3,15,3,10,10,5,3,9,14,12,14,7,1,6,15,11,9,4,15,6,0,1,1,15,9,15,6,8,7,2,1,15,6,14,9,11,2,6,15,12,3,10,3,4,12,4,12,11,13,7,1,7,15,5,11,5,0,3,2,0,0,5,4,5,2,14,6,2,8,14,6,2,2,9,13,11,2,5,10,14,7,6,11,13,5,0,14,15,7,6,10,13,9,3,1,5,4,6,2,5,15,6,5,15,13,7,14,0,8,15,4,15,4,5,4,1,3,4,15,12,8,11,15,11,0,0,1,11,6,8,0,4,2,8,13,3,6,6,0,11,9,15,0,14,2,14,12,8,8,3,13,4,3,9,14,5,6,15,1,0,13,14,1,12,6,10,15,10,15,15,15,6,7,13,10,13,13,3,6,8,3,11,14,6,14,2,9,8,6,6,12,4,10,6,0,2,4,3,8,5,5,7,0,3,1,8,7,13,8,6,3,1,12,2,12", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"3\", \"0\"], \"clip_start\": 5.0, \"clip_end\": 8.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,7,0,13,4,3,0,6,10,5,4,2,9,13,15,4,0,11,1,4,5,6,3,14,3,3,12,14,12,2,1,3,8,7,11,9,7,12,11,6,2,14,6,13,10,7,10,2,10,8,9,4,14,9,14,11,10,12,15,6,10,12,10,2,6,3,5,0,7,6,10,7,1,2,13,12,0,7,7,8,9,5,3,4,14,11,15,13,11,4,9,6,2,12,5,8,2,3,8,3,0,8,14,8,3,12,8,8,2,8,3,3,5,10,11,15,3,8,15,11,10,5,4,6,13,8,15,15,8,11,0,3,14,13,0,3,15,14,11,5,1,11,13,13,1,0,13,9,13,2,8,9,0,0,10,12,11,12,8,13,4,14,11,0,6,11,1,10,12,11,1,5,4,2,11,4,3,1,10,14,4,11,14,8,15,11,15,2,3,8,10,15,11,12,7,14,13,13,11,1,10,10,12,14,13,7,13,3,5,8,4,2,5,13,7,12,10,3,14,8,5,1,14,6,5,13,1,13,10,15,12,15,6,5,13,11,13,10,1,10,2,15,6,15,14,6,15,5,8,5,1,7,8,12,13,2,3,9,8,11,8,11,13,12,2,10,1,10,0,4,1,10,14,4,13,1,10,3,4,12,14,0,13,4,6,5,15,0,3,13,11,1,10,8,12,11,3,15,3,10,10,5,3,9,14,12,14,7,1,6,15,11,9,4,15,6,0,1,1,15,9,15,6,8,7,2,1,15,6,14,9,11,2,6,15,12,3,10,3,4,12,4,12,11,13,7,1,7,15,5,11,5,0,3,2,0,0,5,4,5,2,14,6,2,8,14,6,2,2,9,13,11,2,5,10,14,7,6,11,13,5,0,14,15,7,6,10,13,9,3,1,5,4,6,2,5,15,6,5,15,13,7,14,0,8,15,4,15,4,5,4,1,3,4,15,12,8,11,15,11,0,0,1,11,6,8,0,4,2,8,13,3,6,6,0,11,9,15,0,14,2,14,12,8,8,3,13,4,3,9,14,5,6,15,1,0,13,14,1,12,6,10,15,10,15,15,15,6,7,13,10,13,13,3,6,8,3,11,14,6,14,2,9,8,6,6,12,4,10,6,0,2,4,3,8,5,5,7,0,3,1,8,7,13,8,6,3,1,12,2,12", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"11\", \"6\", \"1\"], \"clip_start\": 475.0, \"clip_end\": 480.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q5_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,7,0,13,4,3,0,6,10,5,4,2,9,13,15,4,0,11,1,4,5,6,3,14,3,3,12,14,12,2,1,3,8,7,11,9,7,12,11,6,2,14,6,13,10,7,10,2,10,8,9,4,14,9,14,11,10,12,15,6,10,12,10,2,6,3,5,0,7,6,10,7,1,2,13,12,0,7,7,8,9,5,3,4,14,11,15,13,11,4,9,6,2,12,5,8,2,3,8,3,0,8,14,8,3,12,8,8,2,8,3,3,5,10,11,15,3,8,15,11,10,5,4,6,13,8,15,15,8,11,0,3,14,13,0,3,15,14,11,5,1,11,13,13,1,0,13,9,13,2,8,9,0,0,10,12,11,12,8,13,4,14,11,0,6,11,1,10,12,11,1,5,4,2,11,4,3,1,10,14,4,11,14,8,15,11,15,2,3,8,10,15,11,12,7,14,13,13,11,1,10,10,12,14,13,7,13,3,5,8,4,2,5,13,7,12,10,3,14,8,5,1,14,6,5,13,1,13,10,15,12,15,6,5,13,11,13,10,1,10,2,15,6,15,14,6,15,5,8,5,1,7,8,12,13,2,3,9,8,11,8,11,13,12,2,10,1,10,0,4,1,10,14,4,13,1,10,3,4,12,14,0,13,4,6,5,15,0,3,13,11,1,10,8,12,11,3,15,3,10,10,5,3,9,14,12,14,7,1,6,15,11,9,4,15,6,0,1,1,15,9,15,6,8,7,2,1,15,6,14,9,11,2,6,15,12,3,10,3,4,12,4,12,11,13,7,1,7,15,5,11,5,0,3,2,0,0,5,4,5,2,14,6,2,8,14,6,2,2,9,13,11,2,5,10,14,7,6,11,13,5,0,14,15,7,6,10,13,9,3,1,5,4,6,2,5,15,6,5,15,13,7,14,0,8,15,4,15,4,5,4,1,3,4,15,12,8,11,15,11,0,0,1,11,6,8,0,4,2,8,13,3,6,6,0,11,9,15,0,14,2,14,12,8,8,3,13,4,3,9,14,5,6,15,1,0,13,14,1,12,6,10,15,10,15,15,15,6,7,13,10,13,13,3,6,8,3,11,14,6,14,2,9,8,6,6,12,4,10,6,0,2,4,3,8,5,5,7,0,3,1,8,7,13,8,6,3,1,12,2,12", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"2\", \"4\", \"3\"], \"clip_start\": 491.0, \"clip_end\": 495.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,7,0,13,4,3,0,6,10,5,4,2,9,13,15,4,0,11,1,4,5,6,3,14,3,3,12,14,12,2,1,3,8,7,11,9,7,12,11,6,2,14,6,13,10,7,10,2,10,8,9,4,14,9,14,11,10,12,15,6,10,12,10,2,6,3,5,0,7,6,10,7,1,2,13,12,0,7,7,8,9,5,3,4,14,11,15,13,11,4,9,6,2,12,5,8,2,3,8,3,0,8,14,8,3,12,8,8,2,8,3,3,5,10,11,15,3,8,15,11,10,5,4,6,13,8,15,15,8,11,0,3,14,13,0,3,15,14,11,5,1,11,13,13,1,0,13,9,13,2,8,9,0,0,10,12,11,12,8,13,4,14,11,0,6,11,1,10,12,11,1,5,4,2,11,4,3,1,10,14,4,11,14,8,15,11,15,2,3,8,10,15,11,12,7,14,13,13,11,1,10,10,12,14,13,7,13,3,5,8,4,2,5,13,7,12,10,3,14,8,5,1,14,6,5,13,1,13,10,15,12,15,6,5,13,11,13,10,1,10,2,15,6,15,14,6,15,5,8,5,1,7,8,12,13,2,3,9,8,11,8,11,13,12,2,10,1,10,0,4,1,10,14,4,13,1,10,3,4,12,14,0,13,4,6,5,15,0,3,13,11,1,10,8,12,11,3,15,3,10,10,5,3,9,14,12,14,7,1,6,15,11,9,4,15,6,0,1,1,15,9,15,6,8,7,2,1,15,6,14,9,11,2,6,15,12,3,10,3,4,12,4,12,11,13,7,1,7,15,5,11,5,0,3,2,0,0,5,4,5,2,14,6,2,8,14,6,2,2,9,13,11,2,5,10,14,7,6,11,13,5,0,14,15,7,6,10,13,9,3,1,5,4,6,2,5,15,6,5,15,13,7,14,0,8,15,4,15,4,5,4,1,3,4,15,12,8,11,15,11,0,0,1,11,6,8,0,4,2,8,13,3,6,6,0,11,9,15,0,14,2,14,12,8,8,3,13,4,3,9,14,5,6,15,1,0,13,14,1,12,6,10,15,10,15,15,15,6,7,13,10,13,13,3,6,8,3,11,14,6,14,2,9,8,6,6,12,4,10,6,0,2,4,3,8,5,5,7,0,3,1,8,7,13,8,6,3,1,12,2,12", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"12\", \"6\", \"10\", \"15\"], \"clip_start\": 459.0, \"clip_end\": 464.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q7_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,7,0,13,4,3,0,6,10,5,4,2,9,13,15,4,0,11,1,4,5,6,3,14,3,3,12,14,12,2,1,3,8,7,11,9,7,12,11,6,2,14,6,13,10,7,10,2,10,8,9,4,14,9,14,11,10,12,15,6,10,12,10,2,6,3,5,0,7,6,10,7,1,2,13,12,0,7,7,8,9,5,3,4,14,11,15,13,11,4,9,6,2,12,5,8,2,3,8,3,0,8,14,8,3,12,8,8,2,8,3,3,5,10,11,15,3,8,15,11,10,5,4,6,13,8,15,15,8,11,0,3,14,13,0,3,15,14,11,5,1,11,13,13,1,0,13,9,13,2,8,9,0,0,10,12,11,12,8,13,4,14,11,0,6,11,1,10,12,11,1,5,4,2,11,4,3,1,10,14,4,11,14,8,15,11,15,2,3,8,10,15,11,12,7,14,13,13,11,1,10,10,12,14,13,7,13,3,5,8,4,2,5,13,7,12,10,3,14,8,5,1,14,6,5,13,1,13,10,15,12,15,6,5,13,11,13,10,1,10,2,15,6,15,14,6,15,5,8,5,1,7,8,12,13,2,3,9,8,11,8,11,13,12,2,10,1,10,0,4,1,10,14,4,13,1,10,3,4,12,14,0,13,4,6,5,15,0,3,13,11,1,10,8,12,11,3,15,3,10,10,5,3,9,14,12,14,7,1,6,15,11,9,4,15,6,0,1,1,15,9,15,6,8,7,2,1,15,6,14,9,11,2,6,15,12,3,10,3,4,12,4,12,11,13,7,1,7,15,5,11,5,0,3,2,0,0,5,4,5,2,14,6,2,8,14,6,2,2,9,13,11,2,5,10,14,7,6,11,13,5,0,14,15,7,6,10,13,9,3,1,5,4,6,2,5,15,6,5,15,13,7,14,0,8,15,4,15,4,5,4,1,3,4,15,12,8,11,15,11,0,0,1,11,6,8,0,4,2,8,13,3,6,6,0,11,9,15,0,14,2,14,12,8,8,3,13,4,3,9,14,5,6,15,1,0,13,14,1,12,6,10,15,10,15,15,15,6,7,13,10,13,13,3,6,8,3,11,14,6,14,2,9,8,6,6,12,4,10,6,0,2,4,3,8,5,5,7,0,3,1,8,7,13,8,6,3,1,12,2,12", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"3\", \"10\", \"10\", \"5\"], \"clip_start\": 298.0, \"clip_end\": 303.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,7,0,13,4,3,0,6,10,5,4,2,9,13,15,4,0,11,1,4,5,6,3,14,3,3,12,14,12,2,1,3,8,7,11,9,7,12,11,6,2,14,6,13,10,7,10,2,10,8,9,4,14,9,14,11,10,12,15,6,10,12,10,2,6,3,5,0,7,6,10,7,1,2,13,12,0,7,7,8,9,5,3,4,14,11,15,13,11,4,9,6,2,12,5,8,2,3,8,3,0,8,14,8,3,12,8,8,2,8,3,3,5,10,11,15,3,8,15,11,10,5,4,6,13,8,15,15,8,11,0,3,14,13,0,3,15,14,11,5,1,11,13,13,1,0,13,9,13,2,8,9,0,0,10,12,11,12,8,13,4,14,11,0,6,11,1,10,12,11,1,5,4,2,11,4,3,1,10,14,4,11,14,8,15,11,15,2,3,8,10,15,11,12,7,14,13,13,11,1,10,10,12,14,13,7,13,3,5,8,4,2,5,13,7,12,10,3,14,8,5,1,14,6,5,13,1,13,10,15,12,15,6,5,13,11,13,10,1,10,2,15,6,15,14,6,15,5,8,5,1,7,8,12,13,2,3,9,8,11,8,11,13,12,2,10,1,10,0,4,1,10,14,4,13,1,10,3,4,12,14,0,13,4,6,5,15,0,3,13,11,1,10,8,12,11,3,15,3,10,10,5,3,9,14,12,14,7,1,6,15,11,9,4,15,6,0,1,1,15,9,15,6,8,7,2,1,15,6,14,9,11,2,6,15,12,3,10,3,4,12,4,12,11,13,7,1,7,15,5,11,5,0,3,2,0,0,5,4,5,2,14,6,2,8,14,6,2,2,9,13,11,2,5,10,14,7,6,11,13,5,0,14,15,7,6,10,13,9,3,1,5,4,6,2,5,15,6,5,15,13,7,14,0,8,15,4,15,4,5,4,1,3,4,15,12,8,11,15,11,0,0,1,11,6,8,0,4,2,8,13,3,6,6,0,11,9,15,0,14,2,14,12,8,8,3,13,4,3,9,14,5,6,15,1,0,13,14,1,12,6,10,15,10,15,15,15,6,7,13,10,13,13,3,6,8,3,11,14,6,14,2,9,8,6,6,12,4,10,6,0,2,4,3,8,5,5,7,0,3,1,8,7,13,8,6,3,1,12,2,12", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"14\", \"12\", \"14\", \"7\", \"1\"], \"clip_start\": 304.0, \"clip_end\": 310.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,7,0,13,4,3,0,6,10,5,4,2,9,13,15,4,0,11,1,4,5,6,3,14,3,3,12,14,12,2,1,3,8,7,11,9,7,12,11,6,2,14,6,13,10,7,10,2,10,8,9,4,14,9,14,11,10,12,15,6,10,12,10,2,6,3,5,0,7,6,10,7,1,2,13,12,0,7,7,8,9,5,3,4,14,11,15,13,11,4,9,6,2,12,5,8,2,3,8,3,0,8,14,8,3,12,8,8,2,8,3,3,5,10,11,15,3,8,15,11,10,5,4,6,13,8,15,15,8,11,0,3,14,13,0,3,15,14,11,5,1,11,13,13,1,0,13,9,13,2,8,9,0,0,10,12,11,12,8,13,4,14,11,0,6,11,1,10,12,11,1,5,4,2,11,4,3,1,10,14,4,11,14,8,15,11,15,2,3,8,10,15,11,12,7,14,13,13,11,1,10,10,12,14,13,7,13,3,5,8,4,2,5,13,7,12,10,3,14,8,5,1,14,6,5,13,1,13,10,15,12,15,6,5,13,11,13,10,1,10,2,15,6,15,14,6,15,5,8,5,1,7,8,12,13,2,3,9,8,11,8,11,13,12,2,10,1,10,0,4,1,10,14,4,13,1,10,3,4,12,14,0,13,4,6,5,15,0,3,13,11,1,10,8,12,11,3,15,3,10,10,5,3,9,14,12,14,7,1,6,15,11,9,4,15,6,0,1,1,15,9,15,6,8,7,2,1,15,6,14,9,11,2,6,15,12,3,10,3,4,12,4,12,11,13,7,1,7,15,5,11,5,0,3,2,0,0,5,4,5,2,14,6,2,8,14,6,2,2,9,13,11,2,5,10,14,7,6,11,13,5,0,14,15,7,6,10,13,9,3,1,5,4,6,2,5,15,6,5,15,13,7,14,0,8,15,4,15,4,5,4,1,3,4,15,12,8,11,15,11,0,0,1,11,6,8,0,4,2,8,13,3,6,6,0,11,9,15,0,14,2,14,12,8,8,3,13,4,3,9,14,5,6,15,1,0,13,14,1,12,6,10,15,10,15,15,15,6,7,13,10,13,13,3,6,8,3,11,14,6,14,2,9,8,6,6,12,4,10,6,0,2,4,3,8,5,5,7,0,3,1,8,7,13,8,6,3,1,12,2,12", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"15\", \"13\", \"7\", \"14\"], \"clip_start\": 398.0, \"clip_end\": 404.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,7,0,13,4,3,0,6,10,5,4,2,9,13,15,4,0,11,1,4,5,6,3,14,3,3,12,14,12,2,1,3,8,7,11,9,7,12,11,6,2,14,6,13,10,7,10,2,10,8,9,4,14,9,14,11,10,12,15,6,10,12,10,2,6,3,5,0,7,6,10,7,1,2,13,12,0,7,7,8,9,5,3,4,14,11,15,13,11,4,9,6,2,12,5,8,2,3,8,3,0,8,14,8,3,12,8,8,2,8,3,3,5,10,11,15,3,8,15,11,10,5,4,6,13,8,15,15,8,11,0,3,14,13,0,3,15,14,11,5,1,11,13,13,1,0,13,9,13,2,8,9,0,0,10,12,11,12,8,13,4,14,11,0,6,11,1,10,12,11,1,5,4,2,11,4,3,1,10,14,4,11,14,8,15,11,15,2,3,8,10,15,11,12,7,14,13,13,11,1,10,10,12,14,13,7,13,3,5,8,4,2,5,13,7,12,10,3,14,8,5,1,14,6,5,13,1,13,10,15,12,15,6,5,13,11,13,10,1,10,2,15,6,15,14,6,15,5,8,5,1,7,8,12,13,2,3,9,8,11,8,11,13,12,2,10,1,10,0,4,1,10,14,4,13,1,10,3,4,12,14,0,13,4,6,5,15,0,3,13,11,1,10,8,12,11,3,15,3,10,10,5,3,9,14,12,14,7,1,6,15,11,9,4,15,6,0,1,1,15,9,15,6,8,7,2,1,15,6,14,9,11,2,6,15,12,3,10,3,4,12,4,12,11,13,7,1,7,15,5,11,5,0,3,2,0,0,5,4,5,2,14,6,2,8,14,6,2,2,9,13,11,2,5,10,14,7,6,11,13,5,0,14,15,7,6,10,13,9,3,1,5,4,6,2,5,15,6,5,15,13,7,14,0,8,15,4,15,4,5,4,1,3,4,15,12,8,11,15,11,0,0,1,11,6,8,0,4,2,8,13,3,6,6,0,11,9,15,0,14,2,14,12,8,8,3,13,4,3,9,14,5,6,15,1,0,13,14,1,12,6,10,15,10,15,15,15,6,7,13,10,13,13,3,6,8,3,11,14,6,14,2,9,8,6,6,12,4,10,6,0,2,4,3,8,5,5,7,0,3,1,8,7,13,8,6,3,1,12,2,12", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"10\", \"12\", \"15\"], \"clip_start\": 55.0, \"clip_end\": 60.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q11_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,7,0,13,4,3,0,6,10,5,4,2,9,13,15,4,0,11,1,4,5,6,3,14,3,3,12,14,12,2,1,3,8,7,11,9,7,12,11,6,2,14,6,13,10,7,10,2,10,8,9,4,14,9,14,11,10,12,15,6,10,12,10,2,6,3,5,0,7,6,10,7,1,2,13,12,0,7,7,8,9,5,3,4,14,11,15,13,11,4,9,6,2,12,5,8,2,3,8,3,0,8,14,8,3,12,8,8,2,8,3,3,5,10,11,15,3,8,15,11,10,5,4,6,13,8,15,15,8,11,0,3,14,13,0,3,15,14,11,5,1,11,13,13,1,0,13,9,13,2,8,9,0,0,10,12,11,12,8,13,4,14,11,0,6,11,1,10,12,11,1,5,4,2,11,4,3,1,10,14,4,11,14,8,15,11,15,2,3,8,10,15,11,12,7,14,13,13,11,1,10,10,12,14,13,7,13,3,5,8,4,2,5,13,7,12,10,3,14,8,5,1,14,6,5,13,1,13,10,15,12,15,6,5,13,11,13,10,1,10,2,15,6,15,14,6,15,5,8,5,1,7,8,12,13,2,3,9,8,11,8,11,13,12,2,10,1,10,0,4,1,10,14,4,13,1,10,3,4,12,14,0,13,4,6,5,15,0,3,13,11,1,10,8,12,11,3,15,3,10,10,5,3,9,14,12,14,7,1,6,15,11,9,4,15,6,0,1,1,15,9,15,6,8,7,2,1,15,6,14,9,11,2,6,15,12,3,10,3,4,12,4,12,11,13,7,1,7,15,5,11,5,0,3,2,0,0,5,4,5,2,14,6,2,8,14,6,2,2,9,13,11,2,5,10,14,7,6,11,13,5,0,14,15,7,6,10,13,9,3,1,5,4,6,2,5,15,6,5,15,13,7,14,0,8,15,4,15,4,5,4,1,3,4,15,12,8,11,15,11,0,0,1,11,6,8,0,4,2,8,13,3,6,6,0,11,9,15,0,14,2,14,12,8,8,3,13,4,3,9,14,5,6,15,1,0,13,14,1,12,6,10,15,10,15,15,15,6,7,13,10,13,13,3,6,8,3,11,14,6,14,2,9,8,6,6,12,4,10,6,0,2,4,3,8,5,5,7,0,3,1,8,7,13,8,6,3,1,12,2,12", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"0\", \"3\", \"5\"], \"clip_start\": 465.0, \"clip_end\": 469.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,7,0,13,4,3,0,6,10,5,4,2,9,13,15,4,0,11,1,4,5,6,3,14,3,3,12,14,12,2,1,3,8,7,11,9,7,12,11,6,2,14,6,13,10,7,10,2,10,8,9,4,14,9,14,11,10,12,15,6,10,12,10,2,6,3,5,0,7,6,10,7,1,2,13,12,0,7,7,8,9,5,3,4,14,11,15,13,11,4,9,6,2,12,5,8,2,3,8,3,0,8,14,8,3,12,8,8,2,8,3,3,5,10,11,15,3,8,15,11,10,5,4,6,13,8,15,15,8,11,0,3,14,13,0,3,15,14,11,5,1,11,13,13,1,0,13,9,13,2,8,9,0,0,10,12,11,12,8,13,4,14,11,0,6,11,1,10,12,11,1,5,4,2,11,4,3,1,10,14,4,11,14,8,15,11,15,2,3,8,10,15,11,12,7,14,13,13,11,1,10,10,12,14,13,7,13,3,5,8,4,2,5,13,7,12,10,3,14,8,5,1,14,6,5,13,1,13,10,15,12,15,6,5,13,11,13,10,1,10,2,15,6,15,14,6,15,5,8,5,1,7,8,12,13,2,3,9,8,11,8,11,13,12,2,10,1,10,0,4,1,10,14,4,13,1,10,3,4,12,14,0,13,4,6,5,15,0,3,13,11,1,10,8,12,11,3,15,3,10,10,5,3,9,14,12,14,7,1,6,15,11,9,4,15,6,0,1,1,15,9,15,6,8,7,2,1,15,6,14,9,11,2,6,15,12,3,10,3,4,12,4,12,11,13,7,1,7,15,5,11,5,0,3,2,0,0,5,4,5,2,14,6,2,8,14,6,2,2,9,13,11,2,5,10,14,7,6,11,13,5,0,14,15,7,6,10,13,9,3,1,5,4,6,2,5,15,6,5,15,13,7,14,0,8,15,4,15,4,5,4,1,3,4,15,12,8,11,15,11,0,0,1,11,6,8,0,4,2,8,13,3,6,6,0,11,9,15,0,14,2,14,12,8,8,3,13,4,3,9,14,5,6,15,1,0,13,14,1,12,6,10,15,10,15,15,15,6,7,13,10,13,13,3,6,8,3,11,14,6,14,2,9,8,6,6,12,4,10,6,0,2,4,3,8,5,5,7,0,3,1,8,7,13,8,6,3,1,12,2,12", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"10\", \"11\", \"0\", \"0\"], \"clip_start\": 92.0, \"clip_end\": 98.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,7,0,13,4,3,0,6,10,5,4,2,9,13,15,4,0,11,1,4,5,6,3,14,3,3,12,14,12,2,1,3,8,7,11,9,7,12,11,6,2,14,6,13,10,7,10,2,10,8,9,4,14,9,14,11,10,12,15,6,10,12,10,2,6,3,5,0,7,6,10,7,1,2,13,12,0,7,7,8,9,5,3,4,14,11,15,13,11,4,9,6,2,12,5,8,2,3,8,3,0,8,14,8,3,12,8,8,2,8,3,3,5,10,11,15,3,8,15,11,10,5,4,6,13,8,15,15,8,11,0,3,14,13,0,3,15,14,11,5,1,11,13,13,1,0,13,9,13,2,8,9,0,0,10,12,11,12,8,13,4,14,11,0,6,11,1,10,12,11,1,5,4,2,11,4,3,1,10,14,4,11,14,8,15,11,15,2,3,8,10,15,11,12,7,14,13,13,11,1,10,10,12,14,13,7,13,3,5,8,4,2,5,13,7,12,10,3,14,8,5,1,14,6,5,13,1,13,10,15,12,15,6,5,13,11,13,10,1,10,2,15,6,15,14,6,15,5,8,5,1,7,8,12,13,2,3,9,8,11,8,11,13,12,2,10,1,10,0,4,1,10,14,4,13,1,10,3,4,12,14,0,13,4,6,5,15,0,3,13,11,1,10,8,12,11,3,15,3,10,10,5,3,9,14,12,14,7,1,6,15,11,9,4,15,6,0,1,1,15,9,15,6,8,7,2,1,15,6,14,9,11,2,6,15,12,3,10,3,4,12,4,12,11,13,7,1,7,15,5,11,5,0,3,2,0,0,5,4,5,2,14,6,2,8,14,6,2,2,9,13,11,2,5,10,14,7,6,11,13,5,0,14,15,7,6,10,13,9,3,1,5,4,6,2,5,15,6,5,15,13,7,14,0,8,15,4,15,4,5,4,1,3,4,15,12,8,11,15,11,0,0,1,11,6,8,0,4,2,8,13,3,6,6,0,11,9,15,0,14,2,14,12,8,8,3,13,4,3,9,14,5,6,15,1,0,13,14,1,12,6,10,15,10,15,15,15,6,7,13,10,13,13,3,6,8,3,11,14,6,14,2,9,8,6,6,12,4,10,6,0,2,4,3,8,5,5,7,0,3,1,8,7,13,8,6,3,1,12,2,12", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 13, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"0\", \"14\"], \"clip_start\": 380.0, \"clip_end\": 384.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q14_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,7,0,13,4,3,0,6,10,5,4,2,9,13,15,4,0,11,1,4,5,6,3,14,3,3,12,14,12,2,1,3,8,7,11,9,7,12,11,6,2,14,6,13,10,7,10,2,10,8,9,4,14,9,14,11,10,12,15,6,10,12,10,2,6,3,5,0,7,6,10,7,1,2,13,12,0,7,7,8,9,5,3,4,14,11,15,13,11,4,9,6,2,12,5,8,2,3,8,3,0,8,14,8,3,12,8,8,2,8,3,3,5,10,11,15,3,8,15,11,10,5,4,6,13,8,15,15,8,11,0,3,14,13,0,3,15,14,11,5,1,11,13,13,1,0,13,9,13,2,8,9,0,0,10,12,11,12,8,13,4,14,11,0,6,11,1,10,12,11,1,5,4,2,11,4,3,1,10,14,4,11,14,8,15,11,15,2,3,8,10,15,11,12,7,14,13,13,11,1,10,10,12,14,13,7,13,3,5,8,4,2,5,13,7,12,10,3,14,8,5,1,14,6,5,13,1,13,10,15,12,15,6,5,13,11,13,10,1,10,2,15,6,15,14,6,15,5,8,5,1,7,8,12,13,2,3,9,8,11,8,11,13,12,2,10,1,10,0,4,1,10,14,4,13,1,10,3,4,12,14,0,13,4,6,5,15,0,3,13,11,1,10,8,12,11,3,15,3,10,10,5,3,9,14,12,14,7,1,6,15,11,9,4,15,6,0,1,1,15,9,15,6,8,7,2,1,15,6,14,9,11,2,6,15,12,3,10,3,4,12,4,12,11,13,7,1,7,15,5,11,5,0,3,2,0,0,5,4,5,2,14,6,2,8,14,6,2,2,9,13,11,2,5,10,14,7,6,11,13,5,0,14,15,7,6,10,13,9,3,1,5,4,6,2,5,15,6,5,15,13,7,14,0,8,15,4,15,4,5,4,1,3,4,15,12,8,11,15,11,0,0,1,11,6,8,0,4,2,8,13,3,6,6,0,11,9,15,0,14,2,14,12,8,8,3,13,4,3,9,14,5,6,15,1,0,13,14,1,12,6,10,15,10,15,15,15,6,7,13,10,13,13,3,6,8,3,11,14,6,14,2,9,8,6,6,12,4,10,6,0,2,4,3,8,5,5,7,0,3,1,8,7,13,8,6,3,1,12,2,12", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 13, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"12\", \"8\", \"8\", \"2\"], \"clip_start\": 104.0, \"clip_end\": 110.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q15_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,5,7,0,13,4,3,0,6,10,5,4,2,9,13,15,4,0,11,1,4,5,6,3,14,3,3,12,14,12,2,1,3,8,7,11,9,7,12,11,6,2,14,6,13,10,7,10,2,10,8,9,4,14,9,14,11,10,12,15,6,10,12,10,2,6,3,5,0,7,6,10,7,1,2,13,12,0,7,7,8,9,5,3,4,14,11,15,13,11,4,9,6,2,12,5,8,2,3,8,3,0,8,14,8,3,12,8,8,2,8,3,3,5,10,11,15,3,8,15,11,10,5,4,6,13,8,15,15,8,11,0,3,14,13,0,3,15,14,11,5,1,11,13,13,1,0,13,9,13,2,8,9,0,0,10,12,11,12,8,13,4,14,11,0,6,11,1,10,12,11,1,5,4,2,11,4,3,1,10,14,4,11,14,8,15,11,15,2,3,8,10,15,11,12,7,14,13,13,11,1,10,10,12,14,13,7,13,3,5,8,4,2,5,13,7,12,10,3,14,8,5,1,14,6,5,13,1,13,10,15,12,15,6,5,13,11,13,10,1,10,2,15,6,15,14,6,15,5,8,5,1,7,8,12,13,2,3,9,8,11,8,11,13,12,2,10,1,10,0,4,1,10,14,4,13,1,10,3,4,12,14,0,13,4,6,5,15,0,3,13,11,1,10,8,12,11,3,15,3,10,10,5,3,9,14,12,14,7,1,6,15,11,9,4,15,6,0,1,1,15,9,15,6,8,7,2,1,15,6,14,9,11,2,6,15,12,3,10,3,4,12,4,12,11,13,7,1,7,15,5,11,5,0,3,2,0,0,5,4,5,2,14,6,2,8,14,6,2,2,9,13,11,2,5,10,14,7,6,11,13,5,0,14,15,7,6,10,13,9,3,1,5,4,6,2,5,15,6,5,15,13,7,14,0,8,15,4,15,4,5,4,1,3,4,15,12,8,11,15,11,0,0,1,11,6,8,0,4,2,8,13,3,6,6,0,11,9,15,0,14,2,14,12,8,8,3,13,4,3,9,14,5,6,15,1,0,13,14,1,12,6,10,15,10,15,15,15,6,7,13,10,13,13,3,6,8,3,11,14,6,14,2,9,8,6,6,12,4,10,6,0,2,4,3,8,5,5,7,0,3,1,8,7,13,8,6,3,1,12,2,12", "source_class": null, "source_dataset": null, "video_id": "video_13_v0", "question_id": "video_13_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"11\", \"13\", \"9\"], \"clip_start\": 443.0, \"clip_end\": 447.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,3,13,12,15,0,3,2,0,5,1,10,10,2,15,8,5,6,11,5,9,8,7,14,14,3,3,0,7,6,6,3,1,15,7,11,11,2,4,6,5,4,2,1,0,3,15,4,13,8,7,7,11,10,7,8,10,10,2,7,15,10,13,10,8,11,0,14,2,5,4,0,7,3,4,14,10,6,5,11,8,2,3,6,14,10,6,7,15,9,7,13,12,0,15,13,1,7,13,0,12,11,1,8,9,15,15,12,5,1,13,11,7,10,0,1,11,10,9,7,5,9,12,8,4,11,11,3,5,3,13,1,8,1,2,12,2,12,3,1,4,4,11,3,13,4,4,4,10,9,5,0,3,15,9,7,9,2,4,2,13,5,1,3,13,13,6,10,11,15,4,2,2,5,12,14,15,12,10,14,8,1,9,1,2,0,11,9,13,12,10,6,4,7,9,14,10,14,2,0,9,2,14,7,4,5,0,9,15,15,6,9,3,5,13,11,10,8,15,6,8,5,5,1,15,4,12,2,5,13,15,3,9,7,13,14,12,11,15,9,6,8,1,7,7,12,14,4,13,7,8,9,7,1,0,3,4,0,8,5,8,13,9,1,11,7,11,8,9,0,7,12,4,7,6,8,3,8,10,13,7,10,6,7,4,7,15,14,0,14,9,15,6,14,12,11,2,6,1,10,6,5,1,8,3,9,7,15,1,14,10,5,13,6,15,10,9,7,11,10,4,4,9,13,1,6,4,11,12,1,3,0,1,8,10,2,3,3,1,13,6,11,8,10,1,14,11,1,8,12,0,4,13,13,4,10,5,6,6,7,10,14,13,2,15,14,12,1,7,13,1,13,10,0,7,0,0,11,12,14,2,0,10,11,10,8,2,4,11,1,3,13,13,1,1,4,3,6,10,6,0,14,9,5,7,6,14,10,2,14,8,11,5,7,9,15,4,13,2,15,10,9,1,3,11,4,8,2,6,7,9,5,11,14,8,7,4,1,12,2,14,5,2,11,13,9,10,14,11,8,9,11,2,7,11,13,15,13,7,14,13,8,11,2,1,9,7,14,8,3,5,15,5,4,3,12,8,6,9,1,15,8,3,4,12,4,11,7,14,4,0,6,10,3,9,2,10,10,0,9,12,1,5,7,3,14,3,11,7,10,4", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"5\", \"6\", \"6\", \"7\"], \"clip_start\": 356.0, \"clip_end\": 361.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,3,13,12,15,0,3,2,0,5,1,10,10,2,15,8,5,6,11,5,9,8,7,14,14,3,3,0,7,6,6,3,1,15,7,11,11,2,4,6,5,4,2,1,0,3,15,4,13,8,7,7,11,10,7,8,10,10,2,7,15,10,13,10,8,11,0,14,2,5,4,0,7,3,4,14,10,6,5,11,8,2,3,6,14,10,6,7,15,9,7,13,12,0,15,13,1,7,13,0,12,11,1,8,9,15,15,12,5,1,13,11,7,10,0,1,11,10,9,7,5,9,12,8,4,11,11,3,5,3,13,1,8,1,2,12,2,12,3,1,4,4,11,3,13,4,4,4,10,9,5,0,3,15,9,7,9,2,4,2,13,5,1,3,13,13,6,10,11,15,4,2,2,5,12,14,15,12,10,14,8,1,9,1,2,0,11,9,13,12,10,6,4,7,9,14,10,14,2,0,9,2,14,7,4,5,0,9,15,15,6,9,3,5,13,11,10,8,15,6,8,5,5,1,15,4,12,2,5,13,15,3,9,7,13,14,12,11,15,9,6,8,1,7,7,12,14,4,13,7,8,9,7,1,0,3,4,0,8,5,8,13,9,1,11,7,11,8,9,0,7,12,4,7,6,8,3,8,10,13,7,10,6,7,4,7,15,14,0,14,9,15,6,14,12,11,2,6,1,10,6,5,1,8,3,9,7,15,1,14,10,5,13,6,15,10,9,7,11,10,4,4,9,13,1,6,4,11,12,1,3,0,1,8,10,2,3,3,1,13,6,11,8,10,1,14,11,1,8,12,0,4,13,13,4,10,5,6,6,7,10,14,13,2,15,14,12,1,7,13,1,13,10,0,7,0,0,11,12,14,2,0,10,11,10,8,2,4,11,1,3,13,13,1,1,4,3,6,10,6,0,14,9,5,7,6,14,10,2,14,8,11,5,7,9,15,4,13,2,15,10,9,1,3,11,4,8,2,6,7,9,5,11,14,8,7,4,1,12,2,14,5,2,11,13,9,10,14,11,8,9,11,2,7,11,13,15,13,7,14,13,8,11,2,1,9,7,14,8,3,5,15,5,4,3,12,8,6,9,1,15,8,3,4,12,4,11,7,14,4,0,6,10,3,9,2,10,10,0,9,12,1,5,7,3,14,3,11,7,10,4", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"1\", \"8\", \"3\"], \"clip_start\": 301.0, \"clip_end\": 306.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q2_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,3,13,12,15,0,3,2,0,5,1,10,10,2,15,8,5,6,11,5,9,8,7,14,14,3,3,0,7,6,6,3,1,15,7,11,11,2,4,6,5,4,2,1,0,3,15,4,13,8,7,7,11,10,7,8,10,10,2,7,15,10,13,10,8,11,0,14,2,5,4,0,7,3,4,14,10,6,5,11,8,2,3,6,14,10,6,7,15,9,7,13,12,0,15,13,1,7,13,0,12,11,1,8,9,15,15,12,5,1,13,11,7,10,0,1,11,10,9,7,5,9,12,8,4,11,11,3,5,3,13,1,8,1,2,12,2,12,3,1,4,4,11,3,13,4,4,4,10,9,5,0,3,15,9,7,9,2,4,2,13,5,1,3,13,13,6,10,11,15,4,2,2,5,12,14,15,12,10,14,8,1,9,1,2,0,11,9,13,12,10,6,4,7,9,14,10,14,2,0,9,2,14,7,4,5,0,9,15,15,6,9,3,5,13,11,10,8,15,6,8,5,5,1,15,4,12,2,5,13,15,3,9,7,13,14,12,11,15,9,6,8,1,7,7,12,14,4,13,7,8,9,7,1,0,3,4,0,8,5,8,13,9,1,11,7,11,8,9,0,7,12,4,7,6,8,3,8,10,13,7,10,6,7,4,7,15,14,0,14,9,15,6,14,12,11,2,6,1,10,6,5,1,8,3,9,7,15,1,14,10,5,13,6,15,10,9,7,11,10,4,4,9,13,1,6,4,11,12,1,3,0,1,8,10,2,3,3,1,13,6,11,8,10,1,14,11,1,8,12,0,4,13,13,4,10,5,6,6,7,10,14,13,2,15,14,12,1,7,13,1,13,10,0,7,0,0,11,12,14,2,0,10,11,10,8,2,4,11,1,3,13,13,1,1,4,3,6,10,6,0,14,9,5,7,6,14,10,2,14,8,11,5,7,9,15,4,13,2,15,10,9,1,3,11,4,8,2,6,7,9,5,11,14,8,7,4,1,12,2,14,5,2,11,13,9,10,14,11,8,9,11,2,7,11,13,15,13,7,14,13,8,11,2,1,9,7,14,8,3,5,15,5,4,3,12,8,6,9,1,15,8,3,4,12,4,11,7,14,4,0,6,10,3,9,2,10,10,0,9,12,1,5,7,3,14,3,11,7,10,4", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"15\", \"7\", \"11\", \"11\"], \"clip_start\": 32.0, \"clip_end\": 38.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,3,13,12,15,0,3,2,0,5,1,10,10,2,15,8,5,6,11,5,9,8,7,14,14,3,3,0,7,6,6,3,1,15,7,11,11,2,4,6,5,4,2,1,0,3,15,4,13,8,7,7,11,10,7,8,10,10,2,7,15,10,13,10,8,11,0,14,2,5,4,0,7,3,4,14,10,6,5,11,8,2,3,6,14,10,6,7,15,9,7,13,12,0,15,13,1,7,13,0,12,11,1,8,9,15,15,12,5,1,13,11,7,10,0,1,11,10,9,7,5,9,12,8,4,11,11,3,5,3,13,1,8,1,2,12,2,12,3,1,4,4,11,3,13,4,4,4,10,9,5,0,3,15,9,7,9,2,4,2,13,5,1,3,13,13,6,10,11,15,4,2,2,5,12,14,15,12,10,14,8,1,9,1,2,0,11,9,13,12,10,6,4,7,9,14,10,14,2,0,9,2,14,7,4,5,0,9,15,15,6,9,3,5,13,11,10,8,15,6,8,5,5,1,15,4,12,2,5,13,15,3,9,7,13,14,12,11,15,9,6,8,1,7,7,12,14,4,13,7,8,9,7,1,0,3,4,0,8,5,8,13,9,1,11,7,11,8,9,0,7,12,4,7,6,8,3,8,10,13,7,10,6,7,4,7,15,14,0,14,9,15,6,14,12,11,2,6,1,10,6,5,1,8,3,9,7,15,1,14,10,5,13,6,15,10,9,7,11,10,4,4,9,13,1,6,4,11,12,1,3,0,1,8,10,2,3,3,1,13,6,11,8,10,1,14,11,1,8,12,0,4,13,13,4,10,5,6,6,7,10,14,13,2,15,14,12,1,7,13,1,13,10,0,7,0,0,11,12,14,2,0,10,11,10,8,2,4,11,1,3,13,13,1,1,4,3,6,10,6,0,14,9,5,7,6,14,10,2,14,8,11,5,7,9,15,4,13,2,15,10,9,1,3,11,4,8,2,6,7,9,5,11,14,8,7,4,1,12,2,14,5,2,11,13,9,10,14,11,8,9,11,2,7,11,13,15,13,7,14,13,8,11,2,1,9,7,14,8,3,5,15,5,4,3,12,8,6,9,1,15,8,3,4,12,4,11,7,14,4,0,6,10,3,9,2,10,10,0,9,12,1,5,7,3,14,3,11,7,10,4", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"15\", \"4\"], \"clip_start\": 415.0, \"clip_end\": 418.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q4_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,3,13,12,15,0,3,2,0,5,1,10,10,2,15,8,5,6,11,5,9,8,7,14,14,3,3,0,7,6,6,3,1,15,7,11,11,2,4,6,5,4,2,1,0,3,15,4,13,8,7,7,11,10,7,8,10,10,2,7,15,10,13,10,8,11,0,14,2,5,4,0,7,3,4,14,10,6,5,11,8,2,3,6,14,10,6,7,15,9,7,13,12,0,15,13,1,7,13,0,12,11,1,8,9,15,15,12,5,1,13,11,7,10,0,1,11,10,9,7,5,9,12,8,4,11,11,3,5,3,13,1,8,1,2,12,2,12,3,1,4,4,11,3,13,4,4,4,10,9,5,0,3,15,9,7,9,2,4,2,13,5,1,3,13,13,6,10,11,15,4,2,2,5,12,14,15,12,10,14,8,1,9,1,2,0,11,9,13,12,10,6,4,7,9,14,10,14,2,0,9,2,14,7,4,5,0,9,15,15,6,9,3,5,13,11,10,8,15,6,8,5,5,1,15,4,12,2,5,13,15,3,9,7,13,14,12,11,15,9,6,8,1,7,7,12,14,4,13,7,8,9,7,1,0,3,4,0,8,5,8,13,9,1,11,7,11,8,9,0,7,12,4,7,6,8,3,8,10,13,7,10,6,7,4,7,15,14,0,14,9,15,6,14,12,11,2,6,1,10,6,5,1,8,3,9,7,15,1,14,10,5,13,6,15,10,9,7,11,10,4,4,9,13,1,6,4,11,12,1,3,0,1,8,10,2,3,3,1,13,6,11,8,10,1,14,11,1,8,12,0,4,13,13,4,10,5,6,6,7,10,14,13,2,15,14,12,1,7,13,1,13,10,0,7,0,0,11,12,14,2,0,10,11,10,8,2,4,11,1,3,13,13,1,1,4,3,6,10,6,0,14,9,5,7,6,14,10,2,14,8,11,5,7,9,15,4,13,2,15,10,9,1,3,11,4,8,2,6,7,9,5,11,14,8,7,4,1,12,2,14,5,2,11,13,9,10,14,11,8,9,11,2,7,11,13,15,13,7,14,13,8,11,2,1,9,7,14,8,3,5,15,5,4,3,12,8,6,9,1,15,8,3,4,12,4,11,7,14,4,0,6,10,3,9,2,10,10,0,9,12,1,5,7,3,14,3,11,7,10,4", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"3\", \"4\", \"1\"], \"clip_start\": 507.0, \"clip_end\": 511.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q5_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,3,13,12,15,0,3,2,0,5,1,10,10,2,15,8,5,6,11,5,9,8,7,14,14,3,3,0,7,6,6,3,1,15,7,11,11,2,4,6,5,4,2,1,0,3,15,4,13,8,7,7,11,10,7,8,10,10,2,7,15,10,13,10,8,11,0,14,2,5,4,0,7,3,4,14,10,6,5,11,8,2,3,6,14,10,6,7,15,9,7,13,12,0,15,13,1,7,13,0,12,11,1,8,9,15,15,12,5,1,13,11,7,10,0,1,11,10,9,7,5,9,12,8,4,11,11,3,5,3,13,1,8,1,2,12,2,12,3,1,4,4,11,3,13,4,4,4,10,9,5,0,3,15,9,7,9,2,4,2,13,5,1,3,13,13,6,10,11,15,4,2,2,5,12,14,15,12,10,14,8,1,9,1,2,0,11,9,13,12,10,6,4,7,9,14,10,14,2,0,9,2,14,7,4,5,0,9,15,15,6,9,3,5,13,11,10,8,15,6,8,5,5,1,15,4,12,2,5,13,15,3,9,7,13,14,12,11,15,9,6,8,1,7,7,12,14,4,13,7,8,9,7,1,0,3,4,0,8,5,8,13,9,1,11,7,11,8,9,0,7,12,4,7,6,8,3,8,10,13,7,10,6,7,4,7,15,14,0,14,9,15,6,14,12,11,2,6,1,10,6,5,1,8,3,9,7,15,1,14,10,5,13,6,15,10,9,7,11,10,4,4,9,13,1,6,4,11,12,1,3,0,1,8,10,2,3,3,1,13,6,11,8,10,1,14,11,1,8,12,0,4,13,13,4,10,5,6,6,7,10,14,13,2,15,14,12,1,7,13,1,13,10,0,7,0,0,11,12,14,2,0,10,11,10,8,2,4,11,1,3,13,13,1,1,4,3,6,10,6,0,14,9,5,7,6,14,10,2,14,8,11,5,7,9,15,4,13,2,15,10,9,1,3,11,4,8,2,6,7,9,5,11,14,8,7,4,1,12,2,14,5,2,11,13,9,10,14,11,8,9,11,2,7,11,13,15,13,7,14,13,8,11,2,1,9,7,14,8,3,5,15,5,4,3,12,8,6,9,1,15,8,3,4,12,4,11,7,14,4,0,6,10,3,9,2,10,10,0,9,12,1,5,7,3,14,3,11,7,10,4", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"9\", \"5\", \"7\", \"3\", \"13\"], \"clip_start\": 7.0, \"clip_end\": 13.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q6_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,3,13,12,15,0,3,2,0,5,1,10,10,2,15,8,5,6,11,5,9,8,7,14,14,3,3,0,7,6,6,3,1,15,7,11,11,2,4,6,5,4,2,1,0,3,15,4,13,8,7,7,11,10,7,8,10,10,2,7,15,10,13,10,8,11,0,14,2,5,4,0,7,3,4,14,10,6,5,11,8,2,3,6,14,10,6,7,15,9,7,13,12,0,15,13,1,7,13,0,12,11,1,8,9,15,15,12,5,1,13,11,7,10,0,1,11,10,9,7,5,9,12,8,4,11,11,3,5,3,13,1,8,1,2,12,2,12,3,1,4,4,11,3,13,4,4,4,10,9,5,0,3,15,9,7,9,2,4,2,13,5,1,3,13,13,6,10,11,15,4,2,2,5,12,14,15,12,10,14,8,1,9,1,2,0,11,9,13,12,10,6,4,7,9,14,10,14,2,0,9,2,14,7,4,5,0,9,15,15,6,9,3,5,13,11,10,8,15,6,8,5,5,1,15,4,12,2,5,13,15,3,9,7,13,14,12,11,15,9,6,8,1,7,7,12,14,4,13,7,8,9,7,1,0,3,4,0,8,5,8,13,9,1,11,7,11,8,9,0,7,12,4,7,6,8,3,8,10,13,7,10,6,7,4,7,15,14,0,14,9,15,6,14,12,11,2,6,1,10,6,5,1,8,3,9,7,15,1,14,10,5,13,6,15,10,9,7,11,10,4,4,9,13,1,6,4,11,12,1,3,0,1,8,10,2,3,3,1,13,6,11,8,10,1,14,11,1,8,12,0,4,13,13,4,10,5,6,6,7,10,14,13,2,15,14,12,1,7,13,1,13,10,0,7,0,0,11,12,14,2,0,10,11,10,8,2,4,11,1,3,13,13,1,1,4,3,6,10,6,0,14,9,5,7,6,14,10,2,14,8,11,5,7,9,15,4,13,2,15,10,9,1,3,11,4,8,2,6,7,9,5,11,14,8,7,4,1,12,2,14,5,2,11,13,9,10,14,11,8,9,11,2,7,11,13,15,13,7,14,13,8,11,2,1,9,7,14,8,3,5,15,5,4,3,12,8,6,9,1,15,8,3,4,12,4,11,7,14,4,0,6,10,3,9,2,10,10,0,9,12,1,5,7,3,14,3,11,7,10,4", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"12\", \"8\", \"6\", \"9\"], \"clip_start\": 475.0, \"clip_end\": 480.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,3,13,12,15,0,3,2,0,5,1,10,10,2,15,8,5,6,11,5,9,8,7,14,14,3,3,0,7,6,6,3,1,15,7,11,11,2,4,6,5,4,2,1,0,3,15,4,13,8,7,7,11,10,7,8,10,10,2,7,15,10,13,10,8,11,0,14,2,5,4,0,7,3,4,14,10,6,5,11,8,2,3,6,14,10,6,7,15,9,7,13,12,0,15,13,1,7,13,0,12,11,1,8,9,15,15,12,5,1,13,11,7,10,0,1,11,10,9,7,5,9,12,8,4,11,11,3,5,3,13,1,8,1,2,12,2,12,3,1,4,4,11,3,13,4,4,4,10,9,5,0,3,15,9,7,9,2,4,2,13,5,1,3,13,13,6,10,11,15,4,2,2,5,12,14,15,12,10,14,8,1,9,1,2,0,11,9,13,12,10,6,4,7,9,14,10,14,2,0,9,2,14,7,4,5,0,9,15,15,6,9,3,5,13,11,10,8,15,6,8,5,5,1,15,4,12,2,5,13,15,3,9,7,13,14,12,11,15,9,6,8,1,7,7,12,14,4,13,7,8,9,7,1,0,3,4,0,8,5,8,13,9,1,11,7,11,8,9,0,7,12,4,7,6,8,3,8,10,13,7,10,6,7,4,7,15,14,0,14,9,15,6,14,12,11,2,6,1,10,6,5,1,8,3,9,7,15,1,14,10,5,13,6,15,10,9,7,11,10,4,4,9,13,1,6,4,11,12,1,3,0,1,8,10,2,3,3,1,13,6,11,8,10,1,14,11,1,8,12,0,4,13,13,4,10,5,6,6,7,10,14,13,2,15,14,12,1,7,13,1,13,10,0,7,0,0,11,12,14,2,0,10,11,10,8,2,4,11,1,3,13,13,1,1,4,3,6,10,6,0,14,9,5,7,6,14,10,2,14,8,11,5,7,9,15,4,13,2,15,10,9,1,3,11,4,8,2,6,7,9,5,11,14,8,7,4,1,12,2,14,5,2,11,13,9,10,14,11,8,9,11,2,7,11,13,15,13,7,14,13,8,11,2,1,9,7,14,8,3,5,15,5,4,3,12,8,6,9,1,15,8,3,4,12,4,11,7,14,4,0,6,10,3,9,2,10,10,0,9,12,1,5,7,3,14,3,11,7,10,4", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"15\", \"15\", \"6\", \"9\", \"3\"], \"clip_start\": 208.0, \"clip_end\": 214.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q8_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,3,13,12,15,0,3,2,0,5,1,10,10,2,15,8,5,6,11,5,9,8,7,14,14,3,3,0,7,6,6,3,1,15,7,11,11,2,4,6,5,4,2,1,0,3,15,4,13,8,7,7,11,10,7,8,10,10,2,7,15,10,13,10,8,11,0,14,2,5,4,0,7,3,4,14,10,6,5,11,8,2,3,6,14,10,6,7,15,9,7,13,12,0,15,13,1,7,13,0,12,11,1,8,9,15,15,12,5,1,13,11,7,10,0,1,11,10,9,7,5,9,12,8,4,11,11,3,5,3,13,1,8,1,2,12,2,12,3,1,4,4,11,3,13,4,4,4,10,9,5,0,3,15,9,7,9,2,4,2,13,5,1,3,13,13,6,10,11,15,4,2,2,5,12,14,15,12,10,14,8,1,9,1,2,0,11,9,13,12,10,6,4,7,9,14,10,14,2,0,9,2,14,7,4,5,0,9,15,15,6,9,3,5,13,11,10,8,15,6,8,5,5,1,15,4,12,2,5,13,15,3,9,7,13,14,12,11,15,9,6,8,1,7,7,12,14,4,13,7,8,9,7,1,0,3,4,0,8,5,8,13,9,1,11,7,11,8,9,0,7,12,4,7,6,8,3,8,10,13,7,10,6,7,4,7,15,14,0,14,9,15,6,14,12,11,2,6,1,10,6,5,1,8,3,9,7,15,1,14,10,5,13,6,15,10,9,7,11,10,4,4,9,13,1,6,4,11,12,1,3,0,1,8,10,2,3,3,1,13,6,11,8,10,1,14,11,1,8,12,0,4,13,13,4,10,5,6,6,7,10,14,13,2,15,14,12,1,7,13,1,13,10,0,7,0,0,11,12,14,2,0,10,11,10,8,2,4,11,1,3,13,13,1,1,4,3,6,10,6,0,14,9,5,7,6,14,10,2,14,8,11,5,7,9,15,4,13,2,15,10,9,1,3,11,4,8,2,6,7,9,5,11,14,8,7,4,1,12,2,14,5,2,11,13,9,10,14,11,8,9,11,2,7,11,13,15,13,7,14,13,8,11,2,1,9,7,14,8,3,5,15,5,4,3,12,8,6,9,1,15,8,3,4,12,4,11,7,14,4,0,6,10,3,9,2,10,10,0,9,12,1,5,7,3,14,3,11,7,10,4", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"9\"], \"clip_start\": 444.0, \"clip_end\": 447.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q9_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,3,13,12,15,0,3,2,0,5,1,10,10,2,15,8,5,6,11,5,9,8,7,14,14,3,3,0,7,6,6,3,1,15,7,11,11,2,4,6,5,4,2,1,0,3,15,4,13,8,7,7,11,10,7,8,10,10,2,7,15,10,13,10,8,11,0,14,2,5,4,0,7,3,4,14,10,6,5,11,8,2,3,6,14,10,6,7,15,9,7,13,12,0,15,13,1,7,13,0,12,11,1,8,9,15,15,12,5,1,13,11,7,10,0,1,11,10,9,7,5,9,12,8,4,11,11,3,5,3,13,1,8,1,2,12,2,12,3,1,4,4,11,3,13,4,4,4,10,9,5,0,3,15,9,7,9,2,4,2,13,5,1,3,13,13,6,10,11,15,4,2,2,5,12,14,15,12,10,14,8,1,9,1,2,0,11,9,13,12,10,6,4,7,9,14,10,14,2,0,9,2,14,7,4,5,0,9,15,15,6,9,3,5,13,11,10,8,15,6,8,5,5,1,15,4,12,2,5,13,15,3,9,7,13,14,12,11,15,9,6,8,1,7,7,12,14,4,13,7,8,9,7,1,0,3,4,0,8,5,8,13,9,1,11,7,11,8,9,0,7,12,4,7,6,8,3,8,10,13,7,10,6,7,4,7,15,14,0,14,9,15,6,14,12,11,2,6,1,10,6,5,1,8,3,9,7,15,1,14,10,5,13,6,15,10,9,7,11,10,4,4,9,13,1,6,4,11,12,1,3,0,1,8,10,2,3,3,1,13,6,11,8,10,1,14,11,1,8,12,0,4,13,13,4,10,5,6,6,7,10,14,13,2,15,14,12,1,7,13,1,13,10,0,7,0,0,11,12,14,2,0,10,11,10,8,2,4,11,1,3,13,13,1,1,4,3,6,10,6,0,14,9,5,7,6,14,10,2,14,8,11,5,7,9,15,4,13,2,15,10,9,1,3,11,4,8,2,6,7,9,5,11,14,8,7,4,1,12,2,14,5,2,11,13,9,10,14,11,8,9,11,2,7,11,13,15,13,7,14,13,8,11,2,1,9,7,14,8,3,5,15,5,4,3,12,8,6,9,1,15,8,3,4,12,4,11,7,14,4,0,6,10,3,9,2,10,10,0,9,12,1,5,7,3,14,3,11,7,10,4", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"4\", \"11\", \"3\"], \"clip_start\": 140.0, \"clip_end\": 145.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q10_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,3,13,12,15,0,3,2,0,5,1,10,10,2,15,8,5,6,11,5,9,8,7,14,14,3,3,0,7,6,6,3,1,15,7,11,11,2,4,6,5,4,2,1,0,3,15,4,13,8,7,7,11,10,7,8,10,10,2,7,15,10,13,10,8,11,0,14,2,5,4,0,7,3,4,14,10,6,5,11,8,2,3,6,14,10,6,7,15,9,7,13,12,0,15,13,1,7,13,0,12,11,1,8,9,15,15,12,5,1,13,11,7,10,0,1,11,10,9,7,5,9,12,8,4,11,11,3,5,3,13,1,8,1,2,12,2,12,3,1,4,4,11,3,13,4,4,4,10,9,5,0,3,15,9,7,9,2,4,2,13,5,1,3,13,13,6,10,11,15,4,2,2,5,12,14,15,12,10,14,8,1,9,1,2,0,11,9,13,12,10,6,4,7,9,14,10,14,2,0,9,2,14,7,4,5,0,9,15,15,6,9,3,5,13,11,10,8,15,6,8,5,5,1,15,4,12,2,5,13,15,3,9,7,13,14,12,11,15,9,6,8,1,7,7,12,14,4,13,7,8,9,7,1,0,3,4,0,8,5,8,13,9,1,11,7,11,8,9,0,7,12,4,7,6,8,3,8,10,13,7,10,6,7,4,7,15,14,0,14,9,15,6,14,12,11,2,6,1,10,6,5,1,8,3,9,7,15,1,14,10,5,13,6,15,10,9,7,11,10,4,4,9,13,1,6,4,11,12,1,3,0,1,8,10,2,3,3,1,13,6,11,8,10,1,14,11,1,8,12,0,4,13,13,4,10,5,6,6,7,10,14,13,2,15,14,12,1,7,13,1,13,10,0,7,0,0,11,12,14,2,0,10,11,10,8,2,4,11,1,3,13,13,1,1,4,3,6,10,6,0,14,9,5,7,6,14,10,2,14,8,11,5,7,9,15,4,13,2,15,10,9,1,3,11,4,8,2,6,7,9,5,11,14,8,7,4,1,12,2,14,5,2,11,13,9,10,14,11,8,9,11,2,7,11,13,15,13,7,14,13,8,11,2,1,9,7,14,8,3,5,15,5,4,3,12,8,6,9,1,15,8,3,4,12,4,11,7,14,4,0,6,10,3,9,2,10,10,0,9,12,1,5,7,3,14,3,11,7,10,4", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"5\", \"5\", \"1\"], \"clip_start\": 221.0, \"clip_end\": 225.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,3,13,12,15,0,3,2,0,5,1,10,10,2,15,8,5,6,11,5,9,8,7,14,14,3,3,0,7,6,6,3,1,15,7,11,11,2,4,6,5,4,2,1,0,3,15,4,13,8,7,7,11,10,7,8,10,10,2,7,15,10,13,10,8,11,0,14,2,5,4,0,7,3,4,14,10,6,5,11,8,2,3,6,14,10,6,7,15,9,7,13,12,0,15,13,1,7,13,0,12,11,1,8,9,15,15,12,5,1,13,11,7,10,0,1,11,10,9,7,5,9,12,8,4,11,11,3,5,3,13,1,8,1,2,12,2,12,3,1,4,4,11,3,13,4,4,4,10,9,5,0,3,15,9,7,9,2,4,2,13,5,1,3,13,13,6,10,11,15,4,2,2,5,12,14,15,12,10,14,8,1,9,1,2,0,11,9,13,12,10,6,4,7,9,14,10,14,2,0,9,2,14,7,4,5,0,9,15,15,6,9,3,5,13,11,10,8,15,6,8,5,5,1,15,4,12,2,5,13,15,3,9,7,13,14,12,11,15,9,6,8,1,7,7,12,14,4,13,7,8,9,7,1,0,3,4,0,8,5,8,13,9,1,11,7,11,8,9,0,7,12,4,7,6,8,3,8,10,13,7,10,6,7,4,7,15,14,0,14,9,15,6,14,12,11,2,6,1,10,6,5,1,8,3,9,7,15,1,14,10,5,13,6,15,10,9,7,11,10,4,4,9,13,1,6,4,11,12,1,3,0,1,8,10,2,3,3,1,13,6,11,8,10,1,14,11,1,8,12,0,4,13,13,4,10,5,6,6,7,10,14,13,2,15,14,12,1,7,13,1,13,10,0,7,0,0,11,12,14,2,0,10,11,10,8,2,4,11,1,3,13,13,1,1,4,3,6,10,6,0,14,9,5,7,6,14,10,2,14,8,11,5,7,9,15,4,13,2,15,10,9,1,3,11,4,8,2,6,7,9,5,11,14,8,7,4,1,12,2,14,5,2,11,13,9,10,14,11,8,9,11,2,7,11,13,15,13,7,14,13,8,11,2,1,9,7,14,8,3,5,15,5,4,3,12,8,6,9,1,15,8,3,4,12,4,11,7,14,4,0,6,10,3,9,2,10,10,0,9,12,1,5,7,3,14,3,11,7,10,4", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"1\", \"10\", \"5\", \"10\", \"7\"], \"clip_start\": 444.0, \"clip_end\": 450.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,3,13,12,15,0,3,2,0,5,1,10,10,2,15,8,5,6,11,5,9,8,7,14,14,3,3,0,7,6,6,3,1,15,7,11,11,2,4,6,5,4,2,1,0,3,15,4,13,8,7,7,11,10,7,8,10,10,2,7,15,10,13,10,8,11,0,14,2,5,4,0,7,3,4,14,10,6,5,11,8,2,3,6,14,10,6,7,15,9,7,13,12,0,15,13,1,7,13,0,12,11,1,8,9,15,15,12,5,1,13,11,7,10,0,1,11,10,9,7,5,9,12,8,4,11,11,3,5,3,13,1,8,1,2,12,2,12,3,1,4,4,11,3,13,4,4,4,10,9,5,0,3,15,9,7,9,2,4,2,13,5,1,3,13,13,6,10,11,15,4,2,2,5,12,14,15,12,10,14,8,1,9,1,2,0,11,9,13,12,10,6,4,7,9,14,10,14,2,0,9,2,14,7,4,5,0,9,15,15,6,9,3,5,13,11,10,8,15,6,8,5,5,1,15,4,12,2,5,13,15,3,9,7,13,14,12,11,15,9,6,8,1,7,7,12,14,4,13,7,8,9,7,1,0,3,4,0,8,5,8,13,9,1,11,7,11,8,9,0,7,12,4,7,6,8,3,8,10,13,7,10,6,7,4,7,15,14,0,14,9,15,6,14,12,11,2,6,1,10,6,5,1,8,3,9,7,15,1,14,10,5,13,6,15,10,9,7,11,10,4,4,9,13,1,6,4,11,12,1,3,0,1,8,10,2,3,3,1,13,6,11,8,10,1,14,11,1,8,12,0,4,13,13,4,10,5,6,6,7,10,14,13,2,15,14,12,1,7,13,1,13,10,0,7,0,0,11,12,14,2,0,10,11,10,8,2,4,11,1,3,13,13,1,1,4,3,6,10,6,0,14,9,5,7,6,14,10,2,14,8,11,5,7,9,15,4,13,2,15,10,9,1,3,11,4,8,2,6,7,9,5,11,14,8,7,4,1,12,2,14,5,2,11,13,9,10,14,11,8,9,11,2,7,11,13,15,13,7,14,13,8,11,2,1,9,7,14,8,3,5,15,5,4,3,12,8,6,9,1,15,8,3,4,12,4,11,7,14,4,0,6,10,3,9,2,10,10,0,9,12,1,5,7,3,14,3,11,7,10,4", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"15\", \"0\", \"0\", \"10\"], \"clip_start\": 127.0, \"clip_end\": 133.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,3,13,12,15,0,3,2,0,5,1,10,10,2,15,8,5,6,11,5,9,8,7,14,14,3,3,0,7,6,6,3,1,15,7,11,11,2,4,6,5,4,2,1,0,3,15,4,13,8,7,7,11,10,7,8,10,10,2,7,15,10,13,10,8,11,0,14,2,5,4,0,7,3,4,14,10,6,5,11,8,2,3,6,14,10,6,7,15,9,7,13,12,0,15,13,1,7,13,0,12,11,1,8,9,15,15,12,5,1,13,11,7,10,0,1,11,10,9,7,5,9,12,8,4,11,11,3,5,3,13,1,8,1,2,12,2,12,3,1,4,4,11,3,13,4,4,4,10,9,5,0,3,15,9,7,9,2,4,2,13,5,1,3,13,13,6,10,11,15,4,2,2,5,12,14,15,12,10,14,8,1,9,1,2,0,11,9,13,12,10,6,4,7,9,14,10,14,2,0,9,2,14,7,4,5,0,9,15,15,6,9,3,5,13,11,10,8,15,6,8,5,5,1,15,4,12,2,5,13,15,3,9,7,13,14,12,11,15,9,6,8,1,7,7,12,14,4,13,7,8,9,7,1,0,3,4,0,8,5,8,13,9,1,11,7,11,8,9,0,7,12,4,7,6,8,3,8,10,13,7,10,6,7,4,7,15,14,0,14,9,15,6,14,12,11,2,6,1,10,6,5,1,8,3,9,7,15,1,14,10,5,13,6,15,10,9,7,11,10,4,4,9,13,1,6,4,11,12,1,3,0,1,8,10,2,3,3,1,13,6,11,8,10,1,14,11,1,8,12,0,4,13,13,4,10,5,6,6,7,10,14,13,2,15,14,12,1,7,13,1,13,10,0,7,0,0,11,12,14,2,0,10,11,10,8,2,4,11,1,3,13,13,1,1,4,3,6,10,6,0,14,9,5,7,6,14,10,2,14,8,11,5,7,9,15,4,13,2,15,10,9,1,3,11,4,8,2,6,7,9,5,11,14,8,7,4,1,12,2,14,5,2,11,13,9,10,14,11,8,9,11,2,7,11,13,15,13,7,14,13,8,11,2,1,9,7,14,8,3,5,15,5,4,3,12,8,6,9,1,15,8,3,4,12,4,11,7,14,4,0,6,10,3,9,2,10,10,0,9,12,1,5,7,3,14,3,11,7,10,4", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 14, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"12\", \"10\"], \"clip_start\": 176.0, \"clip_end\": 180.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q14_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,3,13,12,15,0,3,2,0,5,1,10,10,2,15,8,5,6,11,5,9,8,7,14,14,3,3,0,7,6,6,3,1,15,7,11,11,2,4,6,5,4,2,1,0,3,15,4,13,8,7,7,11,10,7,8,10,10,2,7,15,10,13,10,8,11,0,14,2,5,4,0,7,3,4,14,10,6,5,11,8,2,3,6,14,10,6,7,15,9,7,13,12,0,15,13,1,7,13,0,12,11,1,8,9,15,15,12,5,1,13,11,7,10,0,1,11,10,9,7,5,9,12,8,4,11,11,3,5,3,13,1,8,1,2,12,2,12,3,1,4,4,11,3,13,4,4,4,10,9,5,0,3,15,9,7,9,2,4,2,13,5,1,3,13,13,6,10,11,15,4,2,2,5,12,14,15,12,10,14,8,1,9,1,2,0,11,9,13,12,10,6,4,7,9,14,10,14,2,0,9,2,14,7,4,5,0,9,15,15,6,9,3,5,13,11,10,8,15,6,8,5,5,1,15,4,12,2,5,13,15,3,9,7,13,14,12,11,15,9,6,8,1,7,7,12,14,4,13,7,8,9,7,1,0,3,4,0,8,5,8,13,9,1,11,7,11,8,9,0,7,12,4,7,6,8,3,8,10,13,7,10,6,7,4,7,15,14,0,14,9,15,6,14,12,11,2,6,1,10,6,5,1,8,3,9,7,15,1,14,10,5,13,6,15,10,9,7,11,10,4,4,9,13,1,6,4,11,12,1,3,0,1,8,10,2,3,3,1,13,6,11,8,10,1,14,11,1,8,12,0,4,13,13,4,10,5,6,6,7,10,14,13,2,15,14,12,1,7,13,1,13,10,0,7,0,0,11,12,14,2,0,10,11,10,8,2,4,11,1,3,13,13,1,1,4,3,6,10,6,0,14,9,5,7,6,14,10,2,14,8,11,5,7,9,15,4,13,2,15,10,9,1,3,11,4,8,2,6,7,9,5,11,14,8,7,4,1,12,2,14,5,2,11,13,9,10,14,11,8,9,11,2,7,11,13,15,13,7,14,13,8,11,2,1,9,7,14,8,3,5,15,5,4,3,12,8,6,9,1,15,8,3,4,12,4,11,7,14,4,0,6,10,3,9,2,10,10,0,9,12,1,5,7,3,14,3,11,7,10,4", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 14, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"1\", \"8\", \"5\", \"10\"], \"clip_start\": 124.0, \"clip_end\": 130.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q15_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4", "dataset_source": "synthetic", "input_sequence": "1,14,3,13,12,15,0,3,2,0,5,1,10,10,2,15,8,5,6,11,5,9,8,7,14,14,3,3,0,7,6,6,3,1,15,7,11,11,2,4,6,5,4,2,1,0,3,15,4,13,8,7,7,11,10,7,8,10,10,2,7,15,10,13,10,8,11,0,14,2,5,4,0,7,3,4,14,10,6,5,11,8,2,3,6,14,10,6,7,15,9,7,13,12,0,15,13,1,7,13,0,12,11,1,8,9,15,15,12,5,1,13,11,7,10,0,1,11,10,9,7,5,9,12,8,4,11,11,3,5,3,13,1,8,1,2,12,2,12,3,1,4,4,11,3,13,4,4,4,10,9,5,0,3,15,9,7,9,2,4,2,13,5,1,3,13,13,6,10,11,15,4,2,2,5,12,14,15,12,10,14,8,1,9,1,2,0,11,9,13,12,10,6,4,7,9,14,10,14,2,0,9,2,14,7,4,5,0,9,15,15,6,9,3,5,13,11,10,8,15,6,8,5,5,1,15,4,12,2,5,13,15,3,9,7,13,14,12,11,15,9,6,8,1,7,7,12,14,4,13,7,8,9,7,1,0,3,4,0,8,5,8,13,9,1,11,7,11,8,9,0,7,12,4,7,6,8,3,8,10,13,7,10,6,7,4,7,15,14,0,14,9,15,6,14,12,11,2,6,1,10,6,5,1,8,3,9,7,15,1,14,10,5,13,6,15,10,9,7,11,10,4,4,9,13,1,6,4,11,12,1,3,0,1,8,10,2,3,3,1,13,6,11,8,10,1,14,11,1,8,12,0,4,13,13,4,10,5,6,6,7,10,14,13,2,15,14,12,1,7,13,1,13,10,0,7,0,0,11,12,14,2,0,10,11,10,8,2,4,11,1,3,13,13,1,1,4,3,6,10,6,0,14,9,5,7,6,14,10,2,14,8,11,5,7,9,15,4,13,2,15,10,9,1,3,11,4,8,2,6,7,9,5,11,14,8,7,4,1,12,2,14,5,2,11,13,9,10,14,11,8,9,11,2,7,11,13,15,13,7,14,13,8,11,2,1,9,7,14,8,3,5,15,5,4,3,12,8,6,9,1,15,8,3,4,12,4,11,7,14,4,0,6,10,3,9,2,10,10,0,9,12,1,5,7,3,14,3,11,7,10,4", "source_class": null, "source_dataset": null, "video_id": "video_14_v0", "question_id": "video_14_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"12\", \"0\"], \"clip_start\": 437.0, \"clip_end\": 440.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q0_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,4,3,4,0,2,7,8,10,2,12,4,3,7,9,13,4,5,4,7,10,9,7,10,8,8,5,13,8,6,3,15,3,11,14,13,1,8,12,11,2,8,8,11,4,0,0,8,6,6,3,11,0,3,11,12,10,7,0,7,5,2,13,15,0,14,8,15,11,4,12,1,10,8,8,3,12,14,13,10,15,15,0,13,3,6,8,3,4,3,2,6,4,14,4,0,4,2,8,2,15,14,12,1,12,0,2,13,0,14,5,1,4,13,11,15,3,9,8,5,10,6,9,3,10,1,6,15,1,1,5,14,14,0,8,15,14,2,3,10,2,1,15,15,11,10,12,3,0,8,13,7,7,12,14,9,6,4,15,1,6,1,10,12,9,0,15,0,0,6,15,2,10,9,8,11,11,10,15,8,10,5,3,14,14,6,6,5,11,6,12,5,11,2,5,10,4,8,8,10,2,14,4,9,12,12,4,2,5,9,9,0,5,14,1,15,2,0,9,1,1,2,7,4,13,2,7,7,10,7,3,4,6,0,6,15,3,3,5,1,1,4,7,15,3,14,2,15,11,5,14,0,4,7,14,9,9,7,11,8,14,7,9,3,11,10,3,13,6,6,13,12,7,3,0,11,1,9,10,8,3,1,5,12,13,5,15,9,5,10,4,10,5,4,0,12,9,4,2,1,10,4,13,12,9,13,6,9,13,5,5,10,14,12,11,1,10,11,6,3,8,11,5,15,7,2,11,10,1,13,14,2,5,7,6,0,4,7,5,12,15,11,12,14,11,12,6,4,12,9,14,12,12,0,15,4,9,5,9,12,13,4,6,8,6,1,11,13,10,10,15,13,13,5,0,13,2,5,9,0,1,2,1,3,11,7,8,15,10,7,2,8,0,10,13,3,6,2,5,9,4,2,10,15,5,14,14,4,4,7,15,10,8,13,13,6,12,9,14,14,11,14,15,3,8,7,9,7,4,11,5,5,2,14,4,1,14,12,0,8,12,11,3,9,14,4,3,1,14,8,3,0,1,7,2,4,7,0,15,15,6,15,0,9,1,6,11,4,1,10,4,7,4,4,9,6,8,9,9,10,3,10,1,8,9,1,15,7,4,7,2,11,15,4,5,6,4,6,2,9,11,15,5,10,15,8,15,0,15,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"2\"], \"clip_start\": 162.0, \"clip_end\": 166.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q1_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,4,3,4,0,2,7,8,10,2,12,4,3,7,9,13,4,5,4,7,10,9,7,10,8,8,5,13,8,6,3,15,3,11,14,13,1,8,12,11,2,8,8,11,4,0,0,8,6,6,3,11,0,3,11,12,10,7,0,7,5,2,13,15,0,14,8,15,11,4,12,1,10,8,8,3,12,14,13,10,15,15,0,13,3,6,8,3,4,3,2,6,4,14,4,0,4,2,8,2,15,14,12,1,12,0,2,13,0,14,5,1,4,13,11,15,3,9,8,5,10,6,9,3,10,1,6,15,1,1,5,14,14,0,8,15,14,2,3,10,2,1,15,15,11,10,12,3,0,8,13,7,7,12,14,9,6,4,15,1,6,1,10,12,9,0,15,0,0,6,15,2,10,9,8,11,11,10,15,8,10,5,3,14,14,6,6,5,11,6,12,5,11,2,5,10,4,8,8,10,2,14,4,9,12,12,4,2,5,9,9,0,5,14,1,15,2,0,9,1,1,2,7,4,13,2,7,7,10,7,3,4,6,0,6,15,3,3,5,1,1,4,7,15,3,14,2,15,11,5,14,0,4,7,14,9,9,7,11,8,14,7,9,3,11,10,3,13,6,6,13,12,7,3,0,11,1,9,10,8,3,1,5,12,13,5,15,9,5,10,4,10,5,4,0,12,9,4,2,1,10,4,13,12,9,13,6,9,13,5,5,10,14,12,11,1,10,11,6,3,8,11,5,15,7,2,11,10,1,13,14,2,5,7,6,0,4,7,5,12,15,11,12,14,11,12,6,4,12,9,14,12,12,0,15,4,9,5,9,12,13,4,6,8,6,1,11,13,10,10,15,13,13,5,0,13,2,5,9,0,1,2,1,3,11,7,8,15,10,7,2,8,0,10,13,3,6,2,5,9,4,2,10,15,5,14,14,4,4,7,15,10,8,13,13,6,12,9,14,14,11,14,15,3,8,7,9,7,4,11,5,5,2,14,4,1,14,12,0,8,12,11,3,9,14,4,3,1,14,8,3,0,1,7,2,4,7,0,15,15,6,15,0,9,1,6,11,4,1,10,4,7,4,4,9,6,8,9,9,10,3,10,1,8,9,1,15,7,4,7,2,11,15,4,5,6,4,6,2,9,11,15,5,10,15,8,15,0,15,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"13\", \"13\", \"5\"], \"clip_start\": 371.0, \"clip_end\": 375.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q2_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,4,3,4,0,2,7,8,10,2,12,4,3,7,9,13,4,5,4,7,10,9,7,10,8,8,5,13,8,6,3,15,3,11,14,13,1,8,12,11,2,8,8,11,4,0,0,8,6,6,3,11,0,3,11,12,10,7,0,7,5,2,13,15,0,14,8,15,11,4,12,1,10,8,8,3,12,14,13,10,15,15,0,13,3,6,8,3,4,3,2,6,4,14,4,0,4,2,8,2,15,14,12,1,12,0,2,13,0,14,5,1,4,13,11,15,3,9,8,5,10,6,9,3,10,1,6,15,1,1,5,14,14,0,8,15,14,2,3,10,2,1,15,15,11,10,12,3,0,8,13,7,7,12,14,9,6,4,15,1,6,1,10,12,9,0,15,0,0,6,15,2,10,9,8,11,11,10,15,8,10,5,3,14,14,6,6,5,11,6,12,5,11,2,5,10,4,8,8,10,2,14,4,9,12,12,4,2,5,9,9,0,5,14,1,15,2,0,9,1,1,2,7,4,13,2,7,7,10,7,3,4,6,0,6,15,3,3,5,1,1,4,7,15,3,14,2,15,11,5,14,0,4,7,14,9,9,7,11,8,14,7,9,3,11,10,3,13,6,6,13,12,7,3,0,11,1,9,10,8,3,1,5,12,13,5,15,9,5,10,4,10,5,4,0,12,9,4,2,1,10,4,13,12,9,13,6,9,13,5,5,10,14,12,11,1,10,11,6,3,8,11,5,15,7,2,11,10,1,13,14,2,5,7,6,0,4,7,5,12,15,11,12,14,11,12,6,4,12,9,14,12,12,0,15,4,9,5,9,12,13,4,6,8,6,1,11,13,10,10,15,13,13,5,0,13,2,5,9,0,1,2,1,3,11,7,8,15,10,7,2,8,0,10,13,3,6,2,5,9,4,2,10,15,5,14,14,4,4,7,15,10,8,13,13,6,12,9,14,14,11,14,15,3,8,7,9,7,4,11,5,5,2,14,4,1,14,12,0,8,12,11,3,9,14,4,3,1,14,8,3,0,1,7,2,4,7,0,15,15,6,15,0,9,1,6,11,4,1,10,4,7,4,4,9,6,8,9,9,10,3,10,1,8,9,1,15,7,4,7,2,11,15,4,5,6,4,6,2,9,11,15,5,10,15,8,15,0,15,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"13\", \"4\", \"6\"], \"clip_start\": 360.0, \"clip_end\": 364.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q3_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,4,3,4,0,2,7,8,10,2,12,4,3,7,9,13,4,5,4,7,10,9,7,10,8,8,5,13,8,6,3,15,3,11,14,13,1,8,12,11,2,8,8,11,4,0,0,8,6,6,3,11,0,3,11,12,10,7,0,7,5,2,13,15,0,14,8,15,11,4,12,1,10,8,8,3,12,14,13,10,15,15,0,13,3,6,8,3,4,3,2,6,4,14,4,0,4,2,8,2,15,14,12,1,12,0,2,13,0,14,5,1,4,13,11,15,3,9,8,5,10,6,9,3,10,1,6,15,1,1,5,14,14,0,8,15,14,2,3,10,2,1,15,15,11,10,12,3,0,8,13,7,7,12,14,9,6,4,15,1,6,1,10,12,9,0,15,0,0,6,15,2,10,9,8,11,11,10,15,8,10,5,3,14,14,6,6,5,11,6,12,5,11,2,5,10,4,8,8,10,2,14,4,9,12,12,4,2,5,9,9,0,5,14,1,15,2,0,9,1,1,2,7,4,13,2,7,7,10,7,3,4,6,0,6,15,3,3,5,1,1,4,7,15,3,14,2,15,11,5,14,0,4,7,14,9,9,7,11,8,14,7,9,3,11,10,3,13,6,6,13,12,7,3,0,11,1,9,10,8,3,1,5,12,13,5,15,9,5,10,4,10,5,4,0,12,9,4,2,1,10,4,13,12,9,13,6,9,13,5,5,10,14,12,11,1,10,11,6,3,8,11,5,15,7,2,11,10,1,13,14,2,5,7,6,0,4,7,5,12,15,11,12,14,11,12,6,4,12,9,14,12,12,0,15,4,9,5,9,12,13,4,6,8,6,1,11,13,10,10,15,13,13,5,0,13,2,5,9,0,1,2,1,3,11,7,8,15,10,7,2,8,0,10,13,3,6,2,5,9,4,2,10,15,5,14,14,4,4,7,15,10,8,13,13,6,12,9,14,14,11,14,15,3,8,7,9,7,4,11,5,5,2,14,4,1,14,12,0,8,12,11,3,9,14,4,3,1,14,8,3,0,1,7,2,4,7,0,15,15,6,15,0,9,1,6,11,4,1,10,4,7,4,4,9,6,8,9,9,10,3,10,1,8,9,1,15,7,4,7,2,11,15,4,5,6,4,6,2,9,11,15,5,10,15,8,15,0,15,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"10\", \"5\", \"4\", \"0\", \"12\"], \"clip_start\": 291.0, \"clip_end\": 297.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,4,3,4,0,2,7,8,10,2,12,4,3,7,9,13,4,5,4,7,10,9,7,10,8,8,5,13,8,6,3,15,3,11,14,13,1,8,12,11,2,8,8,11,4,0,0,8,6,6,3,11,0,3,11,12,10,7,0,7,5,2,13,15,0,14,8,15,11,4,12,1,10,8,8,3,12,14,13,10,15,15,0,13,3,6,8,3,4,3,2,6,4,14,4,0,4,2,8,2,15,14,12,1,12,0,2,13,0,14,5,1,4,13,11,15,3,9,8,5,10,6,9,3,10,1,6,15,1,1,5,14,14,0,8,15,14,2,3,10,2,1,15,15,11,10,12,3,0,8,13,7,7,12,14,9,6,4,15,1,6,1,10,12,9,0,15,0,0,6,15,2,10,9,8,11,11,10,15,8,10,5,3,14,14,6,6,5,11,6,12,5,11,2,5,10,4,8,8,10,2,14,4,9,12,12,4,2,5,9,9,0,5,14,1,15,2,0,9,1,1,2,7,4,13,2,7,7,10,7,3,4,6,0,6,15,3,3,5,1,1,4,7,15,3,14,2,15,11,5,14,0,4,7,14,9,9,7,11,8,14,7,9,3,11,10,3,13,6,6,13,12,7,3,0,11,1,9,10,8,3,1,5,12,13,5,15,9,5,10,4,10,5,4,0,12,9,4,2,1,10,4,13,12,9,13,6,9,13,5,5,10,14,12,11,1,10,11,6,3,8,11,5,15,7,2,11,10,1,13,14,2,5,7,6,0,4,7,5,12,15,11,12,14,11,12,6,4,12,9,14,12,12,0,15,4,9,5,9,12,13,4,6,8,6,1,11,13,10,10,15,13,13,5,0,13,2,5,9,0,1,2,1,3,11,7,8,15,10,7,2,8,0,10,13,3,6,2,5,9,4,2,10,15,5,14,14,4,4,7,15,10,8,13,13,6,12,9,14,14,11,14,15,3,8,7,9,7,4,11,5,5,2,14,4,1,14,12,0,8,12,11,3,9,14,4,3,1,14,8,3,0,1,7,2,4,7,0,15,15,6,15,0,9,1,6,11,4,1,10,4,7,4,4,9,6,8,9,9,10,3,10,1,8,9,1,15,7,4,7,2,11,15,4,5,6,4,6,2,9,11,15,5,10,15,8,15,0,15,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"4\", \"9\", \"5\"], \"clip_start\": 355.0, \"clip_end\": 359.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q5_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,4,3,4,0,2,7,8,10,2,12,4,3,7,9,13,4,5,4,7,10,9,7,10,8,8,5,13,8,6,3,15,3,11,14,13,1,8,12,11,2,8,8,11,4,0,0,8,6,6,3,11,0,3,11,12,10,7,0,7,5,2,13,15,0,14,8,15,11,4,12,1,10,8,8,3,12,14,13,10,15,15,0,13,3,6,8,3,4,3,2,6,4,14,4,0,4,2,8,2,15,14,12,1,12,0,2,13,0,14,5,1,4,13,11,15,3,9,8,5,10,6,9,3,10,1,6,15,1,1,5,14,14,0,8,15,14,2,3,10,2,1,15,15,11,10,12,3,0,8,13,7,7,12,14,9,6,4,15,1,6,1,10,12,9,0,15,0,0,6,15,2,10,9,8,11,11,10,15,8,10,5,3,14,14,6,6,5,11,6,12,5,11,2,5,10,4,8,8,10,2,14,4,9,12,12,4,2,5,9,9,0,5,14,1,15,2,0,9,1,1,2,7,4,13,2,7,7,10,7,3,4,6,0,6,15,3,3,5,1,1,4,7,15,3,14,2,15,11,5,14,0,4,7,14,9,9,7,11,8,14,7,9,3,11,10,3,13,6,6,13,12,7,3,0,11,1,9,10,8,3,1,5,12,13,5,15,9,5,10,4,10,5,4,0,12,9,4,2,1,10,4,13,12,9,13,6,9,13,5,5,10,14,12,11,1,10,11,6,3,8,11,5,15,7,2,11,10,1,13,14,2,5,7,6,0,4,7,5,12,15,11,12,14,11,12,6,4,12,9,14,12,12,0,15,4,9,5,9,12,13,4,6,8,6,1,11,13,10,10,15,13,13,5,0,13,2,5,9,0,1,2,1,3,11,7,8,15,10,7,2,8,0,10,13,3,6,2,5,9,4,2,10,15,5,14,14,4,4,7,15,10,8,13,13,6,12,9,14,14,11,14,15,3,8,7,9,7,4,11,5,5,2,14,4,1,14,12,0,8,12,11,3,9,14,4,3,1,14,8,3,0,1,7,2,4,7,0,15,15,6,15,0,9,1,6,11,4,1,10,4,7,4,4,9,6,8,9,9,10,3,10,1,8,9,1,15,7,4,7,2,11,15,4,5,6,4,6,2,9,11,15,5,10,15,8,15,0,15,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"13\", \"2\", \"5\"], \"clip_start\": 375.0, \"clip_end\": 379.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q6_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,4,3,4,0,2,7,8,10,2,12,4,3,7,9,13,4,5,4,7,10,9,7,10,8,8,5,13,8,6,3,15,3,11,14,13,1,8,12,11,2,8,8,11,4,0,0,8,6,6,3,11,0,3,11,12,10,7,0,7,5,2,13,15,0,14,8,15,11,4,12,1,10,8,8,3,12,14,13,10,15,15,0,13,3,6,8,3,4,3,2,6,4,14,4,0,4,2,8,2,15,14,12,1,12,0,2,13,0,14,5,1,4,13,11,15,3,9,8,5,10,6,9,3,10,1,6,15,1,1,5,14,14,0,8,15,14,2,3,10,2,1,15,15,11,10,12,3,0,8,13,7,7,12,14,9,6,4,15,1,6,1,10,12,9,0,15,0,0,6,15,2,10,9,8,11,11,10,15,8,10,5,3,14,14,6,6,5,11,6,12,5,11,2,5,10,4,8,8,10,2,14,4,9,12,12,4,2,5,9,9,0,5,14,1,15,2,0,9,1,1,2,7,4,13,2,7,7,10,7,3,4,6,0,6,15,3,3,5,1,1,4,7,15,3,14,2,15,11,5,14,0,4,7,14,9,9,7,11,8,14,7,9,3,11,10,3,13,6,6,13,12,7,3,0,11,1,9,10,8,3,1,5,12,13,5,15,9,5,10,4,10,5,4,0,12,9,4,2,1,10,4,13,12,9,13,6,9,13,5,5,10,14,12,11,1,10,11,6,3,8,11,5,15,7,2,11,10,1,13,14,2,5,7,6,0,4,7,5,12,15,11,12,14,11,12,6,4,12,9,14,12,12,0,15,4,9,5,9,12,13,4,6,8,6,1,11,13,10,10,15,13,13,5,0,13,2,5,9,0,1,2,1,3,11,7,8,15,10,7,2,8,0,10,13,3,6,2,5,9,4,2,10,15,5,14,14,4,4,7,15,10,8,13,13,6,12,9,14,14,11,14,15,3,8,7,9,7,4,11,5,5,2,14,4,1,14,12,0,8,12,11,3,9,14,4,3,1,14,8,3,0,1,7,2,4,7,0,15,15,6,15,0,9,1,6,11,4,1,10,4,7,4,4,9,6,8,9,9,10,3,10,1,8,9,1,15,7,4,7,2,11,15,4,5,6,4,6,2,9,11,15,5,10,15,8,15,0,15,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"14\", \"5\", \"1\", \"4\", \"13\"], \"clip_start\": 109.0, \"clip_end\": 115.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,4,3,4,0,2,7,8,10,2,12,4,3,7,9,13,4,5,4,7,10,9,7,10,8,8,5,13,8,6,3,15,3,11,14,13,1,8,12,11,2,8,8,11,4,0,0,8,6,6,3,11,0,3,11,12,10,7,0,7,5,2,13,15,0,14,8,15,11,4,12,1,10,8,8,3,12,14,13,10,15,15,0,13,3,6,8,3,4,3,2,6,4,14,4,0,4,2,8,2,15,14,12,1,12,0,2,13,0,14,5,1,4,13,11,15,3,9,8,5,10,6,9,3,10,1,6,15,1,1,5,14,14,0,8,15,14,2,3,10,2,1,15,15,11,10,12,3,0,8,13,7,7,12,14,9,6,4,15,1,6,1,10,12,9,0,15,0,0,6,15,2,10,9,8,11,11,10,15,8,10,5,3,14,14,6,6,5,11,6,12,5,11,2,5,10,4,8,8,10,2,14,4,9,12,12,4,2,5,9,9,0,5,14,1,15,2,0,9,1,1,2,7,4,13,2,7,7,10,7,3,4,6,0,6,15,3,3,5,1,1,4,7,15,3,14,2,15,11,5,14,0,4,7,14,9,9,7,11,8,14,7,9,3,11,10,3,13,6,6,13,12,7,3,0,11,1,9,10,8,3,1,5,12,13,5,15,9,5,10,4,10,5,4,0,12,9,4,2,1,10,4,13,12,9,13,6,9,13,5,5,10,14,12,11,1,10,11,6,3,8,11,5,15,7,2,11,10,1,13,14,2,5,7,6,0,4,7,5,12,15,11,12,14,11,12,6,4,12,9,14,12,12,0,15,4,9,5,9,12,13,4,6,8,6,1,11,13,10,10,15,13,13,5,0,13,2,5,9,0,1,2,1,3,11,7,8,15,10,7,2,8,0,10,13,3,6,2,5,9,4,2,10,15,5,14,14,4,4,7,15,10,8,13,13,6,12,9,14,14,11,14,15,3,8,7,9,7,4,11,5,5,2,14,4,1,14,12,0,8,12,11,3,9,14,4,3,1,14,8,3,0,1,7,2,4,7,0,15,15,6,15,0,9,1,6,11,4,1,10,4,7,4,4,9,6,8,9,9,10,3,10,1,8,9,1,15,7,4,7,2,11,15,4,5,6,4,6,2,9,11,15,5,10,15,8,15,0,15,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"5\", \"10\"], \"clip_start\": 309.0, \"clip_end\": 313.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q8_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,4,3,4,0,2,7,8,10,2,12,4,3,7,9,13,4,5,4,7,10,9,7,10,8,8,5,13,8,6,3,15,3,11,14,13,1,8,12,11,2,8,8,11,4,0,0,8,6,6,3,11,0,3,11,12,10,7,0,7,5,2,13,15,0,14,8,15,11,4,12,1,10,8,8,3,12,14,13,10,15,15,0,13,3,6,8,3,4,3,2,6,4,14,4,0,4,2,8,2,15,14,12,1,12,0,2,13,0,14,5,1,4,13,11,15,3,9,8,5,10,6,9,3,10,1,6,15,1,1,5,14,14,0,8,15,14,2,3,10,2,1,15,15,11,10,12,3,0,8,13,7,7,12,14,9,6,4,15,1,6,1,10,12,9,0,15,0,0,6,15,2,10,9,8,11,11,10,15,8,10,5,3,14,14,6,6,5,11,6,12,5,11,2,5,10,4,8,8,10,2,14,4,9,12,12,4,2,5,9,9,0,5,14,1,15,2,0,9,1,1,2,7,4,13,2,7,7,10,7,3,4,6,0,6,15,3,3,5,1,1,4,7,15,3,14,2,15,11,5,14,0,4,7,14,9,9,7,11,8,14,7,9,3,11,10,3,13,6,6,13,12,7,3,0,11,1,9,10,8,3,1,5,12,13,5,15,9,5,10,4,10,5,4,0,12,9,4,2,1,10,4,13,12,9,13,6,9,13,5,5,10,14,12,11,1,10,11,6,3,8,11,5,15,7,2,11,10,1,13,14,2,5,7,6,0,4,7,5,12,15,11,12,14,11,12,6,4,12,9,14,12,12,0,15,4,9,5,9,12,13,4,6,8,6,1,11,13,10,10,15,13,13,5,0,13,2,5,9,0,1,2,1,3,11,7,8,15,10,7,2,8,0,10,13,3,6,2,5,9,4,2,10,15,5,14,14,4,4,7,15,10,8,13,13,6,12,9,14,14,11,14,15,3,8,7,9,7,4,11,5,5,2,14,4,1,14,12,0,8,12,11,3,9,14,4,3,1,14,8,3,0,1,7,2,4,7,0,15,15,6,15,0,9,1,6,11,4,1,10,4,7,4,4,9,6,8,9,9,10,3,10,1,8,9,1,15,7,4,7,2,11,15,4,5,6,4,6,2,9,11,15,5,10,15,8,15,0,15,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"13\", \"3\"], \"clip_start\": 245.0, \"clip_end\": 248.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q9_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,4,3,4,0,2,7,8,10,2,12,4,3,7,9,13,4,5,4,7,10,9,7,10,8,8,5,13,8,6,3,15,3,11,14,13,1,8,12,11,2,8,8,11,4,0,0,8,6,6,3,11,0,3,11,12,10,7,0,7,5,2,13,15,0,14,8,15,11,4,12,1,10,8,8,3,12,14,13,10,15,15,0,13,3,6,8,3,4,3,2,6,4,14,4,0,4,2,8,2,15,14,12,1,12,0,2,13,0,14,5,1,4,13,11,15,3,9,8,5,10,6,9,3,10,1,6,15,1,1,5,14,14,0,8,15,14,2,3,10,2,1,15,15,11,10,12,3,0,8,13,7,7,12,14,9,6,4,15,1,6,1,10,12,9,0,15,0,0,6,15,2,10,9,8,11,11,10,15,8,10,5,3,14,14,6,6,5,11,6,12,5,11,2,5,10,4,8,8,10,2,14,4,9,12,12,4,2,5,9,9,0,5,14,1,15,2,0,9,1,1,2,7,4,13,2,7,7,10,7,3,4,6,0,6,15,3,3,5,1,1,4,7,15,3,14,2,15,11,5,14,0,4,7,14,9,9,7,11,8,14,7,9,3,11,10,3,13,6,6,13,12,7,3,0,11,1,9,10,8,3,1,5,12,13,5,15,9,5,10,4,10,5,4,0,12,9,4,2,1,10,4,13,12,9,13,6,9,13,5,5,10,14,12,11,1,10,11,6,3,8,11,5,15,7,2,11,10,1,13,14,2,5,7,6,0,4,7,5,12,15,11,12,14,11,12,6,4,12,9,14,12,12,0,15,4,9,5,9,12,13,4,6,8,6,1,11,13,10,10,15,13,13,5,0,13,2,5,9,0,1,2,1,3,11,7,8,15,10,7,2,8,0,10,13,3,6,2,5,9,4,2,10,15,5,14,14,4,4,7,15,10,8,13,13,6,12,9,14,14,11,14,15,3,8,7,9,7,4,11,5,5,2,14,4,1,14,12,0,8,12,11,3,9,14,4,3,1,14,8,3,0,1,7,2,4,7,0,15,15,6,15,0,9,1,6,11,4,1,10,4,7,4,4,9,6,8,9,9,10,3,10,1,8,9,1,15,7,4,7,2,11,15,4,5,6,4,6,2,9,11,15,5,10,15,8,15,0,15,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q9_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\"], \"clip_start\": 219.0, \"clip_end\": 222.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q10_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,4,3,4,0,2,7,8,10,2,12,4,3,7,9,13,4,5,4,7,10,9,7,10,8,8,5,13,8,6,3,15,3,11,14,13,1,8,12,11,2,8,8,11,4,0,0,8,6,6,3,11,0,3,11,12,10,7,0,7,5,2,13,15,0,14,8,15,11,4,12,1,10,8,8,3,12,14,13,10,15,15,0,13,3,6,8,3,4,3,2,6,4,14,4,0,4,2,8,2,15,14,12,1,12,0,2,13,0,14,5,1,4,13,11,15,3,9,8,5,10,6,9,3,10,1,6,15,1,1,5,14,14,0,8,15,14,2,3,10,2,1,15,15,11,10,12,3,0,8,13,7,7,12,14,9,6,4,15,1,6,1,10,12,9,0,15,0,0,6,15,2,10,9,8,11,11,10,15,8,10,5,3,14,14,6,6,5,11,6,12,5,11,2,5,10,4,8,8,10,2,14,4,9,12,12,4,2,5,9,9,0,5,14,1,15,2,0,9,1,1,2,7,4,13,2,7,7,10,7,3,4,6,0,6,15,3,3,5,1,1,4,7,15,3,14,2,15,11,5,14,0,4,7,14,9,9,7,11,8,14,7,9,3,11,10,3,13,6,6,13,12,7,3,0,11,1,9,10,8,3,1,5,12,13,5,15,9,5,10,4,10,5,4,0,12,9,4,2,1,10,4,13,12,9,13,6,9,13,5,5,10,14,12,11,1,10,11,6,3,8,11,5,15,7,2,11,10,1,13,14,2,5,7,6,0,4,7,5,12,15,11,12,14,11,12,6,4,12,9,14,12,12,0,15,4,9,5,9,12,13,4,6,8,6,1,11,13,10,10,15,13,13,5,0,13,2,5,9,0,1,2,1,3,11,7,8,15,10,7,2,8,0,10,13,3,6,2,5,9,4,2,10,15,5,14,14,4,4,7,15,10,8,13,13,6,12,9,14,14,11,14,15,3,8,7,9,7,4,11,5,5,2,14,4,1,14,12,0,8,12,11,3,9,14,4,3,1,14,8,3,0,1,7,2,4,7,0,15,15,6,15,0,9,1,6,11,4,1,10,4,7,4,4,9,6,8,9,9,10,3,10,1,8,9,1,15,7,4,7,2,11,15,4,5,6,4,6,2,9,11,15,5,10,15,8,15,0,15,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 15, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"15\", \"11\"], \"clip_start\": 508.0, \"clip_end\": 511.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q11_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,4,3,4,0,2,7,8,10,2,12,4,3,7,9,13,4,5,4,7,10,9,7,10,8,8,5,13,8,6,3,15,3,11,14,13,1,8,12,11,2,8,8,11,4,0,0,8,6,6,3,11,0,3,11,12,10,7,0,7,5,2,13,15,0,14,8,15,11,4,12,1,10,8,8,3,12,14,13,10,15,15,0,13,3,6,8,3,4,3,2,6,4,14,4,0,4,2,8,2,15,14,12,1,12,0,2,13,0,14,5,1,4,13,11,15,3,9,8,5,10,6,9,3,10,1,6,15,1,1,5,14,14,0,8,15,14,2,3,10,2,1,15,15,11,10,12,3,0,8,13,7,7,12,14,9,6,4,15,1,6,1,10,12,9,0,15,0,0,6,15,2,10,9,8,11,11,10,15,8,10,5,3,14,14,6,6,5,11,6,12,5,11,2,5,10,4,8,8,10,2,14,4,9,12,12,4,2,5,9,9,0,5,14,1,15,2,0,9,1,1,2,7,4,13,2,7,7,10,7,3,4,6,0,6,15,3,3,5,1,1,4,7,15,3,14,2,15,11,5,14,0,4,7,14,9,9,7,11,8,14,7,9,3,11,10,3,13,6,6,13,12,7,3,0,11,1,9,10,8,3,1,5,12,13,5,15,9,5,10,4,10,5,4,0,12,9,4,2,1,10,4,13,12,9,13,6,9,13,5,5,10,14,12,11,1,10,11,6,3,8,11,5,15,7,2,11,10,1,13,14,2,5,7,6,0,4,7,5,12,15,11,12,14,11,12,6,4,12,9,14,12,12,0,15,4,9,5,9,12,13,4,6,8,6,1,11,13,10,10,15,13,13,5,0,13,2,5,9,0,1,2,1,3,11,7,8,15,10,7,2,8,0,10,13,3,6,2,5,9,4,2,10,15,5,14,14,4,4,7,15,10,8,13,13,6,12,9,14,14,11,14,15,3,8,7,9,7,4,11,5,5,2,14,4,1,14,12,0,8,12,11,3,9,14,4,3,1,14,8,3,0,1,7,2,4,7,0,15,15,6,15,0,9,1,6,11,4,1,10,4,7,4,4,9,6,8,9,9,10,3,10,1,8,9,1,15,7,4,7,2,11,15,4,5,6,4,6,2,9,11,15,5,10,15,8,15,0,15,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"11\", \"5\", \"5\"], \"clip_start\": 429.0, \"clip_end\": 433.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q12_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,4,3,4,0,2,7,8,10,2,12,4,3,7,9,13,4,5,4,7,10,9,7,10,8,8,5,13,8,6,3,15,3,11,14,13,1,8,12,11,2,8,8,11,4,0,0,8,6,6,3,11,0,3,11,12,10,7,0,7,5,2,13,15,0,14,8,15,11,4,12,1,10,8,8,3,12,14,13,10,15,15,0,13,3,6,8,3,4,3,2,6,4,14,4,0,4,2,8,2,15,14,12,1,12,0,2,13,0,14,5,1,4,13,11,15,3,9,8,5,10,6,9,3,10,1,6,15,1,1,5,14,14,0,8,15,14,2,3,10,2,1,15,15,11,10,12,3,0,8,13,7,7,12,14,9,6,4,15,1,6,1,10,12,9,0,15,0,0,6,15,2,10,9,8,11,11,10,15,8,10,5,3,14,14,6,6,5,11,6,12,5,11,2,5,10,4,8,8,10,2,14,4,9,12,12,4,2,5,9,9,0,5,14,1,15,2,0,9,1,1,2,7,4,13,2,7,7,10,7,3,4,6,0,6,15,3,3,5,1,1,4,7,15,3,14,2,15,11,5,14,0,4,7,14,9,9,7,11,8,14,7,9,3,11,10,3,13,6,6,13,12,7,3,0,11,1,9,10,8,3,1,5,12,13,5,15,9,5,10,4,10,5,4,0,12,9,4,2,1,10,4,13,12,9,13,6,9,13,5,5,10,14,12,11,1,10,11,6,3,8,11,5,15,7,2,11,10,1,13,14,2,5,7,6,0,4,7,5,12,15,11,12,14,11,12,6,4,12,9,14,12,12,0,15,4,9,5,9,12,13,4,6,8,6,1,11,13,10,10,15,13,13,5,0,13,2,5,9,0,1,2,1,3,11,7,8,15,10,7,2,8,0,10,13,3,6,2,5,9,4,2,10,15,5,14,14,4,4,7,15,10,8,13,13,6,12,9,14,14,11,14,15,3,8,7,9,7,4,11,5,5,2,14,4,1,14,12,0,8,12,11,3,9,14,4,3,1,14,8,3,0,1,7,2,4,7,0,15,15,6,15,0,9,1,6,11,4,1,10,4,7,4,4,9,6,8,9,9,10,3,10,1,8,9,1,15,7,4,7,2,11,15,4,5,6,4,6,2,9,11,15,5,10,15,8,15,0,15,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"6\", \"15\", \"0\", \"9\", \"1\"], \"clip_start\": 460.0, \"clip_end\": 466.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,4,3,4,0,2,7,8,10,2,12,4,3,7,9,13,4,5,4,7,10,9,7,10,8,8,5,13,8,6,3,15,3,11,14,13,1,8,12,11,2,8,8,11,4,0,0,8,6,6,3,11,0,3,11,12,10,7,0,7,5,2,13,15,0,14,8,15,11,4,12,1,10,8,8,3,12,14,13,10,15,15,0,13,3,6,8,3,4,3,2,6,4,14,4,0,4,2,8,2,15,14,12,1,12,0,2,13,0,14,5,1,4,13,11,15,3,9,8,5,10,6,9,3,10,1,6,15,1,1,5,14,14,0,8,15,14,2,3,10,2,1,15,15,11,10,12,3,0,8,13,7,7,12,14,9,6,4,15,1,6,1,10,12,9,0,15,0,0,6,15,2,10,9,8,11,11,10,15,8,10,5,3,14,14,6,6,5,11,6,12,5,11,2,5,10,4,8,8,10,2,14,4,9,12,12,4,2,5,9,9,0,5,14,1,15,2,0,9,1,1,2,7,4,13,2,7,7,10,7,3,4,6,0,6,15,3,3,5,1,1,4,7,15,3,14,2,15,11,5,14,0,4,7,14,9,9,7,11,8,14,7,9,3,11,10,3,13,6,6,13,12,7,3,0,11,1,9,10,8,3,1,5,12,13,5,15,9,5,10,4,10,5,4,0,12,9,4,2,1,10,4,13,12,9,13,6,9,13,5,5,10,14,12,11,1,10,11,6,3,8,11,5,15,7,2,11,10,1,13,14,2,5,7,6,0,4,7,5,12,15,11,12,14,11,12,6,4,12,9,14,12,12,0,15,4,9,5,9,12,13,4,6,8,6,1,11,13,10,10,15,13,13,5,0,13,2,5,9,0,1,2,1,3,11,7,8,15,10,7,2,8,0,10,13,3,6,2,5,9,4,2,10,15,5,14,14,4,4,7,15,10,8,13,13,6,12,9,14,14,11,14,15,3,8,7,9,7,4,11,5,5,2,14,4,1,14,12,0,8,12,11,3,9,14,4,3,1,14,8,3,0,1,7,2,4,7,0,15,15,6,15,0,9,1,6,11,4,1,10,4,7,4,4,9,6,8,9,9,10,3,10,1,8,9,1,15,7,4,7,2,11,15,4,5,6,4,6,2,9,11,15,5,10,15,8,15,0,15,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"10\", \"3\", \"10\"], \"clip_start\": 479.0, \"clip_end\": 483.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q14_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,4,3,4,0,2,7,8,10,2,12,4,3,7,9,13,4,5,4,7,10,9,7,10,8,8,5,13,8,6,3,15,3,11,14,13,1,8,12,11,2,8,8,11,4,0,0,8,6,6,3,11,0,3,11,12,10,7,0,7,5,2,13,15,0,14,8,15,11,4,12,1,10,8,8,3,12,14,13,10,15,15,0,13,3,6,8,3,4,3,2,6,4,14,4,0,4,2,8,2,15,14,12,1,12,0,2,13,0,14,5,1,4,13,11,15,3,9,8,5,10,6,9,3,10,1,6,15,1,1,5,14,14,0,8,15,14,2,3,10,2,1,15,15,11,10,12,3,0,8,13,7,7,12,14,9,6,4,15,1,6,1,10,12,9,0,15,0,0,6,15,2,10,9,8,11,11,10,15,8,10,5,3,14,14,6,6,5,11,6,12,5,11,2,5,10,4,8,8,10,2,14,4,9,12,12,4,2,5,9,9,0,5,14,1,15,2,0,9,1,1,2,7,4,13,2,7,7,10,7,3,4,6,0,6,15,3,3,5,1,1,4,7,15,3,14,2,15,11,5,14,0,4,7,14,9,9,7,11,8,14,7,9,3,11,10,3,13,6,6,13,12,7,3,0,11,1,9,10,8,3,1,5,12,13,5,15,9,5,10,4,10,5,4,0,12,9,4,2,1,10,4,13,12,9,13,6,9,13,5,5,10,14,12,11,1,10,11,6,3,8,11,5,15,7,2,11,10,1,13,14,2,5,7,6,0,4,7,5,12,15,11,12,14,11,12,6,4,12,9,14,12,12,0,15,4,9,5,9,12,13,4,6,8,6,1,11,13,10,10,15,13,13,5,0,13,2,5,9,0,1,2,1,3,11,7,8,15,10,7,2,8,0,10,13,3,6,2,5,9,4,2,10,15,5,14,14,4,4,7,15,10,8,13,13,6,12,9,14,14,11,14,15,3,8,7,9,7,4,11,5,5,2,14,4,1,14,12,0,8,12,11,3,9,14,4,3,1,14,8,3,0,1,7,2,4,7,0,15,15,6,15,0,9,1,6,11,4,1,10,4,7,4,4,9,6,8,9,9,10,3,10,1,8,9,1,15,7,4,7,2,11,15,4,5,6,4,6,2,9,11,15,5,10,15,8,15,0,15,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 15, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"5\", \"0\", \"13\", \"2\"], \"clip_start\": 373.0, \"clip_end\": 378.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q15_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,5,4,3,4,0,2,7,8,10,2,12,4,3,7,9,13,4,5,4,7,10,9,7,10,8,8,5,13,8,6,3,15,3,11,14,13,1,8,12,11,2,8,8,11,4,0,0,8,6,6,3,11,0,3,11,12,10,7,0,7,5,2,13,15,0,14,8,15,11,4,12,1,10,8,8,3,12,14,13,10,15,15,0,13,3,6,8,3,4,3,2,6,4,14,4,0,4,2,8,2,15,14,12,1,12,0,2,13,0,14,5,1,4,13,11,15,3,9,8,5,10,6,9,3,10,1,6,15,1,1,5,14,14,0,8,15,14,2,3,10,2,1,15,15,11,10,12,3,0,8,13,7,7,12,14,9,6,4,15,1,6,1,10,12,9,0,15,0,0,6,15,2,10,9,8,11,11,10,15,8,10,5,3,14,14,6,6,5,11,6,12,5,11,2,5,10,4,8,8,10,2,14,4,9,12,12,4,2,5,9,9,0,5,14,1,15,2,0,9,1,1,2,7,4,13,2,7,7,10,7,3,4,6,0,6,15,3,3,5,1,1,4,7,15,3,14,2,15,11,5,14,0,4,7,14,9,9,7,11,8,14,7,9,3,11,10,3,13,6,6,13,12,7,3,0,11,1,9,10,8,3,1,5,12,13,5,15,9,5,10,4,10,5,4,0,12,9,4,2,1,10,4,13,12,9,13,6,9,13,5,5,10,14,12,11,1,10,11,6,3,8,11,5,15,7,2,11,10,1,13,14,2,5,7,6,0,4,7,5,12,15,11,12,14,11,12,6,4,12,9,14,12,12,0,15,4,9,5,9,12,13,4,6,8,6,1,11,13,10,10,15,13,13,5,0,13,2,5,9,0,1,2,1,3,11,7,8,15,10,7,2,8,0,10,13,3,6,2,5,9,4,2,10,15,5,14,14,4,4,7,15,10,8,13,13,6,12,9,14,14,11,14,15,3,8,7,9,7,4,11,5,5,2,14,4,1,14,12,0,8,12,11,3,9,14,4,3,1,14,8,3,0,1,7,2,4,7,0,15,15,6,15,0,9,1,6,11,4,1,10,4,7,4,4,9,6,8,9,9,10,3,10,1,8,9,1,15,7,4,7,2,11,15,4,5,6,4,6,2,9,11,15,5,10,15,8,15,0,15,7,2", "source_class": null, "source_dataset": null, "video_id": "video_15_v0", "question_id": "video_15_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"1\", \"10\", \"4\", \"7\", \"14\"], \"clip_start\": 223.0, \"clip_end\": 229.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,9,11,9,4,1,9,9,14,6,6,8,14,3,9,9,7,11,5,15,9,8,0,9,11,7,9,4,8,3,12,6,10,5,6,9,7,1,8,2,9,3,4,3,6,11,7,14,13,8,6,13,8,4,10,10,7,9,1,11,4,7,4,6,10,0,12,7,9,7,9,8,3,14,6,10,10,13,14,13,4,8,8,3,1,15,2,10,2,12,3,3,3,2,13,2,9,10,10,10,6,10,14,9,1,8,2,12,0,14,2,12,2,15,3,11,1,6,15,13,12,2,3,10,0,1,9,14,4,0,15,2,3,10,5,3,8,11,3,11,9,0,12,14,4,7,9,4,11,11,8,3,14,7,14,13,1,6,9,6,0,14,10,11,15,10,3,13,12,10,1,3,15,3,3,7,7,6,11,2,15,7,9,11,14,14,5,13,14,7,12,3,11,6,10,9,0,1,3,0,9,10,2,12,6,2,10,7,11,5,1,8,5,5,0,3,13,5,3,13,2,7,9,1,10,4,7,14,12,10,3,13,6,15,0,6,5,3,6,1,14,7,8,1,2,9,8,5,6,1,7,10,3,15,4,3,2,14,3,5,13,6,9,4,6,3,2,3,1,3,5,10,2,6,4,4,7,1,8,13,14,10,13,14,0,13,9,11,4,7,11,11,3,5,12,8,2,3,6,0,15,11,12,6,5,14,13,2,6,2,10,13,14,9,10,10,5,11,14,5,9,4,13,11,5,2,2,8,6,5,4,8,7,12,1,3,10,14,15,12,14,11,14,1,8,4,13,9,1,10,0,9,1,4,14,15,9,14,4,12,14,8,4,2,6,10,5,13,3,3,5,15,0,10,5,5,14,14,15,9,1,0,3,15,15,11,2,8,4,6,2,1,12,2,1,1,14,11,0,14,3,4,14,1,4,10,13,2,5,1,2,12,9,0,8,0,0,0,15,7,11,13,2,3,9,0,0,3,6,6,6,11,13,15,9,9,8,12,6,12,13,6,5,14,6,5,5,12,6,7,6,8,13,4,3,4,13,6,5,9,15,12,6,0,9,1,10,0,2,10,14,4,12,4,2,4,9,3,2,7,3,12,0,2,8,12,15,11,8,15,1,0,14,7,2,6,12,15,9,0,3,6,4,9,0,3,13,12,2,4,10", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"7\", \"14\", \"12\", \"10\", \"3\"], \"clip_start\": 226.0, \"clip_end\": 232.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q1_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,9,11,9,4,1,9,9,14,6,6,8,14,3,9,9,7,11,5,15,9,8,0,9,11,7,9,4,8,3,12,6,10,5,6,9,7,1,8,2,9,3,4,3,6,11,7,14,13,8,6,13,8,4,10,10,7,9,1,11,4,7,4,6,10,0,12,7,9,7,9,8,3,14,6,10,10,13,14,13,4,8,8,3,1,15,2,10,2,12,3,3,3,2,13,2,9,10,10,10,6,10,14,9,1,8,2,12,0,14,2,12,2,15,3,11,1,6,15,13,12,2,3,10,0,1,9,14,4,0,15,2,3,10,5,3,8,11,3,11,9,0,12,14,4,7,9,4,11,11,8,3,14,7,14,13,1,6,9,6,0,14,10,11,15,10,3,13,12,10,1,3,15,3,3,7,7,6,11,2,15,7,9,11,14,14,5,13,14,7,12,3,11,6,10,9,0,1,3,0,9,10,2,12,6,2,10,7,11,5,1,8,5,5,0,3,13,5,3,13,2,7,9,1,10,4,7,14,12,10,3,13,6,15,0,6,5,3,6,1,14,7,8,1,2,9,8,5,6,1,7,10,3,15,4,3,2,14,3,5,13,6,9,4,6,3,2,3,1,3,5,10,2,6,4,4,7,1,8,13,14,10,13,14,0,13,9,11,4,7,11,11,3,5,12,8,2,3,6,0,15,11,12,6,5,14,13,2,6,2,10,13,14,9,10,10,5,11,14,5,9,4,13,11,5,2,2,8,6,5,4,8,7,12,1,3,10,14,15,12,14,11,14,1,8,4,13,9,1,10,0,9,1,4,14,15,9,14,4,12,14,8,4,2,6,10,5,13,3,3,5,15,0,10,5,5,14,14,15,9,1,0,3,15,15,11,2,8,4,6,2,1,12,2,1,1,14,11,0,14,3,4,14,1,4,10,13,2,5,1,2,12,9,0,8,0,0,0,15,7,11,13,2,3,9,0,0,3,6,6,6,11,13,15,9,9,8,12,6,12,13,6,5,14,6,5,5,12,6,7,6,8,13,4,3,4,13,6,5,9,15,12,6,0,9,1,10,0,2,10,14,4,12,4,2,4,9,3,2,7,3,12,0,2,8,12,15,11,8,15,1,0,14,7,2,6,12,15,9,0,3,6,4,9,0,3,13,12,2,4,10", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"4\", \"13\", \"11\", \"5\"], \"clip_start\": 321.0, \"clip_end\": 326.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,9,11,9,4,1,9,9,14,6,6,8,14,3,9,9,7,11,5,15,9,8,0,9,11,7,9,4,8,3,12,6,10,5,6,9,7,1,8,2,9,3,4,3,6,11,7,14,13,8,6,13,8,4,10,10,7,9,1,11,4,7,4,6,10,0,12,7,9,7,9,8,3,14,6,10,10,13,14,13,4,8,8,3,1,15,2,10,2,12,3,3,3,2,13,2,9,10,10,10,6,10,14,9,1,8,2,12,0,14,2,12,2,15,3,11,1,6,15,13,12,2,3,10,0,1,9,14,4,0,15,2,3,10,5,3,8,11,3,11,9,0,12,14,4,7,9,4,11,11,8,3,14,7,14,13,1,6,9,6,0,14,10,11,15,10,3,13,12,10,1,3,15,3,3,7,7,6,11,2,15,7,9,11,14,14,5,13,14,7,12,3,11,6,10,9,0,1,3,0,9,10,2,12,6,2,10,7,11,5,1,8,5,5,0,3,13,5,3,13,2,7,9,1,10,4,7,14,12,10,3,13,6,15,0,6,5,3,6,1,14,7,8,1,2,9,8,5,6,1,7,10,3,15,4,3,2,14,3,5,13,6,9,4,6,3,2,3,1,3,5,10,2,6,4,4,7,1,8,13,14,10,13,14,0,13,9,11,4,7,11,11,3,5,12,8,2,3,6,0,15,11,12,6,5,14,13,2,6,2,10,13,14,9,10,10,5,11,14,5,9,4,13,11,5,2,2,8,6,5,4,8,7,12,1,3,10,14,15,12,14,11,14,1,8,4,13,9,1,10,0,9,1,4,14,15,9,14,4,12,14,8,4,2,6,10,5,13,3,3,5,15,0,10,5,5,14,14,15,9,1,0,3,15,15,11,2,8,4,6,2,1,12,2,1,1,14,11,0,14,3,4,14,1,4,10,13,2,5,1,2,12,9,0,8,0,0,0,15,7,11,13,2,3,9,0,0,3,6,6,6,11,13,15,9,9,8,12,6,12,13,6,5,14,6,5,5,12,6,7,6,8,13,4,3,4,13,6,5,9,15,12,6,0,9,1,10,0,2,10,14,4,12,4,2,4,9,3,2,7,3,12,0,2,8,12,15,11,8,15,1,0,14,7,2,6,12,15,9,0,3,6,4,9,0,3,13,12,2,4,10", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"10\", \"7\", \"11\", \"5\"], \"clip_start\": 206.0, \"clip_end\": 211.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,9,11,9,4,1,9,9,14,6,6,8,14,3,9,9,7,11,5,15,9,8,0,9,11,7,9,4,8,3,12,6,10,5,6,9,7,1,8,2,9,3,4,3,6,11,7,14,13,8,6,13,8,4,10,10,7,9,1,11,4,7,4,6,10,0,12,7,9,7,9,8,3,14,6,10,10,13,14,13,4,8,8,3,1,15,2,10,2,12,3,3,3,2,13,2,9,10,10,10,6,10,14,9,1,8,2,12,0,14,2,12,2,15,3,11,1,6,15,13,12,2,3,10,0,1,9,14,4,0,15,2,3,10,5,3,8,11,3,11,9,0,12,14,4,7,9,4,11,11,8,3,14,7,14,13,1,6,9,6,0,14,10,11,15,10,3,13,12,10,1,3,15,3,3,7,7,6,11,2,15,7,9,11,14,14,5,13,14,7,12,3,11,6,10,9,0,1,3,0,9,10,2,12,6,2,10,7,11,5,1,8,5,5,0,3,13,5,3,13,2,7,9,1,10,4,7,14,12,10,3,13,6,15,0,6,5,3,6,1,14,7,8,1,2,9,8,5,6,1,7,10,3,15,4,3,2,14,3,5,13,6,9,4,6,3,2,3,1,3,5,10,2,6,4,4,7,1,8,13,14,10,13,14,0,13,9,11,4,7,11,11,3,5,12,8,2,3,6,0,15,11,12,6,5,14,13,2,6,2,10,13,14,9,10,10,5,11,14,5,9,4,13,11,5,2,2,8,6,5,4,8,7,12,1,3,10,14,15,12,14,11,14,1,8,4,13,9,1,10,0,9,1,4,14,15,9,14,4,12,14,8,4,2,6,10,5,13,3,3,5,15,0,10,5,5,14,14,15,9,1,0,3,15,15,11,2,8,4,6,2,1,12,2,1,1,14,11,0,14,3,4,14,1,4,10,13,2,5,1,2,12,9,0,8,0,0,0,15,7,11,13,2,3,9,0,0,3,6,6,6,11,13,15,9,9,8,12,6,12,13,6,5,14,6,5,5,12,6,7,6,8,13,4,3,4,13,6,5,9,15,12,6,0,9,1,10,0,2,10,14,4,12,4,2,4,9,3,2,7,3,12,0,2,8,12,15,11,8,15,1,0,14,7,2,6,12,15,9,0,3,6,4,9,0,3,13,12,2,4,10", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"1\", \"2\", \"12\", \"9\", \"0\"], \"clip_start\": 409.0, \"clip_end\": 415.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q4_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,9,11,9,4,1,9,9,14,6,6,8,14,3,9,9,7,11,5,15,9,8,0,9,11,7,9,4,8,3,12,6,10,5,6,9,7,1,8,2,9,3,4,3,6,11,7,14,13,8,6,13,8,4,10,10,7,9,1,11,4,7,4,6,10,0,12,7,9,7,9,8,3,14,6,10,10,13,14,13,4,8,8,3,1,15,2,10,2,12,3,3,3,2,13,2,9,10,10,10,6,10,14,9,1,8,2,12,0,14,2,12,2,15,3,11,1,6,15,13,12,2,3,10,0,1,9,14,4,0,15,2,3,10,5,3,8,11,3,11,9,0,12,14,4,7,9,4,11,11,8,3,14,7,14,13,1,6,9,6,0,14,10,11,15,10,3,13,12,10,1,3,15,3,3,7,7,6,11,2,15,7,9,11,14,14,5,13,14,7,12,3,11,6,10,9,0,1,3,0,9,10,2,12,6,2,10,7,11,5,1,8,5,5,0,3,13,5,3,13,2,7,9,1,10,4,7,14,12,10,3,13,6,15,0,6,5,3,6,1,14,7,8,1,2,9,8,5,6,1,7,10,3,15,4,3,2,14,3,5,13,6,9,4,6,3,2,3,1,3,5,10,2,6,4,4,7,1,8,13,14,10,13,14,0,13,9,11,4,7,11,11,3,5,12,8,2,3,6,0,15,11,12,6,5,14,13,2,6,2,10,13,14,9,10,10,5,11,14,5,9,4,13,11,5,2,2,8,6,5,4,8,7,12,1,3,10,14,15,12,14,11,14,1,8,4,13,9,1,10,0,9,1,4,14,15,9,14,4,12,14,8,4,2,6,10,5,13,3,3,5,15,0,10,5,5,14,14,15,9,1,0,3,15,15,11,2,8,4,6,2,1,12,2,1,1,14,11,0,14,3,4,14,1,4,10,13,2,5,1,2,12,9,0,8,0,0,0,15,7,11,13,2,3,9,0,0,3,6,6,6,11,13,15,9,9,8,12,6,12,13,6,5,14,6,5,5,12,6,7,6,8,13,4,3,4,13,6,5,9,15,12,6,0,9,1,10,0,2,10,14,4,12,4,2,4,9,3,2,7,3,12,0,2,8,12,15,11,8,15,1,0,14,7,2,6,12,15,9,0,3,6,4,9,0,3,13,12,2,4,10", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"7\", \"15\", \"10\", \"2\", \"11\"], \"clip_start\": 418.0, \"clip_end\": 424.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q5_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,9,11,9,4,1,9,9,14,6,6,8,14,3,9,9,7,11,5,15,9,8,0,9,11,7,9,4,8,3,12,6,10,5,6,9,7,1,8,2,9,3,4,3,6,11,7,14,13,8,6,13,8,4,10,10,7,9,1,11,4,7,4,6,10,0,12,7,9,7,9,8,3,14,6,10,10,13,14,13,4,8,8,3,1,15,2,10,2,12,3,3,3,2,13,2,9,10,10,10,6,10,14,9,1,8,2,12,0,14,2,12,2,15,3,11,1,6,15,13,12,2,3,10,0,1,9,14,4,0,15,2,3,10,5,3,8,11,3,11,9,0,12,14,4,7,9,4,11,11,8,3,14,7,14,13,1,6,9,6,0,14,10,11,15,10,3,13,12,10,1,3,15,3,3,7,7,6,11,2,15,7,9,11,14,14,5,13,14,7,12,3,11,6,10,9,0,1,3,0,9,10,2,12,6,2,10,7,11,5,1,8,5,5,0,3,13,5,3,13,2,7,9,1,10,4,7,14,12,10,3,13,6,15,0,6,5,3,6,1,14,7,8,1,2,9,8,5,6,1,7,10,3,15,4,3,2,14,3,5,13,6,9,4,6,3,2,3,1,3,5,10,2,6,4,4,7,1,8,13,14,10,13,14,0,13,9,11,4,7,11,11,3,5,12,8,2,3,6,0,15,11,12,6,5,14,13,2,6,2,10,13,14,9,10,10,5,11,14,5,9,4,13,11,5,2,2,8,6,5,4,8,7,12,1,3,10,14,15,12,14,11,14,1,8,4,13,9,1,10,0,9,1,4,14,15,9,14,4,12,14,8,4,2,6,10,5,13,3,3,5,15,0,10,5,5,14,14,15,9,1,0,3,15,15,11,2,8,4,6,2,1,12,2,1,1,14,11,0,14,3,4,14,1,4,10,13,2,5,1,2,12,9,0,8,0,0,0,15,7,11,13,2,3,9,0,0,3,6,6,6,11,13,15,9,9,8,12,6,12,13,6,5,14,6,5,5,12,6,7,6,8,13,4,3,4,13,6,5,9,15,12,6,0,9,1,10,0,2,10,14,4,12,4,2,4,9,3,2,7,3,12,0,2,8,12,15,11,8,15,1,0,14,7,2,6,12,15,9,0,3,6,4,9,0,3,13,12,2,4,10", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"13\", \"2\", \"3\", \"9\", \"0\"], \"clip_start\": 421.0, \"clip_end\": 427.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q6_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,9,11,9,4,1,9,9,14,6,6,8,14,3,9,9,7,11,5,15,9,8,0,9,11,7,9,4,8,3,12,6,10,5,6,9,7,1,8,2,9,3,4,3,6,11,7,14,13,8,6,13,8,4,10,10,7,9,1,11,4,7,4,6,10,0,12,7,9,7,9,8,3,14,6,10,10,13,14,13,4,8,8,3,1,15,2,10,2,12,3,3,3,2,13,2,9,10,10,10,6,10,14,9,1,8,2,12,0,14,2,12,2,15,3,11,1,6,15,13,12,2,3,10,0,1,9,14,4,0,15,2,3,10,5,3,8,11,3,11,9,0,12,14,4,7,9,4,11,11,8,3,14,7,14,13,1,6,9,6,0,14,10,11,15,10,3,13,12,10,1,3,15,3,3,7,7,6,11,2,15,7,9,11,14,14,5,13,14,7,12,3,11,6,10,9,0,1,3,0,9,10,2,12,6,2,10,7,11,5,1,8,5,5,0,3,13,5,3,13,2,7,9,1,10,4,7,14,12,10,3,13,6,15,0,6,5,3,6,1,14,7,8,1,2,9,8,5,6,1,7,10,3,15,4,3,2,14,3,5,13,6,9,4,6,3,2,3,1,3,5,10,2,6,4,4,7,1,8,13,14,10,13,14,0,13,9,11,4,7,11,11,3,5,12,8,2,3,6,0,15,11,12,6,5,14,13,2,6,2,10,13,14,9,10,10,5,11,14,5,9,4,13,11,5,2,2,8,6,5,4,8,7,12,1,3,10,14,15,12,14,11,14,1,8,4,13,9,1,10,0,9,1,4,14,15,9,14,4,12,14,8,4,2,6,10,5,13,3,3,5,15,0,10,5,5,14,14,15,9,1,0,3,15,15,11,2,8,4,6,2,1,12,2,1,1,14,11,0,14,3,4,14,1,4,10,13,2,5,1,2,12,9,0,8,0,0,0,15,7,11,13,2,3,9,0,0,3,6,6,6,11,13,15,9,9,8,12,6,12,13,6,5,14,6,5,5,12,6,7,6,8,13,4,3,4,13,6,5,9,15,12,6,0,9,1,10,0,2,10,14,4,12,4,2,4,9,3,2,7,3,12,0,2,8,12,15,11,8,15,1,0,14,7,2,6,12,15,9,0,3,6,4,9,0,3,13,12,2,4,10", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"6\", \"15\", \"7\"], \"clip_start\": 158.0, \"clip_end\": 162.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q7_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,9,11,9,4,1,9,9,14,6,6,8,14,3,9,9,7,11,5,15,9,8,0,9,11,7,9,4,8,3,12,6,10,5,6,9,7,1,8,2,9,3,4,3,6,11,7,14,13,8,6,13,8,4,10,10,7,9,1,11,4,7,4,6,10,0,12,7,9,7,9,8,3,14,6,10,10,13,14,13,4,8,8,3,1,15,2,10,2,12,3,3,3,2,13,2,9,10,10,10,6,10,14,9,1,8,2,12,0,14,2,12,2,15,3,11,1,6,15,13,12,2,3,10,0,1,9,14,4,0,15,2,3,10,5,3,8,11,3,11,9,0,12,14,4,7,9,4,11,11,8,3,14,7,14,13,1,6,9,6,0,14,10,11,15,10,3,13,12,10,1,3,15,3,3,7,7,6,11,2,15,7,9,11,14,14,5,13,14,7,12,3,11,6,10,9,0,1,3,0,9,10,2,12,6,2,10,7,11,5,1,8,5,5,0,3,13,5,3,13,2,7,9,1,10,4,7,14,12,10,3,13,6,15,0,6,5,3,6,1,14,7,8,1,2,9,8,5,6,1,7,10,3,15,4,3,2,14,3,5,13,6,9,4,6,3,2,3,1,3,5,10,2,6,4,4,7,1,8,13,14,10,13,14,0,13,9,11,4,7,11,11,3,5,12,8,2,3,6,0,15,11,12,6,5,14,13,2,6,2,10,13,14,9,10,10,5,11,14,5,9,4,13,11,5,2,2,8,6,5,4,8,7,12,1,3,10,14,15,12,14,11,14,1,8,4,13,9,1,10,0,9,1,4,14,15,9,14,4,12,14,8,4,2,6,10,5,13,3,3,5,15,0,10,5,5,14,14,15,9,1,0,3,15,15,11,2,8,4,6,2,1,12,2,1,1,14,11,0,14,3,4,14,1,4,10,13,2,5,1,2,12,9,0,8,0,0,0,15,7,11,13,2,3,9,0,0,3,6,6,6,11,13,15,9,9,8,12,6,12,13,6,5,14,6,5,5,12,6,7,6,8,13,4,3,4,13,6,5,9,15,12,6,0,9,1,10,0,2,10,14,4,12,4,2,4,9,3,2,7,3,12,0,2,8,12,15,11,8,15,1,0,14,7,2,6,12,15,9,0,3,6,4,9,0,3,13,12,2,4,10", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"10\", \"7\", \"9\", \"1\"], \"clip_start\": 55.0, \"clip_end\": 60.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q8_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,9,11,9,4,1,9,9,14,6,6,8,14,3,9,9,7,11,5,15,9,8,0,9,11,7,9,4,8,3,12,6,10,5,6,9,7,1,8,2,9,3,4,3,6,11,7,14,13,8,6,13,8,4,10,10,7,9,1,11,4,7,4,6,10,0,12,7,9,7,9,8,3,14,6,10,10,13,14,13,4,8,8,3,1,15,2,10,2,12,3,3,3,2,13,2,9,10,10,10,6,10,14,9,1,8,2,12,0,14,2,12,2,15,3,11,1,6,15,13,12,2,3,10,0,1,9,14,4,0,15,2,3,10,5,3,8,11,3,11,9,0,12,14,4,7,9,4,11,11,8,3,14,7,14,13,1,6,9,6,0,14,10,11,15,10,3,13,12,10,1,3,15,3,3,7,7,6,11,2,15,7,9,11,14,14,5,13,14,7,12,3,11,6,10,9,0,1,3,0,9,10,2,12,6,2,10,7,11,5,1,8,5,5,0,3,13,5,3,13,2,7,9,1,10,4,7,14,12,10,3,13,6,15,0,6,5,3,6,1,14,7,8,1,2,9,8,5,6,1,7,10,3,15,4,3,2,14,3,5,13,6,9,4,6,3,2,3,1,3,5,10,2,6,4,4,7,1,8,13,14,10,13,14,0,13,9,11,4,7,11,11,3,5,12,8,2,3,6,0,15,11,12,6,5,14,13,2,6,2,10,13,14,9,10,10,5,11,14,5,9,4,13,11,5,2,2,8,6,5,4,8,7,12,1,3,10,14,15,12,14,11,14,1,8,4,13,9,1,10,0,9,1,4,14,15,9,14,4,12,14,8,4,2,6,10,5,13,3,3,5,15,0,10,5,5,14,14,15,9,1,0,3,15,15,11,2,8,4,6,2,1,12,2,1,1,14,11,0,14,3,4,14,1,4,10,13,2,5,1,2,12,9,0,8,0,0,0,15,7,11,13,2,3,9,0,0,3,6,6,6,11,13,15,9,9,8,12,6,12,13,6,5,14,6,5,5,12,6,7,6,8,13,4,3,4,13,6,5,9,15,12,6,0,9,1,10,0,2,10,14,4,12,4,2,4,9,3,2,7,3,12,0,2,8,12,15,11,8,15,1,0,14,7,2,6,12,15,9,0,3,6,4,9,0,3,13,12,2,4,10", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"14\", \"5\", \"9\", \"4\"], \"clip_start\": 318.0, \"clip_end\": 323.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,9,11,9,4,1,9,9,14,6,6,8,14,3,9,9,7,11,5,15,9,8,0,9,11,7,9,4,8,3,12,6,10,5,6,9,7,1,8,2,9,3,4,3,6,11,7,14,13,8,6,13,8,4,10,10,7,9,1,11,4,7,4,6,10,0,12,7,9,7,9,8,3,14,6,10,10,13,14,13,4,8,8,3,1,15,2,10,2,12,3,3,3,2,13,2,9,10,10,10,6,10,14,9,1,8,2,12,0,14,2,12,2,15,3,11,1,6,15,13,12,2,3,10,0,1,9,14,4,0,15,2,3,10,5,3,8,11,3,11,9,0,12,14,4,7,9,4,11,11,8,3,14,7,14,13,1,6,9,6,0,14,10,11,15,10,3,13,12,10,1,3,15,3,3,7,7,6,11,2,15,7,9,11,14,14,5,13,14,7,12,3,11,6,10,9,0,1,3,0,9,10,2,12,6,2,10,7,11,5,1,8,5,5,0,3,13,5,3,13,2,7,9,1,10,4,7,14,12,10,3,13,6,15,0,6,5,3,6,1,14,7,8,1,2,9,8,5,6,1,7,10,3,15,4,3,2,14,3,5,13,6,9,4,6,3,2,3,1,3,5,10,2,6,4,4,7,1,8,13,14,10,13,14,0,13,9,11,4,7,11,11,3,5,12,8,2,3,6,0,15,11,12,6,5,14,13,2,6,2,10,13,14,9,10,10,5,11,14,5,9,4,13,11,5,2,2,8,6,5,4,8,7,12,1,3,10,14,15,12,14,11,14,1,8,4,13,9,1,10,0,9,1,4,14,15,9,14,4,12,14,8,4,2,6,10,5,13,3,3,5,15,0,10,5,5,14,14,15,9,1,0,3,15,15,11,2,8,4,6,2,1,12,2,1,1,14,11,0,14,3,4,14,1,4,10,13,2,5,1,2,12,9,0,8,0,0,0,15,7,11,13,2,3,9,0,0,3,6,6,6,11,13,15,9,9,8,12,6,12,13,6,5,14,6,5,5,12,6,7,6,8,13,4,3,4,13,6,5,9,15,12,6,0,9,1,10,0,2,10,14,4,12,4,2,4,9,3,2,7,3,12,0,2,8,12,15,11,8,15,1,0,14,7,2,6,12,15,9,0,3,6,4,9,0,3,13,12,2,4,10", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"10\", \"14\", \"8\", \"6\"], \"clip_start\": 188.0, \"clip_end\": 193.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q10_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,9,11,9,4,1,9,9,14,6,6,8,14,3,9,9,7,11,5,15,9,8,0,9,11,7,9,4,8,3,12,6,10,5,6,9,7,1,8,2,9,3,4,3,6,11,7,14,13,8,6,13,8,4,10,10,7,9,1,11,4,7,4,6,10,0,12,7,9,7,9,8,3,14,6,10,10,13,14,13,4,8,8,3,1,15,2,10,2,12,3,3,3,2,13,2,9,10,10,10,6,10,14,9,1,8,2,12,0,14,2,12,2,15,3,11,1,6,15,13,12,2,3,10,0,1,9,14,4,0,15,2,3,10,5,3,8,11,3,11,9,0,12,14,4,7,9,4,11,11,8,3,14,7,14,13,1,6,9,6,0,14,10,11,15,10,3,13,12,10,1,3,15,3,3,7,7,6,11,2,15,7,9,11,14,14,5,13,14,7,12,3,11,6,10,9,0,1,3,0,9,10,2,12,6,2,10,7,11,5,1,8,5,5,0,3,13,5,3,13,2,7,9,1,10,4,7,14,12,10,3,13,6,15,0,6,5,3,6,1,14,7,8,1,2,9,8,5,6,1,7,10,3,15,4,3,2,14,3,5,13,6,9,4,6,3,2,3,1,3,5,10,2,6,4,4,7,1,8,13,14,10,13,14,0,13,9,11,4,7,11,11,3,5,12,8,2,3,6,0,15,11,12,6,5,14,13,2,6,2,10,13,14,9,10,10,5,11,14,5,9,4,13,11,5,2,2,8,6,5,4,8,7,12,1,3,10,14,15,12,14,11,14,1,8,4,13,9,1,10,0,9,1,4,14,15,9,14,4,12,14,8,4,2,6,10,5,13,3,3,5,15,0,10,5,5,14,14,15,9,1,0,3,15,15,11,2,8,4,6,2,1,12,2,1,1,14,11,0,14,3,4,14,1,4,10,13,2,5,1,2,12,9,0,8,0,0,0,15,7,11,13,2,3,9,0,0,3,6,6,6,11,13,15,9,9,8,12,6,12,13,6,5,14,6,5,5,12,6,7,6,8,13,4,3,4,13,6,5,9,15,12,6,0,9,1,10,0,2,10,14,4,12,4,2,4,9,3,2,7,3,12,0,2,8,12,15,11,8,15,1,0,14,7,2,6,12,15,9,0,3,6,4,9,0,3,13,12,2,4,10", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 16, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"10\", \"6\", \"10\"], \"clip_start\": 99.0, \"clip_end\": 103.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,9,11,9,4,1,9,9,14,6,6,8,14,3,9,9,7,11,5,15,9,8,0,9,11,7,9,4,8,3,12,6,10,5,6,9,7,1,8,2,9,3,4,3,6,11,7,14,13,8,6,13,8,4,10,10,7,9,1,11,4,7,4,6,10,0,12,7,9,7,9,8,3,14,6,10,10,13,14,13,4,8,8,3,1,15,2,10,2,12,3,3,3,2,13,2,9,10,10,10,6,10,14,9,1,8,2,12,0,14,2,12,2,15,3,11,1,6,15,13,12,2,3,10,0,1,9,14,4,0,15,2,3,10,5,3,8,11,3,11,9,0,12,14,4,7,9,4,11,11,8,3,14,7,14,13,1,6,9,6,0,14,10,11,15,10,3,13,12,10,1,3,15,3,3,7,7,6,11,2,15,7,9,11,14,14,5,13,14,7,12,3,11,6,10,9,0,1,3,0,9,10,2,12,6,2,10,7,11,5,1,8,5,5,0,3,13,5,3,13,2,7,9,1,10,4,7,14,12,10,3,13,6,15,0,6,5,3,6,1,14,7,8,1,2,9,8,5,6,1,7,10,3,15,4,3,2,14,3,5,13,6,9,4,6,3,2,3,1,3,5,10,2,6,4,4,7,1,8,13,14,10,13,14,0,13,9,11,4,7,11,11,3,5,12,8,2,3,6,0,15,11,12,6,5,14,13,2,6,2,10,13,14,9,10,10,5,11,14,5,9,4,13,11,5,2,2,8,6,5,4,8,7,12,1,3,10,14,15,12,14,11,14,1,8,4,13,9,1,10,0,9,1,4,14,15,9,14,4,12,14,8,4,2,6,10,5,13,3,3,5,15,0,10,5,5,14,14,15,9,1,0,3,15,15,11,2,8,4,6,2,1,12,2,1,1,14,11,0,14,3,4,14,1,4,10,13,2,5,1,2,12,9,0,8,0,0,0,15,7,11,13,2,3,9,0,0,3,6,6,6,11,13,15,9,9,8,12,6,12,13,6,5,14,6,5,5,12,6,7,6,8,13,4,3,4,13,6,5,9,15,12,6,0,9,1,10,0,2,10,14,4,12,4,2,4,9,3,2,7,3,12,0,2,8,12,15,11,8,15,1,0,14,7,2,6,12,15,9,0,3,6,4,9,0,3,13,12,2,4,10", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"4\", \"7\", \"9\"], \"clip_start\": 143.0, \"clip_end\": 148.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,9,11,9,4,1,9,9,14,6,6,8,14,3,9,9,7,11,5,15,9,8,0,9,11,7,9,4,8,3,12,6,10,5,6,9,7,1,8,2,9,3,4,3,6,11,7,14,13,8,6,13,8,4,10,10,7,9,1,11,4,7,4,6,10,0,12,7,9,7,9,8,3,14,6,10,10,13,14,13,4,8,8,3,1,15,2,10,2,12,3,3,3,2,13,2,9,10,10,10,6,10,14,9,1,8,2,12,0,14,2,12,2,15,3,11,1,6,15,13,12,2,3,10,0,1,9,14,4,0,15,2,3,10,5,3,8,11,3,11,9,0,12,14,4,7,9,4,11,11,8,3,14,7,14,13,1,6,9,6,0,14,10,11,15,10,3,13,12,10,1,3,15,3,3,7,7,6,11,2,15,7,9,11,14,14,5,13,14,7,12,3,11,6,10,9,0,1,3,0,9,10,2,12,6,2,10,7,11,5,1,8,5,5,0,3,13,5,3,13,2,7,9,1,10,4,7,14,12,10,3,13,6,15,0,6,5,3,6,1,14,7,8,1,2,9,8,5,6,1,7,10,3,15,4,3,2,14,3,5,13,6,9,4,6,3,2,3,1,3,5,10,2,6,4,4,7,1,8,13,14,10,13,14,0,13,9,11,4,7,11,11,3,5,12,8,2,3,6,0,15,11,12,6,5,14,13,2,6,2,10,13,14,9,10,10,5,11,14,5,9,4,13,11,5,2,2,8,6,5,4,8,7,12,1,3,10,14,15,12,14,11,14,1,8,4,13,9,1,10,0,9,1,4,14,15,9,14,4,12,14,8,4,2,6,10,5,13,3,3,5,15,0,10,5,5,14,14,15,9,1,0,3,15,15,11,2,8,4,6,2,1,12,2,1,1,14,11,0,14,3,4,14,1,4,10,13,2,5,1,2,12,9,0,8,0,0,0,15,7,11,13,2,3,9,0,0,3,6,6,6,11,13,15,9,9,8,12,6,12,13,6,5,14,6,5,5,12,6,7,6,8,13,4,3,4,13,6,5,9,15,12,6,0,9,1,10,0,2,10,14,4,12,4,2,4,9,3,2,7,3,12,0,2,8,12,15,11,8,15,1,0,14,7,2,6,12,15,9,0,3,6,4,9,0,3,13,12,2,4,10", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"4\", \"12\", \"14\", \"8\"], \"clip_start\": 358.0, \"clip_end\": 363.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q13_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,9,11,9,4,1,9,9,14,6,6,8,14,3,9,9,7,11,5,15,9,8,0,9,11,7,9,4,8,3,12,6,10,5,6,9,7,1,8,2,9,3,4,3,6,11,7,14,13,8,6,13,8,4,10,10,7,9,1,11,4,7,4,6,10,0,12,7,9,7,9,8,3,14,6,10,10,13,14,13,4,8,8,3,1,15,2,10,2,12,3,3,3,2,13,2,9,10,10,10,6,10,14,9,1,8,2,12,0,14,2,12,2,15,3,11,1,6,15,13,12,2,3,10,0,1,9,14,4,0,15,2,3,10,5,3,8,11,3,11,9,0,12,14,4,7,9,4,11,11,8,3,14,7,14,13,1,6,9,6,0,14,10,11,15,10,3,13,12,10,1,3,15,3,3,7,7,6,11,2,15,7,9,11,14,14,5,13,14,7,12,3,11,6,10,9,0,1,3,0,9,10,2,12,6,2,10,7,11,5,1,8,5,5,0,3,13,5,3,13,2,7,9,1,10,4,7,14,12,10,3,13,6,15,0,6,5,3,6,1,14,7,8,1,2,9,8,5,6,1,7,10,3,15,4,3,2,14,3,5,13,6,9,4,6,3,2,3,1,3,5,10,2,6,4,4,7,1,8,13,14,10,13,14,0,13,9,11,4,7,11,11,3,5,12,8,2,3,6,0,15,11,12,6,5,14,13,2,6,2,10,13,14,9,10,10,5,11,14,5,9,4,13,11,5,2,2,8,6,5,4,8,7,12,1,3,10,14,15,12,14,11,14,1,8,4,13,9,1,10,0,9,1,4,14,15,9,14,4,12,14,8,4,2,6,10,5,13,3,3,5,15,0,10,5,5,14,14,15,9,1,0,3,15,15,11,2,8,4,6,2,1,12,2,1,1,14,11,0,14,3,4,14,1,4,10,13,2,5,1,2,12,9,0,8,0,0,0,15,7,11,13,2,3,9,0,0,3,6,6,6,11,13,15,9,9,8,12,6,12,13,6,5,14,6,5,5,12,6,7,6,8,13,4,3,4,13,6,5,9,15,12,6,0,9,1,10,0,2,10,14,4,12,4,2,4,9,3,2,7,3,12,0,2,8,12,15,11,8,15,1,0,14,7,2,6,12,15,9,0,3,6,4,9,0,3,13,12,2,4,10", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"13\", \"4\", \"8\", \"15\"], \"clip_start\": 279.0, \"clip_end\": 285.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q14_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,9,11,9,4,1,9,9,14,6,6,8,14,3,9,9,7,11,5,15,9,8,0,9,11,7,9,4,8,3,12,6,10,5,6,9,7,1,8,2,9,3,4,3,6,11,7,14,13,8,6,13,8,4,10,10,7,9,1,11,4,7,4,6,10,0,12,7,9,7,9,8,3,14,6,10,10,13,14,13,4,8,8,3,1,15,2,10,2,12,3,3,3,2,13,2,9,10,10,10,6,10,14,9,1,8,2,12,0,14,2,12,2,15,3,11,1,6,15,13,12,2,3,10,0,1,9,14,4,0,15,2,3,10,5,3,8,11,3,11,9,0,12,14,4,7,9,4,11,11,8,3,14,7,14,13,1,6,9,6,0,14,10,11,15,10,3,13,12,10,1,3,15,3,3,7,7,6,11,2,15,7,9,11,14,14,5,13,14,7,12,3,11,6,10,9,0,1,3,0,9,10,2,12,6,2,10,7,11,5,1,8,5,5,0,3,13,5,3,13,2,7,9,1,10,4,7,14,12,10,3,13,6,15,0,6,5,3,6,1,14,7,8,1,2,9,8,5,6,1,7,10,3,15,4,3,2,14,3,5,13,6,9,4,6,3,2,3,1,3,5,10,2,6,4,4,7,1,8,13,14,10,13,14,0,13,9,11,4,7,11,11,3,5,12,8,2,3,6,0,15,11,12,6,5,14,13,2,6,2,10,13,14,9,10,10,5,11,14,5,9,4,13,11,5,2,2,8,6,5,4,8,7,12,1,3,10,14,15,12,14,11,14,1,8,4,13,9,1,10,0,9,1,4,14,15,9,14,4,12,14,8,4,2,6,10,5,13,3,3,5,15,0,10,5,5,14,14,15,9,1,0,3,15,15,11,2,8,4,6,2,1,12,2,1,1,14,11,0,14,3,4,14,1,4,10,13,2,5,1,2,12,9,0,8,0,0,0,15,7,11,13,2,3,9,0,0,3,6,6,6,11,13,15,9,9,8,12,6,12,13,6,5,14,6,5,5,12,6,7,6,8,13,4,3,4,13,6,5,9,15,12,6,0,9,1,10,0,2,10,14,4,12,4,2,4,9,3,2,7,3,12,0,2,8,12,15,11,8,15,1,0,14,7,2,6,12,15,9,0,3,6,4,9,0,3,13,12,2,4,10", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 16, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"8\", \"2\"], \"clip_start\": 295.0, \"clip_end\": 298.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q15_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4", "dataset_source": "synthetic", "input_sequence": "6,6,9,11,9,4,1,9,9,14,6,6,8,14,3,9,9,7,11,5,15,9,8,0,9,11,7,9,4,8,3,12,6,10,5,6,9,7,1,8,2,9,3,4,3,6,11,7,14,13,8,6,13,8,4,10,10,7,9,1,11,4,7,4,6,10,0,12,7,9,7,9,8,3,14,6,10,10,13,14,13,4,8,8,3,1,15,2,10,2,12,3,3,3,2,13,2,9,10,10,10,6,10,14,9,1,8,2,12,0,14,2,12,2,15,3,11,1,6,15,13,12,2,3,10,0,1,9,14,4,0,15,2,3,10,5,3,8,11,3,11,9,0,12,14,4,7,9,4,11,11,8,3,14,7,14,13,1,6,9,6,0,14,10,11,15,10,3,13,12,10,1,3,15,3,3,7,7,6,11,2,15,7,9,11,14,14,5,13,14,7,12,3,11,6,10,9,0,1,3,0,9,10,2,12,6,2,10,7,11,5,1,8,5,5,0,3,13,5,3,13,2,7,9,1,10,4,7,14,12,10,3,13,6,15,0,6,5,3,6,1,14,7,8,1,2,9,8,5,6,1,7,10,3,15,4,3,2,14,3,5,13,6,9,4,6,3,2,3,1,3,5,10,2,6,4,4,7,1,8,13,14,10,13,14,0,13,9,11,4,7,11,11,3,5,12,8,2,3,6,0,15,11,12,6,5,14,13,2,6,2,10,13,14,9,10,10,5,11,14,5,9,4,13,11,5,2,2,8,6,5,4,8,7,12,1,3,10,14,15,12,14,11,14,1,8,4,13,9,1,10,0,9,1,4,14,15,9,14,4,12,14,8,4,2,6,10,5,13,3,3,5,15,0,10,5,5,14,14,15,9,1,0,3,15,15,11,2,8,4,6,2,1,12,2,1,1,14,11,0,14,3,4,14,1,4,10,13,2,5,1,2,12,9,0,8,0,0,0,15,7,11,13,2,3,9,0,0,3,6,6,6,11,13,15,9,9,8,12,6,12,13,6,5,14,6,5,5,12,6,7,6,8,13,4,3,4,13,6,5,9,15,12,6,0,9,1,10,0,2,10,14,4,12,4,2,4,9,3,2,7,3,12,0,2,8,12,15,11,8,15,1,0,14,7,2,6,12,15,9,0,3,6,4,9,0,3,13,12,2,4,10", "source_class": null, "source_dataset": null, "video_id": "video_16_v0", "question_id": "video_16_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"4\", \"8\", \"0\"], \"clip_start\": 407.0, \"clip_end\": 411.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q0_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,13,13,13,1,14,11,11,7,4,0,11,0,15,6,10,5,2,12,9,6,11,12,6,0,13,12,13,15,14,13,3,11,15,4,4,12,12,8,1,8,0,2,15,8,0,13,4,10,2,10,5,3,15,15,13,8,3,3,3,14,2,0,11,6,3,8,13,8,8,15,2,4,12,11,11,5,11,1,7,14,6,3,11,10,12,1,4,13,13,12,10,0,5,1,7,8,9,15,14,6,10,5,11,1,10,13,1,14,8,0,13,13,2,15,13,7,0,0,2,4,3,10,8,6,3,2,6,13,5,15,9,11,11,12,11,12,13,5,6,4,3,15,6,9,15,13,13,11,13,12,5,9,15,2,8,0,1,12,4,7,13,5,9,6,0,7,3,4,10,9,6,5,9,15,2,6,4,5,9,0,5,5,10,15,9,4,9,5,9,7,6,14,7,8,13,13,12,4,3,3,3,10,12,4,2,15,0,15,6,1,11,11,5,15,12,6,3,7,4,7,8,12,12,12,8,9,13,8,13,2,4,4,2,6,4,7,8,15,7,7,1,1,3,10,12,1,9,0,8,11,6,0,1,12,10,5,3,1,14,4,14,13,8,10,1,14,6,4,10,11,5,11,4,1,14,0,7,11,14,7,4,8,0,7,12,2,3,4,5,14,15,5,12,0,13,5,2,5,5,5,5,8,14,9,11,15,6,5,15,5,12,15,1,3,8,0,15,0,4,11,7,14,10,1,4,1,11,3,1,10,9,4,9,4,3,10,13,8,1,1,2,8,14,6,8,15,0,15,5,4,0,14,11,4,0,8,8,0,3,13,11,15,3,7,5,6,3,15,10,3,13,15,12,8,1,14,4,5,6,13,2,2,14,7,6,0,15,8,7,5,1,13,11,12,4,10,2,11,8,12,11,15,2,2,8,1,4,8,0,8,10,7,4,1,12,5,13,12,12,2,10,7,14,2,6,15,7,1,4,12,6,3,13,4,0,5,0,12,10,15,0,13,11,1,9,13,3,7,0,14,9,2,1,4,3,7,5,5,1,7,12,12,4,6,0,12,7,8,12,6,8,6,0,10,8,3,6,11,15,1,11,1,14,7,1,1,7,11,12,6,0,10,14,4,4,3,6,2,6,5,8,3,13,5,5,10,3,6,13,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"8\", \"5\", \"14\"], \"clip_start\": 490.0, \"clip_end\": 495.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q1_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,13,13,13,1,14,11,11,7,4,0,11,0,15,6,10,5,2,12,9,6,11,12,6,0,13,12,13,15,14,13,3,11,15,4,4,12,12,8,1,8,0,2,15,8,0,13,4,10,2,10,5,3,15,15,13,8,3,3,3,14,2,0,11,6,3,8,13,8,8,15,2,4,12,11,11,5,11,1,7,14,6,3,11,10,12,1,4,13,13,12,10,0,5,1,7,8,9,15,14,6,10,5,11,1,10,13,1,14,8,0,13,13,2,15,13,7,0,0,2,4,3,10,8,6,3,2,6,13,5,15,9,11,11,12,11,12,13,5,6,4,3,15,6,9,15,13,13,11,13,12,5,9,15,2,8,0,1,12,4,7,13,5,9,6,0,7,3,4,10,9,6,5,9,15,2,6,4,5,9,0,5,5,10,15,9,4,9,5,9,7,6,14,7,8,13,13,12,4,3,3,3,10,12,4,2,15,0,15,6,1,11,11,5,15,12,6,3,7,4,7,8,12,12,12,8,9,13,8,13,2,4,4,2,6,4,7,8,15,7,7,1,1,3,10,12,1,9,0,8,11,6,0,1,12,10,5,3,1,14,4,14,13,8,10,1,14,6,4,10,11,5,11,4,1,14,0,7,11,14,7,4,8,0,7,12,2,3,4,5,14,15,5,12,0,13,5,2,5,5,5,5,8,14,9,11,15,6,5,15,5,12,15,1,3,8,0,15,0,4,11,7,14,10,1,4,1,11,3,1,10,9,4,9,4,3,10,13,8,1,1,2,8,14,6,8,15,0,15,5,4,0,14,11,4,0,8,8,0,3,13,11,15,3,7,5,6,3,15,10,3,13,15,12,8,1,14,4,5,6,13,2,2,14,7,6,0,15,8,7,5,1,13,11,12,4,10,2,11,8,12,11,15,2,2,8,1,4,8,0,8,10,7,4,1,12,5,13,12,12,2,10,7,14,2,6,15,7,1,4,12,6,3,13,4,0,5,0,12,10,15,0,13,11,1,9,13,3,7,0,14,9,2,1,4,3,7,5,5,1,7,12,12,4,6,0,12,7,8,12,6,8,6,0,10,8,3,6,11,15,1,11,1,14,7,1,1,7,11,12,6,0,10,14,4,4,3,6,2,6,5,8,3,13,5,5,10,3,6,13,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q1_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"0\", \"6\", \"1\", \"1\"], \"clip_start\": 201.0, \"clip_end\": 206.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q2_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,13,13,13,1,14,11,11,7,4,0,11,0,15,6,10,5,2,12,9,6,11,12,6,0,13,12,13,15,14,13,3,11,15,4,4,12,12,8,1,8,0,2,15,8,0,13,4,10,2,10,5,3,15,15,13,8,3,3,3,14,2,0,11,6,3,8,13,8,8,15,2,4,12,11,11,5,11,1,7,14,6,3,11,10,12,1,4,13,13,12,10,0,5,1,7,8,9,15,14,6,10,5,11,1,10,13,1,14,8,0,13,13,2,15,13,7,0,0,2,4,3,10,8,6,3,2,6,13,5,15,9,11,11,12,11,12,13,5,6,4,3,15,6,9,15,13,13,11,13,12,5,9,15,2,8,0,1,12,4,7,13,5,9,6,0,7,3,4,10,9,6,5,9,15,2,6,4,5,9,0,5,5,10,15,9,4,9,5,9,7,6,14,7,8,13,13,12,4,3,3,3,10,12,4,2,15,0,15,6,1,11,11,5,15,12,6,3,7,4,7,8,12,12,12,8,9,13,8,13,2,4,4,2,6,4,7,8,15,7,7,1,1,3,10,12,1,9,0,8,11,6,0,1,12,10,5,3,1,14,4,14,13,8,10,1,14,6,4,10,11,5,11,4,1,14,0,7,11,14,7,4,8,0,7,12,2,3,4,5,14,15,5,12,0,13,5,2,5,5,5,5,8,14,9,11,15,6,5,15,5,12,15,1,3,8,0,15,0,4,11,7,14,10,1,4,1,11,3,1,10,9,4,9,4,3,10,13,8,1,1,2,8,14,6,8,15,0,15,5,4,0,14,11,4,0,8,8,0,3,13,11,15,3,7,5,6,3,15,10,3,13,15,12,8,1,14,4,5,6,13,2,2,14,7,6,0,15,8,7,5,1,13,11,12,4,10,2,11,8,12,11,15,2,2,8,1,4,8,0,8,10,7,4,1,12,5,13,12,12,2,10,7,14,2,6,15,7,1,4,12,6,3,13,4,0,5,0,12,10,15,0,13,11,1,9,13,3,7,0,14,9,2,1,4,3,7,5,5,1,7,12,12,4,6,0,12,7,8,12,6,8,6,0,10,8,3,6,11,15,1,11,1,14,7,1,1,7,11,12,6,0,10,14,4,4,3,6,2,6,5,8,3,13,5,5,10,3,6,13,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"5\", \"12\", \"15\", \"1\"], \"clip_start\": 310.0, \"clip_end\": 315.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q3_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,13,13,13,1,14,11,11,7,4,0,11,0,15,6,10,5,2,12,9,6,11,12,6,0,13,12,13,15,14,13,3,11,15,4,4,12,12,8,1,8,0,2,15,8,0,13,4,10,2,10,5,3,15,15,13,8,3,3,3,14,2,0,11,6,3,8,13,8,8,15,2,4,12,11,11,5,11,1,7,14,6,3,11,10,12,1,4,13,13,12,10,0,5,1,7,8,9,15,14,6,10,5,11,1,10,13,1,14,8,0,13,13,2,15,13,7,0,0,2,4,3,10,8,6,3,2,6,13,5,15,9,11,11,12,11,12,13,5,6,4,3,15,6,9,15,13,13,11,13,12,5,9,15,2,8,0,1,12,4,7,13,5,9,6,0,7,3,4,10,9,6,5,9,15,2,6,4,5,9,0,5,5,10,15,9,4,9,5,9,7,6,14,7,8,13,13,12,4,3,3,3,10,12,4,2,15,0,15,6,1,11,11,5,15,12,6,3,7,4,7,8,12,12,12,8,9,13,8,13,2,4,4,2,6,4,7,8,15,7,7,1,1,3,10,12,1,9,0,8,11,6,0,1,12,10,5,3,1,14,4,14,13,8,10,1,14,6,4,10,11,5,11,4,1,14,0,7,11,14,7,4,8,0,7,12,2,3,4,5,14,15,5,12,0,13,5,2,5,5,5,5,8,14,9,11,15,6,5,15,5,12,15,1,3,8,0,15,0,4,11,7,14,10,1,4,1,11,3,1,10,9,4,9,4,3,10,13,8,1,1,2,8,14,6,8,15,0,15,5,4,0,14,11,4,0,8,8,0,3,13,11,15,3,7,5,6,3,15,10,3,13,15,12,8,1,14,4,5,6,13,2,2,14,7,6,0,15,8,7,5,1,13,11,12,4,10,2,11,8,12,11,15,2,2,8,1,4,8,0,8,10,7,4,1,12,5,13,12,12,2,10,7,14,2,6,15,7,1,4,12,6,3,13,4,0,5,0,12,10,15,0,13,11,1,9,13,3,7,0,14,9,2,1,4,3,7,5,5,1,7,12,12,4,6,0,12,7,8,12,6,8,6,0,10,8,3,6,11,15,1,11,1,14,7,1,1,7,11,12,6,0,10,14,4,4,3,6,2,6,5,8,3,13,5,5,10,3,6,13,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q3_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"3\", \"5\", \"13\"], \"clip_start\": 384.0, \"clip_end\": 388.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q4_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,13,13,13,1,14,11,11,7,4,0,11,0,15,6,10,5,2,12,9,6,11,12,6,0,13,12,13,15,14,13,3,11,15,4,4,12,12,8,1,8,0,2,15,8,0,13,4,10,2,10,5,3,15,15,13,8,3,3,3,14,2,0,11,6,3,8,13,8,8,15,2,4,12,11,11,5,11,1,7,14,6,3,11,10,12,1,4,13,13,12,10,0,5,1,7,8,9,15,14,6,10,5,11,1,10,13,1,14,8,0,13,13,2,15,13,7,0,0,2,4,3,10,8,6,3,2,6,13,5,15,9,11,11,12,11,12,13,5,6,4,3,15,6,9,15,13,13,11,13,12,5,9,15,2,8,0,1,12,4,7,13,5,9,6,0,7,3,4,10,9,6,5,9,15,2,6,4,5,9,0,5,5,10,15,9,4,9,5,9,7,6,14,7,8,13,13,12,4,3,3,3,10,12,4,2,15,0,15,6,1,11,11,5,15,12,6,3,7,4,7,8,12,12,12,8,9,13,8,13,2,4,4,2,6,4,7,8,15,7,7,1,1,3,10,12,1,9,0,8,11,6,0,1,12,10,5,3,1,14,4,14,13,8,10,1,14,6,4,10,11,5,11,4,1,14,0,7,11,14,7,4,8,0,7,12,2,3,4,5,14,15,5,12,0,13,5,2,5,5,5,5,8,14,9,11,15,6,5,15,5,12,15,1,3,8,0,15,0,4,11,7,14,10,1,4,1,11,3,1,10,9,4,9,4,3,10,13,8,1,1,2,8,14,6,8,15,0,15,5,4,0,14,11,4,0,8,8,0,3,13,11,15,3,7,5,6,3,15,10,3,13,15,12,8,1,14,4,5,6,13,2,2,14,7,6,0,15,8,7,5,1,13,11,12,4,10,2,11,8,12,11,15,2,2,8,1,4,8,0,8,10,7,4,1,12,5,13,12,12,2,10,7,14,2,6,15,7,1,4,12,6,3,13,4,0,5,0,12,10,15,0,13,11,1,9,13,3,7,0,14,9,2,1,4,3,7,5,5,1,7,12,12,4,6,0,12,7,8,12,6,8,6,0,10,8,3,6,11,15,1,11,1,14,7,1,1,7,11,12,6,0,10,14,4,4,3,6,2,6,5,8,3,13,5,5,10,3,6,13,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q4_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"15\", \"15\", \"6\"], \"clip_start\": 478.0, \"clip_end\": 483.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q5_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,13,13,13,1,14,11,11,7,4,0,11,0,15,6,10,5,2,12,9,6,11,12,6,0,13,12,13,15,14,13,3,11,15,4,4,12,12,8,1,8,0,2,15,8,0,13,4,10,2,10,5,3,15,15,13,8,3,3,3,14,2,0,11,6,3,8,13,8,8,15,2,4,12,11,11,5,11,1,7,14,6,3,11,10,12,1,4,13,13,12,10,0,5,1,7,8,9,15,14,6,10,5,11,1,10,13,1,14,8,0,13,13,2,15,13,7,0,0,2,4,3,10,8,6,3,2,6,13,5,15,9,11,11,12,11,12,13,5,6,4,3,15,6,9,15,13,13,11,13,12,5,9,15,2,8,0,1,12,4,7,13,5,9,6,0,7,3,4,10,9,6,5,9,15,2,6,4,5,9,0,5,5,10,15,9,4,9,5,9,7,6,14,7,8,13,13,12,4,3,3,3,10,12,4,2,15,0,15,6,1,11,11,5,15,12,6,3,7,4,7,8,12,12,12,8,9,13,8,13,2,4,4,2,6,4,7,8,15,7,7,1,1,3,10,12,1,9,0,8,11,6,0,1,12,10,5,3,1,14,4,14,13,8,10,1,14,6,4,10,11,5,11,4,1,14,0,7,11,14,7,4,8,0,7,12,2,3,4,5,14,15,5,12,0,13,5,2,5,5,5,5,8,14,9,11,15,6,5,15,5,12,15,1,3,8,0,15,0,4,11,7,14,10,1,4,1,11,3,1,10,9,4,9,4,3,10,13,8,1,1,2,8,14,6,8,15,0,15,5,4,0,14,11,4,0,8,8,0,3,13,11,15,3,7,5,6,3,15,10,3,13,15,12,8,1,14,4,5,6,13,2,2,14,7,6,0,15,8,7,5,1,13,11,12,4,10,2,11,8,12,11,15,2,2,8,1,4,8,0,8,10,7,4,1,12,5,13,12,12,2,10,7,14,2,6,15,7,1,4,12,6,3,13,4,0,5,0,12,10,15,0,13,11,1,9,13,3,7,0,14,9,2,1,4,3,7,5,5,1,7,12,12,4,6,0,12,7,8,12,6,8,6,0,10,8,3,6,11,15,1,11,1,14,7,1,1,7,11,12,6,0,10,14,4,4,3,6,2,6,5,8,3,13,5,5,10,3,6,13,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"14\"], \"clip_start\": 351.0, \"clip_end\": 354.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q6_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,13,13,13,1,14,11,11,7,4,0,11,0,15,6,10,5,2,12,9,6,11,12,6,0,13,12,13,15,14,13,3,11,15,4,4,12,12,8,1,8,0,2,15,8,0,13,4,10,2,10,5,3,15,15,13,8,3,3,3,14,2,0,11,6,3,8,13,8,8,15,2,4,12,11,11,5,11,1,7,14,6,3,11,10,12,1,4,13,13,12,10,0,5,1,7,8,9,15,14,6,10,5,11,1,10,13,1,14,8,0,13,13,2,15,13,7,0,0,2,4,3,10,8,6,3,2,6,13,5,15,9,11,11,12,11,12,13,5,6,4,3,15,6,9,15,13,13,11,13,12,5,9,15,2,8,0,1,12,4,7,13,5,9,6,0,7,3,4,10,9,6,5,9,15,2,6,4,5,9,0,5,5,10,15,9,4,9,5,9,7,6,14,7,8,13,13,12,4,3,3,3,10,12,4,2,15,0,15,6,1,11,11,5,15,12,6,3,7,4,7,8,12,12,12,8,9,13,8,13,2,4,4,2,6,4,7,8,15,7,7,1,1,3,10,12,1,9,0,8,11,6,0,1,12,10,5,3,1,14,4,14,13,8,10,1,14,6,4,10,11,5,11,4,1,14,0,7,11,14,7,4,8,0,7,12,2,3,4,5,14,15,5,12,0,13,5,2,5,5,5,5,8,14,9,11,15,6,5,15,5,12,15,1,3,8,0,15,0,4,11,7,14,10,1,4,1,11,3,1,10,9,4,9,4,3,10,13,8,1,1,2,8,14,6,8,15,0,15,5,4,0,14,11,4,0,8,8,0,3,13,11,15,3,7,5,6,3,15,10,3,13,15,12,8,1,14,4,5,6,13,2,2,14,7,6,0,15,8,7,5,1,13,11,12,4,10,2,11,8,12,11,15,2,2,8,1,4,8,0,8,10,7,4,1,12,5,13,12,12,2,10,7,14,2,6,15,7,1,4,12,6,3,13,4,0,5,0,12,10,15,0,13,11,1,9,13,3,7,0,14,9,2,1,4,3,7,5,5,1,7,12,12,4,6,0,12,7,8,12,6,8,6,0,10,8,3,6,11,15,1,11,1,14,7,1,1,7,11,12,6,0,10,14,4,4,3,6,2,6,5,8,3,13,5,5,10,3,6,13,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"14\", \"6\", \"8\", \"15\"], \"clip_start\": 343.0, \"clip_end\": 348.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q7_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,13,13,13,1,14,11,11,7,4,0,11,0,15,6,10,5,2,12,9,6,11,12,6,0,13,12,13,15,14,13,3,11,15,4,4,12,12,8,1,8,0,2,15,8,0,13,4,10,2,10,5,3,15,15,13,8,3,3,3,14,2,0,11,6,3,8,13,8,8,15,2,4,12,11,11,5,11,1,7,14,6,3,11,10,12,1,4,13,13,12,10,0,5,1,7,8,9,15,14,6,10,5,11,1,10,13,1,14,8,0,13,13,2,15,13,7,0,0,2,4,3,10,8,6,3,2,6,13,5,15,9,11,11,12,11,12,13,5,6,4,3,15,6,9,15,13,13,11,13,12,5,9,15,2,8,0,1,12,4,7,13,5,9,6,0,7,3,4,10,9,6,5,9,15,2,6,4,5,9,0,5,5,10,15,9,4,9,5,9,7,6,14,7,8,13,13,12,4,3,3,3,10,12,4,2,15,0,15,6,1,11,11,5,15,12,6,3,7,4,7,8,12,12,12,8,9,13,8,13,2,4,4,2,6,4,7,8,15,7,7,1,1,3,10,12,1,9,0,8,11,6,0,1,12,10,5,3,1,14,4,14,13,8,10,1,14,6,4,10,11,5,11,4,1,14,0,7,11,14,7,4,8,0,7,12,2,3,4,5,14,15,5,12,0,13,5,2,5,5,5,5,8,14,9,11,15,6,5,15,5,12,15,1,3,8,0,15,0,4,11,7,14,10,1,4,1,11,3,1,10,9,4,9,4,3,10,13,8,1,1,2,8,14,6,8,15,0,15,5,4,0,14,11,4,0,8,8,0,3,13,11,15,3,7,5,6,3,15,10,3,13,15,12,8,1,14,4,5,6,13,2,2,14,7,6,0,15,8,7,5,1,13,11,12,4,10,2,11,8,12,11,15,2,2,8,1,4,8,0,8,10,7,4,1,12,5,13,12,12,2,10,7,14,2,6,15,7,1,4,12,6,3,13,4,0,5,0,12,10,15,0,13,11,1,9,13,3,7,0,14,9,2,1,4,3,7,5,5,1,7,12,12,4,6,0,12,7,8,12,6,8,6,0,10,8,3,6,11,15,1,11,1,14,7,1,1,7,11,12,6,0,10,14,4,4,3,6,2,6,5,8,3,13,5,5,10,3,6,13,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"1\", \"9\"], \"clip_start\": 444.0, \"clip_end\": 447.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,13,13,13,1,14,11,11,7,4,0,11,0,15,6,10,5,2,12,9,6,11,12,6,0,13,12,13,15,14,13,3,11,15,4,4,12,12,8,1,8,0,2,15,8,0,13,4,10,2,10,5,3,15,15,13,8,3,3,3,14,2,0,11,6,3,8,13,8,8,15,2,4,12,11,11,5,11,1,7,14,6,3,11,10,12,1,4,13,13,12,10,0,5,1,7,8,9,15,14,6,10,5,11,1,10,13,1,14,8,0,13,13,2,15,13,7,0,0,2,4,3,10,8,6,3,2,6,13,5,15,9,11,11,12,11,12,13,5,6,4,3,15,6,9,15,13,13,11,13,12,5,9,15,2,8,0,1,12,4,7,13,5,9,6,0,7,3,4,10,9,6,5,9,15,2,6,4,5,9,0,5,5,10,15,9,4,9,5,9,7,6,14,7,8,13,13,12,4,3,3,3,10,12,4,2,15,0,15,6,1,11,11,5,15,12,6,3,7,4,7,8,12,12,12,8,9,13,8,13,2,4,4,2,6,4,7,8,15,7,7,1,1,3,10,12,1,9,0,8,11,6,0,1,12,10,5,3,1,14,4,14,13,8,10,1,14,6,4,10,11,5,11,4,1,14,0,7,11,14,7,4,8,0,7,12,2,3,4,5,14,15,5,12,0,13,5,2,5,5,5,5,8,14,9,11,15,6,5,15,5,12,15,1,3,8,0,15,0,4,11,7,14,10,1,4,1,11,3,1,10,9,4,9,4,3,10,13,8,1,1,2,8,14,6,8,15,0,15,5,4,0,14,11,4,0,8,8,0,3,13,11,15,3,7,5,6,3,15,10,3,13,15,12,8,1,14,4,5,6,13,2,2,14,7,6,0,15,8,7,5,1,13,11,12,4,10,2,11,8,12,11,15,2,2,8,1,4,8,0,8,10,7,4,1,12,5,13,12,12,2,10,7,14,2,6,15,7,1,4,12,6,3,13,4,0,5,0,12,10,15,0,13,11,1,9,13,3,7,0,14,9,2,1,4,3,7,5,5,1,7,12,12,4,6,0,12,7,8,12,6,8,6,0,10,8,3,6,11,15,1,11,1,14,7,1,1,7,11,12,6,0,10,14,4,4,3,6,2,6,5,8,3,13,5,5,10,3,6,13,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"13\", \"3\", \"11\"], \"clip_start\": 30.0, \"clip_end\": 34.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,13,13,13,1,14,11,11,7,4,0,11,0,15,6,10,5,2,12,9,6,11,12,6,0,13,12,13,15,14,13,3,11,15,4,4,12,12,8,1,8,0,2,15,8,0,13,4,10,2,10,5,3,15,15,13,8,3,3,3,14,2,0,11,6,3,8,13,8,8,15,2,4,12,11,11,5,11,1,7,14,6,3,11,10,12,1,4,13,13,12,10,0,5,1,7,8,9,15,14,6,10,5,11,1,10,13,1,14,8,0,13,13,2,15,13,7,0,0,2,4,3,10,8,6,3,2,6,13,5,15,9,11,11,12,11,12,13,5,6,4,3,15,6,9,15,13,13,11,13,12,5,9,15,2,8,0,1,12,4,7,13,5,9,6,0,7,3,4,10,9,6,5,9,15,2,6,4,5,9,0,5,5,10,15,9,4,9,5,9,7,6,14,7,8,13,13,12,4,3,3,3,10,12,4,2,15,0,15,6,1,11,11,5,15,12,6,3,7,4,7,8,12,12,12,8,9,13,8,13,2,4,4,2,6,4,7,8,15,7,7,1,1,3,10,12,1,9,0,8,11,6,0,1,12,10,5,3,1,14,4,14,13,8,10,1,14,6,4,10,11,5,11,4,1,14,0,7,11,14,7,4,8,0,7,12,2,3,4,5,14,15,5,12,0,13,5,2,5,5,5,5,8,14,9,11,15,6,5,15,5,12,15,1,3,8,0,15,0,4,11,7,14,10,1,4,1,11,3,1,10,9,4,9,4,3,10,13,8,1,1,2,8,14,6,8,15,0,15,5,4,0,14,11,4,0,8,8,0,3,13,11,15,3,7,5,6,3,15,10,3,13,15,12,8,1,14,4,5,6,13,2,2,14,7,6,0,15,8,7,5,1,13,11,12,4,10,2,11,8,12,11,15,2,2,8,1,4,8,0,8,10,7,4,1,12,5,13,12,12,2,10,7,14,2,6,15,7,1,4,12,6,3,13,4,0,5,0,12,10,15,0,13,11,1,9,13,3,7,0,14,9,2,1,4,3,7,5,5,1,7,12,12,4,6,0,12,7,8,12,6,8,6,0,10,8,3,6,11,15,1,11,1,14,7,1,1,7,11,12,6,0,10,14,4,4,3,6,2,6,5,8,3,13,5,5,10,3,6,13,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"11\", \"11\", \"7\", \"4\", \"0\"], \"clip_start\": 6.0, \"clip_end\": 12.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,13,13,13,1,14,11,11,7,4,0,11,0,15,6,10,5,2,12,9,6,11,12,6,0,13,12,13,15,14,13,3,11,15,4,4,12,12,8,1,8,0,2,15,8,0,13,4,10,2,10,5,3,15,15,13,8,3,3,3,14,2,0,11,6,3,8,13,8,8,15,2,4,12,11,11,5,11,1,7,14,6,3,11,10,12,1,4,13,13,12,10,0,5,1,7,8,9,15,14,6,10,5,11,1,10,13,1,14,8,0,13,13,2,15,13,7,0,0,2,4,3,10,8,6,3,2,6,13,5,15,9,11,11,12,11,12,13,5,6,4,3,15,6,9,15,13,13,11,13,12,5,9,15,2,8,0,1,12,4,7,13,5,9,6,0,7,3,4,10,9,6,5,9,15,2,6,4,5,9,0,5,5,10,15,9,4,9,5,9,7,6,14,7,8,13,13,12,4,3,3,3,10,12,4,2,15,0,15,6,1,11,11,5,15,12,6,3,7,4,7,8,12,12,12,8,9,13,8,13,2,4,4,2,6,4,7,8,15,7,7,1,1,3,10,12,1,9,0,8,11,6,0,1,12,10,5,3,1,14,4,14,13,8,10,1,14,6,4,10,11,5,11,4,1,14,0,7,11,14,7,4,8,0,7,12,2,3,4,5,14,15,5,12,0,13,5,2,5,5,5,5,8,14,9,11,15,6,5,15,5,12,15,1,3,8,0,15,0,4,11,7,14,10,1,4,1,11,3,1,10,9,4,9,4,3,10,13,8,1,1,2,8,14,6,8,15,0,15,5,4,0,14,11,4,0,8,8,0,3,13,11,15,3,7,5,6,3,15,10,3,13,15,12,8,1,14,4,5,6,13,2,2,14,7,6,0,15,8,7,5,1,13,11,12,4,10,2,11,8,12,11,15,2,2,8,1,4,8,0,8,10,7,4,1,12,5,13,12,12,2,10,7,14,2,6,15,7,1,4,12,6,3,13,4,0,5,0,12,10,15,0,13,11,1,9,13,3,7,0,14,9,2,1,4,3,7,5,5,1,7,12,12,4,6,0,12,7,8,12,6,8,6,0,10,8,3,6,11,15,1,11,1,14,7,1,1,7,11,12,6,0,10,14,4,4,3,6,2,6,5,8,3,13,5,5,10,3,6,13,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"6\", \"4\", \"3\"], \"clip_start\": 139.0, \"clip_end\": 143.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q11_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,13,13,13,1,14,11,11,7,4,0,11,0,15,6,10,5,2,12,9,6,11,12,6,0,13,12,13,15,14,13,3,11,15,4,4,12,12,8,1,8,0,2,15,8,0,13,4,10,2,10,5,3,15,15,13,8,3,3,3,14,2,0,11,6,3,8,13,8,8,15,2,4,12,11,11,5,11,1,7,14,6,3,11,10,12,1,4,13,13,12,10,0,5,1,7,8,9,15,14,6,10,5,11,1,10,13,1,14,8,0,13,13,2,15,13,7,0,0,2,4,3,10,8,6,3,2,6,13,5,15,9,11,11,12,11,12,13,5,6,4,3,15,6,9,15,13,13,11,13,12,5,9,15,2,8,0,1,12,4,7,13,5,9,6,0,7,3,4,10,9,6,5,9,15,2,6,4,5,9,0,5,5,10,15,9,4,9,5,9,7,6,14,7,8,13,13,12,4,3,3,3,10,12,4,2,15,0,15,6,1,11,11,5,15,12,6,3,7,4,7,8,12,12,12,8,9,13,8,13,2,4,4,2,6,4,7,8,15,7,7,1,1,3,10,12,1,9,0,8,11,6,0,1,12,10,5,3,1,14,4,14,13,8,10,1,14,6,4,10,11,5,11,4,1,14,0,7,11,14,7,4,8,0,7,12,2,3,4,5,14,15,5,12,0,13,5,2,5,5,5,5,8,14,9,11,15,6,5,15,5,12,15,1,3,8,0,15,0,4,11,7,14,10,1,4,1,11,3,1,10,9,4,9,4,3,10,13,8,1,1,2,8,14,6,8,15,0,15,5,4,0,14,11,4,0,8,8,0,3,13,11,15,3,7,5,6,3,15,10,3,13,15,12,8,1,14,4,5,6,13,2,2,14,7,6,0,15,8,7,5,1,13,11,12,4,10,2,11,8,12,11,15,2,2,8,1,4,8,0,8,10,7,4,1,12,5,13,12,12,2,10,7,14,2,6,15,7,1,4,12,6,3,13,4,0,5,0,12,10,15,0,13,11,1,9,13,3,7,0,14,9,2,1,4,3,7,5,5,1,7,12,12,4,6,0,12,7,8,12,6,8,6,0,10,8,3,6,11,15,1,11,1,14,7,1,1,7,11,12,6,0,10,14,4,4,3,6,2,6,5,8,3,13,5,5,10,3,6,13,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q11_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 17, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"5\", \"6\", \"13\", \"2\", \"2\", \"14\"], \"clip_start\": 379.0, \"clip_end\": 385.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q12_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,13,13,13,1,14,11,11,7,4,0,11,0,15,6,10,5,2,12,9,6,11,12,6,0,13,12,13,15,14,13,3,11,15,4,4,12,12,8,1,8,0,2,15,8,0,13,4,10,2,10,5,3,15,15,13,8,3,3,3,14,2,0,11,6,3,8,13,8,8,15,2,4,12,11,11,5,11,1,7,14,6,3,11,10,12,1,4,13,13,12,10,0,5,1,7,8,9,15,14,6,10,5,11,1,10,13,1,14,8,0,13,13,2,15,13,7,0,0,2,4,3,10,8,6,3,2,6,13,5,15,9,11,11,12,11,12,13,5,6,4,3,15,6,9,15,13,13,11,13,12,5,9,15,2,8,0,1,12,4,7,13,5,9,6,0,7,3,4,10,9,6,5,9,15,2,6,4,5,9,0,5,5,10,15,9,4,9,5,9,7,6,14,7,8,13,13,12,4,3,3,3,10,12,4,2,15,0,15,6,1,11,11,5,15,12,6,3,7,4,7,8,12,12,12,8,9,13,8,13,2,4,4,2,6,4,7,8,15,7,7,1,1,3,10,12,1,9,0,8,11,6,0,1,12,10,5,3,1,14,4,14,13,8,10,1,14,6,4,10,11,5,11,4,1,14,0,7,11,14,7,4,8,0,7,12,2,3,4,5,14,15,5,12,0,13,5,2,5,5,5,5,8,14,9,11,15,6,5,15,5,12,15,1,3,8,0,15,0,4,11,7,14,10,1,4,1,11,3,1,10,9,4,9,4,3,10,13,8,1,1,2,8,14,6,8,15,0,15,5,4,0,14,11,4,0,8,8,0,3,13,11,15,3,7,5,6,3,15,10,3,13,15,12,8,1,14,4,5,6,13,2,2,14,7,6,0,15,8,7,5,1,13,11,12,4,10,2,11,8,12,11,15,2,2,8,1,4,8,0,8,10,7,4,1,12,5,13,12,12,2,10,7,14,2,6,15,7,1,4,12,6,3,13,4,0,5,0,12,10,15,0,13,11,1,9,13,3,7,0,14,9,2,1,4,3,7,5,5,1,7,12,12,4,6,0,12,7,8,12,6,8,6,0,10,8,3,6,11,15,1,11,1,14,7,1,1,7,11,12,6,0,10,14,4,4,3,6,2,6,5,8,3,13,5,5,10,3,6,13,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q12_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"8\", \"0\", \"7\"], \"clip_start\": 282.0, \"clip_end\": 286.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q13_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,13,13,13,1,14,11,11,7,4,0,11,0,15,6,10,5,2,12,9,6,11,12,6,0,13,12,13,15,14,13,3,11,15,4,4,12,12,8,1,8,0,2,15,8,0,13,4,10,2,10,5,3,15,15,13,8,3,3,3,14,2,0,11,6,3,8,13,8,8,15,2,4,12,11,11,5,11,1,7,14,6,3,11,10,12,1,4,13,13,12,10,0,5,1,7,8,9,15,14,6,10,5,11,1,10,13,1,14,8,0,13,13,2,15,13,7,0,0,2,4,3,10,8,6,3,2,6,13,5,15,9,11,11,12,11,12,13,5,6,4,3,15,6,9,15,13,13,11,13,12,5,9,15,2,8,0,1,12,4,7,13,5,9,6,0,7,3,4,10,9,6,5,9,15,2,6,4,5,9,0,5,5,10,15,9,4,9,5,9,7,6,14,7,8,13,13,12,4,3,3,3,10,12,4,2,15,0,15,6,1,11,11,5,15,12,6,3,7,4,7,8,12,12,12,8,9,13,8,13,2,4,4,2,6,4,7,8,15,7,7,1,1,3,10,12,1,9,0,8,11,6,0,1,12,10,5,3,1,14,4,14,13,8,10,1,14,6,4,10,11,5,11,4,1,14,0,7,11,14,7,4,8,0,7,12,2,3,4,5,14,15,5,12,0,13,5,2,5,5,5,5,8,14,9,11,15,6,5,15,5,12,15,1,3,8,0,15,0,4,11,7,14,10,1,4,1,11,3,1,10,9,4,9,4,3,10,13,8,1,1,2,8,14,6,8,15,0,15,5,4,0,14,11,4,0,8,8,0,3,13,11,15,3,7,5,6,3,15,10,3,13,15,12,8,1,14,4,5,6,13,2,2,14,7,6,0,15,8,7,5,1,13,11,12,4,10,2,11,8,12,11,15,2,2,8,1,4,8,0,8,10,7,4,1,12,5,13,12,12,2,10,7,14,2,6,15,7,1,4,12,6,3,13,4,0,5,0,12,10,15,0,13,11,1,9,13,3,7,0,14,9,2,1,4,3,7,5,5,1,7,12,12,4,6,0,12,7,8,12,6,8,6,0,10,8,3,6,11,15,1,11,1,14,7,1,1,7,11,12,6,0,10,14,4,4,3,6,2,6,5,8,3,13,5,5,10,3,6,13,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"8\", \"11\", \"2\", \"3\"], \"clip_start\": 196.0, \"clip_end\": 201.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q14_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,13,13,13,1,14,11,11,7,4,0,11,0,15,6,10,5,2,12,9,6,11,12,6,0,13,12,13,15,14,13,3,11,15,4,4,12,12,8,1,8,0,2,15,8,0,13,4,10,2,10,5,3,15,15,13,8,3,3,3,14,2,0,11,6,3,8,13,8,8,15,2,4,12,11,11,5,11,1,7,14,6,3,11,10,12,1,4,13,13,12,10,0,5,1,7,8,9,15,14,6,10,5,11,1,10,13,1,14,8,0,13,13,2,15,13,7,0,0,2,4,3,10,8,6,3,2,6,13,5,15,9,11,11,12,11,12,13,5,6,4,3,15,6,9,15,13,13,11,13,12,5,9,15,2,8,0,1,12,4,7,13,5,9,6,0,7,3,4,10,9,6,5,9,15,2,6,4,5,9,0,5,5,10,15,9,4,9,5,9,7,6,14,7,8,13,13,12,4,3,3,3,10,12,4,2,15,0,15,6,1,11,11,5,15,12,6,3,7,4,7,8,12,12,12,8,9,13,8,13,2,4,4,2,6,4,7,8,15,7,7,1,1,3,10,12,1,9,0,8,11,6,0,1,12,10,5,3,1,14,4,14,13,8,10,1,14,6,4,10,11,5,11,4,1,14,0,7,11,14,7,4,8,0,7,12,2,3,4,5,14,15,5,12,0,13,5,2,5,5,5,5,8,14,9,11,15,6,5,15,5,12,15,1,3,8,0,15,0,4,11,7,14,10,1,4,1,11,3,1,10,9,4,9,4,3,10,13,8,1,1,2,8,14,6,8,15,0,15,5,4,0,14,11,4,0,8,8,0,3,13,11,15,3,7,5,6,3,15,10,3,13,15,12,8,1,14,4,5,6,13,2,2,14,7,6,0,15,8,7,5,1,13,11,12,4,10,2,11,8,12,11,15,2,2,8,1,4,8,0,8,10,7,4,1,12,5,13,12,12,2,10,7,14,2,6,15,7,1,4,12,6,3,13,4,0,5,0,12,10,15,0,13,11,1,9,13,3,7,0,14,9,2,1,4,3,7,5,5,1,7,12,12,4,6,0,12,7,8,12,6,8,6,0,10,8,3,6,11,15,1,11,1,14,7,1,1,7,11,12,6,0,10,14,4,4,3,6,2,6,5,8,3,13,5,5,10,3,6,13,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 17, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"13\", \"9\", \"14\"], \"clip_start\": 62.0, \"clip_end\": 67.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q15_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4", "dataset_source": "synthetic", "input_sequence": "3,14,13,13,13,1,14,11,11,7,4,0,11,0,15,6,10,5,2,12,9,6,11,12,6,0,13,12,13,15,14,13,3,11,15,4,4,12,12,8,1,8,0,2,15,8,0,13,4,10,2,10,5,3,15,15,13,8,3,3,3,14,2,0,11,6,3,8,13,8,8,15,2,4,12,11,11,5,11,1,7,14,6,3,11,10,12,1,4,13,13,12,10,0,5,1,7,8,9,15,14,6,10,5,11,1,10,13,1,14,8,0,13,13,2,15,13,7,0,0,2,4,3,10,8,6,3,2,6,13,5,15,9,11,11,12,11,12,13,5,6,4,3,15,6,9,15,13,13,11,13,12,5,9,15,2,8,0,1,12,4,7,13,5,9,6,0,7,3,4,10,9,6,5,9,15,2,6,4,5,9,0,5,5,10,15,9,4,9,5,9,7,6,14,7,8,13,13,12,4,3,3,3,10,12,4,2,15,0,15,6,1,11,11,5,15,12,6,3,7,4,7,8,12,12,12,8,9,13,8,13,2,4,4,2,6,4,7,8,15,7,7,1,1,3,10,12,1,9,0,8,11,6,0,1,12,10,5,3,1,14,4,14,13,8,10,1,14,6,4,10,11,5,11,4,1,14,0,7,11,14,7,4,8,0,7,12,2,3,4,5,14,15,5,12,0,13,5,2,5,5,5,5,8,14,9,11,15,6,5,15,5,12,15,1,3,8,0,15,0,4,11,7,14,10,1,4,1,11,3,1,10,9,4,9,4,3,10,13,8,1,1,2,8,14,6,8,15,0,15,5,4,0,14,11,4,0,8,8,0,3,13,11,15,3,7,5,6,3,15,10,3,13,15,12,8,1,14,4,5,6,13,2,2,14,7,6,0,15,8,7,5,1,13,11,12,4,10,2,11,8,12,11,15,2,2,8,1,4,8,0,8,10,7,4,1,12,5,13,12,12,2,10,7,14,2,6,15,7,1,4,12,6,3,13,4,0,5,0,12,10,15,0,13,11,1,9,13,3,7,0,14,9,2,1,4,3,7,5,5,1,7,12,12,4,6,0,12,7,8,12,6,8,6,0,10,8,3,6,11,15,1,11,1,14,7,1,1,7,11,12,6,0,10,14,4,4,3,6,2,6,5,8,3,13,5,5,10,3,6,13,1", "source_class": null, "source_dataset": null, "video_id": "video_17_v0", "question_id": "video_17_v0_q15_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"7\", \"9\", \"2\", \"2\"], \"clip_start\": 233.0, \"clip_end\": 238.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,12,0,9,8,6,6,1,10,1,14,10,6,7,0,2,15,3,13,4,6,8,8,10,7,8,13,0,7,14,5,3,3,1,15,11,0,5,0,4,14,7,4,2,15,11,12,4,15,3,15,7,5,12,9,9,7,3,10,6,5,3,6,12,10,12,3,9,14,11,10,1,7,7,15,11,7,15,12,9,12,2,7,1,8,3,6,1,2,12,15,6,14,13,12,4,1,8,10,7,12,9,2,6,12,9,15,11,14,0,9,2,12,13,11,12,2,13,3,5,3,11,7,15,14,2,15,14,4,8,0,14,2,10,7,6,12,9,4,8,12,6,2,14,11,7,9,14,12,8,6,15,2,15,5,4,14,12,4,1,3,13,5,15,12,14,14,12,9,4,1,4,15,4,3,3,12,10,10,8,14,6,0,4,6,5,0,3,15,1,5,3,10,4,3,5,9,14,9,3,8,7,1,0,4,2,11,0,14,4,2,15,10,3,14,0,4,9,1,6,12,5,9,6,7,15,12,11,4,5,10,15,2,7,9,2,2,5,11,7,7,12,5,0,13,3,3,2,2,7,10,4,1,10,0,6,11,3,5,11,15,5,14,2,3,0,7,7,0,12,10,8,2,11,13,12,10,2,6,13,1,0,9,7,9,10,6,6,11,0,9,9,4,12,5,11,15,15,8,9,11,6,1,1,3,10,14,7,14,5,13,9,13,4,1,1,6,13,12,3,4,13,14,14,2,15,12,3,14,2,10,6,14,7,4,8,2,2,8,2,5,9,10,15,1,12,9,10,3,5,9,15,6,0,14,9,0,5,8,7,13,0,0,4,7,5,0,2,11,15,15,4,6,11,7,14,9,3,14,3,11,10,11,11,6,4,11,8,14,15,2,7,13,4,5,4,3,7,9,12,9,12,7,1,4,0,1,14,1,8,5,1,3,3,2,11,3,6,9,12,6,1,13,2,8,14,5,0,9,10,9,3,15,10,4,0,6,12,10,6,9,0,7,4,7,2,0,11,15,9,2,2,15,10,0,3,5,14,14,6,2,8,6,11,12,4,12,12,0,15,2,5,11,4,13,11,8,2,4,6,14,11,10,9,2,7,11,1,4,10,0,8,13,14,5,1,3,3,0,4,2,12,7,1,1,7,13,3,2,14,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"2\", \"15\", \"5\"], \"clip_start\": 152.0, \"clip_end\": 156.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,12,0,9,8,6,6,1,10,1,14,10,6,7,0,2,15,3,13,4,6,8,8,10,7,8,13,0,7,14,5,3,3,1,15,11,0,5,0,4,14,7,4,2,15,11,12,4,15,3,15,7,5,12,9,9,7,3,10,6,5,3,6,12,10,12,3,9,14,11,10,1,7,7,15,11,7,15,12,9,12,2,7,1,8,3,6,1,2,12,15,6,14,13,12,4,1,8,10,7,12,9,2,6,12,9,15,11,14,0,9,2,12,13,11,12,2,13,3,5,3,11,7,15,14,2,15,14,4,8,0,14,2,10,7,6,12,9,4,8,12,6,2,14,11,7,9,14,12,8,6,15,2,15,5,4,14,12,4,1,3,13,5,15,12,14,14,12,9,4,1,4,15,4,3,3,12,10,10,8,14,6,0,4,6,5,0,3,15,1,5,3,10,4,3,5,9,14,9,3,8,7,1,0,4,2,11,0,14,4,2,15,10,3,14,0,4,9,1,6,12,5,9,6,7,15,12,11,4,5,10,15,2,7,9,2,2,5,11,7,7,12,5,0,13,3,3,2,2,7,10,4,1,10,0,6,11,3,5,11,15,5,14,2,3,0,7,7,0,12,10,8,2,11,13,12,10,2,6,13,1,0,9,7,9,10,6,6,11,0,9,9,4,12,5,11,15,15,8,9,11,6,1,1,3,10,14,7,14,5,13,9,13,4,1,1,6,13,12,3,4,13,14,14,2,15,12,3,14,2,10,6,14,7,4,8,2,2,8,2,5,9,10,15,1,12,9,10,3,5,9,15,6,0,14,9,0,5,8,7,13,0,0,4,7,5,0,2,11,15,15,4,6,11,7,14,9,3,14,3,11,10,11,11,6,4,11,8,14,15,2,7,13,4,5,4,3,7,9,12,9,12,7,1,4,0,1,14,1,8,5,1,3,3,2,11,3,6,9,12,6,1,13,2,8,14,5,0,9,10,9,3,15,10,4,0,6,12,10,6,9,0,7,4,7,2,0,11,15,9,2,2,15,10,0,3,5,14,14,6,2,8,6,11,12,4,12,12,0,15,2,5,11,4,13,11,8,2,4,6,14,11,10,9,2,7,11,1,4,10,0,8,13,14,5,1,3,3,0,4,2,12,7,1,1,7,13,3,2,14,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"11\", \"6\", \"4\", \"11\", \"8\"], \"clip_start\": 383.0, \"clip_end\": 389.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q2_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,12,0,9,8,6,6,1,10,1,14,10,6,7,0,2,15,3,13,4,6,8,8,10,7,8,13,0,7,14,5,3,3,1,15,11,0,5,0,4,14,7,4,2,15,11,12,4,15,3,15,7,5,12,9,9,7,3,10,6,5,3,6,12,10,12,3,9,14,11,10,1,7,7,15,11,7,15,12,9,12,2,7,1,8,3,6,1,2,12,15,6,14,13,12,4,1,8,10,7,12,9,2,6,12,9,15,11,14,0,9,2,12,13,11,12,2,13,3,5,3,11,7,15,14,2,15,14,4,8,0,14,2,10,7,6,12,9,4,8,12,6,2,14,11,7,9,14,12,8,6,15,2,15,5,4,14,12,4,1,3,13,5,15,12,14,14,12,9,4,1,4,15,4,3,3,12,10,10,8,14,6,0,4,6,5,0,3,15,1,5,3,10,4,3,5,9,14,9,3,8,7,1,0,4,2,11,0,14,4,2,15,10,3,14,0,4,9,1,6,12,5,9,6,7,15,12,11,4,5,10,15,2,7,9,2,2,5,11,7,7,12,5,0,13,3,3,2,2,7,10,4,1,10,0,6,11,3,5,11,15,5,14,2,3,0,7,7,0,12,10,8,2,11,13,12,10,2,6,13,1,0,9,7,9,10,6,6,11,0,9,9,4,12,5,11,15,15,8,9,11,6,1,1,3,10,14,7,14,5,13,9,13,4,1,1,6,13,12,3,4,13,14,14,2,15,12,3,14,2,10,6,14,7,4,8,2,2,8,2,5,9,10,15,1,12,9,10,3,5,9,15,6,0,14,9,0,5,8,7,13,0,0,4,7,5,0,2,11,15,15,4,6,11,7,14,9,3,14,3,11,10,11,11,6,4,11,8,14,15,2,7,13,4,5,4,3,7,9,12,9,12,7,1,4,0,1,14,1,8,5,1,3,3,2,11,3,6,9,12,6,1,13,2,8,14,5,0,9,10,9,3,15,10,4,0,6,12,10,6,9,0,7,4,7,2,0,11,15,9,2,2,15,10,0,3,5,14,14,6,2,8,6,11,12,4,12,12,0,15,2,5,11,4,13,11,8,2,4,6,14,11,10,9,2,7,11,1,4,10,0,8,13,14,5,1,3,3,0,4,2,12,7,1,1,7,13,3,2,14,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q2_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"7\", \"12\", \"9\", \"2\", \"6\"], \"clip_start\": 100.0, \"clip_end\": 105.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q3_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,12,0,9,8,6,6,1,10,1,14,10,6,7,0,2,15,3,13,4,6,8,8,10,7,8,13,0,7,14,5,3,3,1,15,11,0,5,0,4,14,7,4,2,15,11,12,4,15,3,15,7,5,12,9,9,7,3,10,6,5,3,6,12,10,12,3,9,14,11,10,1,7,7,15,11,7,15,12,9,12,2,7,1,8,3,6,1,2,12,15,6,14,13,12,4,1,8,10,7,12,9,2,6,12,9,15,11,14,0,9,2,12,13,11,12,2,13,3,5,3,11,7,15,14,2,15,14,4,8,0,14,2,10,7,6,12,9,4,8,12,6,2,14,11,7,9,14,12,8,6,15,2,15,5,4,14,12,4,1,3,13,5,15,12,14,14,12,9,4,1,4,15,4,3,3,12,10,10,8,14,6,0,4,6,5,0,3,15,1,5,3,10,4,3,5,9,14,9,3,8,7,1,0,4,2,11,0,14,4,2,15,10,3,14,0,4,9,1,6,12,5,9,6,7,15,12,11,4,5,10,15,2,7,9,2,2,5,11,7,7,12,5,0,13,3,3,2,2,7,10,4,1,10,0,6,11,3,5,11,15,5,14,2,3,0,7,7,0,12,10,8,2,11,13,12,10,2,6,13,1,0,9,7,9,10,6,6,11,0,9,9,4,12,5,11,15,15,8,9,11,6,1,1,3,10,14,7,14,5,13,9,13,4,1,1,6,13,12,3,4,13,14,14,2,15,12,3,14,2,10,6,14,7,4,8,2,2,8,2,5,9,10,15,1,12,9,10,3,5,9,15,6,0,14,9,0,5,8,7,13,0,0,4,7,5,0,2,11,15,15,4,6,11,7,14,9,3,14,3,11,10,11,11,6,4,11,8,14,15,2,7,13,4,5,4,3,7,9,12,9,12,7,1,4,0,1,14,1,8,5,1,3,3,2,11,3,6,9,12,6,1,13,2,8,14,5,0,9,10,9,3,15,10,4,0,6,12,10,6,9,0,7,4,7,2,0,11,15,9,2,2,15,10,0,3,5,14,14,6,2,8,6,11,12,4,12,12,0,15,2,5,11,4,13,11,8,2,4,6,14,11,10,9,2,7,11,1,4,10,0,8,13,14,5,1,3,3,0,4,2,12,7,1,1,7,13,3,2,14,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"9\", \"3\", \"14\", \"3\"], \"clip_start\": 376.0, \"clip_end\": 381.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,12,0,9,8,6,6,1,10,1,14,10,6,7,0,2,15,3,13,4,6,8,8,10,7,8,13,0,7,14,5,3,3,1,15,11,0,5,0,4,14,7,4,2,15,11,12,4,15,3,15,7,5,12,9,9,7,3,10,6,5,3,6,12,10,12,3,9,14,11,10,1,7,7,15,11,7,15,12,9,12,2,7,1,8,3,6,1,2,12,15,6,14,13,12,4,1,8,10,7,12,9,2,6,12,9,15,11,14,0,9,2,12,13,11,12,2,13,3,5,3,11,7,15,14,2,15,14,4,8,0,14,2,10,7,6,12,9,4,8,12,6,2,14,11,7,9,14,12,8,6,15,2,15,5,4,14,12,4,1,3,13,5,15,12,14,14,12,9,4,1,4,15,4,3,3,12,10,10,8,14,6,0,4,6,5,0,3,15,1,5,3,10,4,3,5,9,14,9,3,8,7,1,0,4,2,11,0,14,4,2,15,10,3,14,0,4,9,1,6,12,5,9,6,7,15,12,11,4,5,10,15,2,7,9,2,2,5,11,7,7,12,5,0,13,3,3,2,2,7,10,4,1,10,0,6,11,3,5,11,15,5,14,2,3,0,7,7,0,12,10,8,2,11,13,12,10,2,6,13,1,0,9,7,9,10,6,6,11,0,9,9,4,12,5,11,15,15,8,9,11,6,1,1,3,10,14,7,14,5,13,9,13,4,1,1,6,13,12,3,4,13,14,14,2,15,12,3,14,2,10,6,14,7,4,8,2,2,8,2,5,9,10,15,1,12,9,10,3,5,9,15,6,0,14,9,0,5,8,7,13,0,0,4,7,5,0,2,11,15,15,4,6,11,7,14,9,3,14,3,11,10,11,11,6,4,11,8,14,15,2,7,13,4,5,4,3,7,9,12,9,12,7,1,4,0,1,14,1,8,5,1,3,3,2,11,3,6,9,12,6,1,13,2,8,14,5,0,9,10,9,3,15,10,4,0,6,12,10,6,9,0,7,4,7,2,0,11,15,9,2,2,15,10,0,3,5,14,14,6,2,8,6,11,12,4,12,12,0,15,2,5,11,4,13,11,8,2,4,6,14,11,10,9,2,7,11,1,4,10,0,8,13,14,5,1,3,3,0,4,2,12,7,1,1,7,13,3,2,14,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"4\", \"14\", \"7\", \"4\", \"2\"], \"clip_start\": 39.0, \"clip_end\": 45.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,12,0,9,8,6,6,1,10,1,14,10,6,7,0,2,15,3,13,4,6,8,8,10,7,8,13,0,7,14,5,3,3,1,15,11,0,5,0,4,14,7,4,2,15,11,12,4,15,3,15,7,5,12,9,9,7,3,10,6,5,3,6,12,10,12,3,9,14,11,10,1,7,7,15,11,7,15,12,9,12,2,7,1,8,3,6,1,2,12,15,6,14,13,12,4,1,8,10,7,12,9,2,6,12,9,15,11,14,0,9,2,12,13,11,12,2,13,3,5,3,11,7,15,14,2,15,14,4,8,0,14,2,10,7,6,12,9,4,8,12,6,2,14,11,7,9,14,12,8,6,15,2,15,5,4,14,12,4,1,3,13,5,15,12,14,14,12,9,4,1,4,15,4,3,3,12,10,10,8,14,6,0,4,6,5,0,3,15,1,5,3,10,4,3,5,9,14,9,3,8,7,1,0,4,2,11,0,14,4,2,15,10,3,14,0,4,9,1,6,12,5,9,6,7,15,12,11,4,5,10,15,2,7,9,2,2,5,11,7,7,12,5,0,13,3,3,2,2,7,10,4,1,10,0,6,11,3,5,11,15,5,14,2,3,0,7,7,0,12,10,8,2,11,13,12,10,2,6,13,1,0,9,7,9,10,6,6,11,0,9,9,4,12,5,11,15,15,8,9,11,6,1,1,3,10,14,7,14,5,13,9,13,4,1,1,6,13,12,3,4,13,14,14,2,15,12,3,14,2,10,6,14,7,4,8,2,2,8,2,5,9,10,15,1,12,9,10,3,5,9,15,6,0,14,9,0,5,8,7,13,0,0,4,7,5,0,2,11,15,15,4,6,11,7,14,9,3,14,3,11,10,11,11,6,4,11,8,14,15,2,7,13,4,5,4,3,7,9,12,9,12,7,1,4,0,1,14,1,8,5,1,3,3,2,11,3,6,9,12,6,1,13,2,8,14,5,0,9,10,9,3,15,10,4,0,6,12,10,6,9,0,7,4,7,2,0,11,15,9,2,2,15,10,0,3,5,14,14,6,2,8,6,11,12,4,12,12,0,15,2,5,11,4,13,11,8,2,4,6,14,11,10,9,2,7,11,1,4,10,0,8,13,14,5,1,3,3,0,4,2,12,7,1,1,7,13,3,2,14,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"1\", \"5\", \"3\"], \"clip_start\": 188.0, \"clip_end\": 193.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q6_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,12,0,9,8,6,6,1,10,1,14,10,6,7,0,2,15,3,13,4,6,8,8,10,7,8,13,0,7,14,5,3,3,1,15,11,0,5,0,4,14,7,4,2,15,11,12,4,15,3,15,7,5,12,9,9,7,3,10,6,5,3,6,12,10,12,3,9,14,11,10,1,7,7,15,11,7,15,12,9,12,2,7,1,8,3,6,1,2,12,15,6,14,13,12,4,1,8,10,7,12,9,2,6,12,9,15,11,14,0,9,2,12,13,11,12,2,13,3,5,3,11,7,15,14,2,15,14,4,8,0,14,2,10,7,6,12,9,4,8,12,6,2,14,11,7,9,14,12,8,6,15,2,15,5,4,14,12,4,1,3,13,5,15,12,14,14,12,9,4,1,4,15,4,3,3,12,10,10,8,14,6,0,4,6,5,0,3,15,1,5,3,10,4,3,5,9,14,9,3,8,7,1,0,4,2,11,0,14,4,2,15,10,3,14,0,4,9,1,6,12,5,9,6,7,15,12,11,4,5,10,15,2,7,9,2,2,5,11,7,7,12,5,0,13,3,3,2,2,7,10,4,1,10,0,6,11,3,5,11,15,5,14,2,3,0,7,7,0,12,10,8,2,11,13,12,10,2,6,13,1,0,9,7,9,10,6,6,11,0,9,9,4,12,5,11,15,15,8,9,11,6,1,1,3,10,14,7,14,5,13,9,13,4,1,1,6,13,12,3,4,13,14,14,2,15,12,3,14,2,10,6,14,7,4,8,2,2,8,2,5,9,10,15,1,12,9,10,3,5,9,15,6,0,14,9,0,5,8,7,13,0,0,4,7,5,0,2,11,15,15,4,6,11,7,14,9,3,14,3,11,10,11,11,6,4,11,8,14,15,2,7,13,4,5,4,3,7,9,12,9,12,7,1,4,0,1,14,1,8,5,1,3,3,2,11,3,6,9,12,6,1,13,2,8,14,5,0,9,10,9,3,15,10,4,0,6,12,10,6,9,0,7,4,7,2,0,11,15,9,2,2,15,10,0,3,5,14,14,6,2,8,6,11,12,4,12,12,0,15,2,5,11,4,13,11,8,2,4,6,14,11,10,9,2,7,11,1,4,10,0,8,13,14,5,1,3,3,0,4,2,12,7,1,1,7,13,3,2,14,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"7\", \"4\", \"7\", \"2\"], \"clip_start\": 442.0, \"clip_end\": 447.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q7_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,12,0,9,8,6,6,1,10,1,14,10,6,7,0,2,15,3,13,4,6,8,8,10,7,8,13,0,7,14,5,3,3,1,15,11,0,5,0,4,14,7,4,2,15,11,12,4,15,3,15,7,5,12,9,9,7,3,10,6,5,3,6,12,10,12,3,9,14,11,10,1,7,7,15,11,7,15,12,9,12,2,7,1,8,3,6,1,2,12,15,6,14,13,12,4,1,8,10,7,12,9,2,6,12,9,15,11,14,0,9,2,12,13,11,12,2,13,3,5,3,11,7,15,14,2,15,14,4,8,0,14,2,10,7,6,12,9,4,8,12,6,2,14,11,7,9,14,12,8,6,15,2,15,5,4,14,12,4,1,3,13,5,15,12,14,14,12,9,4,1,4,15,4,3,3,12,10,10,8,14,6,0,4,6,5,0,3,15,1,5,3,10,4,3,5,9,14,9,3,8,7,1,0,4,2,11,0,14,4,2,15,10,3,14,0,4,9,1,6,12,5,9,6,7,15,12,11,4,5,10,15,2,7,9,2,2,5,11,7,7,12,5,0,13,3,3,2,2,7,10,4,1,10,0,6,11,3,5,11,15,5,14,2,3,0,7,7,0,12,10,8,2,11,13,12,10,2,6,13,1,0,9,7,9,10,6,6,11,0,9,9,4,12,5,11,15,15,8,9,11,6,1,1,3,10,14,7,14,5,13,9,13,4,1,1,6,13,12,3,4,13,14,14,2,15,12,3,14,2,10,6,14,7,4,8,2,2,8,2,5,9,10,15,1,12,9,10,3,5,9,15,6,0,14,9,0,5,8,7,13,0,0,4,7,5,0,2,11,15,15,4,6,11,7,14,9,3,14,3,11,10,11,11,6,4,11,8,14,15,2,7,13,4,5,4,3,7,9,12,9,12,7,1,4,0,1,14,1,8,5,1,3,3,2,11,3,6,9,12,6,1,13,2,8,14,5,0,9,10,9,3,15,10,4,0,6,12,10,6,9,0,7,4,7,2,0,11,15,9,2,2,15,10,0,3,5,14,14,6,2,8,6,11,12,4,12,12,0,15,2,5,11,4,13,11,8,2,4,6,14,11,10,9,2,7,11,1,4,10,0,8,13,14,5,1,3,3,0,4,2,12,7,1,1,7,13,3,2,14,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q7_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"1\", \"14\"], \"clip_start\": 406.0, \"clip_end\": 409.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q8_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,12,0,9,8,6,6,1,10,1,14,10,6,7,0,2,15,3,13,4,6,8,8,10,7,8,13,0,7,14,5,3,3,1,15,11,0,5,0,4,14,7,4,2,15,11,12,4,15,3,15,7,5,12,9,9,7,3,10,6,5,3,6,12,10,12,3,9,14,11,10,1,7,7,15,11,7,15,12,9,12,2,7,1,8,3,6,1,2,12,15,6,14,13,12,4,1,8,10,7,12,9,2,6,12,9,15,11,14,0,9,2,12,13,11,12,2,13,3,5,3,11,7,15,14,2,15,14,4,8,0,14,2,10,7,6,12,9,4,8,12,6,2,14,11,7,9,14,12,8,6,15,2,15,5,4,14,12,4,1,3,13,5,15,12,14,14,12,9,4,1,4,15,4,3,3,12,10,10,8,14,6,0,4,6,5,0,3,15,1,5,3,10,4,3,5,9,14,9,3,8,7,1,0,4,2,11,0,14,4,2,15,10,3,14,0,4,9,1,6,12,5,9,6,7,15,12,11,4,5,10,15,2,7,9,2,2,5,11,7,7,12,5,0,13,3,3,2,2,7,10,4,1,10,0,6,11,3,5,11,15,5,14,2,3,0,7,7,0,12,10,8,2,11,13,12,10,2,6,13,1,0,9,7,9,10,6,6,11,0,9,9,4,12,5,11,15,15,8,9,11,6,1,1,3,10,14,7,14,5,13,9,13,4,1,1,6,13,12,3,4,13,14,14,2,15,12,3,14,2,10,6,14,7,4,8,2,2,8,2,5,9,10,15,1,12,9,10,3,5,9,15,6,0,14,9,0,5,8,7,13,0,0,4,7,5,0,2,11,15,15,4,6,11,7,14,9,3,14,3,11,10,11,11,6,4,11,8,14,15,2,7,13,4,5,4,3,7,9,12,9,12,7,1,4,0,1,14,1,8,5,1,3,3,2,11,3,6,9,12,6,1,13,2,8,14,5,0,9,10,9,3,15,10,4,0,6,12,10,6,9,0,7,4,7,2,0,11,15,9,2,2,15,10,0,3,5,14,14,6,2,8,6,11,12,4,12,12,0,15,2,5,11,4,13,11,8,2,4,6,14,11,10,9,2,7,11,1,4,10,0,8,13,14,5,1,3,3,0,4,2,12,7,1,1,7,13,3,2,14,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q8_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"0\", \"9\", \"9\", \"4\", \"12\", \"5\"], \"clip_start\": 290.0, \"clip_end\": 296.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,12,0,9,8,6,6,1,10,1,14,10,6,7,0,2,15,3,13,4,6,8,8,10,7,8,13,0,7,14,5,3,3,1,15,11,0,5,0,4,14,7,4,2,15,11,12,4,15,3,15,7,5,12,9,9,7,3,10,6,5,3,6,12,10,12,3,9,14,11,10,1,7,7,15,11,7,15,12,9,12,2,7,1,8,3,6,1,2,12,15,6,14,13,12,4,1,8,10,7,12,9,2,6,12,9,15,11,14,0,9,2,12,13,11,12,2,13,3,5,3,11,7,15,14,2,15,14,4,8,0,14,2,10,7,6,12,9,4,8,12,6,2,14,11,7,9,14,12,8,6,15,2,15,5,4,14,12,4,1,3,13,5,15,12,14,14,12,9,4,1,4,15,4,3,3,12,10,10,8,14,6,0,4,6,5,0,3,15,1,5,3,10,4,3,5,9,14,9,3,8,7,1,0,4,2,11,0,14,4,2,15,10,3,14,0,4,9,1,6,12,5,9,6,7,15,12,11,4,5,10,15,2,7,9,2,2,5,11,7,7,12,5,0,13,3,3,2,2,7,10,4,1,10,0,6,11,3,5,11,15,5,14,2,3,0,7,7,0,12,10,8,2,11,13,12,10,2,6,13,1,0,9,7,9,10,6,6,11,0,9,9,4,12,5,11,15,15,8,9,11,6,1,1,3,10,14,7,14,5,13,9,13,4,1,1,6,13,12,3,4,13,14,14,2,15,12,3,14,2,10,6,14,7,4,8,2,2,8,2,5,9,10,15,1,12,9,10,3,5,9,15,6,0,14,9,0,5,8,7,13,0,0,4,7,5,0,2,11,15,15,4,6,11,7,14,9,3,14,3,11,10,11,11,6,4,11,8,14,15,2,7,13,4,5,4,3,7,9,12,9,12,7,1,4,0,1,14,1,8,5,1,3,3,2,11,3,6,9,12,6,1,13,2,8,14,5,0,9,10,9,3,15,10,4,0,6,12,10,6,9,0,7,4,7,2,0,11,15,9,2,2,15,10,0,3,5,14,14,6,2,8,6,11,12,4,12,12,0,15,2,5,11,4,13,11,8,2,4,6,14,11,10,9,2,7,11,1,4,10,0,8,13,14,5,1,3,3,0,4,2,12,7,1,1,7,13,3,2,14,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"0\", \"4\"], \"clip_start\": 215.0, \"clip_end\": 218.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q10_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,12,0,9,8,6,6,1,10,1,14,10,6,7,0,2,15,3,13,4,6,8,8,10,7,8,13,0,7,14,5,3,3,1,15,11,0,5,0,4,14,7,4,2,15,11,12,4,15,3,15,7,5,12,9,9,7,3,10,6,5,3,6,12,10,12,3,9,14,11,10,1,7,7,15,11,7,15,12,9,12,2,7,1,8,3,6,1,2,12,15,6,14,13,12,4,1,8,10,7,12,9,2,6,12,9,15,11,14,0,9,2,12,13,11,12,2,13,3,5,3,11,7,15,14,2,15,14,4,8,0,14,2,10,7,6,12,9,4,8,12,6,2,14,11,7,9,14,12,8,6,15,2,15,5,4,14,12,4,1,3,13,5,15,12,14,14,12,9,4,1,4,15,4,3,3,12,10,10,8,14,6,0,4,6,5,0,3,15,1,5,3,10,4,3,5,9,14,9,3,8,7,1,0,4,2,11,0,14,4,2,15,10,3,14,0,4,9,1,6,12,5,9,6,7,15,12,11,4,5,10,15,2,7,9,2,2,5,11,7,7,12,5,0,13,3,3,2,2,7,10,4,1,10,0,6,11,3,5,11,15,5,14,2,3,0,7,7,0,12,10,8,2,11,13,12,10,2,6,13,1,0,9,7,9,10,6,6,11,0,9,9,4,12,5,11,15,15,8,9,11,6,1,1,3,10,14,7,14,5,13,9,13,4,1,1,6,13,12,3,4,13,14,14,2,15,12,3,14,2,10,6,14,7,4,8,2,2,8,2,5,9,10,15,1,12,9,10,3,5,9,15,6,0,14,9,0,5,8,7,13,0,0,4,7,5,0,2,11,15,15,4,6,11,7,14,9,3,14,3,11,10,11,11,6,4,11,8,14,15,2,7,13,4,5,4,3,7,9,12,9,12,7,1,4,0,1,14,1,8,5,1,3,3,2,11,3,6,9,12,6,1,13,2,8,14,5,0,9,10,9,3,15,10,4,0,6,12,10,6,9,0,7,4,7,2,0,11,15,9,2,2,15,10,0,3,5,14,14,6,2,8,6,11,12,4,12,12,0,15,2,5,11,4,13,11,8,2,4,6,14,11,10,9,2,7,11,1,4,10,0,8,13,14,5,1,3,3,0,4,2,12,7,1,1,7,13,3,2,14,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q10_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"15\", \"1\", \"5\"], \"clip_start\": 188.0, \"clip_end\": 192.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,12,0,9,8,6,6,1,10,1,14,10,6,7,0,2,15,3,13,4,6,8,8,10,7,8,13,0,7,14,5,3,3,1,15,11,0,5,0,4,14,7,4,2,15,11,12,4,15,3,15,7,5,12,9,9,7,3,10,6,5,3,6,12,10,12,3,9,14,11,10,1,7,7,15,11,7,15,12,9,12,2,7,1,8,3,6,1,2,12,15,6,14,13,12,4,1,8,10,7,12,9,2,6,12,9,15,11,14,0,9,2,12,13,11,12,2,13,3,5,3,11,7,15,14,2,15,14,4,8,0,14,2,10,7,6,12,9,4,8,12,6,2,14,11,7,9,14,12,8,6,15,2,15,5,4,14,12,4,1,3,13,5,15,12,14,14,12,9,4,1,4,15,4,3,3,12,10,10,8,14,6,0,4,6,5,0,3,15,1,5,3,10,4,3,5,9,14,9,3,8,7,1,0,4,2,11,0,14,4,2,15,10,3,14,0,4,9,1,6,12,5,9,6,7,15,12,11,4,5,10,15,2,7,9,2,2,5,11,7,7,12,5,0,13,3,3,2,2,7,10,4,1,10,0,6,11,3,5,11,15,5,14,2,3,0,7,7,0,12,10,8,2,11,13,12,10,2,6,13,1,0,9,7,9,10,6,6,11,0,9,9,4,12,5,11,15,15,8,9,11,6,1,1,3,10,14,7,14,5,13,9,13,4,1,1,6,13,12,3,4,13,14,14,2,15,12,3,14,2,10,6,14,7,4,8,2,2,8,2,5,9,10,15,1,12,9,10,3,5,9,15,6,0,14,9,0,5,8,7,13,0,0,4,7,5,0,2,11,15,15,4,6,11,7,14,9,3,14,3,11,10,11,11,6,4,11,8,14,15,2,7,13,4,5,4,3,7,9,12,9,12,7,1,4,0,1,14,1,8,5,1,3,3,2,11,3,6,9,12,6,1,13,2,8,14,5,0,9,10,9,3,15,10,4,0,6,12,10,6,9,0,7,4,7,2,0,11,15,9,2,2,15,10,0,3,5,14,14,6,2,8,6,11,12,4,12,12,0,15,2,5,11,4,13,11,8,2,4,6,14,11,10,9,2,7,11,1,4,10,0,8,13,14,5,1,3,3,0,4,2,12,7,1,1,7,13,3,2,14,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 18, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"1\", \"4\", \"15\", \"4\"], \"clip_start\": 170.0, \"clip_end\": 175.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,12,0,9,8,6,6,1,10,1,14,10,6,7,0,2,15,3,13,4,6,8,8,10,7,8,13,0,7,14,5,3,3,1,15,11,0,5,0,4,14,7,4,2,15,11,12,4,15,3,15,7,5,12,9,9,7,3,10,6,5,3,6,12,10,12,3,9,14,11,10,1,7,7,15,11,7,15,12,9,12,2,7,1,8,3,6,1,2,12,15,6,14,13,12,4,1,8,10,7,12,9,2,6,12,9,15,11,14,0,9,2,12,13,11,12,2,13,3,5,3,11,7,15,14,2,15,14,4,8,0,14,2,10,7,6,12,9,4,8,12,6,2,14,11,7,9,14,12,8,6,15,2,15,5,4,14,12,4,1,3,13,5,15,12,14,14,12,9,4,1,4,15,4,3,3,12,10,10,8,14,6,0,4,6,5,0,3,15,1,5,3,10,4,3,5,9,14,9,3,8,7,1,0,4,2,11,0,14,4,2,15,10,3,14,0,4,9,1,6,12,5,9,6,7,15,12,11,4,5,10,15,2,7,9,2,2,5,11,7,7,12,5,0,13,3,3,2,2,7,10,4,1,10,0,6,11,3,5,11,15,5,14,2,3,0,7,7,0,12,10,8,2,11,13,12,10,2,6,13,1,0,9,7,9,10,6,6,11,0,9,9,4,12,5,11,15,15,8,9,11,6,1,1,3,10,14,7,14,5,13,9,13,4,1,1,6,13,12,3,4,13,14,14,2,15,12,3,14,2,10,6,14,7,4,8,2,2,8,2,5,9,10,15,1,12,9,10,3,5,9,15,6,0,14,9,0,5,8,7,13,0,0,4,7,5,0,2,11,15,15,4,6,11,7,14,9,3,14,3,11,10,11,11,6,4,11,8,14,15,2,7,13,4,5,4,3,7,9,12,9,12,7,1,4,0,1,14,1,8,5,1,3,3,2,11,3,6,9,12,6,1,13,2,8,14,5,0,9,10,9,3,15,10,4,0,6,12,10,6,9,0,7,4,7,2,0,11,15,9,2,2,15,10,0,3,5,14,14,6,2,8,6,11,12,4,12,12,0,15,2,5,11,4,13,11,8,2,4,6,14,11,10,9,2,7,11,1,4,10,0,8,13,14,5,1,3,3,0,4,2,12,7,1,1,7,13,3,2,14,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"4\", \"5\", \"10\", \"15\", \"2\"], \"clip_start\": 228.0, \"clip_end\": 234.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q13_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,12,0,9,8,6,6,1,10,1,14,10,6,7,0,2,15,3,13,4,6,8,8,10,7,8,13,0,7,14,5,3,3,1,15,11,0,5,0,4,14,7,4,2,15,11,12,4,15,3,15,7,5,12,9,9,7,3,10,6,5,3,6,12,10,12,3,9,14,11,10,1,7,7,15,11,7,15,12,9,12,2,7,1,8,3,6,1,2,12,15,6,14,13,12,4,1,8,10,7,12,9,2,6,12,9,15,11,14,0,9,2,12,13,11,12,2,13,3,5,3,11,7,15,14,2,15,14,4,8,0,14,2,10,7,6,12,9,4,8,12,6,2,14,11,7,9,14,12,8,6,15,2,15,5,4,14,12,4,1,3,13,5,15,12,14,14,12,9,4,1,4,15,4,3,3,12,10,10,8,14,6,0,4,6,5,0,3,15,1,5,3,10,4,3,5,9,14,9,3,8,7,1,0,4,2,11,0,14,4,2,15,10,3,14,0,4,9,1,6,12,5,9,6,7,15,12,11,4,5,10,15,2,7,9,2,2,5,11,7,7,12,5,0,13,3,3,2,2,7,10,4,1,10,0,6,11,3,5,11,15,5,14,2,3,0,7,7,0,12,10,8,2,11,13,12,10,2,6,13,1,0,9,7,9,10,6,6,11,0,9,9,4,12,5,11,15,15,8,9,11,6,1,1,3,10,14,7,14,5,13,9,13,4,1,1,6,13,12,3,4,13,14,14,2,15,12,3,14,2,10,6,14,7,4,8,2,2,8,2,5,9,10,15,1,12,9,10,3,5,9,15,6,0,14,9,0,5,8,7,13,0,0,4,7,5,0,2,11,15,15,4,6,11,7,14,9,3,14,3,11,10,11,11,6,4,11,8,14,15,2,7,13,4,5,4,3,7,9,12,9,12,7,1,4,0,1,14,1,8,5,1,3,3,2,11,3,6,9,12,6,1,13,2,8,14,5,0,9,10,9,3,15,10,4,0,6,12,10,6,9,0,7,4,7,2,0,11,15,9,2,2,15,10,0,3,5,14,14,6,2,8,6,11,12,4,12,12,0,15,2,5,11,4,13,11,8,2,4,6,14,11,10,9,2,7,11,1,4,10,0,8,13,14,5,1,3,3,0,4,2,12,7,1,1,7,13,3,2,14,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"13\", \"5\", \"15\", \"12\"], \"clip_start\": 161.0, \"clip_end\": 166.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q14_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,12,0,9,8,6,6,1,10,1,14,10,6,7,0,2,15,3,13,4,6,8,8,10,7,8,13,0,7,14,5,3,3,1,15,11,0,5,0,4,14,7,4,2,15,11,12,4,15,3,15,7,5,12,9,9,7,3,10,6,5,3,6,12,10,12,3,9,14,11,10,1,7,7,15,11,7,15,12,9,12,2,7,1,8,3,6,1,2,12,15,6,14,13,12,4,1,8,10,7,12,9,2,6,12,9,15,11,14,0,9,2,12,13,11,12,2,13,3,5,3,11,7,15,14,2,15,14,4,8,0,14,2,10,7,6,12,9,4,8,12,6,2,14,11,7,9,14,12,8,6,15,2,15,5,4,14,12,4,1,3,13,5,15,12,14,14,12,9,4,1,4,15,4,3,3,12,10,10,8,14,6,0,4,6,5,0,3,15,1,5,3,10,4,3,5,9,14,9,3,8,7,1,0,4,2,11,0,14,4,2,15,10,3,14,0,4,9,1,6,12,5,9,6,7,15,12,11,4,5,10,15,2,7,9,2,2,5,11,7,7,12,5,0,13,3,3,2,2,7,10,4,1,10,0,6,11,3,5,11,15,5,14,2,3,0,7,7,0,12,10,8,2,11,13,12,10,2,6,13,1,0,9,7,9,10,6,6,11,0,9,9,4,12,5,11,15,15,8,9,11,6,1,1,3,10,14,7,14,5,13,9,13,4,1,1,6,13,12,3,4,13,14,14,2,15,12,3,14,2,10,6,14,7,4,8,2,2,8,2,5,9,10,15,1,12,9,10,3,5,9,15,6,0,14,9,0,5,8,7,13,0,0,4,7,5,0,2,11,15,15,4,6,11,7,14,9,3,14,3,11,10,11,11,6,4,11,8,14,15,2,7,13,4,5,4,3,7,9,12,9,12,7,1,4,0,1,14,1,8,5,1,3,3,2,11,3,6,9,12,6,1,13,2,8,14,5,0,9,10,9,3,15,10,4,0,6,12,10,6,9,0,7,4,7,2,0,11,15,9,2,2,15,10,0,3,5,14,14,6,2,8,6,11,12,4,12,12,0,15,2,5,11,4,13,11,8,2,4,6,14,11,10,9,2,7,11,1,4,10,0,8,13,14,5,1,3,3,0,4,2,12,7,1,1,7,13,3,2,14,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q14_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 18, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"15\", \"11\", \"12\", \"4\"], \"clip_start\": 44.0, \"clip_end\": 49.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4", "dataset_source": "synthetic", "input_sequence": "5,8,12,0,9,8,6,6,1,10,1,14,10,6,7,0,2,15,3,13,4,6,8,8,10,7,8,13,0,7,14,5,3,3,1,15,11,0,5,0,4,14,7,4,2,15,11,12,4,15,3,15,7,5,12,9,9,7,3,10,6,5,3,6,12,10,12,3,9,14,11,10,1,7,7,15,11,7,15,12,9,12,2,7,1,8,3,6,1,2,12,15,6,14,13,12,4,1,8,10,7,12,9,2,6,12,9,15,11,14,0,9,2,12,13,11,12,2,13,3,5,3,11,7,15,14,2,15,14,4,8,0,14,2,10,7,6,12,9,4,8,12,6,2,14,11,7,9,14,12,8,6,15,2,15,5,4,14,12,4,1,3,13,5,15,12,14,14,12,9,4,1,4,15,4,3,3,12,10,10,8,14,6,0,4,6,5,0,3,15,1,5,3,10,4,3,5,9,14,9,3,8,7,1,0,4,2,11,0,14,4,2,15,10,3,14,0,4,9,1,6,12,5,9,6,7,15,12,11,4,5,10,15,2,7,9,2,2,5,11,7,7,12,5,0,13,3,3,2,2,7,10,4,1,10,0,6,11,3,5,11,15,5,14,2,3,0,7,7,0,12,10,8,2,11,13,12,10,2,6,13,1,0,9,7,9,10,6,6,11,0,9,9,4,12,5,11,15,15,8,9,11,6,1,1,3,10,14,7,14,5,13,9,13,4,1,1,6,13,12,3,4,13,14,14,2,15,12,3,14,2,10,6,14,7,4,8,2,2,8,2,5,9,10,15,1,12,9,10,3,5,9,15,6,0,14,9,0,5,8,7,13,0,0,4,7,5,0,2,11,15,15,4,6,11,7,14,9,3,14,3,11,10,11,11,6,4,11,8,14,15,2,7,13,4,5,4,3,7,9,12,9,12,7,1,4,0,1,14,1,8,5,1,3,3,2,11,3,6,9,12,6,1,13,2,8,14,5,0,9,10,9,3,15,10,4,0,6,12,10,6,9,0,7,4,7,2,0,11,15,9,2,2,15,10,0,3,5,14,14,6,2,8,6,11,12,4,12,12,0,15,2,5,11,4,13,11,8,2,4,6,14,11,10,9,2,7,11,1,4,10,0,8,13,14,5,1,3,3,0,4,2,12,7,1,1,7,13,3,2,14,6", "source_class": null, "source_dataset": null, "video_id": "video_18_v0", "question_id": "video_18_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"15\", \"3\", \"7\", \"5\", \"12\"], \"clip_start\": 95.0, \"clip_end\": 100.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q0_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,15,9,8,0,4,1,9,13,5,8,4,8,1,12,13,7,5,1,10,14,7,4,11,8,5,4,3,0,1,8,15,5,4,7,12,6,12,8,11,7,0,5,0,1,11,12,9,13,7,15,2,1,14,10,2,15,7,4,11,2,11,7,9,13,0,15,0,12,15,15,1,9,3,8,15,2,0,1,12,10,5,9,14,7,5,13,9,10,14,6,14,8,10,7,15,3,7,5,12,2,4,5,6,6,0,11,0,3,11,7,13,14,15,11,7,7,6,9,5,15,1,14,6,6,9,1,8,15,9,14,14,5,15,4,11,11,13,10,11,2,14,5,12,8,5,14,4,5,8,6,11,2,15,4,0,0,6,14,12,1,6,7,2,1,2,6,9,8,4,11,14,10,11,9,6,8,3,3,10,4,6,1,1,12,14,3,1,8,4,4,15,3,6,10,6,12,5,13,5,7,8,12,14,12,13,14,6,7,8,12,2,15,12,9,3,11,12,6,7,13,6,5,12,4,13,0,7,4,7,6,6,15,11,11,12,7,11,2,6,10,7,8,11,3,8,6,8,10,2,7,7,6,6,1,8,4,12,9,14,9,11,4,2,1,12,1,8,15,4,4,7,9,14,10,7,8,5,7,2,11,5,13,4,5,3,2,11,4,1,3,15,12,6,10,6,11,15,10,4,14,10,11,9,9,5,10,12,13,4,14,5,15,12,3,0,1,9,6,9,1,14,1,15,8,11,9,1,12,13,13,15,2,6,11,9,12,5,7,6,6,11,15,6,5,3,0,14,2,0,1,13,13,1,15,13,3,4,15,0,10,12,5,10,10,14,11,2,12,5,12,2,6,5,6,5,14,5,0,2,11,13,7,10,2,13,15,3,9,13,12,3,1,8,4,14,5,14,10,10,11,3,0,5,8,0,11,13,7,11,11,13,9,9,2,8,12,5,4,9,1,12,14,15,2,4,9,5,7,14,7,12,14,10,7,10,7,3,0,8,0,9,10,3,3,11,4,0,14,3,3,11,0,5,0,11,5,6,8,1,14,3,5,10,13,9,7,3,0,6,15,7,4,5,15,7,4,0,2,7,5,15,12,15,4,11,14,5,1,11,3,11,9,10,11,5,7,15,11,14,14,4,2,7,6,1,10,13,9,5,2,1", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q0_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"15\", \"4\", \"4\", \"7\"], \"clip_start\": 267.0, \"clip_end\": 272.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,15,9,8,0,4,1,9,13,5,8,4,8,1,12,13,7,5,1,10,14,7,4,11,8,5,4,3,0,1,8,15,5,4,7,12,6,12,8,11,7,0,5,0,1,11,12,9,13,7,15,2,1,14,10,2,15,7,4,11,2,11,7,9,13,0,15,0,12,15,15,1,9,3,8,15,2,0,1,12,10,5,9,14,7,5,13,9,10,14,6,14,8,10,7,15,3,7,5,12,2,4,5,6,6,0,11,0,3,11,7,13,14,15,11,7,7,6,9,5,15,1,14,6,6,9,1,8,15,9,14,14,5,15,4,11,11,13,10,11,2,14,5,12,8,5,14,4,5,8,6,11,2,15,4,0,0,6,14,12,1,6,7,2,1,2,6,9,8,4,11,14,10,11,9,6,8,3,3,10,4,6,1,1,12,14,3,1,8,4,4,15,3,6,10,6,12,5,13,5,7,8,12,14,12,13,14,6,7,8,12,2,15,12,9,3,11,12,6,7,13,6,5,12,4,13,0,7,4,7,6,6,15,11,11,12,7,11,2,6,10,7,8,11,3,8,6,8,10,2,7,7,6,6,1,8,4,12,9,14,9,11,4,2,1,12,1,8,15,4,4,7,9,14,10,7,8,5,7,2,11,5,13,4,5,3,2,11,4,1,3,15,12,6,10,6,11,15,10,4,14,10,11,9,9,5,10,12,13,4,14,5,15,12,3,0,1,9,6,9,1,14,1,15,8,11,9,1,12,13,13,15,2,6,11,9,12,5,7,6,6,11,15,6,5,3,0,14,2,0,1,13,13,1,15,13,3,4,15,0,10,12,5,10,10,14,11,2,12,5,12,2,6,5,6,5,14,5,0,2,11,13,7,10,2,13,15,3,9,13,12,3,1,8,4,14,5,14,10,10,11,3,0,5,8,0,11,13,7,11,11,13,9,9,2,8,12,5,4,9,1,12,14,15,2,4,9,5,7,14,7,12,14,10,7,10,7,3,0,8,0,9,10,3,3,11,4,0,14,3,3,11,0,5,0,11,5,6,8,1,14,3,5,10,13,9,7,3,0,6,15,7,4,5,15,7,4,0,2,7,5,15,12,15,4,11,14,5,1,11,3,11,9,10,11,5,7,15,11,14,14,4,2,7,6,1,10,13,9,5,2,1", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"1\", \"14\", \"3\", \"5\", \"10\"], \"clip_start\": 459.0, \"clip_end\": 464.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q2_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,15,9,8,0,4,1,9,13,5,8,4,8,1,12,13,7,5,1,10,14,7,4,11,8,5,4,3,0,1,8,15,5,4,7,12,6,12,8,11,7,0,5,0,1,11,12,9,13,7,15,2,1,14,10,2,15,7,4,11,2,11,7,9,13,0,15,0,12,15,15,1,9,3,8,15,2,0,1,12,10,5,9,14,7,5,13,9,10,14,6,14,8,10,7,15,3,7,5,12,2,4,5,6,6,0,11,0,3,11,7,13,14,15,11,7,7,6,9,5,15,1,14,6,6,9,1,8,15,9,14,14,5,15,4,11,11,13,10,11,2,14,5,12,8,5,14,4,5,8,6,11,2,15,4,0,0,6,14,12,1,6,7,2,1,2,6,9,8,4,11,14,10,11,9,6,8,3,3,10,4,6,1,1,12,14,3,1,8,4,4,15,3,6,10,6,12,5,13,5,7,8,12,14,12,13,14,6,7,8,12,2,15,12,9,3,11,12,6,7,13,6,5,12,4,13,0,7,4,7,6,6,15,11,11,12,7,11,2,6,10,7,8,11,3,8,6,8,10,2,7,7,6,6,1,8,4,12,9,14,9,11,4,2,1,12,1,8,15,4,4,7,9,14,10,7,8,5,7,2,11,5,13,4,5,3,2,11,4,1,3,15,12,6,10,6,11,15,10,4,14,10,11,9,9,5,10,12,13,4,14,5,15,12,3,0,1,9,6,9,1,14,1,15,8,11,9,1,12,13,13,15,2,6,11,9,12,5,7,6,6,11,15,6,5,3,0,14,2,0,1,13,13,1,15,13,3,4,15,0,10,12,5,10,10,14,11,2,12,5,12,2,6,5,6,5,14,5,0,2,11,13,7,10,2,13,15,3,9,13,12,3,1,8,4,14,5,14,10,10,11,3,0,5,8,0,11,13,7,11,11,13,9,9,2,8,12,5,4,9,1,12,14,15,2,4,9,5,7,14,7,12,14,10,7,10,7,3,0,8,0,9,10,3,3,11,4,0,14,3,3,11,0,5,0,11,5,6,8,1,14,3,5,10,13,9,7,3,0,6,15,7,4,5,15,7,4,0,2,7,5,15,12,15,4,11,14,5,1,11,3,11,9,10,11,5,7,15,11,14,14,4,2,7,6,1,10,13,9,5,2,1", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"13\", \"9\", \"10\", \"14\", \"6\"], \"clip_start\": 86.0, \"clip_end\": 91.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q3_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,15,9,8,0,4,1,9,13,5,8,4,8,1,12,13,7,5,1,10,14,7,4,11,8,5,4,3,0,1,8,15,5,4,7,12,6,12,8,11,7,0,5,0,1,11,12,9,13,7,15,2,1,14,10,2,15,7,4,11,2,11,7,9,13,0,15,0,12,15,15,1,9,3,8,15,2,0,1,12,10,5,9,14,7,5,13,9,10,14,6,14,8,10,7,15,3,7,5,12,2,4,5,6,6,0,11,0,3,11,7,13,14,15,11,7,7,6,9,5,15,1,14,6,6,9,1,8,15,9,14,14,5,15,4,11,11,13,10,11,2,14,5,12,8,5,14,4,5,8,6,11,2,15,4,0,0,6,14,12,1,6,7,2,1,2,6,9,8,4,11,14,10,11,9,6,8,3,3,10,4,6,1,1,12,14,3,1,8,4,4,15,3,6,10,6,12,5,13,5,7,8,12,14,12,13,14,6,7,8,12,2,15,12,9,3,11,12,6,7,13,6,5,12,4,13,0,7,4,7,6,6,15,11,11,12,7,11,2,6,10,7,8,11,3,8,6,8,10,2,7,7,6,6,1,8,4,12,9,14,9,11,4,2,1,12,1,8,15,4,4,7,9,14,10,7,8,5,7,2,11,5,13,4,5,3,2,11,4,1,3,15,12,6,10,6,11,15,10,4,14,10,11,9,9,5,10,12,13,4,14,5,15,12,3,0,1,9,6,9,1,14,1,15,8,11,9,1,12,13,13,15,2,6,11,9,12,5,7,6,6,11,15,6,5,3,0,14,2,0,1,13,13,1,15,13,3,4,15,0,10,12,5,10,10,14,11,2,12,5,12,2,6,5,6,5,14,5,0,2,11,13,7,10,2,13,15,3,9,13,12,3,1,8,4,14,5,14,10,10,11,3,0,5,8,0,11,13,7,11,11,13,9,9,2,8,12,5,4,9,1,12,14,15,2,4,9,5,7,14,7,12,14,10,7,10,7,3,0,8,0,9,10,3,3,11,4,0,14,3,3,11,0,5,0,11,5,6,8,1,14,3,5,10,13,9,7,3,0,6,15,7,4,5,15,7,4,0,2,7,5,15,12,15,4,11,14,5,1,11,3,11,9,10,11,5,7,15,11,14,14,4,2,7,6,1,10,13,9,5,2,1", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"7\", \"13\", \"6\", \"5\"], \"clip_start\": 218.0, \"clip_end\": 223.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,15,9,8,0,4,1,9,13,5,8,4,8,1,12,13,7,5,1,10,14,7,4,11,8,5,4,3,0,1,8,15,5,4,7,12,6,12,8,11,7,0,5,0,1,11,12,9,13,7,15,2,1,14,10,2,15,7,4,11,2,11,7,9,13,0,15,0,12,15,15,1,9,3,8,15,2,0,1,12,10,5,9,14,7,5,13,9,10,14,6,14,8,10,7,15,3,7,5,12,2,4,5,6,6,0,11,0,3,11,7,13,14,15,11,7,7,6,9,5,15,1,14,6,6,9,1,8,15,9,14,14,5,15,4,11,11,13,10,11,2,14,5,12,8,5,14,4,5,8,6,11,2,15,4,0,0,6,14,12,1,6,7,2,1,2,6,9,8,4,11,14,10,11,9,6,8,3,3,10,4,6,1,1,12,14,3,1,8,4,4,15,3,6,10,6,12,5,13,5,7,8,12,14,12,13,14,6,7,8,12,2,15,12,9,3,11,12,6,7,13,6,5,12,4,13,0,7,4,7,6,6,15,11,11,12,7,11,2,6,10,7,8,11,3,8,6,8,10,2,7,7,6,6,1,8,4,12,9,14,9,11,4,2,1,12,1,8,15,4,4,7,9,14,10,7,8,5,7,2,11,5,13,4,5,3,2,11,4,1,3,15,12,6,10,6,11,15,10,4,14,10,11,9,9,5,10,12,13,4,14,5,15,12,3,0,1,9,6,9,1,14,1,15,8,11,9,1,12,13,13,15,2,6,11,9,12,5,7,6,6,11,15,6,5,3,0,14,2,0,1,13,13,1,15,13,3,4,15,0,10,12,5,10,10,14,11,2,12,5,12,2,6,5,6,5,14,5,0,2,11,13,7,10,2,13,15,3,9,13,12,3,1,8,4,14,5,14,10,10,11,3,0,5,8,0,11,13,7,11,11,13,9,9,2,8,12,5,4,9,1,12,14,15,2,4,9,5,7,14,7,12,14,10,7,10,7,3,0,8,0,9,10,3,3,11,4,0,14,3,3,11,0,5,0,11,5,6,8,1,14,3,5,10,13,9,7,3,0,6,15,7,4,5,15,7,4,0,2,7,5,15,12,15,4,11,14,5,1,11,3,11,9,10,11,5,7,15,11,14,14,4,2,7,6,1,10,13,9,5,2,1", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"4\", \"5\", \"6\"], \"clip_start\": 100.0, \"clip_end\": 104.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q5_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,15,9,8,0,4,1,9,13,5,8,4,8,1,12,13,7,5,1,10,14,7,4,11,8,5,4,3,0,1,8,15,5,4,7,12,6,12,8,11,7,0,5,0,1,11,12,9,13,7,15,2,1,14,10,2,15,7,4,11,2,11,7,9,13,0,15,0,12,15,15,1,9,3,8,15,2,0,1,12,10,5,9,14,7,5,13,9,10,14,6,14,8,10,7,15,3,7,5,12,2,4,5,6,6,0,11,0,3,11,7,13,14,15,11,7,7,6,9,5,15,1,14,6,6,9,1,8,15,9,14,14,5,15,4,11,11,13,10,11,2,14,5,12,8,5,14,4,5,8,6,11,2,15,4,0,0,6,14,12,1,6,7,2,1,2,6,9,8,4,11,14,10,11,9,6,8,3,3,10,4,6,1,1,12,14,3,1,8,4,4,15,3,6,10,6,12,5,13,5,7,8,12,14,12,13,14,6,7,8,12,2,15,12,9,3,11,12,6,7,13,6,5,12,4,13,0,7,4,7,6,6,15,11,11,12,7,11,2,6,10,7,8,11,3,8,6,8,10,2,7,7,6,6,1,8,4,12,9,14,9,11,4,2,1,12,1,8,15,4,4,7,9,14,10,7,8,5,7,2,11,5,13,4,5,3,2,11,4,1,3,15,12,6,10,6,11,15,10,4,14,10,11,9,9,5,10,12,13,4,14,5,15,12,3,0,1,9,6,9,1,14,1,15,8,11,9,1,12,13,13,15,2,6,11,9,12,5,7,6,6,11,15,6,5,3,0,14,2,0,1,13,13,1,15,13,3,4,15,0,10,12,5,10,10,14,11,2,12,5,12,2,6,5,6,5,14,5,0,2,11,13,7,10,2,13,15,3,9,13,12,3,1,8,4,14,5,14,10,10,11,3,0,5,8,0,11,13,7,11,11,13,9,9,2,8,12,5,4,9,1,12,14,15,2,4,9,5,7,14,7,12,14,10,7,10,7,3,0,8,0,9,10,3,3,11,4,0,14,3,3,11,0,5,0,11,5,6,8,1,14,3,5,10,13,9,7,3,0,6,15,7,4,5,15,7,4,0,2,7,5,15,12,15,4,11,14,5,1,11,3,11,9,10,11,5,7,15,11,14,14,4,2,7,6,1,10,13,9,5,2,1", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q5_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"9\", \"3\", \"3\"], \"clip_start\": 431.0, \"clip_end\": 434.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q6_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,15,9,8,0,4,1,9,13,5,8,4,8,1,12,13,7,5,1,10,14,7,4,11,8,5,4,3,0,1,8,15,5,4,7,12,6,12,8,11,7,0,5,0,1,11,12,9,13,7,15,2,1,14,10,2,15,7,4,11,2,11,7,9,13,0,15,0,12,15,15,1,9,3,8,15,2,0,1,12,10,5,9,14,7,5,13,9,10,14,6,14,8,10,7,15,3,7,5,12,2,4,5,6,6,0,11,0,3,11,7,13,14,15,11,7,7,6,9,5,15,1,14,6,6,9,1,8,15,9,14,14,5,15,4,11,11,13,10,11,2,14,5,12,8,5,14,4,5,8,6,11,2,15,4,0,0,6,14,12,1,6,7,2,1,2,6,9,8,4,11,14,10,11,9,6,8,3,3,10,4,6,1,1,12,14,3,1,8,4,4,15,3,6,10,6,12,5,13,5,7,8,12,14,12,13,14,6,7,8,12,2,15,12,9,3,11,12,6,7,13,6,5,12,4,13,0,7,4,7,6,6,15,11,11,12,7,11,2,6,10,7,8,11,3,8,6,8,10,2,7,7,6,6,1,8,4,12,9,14,9,11,4,2,1,12,1,8,15,4,4,7,9,14,10,7,8,5,7,2,11,5,13,4,5,3,2,11,4,1,3,15,12,6,10,6,11,15,10,4,14,10,11,9,9,5,10,12,13,4,14,5,15,12,3,0,1,9,6,9,1,14,1,15,8,11,9,1,12,13,13,15,2,6,11,9,12,5,7,6,6,11,15,6,5,3,0,14,2,0,1,13,13,1,15,13,3,4,15,0,10,12,5,10,10,14,11,2,12,5,12,2,6,5,6,5,14,5,0,2,11,13,7,10,2,13,15,3,9,13,12,3,1,8,4,14,5,14,10,10,11,3,0,5,8,0,11,13,7,11,11,13,9,9,2,8,12,5,4,9,1,12,14,15,2,4,9,5,7,14,7,12,14,10,7,10,7,3,0,8,0,9,10,3,3,11,4,0,14,3,3,11,0,5,0,11,5,6,8,1,14,3,5,10,13,9,7,3,0,6,15,7,4,5,15,7,4,0,2,7,5,15,12,15,4,11,14,5,1,11,3,11,9,10,11,5,7,15,11,14,14,4,2,7,6,1,10,13,9,5,2,1", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q6_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"5\", \"12\", \"8\"], \"clip_start\": 141.0, \"clip_end\": 145.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,15,9,8,0,4,1,9,13,5,8,4,8,1,12,13,7,5,1,10,14,7,4,11,8,5,4,3,0,1,8,15,5,4,7,12,6,12,8,11,7,0,5,0,1,11,12,9,13,7,15,2,1,14,10,2,15,7,4,11,2,11,7,9,13,0,15,0,12,15,15,1,9,3,8,15,2,0,1,12,10,5,9,14,7,5,13,9,10,14,6,14,8,10,7,15,3,7,5,12,2,4,5,6,6,0,11,0,3,11,7,13,14,15,11,7,7,6,9,5,15,1,14,6,6,9,1,8,15,9,14,14,5,15,4,11,11,13,10,11,2,14,5,12,8,5,14,4,5,8,6,11,2,15,4,0,0,6,14,12,1,6,7,2,1,2,6,9,8,4,11,14,10,11,9,6,8,3,3,10,4,6,1,1,12,14,3,1,8,4,4,15,3,6,10,6,12,5,13,5,7,8,12,14,12,13,14,6,7,8,12,2,15,12,9,3,11,12,6,7,13,6,5,12,4,13,0,7,4,7,6,6,15,11,11,12,7,11,2,6,10,7,8,11,3,8,6,8,10,2,7,7,6,6,1,8,4,12,9,14,9,11,4,2,1,12,1,8,15,4,4,7,9,14,10,7,8,5,7,2,11,5,13,4,5,3,2,11,4,1,3,15,12,6,10,6,11,15,10,4,14,10,11,9,9,5,10,12,13,4,14,5,15,12,3,0,1,9,6,9,1,14,1,15,8,11,9,1,12,13,13,15,2,6,11,9,12,5,7,6,6,11,15,6,5,3,0,14,2,0,1,13,13,1,15,13,3,4,15,0,10,12,5,10,10,14,11,2,12,5,12,2,6,5,6,5,14,5,0,2,11,13,7,10,2,13,15,3,9,13,12,3,1,8,4,14,5,14,10,10,11,3,0,5,8,0,11,13,7,11,11,13,9,9,2,8,12,5,4,9,1,12,14,15,2,4,9,5,7,14,7,12,14,10,7,10,7,3,0,8,0,9,10,3,3,11,4,0,14,3,3,11,0,5,0,11,5,6,8,1,14,3,5,10,13,9,7,3,0,6,15,7,4,5,15,7,4,0,2,7,5,15,12,15,4,11,14,5,1,11,3,11,9,10,11,5,7,15,11,14,14,4,2,7,6,1,10,13,9,5,2,1", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"5\", \"15\", \"4\", \"11\"], \"clip_start\": 131.0, \"clip_end\": 136.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q8_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,15,9,8,0,4,1,9,13,5,8,4,8,1,12,13,7,5,1,10,14,7,4,11,8,5,4,3,0,1,8,15,5,4,7,12,6,12,8,11,7,0,5,0,1,11,12,9,13,7,15,2,1,14,10,2,15,7,4,11,2,11,7,9,13,0,15,0,12,15,15,1,9,3,8,15,2,0,1,12,10,5,9,14,7,5,13,9,10,14,6,14,8,10,7,15,3,7,5,12,2,4,5,6,6,0,11,0,3,11,7,13,14,15,11,7,7,6,9,5,15,1,14,6,6,9,1,8,15,9,14,14,5,15,4,11,11,13,10,11,2,14,5,12,8,5,14,4,5,8,6,11,2,15,4,0,0,6,14,12,1,6,7,2,1,2,6,9,8,4,11,14,10,11,9,6,8,3,3,10,4,6,1,1,12,14,3,1,8,4,4,15,3,6,10,6,12,5,13,5,7,8,12,14,12,13,14,6,7,8,12,2,15,12,9,3,11,12,6,7,13,6,5,12,4,13,0,7,4,7,6,6,15,11,11,12,7,11,2,6,10,7,8,11,3,8,6,8,10,2,7,7,6,6,1,8,4,12,9,14,9,11,4,2,1,12,1,8,15,4,4,7,9,14,10,7,8,5,7,2,11,5,13,4,5,3,2,11,4,1,3,15,12,6,10,6,11,15,10,4,14,10,11,9,9,5,10,12,13,4,14,5,15,12,3,0,1,9,6,9,1,14,1,15,8,11,9,1,12,13,13,15,2,6,11,9,12,5,7,6,6,11,15,6,5,3,0,14,2,0,1,13,13,1,15,13,3,4,15,0,10,12,5,10,10,14,11,2,12,5,12,2,6,5,6,5,14,5,0,2,11,13,7,10,2,13,15,3,9,13,12,3,1,8,4,14,5,14,10,10,11,3,0,5,8,0,11,13,7,11,11,13,9,9,2,8,12,5,4,9,1,12,14,15,2,4,9,5,7,14,7,12,14,10,7,10,7,3,0,8,0,9,10,3,3,11,4,0,14,3,3,11,0,5,0,11,5,6,8,1,14,3,5,10,13,9,7,3,0,6,15,7,4,5,15,7,4,0,2,7,5,15,12,15,4,11,14,5,1,11,3,11,9,10,11,5,7,15,11,14,14,4,2,7,6,1,10,13,9,5,2,1", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"5\", \"12\", \"4\"], \"clip_start\": 221.0, \"clip_end\": 225.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q9_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,15,9,8,0,4,1,9,13,5,8,4,8,1,12,13,7,5,1,10,14,7,4,11,8,5,4,3,0,1,8,15,5,4,7,12,6,12,8,11,7,0,5,0,1,11,12,9,13,7,15,2,1,14,10,2,15,7,4,11,2,11,7,9,13,0,15,0,12,15,15,1,9,3,8,15,2,0,1,12,10,5,9,14,7,5,13,9,10,14,6,14,8,10,7,15,3,7,5,12,2,4,5,6,6,0,11,0,3,11,7,13,14,15,11,7,7,6,9,5,15,1,14,6,6,9,1,8,15,9,14,14,5,15,4,11,11,13,10,11,2,14,5,12,8,5,14,4,5,8,6,11,2,15,4,0,0,6,14,12,1,6,7,2,1,2,6,9,8,4,11,14,10,11,9,6,8,3,3,10,4,6,1,1,12,14,3,1,8,4,4,15,3,6,10,6,12,5,13,5,7,8,12,14,12,13,14,6,7,8,12,2,15,12,9,3,11,12,6,7,13,6,5,12,4,13,0,7,4,7,6,6,15,11,11,12,7,11,2,6,10,7,8,11,3,8,6,8,10,2,7,7,6,6,1,8,4,12,9,14,9,11,4,2,1,12,1,8,15,4,4,7,9,14,10,7,8,5,7,2,11,5,13,4,5,3,2,11,4,1,3,15,12,6,10,6,11,15,10,4,14,10,11,9,9,5,10,12,13,4,14,5,15,12,3,0,1,9,6,9,1,14,1,15,8,11,9,1,12,13,13,15,2,6,11,9,12,5,7,6,6,11,15,6,5,3,0,14,2,0,1,13,13,1,15,13,3,4,15,0,10,12,5,10,10,14,11,2,12,5,12,2,6,5,6,5,14,5,0,2,11,13,7,10,2,13,15,3,9,13,12,3,1,8,4,14,5,14,10,10,11,3,0,5,8,0,11,13,7,11,11,13,9,9,2,8,12,5,4,9,1,12,14,15,2,4,9,5,7,14,7,12,14,10,7,10,7,3,0,8,0,9,10,3,3,11,4,0,14,3,3,11,0,5,0,11,5,6,8,1,14,3,5,10,13,9,7,3,0,6,15,7,4,5,15,7,4,0,2,7,5,15,12,15,4,11,14,5,1,11,3,11,9,10,11,5,7,15,11,14,14,4,2,7,6,1,10,13,9,5,2,1", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"12\", \"7\", \"11\", \"2\"], \"clip_start\": 234.0, \"clip_end\": 239.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q10_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,15,9,8,0,4,1,9,13,5,8,4,8,1,12,13,7,5,1,10,14,7,4,11,8,5,4,3,0,1,8,15,5,4,7,12,6,12,8,11,7,0,5,0,1,11,12,9,13,7,15,2,1,14,10,2,15,7,4,11,2,11,7,9,13,0,15,0,12,15,15,1,9,3,8,15,2,0,1,12,10,5,9,14,7,5,13,9,10,14,6,14,8,10,7,15,3,7,5,12,2,4,5,6,6,0,11,0,3,11,7,13,14,15,11,7,7,6,9,5,15,1,14,6,6,9,1,8,15,9,14,14,5,15,4,11,11,13,10,11,2,14,5,12,8,5,14,4,5,8,6,11,2,15,4,0,0,6,14,12,1,6,7,2,1,2,6,9,8,4,11,14,10,11,9,6,8,3,3,10,4,6,1,1,12,14,3,1,8,4,4,15,3,6,10,6,12,5,13,5,7,8,12,14,12,13,14,6,7,8,12,2,15,12,9,3,11,12,6,7,13,6,5,12,4,13,0,7,4,7,6,6,15,11,11,12,7,11,2,6,10,7,8,11,3,8,6,8,10,2,7,7,6,6,1,8,4,12,9,14,9,11,4,2,1,12,1,8,15,4,4,7,9,14,10,7,8,5,7,2,11,5,13,4,5,3,2,11,4,1,3,15,12,6,10,6,11,15,10,4,14,10,11,9,9,5,10,12,13,4,14,5,15,12,3,0,1,9,6,9,1,14,1,15,8,11,9,1,12,13,13,15,2,6,11,9,12,5,7,6,6,11,15,6,5,3,0,14,2,0,1,13,13,1,15,13,3,4,15,0,10,12,5,10,10,14,11,2,12,5,12,2,6,5,6,5,14,5,0,2,11,13,7,10,2,13,15,3,9,13,12,3,1,8,4,14,5,14,10,10,11,3,0,5,8,0,11,13,7,11,11,13,9,9,2,8,12,5,4,9,1,12,14,15,2,4,9,5,7,14,7,12,14,10,7,10,7,3,0,8,0,9,10,3,3,11,4,0,14,3,3,11,0,5,0,11,5,6,8,1,14,3,5,10,13,9,7,3,0,6,15,7,4,5,15,7,4,0,2,7,5,15,12,15,4,11,14,5,1,11,3,11,9,10,11,5,7,15,11,14,14,4,2,7,6,1,10,13,9,5,2,1", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"9\", \"12\", \"5\"], \"clip_start\": 334.0, \"clip_end\": 338.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q11_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,15,9,8,0,4,1,9,13,5,8,4,8,1,12,13,7,5,1,10,14,7,4,11,8,5,4,3,0,1,8,15,5,4,7,12,6,12,8,11,7,0,5,0,1,11,12,9,13,7,15,2,1,14,10,2,15,7,4,11,2,11,7,9,13,0,15,0,12,15,15,1,9,3,8,15,2,0,1,12,10,5,9,14,7,5,13,9,10,14,6,14,8,10,7,15,3,7,5,12,2,4,5,6,6,0,11,0,3,11,7,13,14,15,11,7,7,6,9,5,15,1,14,6,6,9,1,8,15,9,14,14,5,15,4,11,11,13,10,11,2,14,5,12,8,5,14,4,5,8,6,11,2,15,4,0,0,6,14,12,1,6,7,2,1,2,6,9,8,4,11,14,10,11,9,6,8,3,3,10,4,6,1,1,12,14,3,1,8,4,4,15,3,6,10,6,12,5,13,5,7,8,12,14,12,13,14,6,7,8,12,2,15,12,9,3,11,12,6,7,13,6,5,12,4,13,0,7,4,7,6,6,15,11,11,12,7,11,2,6,10,7,8,11,3,8,6,8,10,2,7,7,6,6,1,8,4,12,9,14,9,11,4,2,1,12,1,8,15,4,4,7,9,14,10,7,8,5,7,2,11,5,13,4,5,3,2,11,4,1,3,15,12,6,10,6,11,15,10,4,14,10,11,9,9,5,10,12,13,4,14,5,15,12,3,0,1,9,6,9,1,14,1,15,8,11,9,1,12,13,13,15,2,6,11,9,12,5,7,6,6,11,15,6,5,3,0,14,2,0,1,13,13,1,15,13,3,4,15,0,10,12,5,10,10,14,11,2,12,5,12,2,6,5,6,5,14,5,0,2,11,13,7,10,2,13,15,3,9,13,12,3,1,8,4,14,5,14,10,10,11,3,0,5,8,0,11,13,7,11,11,13,9,9,2,8,12,5,4,9,1,12,14,15,2,4,9,5,7,14,7,12,14,10,7,10,7,3,0,8,0,9,10,3,3,11,4,0,14,3,3,11,0,5,0,11,5,6,8,1,14,3,5,10,13,9,7,3,0,6,15,7,4,5,15,7,4,0,2,7,5,15,12,15,4,11,14,5,1,11,3,11,9,10,11,5,7,15,11,14,14,4,2,7,6,1,10,13,9,5,2,1", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"14\", \"10\"], \"clip_start\": 163.0, \"clip_end\": 166.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q12_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,15,9,8,0,4,1,9,13,5,8,4,8,1,12,13,7,5,1,10,14,7,4,11,8,5,4,3,0,1,8,15,5,4,7,12,6,12,8,11,7,0,5,0,1,11,12,9,13,7,15,2,1,14,10,2,15,7,4,11,2,11,7,9,13,0,15,0,12,15,15,1,9,3,8,15,2,0,1,12,10,5,9,14,7,5,13,9,10,14,6,14,8,10,7,15,3,7,5,12,2,4,5,6,6,0,11,0,3,11,7,13,14,15,11,7,7,6,9,5,15,1,14,6,6,9,1,8,15,9,14,14,5,15,4,11,11,13,10,11,2,14,5,12,8,5,14,4,5,8,6,11,2,15,4,0,0,6,14,12,1,6,7,2,1,2,6,9,8,4,11,14,10,11,9,6,8,3,3,10,4,6,1,1,12,14,3,1,8,4,4,15,3,6,10,6,12,5,13,5,7,8,12,14,12,13,14,6,7,8,12,2,15,12,9,3,11,12,6,7,13,6,5,12,4,13,0,7,4,7,6,6,15,11,11,12,7,11,2,6,10,7,8,11,3,8,6,8,10,2,7,7,6,6,1,8,4,12,9,14,9,11,4,2,1,12,1,8,15,4,4,7,9,14,10,7,8,5,7,2,11,5,13,4,5,3,2,11,4,1,3,15,12,6,10,6,11,15,10,4,14,10,11,9,9,5,10,12,13,4,14,5,15,12,3,0,1,9,6,9,1,14,1,15,8,11,9,1,12,13,13,15,2,6,11,9,12,5,7,6,6,11,15,6,5,3,0,14,2,0,1,13,13,1,15,13,3,4,15,0,10,12,5,10,10,14,11,2,12,5,12,2,6,5,6,5,14,5,0,2,11,13,7,10,2,13,15,3,9,13,12,3,1,8,4,14,5,14,10,10,11,3,0,5,8,0,11,13,7,11,11,13,9,9,2,8,12,5,4,9,1,12,14,15,2,4,9,5,7,14,7,12,14,10,7,10,7,3,0,8,0,9,10,3,3,11,4,0,14,3,3,11,0,5,0,11,5,6,8,1,14,3,5,10,13,9,7,3,0,6,15,7,4,5,15,7,4,0,2,7,5,15,12,15,4,11,14,5,1,11,3,11,9,10,11,5,7,15,11,14,14,4,2,7,6,1,10,13,9,5,2,1", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"0\", \"6\", \"14\", \"12\"], \"clip_start\": 154.0, \"clip_end\": 160.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q13_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,15,9,8,0,4,1,9,13,5,8,4,8,1,12,13,7,5,1,10,14,7,4,11,8,5,4,3,0,1,8,15,5,4,7,12,6,12,8,11,7,0,5,0,1,11,12,9,13,7,15,2,1,14,10,2,15,7,4,11,2,11,7,9,13,0,15,0,12,15,15,1,9,3,8,15,2,0,1,12,10,5,9,14,7,5,13,9,10,14,6,14,8,10,7,15,3,7,5,12,2,4,5,6,6,0,11,0,3,11,7,13,14,15,11,7,7,6,9,5,15,1,14,6,6,9,1,8,15,9,14,14,5,15,4,11,11,13,10,11,2,14,5,12,8,5,14,4,5,8,6,11,2,15,4,0,0,6,14,12,1,6,7,2,1,2,6,9,8,4,11,14,10,11,9,6,8,3,3,10,4,6,1,1,12,14,3,1,8,4,4,15,3,6,10,6,12,5,13,5,7,8,12,14,12,13,14,6,7,8,12,2,15,12,9,3,11,12,6,7,13,6,5,12,4,13,0,7,4,7,6,6,15,11,11,12,7,11,2,6,10,7,8,11,3,8,6,8,10,2,7,7,6,6,1,8,4,12,9,14,9,11,4,2,1,12,1,8,15,4,4,7,9,14,10,7,8,5,7,2,11,5,13,4,5,3,2,11,4,1,3,15,12,6,10,6,11,15,10,4,14,10,11,9,9,5,10,12,13,4,14,5,15,12,3,0,1,9,6,9,1,14,1,15,8,11,9,1,12,13,13,15,2,6,11,9,12,5,7,6,6,11,15,6,5,3,0,14,2,0,1,13,13,1,15,13,3,4,15,0,10,12,5,10,10,14,11,2,12,5,12,2,6,5,6,5,14,5,0,2,11,13,7,10,2,13,15,3,9,13,12,3,1,8,4,14,5,14,10,10,11,3,0,5,8,0,11,13,7,11,11,13,9,9,2,8,12,5,4,9,1,12,14,15,2,4,9,5,7,14,7,12,14,10,7,10,7,3,0,8,0,9,10,3,3,11,4,0,14,3,3,11,0,5,0,11,5,6,8,1,14,3,5,10,13,9,7,3,0,6,15,7,4,5,15,7,4,0,2,7,5,15,12,15,4,11,14,5,1,11,3,11,9,10,11,5,7,15,11,14,14,4,2,7,6,1,10,13,9,5,2,1", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q13_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 19, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"14\", \"14\", \"4\", \"2\", \"7\", \"6\"], \"clip_start\": 499.0, \"clip_end\": 505.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q14_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,15,9,8,0,4,1,9,13,5,8,4,8,1,12,13,7,5,1,10,14,7,4,11,8,5,4,3,0,1,8,15,5,4,7,12,6,12,8,11,7,0,5,0,1,11,12,9,13,7,15,2,1,14,10,2,15,7,4,11,2,11,7,9,13,0,15,0,12,15,15,1,9,3,8,15,2,0,1,12,10,5,9,14,7,5,13,9,10,14,6,14,8,10,7,15,3,7,5,12,2,4,5,6,6,0,11,0,3,11,7,13,14,15,11,7,7,6,9,5,15,1,14,6,6,9,1,8,15,9,14,14,5,15,4,11,11,13,10,11,2,14,5,12,8,5,14,4,5,8,6,11,2,15,4,0,0,6,14,12,1,6,7,2,1,2,6,9,8,4,11,14,10,11,9,6,8,3,3,10,4,6,1,1,12,14,3,1,8,4,4,15,3,6,10,6,12,5,13,5,7,8,12,14,12,13,14,6,7,8,12,2,15,12,9,3,11,12,6,7,13,6,5,12,4,13,0,7,4,7,6,6,15,11,11,12,7,11,2,6,10,7,8,11,3,8,6,8,10,2,7,7,6,6,1,8,4,12,9,14,9,11,4,2,1,12,1,8,15,4,4,7,9,14,10,7,8,5,7,2,11,5,13,4,5,3,2,11,4,1,3,15,12,6,10,6,11,15,10,4,14,10,11,9,9,5,10,12,13,4,14,5,15,12,3,0,1,9,6,9,1,14,1,15,8,11,9,1,12,13,13,15,2,6,11,9,12,5,7,6,6,11,15,6,5,3,0,14,2,0,1,13,13,1,15,13,3,4,15,0,10,12,5,10,10,14,11,2,12,5,12,2,6,5,6,5,14,5,0,2,11,13,7,10,2,13,15,3,9,13,12,3,1,8,4,14,5,14,10,10,11,3,0,5,8,0,11,13,7,11,11,13,9,9,2,8,12,5,4,9,1,12,14,15,2,4,9,5,7,14,7,12,14,10,7,10,7,3,0,8,0,9,10,3,3,11,4,0,14,3,3,11,0,5,0,11,5,6,8,1,14,3,5,10,13,9,7,3,0,6,15,7,4,5,15,7,4,0,2,7,5,15,12,15,4,11,14,5,1,11,3,11,9,10,11,5,7,15,11,14,14,4,2,7,6,1,10,13,9,5,2,1", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 19, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"15\", \"2\", \"0\", \"1\"], \"clip_start\": 74.0, \"clip_end\": 79.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4", "dataset_source": "synthetic", "input_sequence": "10,15,9,8,0,4,1,9,13,5,8,4,8,1,12,13,7,5,1,10,14,7,4,11,8,5,4,3,0,1,8,15,5,4,7,12,6,12,8,11,7,0,5,0,1,11,12,9,13,7,15,2,1,14,10,2,15,7,4,11,2,11,7,9,13,0,15,0,12,15,15,1,9,3,8,15,2,0,1,12,10,5,9,14,7,5,13,9,10,14,6,14,8,10,7,15,3,7,5,12,2,4,5,6,6,0,11,0,3,11,7,13,14,15,11,7,7,6,9,5,15,1,14,6,6,9,1,8,15,9,14,14,5,15,4,11,11,13,10,11,2,14,5,12,8,5,14,4,5,8,6,11,2,15,4,0,0,6,14,12,1,6,7,2,1,2,6,9,8,4,11,14,10,11,9,6,8,3,3,10,4,6,1,1,12,14,3,1,8,4,4,15,3,6,10,6,12,5,13,5,7,8,12,14,12,13,14,6,7,8,12,2,15,12,9,3,11,12,6,7,13,6,5,12,4,13,0,7,4,7,6,6,15,11,11,12,7,11,2,6,10,7,8,11,3,8,6,8,10,2,7,7,6,6,1,8,4,12,9,14,9,11,4,2,1,12,1,8,15,4,4,7,9,14,10,7,8,5,7,2,11,5,13,4,5,3,2,11,4,1,3,15,12,6,10,6,11,15,10,4,14,10,11,9,9,5,10,12,13,4,14,5,15,12,3,0,1,9,6,9,1,14,1,15,8,11,9,1,12,13,13,15,2,6,11,9,12,5,7,6,6,11,15,6,5,3,0,14,2,0,1,13,13,1,15,13,3,4,15,0,10,12,5,10,10,14,11,2,12,5,12,2,6,5,6,5,14,5,0,2,11,13,7,10,2,13,15,3,9,13,12,3,1,8,4,14,5,14,10,10,11,3,0,5,8,0,11,13,7,11,11,13,9,9,2,8,12,5,4,9,1,12,14,15,2,4,9,5,7,14,7,12,14,10,7,10,7,3,0,8,0,9,10,3,3,11,4,0,14,3,3,11,0,5,0,11,5,6,8,1,14,3,5,10,13,9,7,3,0,6,15,7,4,5,15,7,4,0,2,7,5,15,12,15,4,11,14,5,1,11,3,11,9,10,11,5,7,15,11,14,14,4,2,7,6,1,10,13,9,5,2,1", "source_class": null, "source_dataset": null, "video_id": "video_19_v0", "question_id": "video_19_v0_q15_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 0, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\", \"3\"], \"clip_start\": 328.0, \"clip_end\": 332.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q0_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,0,14,14,10,14,14,7,0,8,7,3,8,4,5,5,11,10,8,7,15,1,1,12,9,3,1,8,8,5,15,12,2,10,10,6,10,7,4,8,7,11,2,9,6,2,5,14,3,1,3,14,8,1,6,4,8,8,0,12,2,6,1,14,3,11,9,6,15,7,1,1,0,3,11,12,14,11,12,7,3,11,10,14,4,6,7,4,9,6,10,12,5,9,0,0,13,4,12,13,0,11,15,5,4,12,11,8,13,15,1,6,11,10,2,10,14,15,15,2,13,8,11,5,1,6,7,10,8,9,6,11,12,12,4,12,8,14,4,2,2,15,14,10,4,12,7,4,1,10,9,14,15,2,3,11,10,1,4,10,8,2,10,7,15,5,0,3,0,12,12,5,12,13,15,1,12,0,15,0,3,14,13,4,11,7,14,6,10,5,8,10,6,12,12,4,12,13,15,10,8,11,12,2,3,7,15,15,3,15,7,4,11,12,3,8,8,13,3,0,0,7,14,5,5,2,0,9,1,15,14,4,2,12,12,10,2,3,3,14,15,0,15,9,7,11,7,8,9,0,3,1,14,10,1,14,5,1,9,8,9,4,4,0,8,8,8,9,11,7,13,3,1,3,5,13,4,2,2,6,1,9,8,11,6,11,7,14,3,12,7,10,15,3,10,9,3,11,13,8,7,9,5,3,4,5,2,13,1,2,6,3,2,4,4,2,5,15,10,0,9,15,0,7,7,9,1,11,9,12,3,10,10,9,7,14,3,8,11,0,4,6,11,15,10,9,6,9,5,13,1,14,13,6,7,13,13,5,3,2,2,14,10,8,8,1,15,3,5,9,14,0,6,7,5,5,12,9,6,1,11,5,11,12,4,2,15,2,5,11,2,1,7,4,1,13,15,9,6,2,2,6,10,4,12,14,12,6,5,9,8,11,7,9,1,8,10,5,7,6,5,1,4,8,9,5,13,7,11,14,14,4,7,0,1,13,0,7,10,4,4,10,2,8,11,3,5,8,8,5,3,2,15,11,2,7,15,1,5,12,14,1,8,15,0,7,14,11,5,14,2,8,3,9,15,2,5,0,8,1,7,9,4,15,5,12,4,1,3,0,12,9,6,13,4,9,15,8,8,7,15,5,6,5,7,12,9,5,12,14,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q0_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 1, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"4\", \"5\", \"2\"], \"clip_start\": 304.0, \"clip_end\": 308.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q1_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,0,14,14,10,14,14,7,0,8,7,3,8,4,5,5,11,10,8,7,15,1,1,12,9,3,1,8,8,5,15,12,2,10,10,6,10,7,4,8,7,11,2,9,6,2,5,14,3,1,3,14,8,1,6,4,8,8,0,12,2,6,1,14,3,11,9,6,15,7,1,1,0,3,11,12,14,11,12,7,3,11,10,14,4,6,7,4,9,6,10,12,5,9,0,0,13,4,12,13,0,11,15,5,4,12,11,8,13,15,1,6,11,10,2,10,14,15,15,2,13,8,11,5,1,6,7,10,8,9,6,11,12,12,4,12,8,14,4,2,2,15,14,10,4,12,7,4,1,10,9,14,15,2,3,11,10,1,4,10,8,2,10,7,15,5,0,3,0,12,12,5,12,13,15,1,12,0,15,0,3,14,13,4,11,7,14,6,10,5,8,10,6,12,12,4,12,13,15,10,8,11,12,2,3,7,15,15,3,15,7,4,11,12,3,8,8,13,3,0,0,7,14,5,5,2,0,9,1,15,14,4,2,12,12,10,2,3,3,14,15,0,15,9,7,11,7,8,9,0,3,1,14,10,1,14,5,1,9,8,9,4,4,0,8,8,8,9,11,7,13,3,1,3,5,13,4,2,2,6,1,9,8,11,6,11,7,14,3,12,7,10,15,3,10,9,3,11,13,8,7,9,5,3,4,5,2,13,1,2,6,3,2,4,4,2,5,15,10,0,9,15,0,7,7,9,1,11,9,12,3,10,10,9,7,14,3,8,11,0,4,6,11,15,10,9,6,9,5,13,1,14,13,6,7,13,13,5,3,2,2,14,10,8,8,1,15,3,5,9,14,0,6,7,5,5,12,9,6,1,11,5,11,12,4,2,15,2,5,11,2,1,7,4,1,13,15,9,6,2,2,6,10,4,12,14,12,6,5,9,8,11,7,9,1,8,10,5,7,6,5,1,4,8,9,5,13,7,11,14,14,4,7,0,1,13,0,7,10,4,4,10,2,8,11,3,5,8,8,5,3,2,15,11,2,7,15,1,5,12,14,1,8,15,0,7,14,11,5,14,2,8,3,9,15,2,5,0,8,1,7,9,4,15,5,12,4,1,3,0,12,9,6,13,4,9,15,8,8,7,15,5,6,5,7,12,9,5,12,14,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q1_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 2, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"14\", \"15\"], \"clip_start\": 20.0, \"clip_end\": 23.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q2_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,0,14,14,10,14,14,7,0,8,7,3,8,4,5,5,11,10,8,7,15,1,1,12,9,3,1,8,8,5,15,12,2,10,10,6,10,7,4,8,7,11,2,9,6,2,5,14,3,1,3,14,8,1,6,4,8,8,0,12,2,6,1,14,3,11,9,6,15,7,1,1,0,3,11,12,14,11,12,7,3,11,10,14,4,6,7,4,9,6,10,12,5,9,0,0,13,4,12,13,0,11,15,5,4,12,11,8,13,15,1,6,11,10,2,10,14,15,15,2,13,8,11,5,1,6,7,10,8,9,6,11,12,12,4,12,8,14,4,2,2,15,14,10,4,12,7,4,1,10,9,14,15,2,3,11,10,1,4,10,8,2,10,7,15,5,0,3,0,12,12,5,12,13,15,1,12,0,15,0,3,14,13,4,11,7,14,6,10,5,8,10,6,12,12,4,12,13,15,10,8,11,12,2,3,7,15,15,3,15,7,4,11,12,3,8,8,13,3,0,0,7,14,5,5,2,0,9,1,15,14,4,2,12,12,10,2,3,3,14,15,0,15,9,7,11,7,8,9,0,3,1,14,10,1,14,5,1,9,8,9,4,4,0,8,8,8,9,11,7,13,3,1,3,5,13,4,2,2,6,1,9,8,11,6,11,7,14,3,12,7,10,15,3,10,9,3,11,13,8,7,9,5,3,4,5,2,13,1,2,6,3,2,4,4,2,5,15,10,0,9,15,0,7,7,9,1,11,9,12,3,10,10,9,7,14,3,8,11,0,4,6,11,15,10,9,6,9,5,13,1,14,13,6,7,13,13,5,3,2,2,14,10,8,8,1,15,3,5,9,14,0,6,7,5,5,12,9,6,1,11,5,11,12,4,2,15,2,5,11,2,1,7,4,1,13,15,9,6,2,2,6,10,4,12,14,12,6,5,9,8,11,7,9,1,8,10,5,7,6,5,1,4,8,9,5,13,7,11,14,14,4,7,0,1,13,0,7,10,4,4,10,2,8,11,3,5,8,8,5,3,2,15,11,2,7,15,1,5,12,14,1,8,15,0,7,14,11,5,14,2,8,3,9,15,2,5,0,8,1,7,9,4,15,5,12,4,1,3,0,12,9,6,13,4,9,15,8,8,7,15,5,6,5,7,12,9,5,12,14,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q2_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 3, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"3\", \"11\", \"13\", \"8\"], \"clip_start\": 297.0, \"clip_end\": 301.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q3_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,0,14,14,10,14,14,7,0,8,7,3,8,4,5,5,11,10,8,7,15,1,1,12,9,3,1,8,8,5,15,12,2,10,10,6,10,7,4,8,7,11,2,9,6,2,5,14,3,1,3,14,8,1,6,4,8,8,0,12,2,6,1,14,3,11,9,6,15,7,1,1,0,3,11,12,14,11,12,7,3,11,10,14,4,6,7,4,9,6,10,12,5,9,0,0,13,4,12,13,0,11,15,5,4,12,11,8,13,15,1,6,11,10,2,10,14,15,15,2,13,8,11,5,1,6,7,10,8,9,6,11,12,12,4,12,8,14,4,2,2,15,14,10,4,12,7,4,1,10,9,14,15,2,3,11,10,1,4,10,8,2,10,7,15,5,0,3,0,12,12,5,12,13,15,1,12,0,15,0,3,14,13,4,11,7,14,6,10,5,8,10,6,12,12,4,12,13,15,10,8,11,12,2,3,7,15,15,3,15,7,4,11,12,3,8,8,13,3,0,0,7,14,5,5,2,0,9,1,15,14,4,2,12,12,10,2,3,3,14,15,0,15,9,7,11,7,8,9,0,3,1,14,10,1,14,5,1,9,8,9,4,4,0,8,8,8,9,11,7,13,3,1,3,5,13,4,2,2,6,1,9,8,11,6,11,7,14,3,12,7,10,15,3,10,9,3,11,13,8,7,9,5,3,4,5,2,13,1,2,6,3,2,4,4,2,5,15,10,0,9,15,0,7,7,9,1,11,9,12,3,10,10,9,7,14,3,8,11,0,4,6,11,15,10,9,6,9,5,13,1,14,13,6,7,13,13,5,3,2,2,14,10,8,8,1,15,3,5,9,14,0,6,7,5,5,12,9,6,1,11,5,11,12,4,2,15,2,5,11,2,1,7,4,1,13,15,9,6,2,2,6,10,4,12,14,12,6,5,9,8,11,7,9,1,8,10,5,7,6,5,1,4,8,9,5,13,7,11,14,14,4,7,0,1,13,0,7,10,4,4,10,2,8,11,3,5,8,8,5,3,2,15,11,2,7,15,1,5,12,14,1,8,15,0,7,14,11,5,14,2,8,3,9,15,2,5,0,8,1,7,9,4,15,5,12,4,1,3,0,12,9,6,13,4,9,15,8,8,7,15,5,6,5,7,12,9,5,12,14,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q3_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 4, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"2\", \"1\", \"7\"], \"clip_start\": 390.0, \"clip_end\": 394.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q4_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,0,14,14,10,14,14,7,0,8,7,3,8,4,5,5,11,10,8,7,15,1,1,12,9,3,1,8,8,5,15,12,2,10,10,6,10,7,4,8,7,11,2,9,6,2,5,14,3,1,3,14,8,1,6,4,8,8,0,12,2,6,1,14,3,11,9,6,15,7,1,1,0,3,11,12,14,11,12,7,3,11,10,14,4,6,7,4,9,6,10,12,5,9,0,0,13,4,12,13,0,11,15,5,4,12,11,8,13,15,1,6,11,10,2,10,14,15,15,2,13,8,11,5,1,6,7,10,8,9,6,11,12,12,4,12,8,14,4,2,2,15,14,10,4,12,7,4,1,10,9,14,15,2,3,11,10,1,4,10,8,2,10,7,15,5,0,3,0,12,12,5,12,13,15,1,12,0,15,0,3,14,13,4,11,7,14,6,10,5,8,10,6,12,12,4,12,13,15,10,8,11,12,2,3,7,15,15,3,15,7,4,11,12,3,8,8,13,3,0,0,7,14,5,5,2,0,9,1,15,14,4,2,12,12,10,2,3,3,14,15,0,15,9,7,11,7,8,9,0,3,1,14,10,1,14,5,1,9,8,9,4,4,0,8,8,8,9,11,7,13,3,1,3,5,13,4,2,2,6,1,9,8,11,6,11,7,14,3,12,7,10,15,3,10,9,3,11,13,8,7,9,5,3,4,5,2,13,1,2,6,3,2,4,4,2,5,15,10,0,9,15,0,7,7,9,1,11,9,12,3,10,10,9,7,14,3,8,11,0,4,6,11,15,10,9,6,9,5,13,1,14,13,6,7,13,13,5,3,2,2,14,10,8,8,1,15,3,5,9,14,0,6,7,5,5,12,9,6,1,11,5,11,12,4,2,15,2,5,11,2,1,7,4,1,13,15,9,6,2,2,6,10,4,12,14,12,6,5,9,8,11,7,9,1,8,10,5,7,6,5,1,4,8,9,5,13,7,11,14,14,4,7,0,1,13,0,7,10,4,4,10,2,8,11,3,5,8,8,5,3,2,15,11,2,7,15,1,5,12,14,1,8,15,0,7,14,11,5,14,2,8,3,9,15,2,5,0,8,1,7,9,4,15,5,12,4,1,3,0,12,9,6,13,4,9,15,8,8,7,15,5,6,5,7,12,9,5,12,14,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q4_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 5, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"9\", \"11\", \"7\", \"13\"], \"clip_start\": 267.0, \"clip_end\": 272.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q5_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,0,14,14,10,14,14,7,0,8,7,3,8,4,5,5,11,10,8,7,15,1,1,12,9,3,1,8,8,5,15,12,2,10,10,6,10,7,4,8,7,11,2,9,6,2,5,14,3,1,3,14,8,1,6,4,8,8,0,12,2,6,1,14,3,11,9,6,15,7,1,1,0,3,11,12,14,11,12,7,3,11,10,14,4,6,7,4,9,6,10,12,5,9,0,0,13,4,12,13,0,11,15,5,4,12,11,8,13,15,1,6,11,10,2,10,14,15,15,2,13,8,11,5,1,6,7,10,8,9,6,11,12,12,4,12,8,14,4,2,2,15,14,10,4,12,7,4,1,10,9,14,15,2,3,11,10,1,4,10,8,2,10,7,15,5,0,3,0,12,12,5,12,13,15,1,12,0,15,0,3,14,13,4,11,7,14,6,10,5,8,10,6,12,12,4,12,13,15,10,8,11,12,2,3,7,15,15,3,15,7,4,11,12,3,8,8,13,3,0,0,7,14,5,5,2,0,9,1,15,14,4,2,12,12,10,2,3,3,14,15,0,15,9,7,11,7,8,9,0,3,1,14,10,1,14,5,1,9,8,9,4,4,0,8,8,8,9,11,7,13,3,1,3,5,13,4,2,2,6,1,9,8,11,6,11,7,14,3,12,7,10,15,3,10,9,3,11,13,8,7,9,5,3,4,5,2,13,1,2,6,3,2,4,4,2,5,15,10,0,9,15,0,7,7,9,1,11,9,12,3,10,10,9,7,14,3,8,11,0,4,6,11,15,10,9,6,9,5,13,1,14,13,6,7,13,13,5,3,2,2,14,10,8,8,1,15,3,5,9,14,0,6,7,5,5,12,9,6,1,11,5,11,12,4,2,15,2,5,11,2,1,7,4,1,13,15,9,6,2,2,6,10,4,12,14,12,6,5,9,8,11,7,9,1,8,10,5,7,6,5,1,4,8,9,5,13,7,11,14,14,4,7,0,1,13,0,7,10,4,4,10,2,8,11,3,5,8,8,5,3,2,15,11,2,7,15,1,5,12,14,1,8,15,0,7,14,11,5,14,2,8,3,9,15,2,5,0,8,1,7,9,4,15,5,12,4,1,3,0,12,9,6,13,4,9,15,8,8,7,15,5,6,5,7,12,9,5,12,14,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q5_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 6, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"0\", \"12\", \"2\", \"6\"], \"clip_start\": 58.0, \"clip_end\": 63.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q6_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,0,14,14,10,14,14,7,0,8,7,3,8,4,5,5,11,10,8,7,15,1,1,12,9,3,1,8,8,5,15,12,2,10,10,6,10,7,4,8,7,11,2,9,6,2,5,14,3,1,3,14,8,1,6,4,8,8,0,12,2,6,1,14,3,11,9,6,15,7,1,1,0,3,11,12,14,11,12,7,3,11,10,14,4,6,7,4,9,6,10,12,5,9,0,0,13,4,12,13,0,11,15,5,4,12,11,8,13,15,1,6,11,10,2,10,14,15,15,2,13,8,11,5,1,6,7,10,8,9,6,11,12,12,4,12,8,14,4,2,2,15,14,10,4,12,7,4,1,10,9,14,15,2,3,11,10,1,4,10,8,2,10,7,15,5,0,3,0,12,12,5,12,13,15,1,12,0,15,0,3,14,13,4,11,7,14,6,10,5,8,10,6,12,12,4,12,13,15,10,8,11,12,2,3,7,15,15,3,15,7,4,11,12,3,8,8,13,3,0,0,7,14,5,5,2,0,9,1,15,14,4,2,12,12,10,2,3,3,14,15,0,15,9,7,11,7,8,9,0,3,1,14,10,1,14,5,1,9,8,9,4,4,0,8,8,8,9,11,7,13,3,1,3,5,13,4,2,2,6,1,9,8,11,6,11,7,14,3,12,7,10,15,3,10,9,3,11,13,8,7,9,5,3,4,5,2,13,1,2,6,3,2,4,4,2,5,15,10,0,9,15,0,7,7,9,1,11,9,12,3,10,10,9,7,14,3,8,11,0,4,6,11,15,10,9,6,9,5,13,1,14,13,6,7,13,13,5,3,2,2,14,10,8,8,1,15,3,5,9,14,0,6,7,5,5,12,9,6,1,11,5,11,12,4,2,15,2,5,11,2,1,7,4,1,13,15,9,6,2,2,6,10,4,12,14,12,6,5,9,8,11,7,9,1,8,10,5,7,6,5,1,4,8,9,5,13,7,11,14,14,4,7,0,1,13,0,7,10,4,4,10,2,8,11,3,5,8,8,5,3,2,15,11,2,7,15,1,5,12,14,1,8,15,0,7,14,11,5,14,2,8,3,9,15,2,5,0,8,1,7,9,4,15,5,12,4,1,3,0,12,9,6,13,4,9,15,8,8,7,15,5,6,5,7,12,9,5,12,14,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q6_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 7, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"9\", \"3\", \"1\", \"8\"], \"clip_start\": 24.0, \"clip_end\": 29.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q7_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,0,14,14,10,14,14,7,0,8,7,3,8,4,5,5,11,10,8,7,15,1,1,12,9,3,1,8,8,5,15,12,2,10,10,6,10,7,4,8,7,11,2,9,6,2,5,14,3,1,3,14,8,1,6,4,8,8,0,12,2,6,1,14,3,11,9,6,15,7,1,1,0,3,11,12,14,11,12,7,3,11,10,14,4,6,7,4,9,6,10,12,5,9,0,0,13,4,12,13,0,11,15,5,4,12,11,8,13,15,1,6,11,10,2,10,14,15,15,2,13,8,11,5,1,6,7,10,8,9,6,11,12,12,4,12,8,14,4,2,2,15,14,10,4,12,7,4,1,10,9,14,15,2,3,11,10,1,4,10,8,2,10,7,15,5,0,3,0,12,12,5,12,13,15,1,12,0,15,0,3,14,13,4,11,7,14,6,10,5,8,10,6,12,12,4,12,13,15,10,8,11,12,2,3,7,15,15,3,15,7,4,11,12,3,8,8,13,3,0,0,7,14,5,5,2,0,9,1,15,14,4,2,12,12,10,2,3,3,14,15,0,15,9,7,11,7,8,9,0,3,1,14,10,1,14,5,1,9,8,9,4,4,0,8,8,8,9,11,7,13,3,1,3,5,13,4,2,2,6,1,9,8,11,6,11,7,14,3,12,7,10,15,3,10,9,3,11,13,8,7,9,5,3,4,5,2,13,1,2,6,3,2,4,4,2,5,15,10,0,9,15,0,7,7,9,1,11,9,12,3,10,10,9,7,14,3,8,11,0,4,6,11,15,10,9,6,9,5,13,1,14,13,6,7,13,13,5,3,2,2,14,10,8,8,1,15,3,5,9,14,0,6,7,5,5,12,9,6,1,11,5,11,12,4,2,15,2,5,11,2,1,7,4,1,13,15,9,6,2,2,6,10,4,12,14,12,6,5,9,8,11,7,9,1,8,10,5,7,6,5,1,4,8,9,5,13,7,11,14,14,4,7,0,1,13,0,7,10,4,4,10,2,8,11,3,5,8,8,5,3,2,15,11,2,7,15,1,5,12,14,1,8,15,0,7,14,11,5,14,2,8,3,9,15,2,5,0,8,1,7,9,4,15,5,12,4,1,3,0,12,9,6,13,4,9,15,8,8,7,15,5,6,5,7,12,9,5,12,14,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q7_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 8, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"8\", \"11\", \"3\", \"5\", \"8\", \"8\"], \"clip_start\": 444.0, \"clip_end\": 450.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q8_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,0,14,14,10,14,14,7,0,8,7,3,8,4,5,5,11,10,8,7,15,1,1,12,9,3,1,8,8,5,15,12,2,10,10,6,10,7,4,8,7,11,2,9,6,2,5,14,3,1,3,14,8,1,6,4,8,8,0,12,2,6,1,14,3,11,9,6,15,7,1,1,0,3,11,12,14,11,12,7,3,11,10,14,4,6,7,4,9,6,10,12,5,9,0,0,13,4,12,13,0,11,15,5,4,12,11,8,13,15,1,6,11,10,2,10,14,15,15,2,13,8,11,5,1,6,7,10,8,9,6,11,12,12,4,12,8,14,4,2,2,15,14,10,4,12,7,4,1,10,9,14,15,2,3,11,10,1,4,10,8,2,10,7,15,5,0,3,0,12,12,5,12,13,15,1,12,0,15,0,3,14,13,4,11,7,14,6,10,5,8,10,6,12,12,4,12,13,15,10,8,11,12,2,3,7,15,15,3,15,7,4,11,12,3,8,8,13,3,0,0,7,14,5,5,2,0,9,1,15,14,4,2,12,12,10,2,3,3,14,15,0,15,9,7,11,7,8,9,0,3,1,14,10,1,14,5,1,9,8,9,4,4,0,8,8,8,9,11,7,13,3,1,3,5,13,4,2,2,6,1,9,8,11,6,11,7,14,3,12,7,10,15,3,10,9,3,11,13,8,7,9,5,3,4,5,2,13,1,2,6,3,2,4,4,2,5,15,10,0,9,15,0,7,7,9,1,11,9,12,3,10,10,9,7,14,3,8,11,0,4,6,11,15,10,9,6,9,5,13,1,14,13,6,7,13,13,5,3,2,2,14,10,8,8,1,15,3,5,9,14,0,6,7,5,5,12,9,6,1,11,5,11,12,4,2,15,2,5,11,2,1,7,4,1,13,15,9,6,2,2,6,10,4,12,14,12,6,5,9,8,11,7,9,1,8,10,5,7,6,5,1,4,8,9,5,13,7,11,14,14,4,7,0,1,13,0,7,10,4,4,10,2,8,11,3,5,8,8,5,3,2,15,11,2,7,15,1,5,12,14,1,8,15,0,7,14,11,5,14,2,8,3,9,15,2,5,0,8,1,7,9,4,15,5,12,4,1,3,0,12,9,6,13,4,9,15,8,8,7,15,5,6,5,7,12,9,5,12,14,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q8_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 9, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"12\", \"14\", \"12\", \"6\", \"5\"], \"clip_start\": 405.0, \"clip_end\": 410.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q9_false_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,0,14,14,10,14,14,7,0,8,7,3,8,4,5,5,11,10,8,7,15,1,1,12,9,3,1,8,8,5,15,12,2,10,10,6,10,7,4,8,7,11,2,9,6,2,5,14,3,1,3,14,8,1,6,4,8,8,0,12,2,6,1,14,3,11,9,6,15,7,1,1,0,3,11,12,14,11,12,7,3,11,10,14,4,6,7,4,9,6,10,12,5,9,0,0,13,4,12,13,0,11,15,5,4,12,11,8,13,15,1,6,11,10,2,10,14,15,15,2,13,8,11,5,1,6,7,10,8,9,6,11,12,12,4,12,8,14,4,2,2,15,14,10,4,12,7,4,1,10,9,14,15,2,3,11,10,1,4,10,8,2,10,7,15,5,0,3,0,12,12,5,12,13,15,1,12,0,15,0,3,14,13,4,11,7,14,6,10,5,8,10,6,12,12,4,12,13,15,10,8,11,12,2,3,7,15,15,3,15,7,4,11,12,3,8,8,13,3,0,0,7,14,5,5,2,0,9,1,15,14,4,2,12,12,10,2,3,3,14,15,0,15,9,7,11,7,8,9,0,3,1,14,10,1,14,5,1,9,8,9,4,4,0,8,8,8,9,11,7,13,3,1,3,5,13,4,2,2,6,1,9,8,11,6,11,7,14,3,12,7,10,15,3,10,9,3,11,13,8,7,9,5,3,4,5,2,13,1,2,6,3,2,4,4,2,5,15,10,0,9,15,0,7,7,9,1,11,9,12,3,10,10,9,7,14,3,8,11,0,4,6,11,15,10,9,6,9,5,13,1,14,13,6,7,13,13,5,3,2,2,14,10,8,8,1,15,3,5,9,14,0,6,7,5,5,12,9,6,1,11,5,11,12,4,2,15,2,5,11,2,1,7,4,1,13,15,9,6,2,2,6,10,4,12,14,12,6,5,9,8,11,7,9,1,8,10,5,7,6,5,1,4,8,9,5,13,7,11,14,14,4,7,0,1,13,0,7,10,4,4,10,2,8,11,3,5,8,8,5,3,2,15,11,2,7,15,1,5,12,14,1,8,15,0,7,14,11,5,14,2,8,3,9,15,2,5,0,8,1,7,9,4,15,5,12,4,1,3,0,12,9,6,13,4,9,15,8,8,7,15,5,6,5,7,12,9,5,12,14,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q9_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 10, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"11\", \"3\", \"5\", \"8\"], \"clip_start\": 445.0, \"clip_end\": 449.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q10_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,0,14,14,10,14,14,7,0,8,7,3,8,4,5,5,11,10,8,7,15,1,1,12,9,3,1,8,8,5,15,12,2,10,10,6,10,7,4,8,7,11,2,9,6,2,5,14,3,1,3,14,8,1,6,4,8,8,0,12,2,6,1,14,3,11,9,6,15,7,1,1,0,3,11,12,14,11,12,7,3,11,10,14,4,6,7,4,9,6,10,12,5,9,0,0,13,4,12,13,0,11,15,5,4,12,11,8,13,15,1,6,11,10,2,10,14,15,15,2,13,8,11,5,1,6,7,10,8,9,6,11,12,12,4,12,8,14,4,2,2,15,14,10,4,12,7,4,1,10,9,14,15,2,3,11,10,1,4,10,8,2,10,7,15,5,0,3,0,12,12,5,12,13,15,1,12,0,15,0,3,14,13,4,11,7,14,6,10,5,8,10,6,12,12,4,12,13,15,10,8,11,12,2,3,7,15,15,3,15,7,4,11,12,3,8,8,13,3,0,0,7,14,5,5,2,0,9,1,15,14,4,2,12,12,10,2,3,3,14,15,0,15,9,7,11,7,8,9,0,3,1,14,10,1,14,5,1,9,8,9,4,4,0,8,8,8,9,11,7,13,3,1,3,5,13,4,2,2,6,1,9,8,11,6,11,7,14,3,12,7,10,15,3,10,9,3,11,13,8,7,9,5,3,4,5,2,13,1,2,6,3,2,4,4,2,5,15,10,0,9,15,0,7,7,9,1,11,9,12,3,10,10,9,7,14,3,8,11,0,4,6,11,15,10,9,6,9,5,13,1,14,13,6,7,13,13,5,3,2,2,14,10,8,8,1,15,3,5,9,14,0,6,7,5,5,12,9,6,1,11,5,11,12,4,2,15,2,5,11,2,1,7,4,1,13,15,9,6,2,2,6,10,4,12,14,12,6,5,9,8,11,7,9,1,8,10,5,7,6,5,1,4,8,9,5,13,7,11,14,14,4,7,0,1,13,0,7,10,4,4,10,2,8,11,3,5,8,8,5,3,2,15,11,2,7,15,1,5,12,14,1,8,15,0,7,14,11,5,14,2,8,3,9,15,2,5,0,8,1,7,9,4,15,5,12,4,1,3,0,12,9,6,13,4,9,15,8,8,7,15,5,6,5,7,12,9,5,12,14,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q10_spatial"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 11, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"1\", \"12\", \"2\", \"14\", \"7\"], \"clip_start\": 23.0, \"clip_end\": 29.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q11_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,0,14,14,10,14,14,7,0,8,7,3,8,4,5,5,11,10,8,7,15,1,1,12,9,3,1,8,8,5,15,12,2,10,10,6,10,7,4,8,7,11,2,9,6,2,5,14,3,1,3,14,8,1,6,4,8,8,0,12,2,6,1,14,3,11,9,6,15,7,1,1,0,3,11,12,14,11,12,7,3,11,10,14,4,6,7,4,9,6,10,12,5,9,0,0,13,4,12,13,0,11,15,5,4,12,11,8,13,15,1,6,11,10,2,10,14,15,15,2,13,8,11,5,1,6,7,10,8,9,6,11,12,12,4,12,8,14,4,2,2,15,14,10,4,12,7,4,1,10,9,14,15,2,3,11,10,1,4,10,8,2,10,7,15,5,0,3,0,12,12,5,12,13,15,1,12,0,15,0,3,14,13,4,11,7,14,6,10,5,8,10,6,12,12,4,12,13,15,10,8,11,12,2,3,7,15,15,3,15,7,4,11,12,3,8,8,13,3,0,0,7,14,5,5,2,0,9,1,15,14,4,2,12,12,10,2,3,3,14,15,0,15,9,7,11,7,8,9,0,3,1,14,10,1,14,5,1,9,8,9,4,4,0,8,8,8,9,11,7,13,3,1,3,5,13,4,2,2,6,1,9,8,11,6,11,7,14,3,12,7,10,15,3,10,9,3,11,13,8,7,9,5,3,4,5,2,13,1,2,6,3,2,4,4,2,5,15,10,0,9,15,0,7,7,9,1,11,9,12,3,10,10,9,7,14,3,8,11,0,4,6,11,15,10,9,6,9,5,13,1,14,13,6,7,13,13,5,3,2,2,14,10,8,8,1,15,3,5,9,14,0,6,7,5,5,12,9,6,1,11,5,11,12,4,2,15,2,5,11,2,1,7,4,1,13,15,9,6,2,2,6,10,4,12,14,12,6,5,9,8,11,7,9,1,8,10,5,7,6,5,1,4,8,9,5,13,7,11,14,14,4,7,0,1,13,0,7,10,4,4,10,2,8,11,3,5,8,8,5,3,2,15,11,2,7,15,1,5,12,14,1,8,15,0,7,14,11,5,14,2,8,3,9,15,2,5,0,8,1,7,9,4,15,5,12,4,1,3,0,12,9,6,13,4,9,15,8,8,7,15,5,6,5,7,12,9,5,12,14,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q11_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 12, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"2\", \"15\", \"11\", \"2\"], \"clip_start\": 452.0, \"clip_end\": 456.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q12_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,0,14,14,10,14,14,7,0,8,7,3,8,4,5,5,11,10,8,7,15,1,1,12,9,3,1,8,8,5,15,12,2,10,10,6,10,7,4,8,7,11,2,9,6,2,5,14,3,1,3,14,8,1,6,4,8,8,0,12,2,6,1,14,3,11,9,6,15,7,1,1,0,3,11,12,14,11,12,7,3,11,10,14,4,6,7,4,9,6,10,12,5,9,0,0,13,4,12,13,0,11,15,5,4,12,11,8,13,15,1,6,11,10,2,10,14,15,15,2,13,8,11,5,1,6,7,10,8,9,6,11,12,12,4,12,8,14,4,2,2,15,14,10,4,12,7,4,1,10,9,14,15,2,3,11,10,1,4,10,8,2,10,7,15,5,0,3,0,12,12,5,12,13,15,1,12,0,15,0,3,14,13,4,11,7,14,6,10,5,8,10,6,12,12,4,12,13,15,10,8,11,12,2,3,7,15,15,3,15,7,4,11,12,3,8,8,13,3,0,0,7,14,5,5,2,0,9,1,15,14,4,2,12,12,10,2,3,3,14,15,0,15,9,7,11,7,8,9,0,3,1,14,10,1,14,5,1,9,8,9,4,4,0,8,8,8,9,11,7,13,3,1,3,5,13,4,2,2,6,1,9,8,11,6,11,7,14,3,12,7,10,15,3,10,9,3,11,13,8,7,9,5,3,4,5,2,13,1,2,6,3,2,4,4,2,5,15,10,0,9,15,0,7,7,9,1,11,9,12,3,10,10,9,7,14,3,8,11,0,4,6,11,15,10,9,6,9,5,13,1,14,13,6,7,13,13,5,3,2,2,14,10,8,8,1,15,3,5,9,14,0,6,7,5,5,12,9,6,1,11,5,11,12,4,2,15,2,5,11,2,1,7,4,1,13,15,9,6,2,2,6,10,4,12,14,12,6,5,9,8,11,7,9,1,8,10,5,7,6,5,1,4,8,9,5,13,7,11,14,14,4,7,0,1,13,0,7,10,4,4,10,2,8,11,3,5,8,8,5,3,2,15,11,2,7,15,1,5,12,14,1,8,15,0,7,14,11,5,14,2,8,3,9,15,2,5,0,8,1,7,9,4,15,5,12,4,1,3,0,12,9,6,13,4,9,15,8,8,7,15,5,6,5,7,12,9,5,12,14,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q12_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 13, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"10\", \"0\", \"12\"], \"clip_start\": 478.0, \"clip_end\": 481.0, \"present\": false}", "answer": "no", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q13_false_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,0,14,14,10,14,14,7,0,8,7,3,8,4,5,5,11,10,8,7,15,1,1,12,9,3,1,8,8,5,15,12,2,10,10,6,10,7,4,8,7,11,2,9,6,2,5,14,3,1,3,14,8,1,6,4,8,8,0,12,2,6,1,14,3,11,9,6,15,7,1,1,0,3,11,12,14,11,12,7,3,11,10,14,4,6,7,4,9,6,10,12,5,9,0,0,13,4,12,13,0,11,15,5,4,12,11,8,13,15,1,6,11,10,2,10,14,15,15,2,13,8,11,5,1,6,7,10,8,9,6,11,12,12,4,12,8,14,4,2,2,15,14,10,4,12,7,4,1,10,9,14,15,2,3,11,10,1,4,10,8,2,10,7,15,5,0,3,0,12,12,5,12,13,15,1,12,0,15,0,3,14,13,4,11,7,14,6,10,5,8,10,6,12,12,4,12,13,15,10,8,11,12,2,3,7,15,15,3,15,7,4,11,12,3,8,8,13,3,0,0,7,14,5,5,2,0,9,1,15,14,4,2,12,12,10,2,3,3,14,15,0,15,9,7,11,7,8,9,0,3,1,14,10,1,14,5,1,9,8,9,4,4,0,8,8,8,9,11,7,13,3,1,3,5,13,4,2,2,6,1,9,8,11,6,11,7,14,3,12,7,10,15,3,10,9,3,11,13,8,7,9,5,3,4,5,2,13,1,2,6,3,2,4,4,2,5,15,10,0,9,15,0,7,7,9,1,11,9,12,3,10,10,9,7,14,3,8,11,0,4,6,11,15,10,9,6,9,5,13,1,14,13,6,7,13,13,5,3,2,2,14,10,8,8,1,15,3,5,9,14,0,6,7,5,5,12,9,6,1,11,5,11,12,4,2,15,2,5,11,2,1,7,4,1,13,15,9,6,2,2,6,10,4,12,14,12,6,5,9,8,11,7,9,1,8,10,5,7,6,5,1,4,8,9,5,13,7,11,14,14,4,7,0,1,13,0,7,10,4,4,10,2,8,11,3,5,8,8,5,3,2,15,11,2,7,15,1,5,12,14,1,8,15,0,7,14,11,5,14,2,8,3,9,15,2,5,0,8,1,7,9,4,15,5,12,4,1,3,0,12,9,6,13,4,9,15,8,8,7,15,5,6,5,7,12,9,5,12,14,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q13_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "sequential", "video_index": 20, "question_index": 14, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"5\", \"8\", \"10\"], \"clip_start\": 188.0, \"clip_end\": 193.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q14_true_sequential.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,0,14,14,10,14,14,7,0,8,7,3,8,4,5,5,11,10,8,7,15,1,1,12,9,3,1,8,8,5,15,12,2,10,10,6,10,7,4,8,7,11,2,9,6,2,5,14,3,1,3,14,8,1,6,4,8,8,0,12,2,6,1,14,3,11,9,6,15,7,1,1,0,3,11,12,14,11,12,7,3,11,10,14,4,6,7,4,9,6,10,12,5,9,0,0,13,4,12,13,0,11,15,5,4,12,11,8,13,15,1,6,11,10,2,10,14,15,15,2,13,8,11,5,1,6,7,10,8,9,6,11,12,12,4,12,8,14,4,2,2,15,14,10,4,12,7,4,1,10,9,14,15,2,3,11,10,1,4,10,8,2,10,7,15,5,0,3,0,12,12,5,12,13,15,1,12,0,15,0,3,14,13,4,11,7,14,6,10,5,8,10,6,12,12,4,12,13,15,10,8,11,12,2,3,7,15,15,3,15,7,4,11,12,3,8,8,13,3,0,0,7,14,5,5,2,0,9,1,15,14,4,2,12,12,10,2,3,3,14,15,0,15,9,7,11,7,8,9,0,3,1,14,10,1,14,5,1,9,8,9,4,4,0,8,8,8,9,11,7,13,3,1,3,5,13,4,2,2,6,1,9,8,11,6,11,7,14,3,12,7,10,15,3,10,9,3,11,13,8,7,9,5,3,4,5,2,13,1,2,6,3,2,4,4,2,5,15,10,0,9,15,0,7,7,9,1,11,9,12,3,10,10,9,7,14,3,8,11,0,4,6,11,15,10,9,6,9,5,13,1,14,13,6,7,13,13,5,3,2,2,14,10,8,8,1,15,3,5,9,14,0,6,7,5,5,12,9,6,1,11,5,11,12,4,2,15,2,5,11,2,1,7,4,1,13,15,9,6,2,2,6,10,4,12,14,12,6,5,9,8,11,7,9,1,8,10,5,7,6,5,1,4,8,9,5,13,7,11,14,14,4,7,0,1,13,0,7,10,4,4,10,2,8,11,3,5,8,8,5,3,2,15,11,2,7,15,1,5,12,14,1,8,15,0,7,14,11,5,14,2,8,3,9,15,2,5,0,8,1,7,9,4,15,5,12,4,1,3,0,12,9,6,13,4,9,15,8,8,7,15,5,6,5,7,12,9,5,12,14,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q14_sequential"} +{"subset": "substream", "bucket": "UNIFORM_EVAL_L512_NO_RULES", "source_split": "substream_video", "length_L": 512, "entropy_band": "uniform", "modality": "video", "question_variant": "spatial", "video_index": 20, "question_index": 15, "question_text": "Did this sequence appear anywhere in the video?", "candidate": "{\"sequence\": [\"6\", \"10\", \"12\", \"5\", \"9\"], \"clip_start\": 90.0, \"clip_end\": 95.0, \"present\": true}", "answer": "yes", "clip_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q15_true_spatial.mp4", "video_path": "videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4", "dataset_source": "synthetic", "input_sequence": "9,8,0,14,14,10,14,14,7,0,8,7,3,8,4,5,5,11,10,8,7,15,1,1,12,9,3,1,8,8,5,15,12,2,10,10,6,10,7,4,8,7,11,2,9,6,2,5,14,3,1,3,14,8,1,6,4,8,8,0,12,2,6,1,14,3,11,9,6,15,7,1,1,0,3,11,12,14,11,12,7,3,11,10,14,4,6,7,4,9,6,10,12,5,9,0,0,13,4,12,13,0,11,15,5,4,12,11,8,13,15,1,6,11,10,2,10,14,15,15,2,13,8,11,5,1,6,7,10,8,9,6,11,12,12,4,12,8,14,4,2,2,15,14,10,4,12,7,4,1,10,9,14,15,2,3,11,10,1,4,10,8,2,10,7,15,5,0,3,0,12,12,5,12,13,15,1,12,0,15,0,3,14,13,4,11,7,14,6,10,5,8,10,6,12,12,4,12,13,15,10,8,11,12,2,3,7,15,15,3,15,7,4,11,12,3,8,8,13,3,0,0,7,14,5,5,2,0,9,1,15,14,4,2,12,12,10,2,3,3,14,15,0,15,9,7,11,7,8,9,0,3,1,14,10,1,14,5,1,9,8,9,4,4,0,8,8,8,9,11,7,13,3,1,3,5,13,4,2,2,6,1,9,8,11,6,11,7,14,3,12,7,10,15,3,10,9,3,11,13,8,7,9,5,3,4,5,2,13,1,2,6,3,2,4,4,2,5,15,10,0,9,15,0,7,7,9,1,11,9,12,3,10,10,9,7,14,3,8,11,0,4,6,11,15,10,9,6,9,5,13,1,14,13,6,7,13,13,5,3,2,2,14,10,8,8,1,15,3,5,9,14,0,6,7,5,5,12,9,6,1,11,5,11,12,4,2,15,2,5,11,2,1,7,4,1,13,15,9,6,2,2,6,10,4,12,14,12,6,5,9,8,11,7,9,1,8,10,5,7,6,5,1,4,8,9,5,13,7,11,14,14,4,7,0,1,13,0,7,10,4,4,10,2,8,11,3,5,8,8,5,3,2,15,11,2,7,15,1,5,12,14,1,8,15,0,7,14,11,5,14,2,8,3,9,15,2,5,0,8,1,7,9,4,15,5,12,4,1,3,0,12,9,6,13,4,9,15,8,8,7,15,5,6,5,7,12,9,5,12,14,7", "source_class": null, "source_dataset": null, "video_id": "video_20_v0", "question_id": "video_20_v0_q15_spatial"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 1, "question_index": 0, "question_text": "Did the X block appear?", "candidate": "{\"sequence\": [\"12\", \"9\", \"15\", \"1\"], \"clip_start\": 117.0, \"clip_end\": 121.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_001_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_001_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,8,9,5,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,12,9,15,1,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_001_v0", "question_id": "video1_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 1, "question_index": 1, "question_text": "Did the Y block appear?", "candidate": "{\"sequence\": [\"11\", \"8\", \"9\", \"5\"], \"clip_start\": 51.0, \"clip_end\": 55.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_001_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_001_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,8,9,5,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,12,9,15,1,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_001_v0", "question_id": "video1_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 1, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"15\", \"9\", \"15\", \"1\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_001_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_001_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,8,9,5,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,12,9,15,1,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_001_v0", "question_id": "video1_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 1, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"11\", \"8\", \"12\", \"5\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_001_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_001_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,8,9,5,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,12,9,15,1,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5,11,13,11,11,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_001_v0", "question_id": "video1_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 2, "question_index": 0, "question_text": "Did the X block appear?", "candidate": "{\"sequence\": [\"0\", \"12\", \"7\"], \"clip_start\": 156.0, \"clip_end\": 159.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_002_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_002_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,0,12,7,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,15,3,3,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_002_v0", "question_id": "video2_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 2, "question_index": 1, "question_text": "Did the Y block appear?", "candidate": "{\"sequence\": [\"15\", \"3\", \"3\"], \"clip_start\": 225.0, \"clip_end\": 228.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_002_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_002_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,0,12,7,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,15,3,3,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_002_v0", "question_id": "video2_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 2, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"4\", \"12\", \"7\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_002_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_002_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,0,12,7,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,15,3,3,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_002_v0", "question_id": "video2_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 2, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"15\", \"3\", \"5\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_002_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_002_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,0,12,7,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,15,3,3,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5,15,8,15,15,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_002_v0", "question_id": "video2_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 3, "question_index": 0, "question_text": "Did the X block appear?", "candidate": "{\"sequence\": [\"11\", \"1\", \"2\", \"1\"], \"clip_start\": 173.0, \"clip_end\": 177.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_003_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_003_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,9,2,11,5,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,11,1,2,1,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6", "source_class": null, "source_dataset": null, "video_id": "len_256_video_003_v0", "question_id": "video3_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 3, "question_index": 1, "question_text": "Did the Y block appear?", "candidate": "{\"sequence\": [\"9\", \"2\", \"11\", \"5\"], \"clip_start\": 85.0, \"clip_end\": 89.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_003_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_003_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,9,2,11,5,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,11,1,2,1,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6", "source_class": null, "source_dataset": null, "video_id": "len_256_video_003_v0", "question_id": "video3_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 3, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"11\", \"15\", \"2\", \"1\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_003_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_003_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,9,2,11,5,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,11,1,2,1,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6", "source_class": null, "source_dataset": null, "video_id": "len_256_video_003_v0", "question_id": "video3_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 3, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"9\", \"10\", \"11\", \"5\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_003_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_003_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,9,2,11,5,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,11,1,2,1,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6,9,10,9,9,6", "source_class": null, "source_dataset": null, "video_id": "len_256_video_003_v0", "question_id": "video3_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 4, "question_index": 0, "question_text": "Did the X block appear?", "candidate": "{\"sequence\": [\"3\", \"15\", \"0\"], \"clip_start\": 41.0, \"clip_end\": 44.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_004_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_004_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,3,15,0,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,0,11,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13", "source_class": null, "source_dataset": null, "video_id": "len_256_video_004_v0", "question_id": "video4_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 4, "question_index": 1, "question_text": "Did the Y block appear?", "candidate": "{\"sequence\": [\"4\", \"0\", \"11\"], \"clip_start\": 81.0, \"clip_end\": 84.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_004_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_004_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,3,15,0,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,0,11,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13", "source_class": null, "source_dataset": null, "video_id": "len_256_video_004_v0", "question_id": "video4_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 4, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"3\", \"0\", \"0\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_004_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_004_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,3,15,0,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,0,11,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13", "source_class": null, "source_dataset": null, "video_id": "len_256_video_004_v0", "question_id": "video4_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 4, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_004_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_004_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,3,15,0,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,0,11,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13,4,11,4,4,13", "source_class": null, "source_dataset": null, "video_id": "len_256_video_004_v0", "question_id": "video4_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 5, "question_index": 0, "question_text": "Did the X block appear?", "candidate": "{\"sequence\": [\"10\", \"4\", \"1\"], \"clip_start\": 33.0, \"clip_end\": 36.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_005_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_005_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,15,9,15,15,12,15,9,12,3,3,0,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,10,4,1,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12", "source_class": null, "source_dataset": null, "video_id": "len_256_video_005_v0", "question_id": "video5_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 5, "question_index": 1, "question_text": "Did the Y block appear?", "candidate": "{\"sequence\": [\"12\", \"3\", \"3\", \"0\"], \"clip_start\": 8.0, \"clip_end\": 12.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_005_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_005_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,15,9,15,15,12,15,9,12,3,3,0,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,10,4,1,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12", "source_class": null, "source_dataset": null, "video_id": "len_256_video_005_v0", "question_id": "video5_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 5, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"10\", \"4\", \"7\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_005_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_005_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,15,9,15,15,12,15,9,12,3,3,0,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,10,4,1,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12", "source_class": null, "source_dataset": null, "video_id": "len_256_video_005_v0", "question_id": "video5_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 5, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"12\", \"3\", \"12\", \"0\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_005_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_005_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,15,9,15,15,12,15,9,12,3,3,0,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,10,4,1,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12,15,9,15,15,12", "source_class": null, "source_dataset": null, "video_id": "len_256_video_005_v0", "question_id": "video5_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 6, "question_index": 0, "question_text": "Did the X block appear?", "candidate": "{\"sequence\": [\"13\", \"7\", \"3\"], \"clip_start\": 2.0, \"clip_end\": 5.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_006_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_006_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "11,14,13,7,3,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,11,6,3,14,12,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_006_v0", "question_id": "video6_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 6, "question_index": 1, "question_text": "Did the Y block appear?", "candidate": "{\"sequence\": [\"11\", \"6\", \"3\", \"14\", \"12\"], \"clip_start\": 96.0, \"clip_end\": 101.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_006_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_006_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "11,14,13,7,3,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,11,6,3,14,12,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_006_v0", "question_id": "video6_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 6, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"13\", \"7\", \"0\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_006_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_006_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "11,14,13,7,3,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,11,6,3,14,12,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_006_v0", "question_id": "video6_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 6, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"11\", \"6\", \"3\", \"14\", \"11\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_006_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_006_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "11,14,13,7,3,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,11,6,3,14,12,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11,14,8,14,14,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_006_v0", "question_id": "video6_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 7, "question_index": 0, "question_text": "Did the X block appear?", "candidate": "{\"sequence\": [\"4\", \"11\", \"7\", \"6\"], \"clip_start\": 91.0, \"clip_end\": 95.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_007_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_007_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,4,11,7,6,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,3,2,14,5,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14", "source_class": null, "source_dataset": null, "video_id": "len_256_video_007_v0", "question_id": "video7_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 7, "question_index": 1, "question_text": "Did the Y block appear?", "candidate": "{\"sequence\": [\"3\", \"2\", \"14\", \"5\"], \"clip_start\": 149.0, \"clip_end\": 153.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_007_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_007_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,4,11,7,6,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,3,2,14,5,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14", "source_class": null, "source_dataset": null, "video_id": "len_256_video_007_v0", "question_id": "video7_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 7, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"6\", \"11\", \"7\", \"6\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_007_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_007_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,4,11,7,6,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,3,2,14,5,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14", "source_class": null, "source_dataset": null, "video_id": "len_256_video_007_v0", "question_id": "video7_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 7, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"1\", \"2\", \"14\", \"5\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_007_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_007_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,4,11,7,6,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,3,2,14,5,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14,14,14,14,3,14,1,14", "source_class": null, "source_dataset": null, "video_id": "len_256_video_007_v0", "question_id": "video7_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 8, "question_index": 0, "question_text": "Did the X block appear?", "candidate": "{\"sequence\": [\"11\", \"13\", \"14\", \"0\", \"15\"], \"clip_start\": 90.0, \"clip_end\": 95.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_008_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_008_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,4,2,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,11,13,14,0,15,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_008_v0", "question_id": "video8_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 8, "question_index": 1, "question_text": "Did the Y block appear?", "candidate": "{\"sequence\": [\"3\", \"4\", \"2\"], \"clip_start\": 70.0, \"clip_end\": 73.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_008_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_008_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,4,2,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,11,13,14,0,15,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_008_v0", "question_id": "video8_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 8, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"11\", \"13\", \"14\", \"0\", \"2\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_008_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_008_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,4,2,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,11,13,14,0,15,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_008_v0", "question_id": "video8_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 8, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"3\", \"4\", \"14\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_008_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_008_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,4,2,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,11,13,14,0,15,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5,5,5,5,3,5,9,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_008_v0", "question_id": "video8_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 9, "question_index": 0, "question_text": "Did the X block appear?", "candidate": "{\"sequence\": [\"12\", \"3\", \"9\", \"11\"], \"clip_start\": 173.0, \"clip_end\": 177.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_009_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_009_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,12,3,9,11,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,1,11,2,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_009_v0", "question_id": "video9_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 9, "question_index": 1, "question_text": "Did the Y block appear?", "candidate": "{\"sequence\": [\"2\", \"1\", \"11\", \"2\"], \"clip_start\": 210.0, \"clip_end\": 214.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_009_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_009_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,12,3,9,11,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,1,11,2,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_009_v0", "question_id": "video9_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 9, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"8\", \"3\", \"9\", \"11\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_009_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_009_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,12,3,9,11,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,1,11,2,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_009_v0", "question_id": "video9_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 9, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"2\", \"1\", \"11\", \"0\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_009_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_009_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,12,3,9,11,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,1,11,2,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2,10,0,10,10,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_009_v0", "question_id": "video9_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 10, "question_index": 0, "question_text": "Did the X block appear?", "candidate": "{\"sequence\": [\"3\", \"12\", \"1\", \"12\"], \"clip_start\": 94.0, \"clip_end\": 98.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_010_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_010_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,3,12,1,12,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,0,11,12,15,0,10,0,0,15", "source_class": null, "source_dataset": null, "video_id": "len_256_video_010_v0", "question_id": "video10_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 10, "question_index": 1, "question_text": "Did the Y block appear?", "candidate": "{\"sequence\": [\"0\", \"11\", \"12\"], \"clip_start\": 247.0, \"clip_end\": 250.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_010_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_010_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,3,12,1,12,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,0,11,12,15,0,10,0,0,15", "source_class": null, "source_dataset": null, "video_id": "len_256_video_010_v0", "question_id": "video10_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 10, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"3\", \"12\", \"1\", \"14\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_010_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_010_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,3,12,1,12,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,0,11,12,15,0,10,0,0,15", "source_class": null, "source_dataset": null, "video_id": "len_256_video_010_v0", "question_id": "video10_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 10, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"0\", \"11\", \"13\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_010_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_010_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,3,12,1,12,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,10,0,0,15,0,0,11,12,15,0,10,0,0,15", "source_class": null, "source_dataset": null, "video_id": "len_256_video_010_v0", "question_id": "video10_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 11, "question_index": 0, "question_text": "Did the X block appear?", "candidate": "{\"sequence\": [\"2\", \"4\", \"10\"], \"clip_start\": 167.0, \"clip_end\": 170.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_011_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_011_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,14,7,14,10,4,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,2,4,10,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_011_v0", "question_id": "video11_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 11, "question_index": 1, "question_text": "Did the Y block appear?", "candidate": "{\"sequence\": [\"14\", \"7\", \"14\", \"10\", \"4\"], \"clip_start\": 95.0, \"clip_end\": 100.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_011_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_011_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,14,7,14,10,4,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,2,4,10,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_011_v0", "question_id": "video11_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 11, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"5\", \"4\", \"10\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_011_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_011_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,14,7,14,10,4,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,2,4,10,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_011_v0", "question_id": "video11_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 11, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"14\", \"7\", \"9\", \"10\", \"4\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_011_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_011_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,14,7,14,10,4,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,2,4,10,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11,11,11,11,14,11,15,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_011_v0", "question_id": "video11_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 12, "question_index": 0, "question_text": "Did the X block appear?", "candidate": "{\"sequence\": [\"5\", \"2\", \"4\"], \"clip_start\": 164.0, \"clip_end\": 167.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_012_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_012_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,5,2,4,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,5,2,3,12,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15", "source_class": null, "source_dataset": null, "video_id": "len_256_video_012_v0", "question_id": "video12_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 12, "question_index": 1, "question_text": "Did the Y block appear?", "candidate": "{\"sequence\": [\"8\", \"5\", \"2\", \"3\", \"12\"], \"clip_start\": 198.0, \"clip_end\": 203.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_012_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_012_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,5,2,4,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,5,2,3,12,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15", "source_class": null, "source_dataset": null, "video_id": "len_256_video_012_v0", "question_id": "video12_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 12, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"5\", \"2\", \"1\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_012_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_012_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,5,2,4,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,5,2,3,12,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15", "source_class": null, "source_dataset": null, "video_id": "len_256_video_012_v0", "question_id": "video12_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 12, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"8\", \"5\", \"2\", \"4\", \"12\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_012_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_012_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,5,2,4,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,5,2,3,12,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15,15,15,8,15,14,15", "source_class": null, "source_dataset": null, "video_id": "len_256_video_012_v0", "question_id": "video12_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 13, "question_index": 0, "question_text": "Did the X block appear?", "candidate": "{\"sequence\": [\"0\", \"1\", \"14\", \"3\", \"0\"], \"clip_start\": 50.0, \"clip_end\": 55.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_013_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_013_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,0,1,14,3,0,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,3,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7", "source_class": null, "source_dataset": null, "video_id": "len_256_video_013_v0", "question_id": "video13_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 13, "question_index": 1, "question_text": "Did the Y block appear?", "candidate": "{\"sequence\": [\"7\", \"3\", \"15\"], \"clip_start\": 166.0, \"clip_end\": 169.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_013_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_013_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,0,1,14,3,0,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,3,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7", "source_class": null, "source_dataset": null, "video_id": "len_256_video_013_v0", "question_id": "video13_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 13, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"0\", \"1\", \"14\", \"3\", \"14\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_013_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_013_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,0,1,14,3,0,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,3,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7", "source_class": null, "source_dataset": null, "video_id": "len_256_video_013_v0", "question_id": "video13_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 13, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"14\", \"3\", \"15\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_013_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_013_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,0,1,14,3,0,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,3,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7,7,7,7,15,7,11,7", "source_class": null, "source_dataset": null, "video_id": "len_256_video_013_v0", "question_id": "video13_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 14, "question_index": 0, "question_text": "Did the unique X sequence appear?", "candidate": "{\"sequence\": [\"7\", \"11\", \"5\", \"15\"], \"clip_start\": 79.0, \"clip_end\": 83.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_014_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_014_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,7,11,5,15,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,4,10,5,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_014_v0", "question_id": "video14_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 14, "question_index": 1, "question_text": "Did the unique Y sequence appear?", "candidate": "{\"sequence\": [\"4\", \"10\", \"5\"], \"clip_start\": 137.0, \"clip_end\": 140.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_014_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_014_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,7,11,5,15,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,4,10,5,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_014_v0", "question_id": "video14_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 14, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"7\", \"11\", \"11\", \"15\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_014_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_014_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,7,11,5,15,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,4,10,5,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_014_v0", "question_id": "video14_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 14, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"4\", \"10\", \"9\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_014_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_014_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,7,11,5,15,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,4,10,5,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4,9,14,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_014_v0", "question_id": "video14_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 15, "question_index": 0, "question_text": "Did the unique X sequence appear?", "candidate": "{\"sequence\": [\"11\", \"2\", \"9\", \"8\", \"8\"], \"clip_start\": 205.0, \"clip_end\": 210.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_015_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_015_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,5,8,10,10,4,7,10,4,7,10,4,11,2,9,8,8,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_015_v0", "question_id": "video15_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 15, "question_index": 1, "question_text": "Did the unique Y sequence appear?", "candidate": "{\"sequence\": [\"7\", \"5\", \"8\", \"10\"], \"clip_start\": 193.0, \"clip_end\": 197.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_015_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_015_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,5,8,10,10,4,7,10,4,7,10,4,11,2,9,8,8,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_015_v0", "question_id": "video15_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 15, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"11\", \"2\", \"11\", \"8\", \"8\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_015_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_015_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,5,8,10,10,4,7,10,4,7,10,4,11,2,9,8,8,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_015_v0", "question_id": "video15_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 15, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"7\", \"4\", \"8\", \"10\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_015_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_015_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,5,8,10,10,4,7,10,4,7,10,4,11,2,9,8,8,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4,7,10,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_015_v0", "question_id": "video15_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 16, "question_index": 0, "question_text": "Did the unique X sequence appear?", "candidate": "{\"sequence\": [\"0\", \"7\", \"1\", \"7\", \"9\"], \"clip_start\": 156.0, \"clip_end\": 161.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_016_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_016_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,0,7,1,7,9,10,8,9,1,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6", "source_class": null, "source_dataset": null, "video_id": "len_256_video_016_v0", "question_id": "video16_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 16, "question_index": 1, "question_text": "Did the unique Y sequence appear?", "candidate": "{\"sequence\": [\"8\", \"9\", \"1\"], \"clip_start\": 162.0, \"clip_end\": 165.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_016_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_016_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,0,7,1,7,9,10,8,9,1,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6", "source_class": null, "source_dataset": null, "video_id": "len_256_video_016_v0", "question_id": "video16_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 16, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"1\", \"7\", \"1\", \"7\", \"9\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_016_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_016_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,0,7,1,7,9,10,8,9,1,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6", "source_class": null, "source_dataset": null, "video_id": "len_256_video_016_v0", "question_id": "video16_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 16, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"8\", \"2\", \"1\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_016_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_016_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,0,7,1,7,9,10,8,9,1,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6", "source_class": null, "source_dataset": null, "video_id": "len_256_video_016_v0", "question_id": "video16_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 17, "question_index": 0, "question_text": "Did the unique X sequence appear?", "candidate": "{\"sequence\": [\"3\", \"15\", \"15\", \"14\", \"5\"], \"clip_start\": 74.0, \"clip_end\": 79.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_017_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_017_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,3,15,15,14,5,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,11,11,7,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1", "source_class": null, "source_dataset": null, "video_id": "len_256_video_017_v0", "question_id": "video17_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 17, "question_index": 1, "question_text": "Did the unique Y sequence appear?", "candidate": "{\"sequence\": [\"4\", \"11\", \"11\", \"7\"], \"clip_start\": 103.0, \"clip_end\": 107.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_017_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_017_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,3,15,15,14,5,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,11,11,7,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1", "source_class": null, "source_dataset": null, "video_id": "len_256_video_017_v0", "question_id": "video17_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 17, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"3\", \"15\", \"15\", \"5\", \"5\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_017_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_017_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,3,15,15,14,5,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,11,11,7,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1", "source_class": null, "source_dataset": null, "video_id": "len_256_video_017_v0", "question_id": "video17_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 17, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"4\", \"11\", \"0\", \"7\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_017_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_017_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,3,15,15,14,5,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,11,11,7,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1,4,7,1", "source_class": null, "source_dataset": null, "video_id": "len_256_video_017_v0", "question_id": "video17_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 18, "question_index": 0, "question_text": "Did the unique X sequence appear?", "candidate": "{\"sequence\": [\"3\", \"2\", \"15\", \"2\"], \"clip_start\": 104.0, \"clip_end\": 108.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_018_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_018_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,3,2,15,2,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,9,10,14,4,13,9,7", "source_class": null, "source_dataset": null, "video_id": "len_256_video_018_v0", "question_id": "video18_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 18, "question_index": 1, "question_text": "Did the unique Y sequence appear?", "candidate": "{\"sequence\": [\"9\", \"10\", \"14\", \"4\", \"13\"], \"clip_start\": 249.0, \"clip_end\": 254.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_018_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_018_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,3,2,15,2,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,9,10,14,4,13,9,7", "source_class": null, "source_dataset": null, "video_id": "len_256_video_018_v0", "question_id": "video18_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 18, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"14\", \"2\", \"15\", \"2\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_018_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_018_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,3,2,15,2,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,9,10,14,4,13,9,7", "source_class": null, "source_dataset": null, "video_id": "len_256_video_018_v0", "question_id": "video18_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 18, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"9\", \"10\", \"15\", \"4\", \"13\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_018_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_018_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,3,2,15,2,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,7,8,9,9,10,14,4,13,9,7", "source_class": null, "source_dataset": null, "video_id": "len_256_video_018_v0", "question_id": "video18_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 19, "question_index": 0, "question_text": "Did the unique X sequence appear?", "candidate": "{\"sequence\": [\"8\", \"1\", \"14\", \"9\", \"10\"], \"clip_start\": 63.0, \"clip_end\": 68.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_019_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_019_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,11,7,3,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,8,1,14,9,10,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3", "source_class": null, "source_dataset": null, "video_id": "len_256_video_019_v0", "question_id": "video19_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 19, "question_index": 1, "question_text": "Did the unique Y sequence appear?", "candidate": "{\"sequence\": [\"4\", \"11\", \"7\", \"3\"], \"clip_start\": 34.0, \"clip_end\": 38.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_019_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_019_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,11,7,3,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,8,1,14,9,10,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3", "source_class": null, "source_dataset": null, "video_id": "len_256_video_019_v0", "question_id": "video19_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 19, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"8\", \"1\", \"7\", \"9\", \"10\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_019_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_019_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,11,7,3,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,8,1,14,9,10,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3", "source_class": null, "source_dataset": null, "video_id": "len_256_video_019_v0", "question_id": "video19_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 19, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"4\", \"4\", \"7\", \"3\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_019_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_019_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,11,7,3,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,8,1,14,9,10,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3,4,5,3", "source_class": null, "source_dataset": null, "video_id": "len_256_video_019_v0", "question_id": "video19_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 20, "question_index": 0, "question_text": "Did the unique X sequence appear?", "candidate": "{\"sequence\": [\"6\", \"0\", \"0\", \"11\", \"5\"], \"clip_start\": 134.0, \"clip_end\": 139.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_020_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_020_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,14,8,1,4,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,6,0,0,11,5,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7", "source_class": null, "source_dataset": null, "video_id": "len_256_video_020_v0", "question_id": "video20_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 20, "question_index": 1, "question_text": "Did the unique Y sequence appear?", "candidate": "{\"sequence\": [\"7\", \"14\", \"8\", \"1\", \"4\"], \"clip_start\": 39.0, \"clip_end\": 44.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_020_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_020_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,14,8,1,4,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,6,0,0,11,5,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7", "source_class": null, "source_dataset": null, "video_id": "len_256_video_020_v0", "question_id": "video20_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 20, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"1\", \"0\", \"0\", \"11\", \"5\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_020_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_020_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,14,8,1,4,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,6,0,0,11,5,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7", "source_class": null, "source_dataset": null, "video_id": "len_256_video_020_v0", "question_id": "video20_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 20, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"7\", \"14\", \"9\", \"1\", \"4\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_020_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_020_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,14,8,1,4,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,6,0,0,11,5,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7,10,13,7", "source_class": null, "source_dataset": null, "video_id": "len_256_video_020_v0", "question_id": "video20_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 21, "question_index": 0, "question_text": "Did the unique X sequence appear?", "candidate": "{\"sequence\": [\"11\", \"8\", \"13\"], \"clip_start\": 84.0, \"clip_end\": 87.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_021_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_021_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,14,3,4,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,11,8,13,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10", "source_class": null, "source_dataset": null, "video_id": "len_256_video_021_v0", "question_id": "video21_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 21, "question_index": 1, "question_text": "Did the unique Y sequence appear?", "candidate": "{\"sequence\": [\"14\", \"3\", \"4\"], \"clip_start\": 48.0, \"clip_end\": 51.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_021_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_021_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,14,3,4,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,11,8,13,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10", "source_class": null, "source_dataset": null, "video_id": "len_256_video_021_v0", "question_id": "video21_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 21, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"13\", \"8\", \"13\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_021_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_021_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,14,3,4,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,11,8,13,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10", "source_class": null, "source_dataset": null, "video_id": "len_256_video_021_v0", "question_id": "video21_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 21, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"14\", \"3\", \"12\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_021_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_021_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,14,3,4,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,11,8,13,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10,12,14,10", "source_class": null, "source_dataset": null, "video_id": "len_256_video_021_v0", "question_id": "video21_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 22, "question_index": 0, "question_text": "Did the unique X sequence appear?", "candidate": "{\"sequence\": [\"15\", \"13\", \"4\", \"11\", \"2\"], \"clip_start\": 0.0, \"clip_end\": 5.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_022_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_022_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "15,13,4,11,2,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,14,10,7,12,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6", "source_class": null, "source_dataset": null, "video_id": "len_256_video_022_v0", "question_id": "video22_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 22, "question_index": 1, "question_text": "Did the unique Y sequence appear?", "candidate": "{\"sequence\": [\"8\", \"14\", \"10\", \"7\", \"12\"], \"clip_start\": 182.0, \"clip_end\": 187.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_022_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_022_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "15,13,4,11,2,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,14,10,7,12,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6", "source_class": null, "source_dataset": null, "video_id": "len_256_video_022_v0", "question_id": "video22_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 22, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"2\", \"13\", \"4\", \"11\", \"2\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_022_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_022_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "15,13,4,11,2,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,14,10,7,12,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6", "source_class": null, "source_dataset": null, "video_id": "len_256_video_022_v0", "question_id": "video22_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 22, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"8\", \"14\", \"0\", \"7\", \"12\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_022_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_022_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "15,13,4,11,2,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,14,10,7,12,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6,7,8,6", "source_class": null, "source_dataset": null, "video_id": "len_256_video_022_v0", "question_id": "video22_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 23, "question_index": 0, "question_text": "Did the unique X sequence appear?", "candidate": "{\"sequence\": [\"5\", \"6\", \"6\", \"9\"], \"clip_start\": 101.0, \"clip_end\": 105.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_023_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_023_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,1,0,6,6,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,5,6,6,9,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3", "source_class": null, "source_dataset": null, "video_id": "len_256_video_023_v0", "question_id": "video23_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 23, "question_index": 1, "question_text": "Did the unique Y sequence appear?", "candidate": "{\"sequence\": [\"13\", \"1\", \"0\", \"6\", \"6\"], \"clip_start\": 35.0, \"clip_end\": 40.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_023_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_023_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,1,0,6,6,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,5,6,6,9,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3", "source_class": null, "source_dataset": null, "video_id": "len_256_video_023_v0", "question_id": "video23_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 23, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"5\", \"6\", \"0\", \"9\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_023_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_023_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,1,0,6,6,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,5,6,6,9,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3", "source_class": null, "source_dataset": null, "video_id": "len_256_video_023_v0", "question_id": "video23_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 23, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"13\", \"1\", \"0\", \"0\", \"6\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_023_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_023_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,1,0,6,6,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,5,6,6,9,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3,8,13,3", "source_class": null, "source_dataset": null, "video_id": "len_256_video_023_v0", "question_id": "video23_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 24, "question_index": 0, "question_text": "Did the unique X sequence appear?", "candidate": "{\"sequence\": [\"4\", \"9\", \"4\"], \"clip_start\": 17.0, \"clip_end\": 20.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_024_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_024_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,4,9,4,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,4,2,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6", "source_class": null, "source_dataset": null, "video_id": "len_256_video_024_v0", "question_id": "video24_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 24, "question_index": 1, "question_text": "Did the unique Y sequence appear?", "candidate": "{\"sequence\": [\"10\", \"4\", \"2\"], \"clip_start\": 197.0, \"clip_end\": 200.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_024_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_024_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,4,9,4,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,4,2,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6", "source_class": null, "source_dataset": null, "video_id": "len_256_video_024_v0", "question_id": "video24_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 24, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"3\", \"9\", \"4\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_024_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_024_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,4,9,4,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,4,2,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6", "source_class": null, "source_dataset": null, "video_id": "len_256_video_024_v0", "question_id": "video24_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 24, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"10\", \"14\", \"2\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_024_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_024_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,4,9,4,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,4,2,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6,8,10,6", "source_class": null, "source_dataset": null, "video_id": "len_256_video_024_v0", "question_id": "video24_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 25, "question_index": 0, "question_text": "Did the unique X sequence appear?", "candidate": "{\"sequence\": [\"13\", \"0\", \"13\", \"10\", \"11\"], \"clip_start\": 65.0, \"clip_end\": 70.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_025_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_025_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,13,0,13,10,11,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,1,0,3,3,5,1,3,5,1,3,5,1", "source_class": null, "source_dataset": null, "video_id": "len_256_video_025_v0", "question_id": "video25_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 25, "question_index": 1, "question_text": "Did the unique Y sequence appear?", "candidate": "{\"sequence\": [\"1\", \"0\", \"3\"], \"clip_start\": 244.0, \"clip_end\": 247.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_025_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_025_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,13,0,13,10,11,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,1,0,3,3,5,1,3,5,1,3,5,1", "source_class": null, "source_dataset": null, "video_id": "len_256_video_025_v0", "question_id": "video25_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 25, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"11\", \"0\", \"13\", \"10\", \"11\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_025_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_025_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,13,0,13,10,11,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,1,0,3,3,5,1,3,5,1,3,5,1", "source_class": null, "source_dataset": null, "video_id": "len_256_video_025_v0", "question_id": "video25_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 25, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"0\", \"0\", \"3\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_025_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_025_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,13,0,13,10,11,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,3,5,1,1,0,3,3,5,1,3,5,1,3,5,1", "source_class": null, "source_dataset": null, "video_id": "len_256_video_025_v0", "question_id": "video25_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 26, "question_index": 0, "question_text": "Did the unique X sequence appear?", "candidate": "{\"sequence\": [\"6\", \"10\", \"13\", \"5\", \"9\"], \"clip_start\": 19.0, \"clip_end\": 24.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_026_q01_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_026_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,6,10,13,5,9,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,0,2,1,10,8,0,4,8,0,4,8,0", "source_class": null, "source_dataset": null, "video_id": "len_256_video_026_v0", "question_id": "video26_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 26, "question_index": 1, "question_text": "Did the unique Y sequence appear?", "candidate": "{\"sequence\": [\"0\", \"2\", \"1\", \"10\"], \"clip_start\": 244.0, \"clip_end\": 248.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_026_q02_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_026_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,6,10,13,5,9,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,0,2,1,10,8,0,4,8,0,4,8,0", "source_class": null, "source_dataset": null, "video_id": "len_256_video_026_v0", "question_id": "video26_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 26, "question_index": 2, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"6\", \"10\", \"6\", \"5\", \"9\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_026_q03_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_026_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,6,10,13,5,9,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,0,2,1,10,8,0,4,8,0,4,8,0", "source_class": null, "source_dataset": null, "video_id": "len_256_video_026_v0", "question_id": "video26_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 26, "question_index": 3, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"8\", \"2\", \"1\", \"10\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_026_q04_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_026_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,6,10,13,5,9,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,4,8,0,0,2,1,10,8,0,4,8,0,4,8,0", "source_class": null, "source_dataset": null, "video_id": "len_256_video_026_v0", "question_id": "video26_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 27, "question_index": 0, "question_text": "Did the observed counting mistake appear?", "candidate": "{\"sequence\": [\"2\", \"3\", \"3\", \"5\"], \"clip_start\": 147.0, \"clip_end\": 151.0, \"tag\": \"mistake_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_027_q01_mistake_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_027_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,2,3,3,5,5,2,3,4,5,2,3,4,7,1,9,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,13,0,8,9,8,4,5,2,3,4,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_027_v0", "question_id": "video27_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 27, "question_index": 1, "question_text": "Did this other mistake appear?", "candidate": "{\"sequence\": [\"2\", \"2\", \"4\", \"5\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"mistake_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_027_q02_mistake_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_027_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,2,3,3,5,5,2,3,4,5,2,3,4,7,1,9,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,13,0,8,9,8,4,5,2,3,4,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_027_v0", "question_id": "video27_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 27, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"13\", \"0\", \"8\", \"9\", \"8\"], \"clip_start\": 245.0, \"clip_end\": 250.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_027_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_027_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,2,3,3,5,5,2,3,4,5,2,3,4,7,1,9,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,13,0,8,9,8,4,5,2,3,4,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_027_v0", "question_id": "video27_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 27, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"13\", \"0\", \"8\", \"9\", \"0\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_027_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_027_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,2,3,3,5,5,2,3,4,5,2,3,4,7,1,9,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,13,0,8,9,8,4,5,2,3,4,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_027_v0", "question_id": "video27_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 27, "question_index": 4, "question_text": "Did Y appear?", "candidate": "{\"sequence\": [\"4\", \"7\", \"1\", \"9\"], \"clip_start\": 158.0, \"clip_end\": 162.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_027_q05_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_027_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,2,3,3,5,5,2,3,4,5,2,3,4,7,1,9,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,13,0,8,9,8,4,5,2,3,4,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_027_v0", "question_id": "video27_q4"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 27, "question_index": 5, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"4\", \"7\", \"1\", \"1\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_027_q06_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_027_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,2,3,3,5,5,2,3,4,5,2,3,4,7,1,9,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,3,4,5,2,13,0,8,9,8,4,5,2,3,4,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_027_v0", "question_id": "video27_q5"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 28, "question_index": 0, "question_text": "Did the observed counting mistake appear?", "candidate": "{\"sequence\": [\"10\", \"10\", \"8\", \"7\", \"6\"], \"clip_start\": 182.0, \"clip_end\": 187.0, \"tag\": \"mistake_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_028_q01_mistake_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_028_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,2,4,14,15,13,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,10,10,8,7,6,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,9,13,4,5,12,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10", "source_class": null, "source_dataset": null, "video_id": "len_256_video_028_v0", "question_id": "video28_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 28, "question_index": 1, "question_text": "Did this other mistake appear?", "candidate": "{\"sequence\": [\"10\", \"9\", \"8\", \"8\", \"6\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"mistake_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_028_q02_mistake_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_028_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,2,4,14,15,13,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,10,10,8,7,6,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,9,13,4,5,12,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10", "source_class": null, "source_dataset": null, "video_id": "len_256_video_028_v0", "question_id": "video28_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 28, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"2\", \"4\", \"14\", \"15\", \"13\"], \"clip_start\": 38.0, \"clip_end\": 43.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_028_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_028_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,2,4,14,15,13,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,10,10,8,7,6,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,9,13,4,5,12,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10", "source_class": null, "source_dataset": null, "video_id": "len_256_video_028_v0", "question_id": "video28_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 28, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"3\", \"4\", \"14\", \"15\", \"13\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_028_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_028_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,2,4,14,15,13,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,10,10,8,7,6,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,9,13,4,5,12,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10", "source_class": null, "source_dataset": null, "video_id": "len_256_video_028_v0", "question_id": "video28_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 28, "question_index": 4, "question_text": "Did Y appear?", "candidate": "{\"sequence\": [\"9\", \"13\", \"4\", \"5\", \"12\"], \"clip_start\": 233.0, \"clip_end\": 238.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_028_q05_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_028_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,2,4,14,15,13,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,10,10,8,7,6,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,9,13,4,5,12,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10", "source_class": null, "source_dataset": null, "video_id": "len_256_video_028_v0", "question_id": "video28_q4"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 28, "question_index": 5, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"9\", \"13\", \"4\", \"4\", \"12\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_028_q06_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_028_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,2,4,14,15,13,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,10,10,8,7,6,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,9,13,4,5,12,7,6,10,9,8,7,6,10,9,8,7,6,10,9,8,7,6,10", "source_class": null, "source_dataset": null, "video_id": "len_256_video_028_v0", "question_id": "video28_q5"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 29, "question_index": 0, "question_text": "Did the observed counting mistake appear?", "candidate": "{\"sequence\": [\"2\", \"1\", \"1\"], \"clip_start\": 147.0, \"clip_end\": 150.0, \"tag\": \"mistake_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_029_q01_mistake_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_029_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,14,9,14,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,0,9,3,11,9,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,1,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_029_v0", "question_id": "video29_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 29, "question_index": 1, "question_text": "Did this other mistake appear?", "candidate": "{\"sequence\": [\"2\", \"2\", \"0\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"mistake_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_029_q02_mistake_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_029_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,14,9,14,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,0,9,3,11,9,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,1,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_029_v0", "question_id": "video29_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 29, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"14\", \"9\", \"14\"], \"clip_start\": 40.0, \"clip_end\": 43.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_029_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_029_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,14,9,14,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,0,9,3,11,9,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,1,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_029_v0", "question_id": "video29_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 29, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"14\", \"9\", \"8\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_029_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_029_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,14,9,14,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,0,9,3,11,9,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,1,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_029_v0", "question_id": "video29_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 29, "question_index": 4, "question_text": "Did Y appear?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"11\", \"9\"], \"clip_start\": 78.0, \"clip_end\": 83.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_029_q05_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_029_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,14,9,14,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,0,9,3,11,9,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,1,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_029_v0", "question_id": "video29_q4"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 29, "question_index": 5, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"0\", \"9\", \"3\", \"11\", \"4\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_029_q06_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_029_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,14,9,14,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,0,9,3,11,9,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,1,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_029_v0", "question_id": "video29_q5"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 30, "question_index": 0, "question_text": "Did the observed counting mistake appear?", "candidate": "{\"sequence\": [\"13\", \"12\", \"12\"], \"clip_start\": 202.0, \"clip_end\": 205.0, \"tag\": \"mistake_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_030_q01_mistake_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_030_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,12,8,11,13,13,12,11,13,12,10,0,14,5,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,13,12,12,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13", "source_class": null, "source_dataset": null, "video_id": "len_256_video_030_v0", "question_id": "video30_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 30, "question_index": 1, "question_text": "Did this other mistake appear?", "candidate": "{\"sequence\": [\"13\", \"13\", \"11\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"mistake_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_030_q02_mistake_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_030_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,12,8,11,13,13,12,11,13,12,10,0,14,5,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,13,12,12,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13", "source_class": null, "source_dataset": null, "video_id": "len_256_video_030_v0", "question_id": "video30_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 30, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"10\", \"0\", \"14\", \"5\"], \"clip_start\": 143.0, \"clip_end\": 147.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_030_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_030_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,12,8,11,13,13,12,11,13,12,10,0,14,5,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,13,12,12,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13", "source_class": null, "source_dataset": null, "video_id": "len_256_video_030_v0", "question_id": "video30_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 30, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"10\", \"0\", \"14\", \"14\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_030_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_030_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,12,8,11,13,13,12,11,13,12,10,0,14,5,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,13,12,12,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13", "source_class": null, "source_dataset": null, "video_id": "len_256_video_030_v0", "question_id": "video30_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 30, "question_index": 4, "question_text": "Did Y appear?", "candidate": "{\"sequence\": [\"12\", \"8\", \"11\", \"13\"], \"clip_start\": 134.0, \"clip_end\": 138.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_030_q05_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_030_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,12,8,11,13,13,12,11,13,12,10,0,14,5,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,13,12,12,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13", "source_class": null, "source_dataset": null, "video_id": "len_256_video_030_v0", "question_id": "video30_q4"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 30, "question_index": 5, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"2\", \"8\", \"11\", \"13\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_030_q06_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_030_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,12,8,11,13,13,12,11,13,12,10,0,14,5,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,13,12,12,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13,12,11,13", "source_class": null, "source_dataset": null, "video_id": "len_256_video_030_v0", "question_id": "video30_q5"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 31, "question_index": 0, "question_text": "Did the observed counting mistake appear?", "candidate": "{\"sequence\": [\"8\", \"9\", \"9\", \"11\"], \"clip_start\": 128.0, \"clip_end\": 132.0, \"tag\": \"mistake_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_031_q01_mistake_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_031_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,9,0,2,7,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,7,1,4,12,5,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,9,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_031_v0", "question_id": "video31_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 31, "question_index": 1, "question_text": "Did this other mistake appear?", "candidate": "{\"sequence\": [\"8\", \"8\", \"10\", \"11\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"mistake_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_031_q02_mistake_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_031_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,9,0,2,7,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,7,1,4,12,5,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,9,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_031_v0", "question_id": "video31_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 31, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"7\", \"1\", \"4\", \"12\", \"5\"], \"clip_start\": 82.0, \"clip_end\": 87.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_031_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_031_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,9,0,2,7,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,7,1,4,12,5,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,9,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_031_v0", "question_id": "video31_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 31, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"7\", \"1\", \"4\", \"12\", \"6\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_031_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_031_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,9,0,2,7,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,7,1,4,12,5,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,9,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_031_v0", "question_id": "video31_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 31, "question_index": 4, "question_text": "Did Y appear?", "candidate": "{\"sequence\": [\"9\", \"0\", \"2\", \"7\"], \"clip_start\": 51.0, \"clip_end\": 55.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_031_q05_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_031_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,9,0,2,7,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,7,1,4,12,5,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,9,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_031_v0", "question_id": "video31_q4"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 31, "question_index": 5, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"8\", \"0\", \"2\", \"7\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_031_q06_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_031_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,9,0,2,7,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,7,1,4,12,5,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,9,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_031_v0", "question_id": "video31_q5"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 32, "question_index": 0, "question_text": "Did the observed counting mistake appear?", "candidate": "{\"sequence\": [\"4\", \"5\", \"6\", \"6\", \"8\"], \"clip_start\": 178.0, \"clip_end\": 183.0, \"tag\": \"mistake_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_032_q01_mistake_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_032_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,5,6,7,8,4,5,6,5,0,14,5,9,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,11,2,12,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,4,5,6,6,8,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_032_v0", "question_id": "video32_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 32, "question_index": 1, "question_text": "Did this other mistake appear?", "candidate": "{\"sequence\": [\"4\", \"5\", \"6\", \"7\", \"7\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"mistake_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_032_q02_mistake_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_032_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,5,6,7,8,4,5,6,5,0,14,5,9,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,11,2,12,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,4,5,6,6,8,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_032_v0", "question_id": "video32_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 32, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"11\", \"2\", \"12\"], \"clip_start\": 99.0, \"clip_end\": 102.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_032_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_032_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,5,6,7,8,4,5,6,5,0,14,5,9,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,11,2,12,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,4,5,6,6,8,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_032_v0", "question_id": "video32_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 32, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"11\", \"9\", \"12\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_032_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_032_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,5,6,7,8,4,5,6,5,0,14,5,9,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,11,2,12,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,4,5,6,6,8,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_032_v0", "question_id": "video32_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 32, "question_index": 4, "question_text": "Did Y appear?", "candidate": "{\"sequence\": [\"5\", \"0\", \"14\", \"5\", \"9\"], \"clip_start\": 8.0, \"clip_end\": 13.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_032_q05_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_032_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,5,6,7,8,4,5,6,5,0,14,5,9,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,11,2,12,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,4,5,6,6,8,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_032_v0", "question_id": "video32_q4"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 32, "question_index": 5, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"5\", \"0\", \"14\", \"0\", \"9\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_032_q06_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_032_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,5,6,7,8,4,5,6,5,0,14,5,9,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,11,2,12,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,4,5,6,6,8,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_032_v0", "question_id": "video32_q5"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 33, "question_index": 0, "question_text": "Did the observed counting mistake appear?", "candidate": "{\"sequence\": [\"2\", \"2\", \"0\"], \"clip_start\": 68.0, \"clip_end\": 71.0, \"tag\": \"mistake_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_033_q01_mistake_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_033_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,3,7,7,6,2,1,0,2,1,2,2,0,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,2,7,14,8,3,1,0,2,1,0,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_033_v0", "question_id": "video33_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 33, "question_index": 1, "question_text": "Did this other mistake appear?", "candidate": "{\"sequence\": [\"2\", \"1\", \"1\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"mistake_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_033_q02_mistake_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_033_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,3,7,7,6,2,1,0,2,1,2,2,0,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,2,7,14,8,3,1,0,2,1,0,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_033_v0", "question_id": "video33_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 33, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"3\", \"7\", \"7\", \"6\"], \"clip_start\": 59.0, \"clip_end\": 63.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_033_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_033_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,3,7,7,6,2,1,0,2,1,2,2,0,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,2,7,14,8,3,1,0,2,1,0,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_033_v0", "question_id": "video33_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 33, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"3\", \"7\", \"5\", \"6\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_033_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_033_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,3,7,7,6,2,1,0,2,1,2,2,0,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,2,7,14,8,3,1,0,2,1,0,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_033_v0", "question_id": "video33_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 33, "question_index": 4, "question_text": "Did Y appear?", "candidate": "{\"sequence\": [\"2\", \"7\", \"14\", \"8\", \"3\"], \"clip_start\": 245.0, \"clip_end\": 250.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_033_q05_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_033_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,3,7,7,6,2,1,0,2,1,2,2,0,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,2,7,14,8,3,1,0,2,1,0,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_033_v0", "question_id": "video33_q4"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 33, "question_index": 5, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"2\", \"7\", \"14\", \"8\", \"9\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_033_q06_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_033_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,3,7,7,6,2,1,0,2,1,2,2,0,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,0,2,1,2,7,14,8,3,1,0,2,1,0,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_033_v0", "question_id": "video33_q5"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 34, "question_index": 0, "question_text": "Did the observed counting mistake appear?", "candidate": "{\"sequence\": [\"6\", \"7\", \"7\", \"9\"], \"clip_start\": 16.0, \"clip_end\": 20.0, \"tag\": \"mistake_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_034_q01_mistake_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_034_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,7,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,0,7,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,11,11,13,2,10,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9", "source_class": null, "source_dataset": null, "video_id": "len_256_video_034_v0", "question_id": "video34_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 34, "question_index": 1, "question_text": "Did this other mistake appear?", "candidate": "{\"sequence\": [\"6\", \"7\", \"8\", \"8\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"mistake_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_034_q02_mistake_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_034_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,7,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,0,7,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,11,11,13,2,10,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9", "source_class": null, "source_dataset": null, "video_id": "len_256_video_034_v0", "question_id": "video34_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 34, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"11\", \"11\", \"13\", \"2\", \"10\"], \"clip_start\": 187.0, \"clip_end\": 192.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_034_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_034_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,7,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,0,7,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,11,11,13,2,10,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9", "source_class": null, "source_dataset": null, "video_id": "len_256_video_034_v0", "question_id": "video34_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 34, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"11\", \"11\", \"13\", \"15\", \"10\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_034_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_034_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,7,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,0,7,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,11,11,13,2,10,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9", "source_class": null, "source_dataset": null, "video_id": "len_256_video_034_v0", "question_id": "video34_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 34, "question_index": 4, "question_text": "Did Y appear?", "candidate": "{\"sequence\": [\"7\", \"0\", \"7\"], \"clip_start\": 45.0, \"clip_end\": 48.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_034_q05_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_034_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,7,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,0,7,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,11,11,13,2,10,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9", "source_class": null, "source_dataset": null, "video_id": "len_256_video_034_v0", "question_id": "video34_q4"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 34, "question_index": 5, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"12\", \"0\", \"7\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_034_q06_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_034_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,7,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,0,7,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,11,11,13,2,10,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9,6,7,8,9", "source_class": null, "source_dataset": null, "video_id": "len_256_video_034_v0", "question_id": "video34_q5"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 35, "question_index": 0, "question_text": "Did the observed counting mistake appear?", "candidate": "{\"sequence\": [\"12\", \"13\", \"14\", \"14\"], \"clip_start\": 63.0, \"clip_end\": 67.0, \"tag\": \"mistake_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_035_q01_mistake_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_035_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,12,13,14,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,8,7,7,2,2,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,13,11,15,0,4,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15", "source_class": null, "source_dataset": null, "video_id": "len_256_video_035_v0", "question_id": "video35_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 35, "question_index": 1, "question_text": "Did this other mistake appear?", "candidate": "{\"sequence\": [\"12\", \"13\", \"13\", \"15\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"mistake_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_035_q02_mistake_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_035_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,12,13,14,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,8,7,7,2,2,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,13,11,15,0,4,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15", "source_class": null, "source_dataset": null, "video_id": "len_256_video_035_v0", "question_id": "video35_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 35, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"8\", \"7\", \"7\", \"2\", \"2\"], \"clip_start\": 148.0, \"clip_end\": 153.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_035_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_035_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,12,13,14,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,8,7,7,2,2,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,13,11,15,0,4,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15", "source_class": null, "source_dataset": null, "video_id": "len_256_video_035_v0", "question_id": "video35_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 35, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"8\", \"7\", \"7\", \"5\", \"2\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_035_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_035_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,12,13,14,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,8,7,7,2,2,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,13,11,15,0,4,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15", "source_class": null, "source_dataset": null, "video_id": "len_256_video_035_v0", "question_id": "video35_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 35, "question_index": 4, "question_text": "Did Y appear?", "candidate": "{\"sequence\": [\"13\", \"11\", \"15\", \"0\", \"4\"], \"clip_start\": 187.0, \"clip_end\": 192.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_035_q05_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_035_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,12,13,14,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,8,7,7,2,2,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,13,11,15,0,4,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15", "source_class": null, "source_dataset": null, "video_id": "len_256_video_035_v0", "question_id": "video35_q4"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 35, "question_index": 5, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"7\", \"11\", \"15\", \"0\", \"4\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_035_q06_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_035_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,12,13,14,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,8,7,7,2,2,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,13,11,15,0,4,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15,12,13,14,15", "source_class": null, "source_dataset": null, "video_id": "len_256_video_035_v0", "question_id": "video35_q5"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 36, "question_index": 0, "question_text": "Did the observed counting mistake appear?", "candidate": "{\"sequence\": [\"3\", \"4\", \"5\", \"6\", \"6\"], \"clip_start\": 62.0, \"clip_end\": 67.0, \"tag\": \"mistake_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_036_q01_mistake_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_036_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,1,15,10,8,3,4,5,6,6,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,5,2,10,2,15,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3", "source_class": null, "source_dataset": null, "video_id": "len_256_video_036_v0", "question_id": "video36_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 36, "question_index": 1, "question_text": "Did this other mistake appear?", "candidate": "{\"sequence\": [\"3\", \"4\", \"5\", \"5\", \"7\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"mistake_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_036_q02_mistake_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_036_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,1,15,10,8,3,4,5,6,6,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,5,2,10,2,15,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3", "source_class": null, "source_dataset": null, "video_id": "len_256_video_036_v0", "question_id": "video36_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 36, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"1\", \"15\", \"10\", \"8\"], \"clip_start\": 58.0, \"clip_end\": 62.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_036_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_036_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,1,15,10,8,3,4,5,6,6,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,5,2,10,2,15,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3", "source_class": null, "source_dataset": null, "video_id": "len_256_video_036_v0", "question_id": "video36_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 36, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"2\", \"15\", \"10\", \"8\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_036_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_036_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,1,15,10,8,3,4,5,6,6,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,5,2,10,2,15,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3", "source_class": null, "source_dataset": null, "video_id": "len_256_video_036_v0", "question_id": "video36_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 36, "question_index": 4, "question_text": "Did Y appear?", "candidate": "{\"sequence\": [\"5\", \"2\", \"10\", \"2\", \"15\"], \"clip_start\": 90.0, \"clip_end\": 95.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_036_q05_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_036_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,1,15,10,8,3,4,5,6,6,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,5,2,10,2,15,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3", "source_class": null, "source_dataset": null, "video_id": "len_256_video_036_v0", "question_id": "video36_q4"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 36, "question_index": 5, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"5\", \"2\", \"10\", \"13\", \"15\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_036_q06_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_036_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,1,15,10,8,3,4,5,6,6,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,5,2,10,2,15,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3,4,5,6,7,3", "source_class": null, "source_dataset": null, "video_id": "len_256_video_036_v0", "question_id": "video36_q5"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 37, "question_index": 0, "question_text": "Did the observed counting mistake appear?", "candidate": "{\"sequence\": [\"8\", \"7\", \"6\", \"6\", \"4\"], \"clip_start\": 213.0, \"clip_end\": 218.0, \"tag\": \"mistake_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_037_q01_mistake_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_037_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,10,13,13,2,14,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,6,14,11,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,8,7,6,6,4,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8", "source_class": null, "source_dataset": null, "video_id": "len_256_video_037_v0", "question_id": "video37_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 37, "question_index": 1, "question_text": "Did this other mistake appear?", "candidate": "{\"sequence\": [\"8\", \"7\", \"6\", \"5\", \"5\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"mistake_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_037_q02_mistake_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_037_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,10,13,13,2,14,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,6,14,11,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,8,7,6,6,4,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8", "source_class": null, "source_dataset": null, "video_id": "len_256_video_037_v0", "question_id": "video37_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 37, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"10\", \"13\", \"13\", \"2\", \"14\"], \"clip_start\": 35.0, \"clip_end\": 40.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_037_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_037_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,10,13,13,2,14,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,6,14,11,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,8,7,6,6,4,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8", "source_class": null, "source_dataset": null, "video_id": "len_256_video_037_v0", "question_id": "video37_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 37, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"10\", \"13\", \"13\", \"1\", \"14\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_037_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_037_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,10,13,13,2,14,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,6,14,11,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,8,7,6,6,4,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8", "source_class": null, "source_dataset": null, "video_id": "len_256_video_037_v0", "question_id": "video37_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 37, "question_index": 4, "question_text": "Did Y appear?", "candidate": "{\"sequence\": [\"6\", \"14\", \"11\"], \"clip_start\": 121.0, \"clip_end\": 124.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_037_q05_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_037_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,10,13,13,2,14,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,6,14,11,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,8,7,6,6,4,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8", "source_class": null, "source_dataset": null, "video_id": "len_256_video_037_v0", "question_id": "video37_q4"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 37, "question_index": 5, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"6\", \"0\", \"11\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_037_q06_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_037_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,10,13,13,2,14,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,6,14,11,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,8,7,6,6,4,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8,7,6,5,4,8", "source_class": null, "source_dataset": null, "video_id": "len_256_video_037_v0", "question_id": "video37_q5"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 38, "question_index": 0, "question_text": "Did the observed counting mistake appear?", "candidate": "{\"sequence\": [\"12\", \"12\", \"14\"], \"clip_start\": 116.0, \"clip_end\": 119.0, \"tag\": \"mistake_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_038_q01_mistake_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_038_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,12,12,14,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,10,7,2,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,14,0,1,2,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12", "source_class": null, "source_dataset": null, "video_id": "len_256_video_038_v0", "question_id": "video38_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 38, "question_index": 1, "question_text": "Did this other mistake appear?", "candidate": "{\"sequence\": [\"12\", \"13\", \"13\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"mistake_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_038_q02_mistake_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_038_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,12,12,14,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,10,7,2,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,14,0,1,2,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12", "source_class": null, "source_dataset": null, "video_id": "len_256_video_038_v0", "question_id": "video38_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 38, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"10\", \"7\", \"2\"], \"clip_start\": 171.0, \"clip_end\": 174.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_038_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_038_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,12,12,14,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,10,7,2,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,14,0,1,2,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12", "source_class": null, "source_dataset": null, "video_id": "len_256_video_038_v0", "question_id": "video38_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 38, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"10\", \"7\", \"1\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_038_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_038_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,12,12,14,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,10,7,2,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,14,0,1,2,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12", "source_class": null, "source_dataset": null, "video_id": "len_256_video_038_v0", "question_id": "video38_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 38, "question_index": 4, "question_text": "Did Y appear?", "candidate": "{\"sequence\": [\"14\", \"0\", \"1\", \"2\"], \"clip_start\": 231.0, \"clip_end\": 235.0, \"tag\": \"y_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_038_q05_y_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_038_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,12,12,14,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,10,7,2,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,14,0,1,2,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12", "source_class": null, "source_dataset": null, "video_id": "len_256_video_038_v0", "question_id": "video38_q4"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 38, "question_index": 5, "question_text": "Did a slight variation of Y appear?", "candidate": "{\"sequence\": [\"14\", \"0\", \"13\", \"2\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"y_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_038_q06_y_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_038_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,12,12,14,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,10,7,2,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,14,0,1,2,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12,13,14,12", "source_class": null, "source_dataset": null, "video_id": "len_256_video_038_v0", "question_id": "video38_q5"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 39, "question_index": 0, "question_text": "Did the invalid cycle appear?", "candidate": "{\"sequence\": [\"6\", \"8\", \"14\"], \"clip_start\": 102.0, \"clip_end\": 105.0, \"tag\": \"invalid_cycle_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_039_q01_invalid_cycle_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_039_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,6,14,9,5,2,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,6,8,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8", "source_class": null, "source_dataset": null, "video_id": "len_256_video_039_v0", "question_id": "video39_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 39, "question_index": 1, "question_text": "Did this other invalid cycle appear?", "candidate": "{\"sequence\": [\"8\", \"14\", \"6\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"invalid_cycle_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_039_q02_invalid_cycle_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_039_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,6,14,9,5,2,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,6,8,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8", "source_class": null, "source_dataset": null, "video_id": "len_256_video_039_v0", "question_id": "video39_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 39, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"9\", \"5\", \"2\"], \"clip_start\": 3.0, \"clip_end\": 6.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_039_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_039_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,6,14,9,5,2,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,6,8,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8", "source_class": null, "source_dataset": null, "video_id": "len_256_video_039_v0", "question_id": "video39_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 39, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"1\", \"5\", \"2\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_039_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_039_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "8,6,14,9,5,2,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,6,8,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8,6,14,8", "source_class": null, "source_dataset": null, "video_id": "len_256_video_039_v0", "question_id": "video39_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 40, "question_index": 0, "question_text": "Did the invalid cycle appear?", "candidate": "{\"sequence\": [\"8\", \"9\", \"5\", \"4\"], \"clip_start\": 129.0, \"clip_end\": 133.0, \"tag\": \"invalid_cycle_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_040_q01_invalid_cycle_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_040_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,9,5,4,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,1,2,13,10,6,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_040_v0", "question_id": "video40_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 40, "question_index": 1, "question_text": "Did this other invalid cycle appear?", "candidate": "{\"sequence\": [\"4\", \"5\", \"8\", \"9\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"invalid_cycle_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_040_q02_invalid_cycle_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_040_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,9,5,4,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,1,2,13,10,6,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_040_v0", "question_id": "video40_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 40, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"1\", \"2\", \"13\", \"10\", \"6\"], \"clip_start\": 223.0, \"clip_end\": 228.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_040_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_040_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,9,5,4,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,1,2,13,10,6,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_040_v0", "question_id": "video40_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 40, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"1\", \"2\", \"13\", \"12\", \"6\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_040_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_040_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,9,5,4,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,1,2,13,10,6,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4,9,8,5,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_040_v0", "question_id": "video40_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 41, "question_index": 0, "question_text": "Did the invalid cycle appear?", "candidate": "{\"sequence\": [\"12\", \"1\", \"5\", \"4\"], \"clip_start\": 133.0, \"clip_end\": 137.0, \"tag\": \"invalid_cycle_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_041_q01_invalid_cycle_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_041_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,12,1,5,4,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,7,0,13,12,1,4,5,12,1,4,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_041_v0", "question_id": "video41_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 41, "question_index": 1, "question_text": "Did this other invalid cycle appear?", "candidate": "{\"sequence\": [\"5\", \"4\", \"1\", \"12\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"invalid_cycle_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_041_q02_invalid_cycle_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_041_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,12,1,5,4,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,7,0,13,12,1,4,5,12,1,4,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_041_v0", "question_id": "video41_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 41, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"7\", \"0\", \"13\"], \"clip_start\": 245.0, \"clip_end\": 248.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_041_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_041_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,12,1,5,4,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,7,0,13,12,1,4,5,12,1,4,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_041_v0", "question_id": "video41_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 41, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"7\", \"6\", \"13\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_041_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_041_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,12,1,5,4,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,1,4,5,12,7,0,13,12,1,4,5,12,1,4,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_041_v0", "question_id": "video41_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 42, "question_index": 0, "question_text": "Did the invalid cycle appear?", "candidate": "{\"sequence\": [\"15\", \"2\", \"12\", \"11\"], \"clip_start\": 170.0, \"clip_end\": 174.0, \"tag\": \"invalid_cycle_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_042_q01_invalid_cycle_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_042_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,15,2,12,11,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,14,8,13,7,2,11,15,12,2,11,15,12,2,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_042_v0", "question_id": "video42_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 42, "question_index": 1, "question_text": "Did this other invalid cycle appear?", "candidate": "{\"sequence\": [\"11\", \"2\", \"12\", \"15\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"invalid_cycle_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_042_q02_invalid_cycle_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_042_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,15,2,12,11,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,14,8,13,7,2,11,15,12,2,11,15,12,2,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_042_v0", "question_id": "video42_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 42, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"14\", \"8\", \"13\", \"7\"], \"clip_start\": 242.0, \"clip_end\": 246.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_042_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_042_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,15,2,12,11,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,14,8,13,7,2,11,15,12,2,11,15,12,2,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_042_v0", "question_id": "video42_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 42, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"14\", \"8\", \"13\", \"5\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_042_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_042_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,15,2,12,11,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,2,11,15,12,14,8,13,7,2,11,15,12,2,11,15,12,2,11", "source_class": null, "source_dataset": null, "video_id": "len_256_video_042_v0", "question_id": "video42_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 43, "question_index": 0, "question_text": "Did the invalid cycle appear?", "candidate": "{\"sequence\": [\"6\", \"12\", \"4\", \"0\"], \"clip_start\": 40.0, \"clip_end\": 44.0, \"tag\": \"invalid_cycle_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_043_q01_invalid_cycle_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_043_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,6,12,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,10,3,8,10,5,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0", "source_class": null, "source_dataset": null, "video_id": "len_256_video_043_v0", "question_id": "video43_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 43, "question_index": 1, "question_text": "Did this other invalid cycle appear?", "candidate": "{\"sequence\": [\"0\", \"4\", \"6\", \"12\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"invalid_cycle_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_043_q02_invalid_cycle_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_043_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,6,12,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,10,3,8,10,5,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0", "source_class": null, "source_dataset": null, "video_id": "len_256_video_043_v0", "question_id": "video43_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 43, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"10\", \"3\", \"8\", \"10\", \"5\"], \"clip_start\": 193.0, \"clip_end\": 198.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_043_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_043_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,6,12,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,10,3,8,10,5,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0", "source_class": null, "source_dataset": null, "video_id": "len_256_video_043_v0", "question_id": "video43_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 43, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"10\", \"3\", \"8\", \"2\", \"5\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_043_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_043_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,6,12,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,10,3,8,10,5,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0,12,6,4,0", "source_class": null, "source_dataset": null, "video_id": "len_256_video_043_v0", "question_id": "video43_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 44, "question_index": 0, "question_text": "Did the invalid cycle appear?", "candidate": "{\"sequence\": [\"5\", \"10\", \"12\", \"2\"], \"clip_start\": 40.0, \"clip_end\": 44.0, \"tag\": \"invalid_cycle_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_044_q01_invalid_cycle_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_044_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,4,9,11,0,1,10,2,12,5,10,12,2,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12", "source_class": null, "source_dataset": null, "video_id": "len_256_video_044_v0", "question_id": "video44_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 44, "question_index": 1, "question_text": "Did this other invalid cycle appear?", "candidate": "{\"sequence\": [\"12\", \"2\", \"10\", \"5\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"invalid_cycle_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_044_q02_invalid_cycle_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_044_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,4,9,11,0,1,10,2,12,5,10,12,2,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12", "source_class": null, "source_dataset": null, "video_id": "len_256_video_044_v0", "question_id": "video44_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 44, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"4\", \"9\", \"11\", \"0\", \"1\"], \"clip_start\": 32.0, \"clip_end\": 37.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_044_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_044_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,4,9,11,0,1,10,2,12,5,10,12,2,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12", "source_class": null, "source_dataset": null, "video_id": "len_256_video_044_v0", "question_id": "video44_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 44, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"4\", \"9\", \"11\", \"0\", \"11\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_044_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_044_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,4,9,11,0,1,10,2,12,5,10,12,2,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12,5,10,2,12", "source_class": null, "source_dataset": null, "video_id": "len_256_video_044_v0", "question_id": "video44_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 45, "question_index": 0, "question_text": "Did the invalid cycle appear?", "candidate": "{\"sequence\": [\"10\", \"1\", \"0\"], \"clip_start\": 3.0, \"clip_end\": 6.0, \"tag\": \"invalid_cycle_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_045_q01_invalid_cycle_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_045_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "1,10,0,10,1,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,7,12,5,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1", "source_class": null, "source_dataset": null, "video_id": "len_256_video_045_v0", "question_id": "video45_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 45, "question_index": 1, "question_text": "Did this other invalid cycle appear?", "candidate": "{\"sequence\": [\"1\", \"0\", \"10\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"invalid_cycle_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_045_q02_invalid_cycle_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_045_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "1,10,0,10,1,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,7,12,5,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1", "source_class": null, "source_dataset": null, "video_id": "len_256_video_045_v0", "question_id": "video45_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 45, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"7\", \"12\", \"5\"], \"clip_start\": 238.0, \"clip_end\": 241.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_045_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_045_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "1,10,0,10,1,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,7,12,5,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1", "source_class": null, "source_dataset": null, "video_id": "len_256_video_045_v0", "question_id": "video45_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 45, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"3\", \"12\", \"5\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_045_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_045_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "1,10,0,10,1,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1,7,12,5,10,0,1,10,0,1,10,0,1,10,0,1,10,0,1", "source_class": null, "source_dataset": null, "video_id": "len_256_video_045_v0", "question_id": "video45_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 46, "question_index": 0, "question_text": "Did the invalid cycle appear?", "candidate": "{\"sequence\": [\"14\", \"12\", \"2\", \"3\"], \"clip_start\": 106.0, \"clip_end\": 110.0, \"tag\": \"invalid_cycle_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_046_q01_invalid_cycle_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_046_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,14,12,2,3,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,6,13,1,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_046_v0", "question_id": "video46_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 46, "question_index": 1, "question_text": "Did this other invalid cycle appear?", "candidate": "{\"sequence\": [\"2\", \"3\", \"12\", \"14\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"invalid_cycle_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_046_q02_invalid_cycle_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_046_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,14,12,2,3,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,6,13,1,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_046_v0", "question_id": "video46_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 46, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"6\", \"13\", \"1\"], \"clip_start\": 175.0, \"clip_end\": 178.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_046_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_046_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,14,12,2,3,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,6,13,1,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_046_v0", "question_id": "video46_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 46, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"6\", \"13\", \"7\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_046_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_046_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,14,12,2,3,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,6,13,1,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2,14,12,3,2", "source_class": null, "source_dataset": null, "video_id": "len_256_video_046_v0", "question_id": "video46_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 47, "question_index": 0, "question_text": "Did the invalid cycle appear?", "candidate": "{\"sequence\": [\"12\", \"7\", \"5\", \"10\"], \"clip_start\": 122.0, \"clip_end\": 126.0, \"tag\": \"invalid_cycle_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_047_q01_invalid_cycle_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_047_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,0,1,8,13,4,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,12,7,5,10,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10", "source_class": null, "source_dataset": null, "video_id": "len_256_video_047_v0", "question_id": "video47_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 47, "question_index": 1, "question_text": "Did this other invalid cycle appear?", "candidate": "{\"sequence\": [\"10\", \"7\", \"5\", \"12\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"invalid_cycle_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_047_q02_invalid_cycle_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_047_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,0,1,8,13,4,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,12,7,5,10,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10", "source_class": null, "source_dataset": null, "video_id": "len_256_video_047_v0", "question_id": "video47_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 47, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"0\", \"1\", \"8\", \"13\", \"4\"], \"clip_start\": 48.0, \"clip_end\": 53.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_047_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_047_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,0,1,8,13,4,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,12,7,5,10,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10", "source_class": null, "source_dataset": null, "video_id": "len_256_video_047_v0", "question_id": "video47_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 47, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"0\", \"1\", \"4\", \"13\", \"4\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_047_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_047_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,0,1,8,13,4,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,12,7,5,10,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10,12,5,7,10", "source_class": null, "source_dataset": null, "video_id": "len_256_video_047_v0", "question_id": "video47_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 48, "question_index": 0, "question_text": "Did the invalid cycle appear?", "candidate": "{\"sequence\": [\"5\", \"13\", \"3\"], \"clip_start\": 15.0, \"clip_end\": 18.0, \"tag\": \"invalid_cycle_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_048_q01_invalid_cycle_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_048_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,13,3,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,8,12,4,11,11,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_048_v0", "question_id": "video48_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 48, "question_index": 1, "question_text": "Did this other invalid cycle appear?", "candidate": "{\"sequence\": [\"3\", \"5\", \"13\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"invalid_cycle_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_048_q02_invalid_cycle_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_048_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,13,3,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,8,12,4,11,11,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_048_v0", "question_id": "video48_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 48, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"8\", \"12\", \"4\", \"11\", \"11\"], \"clip_start\": 149.0, \"clip_end\": 154.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_048_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_048_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,13,3,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,8,12,4,11,11,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_048_v0", "question_id": "video48_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 48, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"8\", \"14\", \"4\", \"11\", \"11\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_048_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_048_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,13,3,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,8,12,4,11,11,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5,3,13,5", "source_class": null, "source_dataset": null, "video_id": "len_256_video_048_v0", "question_id": "video48_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 49, "question_index": 0, "question_text": "Did the invalid cycle appear?", "candidate": "{\"sequence\": [\"4\", \"0\", \"7\"], \"clip_start\": 20.0, \"clip_end\": 23.0, \"tag\": \"invalid_cycle_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_049_q01_invalid_cycle_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_049_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,4,0,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,5,11,2,11,15,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_049_v0", "question_id": "video49_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 49, "question_index": 1, "question_text": "Did this other invalid cycle appear?", "candidate": "{\"sequence\": [\"0\", \"7\", \"4\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"invalid_cycle_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_049_q02_invalid_cycle_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_049_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,4,0,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,5,11,2,11,15,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_049_v0", "question_id": "video49_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 49, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"5\", \"11\", \"2\", \"11\", \"15\"], \"clip_start\": 207.0, \"clip_end\": 212.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_049_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_049_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,4,0,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,5,11,2,11,15,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_049_v0", "question_id": "video49_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 49, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"5\", \"11\", \"2\", \"12\", \"15\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_049_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_049_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,4,0,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,5,11,2,11,15,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4,7,0,4", "source_class": null, "source_dataset": null, "video_id": "len_256_video_049_v0", "question_id": "video49_q3"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 50, "question_index": 0, "question_text": "Did the invalid cycle appear?", "candidate": "{\"sequence\": [\"2\", \"3\", \"0\", \"1\"], \"clip_start\": 124.0, \"clip_end\": 128.0, \"tag\": \"invalid_cycle_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_050_q01_invalid_cycle_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_050_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,2,3,0,1,8,13,7,9,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1", "source_class": null, "source_dataset": null, "video_id": "len_256_video_050_v0", "question_id": "video50_q0"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 50, "question_index": 1, "question_text": "Did this other invalid cycle appear?", "candidate": "{\"sequence\": [\"1\", \"0\", \"2\", \"3\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"invalid_cycle_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_050_q02_invalid_cycle_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_050_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,2,3,0,1,8,13,7,9,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1", "source_class": null, "source_dataset": null, "video_id": "len_256_video_050_v0", "question_id": "video50_q1"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 50, "question_index": 2, "question_text": "Did X appear?", "candidate": "{\"sequence\": [\"8\", \"13\", \"7\", \"9\"], \"clip_start\": 128.0, \"clip_end\": 132.0, \"tag\": \"x_present\"}", "answer": "yes", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_050_q03_x_present_yes.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_050_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,2,3,0,1,8,13,7,9,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1", "source_class": null, "source_dataset": null, "video_id": "len_256_video_050_v0", "question_id": "video50_q2"} +{"subset": "easyhuman", "bucket": "len_256", "source_split": "easyhuman_video", "length_L": 256, "entropy_band": "easyhuman", "modality": "video", "question_variant": "easyhuman_binary", "video_index": 50, "question_index": 3, "question_text": "Did a slight variation of X appear?", "candidate": "{\"sequence\": [\"8\", \"13\", \"8\", \"9\"], \"clip_start\": null, \"clip_end\": null, \"tag\": \"x_variation_absent\"}", "answer": "no", "clip_path": "videos/easyhuman_L_256_frames/clips/len_256_video_050_q04_x_variation_absent_no.mp4", "video_path": "videos/easyhuman_L_256_frames/len_256_video_050_v0.mp4", "dataset_source": "easyhuman", "input_sequence": "3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,2,3,0,1,8,13,7,9,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1,3,2,0,1", "source_class": null, "source_dataset": null, "video_id": "len_256_video_050_v0", "question_id": "video50_q3"} diff --git a/synthetic_video/questions.parquet b/synthetic_video/questions.parquet new file mode 100644 index 0000000000000000000000000000000000000000..b9f970d3e08da01cef4aee0da5717b8ea5f03098 --- /dev/null +++ b/synthetic_video/questions.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8410ae2c1e8f3883ebb77571698c992d02bc1756a7369f993817503810e3b2b7 +size 297414 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_12_q10_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_12_q10_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_12_q11_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_12_q11_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_12_q12_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_12_q12_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_12_q13_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_12_q13_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_12_q14_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_12_q14_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_12_q15_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_12_q15_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q8_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q8_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_12_q9_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_12_q9_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_12_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_13_q10_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_13_q10_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_13_q12_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_13_q12_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_13_q13_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_13_q13_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_13_q14_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_13_q14_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_13_q15_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_13_q15_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_13_q2_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_13_q2_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_13_q3_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_13_q3_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_13_q4_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_13_q4_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_13_q5_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_13_q5_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_13_q6_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_13_q6_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_13_q7_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_13_q7_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_13_q8_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_13_q8_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_13_q9_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_13_q9_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_13_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_14_q10_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_14_q10_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_14_q11_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_14_q11_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_14_q12_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_14_q12_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_14_q13_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_14_q13_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_14_q15_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_14_q15_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_14_q5_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_14_q5_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_14_q6_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_14_q6_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_14_q8_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_14_q8_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_15_q13_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_15_q13_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_15_q14_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_15_q14_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_15_q15_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_15_q15_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_16_q15_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_16_q15_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_17_q10_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_17_q10_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_17_q11_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_17_q11_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_17_q12_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_17_q12_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_17_q13_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_17_q13_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_17_q14_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_17_q14_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_17_q15_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_17_q15_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_17_q9_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_17_q9_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_17_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_19_q13_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_19_q13_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_1_q10_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_1_q10_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_1_q11_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_1_q11_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_1_q12_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_1_q12_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_1_q13_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_1_q13_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_1_q14_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_1_q14_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_1_q15_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_1_q15_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_1_q3_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_1_q3_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_1_q4_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_1_q4_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_1_q7_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_1_q7_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_20_q14_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_20_q14_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_20_q15_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_20_q15_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_2_q11_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_2_q11_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_2_q13_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_2_q13_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_2_q15_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_2_q15_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_3_q10_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_3_q10_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_3_q11_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_3_q11_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_3_q12_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_3_q12_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_3_q13_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_3_q13_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_3_q14_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_3_q14_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_3_q15_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_3_q15_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_3_q5_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_3_q5_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_3_q8_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_3_q8_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_3_q9_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_3_q9_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_3_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_6_q10_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_6_q10_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_6_q13_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_6_q13_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_6_q14_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_6_q14_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_6_q15_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_6_q15_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_6_q6_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_6_q6_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_6_q7_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_6_q7_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_6_q9_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_6_q9_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_6_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_7_q10_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_7_q10_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_7_q11_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_7_q11_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_7_q12_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_7_q12_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_7_q13_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_7_q13_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_7_q14_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_7_q14_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_7_q15_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_7_q15_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_8_q10_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_8_q10_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_8_q12_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_8_q12_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_8_q13_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_8_q13_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_8_q14_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_8_q14_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_8_q15_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_8_q15_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_8_q9_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_8_q9_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_8_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_ELOW/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q10_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q10_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q11_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q11_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q13_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q13_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q15_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q15_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q4_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q4_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q6_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q6_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q8_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q8_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q9_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_10_q9_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_10_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q10_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q10_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q11_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q11_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q12_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q12_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q13_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q13_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q14_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q14_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q15_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q15_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q2_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q2_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q3_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q3_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q4_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q4_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q7_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q7_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q8_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q8_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q9_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_12_q9_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_12_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q10_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q10_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q12_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q12_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q13_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q13_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q14_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q14_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q15_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q15_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q4_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q4_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q5_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q5_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q6_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q6_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q7_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q7_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q10_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q10_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q11_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q11_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q12_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q12_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q13_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q13_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q15_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q15_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q5_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q5_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q6_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q6_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q7_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q7_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q8_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q8_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q0_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q0_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q11_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q11_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q13_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q13_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q14_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q14_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q15_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q15_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q1_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q1_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q3_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q3_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q5_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q5_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q6_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q6_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q7_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q7_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q8_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q8_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q9_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_15_q9_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_15_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q15_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q15_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q10_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q10_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q11_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q11_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q12_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q12_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q13_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q13_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q14_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q14_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q15_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q15_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q9_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_17_q9_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_17_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q12_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q12_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q13_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q13_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q15_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q15_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q7_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q7_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q8_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q8_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q10_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q10_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q11_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q11_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q12_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q12_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q13_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q13_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q14_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q14_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q15_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q15_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q3_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q3_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q4_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q4_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q7_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q7_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q10_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q10_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q11_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q11_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q12_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q12_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q13_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q13_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q14_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q14_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q15_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q15_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q2_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q2_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q3_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q3_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q4_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q4_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q6_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q6_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q7_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q7_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q9_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_20_q9_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_20_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q11_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q11_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q13_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q13_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q15_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q15_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q10_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q10_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q11_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q11_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q12_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q12_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q13_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q13_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q14_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q14_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q15_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q15_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q5_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q5_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q8_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q8_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q9_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_3_q9_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_3_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q10_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q10_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q11_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q11_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q13_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q13_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q14_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q14_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q15_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q15_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q3_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q3_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q5_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q5_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q6_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q6_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q7_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q7_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q8_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q8_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q9_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_6_q9_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_6_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q10_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q10_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q11_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q11_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q12_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q12_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q13_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q13_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q14_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q14_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q15_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q15_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q10_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q10_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q12_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q12_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q13_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q13_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q14_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q14_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q15_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q15_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q9_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_8_q9_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_8_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4 b/synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4 rename to synthetic_video/videos/L_1024_frames/UNIFORM_EVAL_L1024_NO_RULES/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_12_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_12_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_12_q11_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_12_q11_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_12_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_12_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_12_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_12_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_12_q14_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_12_q14_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_12_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_12_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_12_q8_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_12_q8_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_12_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_12_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_12_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_13_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_13_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_13_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_13_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_13_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_13_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_13_q14_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_13_q14_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_13_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_13_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_13_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_13_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_13_q5_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_13_q5_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_13_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_13_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_13_q7_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_13_q7_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_14_q10_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_14_q10_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_14_q11_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_14_q11_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_14_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_14_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_14_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_14_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_14_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_14_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_14_q5_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_14_q5_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_14_q6_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_14_q6_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_14_q8_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_14_q8_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_15_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_15_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_15_q14_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_15_q14_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_15_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_15_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_16_q15_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_16_q15_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_17_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_17_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_17_q11_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_17_q11_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_17_q12_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_17_q12_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_17_q13_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_17_q13_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_17_q14_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_17_q14_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_17_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_17_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_17_q9_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_17_q9_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_17_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_19_q13_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_19_q13_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_1_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_1_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_1_q11_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_1_q11_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_1_q12_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_1_q12_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_1_q13_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_1_q13_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_1_q14_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_1_q14_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_1_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_1_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_1_q3_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_1_q3_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_1_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_1_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_1_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_1_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_20_q14_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_20_q14_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_20_q15_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_20_q15_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_2_q11_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_2_q11_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_2_q13_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_2_q13_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_2_q15_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_2_q15_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_3_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_3_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_3_q11_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_3_q11_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_3_q12_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_3_q12_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_3_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_3_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_3_q14_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_3_q14_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_3_q5_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_3_q5_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_3_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_3_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_3_q9_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_3_q9_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_3_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_6_q10_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_6_q10_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_6_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_6_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_6_q14_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_6_q14_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_6_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_6_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_6_q6_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_6_q6_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_6_q7_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_6_q7_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_6_q9_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_6_q9_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_6_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_7_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_7_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_7_q11_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_7_q11_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_7_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_7_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_7_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_7_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_7_q14_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_7_q14_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_7_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_7_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_8_q10_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_8_q10_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_8_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_8_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_8_q13_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_8_q13_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_8_q14_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_8_q14_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_8_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_8_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_8_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_8_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_8_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_ELOW/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_12_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_12_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_12_q11_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_12_q11_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_12_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_12_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_12_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_12_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_12_q14_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_12_q14_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_12_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_12_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_12_q8_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_12_q8_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_12_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_12_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_12_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_13_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_13_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_13_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_13_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_13_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_13_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_13_q14_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_13_q14_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_13_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_13_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_13_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_13_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_13_q5_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_13_q5_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_13_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_13_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_13_q7_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_13_q7_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_14_q10_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_14_q10_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_14_q11_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_14_q11_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_14_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_14_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_14_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_14_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_14_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_14_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_14_q5_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_14_q5_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_14_q6_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_14_q6_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_14_q8_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_14_q8_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_15_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_15_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_15_q14_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_15_q14_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_15_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_15_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_16_q15_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_16_q15_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_17_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_17_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_17_q11_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_17_q11_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_17_q12_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_17_q12_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_17_q13_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_17_q13_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_17_q14_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_17_q14_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_17_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_17_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_17_q9_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_17_q9_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_17_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_19_q13_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_19_q13_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_1_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_1_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_1_q11_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_1_q11_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_1_q12_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_1_q12_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_1_q13_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_1_q13_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_1_q14_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_1_q14_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_1_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_1_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_1_q3_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_1_q3_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_1_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_1_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_1_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_1_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_20_q14_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_20_q14_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_20_q15_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_20_q15_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_2_q11_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_2_q11_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_2_q13_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_2_q13_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_2_q15_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_2_q15_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_3_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_3_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_3_q11_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_3_q11_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_3_q12_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_3_q12_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_3_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_3_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_3_q14_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_3_q14_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_3_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_3_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_3_q5_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_3_q5_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_3_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_3_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_3_q9_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_3_q9_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_3_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_6_q10_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_6_q10_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_6_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_6_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_6_q14_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_6_q14_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_6_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_6_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_6_q6_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_6_q6_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_6_q7_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_6_q7_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_6_q9_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_6_q9_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_6_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_7_q10_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_7_q10_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_7_q11_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_7_q11_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_7_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_7_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_7_q13_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_7_q13_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_7_q14_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_7_q14_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_7_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_7_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_8_q10_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_8_q10_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_8_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_8_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_8_q13_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_8_q13_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_8_q14_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_8_q14_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_8_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_8_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_8_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_8_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_8_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_10_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_10_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_11_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_11_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_12_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_12_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_13_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_13_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_14_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_14_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_15_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_15_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_16_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_16_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_17_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_17_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_18_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_18_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_19_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_19_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_1_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_1_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_20_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_20_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_2_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_2_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_3_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_3_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_4_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_4_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_5_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_5_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_6_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_6_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_7_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_7_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_8_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_8_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_MED/video_9_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_MED/video_9_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_MED/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q11_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q11_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q14_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q14_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_12_q8_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_12_q8_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_12_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q14_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q14_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q5_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q5_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q7_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q7_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q10_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q10_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q11_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q11_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q5_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q5_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q6_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q6_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q8_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q8_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q14_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q14_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q15_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q15_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q11_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q11_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q13_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q13_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q14_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q14_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q15_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q15_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q9_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_17_q9_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_17_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q11_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q11_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q14_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q14_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q1_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q1_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q2_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q2_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q5_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q5_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q6_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q6_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q9_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_18_q9_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_18_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q13_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q13_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q11_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q11_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q12_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q12_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q13_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q13_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q14_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q14_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q3_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q3_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q14_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q14_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q15_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q15_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q11_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q11_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q13_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q13_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q15_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q15_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q11_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q11_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q12_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q12_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q14_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q14_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q5_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q5_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q9_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_3_q9_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_3_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q10_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q10_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q14_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q14_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q6_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q6_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q7_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q7_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q9_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q9_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_6_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q10_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q10_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q11_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q11_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_7_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_7_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q14_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q14_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q10_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q10_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q13_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q13_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q14_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q14_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q15_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q15_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q9_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_8_q9_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_8_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4 b/synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4 rename to synthetic_video/videos/L_128_frames/UNIFORM_EVAL_L128_NO_RULES/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_12_q10_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_12_q10_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_12_q11_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_12_q11_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_12_q12_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_12_q12_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_12_q13_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_12_q13_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_12_q14_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_12_q14_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_12_q15_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_12_q15_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_12_q8_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_12_q8_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_12_q9_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_12_q9_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_12_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_13_q10_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_13_q10_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_13_q12_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_13_q12_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_13_q13_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_13_q13_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_13_q14_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_13_q14_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_13_q15_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_13_q15_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_13_q4_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_13_q4_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_13_q5_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_13_q5_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_13_q6_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_13_q6_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_13_q7_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_13_q7_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_14_q10_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_14_q10_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_14_q11_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_14_q11_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_14_q12_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_14_q12_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_14_q13_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_14_q13_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_14_q15_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_14_q15_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_14_q5_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_14_q5_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_14_q6_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_14_q6_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_14_q8_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_14_q8_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_15_q13_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_15_q13_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_15_q14_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_15_q14_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_15_q15_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_15_q15_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_16_q15_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_16_q15_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_17_q10_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_17_q10_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_17_q11_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_17_q11_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_17_q12_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_17_q12_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_17_q13_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_17_q13_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_17_q14_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_17_q14_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_17_q15_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_17_q15_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_17_q9_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_17_q9_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_17_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_19_q13_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_19_q13_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_1_q10_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_1_q10_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_1_q11_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_1_q11_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_1_q12_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_1_q12_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_1_q13_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_1_q13_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_1_q14_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_1_q14_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_1_q15_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_1_q15_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_1_q3_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_1_q3_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_1_q4_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_1_q4_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_1_q7_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_1_q7_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_20_q14_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_20_q14_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_20_q15_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_20_q15_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_2_q11_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_2_q11_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_2_q13_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_2_q13_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_2_q15_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_2_q15_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_3_q10_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_3_q10_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_3_q11_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_3_q11_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_3_q12_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_3_q12_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_3_q13_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_3_q13_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_3_q14_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_3_q14_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_3_q15_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_3_q15_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_3_q5_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_3_q5_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_3_q8_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_3_q8_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_3_q9_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_3_q9_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_3_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_6_q10_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_6_q10_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_6_q13_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_6_q13_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_6_q14_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_6_q14_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_6_q15_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_6_q15_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_6_q6_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_6_q6_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_6_q7_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_6_q7_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_6_q9_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_6_q9_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_6_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_7_q10_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_7_q10_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_7_q11_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_7_q11_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_7_q12_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_7_q12_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_7_q13_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_7_q13_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_7_q14_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_7_q14_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_7_q15_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_7_q15_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_8_q10_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_8_q10_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_8_q12_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_8_q12_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_8_q13_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_8_q13_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_8_q14_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_8_q14_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_8_q15_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_8_q15_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_8_q9_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_8_q9_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_8_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_ELOW/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q10_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q10_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q11_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q11_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q12_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q12_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q13_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q13_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q14_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q14_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q15_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q15_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q8_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q8_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q9_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_12_q9_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_12_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q10_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q10_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q12_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q12_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q13_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q13_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q14_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q14_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q15_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q15_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q4_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q4_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q5_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q5_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q6_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q6_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q7_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q7_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q10_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q10_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q11_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q11_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q12_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q12_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q13_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q13_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q14_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q14_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q15_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q15_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q5_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q5_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q6_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q6_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q8_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q8_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q13_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q13_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q14_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q14_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q15_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q15_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q15_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q15_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q10_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q10_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q11_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q11_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q12_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q12_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q13_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q13_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q14_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q14_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q15_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q15_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q9_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_17_q9_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_17_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q13_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q13_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q10_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q10_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q11_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q11_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q12_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q12_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q13_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q13_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q14_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q14_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q15_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q15_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q3_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q3_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q4_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q4_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q7_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q7_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q14_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q14_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q15_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q15_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q11_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q11_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q13_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q13_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q15_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q15_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q10_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q10_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q11_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q11_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q12_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q12_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q13_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q13_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q14_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q14_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q15_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q15_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q5_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q5_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q8_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q8_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q9_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_3_q9_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_3_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q10_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q10_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q13_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q13_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q14_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q14_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q15_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q15_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q6_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q6_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q7_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q7_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q9_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_6_q9_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_6_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q10_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q10_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q11_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q11_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q12_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q12_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q13_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q13_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q14_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q14_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q15_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q15_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q10_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q10_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q12_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q12_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q13_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q13_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q14_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q14_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q15_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q15_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q9_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_8_q9_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_8_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_NO_RULES/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4 b/synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4 rename to synthetic_video/videos/L_16_frames/UNIFORM_EVAL_L016_NO_RULES/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_12_q10_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_12_q10_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_12_q11_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_12_q11_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_12_q12_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_12_q12_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_12_q13_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_12_q13_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_12_q14_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_12_q14_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_12_q15_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_12_q15_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_12_q8_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_12_q8_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_12_q9_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_12_q9_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_12_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_13_q10_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_13_q10_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_13_q12_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_13_q12_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_13_q13_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_13_q13_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_13_q14_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_13_q14_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_13_q15_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_13_q15_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_13_q4_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_13_q4_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_13_q5_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_13_q5_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_13_q6_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_13_q6_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_13_q7_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_13_q7_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_14_q10_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_14_q10_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_14_q11_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_14_q11_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_14_q12_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_14_q12_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_14_q13_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_14_q13_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_14_q15_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_14_q15_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_14_q5_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_14_q5_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_14_q6_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_14_q6_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_14_q8_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_14_q8_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_15_q13_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_15_q13_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_15_q14_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_15_q14_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_15_q15_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_15_q15_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_16_q15_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_16_q15_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_17_q10_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_17_q10_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_17_q11_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_17_q11_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_17_q12_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_17_q12_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_17_q13_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_17_q13_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_17_q14_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_17_q14_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_17_q15_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_17_q15_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_17_q9_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_17_q9_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_17_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_19_q13_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_19_q13_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_1_q10_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_1_q10_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_1_q11_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_1_q11_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_1_q12_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_1_q12_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_1_q13_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_1_q13_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_1_q14_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_1_q14_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_1_q15_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_1_q15_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_1_q3_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_1_q3_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_1_q4_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_1_q4_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_1_q7_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_1_q7_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_20_q14_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_20_q14_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_20_q15_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_20_q15_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_2_q11_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_2_q11_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_2_q13_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_2_q13_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_2_q15_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_2_q15_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_3_q10_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_3_q10_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_3_q11_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_3_q11_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_3_q12_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_3_q12_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_3_q13_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_3_q13_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_3_q14_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_3_q14_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_3_q15_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_3_q15_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_3_q5_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_3_q5_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_3_q8_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_3_q8_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_3_q9_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_3_q9_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_3_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_6_q10_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_6_q10_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_6_q13_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_6_q13_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_6_q14_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_6_q14_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_6_q15_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_6_q15_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_6_q6_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_6_q6_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_6_q7_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_6_q7_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_6_q9_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_6_q9_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_6_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_7_q10_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_7_q10_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_7_q11_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_7_q11_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_7_q12_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_7_q12_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_7_q13_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_7_q13_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_7_q14_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_7_q14_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_7_q15_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_7_q15_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_8_q10_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_8_q10_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_8_q11_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_8_q11_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_8_q12_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_8_q12_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_8_q13_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_8_q13_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_8_q14_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_8_q14_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_8_q15_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_8_q15_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_8_q9_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_8_q9_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_8_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_ELOW/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q10_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q10_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q11_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q11_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q12_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q12_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q13_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q13_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q14_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q14_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q15_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q15_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q8_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q8_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q9_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_12_q9_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_12_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q10_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q10_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q12_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q12_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q13_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q13_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q14_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q14_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q15_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q15_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q4_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q4_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q5_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q5_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q6_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q6_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q7_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q7_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q10_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q10_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q11_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q11_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q12_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q12_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q13_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q13_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q15_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q15_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q5_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q5_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q6_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q6_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q8_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q8_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q12_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q12_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q13_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q13_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q14_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q14_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q15_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q15_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q15_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q15_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q10_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q10_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q11_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q11_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q12_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q12_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q13_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q13_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q14_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q14_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q15_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q15_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q8_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q8_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q9_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_17_q9_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_17_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q13_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q13_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q10_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q10_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q11_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q11_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q12_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q12_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q13_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q13_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q14_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q14_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q15_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q15_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q3_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q3_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q4_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q4_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q7_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q7_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q9_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_1_q9_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_1_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q14_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q14_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q15_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q15_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q11_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q11_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q13_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q13_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q15_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q15_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q10_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q10_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q11_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q11_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q12_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q12_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q13_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q13_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q14_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q14_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q15_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q15_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q5_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q5_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q8_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q8_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q9_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_3_q9_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_3_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q10_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q10_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q13_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q13_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q14_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q14_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q15_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q15_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q6_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q6_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q7_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q7_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q9_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_6_q9_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_6_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q10_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q10_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q11_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q11_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q12_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q12_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q13_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q13_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q14_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q14_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q15_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q15_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q10_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q10_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q12_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q12_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q13_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q13_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q14_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q14_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q15_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q15_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q9_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_8_q9_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_8_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4 b/synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4 rename to synthetic_video/videos/L_256_frames/UNIFORM_EVAL_L256_NO_RULES/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_12_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_12_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_12_q11_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_12_q11_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_12_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_12_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_12_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_12_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_12_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_12_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_12_q15_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_12_q15_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_12_q8_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_12_q8_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_12_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_12_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_12_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_13_q10_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_13_q10_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_13_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_13_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_13_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_13_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_13_q14_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_13_q14_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_13_q15_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_13_q15_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_13_q4_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_13_q4_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_13_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_13_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_13_q6_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_13_q6_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_13_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_13_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_14_q10_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_14_q10_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_14_q11_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_14_q11_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_14_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_14_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_14_q13_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_14_q13_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_14_q15_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_14_q15_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_14_q5_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_14_q5_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_14_q6_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_14_q6_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_14_q8_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_14_q8_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_15_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_15_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_15_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_15_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_15_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_15_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_16_q15_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_16_q15_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_17_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_17_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_17_q11_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_17_q11_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_17_q12_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_17_q12_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_17_q13_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_17_q13_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_17_q14_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_17_q14_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_17_q15_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_17_q15_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_17_q9_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_17_q9_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_17_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_19_q13_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_19_q13_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_1_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_1_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_1_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_1_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_1_q12_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_1_q12_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_1_q13_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_1_q13_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_1_q14_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_1_q14_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_1_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_1_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_1_q3_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_1_q3_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_1_q4_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_1_q4_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_1_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_1_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_20_q14_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_20_q14_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_20_q15_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_20_q15_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_2_q11_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_2_q11_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_2_q13_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_2_q13_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_2_q15_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_2_q15_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_3_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_3_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_3_q11_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_3_q11_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_3_q12_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_3_q12_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_3_q13_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_3_q13_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_3_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_3_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_3_q15_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_3_q15_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_3_q5_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_3_q5_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_3_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_3_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_3_q9_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_3_q9_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_3_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_6_q10_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_6_q10_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_6_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_6_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_6_q14_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_6_q14_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_6_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_6_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_6_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_6_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_6_q7_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_6_q7_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_6_q9_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_6_q9_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_6_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_7_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_7_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_7_q11_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_7_q11_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_7_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_7_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_7_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_7_q14_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_7_q14_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_7_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_7_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_8_q10_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_8_q10_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_8_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_8_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_8_q13_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_8_q13_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_8_q14_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_8_q14_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_8_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_8_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_8_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_8_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_8_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_ELOW/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_ELOW/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_ELOW/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_12_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_12_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_12_q11_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_12_q11_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_12_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_12_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_12_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_12_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_12_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_12_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_12_q15_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_12_q15_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_12_q8_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_12_q8_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_12_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_12_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_12_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_13_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_13_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_13_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_13_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_13_q13_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_13_q13_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_13_q14_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_13_q14_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_13_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_13_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_13_q4_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_13_q4_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_13_q5_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_13_q5_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_13_q6_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_13_q6_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_13_q7_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_13_q7_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_14_q10_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_14_q10_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_14_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_14_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_14_q12_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_14_q12_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_14_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_14_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_14_q15_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_14_q15_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_14_q1_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_14_q1_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_14_q2_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_14_q2_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_14_q4_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_14_q4_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_14_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_14_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_14_q6_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_14_q6_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_14_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_14_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_14_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_14_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_14_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_15_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_15_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_15_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_15_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_15_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_15_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_16_q15_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_16_q15_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_17_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_17_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_17_q11_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_17_q11_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_17_q12_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_17_q12_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_17_q13_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_17_q13_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_17_q14_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_17_q14_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_17_q15_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_17_q15_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_17_q9_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_17_q9_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_17_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_19_q13_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_19_q13_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_1_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_1_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_1_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_1_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_1_q12_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_1_q12_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_1_q13_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_1_q13_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_1_q14_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_1_q14_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_1_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_1_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_1_q3_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_1_q3_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_1_q4_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_1_q4_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_1_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_1_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_20_q14_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_20_q14_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_20_q15_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_20_q15_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_2_q11_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_2_q11_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_2_q13_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_2_q13_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_2_q15_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_2_q15_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_3_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_3_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_3_q11_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_3_q11_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_3_q12_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_3_q12_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_3_q13_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_3_q13_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_3_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_3_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_3_q15_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_3_q15_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_3_q5_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_3_q5_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_3_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_3_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_3_q9_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_3_q9_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_3_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_6_q10_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_6_q10_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_6_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_6_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_6_q14_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_6_q14_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_6_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_6_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_6_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_6_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_6_q7_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_6_q7_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_6_q9_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_6_q9_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_6_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_7_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_7_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_7_q11_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_7_q11_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_7_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_7_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_7_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_7_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_7_q14_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_7_q14_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_7_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_7_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_8_q10_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_8_q10_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_8_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_8_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_8_q13_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_8_q13_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_8_q14_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_8_q14_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_8_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_8_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_8_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_8_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_8_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_10_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_10_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_11_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_11_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_12_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_12_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_13_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_13_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_14_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_14_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_15_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_15_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_16_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_16_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_17_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_17_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_18_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_18_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_19_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_19_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_1_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_1_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_20_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_20_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_2_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_2_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_3_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_3_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_4_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_4_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_5_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_5_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_6_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_6_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_7_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_7_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_8_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_8_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_MED/video_9_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_MED/video_9_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_MED/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q11_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q11_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q15_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q15_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_12_q8_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_12_q8_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_12_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_12_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q13_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q13_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q14_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q14_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_NO_RULES/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q4_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q4_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q5_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q5_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q6_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q6_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q7_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q7_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q10_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q10_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q11_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q11_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q13_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q13_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q15_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q15_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q5_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q5_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q6_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q6_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q8_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q8_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q15_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q15_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q11_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q11_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q13_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q13_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q14_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q14_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q15_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q15_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q9_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_17_q9_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_17_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q13_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q13_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q12_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q12_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q13_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q13_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q14_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q14_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q3_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q3_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q4_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q4_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q14_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q14_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q15_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q15_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q11_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q11_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q13_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q13_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q15_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q15_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q11_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q11_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q12_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q12_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q13_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q13_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q15_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q15_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q5_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q5_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q9_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_3_q9_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_3_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q10_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q10_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q14_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q14_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q7_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q7_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q9_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_6_q9_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_6_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q10_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q10_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q11_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q11_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q14_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q14_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q10_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q10_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q13_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q13_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q14_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q14_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q15_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q15_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q9_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_8_q9_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_8_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4 b/synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4 rename to synthetic_video/videos/L_32_frames/UNIFORM_EVAL_L032_NO_RULES/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_12_q10_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_12_q10_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_12_q11_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_12_q11_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_12_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_12_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_12_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_12_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_12_q14_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_12_q14_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_12_q15_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_12_q15_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_12_q8_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_12_q8_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_12_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_12_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_12_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_13_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_13_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_13_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_13_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_13_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_13_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_13_q14_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_13_q14_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_13_q15_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_13_q15_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_13_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_13_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_13_q5_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_13_q5_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_13_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_13_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_13_q7_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_13_q7_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_14_q10_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_14_q10_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_14_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_14_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_14_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_14_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_14_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_14_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_14_q15_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_14_q15_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_14_q5_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_14_q5_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_14_q6_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_14_q6_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_14_q8_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_14_q8_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_15_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_15_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_15_q14_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_15_q14_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_15_q15_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_15_q15_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_16_q15_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_16_q15_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_17_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_17_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_17_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_17_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_17_q12_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_17_q12_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_17_q13_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_17_q13_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q14_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q14_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_17_q15_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_17_q15_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_17_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_17_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_17_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_19_q13_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_19_q13_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_1_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_1_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_1_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_1_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_1_q12_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_1_q12_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_1_q13_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_1_q13_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_1_q14_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_1_q14_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_1_q15_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_1_q15_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_1_q3_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_1_q3_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_1_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_1_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_1_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_1_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_20_q14_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_20_q14_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_20_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_20_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_2_q11_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_2_q11_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_2_q13_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_2_q13_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_2_q15_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_2_q15_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_3_q10_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_3_q10_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_3_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_3_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_3_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_3_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_3_q13_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_3_q13_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_3_q14_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_3_q14_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_3_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_3_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_3_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_3_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_3_q8_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_3_q8_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_3_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_3_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_3_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_6_q10_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_6_q10_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_6_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_6_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_6_q13_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_6_q13_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_6_q14_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_6_q14_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_6_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_6_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_6_q6_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_6_q6_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_6_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_6_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_6_q9_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_6_q9_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_6_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_7_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_7_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_7_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_7_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_7_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_7_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_7_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_7_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_7_q14_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_7_q14_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_7_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_7_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_8_q10_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_8_q10_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_8_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_8_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_8_q13_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_8_q13_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_8_q14_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_8_q14_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_8_q15_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_8_q15_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_8_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_8_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_8_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_ELOW/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_12_q10_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_12_q10_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_12_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_12_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_12_q12_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_12_q12_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_12_q13_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_12_q13_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_12_q14_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_12_q14_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_12_q15_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_12_q15_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_12_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_12_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_12_q6_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_12_q6_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_12_q8_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_12_q8_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_12_q9_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_12_q9_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_12_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_13_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_13_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_13_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_13_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_13_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_13_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_13_q14_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_13_q14_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_13_q15_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_13_q15_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_13_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_13_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_13_q5_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_13_q5_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_13_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_13_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_13_q7_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_13_q7_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_14_q10_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_14_q10_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_14_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_14_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_14_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_14_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_14_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_14_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_14_q15_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_14_q15_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_14_q5_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_14_q5_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_14_q6_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_14_q6_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_14_q8_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_14_q8_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_15_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_15_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_15_q14_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_15_q14_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_15_q15_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_15_q15_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_16_q15_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_16_q15_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_17_q10_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_17_q10_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_17_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_17_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_17_q12_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_17_q12_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_17_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_17_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_17_q14_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_17_q14_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_17_q15_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_17_q15_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_17_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_17_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_17_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_19_q13_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_19_q13_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_1_q10_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_1_q10_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_1_q11_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_1_q11_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_1_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_1_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_1_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_1_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_1_q14_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_1_q14_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_1_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_1_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_1_q3_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_1_q3_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_1_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_1_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_1_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_1_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_20_q14_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_20_q14_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_20_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_20_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_2_q11_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_2_q11_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_2_q13_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_2_q13_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_2_q15_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_2_q15_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_3_q10_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_3_q10_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_3_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_3_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_3_q12_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_3_q12_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_3_q13_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_3_q13_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_3_q14_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_3_q14_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_3_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_3_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_3_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_3_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_3_q5_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_3_q5_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_3_q6_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_3_q6_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_3_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_3_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_3_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_3_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_3_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_3_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_3_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_5_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_5_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_5_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_5_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_5_q13_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_5_q13_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_5_q14_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_5_q14_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_5_q15_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_5_q15_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_5_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_5_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_5_q6_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_5_q6_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_5_q7_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_5_q7_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_5_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_5_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_6_q10_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_6_q10_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_6_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_6_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_6_q14_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_6_q14_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_6_q15_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_6_q15_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_6_q6_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_6_q6_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_6_q7_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_6_q7_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_6_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_6_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_6_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_7_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_7_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_7_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_7_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_7_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_7_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_7_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_7_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_7_q14_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_7_q14_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_7_q15_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_7_q15_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_8_q10_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_8_q10_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_8_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_8_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_8_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_8_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_8_q14_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_8_q14_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_8_q15_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_8_q15_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_8_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_8_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_8_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_10_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_10_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_11_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_11_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_12_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_12_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_13_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_13_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_14_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_14_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_15_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_15_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_16_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_16_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_17_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_17_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_18_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_18_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_19_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_19_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_1_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_1_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_20_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_20_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_2_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_2_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_3_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_3_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_4_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_4_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_5_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_5_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_6_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_6_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_7_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_7_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_8_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_8_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_MED/video_9_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_MED/video_9_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_MED/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q10_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q10_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q13_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q13_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q14_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q14_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_12_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_12_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q14_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q14_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q15_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q15_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q5_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q5_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q7_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q7_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q10_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q10_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q15_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q15_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q5_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q5_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q6_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q6_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q8_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q8_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q14_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q14_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q15_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q15_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q15_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q15_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q12_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q12_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q13_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q13_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q14_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q14_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q15_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q15_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_17_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_17_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q13_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q13_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q10_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q10_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q11_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q11_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q13_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q13_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q14_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q14_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q15_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q15_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q3_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q3_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q7_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q7_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q14_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q14_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q11_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q11_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q13_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q13_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q15_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q15_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q12_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q12_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q14_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q14_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q15_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q15_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q5_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q5_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q8_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q8_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q9_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_3_q9_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_3_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q10_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q10_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q14_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q14_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q15_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q15_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q6_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q6_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q7_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q7_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_6_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q10_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q10_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q11_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q11_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q12_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q12_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q14_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q14_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q15_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q15_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q10_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q10_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q12_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q12_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q14_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q14_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q15_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q15_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q4_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q4_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q6_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q6_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q7_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q7_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q9_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_8_q9_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_8_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q10_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q10_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q12_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q12_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q15_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q15_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q9_false_spatial.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_9_q9_false_spatial.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/clips/video_9_q9_false_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4 b/synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4 rename to synthetic_video/videos/L_512_frames/UNIFORM_EVAL_L512_NO_RULES/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_12_q10_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_12_q10_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_12_q11_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_12_q11_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_12_q12_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_12_q12_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_12_q13_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_12_q13_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_12_q14_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_12_q14_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_12_q15_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_12_q15_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q8_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q8_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_12_q9_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_12_q9_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_12_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_13_q10_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_13_q10_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_13_q11_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_13_q11_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_13_q12_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_13_q12_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_13_q13_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_13_q13_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_13_q14_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_13_q14_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_13_q15_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_13_q15_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_13_q4_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_13_q4_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_13_q5_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_13_q5_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_13_q6_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_13_q6_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_13_q7_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_13_q7_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_14_q10_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_14_q10_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_14_q11_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_14_q11_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_14_q12_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_14_q12_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_14_q13_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_14_q13_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_14_q15_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_14_q15_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_14_q5_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_14_q5_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_14_q6_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_14_q6_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_14_q8_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_14_q8_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_15_q13_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_15_q13_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_15_q14_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_15_q14_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_15_q15_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_15_q15_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_16_q15_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_16_q15_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_17_q10_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_17_q10_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_17_q11_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_17_q11_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_17_q12_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_17_q12_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_17_q13_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_17_q13_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_17_q14_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_17_q14_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_17_q15_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_17_q15_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_17_q9_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_17_q9_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_17_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_19_q13_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_19_q13_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_1_q10_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_1_q10_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_1_q11_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_1_q11_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_1_q12_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_1_q12_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_1_q13_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_1_q13_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_1_q14_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_1_q14_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_1_q15_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_1_q15_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_1_q3_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_1_q3_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_1_q4_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_1_q4_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_1_q7_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_1_q7_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_20_q14_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_20_q14_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_20_q15_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_20_q15_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_2_q11_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_2_q11_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_2_q13_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_2_q13_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_2_q15_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_2_q15_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_3_q10_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_3_q10_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_3_q11_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_3_q11_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_3_q12_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_3_q12_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_3_q13_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_3_q13_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_3_q14_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_3_q14_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_3_q15_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_3_q15_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_3_q5_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_3_q5_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_3_q8_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_3_q8_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_3_q9_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_3_q9_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_3_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_NO_RULES/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_6_q10_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_6_q10_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_6_q13_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_6_q13_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_6_q14_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_6_q14_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_6_q15_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_6_q15_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_6_q6_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_6_q6_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_6_q7_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_6_q7_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_6_q9_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_6_q9_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_6_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_7_q10_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_7_q10_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_7_q11_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_7_q11_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_7_q12_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_7_q12_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_7_q13_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_7_q13_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_7_q14_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_7_q14_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_7_q15_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_7_q15_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_8_q10_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_8_q10_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_8_q12_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_8_q12_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_8_q13_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_8_q13_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_8_q14_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_8_q14_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_8_q15_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_8_q15_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_8_q9_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_8_q9_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_8_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_ELOW/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_ELOW/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_ELOW/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q10_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q10_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q11_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q11_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q12_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q12_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q13_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q13_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q14_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q14_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q15_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q15_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q8_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q8_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q9_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_12_q9_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_12_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q10_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q10_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q12_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q12_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q13_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q13_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q14_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q14_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q15_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q15_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q4_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q4_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q5_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q5_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q6_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q6_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q7_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q7_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q10_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q10_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q11_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q11_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q12_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q12_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q13_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q13_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q15_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q15_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q5_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q5_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q6_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q6_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q8_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q8_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q13_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q13_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q14_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q14_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q15_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q15_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q15_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q15_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q10_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q10_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q11_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q11_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q12_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q12_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q13_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q13_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q14_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q14_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q15_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q15_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q9_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_17_q9_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_17_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q13_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q13_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q10_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q10_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q11_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q11_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q12_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q12_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q13_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q13_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q14_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q14_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q15_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q15_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q3_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q3_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q4_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q4_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q7_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q7_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q14_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q14_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q15_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q15_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q11_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q11_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q13_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q13_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q15_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q15_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q10_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q10_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q11_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q11_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q12_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q12_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q13_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q13_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q14_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q14_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q15_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q15_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q5_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q5_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q8_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q8_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q9_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_3_q9_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_3_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q10_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q10_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q13_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q13_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q14_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q14_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q15_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q15_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q6_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q6_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q7_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q7_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q9_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_6_q9_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_6_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q10_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q10_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q11_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q11_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q12_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q12_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q13_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q13_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q14_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q14_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q15_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q15_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q10_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q10_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q12_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q12_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q13_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q13_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q14_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q14_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q15_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q15_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q9_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_8_q9_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_8_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4 b/synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4 rename to synthetic_video/videos/L_64_frames/UNIFORM_EVAL_L064_NO_RULES/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_12_q10_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_12_q10_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_12_q11_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_12_q11_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_12_q12_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_12_q12_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_12_q13_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_12_q13_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_12_q14_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_12_q14_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_12_q15_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_12_q15_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_12_q8_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_12_q8_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_12_q9_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_12_q9_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_12_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_13_q10_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_13_q10_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_13_q12_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_13_q12_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_13_q13_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_13_q13_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_13_q14_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_13_q14_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_13_q15_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_13_q15_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_13_q4_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_13_q4_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_13_q5_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_13_q5_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_13_q6_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_13_q6_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_13_q7_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_13_q7_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_14_q10_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_14_q10_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_14_q11_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_14_q11_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_14_q12_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_14_q12_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_14_q13_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_14_q13_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_14_q15_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_14_q15_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_14_q5_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_14_q5_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_14_q6_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_14_q6_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_14_q8_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_14_q8_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_15_q13_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_15_q13_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_15_q14_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_15_q14_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_15_q15_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_15_q15_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_16_q15_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_16_q15_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_17_q10_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_17_q10_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_17_q11_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_17_q11_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_17_q12_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_17_q12_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_17_q13_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_17_q13_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_17_q14_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_17_q14_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_17_q15_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_17_q15_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_17_q9_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_17_q9_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_17_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_19_q13_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_19_q13_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_MED/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_MED/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_1_q10_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_1_q10_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_1_q11_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_1_q11_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_1_q12_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_1_q12_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_1_q13_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_1_q13_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_1_q14_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_1_q14_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_1_q15_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_1_q15_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_1_q3_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_1_q3_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_1_q4_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_1_q4_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_1_q7_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_1_q7_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L032_NO_RULES/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_20_q14_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_20_q14_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_20_q15_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_20_q15_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_2_q11_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_2_q11_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_2_q13_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_2_q13_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_2_q15_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_2_q15_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_3_q10_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_3_q10_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_3_q11_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_3_q11_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_3_q12_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_3_q12_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_3_q13_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_3_q13_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_3_q14_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_3_q14_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_3_q15_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_3_q15_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_3_q5_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_3_q5_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_3_q8_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_3_q8_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_3_q9_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_3_q9_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_3_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_NO_RULES/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_4_q13_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_4_q13_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_4_q14_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_4_q14_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_4_q15_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_4_q15_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_6_q10_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_6_q10_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_6_q13_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_6_q13_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_6_q14_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_6_q14_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_6_q15_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_6_q15_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_6_q6_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_6_q6_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_6_q7_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_6_q7_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_6_q9_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_6_q9_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_6_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_7_q10_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_7_q10_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_7_q11_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_7_q11_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_7_q12_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_7_q12_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_7_q13_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_7_q13_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_7_q14_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_7_q14_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_7_q15_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_7_q15_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_8_q10_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_8_q10_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_8_q12_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_8_q12_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_8_q13_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_8_q13_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_8_q14_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_8_q14_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_8_q15_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_8_q15_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_8_q9_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_8_q9_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_8_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_ELOW/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_ELOW/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_ELOW/video_9_v0.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q0_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q0_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q10_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q10_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q11_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q11_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q12_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q12_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q13_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q13_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q14_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q14_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q15_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q15_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q1_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q1_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q2_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q2_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q3_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q3_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q4_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q4_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q5_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q5_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q6_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q6_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q7_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q7_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q8_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q8_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q9_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_10_q9_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_10_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q0_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q0_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q10_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q10_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q11_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q11_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q12_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q12_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q13_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q13_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q14_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q14_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q15_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q15_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q1_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q1_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q2_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q2_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q3_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q3_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q4_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q4_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q5_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q5_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q6_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q6_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q7_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q7_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q8_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_11_q8_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_11_q9_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_11_q9_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_11_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q0_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q0_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q10_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q10_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q11_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q11_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q12_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q12_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q13_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q13_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q14_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q14_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q15_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q15_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q1_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q1_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q2_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q2_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q3_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q3_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_12_q4_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_12_q4_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q5_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q5_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q6_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q6_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q7_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q7_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q8_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q8_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q9_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_12_q9_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_12_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q0_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q0_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q10_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q10_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q11_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q11_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q12_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q12_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q13_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q13_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q14_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q14_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q15_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q15_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q1_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q1_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q2_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q2_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q3_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q3_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q4_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q4_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q5_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q5_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q6_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q6_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q7_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q7_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q8_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q8_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q9_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_13_q9_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_13_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q0_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q0_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q10_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q10_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q11_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q11_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q12_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q12_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q13_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q13_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q14_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q14_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q15_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q15_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q1_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q1_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q2_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q2_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q3_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q3_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q4_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q4_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q5_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q5_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q6_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q6_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q7_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q7_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q8_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q8_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q9_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_14_q9_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_14_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q0_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q0_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L1024_ELOW/video_15_q10_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L1024_ELOW/video_15_q10_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q11_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q11_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q12_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q12_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q13_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q13_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q14_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q14_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q15_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q15_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q1_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q1_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q2_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q2_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q3_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q3_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q4_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q4_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q5_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q5_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q6_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q6_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q7_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q7_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q8_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_15_q8_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_15_q9_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_15_q9_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_15_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q0_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q0_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q10_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q10_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q11_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q11_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q12_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q12_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q13_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q13_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q14_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q14_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q15_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q15_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q1_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q1_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q2_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q2_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q3_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q3_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q4_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q4_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q5_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q5_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q6_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q6_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q7_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q7_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q8_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q8_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q9_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_16_q9_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_16_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q0_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q0_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q10_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q10_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q11_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q11_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q12_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q12_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q13_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q13_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L512_ELOW/video_17_q14_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_ELOW/video_17_q14_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q15_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q15_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q1_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q1_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q1_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q1_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q2_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q2_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q3_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q3_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q4_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q4_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q5_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q5_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q5_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q5_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q6_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q6_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q7_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q7_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q8_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q8_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q9_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_17_q9_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_17_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q0_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q0_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q10_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q10_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q11_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q11_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q12_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q12_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q13_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q13_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q14_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q14_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q15_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q15_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q1_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q1_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q2_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q2_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q2_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q2_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q3_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q3_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q4_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q4_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q5_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q5_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q6_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q6_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q7_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q7_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q8_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q8_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q9_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_18_q9_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_18_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q0_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q0_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q10_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q10_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q11_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q11_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q12_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q12_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q13_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q13_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q14_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q14_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q15_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q15_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q1_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q1_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q2_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q2_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q3_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q3_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q4_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q4_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q5_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q5_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L128_MED/video_19_q6_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_MED/video_19_q6_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q7_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q7_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q8_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q8_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q9_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_19_q9_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_19_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q0_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q0_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q10_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q10_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q11_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q11_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q12_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q12_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q13_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q13_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q14_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q14_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q15_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q15_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q1_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q1_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q2_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q2_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q3_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q3_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q4_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q4_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q5_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q5_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q6_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q6_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q7_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L064_NO_RULES/video_1_q7_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q8_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q8_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q9_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_1_q9_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_1_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q0_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q0_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q0_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q0_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q10_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q10_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q11_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q11_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q12_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q12_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q13_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q13_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q14_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q14_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q15_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q15_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q15_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q15_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q1_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q1_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L512_MED/video_20_q2_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L512_MED/video_20_q2_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q3_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q3_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q4_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q4_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q5_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q5_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q6_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q6_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q7_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q7_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q8_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q8_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q9_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_20_q9_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_20_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q0_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q0_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q10_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q10_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q11_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q11_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q12_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q12_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q13_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q13_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q13_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q13_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q14_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q14_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q15_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q15_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q1_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q1_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q1_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q1_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q2_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q2_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q2_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q2_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q3_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q3_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q4_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q4_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q5_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q5_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q6_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q6_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q6_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q6_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q7_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q7_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q8_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q8_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q9_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_2_q9_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_2_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q0_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q0_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q0_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q0_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q10_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q10_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q11_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q11_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q12_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q12_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q12_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q12_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q13_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q13_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q13_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q13_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q14_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q14_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_ELOW/video_3_q15_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_ELOW/video_3_q15_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q1_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q1_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q2_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q2_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q3_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q3_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q3_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q3_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q4_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q4_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q5_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q5_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q6_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q6_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q7_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q7_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q8_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q8_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q9_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_3_q9_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_3_q9_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q0_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q0_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q10_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q10_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q11_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q11_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q11_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q11_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q12_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q12_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q13_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q13_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q14_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q14_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q15_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q15_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q15_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q15_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q1_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q1_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q2_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q2_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q3_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q3_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q4_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q4_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q4_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q4_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q5_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q5_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L256_ELOW/video_4_q6_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L256_ELOW/video_4_q6_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q7_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q7_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q7_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q7_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q8_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q8_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q9_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q9_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_4_q9_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_4_q9_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q0_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q0_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q10_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q10_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q11_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q11_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q12_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q12_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q12_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q12_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q13_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q13_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q14_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q14_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q14_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q14_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q15_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q15_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q1_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q1_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q2_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q2_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q3_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q3_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L016_ELOW/video_5_q4_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L016_ELOW/video_5_q4_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q5_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q5_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q6_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q6_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q7_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q7_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q8_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q8_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q9_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_5_q9_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_5_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q0_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q0_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q10_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q10_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q10_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q10_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q11_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q11_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q12_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q12_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q12_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q12_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q13_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q13_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q14_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q14_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q14_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q14_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q15_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q15_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q1_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q1_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q2_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q2_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q3_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L128_NO_RULES/video_6_q3_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q4_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q4_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q5_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q5_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q5_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q5_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q6_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q6_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q7_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q7_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q8_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q8_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q8_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q8_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q9_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q9_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_6_q9_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_6_q9_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q0_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q0_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q0_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q0_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q10_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q10_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q10_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q10_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q11_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q11_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q11_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q11_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q12_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q12_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q13_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q13_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q14_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q14_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q15_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q15_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q1_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q1_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q1_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q1_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q2_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q2_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q3_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q3_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q3_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q3_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q4_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q4_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q4_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q4_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q5_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q5_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q5_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q5_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q6_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q6_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q6_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q6_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q7_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q7_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q7_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q7_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q8_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q8_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q8_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q8_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q9_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_7_q9_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_7_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q0_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q0_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q10_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q10_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q10_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q10_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q11_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q11_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q11_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q11_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q12_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q12_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q13_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q13_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q13_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q13_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q14_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q14_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q14_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q14_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q15_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q15_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q15_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q15_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q1_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q1_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q2_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q2_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q2_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q2_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q3_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q3_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q3_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q3_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q4_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q4_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q4_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q4_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q5_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q5_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q6_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q6_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q6_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q6_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q7_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q7_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q7_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q7_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q8_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q8_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q8_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q8_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q9_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q9_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_8_q9_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_8_q9_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q0_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q0_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q0_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q0_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q10_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q10_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q10_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q10_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q11_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q11_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q11_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q11_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q12_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q12_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q12_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q12_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q13_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q13_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q13_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q13_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q14_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q14_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q14_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q14_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q15_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q15_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q15_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q15_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q1_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q1_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q1_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q1_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q2_true_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q2_true_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q2_true_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q2_true_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q3_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q3_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q3_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q3_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q4_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q4_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q4_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q4_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q5_false_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q5_false_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q5_false_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q5_false_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q6_false_sequential.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q6_false_sequential.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q6_false_sequential.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q6_false_sequential.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q7_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q7_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q7_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q7_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q8_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q8_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q8_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q8_true_spatial.mp4 diff --git a/clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q9_true_spatial.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q9_true_spatial.mp4 similarity index 100% rename from clips/UNIFORM_EVAL_L008_NO_RULES/video_9_q9_true_spatial.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/clips/video_9_q9_true_spatial.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_10_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_11_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_12_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_13_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_14_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_15_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_16_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_17_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_18_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_19_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_1_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_20_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_2_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_3_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_4_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_5_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_6_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_7_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_8_v0.mp4 diff --git a/videos/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4 b/synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4 similarity index 100% rename from videos/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4 rename to synthetic_video/videos/L_8_frames/UNIFORM_EVAL_L008_NO_RULES/video_9_v0.mp4 diff --git a/len_256/clips/len_256_video_001_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_001_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_001_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_001_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_001_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_001_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_001_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_001_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_001_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_001_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_001_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_001_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_001_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_001_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_001_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_001_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_002_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_002_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_002_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_002_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_002_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_002_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_002_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_002_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_002_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_002_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_002_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_002_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_002_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_002_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_002_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_002_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_003_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_003_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_003_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_003_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_003_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_003_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_003_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_003_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_003_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_003_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_003_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_003_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_003_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_003_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_003_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_003_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_004_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_004_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_004_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_004_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_004_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_004_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_004_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_004_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_004_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_004_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_004_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_004_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_004_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_004_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_004_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_004_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_005_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_005_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_005_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_005_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_005_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_005_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_005_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_005_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_005_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_005_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_005_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_005_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_005_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_005_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_005_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_005_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_006_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_006_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_006_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_006_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_006_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_006_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_006_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_006_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_006_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_006_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_006_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_006_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_006_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_006_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_006_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_006_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_007_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_007_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_007_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_007_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_007_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_007_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_007_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_007_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_007_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_007_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_007_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_007_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_007_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_007_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_007_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_007_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_008_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_008_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_008_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_008_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_008_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_008_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_008_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_008_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_008_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_008_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_008_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_008_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_008_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_008_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_008_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_008_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_009_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_009_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_009_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_009_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_009_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_009_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_009_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_009_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_009_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_009_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_009_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_009_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_009_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_009_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_009_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_009_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_010_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_010_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_010_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_010_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_010_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_010_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_010_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_010_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_010_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_010_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_010_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_010_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_010_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_010_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_010_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_010_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_011_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_011_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_011_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_011_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_011_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_011_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_011_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_011_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_011_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_011_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_011_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_011_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_011_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_011_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_011_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_011_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_012_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_012_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_012_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_012_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_012_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_012_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_012_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_012_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_012_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_012_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_012_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_012_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_012_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_012_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_012_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_012_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_013_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_013_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_013_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_013_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_013_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_013_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_013_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_013_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_013_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_013_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_013_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_013_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_013_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_013_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_013_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_013_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_014_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_014_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_014_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_014_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_014_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_014_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_014_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_014_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_014_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_014_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_014_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_014_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_014_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_014_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_014_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_014_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_015_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_015_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_015_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_015_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_015_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_015_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_015_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_015_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_015_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_015_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_015_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_015_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_015_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_015_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_015_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_015_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_016_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_016_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_016_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_016_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_016_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_016_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_016_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_016_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_016_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_016_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_016_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_016_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_016_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_016_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_016_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_016_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_017_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_017_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_017_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_017_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_017_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_017_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_017_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_017_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_017_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_017_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_017_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_017_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_017_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_017_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_017_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_017_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_018_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_018_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_018_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_018_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_018_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_018_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_018_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_018_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_018_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_018_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_018_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_018_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_018_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_018_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_018_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_018_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_019_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_019_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_019_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_019_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_019_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_019_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_019_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_019_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_019_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_019_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_019_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_019_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_019_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_019_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_019_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_019_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_020_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_020_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_020_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_020_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_020_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_020_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_020_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_020_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_020_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_020_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_020_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_020_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_020_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_020_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_020_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_020_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_021_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_021_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_021_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_021_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_021_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_021_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_021_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_021_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_021_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_021_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_021_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_021_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_021_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_021_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_021_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_021_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_022_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_022_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_022_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_022_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_022_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_022_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_022_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_022_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_022_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_022_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_022_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_022_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_022_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_022_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_022_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_022_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_023_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_023_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_023_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_023_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_023_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_023_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_023_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_023_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_023_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_023_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_023_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_023_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_023_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_023_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_023_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_023_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_024_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_024_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_024_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_024_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_024_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_024_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_024_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_024_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_024_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_024_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_024_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_024_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_024_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_024_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_024_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_024_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_025_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_025_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_025_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_025_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_025_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_025_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_025_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_025_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_025_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_025_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_025_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_025_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_025_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_025_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_025_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_025_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_026_q01_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_026_q01_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_026_q01_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_026_q01_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_026_q02_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_026_q02_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_026_q02_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_026_q02_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_026_q03_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_026_q03_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_026_q03_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_026_q03_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_026_q04_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_026_q04_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_026_q04_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_026_q04_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_027_q01_mistake_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_027_q01_mistake_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_027_q01_mistake_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_027_q01_mistake_present_yes.mp4 diff --git a/len_256/clips/len_256_video_027_q02_mistake_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_027_q02_mistake_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_027_q02_mistake_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_027_q02_mistake_absent_no.mp4 diff --git a/len_256/clips/len_256_video_027_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_027_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_027_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_027_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_027_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_027_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_027_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_027_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_027_q05_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_027_q05_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_027_q05_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_027_q05_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_027_q06_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_027_q06_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_027_q06_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_027_q06_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_028_q01_mistake_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_028_q01_mistake_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_028_q01_mistake_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_028_q01_mistake_present_yes.mp4 diff --git a/len_256/clips/len_256_video_028_q02_mistake_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_028_q02_mistake_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_028_q02_mistake_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_028_q02_mistake_absent_no.mp4 diff --git a/len_256/clips/len_256_video_028_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_028_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_028_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_028_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_028_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_028_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_028_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_028_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_028_q05_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_028_q05_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_028_q05_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_028_q05_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_028_q06_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_028_q06_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_028_q06_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_028_q06_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_029_q01_mistake_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_029_q01_mistake_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_029_q01_mistake_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_029_q01_mistake_present_yes.mp4 diff --git a/len_256/clips/len_256_video_029_q02_mistake_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_029_q02_mistake_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_029_q02_mistake_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_029_q02_mistake_absent_no.mp4 diff --git a/len_256/clips/len_256_video_029_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_029_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_029_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_029_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_029_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_029_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_029_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_029_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_029_q05_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_029_q05_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_029_q05_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_029_q05_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_029_q06_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_029_q06_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_029_q06_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_029_q06_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_030_q01_mistake_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_030_q01_mistake_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_030_q01_mistake_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_030_q01_mistake_present_yes.mp4 diff --git a/len_256/clips/len_256_video_030_q02_mistake_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_030_q02_mistake_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_030_q02_mistake_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_030_q02_mistake_absent_no.mp4 diff --git a/len_256/clips/len_256_video_030_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_030_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_030_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_030_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_030_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_030_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_030_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_030_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_030_q05_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_030_q05_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_030_q05_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_030_q05_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_030_q06_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_030_q06_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_030_q06_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_030_q06_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_031_q01_mistake_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_031_q01_mistake_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_031_q01_mistake_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_031_q01_mistake_present_yes.mp4 diff --git a/len_256/clips/len_256_video_031_q02_mistake_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_031_q02_mistake_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_031_q02_mistake_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_031_q02_mistake_absent_no.mp4 diff --git a/len_256/clips/len_256_video_031_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_031_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_031_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_031_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_031_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_031_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_031_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_031_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_031_q05_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_031_q05_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_031_q05_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_031_q05_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_031_q06_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_031_q06_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_031_q06_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_031_q06_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_032_q01_mistake_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_032_q01_mistake_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_032_q01_mistake_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_032_q01_mistake_present_yes.mp4 diff --git a/len_256/clips/len_256_video_032_q02_mistake_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_032_q02_mistake_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_032_q02_mistake_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_032_q02_mistake_absent_no.mp4 diff --git a/len_256/clips/len_256_video_032_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_032_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_032_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_032_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_032_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_032_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_032_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_032_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_032_q05_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_032_q05_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_032_q05_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_032_q05_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_032_q06_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_032_q06_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_032_q06_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_032_q06_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_033_q01_mistake_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_033_q01_mistake_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_033_q01_mistake_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_033_q01_mistake_present_yes.mp4 diff --git a/len_256/clips/len_256_video_033_q02_mistake_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_033_q02_mistake_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_033_q02_mistake_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_033_q02_mistake_absent_no.mp4 diff --git a/len_256/clips/len_256_video_033_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_033_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_033_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_033_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_033_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_033_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_033_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_033_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_033_q05_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_033_q05_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_033_q05_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_033_q05_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_033_q06_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_033_q06_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_033_q06_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_033_q06_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_034_q01_mistake_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_034_q01_mistake_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_034_q01_mistake_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_034_q01_mistake_present_yes.mp4 diff --git a/len_256/clips/len_256_video_034_q02_mistake_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_034_q02_mistake_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_034_q02_mistake_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_034_q02_mistake_absent_no.mp4 diff --git a/len_256/clips/len_256_video_034_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_034_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_034_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_034_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_034_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_034_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_034_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_034_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_034_q05_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_034_q05_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_034_q05_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_034_q05_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_034_q06_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_034_q06_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_034_q06_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_034_q06_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_035_q01_mistake_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_035_q01_mistake_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_035_q01_mistake_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_035_q01_mistake_present_yes.mp4 diff --git a/len_256/clips/len_256_video_035_q02_mistake_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_035_q02_mistake_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_035_q02_mistake_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_035_q02_mistake_absent_no.mp4 diff --git a/len_256/clips/len_256_video_035_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_035_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_035_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_035_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_035_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_035_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_035_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_035_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_035_q05_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_035_q05_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_035_q05_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_035_q05_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_035_q06_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_035_q06_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_035_q06_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_035_q06_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_036_q01_mistake_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_036_q01_mistake_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_036_q01_mistake_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_036_q01_mistake_present_yes.mp4 diff --git a/len_256/clips/len_256_video_036_q02_mistake_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_036_q02_mistake_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_036_q02_mistake_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_036_q02_mistake_absent_no.mp4 diff --git a/len_256/clips/len_256_video_036_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_036_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_036_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_036_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_036_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_036_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_036_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_036_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_036_q05_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_036_q05_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_036_q05_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_036_q05_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_036_q06_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_036_q06_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_036_q06_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_036_q06_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_037_q01_mistake_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_037_q01_mistake_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_037_q01_mistake_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_037_q01_mistake_present_yes.mp4 diff --git a/len_256/clips/len_256_video_037_q02_mistake_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_037_q02_mistake_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_037_q02_mistake_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_037_q02_mistake_absent_no.mp4 diff --git a/len_256/clips/len_256_video_037_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_037_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_037_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_037_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_037_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_037_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_037_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_037_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_037_q05_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_037_q05_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_037_q05_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_037_q05_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_037_q06_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_037_q06_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_037_q06_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_037_q06_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_038_q01_mistake_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_038_q01_mistake_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_038_q01_mistake_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_038_q01_mistake_present_yes.mp4 diff --git a/len_256/clips/len_256_video_038_q02_mistake_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_038_q02_mistake_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_038_q02_mistake_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_038_q02_mistake_absent_no.mp4 diff --git a/len_256/clips/len_256_video_038_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_038_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_038_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_038_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_038_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_038_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_038_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_038_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_038_q05_y_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_038_q05_y_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_038_q05_y_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_038_q05_y_present_yes.mp4 diff --git a/len_256/clips/len_256_video_038_q06_y_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_038_q06_y_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_038_q06_y_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_038_q06_y_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_039_q01_invalid_cycle_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_039_q01_invalid_cycle_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_039_q01_invalid_cycle_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_039_q01_invalid_cycle_present_yes.mp4 diff --git a/len_256/clips/len_256_video_039_q02_invalid_cycle_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_039_q02_invalid_cycle_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_039_q02_invalid_cycle_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_039_q02_invalid_cycle_absent_no.mp4 diff --git a/len_256/clips/len_256_video_039_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_039_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_039_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_039_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_039_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_039_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_039_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_039_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_040_q01_invalid_cycle_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_040_q01_invalid_cycle_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_040_q01_invalid_cycle_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_040_q01_invalid_cycle_present_yes.mp4 diff --git a/len_256/clips/len_256_video_040_q02_invalid_cycle_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_040_q02_invalid_cycle_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_040_q02_invalid_cycle_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_040_q02_invalid_cycle_absent_no.mp4 diff --git a/len_256/clips/len_256_video_040_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_040_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_040_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_040_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_040_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_040_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_040_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_040_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_041_q01_invalid_cycle_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_041_q01_invalid_cycle_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_041_q01_invalid_cycle_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_041_q01_invalid_cycle_present_yes.mp4 diff --git a/len_256/clips/len_256_video_041_q02_invalid_cycle_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_041_q02_invalid_cycle_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_041_q02_invalid_cycle_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_041_q02_invalid_cycle_absent_no.mp4 diff --git a/len_256/clips/len_256_video_041_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_041_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_041_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_041_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_041_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_041_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_041_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_041_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_042_q01_invalid_cycle_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_042_q01_invalid_cycle_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_042_q01_invalid_cycle_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_042_q01_invalid_cycle_present_yes.mp4 diff --git a/len_256/clips/len_256_video_042_q02_invalid_cycle_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_042_q02_invalid_cycle_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_042_q02_invalid_cycle_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_042_q02_invalid_cycle_absent_no.mp4 diff --git a/len_256/clips/len_256_video_042_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_042_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_042_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_042_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_042_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_042_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_042_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_042_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_043_q01_invalid_cycle_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_043_q01_invalid_cycle_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_043_q01_invalid_cycle_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_043_q01_invalid_cycle_present_yes.mp4 diff --git a/len_256/clips/len_256_video_043_q02_invalid_cycle_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_043_q02_invalid_cycle_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_043_q02_invalid_cycle_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_043_q02_invalid_cycle_absent_no.mp4 diff --git a/len_256/clips/len_256_video_043_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_043_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_043_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_043_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_043_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_043_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_043_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_043_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_044_q01_invalid_cycle_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_044_q01_invalid_cycle_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_044_q01_invalid_cycle_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_044_q01_invalid_cycle_present_yes.mp4 diff --git a/len_256/clips/len_256_video_044_q02_invalid_cycle_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_044_q02_invalid_cycle_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_044_q02_invalid_cycle_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_044_q02_invalid_cycle_absent_no.mp4 diff --git a/len_256/clips/len_256_video_044_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_044_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_044_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_044_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_044_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_044_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_044_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_044_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_045_q01_invalid_cycle_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_045_q01_invalid_cycle_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_045_q01_invalid_cycle_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_045_q01_invalid_cycle_present_yes.mp4 diff --git a/len_256/clips/len_256_video_045_q02_invalid_cycle_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_045_q02_invalid_cycle_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_045_q02_invalid_cycle_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_045_q02_invalid_cycle_absent_no.mp4 diff --git a/len_256/clips/len_256_video_045_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_045_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_045_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_045_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_045_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_045_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_045_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_045_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_046_q01_invalid_cycle_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_046_q01_invalid_cycle_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_046_q01_invalid_cycle_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_046_q01_invalid_cycle_present_yes.mp4 diff --git a/len_256/clips/len_256_video_046_q02_invalid_cycle_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_046_q02_invalid_cycle_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_046_q02_invalid_cycle_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_046_q02_invalid_cycle_absent_no.mp4 diff --git a/len_256/clips/len_256_video_046_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_046_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_046_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_046_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_046_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_046_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_046_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_046_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_047_q01_invalid_cycle_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_047_q01_invalid_cycle_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_047_q01_invalid_cycle_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_047_q01_invalid_cycle_present_yes.mp4 diff --git a/len_256/clips/len_256_video_047_q02_invalid_cycle_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_047_q02_invalid_cycle_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_047_q02_invalid_cycle_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_047_q02_invalid_cycle_absent_no.mp4 diff --git a/len_256/clips/len_256_video_047_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_047_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_047_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_047_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_047_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_047_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_047_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_047_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_048_q01_invalid_cycle_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_048_q01_invalid_cycle_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_048_q01_invalid_cycle_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_048_q01_invalid_cycle_present_yes.mp4 diff --git a/len_256/clips/len_256_video_048_q02_invalid_cycle_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_048_q02_invalid_cycle_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_048_q02_invalid_cycle_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_048_q02_invalid_cycle_absent_no.mp4 diff --git a/len_256/clips/len_256_video_048_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_048_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_048_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_048_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_048_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_048_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_048_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_048_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_049_q01_invalid_cycle_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_049_q01_invalid_cycle_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_049_q01_invalid_cycle_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_049_q01_invalid_cycle_present_yes.mp4 diff --git a/len_256/clips/len_256_video_049_q02_invalid_cycle_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_049_q02_invalid_cycle_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_049_q02_invalid_cycle_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_049_q02_invalid_cycle_absent_no.mp4 diff --git a/len_256/clips/len_256_video_049_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_049_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_049_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_049_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_049_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_049_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_049_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_049_q04_x_variation_absent_no.mp4 diff --git a/len_256/clips/len_256_video_050_q01_invalid_cycle_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_050_q01_invalid_cycle_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_050_q01_invalid_cycle_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_050_q01_invalid_cycle_present_yes.mp4 diff --git a/len_256/clips/len_256_video_050_q02_invalid_cycle_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_050_q02_invalid_cycle_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_050_q02_invalid_cycle_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_050_q02_invalid_cycle_absent_no.mp4 diff --git a/len_256/clips/len_256_video_050_q03_x_present_yes.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_050_q03_x_present_yes.mp4 similarity index 100% rename from len_256/clips/len_256_video_050_q03_x_present_yes.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_050_q03_x_present_yes.mp4 diff --git a/len_256/clips/len_256_video_050_q04_x_variation_absent_no.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_050_q04_x_variation_absent_no.mp4 similarity index 100% rename from len_256/clips/len_256_video_050_q04_x_variation_absent_no.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/clips/len_256_video_050_q04_x_variation_absent_no.mp4 diff --git a/len_256/videos/len_256_video_001_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_001_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_001_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_001_v0.mp4 diff --git a/len_256/videos/len_256_video_002_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_002_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_002_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_002_v0.mp4 diff --git a/len_256/videos/len_256_video_003_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_003_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_003_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_003_v0.mp4 diff --git a/len_256/videos/len_256_video_004_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_004_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_004_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_004_v0.mp4 diff --git a/len_256/videos/len_256_video_005_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_005_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_005_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_005_v0.mp4 diff --git a/len_256/videos/len_256_video_006_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_006_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_006_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_006_v0.mp4 diff --git a/len_256/videos/len_256_video_007_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_007_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_007_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_007_v0.mp4 diff --git a/len_256/videos/len_256_video_008_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_008_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_008_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_008_v0.mp4 diff --git a/len_256/videos/len_256_video_009_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_009_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_009_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_009_v0.mp4 diff --git a/len_256/videos/len_256_video_010_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_010_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_010_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_010_v0.mp4 diff --git a/len_256/videos/len_256_video_011_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_011_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_011_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_011_v0.mp4 diff --git a/len_256/videos/len_256_video_012_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_012_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_012_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_012_v0.mp4 diff --git a/len_256/videos/len_256_video_013_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_013_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_013_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_013_v0.mp4 diff --git a/len_256/videos/len_256_video_014_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_014_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_014_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_014_v0.mp4 diff --git a/len_256/videos/len_256_video_015_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_015_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_015_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_015_v0.mp4 diff --git a/len_256/videos/len_256_video_016_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_016_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_016_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_016_v0.mp4 diff --git a/len_256/videos/len_256_video_017_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_017_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_017_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_017_v0.mp4 diff --git a/len_256/videos/len_256_video_018_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_018_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_018_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_018_v0.mp4 diff --git a/len_256/videos/len_256_video_019_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_019_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_019_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_019_v0.mp4 diff --git a/len_256/videos/len_256_video_020_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_020_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_020_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_020_v0.mp4 diff --git a/len_256/videos/len_256_video_021_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_021_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_021_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_021_v0.mp4 diff --git a/len_256/videos/len_256_video_022_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_022_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_022_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_022_v0.mp4 diff --git a/len_256/videos/len_256_video_023_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_023_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_023_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_023_v0.mp4 diff --git a/len_256/videos/len_256_video_024_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_024_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_024_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_024_v0.mp4 diff --git a/len_256/videos/len_256_video_025_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_025_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_025_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_025_v0.mp4 diff --git a/len_256/videos/len_256_video_026_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_026_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_026_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_026_v0.mp4 diff --git a/len_256/videos/len_256_video_027_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_027_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_027_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_027_v0.mp4 diff --git a/len_256/videos/len_256_video_028_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_028_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_028_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_028_v0.mp4 diff --git a/len_256/videos/len_256_video_029_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_029_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_029_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_029_v0.mp4 diff --git a/len_256/videos/len_256_video_030_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_030_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_030_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_030_v0.mp4 diff --git a/len_256/videos/len_256_video_031_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_031_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_031_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_031_v0.mp4 diff --git a/len_256/videos/len_256_video_032_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_032_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_032_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_032_v0.mp4 diff --git a/len_256/videos/len_256_video_033_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_033_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_033_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_033_v0.mp4 diff --git a/len_256/videos/len_256_video_034_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_034_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_034_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_034_v0.mp4 diff --git a/len_256/videos/len_256_video_035_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_035_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_035_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_035_v0.mp4 diff --git a/len_256/videos/len_256_video_036_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_036_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_036_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_036_v0.mp4 diff --git a/len_256/videos/len_256_video_037_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_037_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_037_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_037_v0.mp4 diff --git a/len_256/videos/len_256_video_038_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_038_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_038_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_038_v0.mp4 diff --git a/len_256/videos/len_256_video_039_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_039_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_039_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_039_v0.mp4 diff --git a/len_256/videos/len_256_video_040_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_040_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_040_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_040_v0.mp4 diff --git a/len_256/videos/len_256_video_041_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_041_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_041_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_041_v0.mp4 diff --git a/len_256/videos/len_256_video_042_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_042_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_042_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_042_v0.mp4 diff --git a/len_256/videos/len_256_video_043_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_043_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_043_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_043_v0.mp4 diff --git a/len_256/videos/len_256_video_044_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_044_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_044_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_044_v0.mp4 diff --git a/len_256/videos/len_256_video_045_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_045_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_045_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_045_v0.mp4 diff --git a/len_256/videos/len_256_video_046_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_046_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_046_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_046_v0.mp4 diff --git a/len_256/videos/len_256_video_047_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_047_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_047_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_047_v0.mp4 diff --git a/len_256/videos/len_256_video_048_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_048_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_048_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_048_v0.mp4 diff --git a/len_256/videos/len_256_video_049_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_049_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_049_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_049_v0.mp4 diff --git a/len_256/videos/len_256_video_050_v0.mp4 b/synthetic_video/videos/easyhuman_L_256_frames/len_256_video_050_v0.mp4 similarity index 100% rename from len_256/videos/len_256_video_050_v0.mp4 rename to synthetic_video/videos/easyhuman_L_256_frames/len_256_video_050_v0.mp4 diff --git a/text/questions.json b/text/questions.json new file mode 100644 index 0000000000000000000000000000000000000000..6782cf4c589786a632bf6dd03c33c5abbe93dd82 --- /dev/null +++ b/text/questions.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80d04fee7e799525731d9ffb28d841ba5e5df30586cb99af056b411233657eaf +size 20473291 diff --git a/text/questions.parquet b/text/questions.parquet new file mode 100644 index 0000000000000000000000000000000000000000..cee2cf661cf250b59162bec73087cd8116ed2b91 --- /dev/null +++ b/text/questions.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b563967fedef8399c0725213d12a4796f6f4d47962c3391867723724bc966bcb +size 495194